@gofynd/fdk-client-javascript 1.4.15-beta.14 → 1.4.15-beta.15
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/README.md +23 -26
- package/package.json +5 -1
- package/sdk/application/ApplicationClient.d.ts +5 -6
- package/sdk/application/ApplicationClient.js +24 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
- package/sdk/application/Cart/CartApplicationClient.js +444 -76
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
- package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
- package/sdk/application/Content/ContentApplicationClient.js +274 -111
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
- package/sdk/application/Lead/LeadApplicationClient.js +6 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
- package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
- package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
- package/sdk/application/Order/OrderApplicationClient.js +217 -17
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
- package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
- package/sdk/application/User/UserApplicationClient.d.ts +103 -53
- package/sdk/application/User/UserApplicationClient.js +308 -49
- package/sdk/common/AxiosHelper.js +11 -4
- package/sdk/common/Constant.d.ts +27 -4
- package/sdk/common/Constant.js +33 -6
- package/sdk/common/utils.d.ts +10 -0
- package/sdk/common/utils.js +24 -3
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
- package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
- package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
- package/sdk/partner/PartnerClient.d.ts +5 -2
- package/sdk/partner/PartnerClient.js +21 -7
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
- package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
- package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
- package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
- package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +15 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +266 -203
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
- package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
- package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9573 -2678
- package/sdk/platform/Catalog/CatalogPlatformModel.js +5033 -1973
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
- package/sdk/platform/Common/CommonPlatformModel.js +25 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
- package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
- package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
- package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
- package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
- package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
- package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
- package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
- package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
- package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
- package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
- package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
- package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
- package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
- package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
- package/sdk/platform/PlatformApplicationClient.js +0 -4
- package/sdk/platform/PlatformClient.d.ts +5 -4
- package/sdk/platform/PlatformClient.js +32 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
- package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
- package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
- package/sdk/platform/Share/SharePlatformModel.js +31 -6
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
- package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
- package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
- package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
- package/sdk/platform/User/UserPlatformModel.js +607 -46
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
- package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
- package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -2
- package/sdk/platform/index.js +0 -4
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
- package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
- package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
- package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +5 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
- package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
- package/sdk/public/Content/ContentPublicClient.js +1067 -17
- package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
- package/sdk/public/Content/ContentPublicModel.js +751 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
- package/sdk/public/Content/ContentPublicValidator.js +119 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +1 -1
- package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
- package/sdk/public/Partner/PartnerPublicModel.js +81 -71
- package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
- package/sdk/public/PublicClient.d.ts +5 -2
- package/sdk/public/PublicClient.js +16 -6
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +81 -61
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -0
- package/sdk/public/index.js +2 -0
- package/utility.d.ts +3 -0
- package/utility.js +7 -0
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
- package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
- package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
- package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export = CatalogPlatformValidator;
|
|
2
2
|
/**
|
|
3
3
|
* @typedef AddInventoryParam
|
|
4
|
-
* @property {number} itemId - Item
|
|
4
|
+
* @property {number} itemId - Item id of the product of which size is to be get.
|
|
5
5
|
* @property {string} size - Size in which inventory is to be added.
|
|
6
|
-
* @property {CatalogPlatformModel.
|
|
6
|
+
* @property {CatalogPlatformModel.InventoryRequestSchema} body
|
|
7
7
|
*/
|
|
8
8
|
/**
|
|
9
9
|
* @typedef AllSizesParam
|
|
@@ -16,42 +16,42 @@ export = CatalogPlatformValidator;
|
|
|
16
16
|
/**
|
|
17
17
|
* @typedef CreateBulkInventoryParam
|
|
18
18
|
* @property {string} batchId - Batch Id of the bulk create job.
|
|
19
|
-
* @property {CatalogPlatformModel.
|
|
19
|
+
* @property {CatalogPlatformModel.InventoryBulkRequestSchema} body
|
|
20
20
|
*/
|
|
21
21
|
/**
|
|
22
22
|
* @typedef CreateBulkInventoryJobParam
|
|
23
|
-
* @property {CatalogPlatformModel.
|
|
23
|
+
* @property {CatalogPlatformModel.BulkInventoryJob} body
|
|
24
24
|
*/
|
|
25
25
|
/**
|
|
26
26
|
* @typedef CreateBulkProductUploadJobParam
|
|
27
27
|
* @property {CatalogPlatformModel.BulkJob} body
|
|
28
28
|
*/
|
|
29
|
+
/**
|
|
30
|
+
* @typedef CreateHsCodeParam
|
|
31
|
+
* @property {CatalogPlatformModel.HSCodeItem} body
|
|
32
|
+
*/
|
|
29
33
|
/**
|
|
30
34
|
* @typedef CreateInventoryExportParam
|
|
31
|
-
* @property {CatalogPlatformModel.
|
|
35
|
+
* @property {CatalogPlatformModel.InventoryCreateRequestSchema} body
|
|
32
36
|
*/
|
|
33
37
|
/**
|
|
34
38
|
* @typedef CreateInventoryExportJobParam
|
|
35
|
-
* @property {CatalogPlatformModel.
|
|
39
|
+
* @property {CatalogPlatformModel.InventoryExportRequestSchema} body
|
|
36
40
|
*/
|
|
37
41
|
/**
|
|
38
42
|
* @typedef CreateMarketplaceOptinParam
|
|
39
43
|
* @property {string} marketplaceSlug - The marketplace for which the detail
|
|
40
44
|
* needs to be retrieved.
|
|
41
|
-
* @property {CatalogPlatformModel.
|
|
45
|
+
* @property {CatalogPlatformModel.OptInPostRequestSchema} body
|
|
42
46
|
*/
|
|
43
47
|
/**
|
|
44
48
|
* @typedef CreateProductParam
|
|
45
|
-
* @property {CatalogPlatformModel.
|
|
49
|
+
* @property {CatalogPlatformModel.ProductCreateSchemaV3} body
|
|
46
50
|
*/
|
|
47
51
|
/**
|
|
48
52
|
* @typedef CreateProductAssetsInBulkParam
|
|
49
53
|
* @property {CatalogPlatformModel.ProductBulkAssets} body
|
|
50
54
|
*/
|
|
51
|
-
/**
|
|
52
|
-
* @typedef CreateProductBundleParam
|
|
53
|
-
* @property {CatalogPlatformModel.ProductBundleRequest} body
|
|
54
|
-
*/
|
|
55
55
|
/**
|
|
56
56
|
* @typedef CreateProductExportJobParam
|
|
57
57
|
* @property {CatalogPlatformModel.ProductTemplateDownloadsExport} body
|
|
@@ -59,19 +59,32 @@ export = CatalogPlatformValidator;
|
|
|
59
59
|
/**
|
|
60
60
|
* @typedef CreateProductsInBulkParam
|
|
61
61
|
* @property {string} batchId - Batch Id in which assets to be uploaded.
|
|
62
|
-
* @property {CatalogPlatformModel.
|
|
62
|
+
* @property {CatalogPlatformModel.BulkProductRequestSchema} body
|
|
63
63
|
*/
|
|
64
64
|
/**
|
|
65
65
|
* @typedef CreateSizeGuideParam
|
|
66
66
|
* @property {CatalogPlatformModel.ValidateSizeGuide} body
|
|
67
67
|
*/
|
|
68
|
+
/**
|
|
69
|
+
* @typedef CreateTaxParam
|
|
70
|
+
* @property {CatalogPlatformModel.CreateTaxRequestBody} body
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* @typedef CreateTaxComponentNameParam
|
|
74
|
+
* @property {CatalogPlatformModel.CreateTaxComponentNameRequestSchema} body
|
|
75
|
+
*/
|
|
76
|
+
/**
|
|
77
|
+
* @typedef CreateTaxVersionParam
|
|
78
|
+
* @property {string} ruleId - Unique identifier of the tax rule
|
|
79
|
+
* @property {CatalogPlatformModel.CreateTaxVersionRequestBody} body
|
|
80
|
+
*/
|
|
68
81
|
/**
|
|
69
82
|
* @typedef DeleteBulkInventoryJobParam
|
|
70
83
|
* @property {string} batchId - Batch Id of the bulk delete job.
|
|
71
84
|
*/
|
|
72
85
|
/**
|
|
73
86
|
* @typedef DeleteProductParam
|
|
74
|
-
* @property {number} itemId - Id of the product to be
|
|
87
|
+
* @property {number} itemId - Id of the product to be deleted.
|
|
75
88
|
*/
|
|
76
89
|
/**
|
|
77
90
|
* @typedef DeleteProductBulkJobParam
|
|
@@ -89,9 +102,20 @@ export = CatalogPlatformValidator;
|
|
|
89
102
|
* @property {number} itemId - Item Id of the product associated with size to be deleted.
|
|
90
103
|
* @property {string} size - Size to be deleted.
|
|
91
104
|
*/
|
|
105
|
+
/**
|
|
106
|
+
* @typedef DeleteTaxRuleParam
|
|
107
|
+
* @property {string} ruleId - Unique identifier of the tax rule to be deleted
|
|
108
|
+
*/
|
|
109
|
+
/**
|
|
110
|
+
* @typedef DeleteTaxVersionParam
|
|
111
|
+
* @property {string} ruleId - Unique identifier of the tax rule to be deleted
|
|
112
|
+
* @property {string} versionId - Unique identifier of the tax version to be deleted
|
|
113
|
+
*/
|
|
92
114
|
/**
|
|
93
115
|
* @typedef DownloadInventoryTemplateViewParam
|
|
94
|
-
* @property {string}
|
|
116
|
+
* @property {string} schemaType - Specifies the type of template to download.
|
|
117
|
+
* Either quantity or price
|
|
118
|
+
* @property {string} type - File extension type
|
|
95
119
|
*/
|
|
96
120
|
/**
|
|
97
121
|
* @typedef DownloadProductTemplateViewsParam
|
|
@@ -103,7 +127,7 @@ export = CatalogPlatformValidator;
|
|
|
103
127
|
/**
|
|
104
128
|
* @typedef EditProductParam
|
|
105
129
|
* @property {number} itemId - Id of the product to be updated.
|
|
106
|
-
* @property {CatalogPlatformModel.
|
|
130
|
+
* @property {CatalogPlatformModel.ProductUpdateSchemaV3} body
|
|
107
131
|
*/
|
|
108
132
|
/**
|
|
109
133
|
* @typedef ExportInventoryConfigParam
|
|
@@ -112,11 +136,20 @@ export = CatalogPlatformValidator;
|
|
|
112
136
|
*/
|
|
113
137
|
/**
|
|
114
138
|
* @typedef GetAllProductHsnCodesParam
|
|
115
|
-
* @property {number} [pageNo] -
|
|
116
|
-
* @property {number} [pageSize] -
|
|
139
|
+
* @property {number} [pageNo] - Indicates current page number
|
|
140
|
+
* @property {number} [pageSize] - Indicates page size
|
|
117
141
|
* @property {string} [q] - Search using hsn code, description, reporting_hsn
|
|
118
142
|
* @property {string} [type] - Search using type
|
|
119
143
|
*/
|
|
144
|
+
/**
|
|
145
|
+
* @typedef GetAllTaxRulesParam
|
|
146
|
+
* @property {string} [q] - Search query to filter tax rules
|
|
147
|
+
* @property {string} [statuses] - Filter tax rules based on their lifecycle status.
|
|
148
|
+
* @property {number} [page] - The page number to retrieve
|
|
149
|
+
* @property {number} [limit] - Maximum number of tax rule items per page
|
|
150
|
+
* @property {string} [versionStatus] - Filter tax rules to include only those
|
|
151
|
+
* with versions in the specified status.
|
|
152
|
+
*/
|
|
120
153
|
/**
|
|
121
154
|
* @typedef GetAttributeParam
|
|
122
155
|
* @property {string} attributeSlug - Slug of the attribute for which you want
|
|
@@ -142,6 +175,13 @@ export = CatalogPlatformValidator;
|
|
|
142
175
|
* @typedef GetDepartmentDataParam
|
|
143
176
|
* @property {string} uid - A `uid` is a unique identifier of a department.
|
|
144
177
|
*/
|
|
178
|
+
/**
|
|
179
|
+
* @typedef GetHsCodesParam
|
|
180
|
+
* @property {number} [page] - The page number for pagination.
|
|
181
|
+
* @property {number} [limit] - The number of items to return per page.
|
|
182
|
+
* @property {string} [type] - Filter by HS/SAC code type.
|
|
183
|
+
* @property {string} [q] - Search query to filter HS/SAC codes by code or description.
|
|
184
|
+
*/
|
|
145
185
|
/**
|
|
146
186
|
* @typedef GetHsnCodeParam
|
|
147
187
|
* @property {string} id - Unique id
|
|
@@ -183,6 +223,10 @@ export = CatalogPlatformValidator;
|
|
|
183
223
|
* @property {number} [pageSize] - Number of items to retrieve in each page.
|
|
184
224
|
* Default is 12.
|
|
185
225
|
* @property {string} [search] - Search string to filter the results by batch id
|
|
226
|
+
* @property {string} [startDate] - Filter results by the job's start date.
|
|
227
|
+
* @property {string} [endDate] - Filter results by the job's end date.
|
|
228
|
+
* @property {string} [stage] - Filter results by the current stage of the import job.
|
|
229
|
+
* @property {string} [tags] - Filter results by the tags of the import job.
|
|
186
230
|
*/
|
|
187
231
|
/**
|
|
188
232
|
* @typedef GetInventoryBySizeParam
|
|
@@ -210,10 +254,6 @@ export = CatalogPlatformValidator;
|
|
|
210
254
|
/** @typedef GetInventoryExportParam */
|
|
211
255
|
/** @typedef GetMarketplaceOptinDetailParam */
|
|
212
256
|
/** @typedef GetMarketplacesParam */
|
|
213
|
-
/**
|
|
214
|
-
* @typedef GetOptimalLocationsParam
|
|
215
|
-
* @property {CatalogPlatformModel.AssignStore} body
|
|
216
|
-
*/
|
|
217
257
|
/**
|
|
218
258
|
* @typedef GetProductParam
|
|
219
259
|
* @property {number} itemId - Item Id of the product.
|
|
@@ -241,16 +281,6 @@ export = CatalogPlatformValidator;
|
|
|
241
281
|
* @property {number} [pageSize] - Number of items to retrieve in each page.
|
|
242
282
|
* Default is 12.
|
|
243
283
|
*/
|
|
244
|
-
/**
|
|
245
|
-
* @typedef GetProductBundleParam
|
|
246
|
-
* @property {string} [q] - A search string that is searched with product bundle name.
|
|
247
|
-
* @property {string[]} [slug] - Slugs of bundles to be retrieved.
|
|
248
|
-
*/
|
|
249
|
-
/**
|
|
250
|
-
* @typedef GetProductBundleDetailParam
|
|
251
|
-
* @property {string} id - A `id` is a unique identifier for a particular
|
|
252
|
-
* detail. Pass the `id` of the keywords which you want to retrieve.
|
|
253
|
-
*/
|
|
254
284
|
/**
|
|
255
285
|
* @typedef GetProductExportJobsParam
|
|
256
286
|
* @property {string} [status] - This is a parameter used to find all the jobs
|
|
@@ -331,6 +361,17 @@ export = CatalogPlatformValidator;
|
|
|
331
361
|
* @property {number} [pageSize] - Number of records that can be seen on the
|
|
332
362
|
* page for the company id.
|
|
333
363
|
*/
|
|
364
|
+
/** @typedef GetTaxComponentNamesParam */
|
|
365
|
+
/**
|
|
366
|
+
* @typedef GetTaxVersionDetailsParam
|
|
367
|
+
* @property {string} ruleId - Unique identifier of the tax rule
|
|
368
|
+
* @property {string} [versionStatus] - Filter by tax version status
|
|
369
|
+
* @property {string} [q] - Case-insensitive search by region name (e.g.,
|
|
370
|
+
* "john", "New York") to find matching tax versions
|
|
371
|
+
* @property {string} [limit] - The number of items to return per page for
|
|
372
|
+
* paginated past versions
|
|
373
|
+
* @property {string} [page] - The page number for paginated past versions.
|
|
374
|
+
*/
|
|
334
375
|
/**
|
|
335
376
|
* @typedef GetVariantsOfProductsParam
|
|
336
377
|
* @property {number} itemId - Get list of variants of item Id
|
|
@@ -342,7 +383,7 @@ export = CatalogPlatformValidator;
|
|
|
342
383
|
*/
|
|
343
384
|
/**
|
|
344
385
|
* @typedef ListCategoriesParam
|
|
345
|
-
* @property {
|
|
386
|
+
* @property {number[]} [level] - Get category for multiple levels
|
|
346
387
|
* @property {number} [department] - Get category for multiple departments filtered
|
|
347
388
|
* @property {string} [q] - Get multiple categories filtered by search string
|
|
348
389
|
* @property {number} [pageNo] - The page number to navigate through the given
|
|
@@ -370,7 +411,7 @@ export = CatalogPlatformValidator;
|
|
|
370
411
|
/** @typedef ListHSNCodesParam */
|
|
371
412
|
/**
|
|
372
413
|
* @typedef ListInventoryExportParam
|
|
373
|
-
* @property {string} [status] - Status of the export job.
|
|
414
|
+
* @property {string} [status] - Status of the export job.(Pending, Running, Success)
|
|
374
415
|
* @property {string} [fromDate] - Inventory export history filtered according
|
|
375
416
|
* to from_date.
|
|
376
417
|
* @property {string} [toDate] - Inventory export history filtered according to from_date.
|
|
@@ -383,6 +424,10 @@ export = CatalogPlatformValidator;
|
|
|
383
424
|
/**
|
|
384
425
|
* @typedef ListProductTemplateParam
|
|
385
426
|
* @property {string} department - A `department` is the name of a particular department.
|
|
427
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
428
|
+
* set of results
|
|
429
|
+
* @property {number} [pageSize] - Number of items to retrieve in each page.
|
|
430
|
+
* Default is 12.
|
|
386
431
|
*/
|
|
387
432
|
/**
|
|
388
433
|
* @typedef ListProductTemplateCategoriesParam
|
|
@@ -401,6 +446,11 @@ export = CatalogPlatformValidator;
|
|
|
401
446
|
* @property {string} [itemType] - A `item_type` is the identifier of the type
|
|
402
447
|
* of template required.
|
|
403
448
|
*/
|
|
449
|
+
/**
|
|
450
|
+
* @typedef PartialUpdateProductParam
|
|
451
|
+
* @property {number} itemId - Item ID of the product to be patched.
|
|
452
|
+
* @property {CatalogPlatformModel.ProductPatchSchemaV3} body
|
|
453
|
+
*/
|
|
404
454
|
/**
|
|
405
455
|
* @typedef UpdateHsnCodeParam
|
|
406
456
|
* @property {string} id - Unique id
|
|
@@ -411,15 +461,24 @@ export = CatalogPlatformValidator;
|
|
|
411
461
|
* @property {CatalogPlatformModel.InventoryRequestSchemaV2} body
|
|
412
462
|
*/
|
|
413
463
|
/**
|
|
414
|
-
* @typedef
|
|
415
|
-
* @property {
|
|
416
|
-
* @property {
|
|
464
|
+
* @typedef UpdateLocationPriceParam
|
|
465
|
+
* @property {number} storeId - The Store Id to update price of size for specific store.
|
|
466
|
+
* @property {string} sellerIdentifier - Size Identifier (Seller Identifier or
|
|
467
|
+
* Primary Identifier) of which article price is to update.
|
|
468
|
+
* @property {CatalogPlatformModel.LocationPriceRequestSchema} body
|
|
417
469
|
*/
|
|
418
470
|
/**
|
|
419
|
-
* @typedef
|
|
420
|
-
* @property {
|
|
421
|
-
*
|
|
422
|
-
* @property {
|
|
471
|
+
* @typedef UpdateLocationQuantityParam
|
|
472
|
+
* @property {number} storeId - The Store Id to update quantity of size for
|
|
473
|
+
* specific store.
|
|
474
|
+
* @property {string} sellerIdentifier - Size Identifier (Seller Identifier or
|
|
475
|
+
* Primary Identifier) of which article quantity is to update.
|
|
476
|
+
* @property {CatalogPlatformModel.LocationQuantityRequestSchema} body
|
|
477
|
+
*/
|
|
478
|
+
/**
|
|
479
|
+
* @typedef UpdateMarketplaceOptinParam
|
|
480
|
+
* @property {string} marketplaceSlug - Slug of the marketplace.
|
|
481
|
+
* @property {CatalogPlatformModel.UpdateMarketplaceOptinRequestSchema} body
|
|
423
482
|
*/
|
|
424
483
|
/**
|
|
425
484
|
* @typedef UpdateRealtimeInventoryParam
|
|
@@ -430,15 +489,28 @@ export = CatalogPlatformValidator;
|
|
|
430
489
|
*/
|
|
431
490
|
/**
|
|
432
491
|
* @typedef UpdateSizeGuideParam
|
|
433
|
-
* @property {string} id -
|
|
492
|
+
* @property {string} id - Identifier of the size guide to be edited
|
|
434
493
|
* @property {CatalogPlatformModel.ValidateSizeGuide} body
|
|
435
494
|
*/
|
|
436
495
|
/**
|
|
437
|
-
* @typedef
|
|
438
|
-
* @property {string}
|
|
439
|
-
* @property {
|
|
440
|
-
|
|
441
|
-
|
|
496
|
+
* @typedef UpdateTaxRuleParam
|
|
497
|
+
* @property {string} ruleId - Unique identifier of the tax rule to update
|
|
498
|
+
* @property {CatalogPlatformModel.UpdateTaxRequestBody} body
|
|
499
|
+
*/
|
|
500
|
+
/**
|
|
501
|
+
* @typedef UpdateTaxVersionParam
|
|
502
|
+
* @property {string} ruleId - Unique identifier of the tax rule to be updated
|
|
503
|
+
* @property {string} versionId - Unique identifier of the tax version to be updated
|
|
504
|
+
* @property {CatalogPlatformModel.UpdateTaxVersionRequestBody} body
|
|
505
|
+
*/
|
|
506
|
+
/**
|
|
507
|
+
* @typedef ValidateProductGlobalTemplateParam
|
|
508
|
+
* @property {string} [itemType] - An `item_type` defines the type of item. The
|
|
509
|
+
* default value is standard.
|
|
510
|
+
* @property {boolean} [bulk] - This specification determines the schema type to
|
|
511
|
+
* be retrieved. When set to true, it will return the schema for bulk data;
|
|
512
|
+
* when set to false, it will provide the schema for a single product. The
|
|
513
|
+
* default value is false.
|
|
442
514
|
*/
|
|
443
515
|
/**
|
|
444
516
|
* @typedef ValidateProductTemplateParam
|
|
@@ -454,6 +526,7 @@ export = CatalogPlatformValidator;
|
|
|
454
526
|
* @typedef ValidateProductTemplateSchemaParam
|
|
455
527
|
* @property {string} itemType - An `item_type` defines the type of item. The
|
|
456
528
|
* default value is standard.
|
|
529
|
+
* @property {string} [schemaType] - Schema of price or quantity template
|
|
457
530
|
*/
|
|
458
531
|
declare class CatalogPlatformValidator {
|
|
459
532
|
/** @returns {AddInventoryParam} */
|
|
@@ -468,6 +541,8 @@ declare class CatalogPlatformValidator {
|
|
|
468
541
|
static createBulkInventoryJob(): CreateBulkInventoryJobParam;
|
|
469
542
|
/** @returns {CreateBulkProductUploadJobParam} */
|
|
470
543
|
static createBulkProductUploadJob(): CreateBulkProductUploadJobParam;
|
|
544
|
+
/** @returns {CreateHsCodeParam} */
|
|
545
|
+
static createHsCode(): CreateHsCodeParam;
|
|
471
546
|
/** @returns {CreateInventoryExportParam} */
|
|
472
547
|
static createInventoryExport(): CreateInventoryExportParam;
|
|
473
548
|
/** @returns {CreateInventoryExportJobParam} */
|
|
@@ -478,14 +553,18 @@ declare class CatalogPlatformValidator {
|
|
|
478
553
|
static createProduct(): CreateProductParam;
|
|
479
554
|
/** @returns {CreateProductAssetsInBulkParam} */
|
|
480
555
|
static createProductAssetsInBulk(): CreateProductAssetsInBulkParam;
|
|
481
|
-
/** @returns {CreateProductBundleParam} */
|
|
482
|
-
static createProductBundle(): CreateProductBundleParam;
|
|
483
556
|
/** @returns {CreateProductExportJobParam} */
|
|
484
557
|
static createProductExportJob(): CreateProductExportJobParam;
|
|
485
558
|
/** @returns {CreateProductsInBulkParam} */
|
|
486
559
|
static createProductsInBulk(): CreateProductsInBulkParam;
|
|
487
560
|
/** @returns {CreateSizeGuideParam} */
|
|
488
561
|
static createSizeGuide(): CreateSizeGuideParam;
|
|
562
|
+
/** @returns {CreateTaxParam} */
|
|
563
|
+
static createTax(): CreateTaxParam;
|
|
564
|
+
/** @returns {CreateTaxComponentNameParam} */
|
|
565
|
+
static createTaxComponentName(): CreateTaxComponentNameParam;
|
|
566
|
+
/** @returns {CreateTaxVersionParam} */
|
|
567
|
+
static createTaxVersion(): CreateTaxVersionParam;
|
|
489
568
|
/** @returns {DeleteBulkInventoryJobParam} */
|
|
490
569
|
static deleteBulkInventoryJob(): DeleteBulkInventoryJobParam;
|
|
491
570
|
/** @returns {DeleteProductParam} */
|
|
@@ -496,6 +575,10 @@ declare class CatalogPlatformValidator {
|
|
|
496
575
|
static deleteRealtimeInventory(): DeleteRealtimeInventoryParam;
|
|
497
576
|
/** @returns {DeleteSizeParam} */
|
|
498
577
|
static deleteSize(): DeleteSizeParam;
|
|
578
|
+
/** @returns {DeleteTaxRuleParam} */
|
|
579
|
+
static deleteTaxRule(): DeleteTaxRuleParam;
|
|
580
|
+
/** @returns {DeleteTaxVersionParam} */
|
|
581
|
+
static deleteTaxVersion(): DeleteTaxVersionParam;
|
|
499
582
|
/** @returns {DownloadInventoryTemplateViewParam} */
|
|
500
583
|
static downloadInventoryTemplateView(): DownloadInventoryTemplateViewParam;
|
|
501
584
|
/** @returns {DownloadProductTemplateViewsParam} */
|
|
@@ -506,6 +589,8 @@ declare class CatalogPlatformValidator {
|
|
|
506
589
|
static exportInventoryConfig(): ExportInventoryConfigParam;
|
|
507
590
|
/** @returns {GetAllProductHsnCodesParam} */
|
|
508
591
|
static getAllProductHsnCodes(): GetAllProductHsnCodesParam;
|
|
592
|
+
/** @returns {GetAllTaxRulesParam} */
|
|
593
|
+
static getAllTaxRules(): GetAllTaxRulesParam;
|
|
509
594
|
/** @returns {GetAttributeParam} */
|
|
510
595
|
static getAttribute(): GetAttributeParam;
|
|
511
596
|
/** @returns {GetCategoryDataParam} */
|
|
@@ -518,6 +603,8 @@ declare class CatalogPlatformValidator {
|
|
|
518
603
|
static getCompanyMetrics(): any;
|
|
519
604
|
/** @returns {GetDepartmentDataParam} */
|
|
520
605
|
static getDepartmentData(): GetDepartmentDataParam;
|
|
606
|
+
/** @returns {GetHsCodesParam} */
|
|
607
|
+
static getHsCodes(): GetHsCodesParam;
|
|
521
608
|
/** @returns {GetHsnCodeParam} */
|
|
522
609
|
static getHsnCode(): GetHsnCodeParam;
|
|
523
610
|
/** @returns {GetInventoriesParam} */
|
|
@@ -534,8 +621,6 @@ declare class CatalogPlatformValidator {
|
|
|
534
621
|
static getMarketplaceOptinDetail(): any;
|
|
535
622
|
/** @returns {GetMarketplacesParam} */
|
|
536
623
|
static getMarketplaces(): any;
|
|
537
|
-
/** @returns {GetOptimalLocationsParam} */
|
|
538
|
-
static getOptimalLocations(): GetOptimalLocationsParam;
|
|
539
624
|
/** @returns {GetProductParam} */
|
|
540
625
|
static getProduct(): GetProductParam;
|
|
541
626
|
/** @returns {GetProductAssetsInBulkParam} */
|
|
@@ -544,10 +629,6 @@ declare class CatalogPlatformValidator {
|
|
|
544
629
|
static getProductAttributes(): GetProductAttributesParam;
|
|
545
630
|
/** @returns {GetProductBulkUploadHistoryParam} */
|
|
546
631
|
static getProductBulkUploadHistory(): GetProductBulkUploadHistoryParam;
|
|
547
|
-
/** @returns {GetProductBundleParam} */
|
|
548
|
-
static getProductBundle(): GetProductBundleParam;
|
|
549
|
-
/** @returns {GetProductBundleDetailParam} */
|
|
550
|
-
static getProductBundleDetail(): GetProductBundleDetailParam;
|
|
551
632
|
/** @returns {GetProductExportJobsParam} */
|
|
552
633
|
static getProductExportJobs(): GetProductExportJobsParam;
|
|
553
634
|
/** @returns {GetProductSizeParam} */
|
|
@@ -568,6 +649,10 @@ declare class CatalogPlatformValidator {
|
|
|
568
649
|
static getSizeGuides(): GetSizeGuidesParam;
|
|
569
650
|
/** @returns {GetStoreDetailParam} */
|
|
570
651
|
static getStoreDetail(): GetStoreDetailParam;
|
|
652
|
+
/** @returns {GetTaxComponentNamesParam} */
|
|
653
|
+
static getTaxComponentNames(): any;
|
|
654
|
+
/** @returns {GetTaxVersionDetailsParam} */
|
|
655
|
+
static getTaxVersionDetails(): GetTaxVersionDetailsParam;
|
|
571
656
|
/** @returns {GetVariantsOfProductsParam} */
|
|
572
657
|
static getVariantsOfProducts(): GetVariantsOfProductsParam;
|
|
573
658
|
/** @returns {ListCategoriesParam} */
|
|
@@ -586,38 +671,46 @@ declare class CatalogPlatformValidator {
|
|
|
586
671
|
static listProductTemplateExportDetails(): any;
|
|
587
672
|
/** @returns {ListTemplateBrandTypeValuesParam} */
|
|
588
673
|
static listTemplateBrandTypeValues(): ListTemplateBrandTypeValuesParam;
|
|
674
|
+
/** @returns {PartialUpdateProductParam} */
|
|
675
|
+
static partialUpdateProduct(): PartialUpdateProductParam;
|
|
589
676
|
/** @returns {UpdateHsnCodeParam} */
|
|
590
677
|
static updateHsnCode(): UpdateHsnCodeParam;
|
|
591
678
|
/** @returns {UpdateInventoriesParam} */
|
|
592
679
|
static updateInventories(): UpdateInventoriesParam;
|
|
680
|
+
/** @returns {UpdateLocationPriceParam} */
|
|
681
|
+
static updateLocationPrice(): UpdateLocationPriceParam;
|
|
682
|
+
/** @returns {UpdateLocationQuantityParam} */
|
|
683
|
+
static updateLocationQuantity(): UpdateLocationQuantityParam;
|
|
593
684
|
/** @returns {UpdateMarketplaceOptinParam} */
|
|
594
685
|
static updateMarketplaceOptin(): UpdateMarketplaceOptinParam;
|
|
595
|
-
/** @returns {UpdateProductBundleParam} */
|
|
596
|
-
static updateProductBundle(): UpdateProductBundleParam;
|
|
597
686
|
/** @returns {UpdateRealtimeInventoryParam} */
|
|
598
687
|
static updateRealtimeInventory(): UpdateRealtimeInventoryParam;
|
|
599
688
|
/** @returns {UpdateSizeGuideParam} */
|
|
600
689
|
static updateSizeGuide(): UpdateSizeGuideParam;
|
|
601
|
-
/** @returns {
|
|
602
|
-
static
|
|
690
|
+
/** @returns {UpdateTaxRuleParam} */
|
|
691
|
+
static updateTaxRule(): UpdateTaxRuleParam;
|
|
692
|
+
/** @returns {UpdateTaxVersionParam} */
|
|
693
|
+
static updateTaxVersion(): UpdateTaxVersionParam;
|
|
694
|
+
/** @returns {ValidateProductGlobalTemplateParam} */
|
|
695
|
+
static validateProductGlobalTemplate(): ValidateProductGlobalTemplateParam;
|
|
603
696
|
/** @returns {ValidateProductTemplateParam} */
|
|
604
697
|
static validateProductTemplate(): ValidateProductTemplateParam;
|
|
605
698
|
/** @returns {ValidateProductTemplateSchemaParam} */
|
|
606
699
|
static validateProductTemplateSchema(): ValidateProductTemplateSchemaParam;
|
|
607
700
|
}
|
|
608
701
|
declare namespace CatalogPlatformValidator {
|
|
609
|
-
export { AddInventoryParam, AllSizesParam, BulkHsnCodeParam, CreateBulkInventoryParam, CreateBulkInventoryJobParam, CreateBulkProductUploadJobParam, CreateInventoryExportParam, CreateInventoryExportJobParam, CreateMarketplaceOptinParam, CreateProductParam, CreateProductAssetsInBulkParam,
|
|
702
|
+
export { AddInventoryParam, AllSizesParam, BulkHsnCodeParam, CreateBulkInventoryParam, CreateBulkInventoryJobParam, CreateBulkProductUploadJobParam, CreateHsCodeParam, CreateInventoryExportParam, CreateInventoryExportJobParam, CreateMarketplaceOptinParam, CreateProductParam, CreateProductAssetsInBulkParam, CreateProductExportJobParam, CreateProductsInBulkParam, CreateSizeGuideParam, CreateTaxParam, CreateTaxComponentNameParam, CreateTaxVersionParam, DeleteBulkInventoryJobParam, DeleteProductParam, DeleteProductBulkJobParam, DeleteRealtimeInventoryParam, DeleteSizeParam, DeleteTaxRuleParam, DeleteTaxVersionParam, DownloadInventoryTemplateViewParam, DownloadProductTemplateViewsParam, EditProductParam, ExportInventoryConfigParam, GetAllProductHsnCodesParam, GetAllTaxRulesParam, GetAttributeParam, GetCategoryDataParam, GetCompanyBrandDetailParam, GetCompanyDetailParam, GetCompanyMetricsParam, GetDepartmentDataParam, GetHsCodesParam, GetHsnCodeParam, GetInventoriesParam, GetInventoryBulkUploadHistoryParam, GetInventoryBySizeParam, GetInventoryBySizeIdentifierParam, GetInventoryExportParam, GetMarketplaceOptinDetailParam, GetMarketplacesParam, GetProductParam, GetProductAssetsInBulkParam, GetProductAttributesParam, GetProductBulkUploadHistoryParam, GetProductExportJobsParam, GetProductSizeParam, GetProductTagsParam, GetProductValidationParam, GetProductsParam, GetSellerInsightsParam, GetSingleProductHSNCodeParam, GetSizeGuideParam, GetSizeGuidesParam, GetStoreDetailParam, GetTaxComponentNamesParam, GetTaxVersionDetailsParam, GetVariantsOfProductsParam, ListCategoriesParam, ListDepartmentsDataParam, ListHSNCodesParam, ListInventoryExportParam, ListProductTemplateParam, ListProductTemplateCategoriesParam, ListProductTemplateExportDetailsParam, ListTemplateBrandTypeValuesParam, PartialUpdateProductParam, UpdateHsnCodeParam, UpdateInventoriesParam, UpdateLocationPriceParam, UpdateLocationQuantityParam, UpdateMarketplaceOptinParam, UpdateRealtimeInventoryParam, UpdateSizeGuideParam, UpdateTaxRuleParam, UpdateTaxVersionParam, ValidateProductGlobalTemplateParam, ValidateProductTemplateParam, ValidateProductTemplateSchemaParam };
|
|
610
703
|
}
|
|
611
704
|
type AddInventoryParam = {
|
|
612
705
|
/**
|
|
613
|
-
* - Item
|
|
706
|
+
* - Item id of the product of which size is to be get.
|
|
614
707
|
*/
|
|
615
708
|
itemId: number;
|
|
616
709
|
/**
|
|
617
710
|
* - Size in which inventory is to be added.
|
|
618
711
|
*/
|
|
619
712
|
size: string;
|
|
620
|
-
body: CatalogPlatformModel.
|
|
713
|
+
body: CatalogPlatformModel.InventoryRequestSchema;
|
|
621
714
|
};
|
|
622
715
|
type AllSizesParam = {
|
|
623
716
|
/**
|
|
@@ -633,19 +726,22 @@ type CreateBulkInventoryParam = {
|
|
|
633
726
|
* - Batch Id of the bulk create job.
|
|
634
727
|
*/
|
|
635
728
|
batchId: string;
|
|
636
|
-
body: CatalogPlatformModel.
|
|
729
|
+
body: CatalogPlatformModel.InventoryBulkRequestSchema;
|
|
637
730
|
};
|
|
638
731
|
type CreateBulkInventoryJobParam = {
|
|
639
|
-
body: CatalogPlatformModel.
|
|
732
|
+
body: CatalogPlatformModel.BulkInventoryJob;
|
|
640
733
|
};
|
|
641
734
|
type CreateBulkProductUploadJobParam = {
|
|
642
735
|
body: CatalogPlatformModel.BulkJob;
|
|
643
736
|
};
|
|
737
|
+
type CreateHsCodeParam = {
|
|
738
|
+
body: CatalogPlatformModel.HSCodeItem;
|
|
739
|
+
};
|
|
644
740
|
type CreateInventoryExportParam = {
|
|
645
|
-
body: CatalogPlatformModel.
|
|
741
|
+
body: CatalogPlatformModel.InventoryCreateRequestSchema;
|
|
646
742
|
};
|
|
647
743
|
type CreateInventoryExportJobParam = {
|
|
648
|
-
body: CatalogPlatformModel.
|
|
744
|
+
body: CatalogPlatformModel.InventoryExportRequestSchema;
|
|
649
745
|
};
|
|
650
746
|
type CreateMarketplaceOptinParam = {
|
|
651
747
|
/**
|
|
@@ -653,17 +749,14 @@ type CreateMarketplaceOptinParam = {
|
|
|
653
749
|
* needs to be retrieved.
|
|
654
750
|
*/
|
|
655
751
|
marketplaceSlug: string;
|
|
656
|
-
body: CatalogPlatformModel.
|
|
752
|
+
body: CatalogPlatformModel.OptInPostRequestSchema;
|
|
657
753
|
};
|
|
658
754
|
type CreateProductParam = {
|
|
659
|
-
body: CatalogPlatformModel.
|
|
755
|
+
body: CatalogPlatformModel.ProductCreateSchemaV3;
|
|
660
756
|
};
|
|
661
757
|
type CreateProductAssetsInBulkParam = {
|
|
662
758
|
body: CatalogPlatformModel.ProductBulkAssets;
|
|
663
759
|
};
|
|
664
|
-
type CreateProductBundleParam = {
|
|
665
|
-
body: CatalogPlatformModel.ProductBundleRequest;
|
|
666
|
-
};
|
|
667
760
|
type CreateProductExportJobParam = {
|
|
668
761
|
body: CatalogPlatformModel.ProductTemplateDownloadsExport;
|
|
669
762
|
};
|
|
@@ -672,11 +765,24 @@ type CreateProductsInBulkParam = {
|
|
|
672
765
|
* - Batch Id in which assets to be uploaded.
|
|
673
766
|
*/
|
|
674
767
|
batchId: string;
|
|
675
|
-
body: CatalogPlatformModel.
|
|
768
|
+
body: CatalogPlatformModel.BulkProductRequestSchema;
|
|
676
769
|
};
|
|
677
770
|
type CreateSizeGuideParam = {
|
|
678
771
|
body: CatalogPlatformModel.ValidateSizeGuide;
|
|
679
772
|
};
|
|
773
|
+
type CreateTaxParam = {
|
|
774
|
+
body: CatalogPlatformModel.CreateTaxRequestBody;
|
|
775
|
+
};
|
|
776
|
+
type CreateTaxComponentNameParam = {
|
|
777
|
+
body: CatalogPlatformModel.CreateTaxComponentNameRequestSchema;
|
|
778
|
+
};
|
|
779
|
+
type CreateTaxVersionParam = {
|
|
780
|
+
/**
|
|
781
|
+
* - Unique identifier of the tax rule
|
|
782
|
+
*/
|
|
783
|
+
ruleId: string;
|
|
784
|
+
body: CatalogPlatformModel.CreateTaxVersionRequestBody;
|
|
785
|
+
};
|
|
680
786
|
type DeleteBulkInventoryJobParam = {
|
|
681
787
|
/**
|
|
682
788
|
* - Batch Id of the bulk delete job.
|
|
@@ -685,7 +791,7 @@ type DeleteBulkInventoryJobParam = {
|
|
|
685
791
|
};
|
|
686
792
|
type DeleteProductParam = {
|
|
687
793
|
/**
|
|
688
|
-
* - Id of the product to be
|
|
794
|
+
* - Id of the product to be deleted.
|
|
689
795
|
*/
|
|
690
796
|
itemId: number;
|
|
691
797
|
};
|
|
@@ -717,11 +823,32 @@ type DeleteSizeParam = {
|
|
|
717
823
|
*/
|
|
718
824
|
size: string;
|
|
719
825
|
};
|
|
826
|
+
type DeleteTaxRuleParam = {
|
|
827
|
+
/**
|
|
828
|
+
* - Unique identifier of the tax rule to be deleted
|
|
829
|
+
*/
|
|
830
|
+
ruleId: string;
|
|
831
|
+
};
|
|
832
|
+
type DeleteTaxVersionParam = {
|
|
833
|
+
/**
|
|
834
|
+
* - Unique identifier of the tax rule to be deleted
|
|
835
|
+
*/
|
|
836
|
+
ruleId: string;
|
|
837
|
+
/**
|
|
838
|
+
* - Unique identifier of the tax version to be deleted
|
|
839
|
+
*/
|
|
840
|
+
versionId: string;
|
|
841
|
+
};
|
|
720
842
|
type DownloadInventoryTemplateViewParam = {
|
|
721
843
|
/**
|
|
722
|
-
* -
|
|
844
|
+
* - Specifies the type of template to download.
|
|
845
|
+
* Either quantity or price
|
|
723
846
|
*/
|
|
724
|
-
|
|
847
|
+
schemaType: string;
|
|
848
|
+
/**
|
|
849
|
+
* - File extension type
|
|
850
|
+
*/
|
|
851
|
+
type: string;
|
|
725
852
|
};
|
|
726
853
|
type DownloadProductTemplateViewsParam = {
|
|
727
854
|
/**
|
|
@@ -743,7 +870,7 @@ type EditProductParam = {
|
|
|
743
870
|
* - Id of the product to be updated.
|
|
744
871
|
*/
|
|
745
872
|
itemId: number;
|
|
746
|
-
body: CatalogPlatformModel.
|
|
873
|
+
body: CatalogPlatformModel.ProductUpdateSchemaV3;
|
|
747
874
|
};
|
|
748
875
|
type ExportInventoryConfigParam = {
|
|
749
876
|
/**
|
|
@@ -754,11 +881,11 @@ type ExportInventoryConfigParam = {
|
|
|
754
881
|
};
|
|
755
882
|
type GetAllProductHsnCodesParam = {
|
|
756
883
|
/**
|
|
757
|
-
* -
|
|
884
|
+
* - Indicates current page number
|
|
758
885
|
*/
|
|
759
886
|
pageNo?: number;
|
|
760
887
|
/**
|
|
761
|
-
* -
|
|
888
|
+
* - Indicates page size
|
|
762
889
|
*/
|
|
763
890
|
pageSize?: number;
|
|
764
891
|
/**
|
|
@@ -770,6 +897,29 @@ type GetAllProductHsnCodesParam = {
|
|
|
770
897
|
*/
|
|
771
898
|
type?: string;
|
|
772
899
|
};
|
|
900
|
+
type GetAllTaxRulesParam = {
|
|
901
|
+
/**
|
|
902
|
+
* - Search query to filter tax rules
|
|
903
|
+
*/
|
|
904
|
+
q?: string;
|
|
905
|
+
/**
|
|
906
|
+
* - Filter tax rules based on their lifecycle status.
|
|
907
|
+
*/
|
|
908
|
+
statuses?: string;
|
|
909
|
+
/**
|
|
910
|
+
* - The page number to retrieve
|
|
911
|
+
*/
|
|
912
|
+
page?: number;
|
|
913
|
+
/**
|
|
914
|
+
* - Maximum number of tax rule items per page
|
|
915
|
+
*/
|
|
916
|
+
limit?: number;
|
|
917
|
+
/**
|
|
918
|
+
* - Filter tax rules to include only those
|
|
919
|
+
* with versions in the specified status.
|
|
920
|
+
*/
|
|
921
|
+
versionStatus?: string;
|
|
922
|
+
};
|
|
773
923
|
type GetAttributeParam = {
|
|
774
924
|
/**
|
|
775
925
|
* - Slug of the attribute for which you want
|
|
@@ -813,6 +963,24 @@ type GetDepartmentDataParam = {
|
|
|
813
963
|
*/
|
|
814
964
|
uid: string;
|
|
815
965
|
};
|
|
966
|
+
type GetHsCodesParam = {
|
|
967
|
+
/**
|
|
968
|
+
* - The page number for pagination.
|
|
969
|
+
*/
|
|
970
|
+
page?: number;
|
|
971
|
+
/**
|
|
972
|
+
* - The number of items to return per page.
|
|
973
|
+
*/
|
|
974
|
+
limit?: number;
|
|
975
|
+
/**
|
|
976
|
+
* - Filter by HS/SAC code type.
|
|
977
|
+
*/
|
|
978
|
+
type?: string;
|
|
979
|
+
/**
|
|
980
|
+
* - Search query to filter HS/SAC codes by code or description.
|
|
981
|
+
*/
|
|
982
|
+
q?: string;
|
|
983
|
+
};
|
|
816
984
|
type GetHsnCodeParam = {
|
|
817
985
|
/**
|
|
818
986
|
* - Unique id
|
|
@@ -914,6 +1082,22 @@ type GetInventoryBulkUploadHistoryParam = {
|
|
|
914
1082
|
* - Search string to filter the results by batch id
|
|
915
1083
|
*/
|
|
916
1084
|
search?: string;
|
|
1085
|
+
/**
|
|
1086
|
+
* - Filter results by the job's start date.
|
|
1087
|
+
*/
|
|
1088
|
+
startDate?: string;
|
|
1089
|
+
/**
|
|
1090
|
+
* - Filter results by the job's end date.
|
|
1091
|
+
*/
|
|
1092
|
+
endDate?: string;
|
|
1093
|
+
/**
|
|
1094
|
+
* - Filter results by the current stage of the import job.
|
|
1095
|
+
*/
|
|
1096
|
+
stage?: string;
|
|
1097
|
+
/**
|
|
1098
|
+
* - Filter results by the tags of the import job.
|
|
1099
|
+
*/
|
|
1100
|
+
tags?: string;
|
|
917
1101
|
};
|
|
918
1102
|
type GetInventoryBySizeParam = {
|
|
919
1103
|
/**
|
|
@@ -972,9 +1156,6 @@ type GetInventoryBySizeIdentifierParam = {
|
|
|
972
1156
|
*/
|
|
973
1157
|
locationIds?: number[];
|
|
974
1158
|
};
|
|
975
|
-
type GetOptimalLocationsParam = {
|
|
976
|
-
body: CatalogPlatformModel.AssignStore;
|
|
977
|
-
};
|
|
978
1159
|
type GetProductParam = {
|
|
979
1160
|
/**
|
|
980
1161
|
* - Item Id of the product.
|
|
@@ -1028,23 +1209,6 @@ type GetProductBulkUploadHistoryParam = {
|
|
|
1028
1209
|
*/
|
|
1029
1210
|
pageSize?: number;
|
|
1030
1211
|
};
|
|
1031
|
-
type GetProductBundleParam = {
|
|
1032
|
-
/**
|
|
1033
|
-
* - A search string that is searched with product bundle name.
|
|
1034
|
-
*/
|
|
1035
|
-
q?: string;
|
|
1036
|
-
/**
|
|
1037
|
-
* - Slugs of bundles to be retrieved.
|
|
1038
|
-
*/
|
|
1039
|
-
slug?: string[];
|
|
1040
|
-
};
|
|
1041
|
-
type GetProductBundleDetailParam = {
|
|
1042
|
-
/**
|
|
1043
|
-
* - A `id` is a unique identifier for a particular
|
|
1044
|
-
* detail. Pass the `id` of the keywords which you want to retrieve.
|
|
1045
|
-
*/
|
|
1046
|
-
id: string;
|
|
1047
|
-
};
|
|
1048
1212
|
type GetProductExportJobsParam = {
|
|
1049
1213
|
/**
|
|
1050
1214
|
* - This is a parameter used to find all the jobs
|
|
@@ -1226,6 +1390,30 @@ type GetStoreDetailParam = {
|
|
|
1226
1390
|
*/
|
|
1227
1391
|
pageSize?: number;
|
|
1228
1392
|
};
|
|
1393
|
+
type GetTaxVersionDetailsParam = {
|
|
1394
|
+
/**
|
|
1395
|
+
* - Unique identifier of the tax rule
|
|
1396
|
+
*/
|
|
1397
|
+
ruleId: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* - Filter by tax version status
|
|
1400
|
+
*/
|
|
1401
|
+
versionStatus?: string;
|
|
1402
|
+
/**
|
|
1403
|
+
* - Case-insensitive search by region name (e.g.,
|
|
1404
|
+
* "john", "New York") to find matching tax versions
|
|
1405
|
+
*/
|
|
1406
|
+
q?: string;
|
|
1407
|
+
/**
|
|
1408
|
+
* - The number of items to return per page for
|
|
1409
|
+
* paginated past versions
|
|
1410
|
+
*/
|
|
1411
|
+
limit?: string;
|
|
1412
|
+
/**
|
|
1413
|
+
* - The page number for paginated past versions.
|
|
1414
|
+
*/
|
|
1415
|
+
page?: string;
|
|
1416
|
+
};
|
|
1229
1417
|
type GetVariantsOfProductsParam = {
|
|
1230
1418
|
/**
|
|
1231
1419
|
* - Get list of variants of item Id
|
|
@@ -1250,7 +1438,7 @@ type ListCategoriesParam = {
|
|
|
1250
1438
|
/**
|
|
1251
1439
|
* - Get category for multiple levels
|
|
1252
1440
|
*/
|
|
1253
|
-
level?:
|
|
1441
|
+
level?: number[];
|
|
1254
1442
|
/**
|
|
1255
1443
|
* - Get category for multiple departments filtered
|
|
1256
1444
|
*/
|
|
@@ -1315,7 +1503,7 @@ type ListDepartmentsDataParam = {
|
|
|
1315
1503
|
};
|
|
1316
1504
|
type ListInventoryExportParam = {
|
|
1317
1505
|
/**
|
|
1318
|
-
* - Status of the export job.
|
|
1506
|
+
* - Status of the export job.(Pending, Running, Success)
|
|
1319
1507
|
*/
|
|
1320
1508
|
status?: string;
|
|
1321
1509
|
/**
|
|
@@ -1347,6 +1535,16 @@ type ListProductTemplateParam = {
|
|
|
1347
1535
|
* - A `department` is the name of a particular department.
|
|
1348
1536
|
*/
|
|
1349
1537
|
department: string;
|
|
1538
|
+
/**
|
|
1539
|
+
* - The page number to navigate through the given
|
|
1540
|
+
* set of results
|
|
1541
|
+
*/
|
|
1542
|
+
pageNo?: number;
|
|
1543
|
+
/**
|
|
1544
|
+
* - Number of items to retrieve in each page.
|
|
1545
|
+
* Default is 12.
|
|
1546
|
+
*/
|
|
1547
|
+
pageSize?: number;
|
|
1350
1548
|
};
|
|
1351
1549
|
type ListProductTemplateCategoriesParam = {
|
|
1352
1550
|
/**
|
|
@@ -1377,6 +1575,13 @@ type ListTemplateBrandTypeValuesParam = {
|
|
|
1377
1575
|
*/
|
|
1378
1576
|
itemType?: string;
|
|
1379
1577
|
};
|
|
1578
|
+
type PartialUpdateProductParam = {
|
|
1579
|
+
/**
|
|
1580
|
+
* - Item ID of the product to be patched.
|
|
1581
|
+
*/
|
|
1582
|
+
itemId: number;
|
|
1583
|
+
body: CatalogPlatformModel.ProductPatchSchemaV3;
|
|
1584
|
+
};
|
|
1380
1585
|
type UpdateHsnCodeParam = {
|
|
1381
1586
|
/**
|
|
1382
1587
|
* - Unique id
|
|
@@ -1387,20 +1592,37 @@ type UpdateHsnCodeParam = {
|
|
|
1387
1592
|
type UpdateInventoriesParam = {
|
|
1388
1593
|
body: CatalogPlatformModel.InventoryRequestSchemaV2;
|
|
1389
1594
|
};
|
|
1390
|
-
type
|
|
1595
|
+
type UpdateLocationPriceParam = {
|
|
1391
1596
|
/**
|
|
1392
|
-
* -
|
|
1597
|
+
* - The Store Id to update price of size for specific store.
|
|
1393
1598
|
*/
|
|
1394
|
-
|
|
1395
|
-
|
|
1599
|
+
storeId: number;
|
|
1600
|
+
/**
|
|
1601
|
+
* - Size Identifier (Seller Identifier or
|
|
1602
|
+
* Primary Identifier) of which article price is to update.
|
|
1603
|
+
*/
|
|
1604
|
+
sellerIdentifier: string;
|
|
1605
|
+
body: CatalogPlatformModel.LocationPriceRequestSchema;
|
|
1396
1606
|
};
|
|
1397
|
-
type
|
|
1607
|
+
type UpdateLocationQuantityParam = {
|
|
1398
1608
|
/**
|
|
1399
|
-
* -
|
|
1400
|
-
*
|
|
1609
|
+
* - The Store Id to update quantity of size for
|
|
1610
|
+
* specific store.
|
|
1401
1611
|
*/
|
|
1402
|
-
|
|
1403
|
-
|
|
1612
|
+
storeId: number;
|
|
1613
|
+
/**
|
|
1614
|
+
* - Size Identifier (Seller Identifier or
|
|
1615
|
+
* Primary Identifier) of which article quantity is to update.
|
|
1616
|
+
*/
|
|
1617
|
+
sellerIdentifier: string;
|
|
1618
|
+
body: CatalogPlatformModel.LocationQuantityRequestSchema;
|
|
1619
|
+
};
|
|
1620
|
+
type UpdateMarketplaceOptinParam = {
|
|
1621
|
+
/**
|
|
1622
|
+
* - Slug of the marketplace.
|
|
1623
|
+
*/
|
|
1624
|
+
marketplaceSlug: string;
|
|
1625
|
+
body: CatalogPlatformModel.UpdateMarketplaceOptinRequestSchema;
|
|
1404
1626
|
};
|
|
1405
1627
|
type UpdateRealtimeInventoryParam = {
|
|
1406
1628
|
/**
|
|
@@ -1416,22 +1638,42 @@ type UpdateRealtimeInventoryParam = {
|
|
|
1416
1638
|
};
|
|
1417
1639
|
type UpdateSizeGuideParam = {
|
|
1418
1640
|
/**
|
|
1419
|
-
* -
|
|
1641
|
+
* - Identifier of the size guide to be edited
|
|
1420
1642
|
*/
|
|
1421
1643
|
id: string;
|
|
1422
1644
|
body: CatalogPlatformModel.ValidateSizeGuide;
|
|
1423
1645
|
};
|
|
1424
|
-
type
|
|
1646
|
+
type UpdateTaxRuleParam = {
|
|
1425
1647
|
/**
|
|
1426
|
-
* -
|
|
1648
|
+
* - Unique identifier of the tax rule to update
|
|
1427
1649
|
*/
|
|
1428
|
-
|
|
1650
|
+
ruleId: string;
|
|
1651
|
+
body: CatalogPlatformModel.UpdateTaxRequestBody;
|
|
1652
|
+
};
|
|
1653
|
+
type UpdateTaxVersionParam = {
|
|
1654
|
+
/**
|
|
1655
|
+
* - Unique identifier of the tax rule to be updated
|
|
1656
|
+
*/
|
|
1657
|
+
ruleId: string;
|
|
1429
1658
|
/**
|
|
1430
|
-
* -
|
|
1431
|
-
* i.e. set, standard , digital.
|
|
1659
|
+
* - Unique identifier of the tax version to be updated
|
|
1432
1660
|
*/
|
|
1433
|
-
|
|
1434
|
-
body: CatalogPlatformModel.
|
|
1661
|
+
versionId: string;
|
|
1662
|
+
body: CatalogPlatformModel.UpdateTaxVersionRequestBody;
|
|
1663
|
+
};
|
|
1664
|
+
type ValidateProductGlobalTemplateParam = {
|
|
1665
|
+
/**
|
|
1666
|
+
* - An `item_type` defines the type of item. The
|
|
1667
|
+
* default value is standard.
|
|
1668
|
+
*/
|
|
1669
|
+
itemType?: string;
|
|
1670
|
+
/**
|
|
1671
|
+
* - This specification determines the schema type to
|
|
1672
|
+
* be retrieved. When set to true, it will return the schema for bulk data;
|
|
1673
|
+
* when set to false, it will provide the schema for a single product. The
|
|
1674
|
+
* default value is false.
|
|
1675
|
+
*/
|
|
1676
|
+
bulk?: boolean;
|
|
1435
1677
|
};
|
|
1436
1678
|
type ValidateProductTemplateParam = {
|
|
1437
1679
|
/**
|
|
@@ -1457,6 +1699,10 @@ type ValidateProductTemplateSchemaParam = {
|
|
|
1457
1699
|
* default value is standard.
|
|
1458
1700
|
*/
|
|
1459
1701
|
itemType: string;
|
|
1702
|
+
/**
|
|
1703
|
+
* - Schema of price or quantity template
|
|
1704
|
+
*/
|
|
1705
|
+
schemaType?: string;
|
|
1460
1706
|
};
|
|
1461
1707
|
type GetCompanyDetailParam = any;
|
|
1462
1708
|
type GetCompanyMetricsParam = any;
|
|
@@ -1465,6 +1711,7 @@ type GetMarketplaceOptinDetailParam = any;
|
|
|
1465
1711
|
type GetMarketplacesParam = any;
|
|
1466
1712
|
type GetProductTagsParam = any;
|
|
1467
1713
|
type GetProductValidationParam = any;
|
|
1714
|
+
type GetTaxComponentNamesParam = any;
|
|
1468
1715
|
type ListHSNCodesParam = any;
|
|
1469
1716
|
type ListProductTemplateExportDetailsParam = any;
|
|
1470
1717
|
import CatalogPlatformModel = require("./CatalogPlatformModel");
|