File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11# Releases
2+ ## VERSION 2.9.1
3+ - Fix: Corrected 'plataformId' typo to 'platformId'.
4+
25## VERSION 2.9.0
36- Task: Update the local project to comply with release 2.8.0
47- Task: Update dependencies and validate builds/tests
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export declare type Config = {
66export declare type Options = {
77 timeout ?: number ;
88 idempotencyKey ?: string ;
9- plataformId ?: string ;
9+ platformId ?: string ;
1010 integratorId ?: string ;
1111 corporationId ?: string ;
1212 meliSessionId ?: string ;
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class RestClient {
6767 retries = AppConfig . DEFAULT_RETRIES ,
6868 corporationId,
6969 integratorId,
70- plataformId ,
70+ platformId ,
7171 meliSessionId,
7272 expandResponseNodes,
7373 cardValidation,
@@ -84,7 +84,7 @@ class RestClient {
8484 [ AppConfig . Headers . USER_AGENT ] : AppConfig . getUserAgent ( ) ,
8585 ...( corporationId ? { [ AppConfig . Headers . CORPORATION_ID ] : corporationId } : { } ) ,
8686 ...( integratorId ? { [ AppConfig . Headers . INTEGRATOR_ID ] : integratorId } : { } ) ,
87- ...( plataformId ? { [ AppConfig . Headers . PLATFORM_ID ] : plataformId } : { } ) ,
87+ ...( platformId ? { [ AppConfig . Headers . PLATFORM_ID ] : platformId } : { } ) ,
8888 ...( meliSessionId ? { [ AppConfig . Headers . MELI_SESSION_ID ] : meliSessionId } : { } ) ,
8989 ...( expandResponseNodes ? { [ AppConfig . Headers . EXPAND_RESPONDE_NODES ] : expandResponseNodes } : { } ) ,
9090 ...( cardValidation ? { [ AppConfig . Headers . CARD_VALIDATION ] : cardValidation } : { } ) ,
@@ -135,4 +135,4 @@ class RestClient {
135135 }
136136}
137137
138- export { RestClient } ;
138+ export { RestClient } ;
You can’t perform that action at this time.
0 commit comments