@gofynd/fdk-client-javascript 0.1.36 → 0.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation/application/CART.md +291 -285
- package/documentation/application/CATALOG.md +411 -411
- package/documentation/application/LOGISTIC.md +423 -101
- package/documentation/application/ORDER.md +287 -287
- package/documentation/application/POSCART.md +319 -313
- package/documentation/application/README.md +1 -1
- package/documentation/platform/AUDITTRAIL.md +2 -2
- package/documentation/platform/CART.md +488 -488
- package/documentation/platform/CATALOG.md +1656 -1439
- package/documentation/platform/COMPANYPROFILE.md +250 -229
- package/documentation/platform/ORDER.md +1183 -1183
- package/package.json +2 -2
- package/sdk/application/ApplicationAPIClient.js +3 -0
- package/sdk/application/ApplicationClient.d.ts +1 -0
- package/sdk/application/ApplicationClient.js +11 -1
- package/sdk/application/ApplicationConfig.d.ts +1 -0
- package/sdk/application/ApplicationConfig.js +1 -0
- package/sdk/application/ApplicationModels.d.ts +83 -78
- package/sdk/application/ApplicationModels.js +1445 -1354
- package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
- package/sdk/application/client/LogisticApplicationClient.js +62 -27
- package/sdk/application/models/LogisticValidator.d.ts +2 -1
- package/sdk/application/models/LogisticValidator.js +11 -6
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +5328 -5185
- package/sdk/platform/PlatformApplicationClient.js +2877 -2795
- package/sdk/platform/PlatformApplicationModels.d.ts +5 -5
- package/sdk/platform/PlatformApplicationModels.js +3707 -3571
- package/sdk/platform/PlatformClient.d.ts +2577 -2509
- package/sdk/platform/PlatformClient.js +2770 -2688
- package/sdk/platform/PlatformModels.d.ts +146 -139
- package/sdk/platform/PlatformModels.js +3718 -3582
- package/sdk/platform/client/CatalogPlatformClient.d.ts +21 -12
- package/sdk/platform/client/CatalogPlatformClient.js +48 -17
- package/sdk/platform/models/CatalogValidator.d.ts +2 -1
- package/sdk/platform/models/CatalogValidator.js +11 -5
|
@@ -184,14 +184,14 @@ export class OrderValidator {
|
|
|
184
184
|
static trackPlatformShipment(): any;
|
|
185
185
|
}
|
|
186
186
|
export class CatalogValidator {
|
|
187
|
+
static deleteSearchKeywords(): any;
|
|
187
188
|
static updateSearchKeywords(): any;
|
|
188
189
|
static getSearchKeywords(): any;
|
|
189
|
-
static deleteSearchKeywords(): any;
|
|
190
190
|
static createCustomKeyword(): any;
|
|
191
191
|
static getAllSearchKeyword(): any;
|
|
192
|
+
static deleteAutocompleteKeyword(): any;
|
|
192
193
|
static updateAutocompleteKeyword(): any;
|
|
193
194
|
static getAutocompleteKeywordDetail(): any;
|
|
194
|
-
static deleteAutocompleteKeyword(): any;
|
|
195
195
|
static createCustomAutocompleteRule(): any;
|
|
196
196
|
static getAutocompleteConfig(): any;
|
|
197
197
|
static getAppProduct(): any;
|
|
@@ -199,12 +199,12 @@ export class CatalogValidator {
|
|
|
199
199
|
static getConfigurationMetadata(): any;
|
|
200
200
|
static createGroupConfiguration(): any;
|
|
201
201
|
static getGroupConfigurations(): any;
|
|
202
|
-
static updateGroupConfiguration(): any;
|
|
203
202
|
static deleteGroupConfiguration(): any;
|
|
203
|
+
static updateGroupConfiguration(): any;
|
|
204
204
|
static createListingConfiguration(): any;
|
|
205
205
|
static getListingConfigurations(): any;
|
|
206
|
-
static updateListingConfiguration(): any;
|
|
207
206
|
static deleteListingConfiguration(): any;
|
|
207
|
+
static updateListingConfiguration(): any;
|
|
208
208
|
static updateAllowSingle(): any;
|
|
209
209
|
static updateDefaultSort(): any;
|
|
210
210
|
static getCatalogConfiguration(): any;
|
|
@@ -216,8 +216,8 @@ export class CatalogValidator {
|
|
|
216
216
|
static createCollection(): any;
|
|
217
217
|
static getAllCollections(): any;
|
|
218
218
|
static getCollectionDetail(): any;
|
|
219
|
-
static updateCollection(): any;
|
|
220
219
|
static deleteCollection(): any;
|
|
220
|
+
static updateCollection(): any;
|
|
221
221
|
static addCollectionItems(): any;
|
|
222
222
|
static getCollectionItems(): any;
|
|
223
223
|
static getCatalogInsights(): any;
|