@gofynd/fdk-client-javascript 1.6.4 → 3.1.0-beta.1

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.
Files changed (290) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +0 -2
  4. package/sdk/application/ApplicationClient.js +0 -2
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +100 -80
  6. package/sdk/application/Cart/CartApplicationClient.js +257 -126
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +3 -3
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +61 -21
  16. package/sdk/application/Content/ContentApplicationClient.js +250 -36
  17. package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
  18. package/sdk/application/Lead/LeadApplicationClient.js +3 -3
  19. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +106 -57
  20. package/sdk/application/Logistic/LogisticApplicationClient.js +326 -208
  21. package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
  22. package/sdk/application/Order/OrderApplicationClient.js +140 -21
  23. package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
  24. package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
  25. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  26. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  27. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  28. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  29. package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
  30. package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
  31. package/sdk/application/User/UserApplicationClient.d.ts +13 -23
  32. package/sdk/application/User/UserApplicationClient.js +9 -57
  33. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  34. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  35. package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
  36. package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
  37. package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
  38. package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
  39. package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
  40. package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
  41. package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
  42. package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
  43. package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
  44. package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
  45. package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
  46. package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
  47. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +0 -10
  48. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +0 -75
  49. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +1 -54
  50. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +0 -43
  51. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
  52. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +0 -6
  53. package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
  54. package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
  55. package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
  56. package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
  57. package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
  58. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
  59. package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
  60. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
  61. package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
  62. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
  63. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
  64. package/sdk/partner/PartnerClient.d.ts +6 -0
  65. package/sdk/partner/PartnerClient.js +9 -0
  66. package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
  67. package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
  68. package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
  69. package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
  70. package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
  71. package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
  72. package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
  73. package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
  74. package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
  75. package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
  76. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
  77. package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
  78. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
  79. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
  80. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
  81. package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
  82. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
  83. package/sdk/partner/index.d.ts +3 -0
  84. package/sdk/partner/index.js +6 -0
  85. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
  86. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  87. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
  88. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
  89. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  90. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  91. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
  92. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
  93. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  94. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  95. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  96. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  97. package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
  98. package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
  99. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
  100. package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
  101. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +251 -172
  102. package/sdk/platform/Cart/CartPlatformApplicationClient.js +639 -521
  103. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
  104. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
  105. package/sdk/platform/Cart/CartPlatformModel.d.ts +3150 -4468
  106. package/sdk/platform/Cart/CartPlatformModel.js +2858 -1867
  107. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +976 -380
  108. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6475 -2015
  109. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1083 -162
  110. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +884 -80
  111. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +325 -568
  112. package/sdk/platform/Catalog/CatalogPlatformClient.js +1162 -1562
  113. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6008 -7688
  114. package/sdk/platform/Catalog/CatalogPlatformModel.js +9522 -6892
  115. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +234 -227
  116. package/sdk/platform/Catalog/CatalogPlatformValidator.js +183 -177
  117. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
  118. package/sdk/platform/Common/CommonPlatformClient.js +5 -6
  119. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  120. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  121. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -238
  122. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +876 -588
  123. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
  124. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
  125. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
  126. package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
  127. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +506 -270
  128. package/sdk/platform/Communication/CommunicationPlatformModel.js +611 -313
  129. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
  130. package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
  131. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +78 -77
  132. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +97 -91
  133. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
  134. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
  135. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +31 -20
  136. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -20
  137. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
  138. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
  139. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
  140. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
  141. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
  142. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
  143. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1206 -459
  144. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1011 -320
  145. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
  146. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
  147. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +255 -140
  148. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1095 -464
  149. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
  150. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
  151. package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
  152. package/sdk/platform/Content/ContentPlatformClient.js +459 -379
  153. package/sdk/platform/Content/ContentPlatformModel.d.ts +871 -1315
  154. package/sdk/platform/Content/ContentPlatformModel.js +940 -599
  155. package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
  156. package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
  157. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
  158. package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
  159. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
  160. package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
  161. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  162. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  163. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
  164. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
  165. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
  166. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
  167. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
  168. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
  169. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
  170. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
  171. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  172. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  173. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  174. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  175. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
  176. package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
  177. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  178. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  179. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
  180. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
  181. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
  182. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
  183. package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
  184. package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
  185. package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
  186. package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
  187. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
  188. package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
  189. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
  190. package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
  191. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
  192. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
  193. package/sdk/platform/Order/OrderPlatformClient.d.ts +486 -277
  194. package/sdk/platform/Order/OrderPlatformClient.js +1491 -938
  195. package/sdk/platform/Order/OrderPlatformModel.d.ts +4560 -8636
  196. package/sdk/platform/Order/OrderPlatformModel.js +3604 -4056
  197. package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
  198. package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
  199. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  200. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  201. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  202. package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
  203. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
  204. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
  205. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
  206. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
  207. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
  208. package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
  209. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3531 -1292
  210. package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1504
  211. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
  212. package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
  213. package/sdk/platform/PlatformClient.d.ts +2 -0
  214. package/sdk/platform/PlatformClient.js +4 -0
  215. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  216. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  217. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  218. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  219. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
  220. package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
  221. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
  222. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2188 -302
  223. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +394 -54
  224. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +342 -37
  225. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +150 -212
  226. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +589 -1238
  227. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3581 -2960
  228. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3730 -1779
  229. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +230 -382
  230. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +164 -287
  231. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
  232. package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
  233. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
  234. package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
  235. package/sdk/platform/Share/SharePlatformModel.d.ts +11 -50
  236. package/sdk/platform/Share/SharePlatformModel.js +5 -43
  237. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +36 -16
  238. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +201 -58
  239. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +28 -17
  240. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +33 -16
  241. package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
  242. package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
  243. package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
  244. package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
  245. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
  246. package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
  251. package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
  252. package/sdk/platform/User/UserPlatformModel.js +209 -216
  253. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  254. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  255. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
  256. package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
  257. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  258. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  259. package/sdk/platform/index.d.ts +1 -0
  260. package/sdk/platform/index.js +2 -0
  261. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
  262. package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
  263. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
  264. package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
  265. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
  266. package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
  267. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  268. package/sdk/public/Content/ContentPublicClient.js +183 -0
  269. package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
  270. package/sdk/public/Content/ContentPublicModel.js +47 -1
  271. package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
  272. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  273. package/sdk/public/PublicClient.d.ts +0 -2
  274. package/sdk/public/PublicClient.js +0 -4
  275. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  276. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  277. package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
  278. package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
  279. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  280. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  281. package/sdk/public/index.d.ts +0 -1
  282. package/sdk/public/index.js +0 -2
  283. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  284. package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
  285. package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
  286. package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
  287. package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
  288. package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
  289. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
  290. package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
@@ -1,44 +1,33 @@
1
1
  export = CatalogPlatformValidator;
2
- /**
3
- * @typedef AddInventoryParam
4
- * @property {number} itemId - Item id of the product of which size is to be get.
5
- * @property {string} size - Size in which inventory is to be added.
6
- * @property {CatalogPlatformModel.InventoryRequestSchema} body
7
- */
8
2
  /**
9
3
  * @typedef AllSizesParam
10
4
  * @property {number} itemId - Id of the product to be updated.
11
5
  */
12
- /**
13
- * @typedef BulkHsnCodeParam
14
- * @property {CatalogPlatformModel.BulkHsnUpsert} body
15
- */
16
6
  /**
17
7
  * @typedef CreateBulkInventoryParam
18
8
  * @property {string} batchId - Batch Id of the bulk create job.
19
- * @property {CatalogPlatformModel.InventoryBulkRequestSchema} body
9
+ * @property {CatalogPlatformModel.InventoryBulkRequest} body
20
10
  */
21
11
  /**
22
12
  * @typedef CreateBulkInventoryJobParam
23
- * @property {CatalogPlatformModel.BulkJob} body
13
+ * @property {CatalogPlatformModel.InventoryBulkJob} body
24
14
  */
25
15
  /**
26
16
  * @typedef CreateBulkProductUploadJobParam
27
- * @property {CatalogPlatformModel.BulkJob} body
17
+ * @property {CatalogPlatformModel.BulkProductUploadJob} body
28
18
  */
29
19
  /**
30
20
  * @typedef CreateInventoryExportParam
31
- * @property {CatalogPlatformModel.InventoryCreateRequestSchema} body
21
+ * @property {CatalogPlatformModel.InventoryCreateRequest} body
32
22
  */
33
23
  /**
34
24
  * @typedef CreateInventoryExportJobParam
35
- * @property {CatalogPlatformModel.InventoryExportRequestSchema} body
25
+ * @property {CatalogPlatformModel.InventoryExportRequest} body
36
26
  */
37
27
  /**
38
28
  * @typedef CreateMarketplaceOptinParam
39
- * @property {string} marketplaceSlug - The marketplace for which the detail
40
- * needs to be retrieved.
41
- * @property {CatalogPlatformModel.OptInPostRequestSchema} body
29
+ * @property {string} marketplace - Slug of the marketplace .
30
+ * @property {CatalogPlatformModel.CreateMarketplaceOptinRequest} body
42
31
  */
43
32
  /**
44
33
  * @typedef CreateProductParam
@@ -50,7 +39,7 @@ export = CatalogPlatformValidator;
50
39
  */
51
40
  /**
52
41
  * @typedef CreateProductBundleParam
53
- * @property {CatalogPlatformModel.ProductBundleRequestSchema} body
42
+ * @property {CatalogPlatformModel.ProductBundleRequest} body
54
43
  */
55
44
  /**
56
45
  * @typedef CreateProductExportJobParam
@@ -59,7 +48,7 @@ export = CatalogPlatformValidator;
59
48
  /**
60
49
  * @typedef CreateProductsInBulkParam
61
50
  * @property {string} batchId - Batch Id in which assets to be uploaded.
62
- * @property {CatalogPlatformModel.BulkProductRequestSchema} body
51
+ * @property {CatalogPlatformModel.BulkProductRequest} body
63
52
  */
64
53
  /**
65
54
  * @typedef CreateSizeGuideParam
@@ -71,12 +60,11 @@ export = CatalogPlatformValidator;
71
60
  */
72
61
  /**
73
62
  * @typedef DeleteProductParam
74
- * @property {number} itemId - Id of the product to be deleted.
75
- * @property {CatalogPlatformModel.DeleteProductRequestBody} body
63
+ * @property {number} itemId - Id of the product to be updated.
76
64
  */
77
65
  /**
78
66
  * @typedef DeleteProductBulkJobParam
79
- * @property {number} batchId - Batch Id of the bulk product job to be deleted.
67
+ * @property {string} batchId - Batch Id of the bulk product job to be deleted.
80
68
  */
81
69
  /**
82
70
  * @typedef DeleteRealtimeInventoryParam
@@ -92,7 +80,7 @@ export = CatalogPlatformValidator;
92
80
  */
93
81
  /**
94
82
  * @typedef DownloadInventoryTemplateViewParam
95
- * @property {string} itemType - An `item_type` defines the type of item.
83
+ * @property {string} type - Type of file
96
84
  */
97
85
  /**
98
86
  * @typedef DownloadProductTemplateViewsParam
@@ -108,13 +96,12 @@ export = CatalogPlatformValidator;
108
96
  */
109
97
  /**
110
98
  * @typedef ExportInventoryConfigParam
111
- * @property {string} [filterType] - Filter type from any one of ['brand',
112
- * 'store', 'type']
99
+ * @property {string} filter - Filter type from any one of ['brand', 'store', 'type']
113
100
  */
114
101
  /**
115
102
  * @typedef GetAllProductHsnCodesParam
116
- * @property {number} [pageNo] - Indicates current page number
117
- * @property {number} [pageSize] - Indicates page size
103
+ * @property {number} [pageNo] - Page no
104
+ * @property {number} [pageSize] - Page size
118
105
  * @property {string} [q] - Search using hsn code, description, reporting_hsn
119
106
  * @property {string} [type] - Search using type
120
107
  */
@@ -137,8 +124,21 @@ export = CatalogPlatformValidator;
137
124
  * @property {string} [marketplace] - The marketplace platform associated with
138
125
  * the company id.
139
126
  */
127
+ /**
128
+ * @typedef GetCompanyBrandsDRIParam
129
+ * @property {number} [pageNo] - The page number to navigate through the given
130
+ * set of results
131
+ * @property {number} [pageSize] - Number of items to retrieve in each page.
132
+ * Default is 10.
133
+ */
140
134
  /** @typedef GetCompanyDetailParam */
141
135
  /** @typedef GetCompanyMetricsParam */
136
+ /**
137
+ * @typedef GetCompanyVerificationParam
138
+ * @property {string} [q] - A `q` parameter is used to search the company by its name.
139
+ * @property {number} [pageNo] - A `page_no` parameter is a number of the page requested.
140
+ * @property {number} [pageSize] - A `page_size` is the no of items per page.
141
+ */
142
142
  /**
143
143
  * @typedef GetDepartmentDataParam
144
144
  * @property {string} uid - A `uid` is a unique identifier of a department.
@@ -149,7 +149,7 @@ export = CatalogPlatformValidator;
149
149
  */
150
150
  /**
151
151
  * @typedef GetInventoriesParam
152
- * @property {string} [itemId] - Item code of the product of which size is to be get.
152
+ * @property {number} [itemId] - Item code of the product of which size is to be get.
153
153
  * @property {string} [size] - Size of which inventory is to get.
154
154
  * @property {number} [pageNo] - The page number to navigate through the given
155
155
  * set of results
@@ -163,17 +163,12 @@ export = CatalogPlatformValidator;
163
163
  * @property {number[]} [brandIds] - The Brand Id of products to fetch inventory.
164
164
  * @property {string[]} [sellerIdentifiers] - The Seller Identifier or Primary
165
165
  * Identifier of the inventory.
166
- * @property {number} [qtyGt] - This field allows you to filter for inventories
167
- * that have quantity greater than to the specified value based on qty_type filter.
168
- * @property {number} [qtyLt] - This field allows you to filter for inventories
169
- * that have a quantity less than to the specified value based on qty_type filter.
170
- * @property {string} [qtyType] - This field provides flexibility in selecting
171
- * filter for inventory quantity counts and date queries. For example, you
172
- * might use this field to specify "total" or "sellable" quantity.
166
+ * @property {number} [minSellable] - Min sellable quantity.
167
+ * @property {number} [maxSellable] - Max sellable quantity.
173
168
  * @property {string} [fromDate] - Inventory updated on filter to get
174
- * inventories greater then or equal to provided date based on qty_type value.
169
+ * inventories greater then provided date.
175
170
  * @property {string} [toDate] - Inventory updated on filter to get inventories
176
- * less then or equal to provided date based on qty_type value.
171
+ * less then provided date.
177
172
  * @property {string} [sizeIdentifier] - Size Identifier (Seller Identifier or
178
173
  * Primary Identifier) of which inventory is to get.
179
174
  */
@@ -183,7 +178,6 @@ export = CatalogPlatformValidator;
183
178
  * set of results
184
179
  * @property {number} [pageSize] - Number of items to retrieve in each page.
185
180
  * Default is 12.
186
- * @property {string} [search] - Search string to filter the results by batch id
187
181
  */
188
182
  /**
189
183
  * @typedef GetInventoryBySizeParam
@@ -209,12 +203,12 @@ export = CatalogPlatformValidator;
209
203
  * @property {number[]} [locationIds] - Search by store ids.
210
204
  */
211
205
  /** @typedef GetInventoryExportParam */
212
- /** @typedef GetMarketplaceOptinDetailParam */
213
- /** @typedef GetMarketplacesParam */
214
206
  /**
215
- * @typedef GetOptimalLocationsParam
216
- * @property {CatalogPlatformModel.AssignStore} body
207
+ * @typedef GetInventoryExportDetailParam
208
+ * @property {string} jobId - Company Id in which assets to be uploaded.
217
209
  */
210
+ /** @typedef GetLocationTagsParam */
211
+ /** @typedef GetMarketplacesParam */
218
212
  /**
219
213
  * @typedef GetProductParam
220
214
  * @property {number} itemId - Item Id of the product.
@@ -256,6 +250,10 @@ export = CatalogPlatformValidator;
256
250
  * @property {string} id - A `id` is a unique identifier for a particular
257
251
  * detail. Pass the `id` of the keywords which you want to retrieve.
258
252
  */
253
+ /**
254
+ * @typedef GetProductExportDetailParam
255
+ * @property {string} jobId - Company Id in which assets to be uploaded.
256
+ */
259
257
  /**
260
258
  * @typedef GetProductExportJobsParam
261
259
  * @property {string} [status] - This is a parameter used to find all the jobs
@@ -273,16 +271,27 @@ export = CatalogPlatformValidator;
273
271
  */
274
272
  /**
275
273
  * @typedef GetProductSizeParam
276
- * @property {string} [itemCode] - Item code of the product size.
277
274
  * @property {number} itemId - Item Id of the product size.
278
- * @property {number} [brandUid] - Brand Id of the product size.
279
- * @property {number} [uid] - Id of the product size.
280
275
  */
281
276
  /** @typedef GetProductTagsParam */
282
- /** @typedef GetProductValidationParam */
277
+ /**
278
+ * @typedef GetProductTemplateBySlugParam
279
+ * @property {string} slug - Slug of the template.
280
+ */
281
+ /**
282
+ * @typedef GetProductValidationParam
283
+ * @property {string} type - Type of identifier to validate the product against.
284
+ * @property {string} slug - Type of identifier to validate the product against.
285
+ */
286
+ /**
287
+ * @typedef GetProductVerificationDetailsParam
288
+ * @property {number} itemId - A `item_id` is a unique identifier for a specific product.
289
+ */
283
290
  /**
284
291
  * @typedef GetProductsParam
285
292
  * @property {number[]} [brandIds] - Get multiple products filtered by Brand Ids
293
+ * @property {boolean} [multiSize] - Get multiple products filtered by weather
294
+ * have multiple sizes or not
286
295
  * @property {number[]} [categoryIds] - Get multiple products filtered by Category Ids
287
296
  * @property {number[]} [itemIds] - Get multiple products filtered by Item Ids
288
297
  * @property {number[]} [departmentIds] - Get multiple products filtered by Department Ids
@@ -322,12 +331,12 @@ export = CatalogPlatformValidator;
322
331
  * @typedef GetSizeGuidesParam
323
332
  * @property {boolean} [active] - Filter size guide on basis of active, in-active
324
333
  * @property {string} [q] - Query that is to be searched.
334
+ * @property {number} [brandId] - Brand id that is to be searched.
325
335
  * @property {string} [tag] - To filter size guide on basis of tag.
326
336
  * @property {number} [pageNo] - The page number to navigate through the given
327
337
  * set of results
328
338
  * @property {number} [pageSize] - Number of items to retrieve in each page.
329
339
  * Default is 10.
330
- * @property {number} [brandId] - Brand id that is to be searched.
331
340
  */
332
341
  /**
333
342
  * @typedef GetStoreDetailParam
@@ -336,6 +345,11 @@ export = CatalogPlatformValidator;
336
345
  * @property {number} [pageSize] - Number of records that can be seen on the
337
346
  * page for the company id.
338
347
  */
348
+ /**
349
+ * @typedef GetVariantTypesParam
350
+ * @property {string} templateTag - The page number to navigate through the
351
+ * given set of results
352
+ */
339
353
  /**
340
354
  * @typedef GetVariantsOfProductsParam
341
355
  * @property {number} itemId - Get list of variants of item Id
@@ -355,7 +369,6 @@ export = CatalogPlatformValidator;
355
369
  * @property {number} [pageSize] - Number of items to retrieve in each page.
356
370
  * Default is 10.
357
371
  * @property {number[]} [uids] - Get multiple categories filtered by category uids.
358
- * @property {string} [slug] - Get category by slug
359
372
  */
360
373
  /**
361
374
  * @typedef ListDepartmentsDataParam
@@ -370,12 +383,12 @@ export = CatalogPlatformValidator;
370
383
  * department in search parameter.
371
384
  * @property {boolean} [isActive] - Can query for departments based on whether
372
385
  * they are active or inactive.
373
- * @property {string} [slug] - Can filter by slug
386
+ * @property {number[]} [uids] - Filter department by uids.
374
387
  */
375
388
  /** @typedef ListHSNCodesParam */
376
389
  /**
377
390
  * @typedef ListInventoryExportParam
378
- * @property {string} [status] - Status of the export job.(Pending, Running, Success)
391
+ * @property {string} [status] - Status of the export job.
379
392
  * @property {string} [fromDate] - Inventory export history filtered according
380
393
  * to from_date.
381
394
  * @property {string} [toDate] - Inventory export history filtered according to from_date.
@@ -395,8 +408,11 @@ export = CatalogPlatformValidator;
395
408
  * whose category needs to be listed. Can specify multiple departments.
396
409
  * @property {string} itemType - An `item_type` is the type of item, it can be
397
410
  * `set`, `standard`, `digital`, etc.
411
+ * @property {number} [pageSize] - Number of categories needed in one page
412
+ * @property {number} [pageNo] - Page number to fetch, for example if pagesize
413
+ * is 10 and page number 1,
414
+ * @property {number} [q] - Search string to search categories from
398
415
  */
399
- /** @typedef ListProductTemplateExportDetailsParam */
400
416
  /**
401
417
  * @typedef ListTemplateBrandTypeValuesParam
402
418
  * @property {string} filter - A `filter` is the unique identifier of the type
@@ -407,39 +423,29 @@ export = CatalogPlatformValidator;
407
423
  * of template required.
408
424
  */
409
425
  /**
410
- * @typedef UpdateHsnCodeParam
411
- * @property {string} id - Unique id
412
- * @property {CatalogPlatformModel.HsnUpsert} body
413
- */
414
- /**
415
- * @typedef UpdateInventoriesParam
416
- * @property {CatalogPlatformModel.InventoryRequestSchemaV2} body
426
+ * @typedef PatchInventoryExportDetailParam
427
+ * @property {string} jobId - Company Id in which assets to be uploaded.
428
+ * @property {CatalogPlatformModel.ExportPatchRequest} body
417
429
  */
418
430
  /**
419
- * @typedef UpdateLocationPriceParam
420
- * @property {number} storeId - The Store Id to update price of size for specific store.
421
- * @property {string} sellerIdentifier - Size Identifier (Seller Identifier or
422
- * Primary Identifier) of which article price is to update.
423
- * @property {CatalogPlatformModel.LocationPriceRequestSchema} body
431
+ * @typedef PatchProductExportDetailParam
432
+ * @property {string} jobId - Company Id in which assets to be uploaded.
433
+ * @property {CatalogPlatformModel.ExportPatchRequest} body
424
434
  */
425
435
  /**
426
- * @typedef UpdateLocationQuantityParam
427
- * @property {number} storeId - The Store Id to update quantity of size for
428
- * specific store.
429
- * @property {string} sellerIdentifier - Size Identifier (Seller Identifier or
430
- * Primary Identifier) of which article quantity is to update.
431
- * @property {CatalogPlatformModel.LocationQuantityRequestSchema} body
436
+ * @typedef UpdateInventoriesParam
437
+ * @property {CatalogPlatformModel.InventoryRequestSchemaV2} body
432
438
  */
433
439
  /**
434
440
  * @typedef UpdateMarketplaceOptinParam
435
- * @property {string} marketplaceSlug - Slug of the marketplace .
436
- * @property {CatalogPlatformModel.UpdateMarketplaceOptinRequestSchema} body
441
+ * @property {string} marketplace - Slug of the marketplace .
442
+ * @property {CatalogPlatformModel.UpdateMarketplaceOptinRequest} body
437
443
  */
438
444
  /**
439
445
  * @typedef UpdateProductBundleParam
440
446
  * @property {string} id - A `id` is a unique identifier for a particular
441
447
  * detail. Pass the `id` of the keywords which you want to delete.
442
- * @property {CatalogPlatformModel.ProductBundleUpdateRequestSchema} body
448
+ * @property {CatalogPlatformModel.ProductBundleUpdateRequest} body
443
449
  */
444
450
  /**
445
451
  * @typedef UpdateRealtimeInventoryParam
@@ -457,18 +463,9 @@ export = CatalogPlatformValidator;
457
463
  * @typedef UploadBulkProductsParam
458
464
  * @property {string} department - Department of the product to be uploaded.
459
465
  * @property {string} productType - Product type of the product to be uploaded
460
- * i.e. set, standard, digital.
466
+ * i.e. set, standard , digital.
461
467
  * @property {CatalogPlatformModel.BulkProductJob} body
462
468
  */
463
- /**
464
- * @typedef ValidateProductGlobalTemplateParam
465
- * @property {string} [itemType] - An `item_type` defines the type of item. The
466
- * default value is standard.
467
- * @property {boolean} [bulk] - This specification determines the schema type to
468
- * be retrieved. When set to true, it will return the schema for bulk data;
469
- * when set to false, it will provide the schema for a single product. The
470
- * default value is false.
471
- */
472
469
  /**
473
470
  * @typedef ValidateProductTemplateParam
474
471
  * @property {string} slug - A `slug` is a unique identifier for a particular template.
@@ -483,14 +480,11 @@ export = CatalogPlatformValidator;
483
480
  * @typedef ValidateProductTemplateSchemaParam
484
481
  * @property {string} itemType - An `item_type` defines the type of item. The
485
482
  * default value is standard.
483
+ * @property {boolean} bulk - Type of file template i.e if bulk
486
484
  */
487
485
  declare class CatalogPlatformValidator {
488
- /** @returns {AddInventoryParam} */
489
- static addInventory(): AddInventoryParam;
490
486
  /** @returns {AllSizesParam} */
491
487
  static allSizes(): AllSizesParam;
492
- /** @returns {BulkHsnCodeParam} */
493
- static bulkHsnCode(): BulkHsnCodeParam;
494
488
  /** @returns {CreateBulkInventoryParam} */
495
489
  static createBulkInventory(): CreateBulkInventoryParam;
496
490
  /** @returns {CreateBulkInventoryJobParam} */
@@ -541,10 +535,14 @@ declare class CatalogPlatformValidator {
541
535
  static getCategoryData(): GetCategoryDataParam;
542
536
  /** @returns {GetCompanyBrandDetailParam} */
543
537
  static getCompanyBrandDetail(): GetCompanyBrandDetailParam;
538
+ /** @returns {GetCompanyBrandsDRIParam} */
539
+ static getCompanyBrandsDRI(): GetCompanyBrandsDRIParam;
544
540
  /** @returns {GetCompanyDetailParam} */
545
541
  static getCompanyDetail(): any;
546
542
  /** @returns {GetCompanyMetricsParam} */
547
543
  static getCompanyMetrics(): any;
544
+ /** @returns {GetCompanyVerificationParam} */
545
+ static getCompanyVerification(): GetCompanyVerificationParam;
548
546
  /** @returns {GetDepartmentDataParam} */
549
547
  static getDepartmentData(): GetDepartmentDataParam;
550
548
  /** @returns {GetHsnCodeParam} */
@@ -559,12 +557,12 @@ declare class CatalogPlatformValidator {
559
557
  static getInventoryBySizeIdentifier(): GetInventoryBySizeIdentifierParam;
560
558
  /** @returns {GetInventoryExportParam} */
561
559
  static getInventoryExport(): any;
562
- /** @returns {GetMarketplaceOptinDetailParam} */
563
- static getMarketplaceOptinDetail(): any;
560
+ /** @returns {GetInventoryExportDetailParam} */
561
+ static getInventoryExportDetail(): GetInventoryExportDetailParam;
562
+ /** @returns {GetLocationTagsParam} */
563
+ static getLocationTags(): any;
564
564
  /** @returns {GetMarketplacesParam} */
565
565
  static getMarketplaces(): any;
566
- /** @returns {GetOptimalLocationsParam} */
567
- static getOptimalLocations(): GetOptimalLocationsParam;
568
566
  /** @returns {GetProductParam} */
569
567
  static getProduct(): GetProductParam;
570
568
  /** @returns {GetProductAssetsInBulkParam} */
@@ -577,14 +575,20 @@ declare class CatalogPlatformValidator {
577
575
  static getProductBundle(): GetProductBundleParam;
578
576
  /** @returns {GetProductBundleDetailParam} */
579
577
  static getProductBundleDetail(): GetProductBundleDetailParam;
578
+ /** @returns {GetProductExportDetailParam} */
579
+ static getProductExportDetail(): GetProductExportDetailParam;
580
580
  /** @returns {GetProductExportJobsParam} */
581
581
  static getProductExportJobs(): GetProductExportJobsParam;
582
582
  /** @returns {GetProductSizeParam} */
583
583
  static getProductSize(): GetProductSizeParam;
584
584
  /** @returns {GetProductTagsParam} */
585
585
  static getProductTags(): any;
586
+ /** @returns {GetProductTemplateBySlugParam} */
587
+ static getProductTemplateBySlug(): GetProductTemplateBySlugParam;
586
588
  /** @returns {GetProductValidationParam} */
587
- static getProductValidation(): any;
589
+ static getProductValidation(): GetProductValidationParam;
590
+ /** @returns {GetProductVerificationDetailsParam} */
591
+ static getProductVerificationDetails(): GetProductVerificationDetailsParam;
588
592
  /** @returns {GetProductsParam} */
589
593
  static getProducts(): GetProductsParam;
590
594
  /** @returns {GetSellerInsightsParam} */
@@ -597,6 +601,8 @@ declare class CatalogPlatformValidator {
597
601
  static getSizeGuides(): GetSizeGuidesParam;
598
602
  /** @returns {GetStoreDetailParam} */
599
603
  static getStoreDetail(): GetStoreDetailParam;
604
+ /** @returns {GetVariantTypesParam} */
605
+ static getVariantTypes(): GetVariantTypesParam;
600
606
  /** @returns {GetVariantsOfProductsParam} */
601
607
  static getVariantsOfProducts(): GetVariantsOfProductsParam;
602
608
  /** @returns {ListCategoriesParam} */
@@ -611,18 +617,14 @@ declare class CatalogPlatformValidator {
611
617
  static listProductTemplate(): ListProductTemplateParam;
612
618
  /** @returns {ListProductTemplateCategoriesParam} */
613
619
  static listProductTemplateCategories(): ListProductTemplateCategoriesParam;
614
- /** @returns {ListProductTemplateExportDetailsParam} */
615
- static listProductTemplateExportDetails(): any;
616
620
  /** @returns {ListTemplateBrandTypeValuesParam} */
617
621
  static listTemplateBrandTypeValues(): ListTemplateBrandTypeValuesParam;
618
- /** @returns {UpdateHsnCodeParam} */
619
- static updateHsnCode(): UpdateHsnCodeParam;
622
+ /** @returns {PatchInventoryExportDetailParam} */
623
+ static patchInventoryExportDetail(): PatchInventoryExportDetailParam;
624
+ /** @returns {PatchProductExportDetailParam} */
625
+ static patchProductExportDetail(): PatchProductExportDetailParam;
620
626
  /** @returns {UpdateInventoriesParam} */
621
627
  static updateInventories(): UpdateInventoriesParam;
622
- /** @returns {UpdateLocationPriceParam} */
623
- static updateLocationPrice(): UpdateLocationPriceParam;
624
- /** @returns {UpdateLocationQuantityParam} */
625
- static updateLocationQuantity(): UpdateLocationQuantityParam;
626
628
  /** @returns {UpdateMarketplaceOptinParam} */
627
629
  static updateMarketplaceOptin(): UpdateMarketplaceOptinParam;
628
630
  /** @returns {UpdateProductBundleParam} */
@@ -633,62 +635,45 @@ declare class CatalogPlatformValidator {
633
635
  static updateSizeGuide(): UpdateSizeGuideParam;
634
636
  /** @returns {UploadBulkProductsParam} */
635
637
  static uploadBulkProducts(): UploadBulkProductsParam;
636
- /** @returns {ValidateProductGlobalTemplateParam} */
637
- static validateProductGlobalTemplate(): ValidateProductGlobalTemplateParam;
638
638
  /** @returns {ValidateProductTemplateParam} */
639
639
  static validateProductTemplate(): ValidateProductTemplateParam;
640
640
  /** @returns {ValidateProductTemplateSchemaParam} */
641
641
  static validateProductTemplateSchema(): ValidateProductTemplateSchemaParam;
642
642
  }
643
643
  declare namespace CatalogPlatformValidator {
644
- export { AddInventoryParam, AllSizesParam, BulkHsnCodeParam, CreateBulkInventoryParam, CreateBulkInventoryJobParam, CreateBulkProductUploadJobParam, CreateInventoryExportParam, CreateInventoryExportJobParam, CreateMarketplaceOptinParam, CreateProductParam, CreateProductAssetsInBulkParam, CreateProductBundleParam, CreateProductExportJobParam, CreateProductsInBulkParam, CreateSizeGuideParam, DeleteBulkInventoryJobParam, DeleteProductParam, DeleteProductBulkJobParam, DeleteRealtimeInventoryParam, DeleteSizeParam, DownloadInventoryTemplateViewParam, DownloadProductTemplateViewsParam, EditProductParam, ExportInventoryConfigParam, GetAllProductHsnCodesParam, GetAttributeParam, GetCategoryDataParam, GetCompanyBrandDetailParam, GetCompanyDetailParam, GetCompanyMetricsParam, GetDepartmentDataParam, GetHsnCodeParam, GetInventoriesParam, GetInventoryBulkUploadHistoryParam, GetInventoryBySizeParam, GetInventoryBySizeIdentifierParam, GetInventoryExportParam, GetMarketplaceOptinDetailParam, GetMarketplacesParam, GetOptimalLocationsParam, GetProductParam, GetProductAssetsInBulkParam, GetProductAttributesParam, GetProductBulkUploadHistoryParam, GetProductBundleParam, GetProductBundleDetailParam, GetProductExportJobsParam, GetProductSizeParam, GetProductTagsParam, GetProductValidationParam, GetProductsParam, GetSellerInsightsParam, GetSingleProductHSNCodeParam, GetSizeGuideParam, GetSizeGuidesParam, GetStoreDetailParam, GetVariantsOfProductsParam, ListCategoriesParam, ListDepartmentsDataParam, ListHSNCodesParam, ListInventoryExportParam, ListProductTemplateParam, ListProductTemplateCategoriesParam, ListProductTemplateExportDetailsParam, ListTemplateBrandTypeValuesParam, UpdateHsnCodeParam, UpdateInventoriesParam, UpdateLocationPriceParam, UpdateLocationQuantityParam, UpdateMarketplaceOptinParam, UpdateProductBundleParam, UpdateRealtimeInventoryParam, UpdateSizeGuideParam, UploadBulkProductsParam, ValidateProductGlobalTemplateParam, ValidateProductTemplateParam, ValidateProductTemplateSchemaParam };
644
+ export { AllSizesParam, CreateBulkInventoryParam, CreateBulkInventoryJobParam, CreateBulkProductUploadJobParam, CreateInventoryExportParam, CreateInventoryExportJobParam, CreateMarketplaceOptinParam, CreateProductParam, CreateProductAssetsInBulkParam, CreateProductBundleParam, CreateProductExportJobParam, CreateProductsInBulkParam, CreateSizeGuideParam, DeleteBulkInventoryJobParam, DeleteProductParam, DeleteProductBulkJobParam, DeleteRealtimeInventoryParam, DeleteSizeParam, DownloadInventoryTemplateViewParam, DownloadProductTemplateViewsParam, EditProductParam, ExportInventoryConfigParam, GetAllProductHsnCodesParam, GetAttributeParam, GetCategoryDataParam, GetCompanyBrandDetailParam, GetCompanyBrandsDRIParam, GetCompanyDetailParam, GetCompanyMetricsParam, GetCompanyVerificationParam, GetDepartmentDataParam, GetHsnCodeParam, GetInventoriesParam, GetInventoryBulkUploadHistoryParam, GetInventoryBySizeParam, GetInventoryBySizeIdentifierParam, GetInventoryExportParam, GetInventoryExportDetailParam, GetLocationTagsParam, GetMarketplacesParam, GetProductParam, GetProductAssetsInBulkParam, GetProductAttributesParam, GetProductBulkUploadHistoryParam, GetProductBundleParam, GetProductBundleDetailParam, GetProductExportDetailParam, GetProductExportJobsParam, GetProductSizeParam, GetProductTagsParam, GetProductTemplateBySlugParam, GetProductValidationParam, GetProductVerificationDetailsParam, GetProductsParam, GetSellerInsightsParam, GetSingleProductHSNCodeParam, GetSizeGuideParam, GetSizeGuidesParam, GetStoreDetailParam, GetVariantTypesParam, GetVariantsOfProductsParam, ListCategoriesParam, ListDepartmentsDataParam, ListHSNCodesParam, ListInventoryExportParam, ListProductTemplateParam, ListProductTemplateCategoriesParam, ListTemplateBrandTypeValuesParam, PatchInventoryExportDetailParam, PatchProductExportDetailParam, UpdateInventoriesParam, UpdateMarketplaceOptinParam, UpdateProductBundleParam, UpdateRealtimeInventoryParam, UpdateSizeGuideParam, UploadBulkProductsParam, ValidateProductTemplateParam, ValidateProductTemplateSchemaParam };
645
645
  }
646
- type AddInventoryParam = {
647
- /**
648
- * - Item id of the product of which size is to be get.
649
- */
650
- itemId: number;
651
- /**
652
- * - Size in which inventory is to be added.
653
- */
654
- size: string;
655
- body: CatalogPlatformModel.InventoryRequestSchema;
656
- };
657
646
  type AllSizesParam = {
658
647
  /**
659
648
  * - Id of the product to be updated.
660
649
  */
661
650
  itemId: number;
662
651
  };
663
- type BulkHsnCodeParam = {
664
- body: CatalogPlatformModel.BulkHsnUpsert;
665
- };
666
652
  type CreateBulkInventoryParam = {
667
653
  /**
668
654
  * - Batch Id of the bulk create job.
669
655
  */
670
656
  batchId: string;
671
- body: CatalogPlatformModel.InventoryBulkRequestSchema;
657
+ body: CatalogPlatformModel.InventoryBulkRequest;
672
658
  };
673
659
  type CreateBulkInventoryJobParam = {
674
- body: CatalogPlatformModel.BulkJob;
660
+ body: CatalogPlatformModel.InventoryBulkJob;
675
661
  };
676
662
  type CreateBulkProductUploadJobParam = {
677
- body: CatalogPlatformModel.BulkJob;
663
+ body: CatalogPlatformModel.BulkProductUploadJob;
678
664
  };
679
665
  type CreateInventoryExportParam = {
680
- body: CatalogPlatformModel.InventoryCreateRequestSchema;
666
+ body: CatalogPlatformModel.InventoryCreateRequest;
681
667
  };
682
668
  type CreateInventoryExportJobParam = {
683
- body: CatalogPlatformModel.InventoryExportRequestSchema;
669
+ body: CatalogPlatformModel.InventoryExportRequest;
684
670
  };
685
671
  type CreateMarketplaceOptinParam = {
686
672
  /**
687
- * - The marketplace for which the detail
688
- * needs to be retrieved.
673
+ * - Slug of the marketplace .
689
674
  */
690
- marketplaceSlug: string;
691
- body: CatalogPlatformModel.OptInPostRequestSchema;
675
+ marketplace: string;
676
+ body: CatalogPlatformModel.CreateMarketplaceOptinRequest;
692
677
  };
693
678
  type CreateProductParam = {
694
679
  body: CatalogPlatformModel.ProductCreateUpdateSchemaV2;
@@ -697,7 +682,7 @@ type CreateProductAssetsInBulkParam = {
697
682
  body: CatalogPlatformModel.ProductBulkAssets;
698
683
  };
699
684
  type CreateProductBundleParam = {
700
- body: CatalogPlatformModel.ProductBundleRequestSchema;
685
+ body: CatalogPlatformModel.ProductBundleRequest;
701
686
  };
702
687
  type CreateProductExportJobParam = {
703
688
  body: CatalogPlatformModel.ProductTemplateDownloadsExport;
@@ -707,7 +692,7 @@ type CreateProductsInBulkParam = {
707
692
  * - Batch Id in which assets to be uploaded.
708
693
  */
709
694
  batchId: string;
710
- body: CatalogPlatformModel.BulkProductRequestSchema;
695
+ body: CatalogPlatformModel.BulkProductRequest;
711
696
  };
712
697
  type CreateSizeGuideParam = {
713
698
  body: CatalogPlatformModel.ValidateSizeGuide;
@@ -720,16 +705,15 @@ type DeleteBulkInventoryJobParam = {
720
705
  };
721
706
  type DeleteProductParam = {
722
707
  /**
723
- * - Id of the product to be deleted.
708
+ * - Id of the product to be updated.
724
709
  */
725
710
  itemId: number;
726
- body: CatalogPlatformModel.DeleteProductRequestBody;
727
711
  };
728
712
  type DeleteProductBulkJobParam = {
729
713
  /**
730
714
  * - Batch Id of the bulk product job to be deleted.
731
715
  */
732
- batchId: number;
716
+ batchId: string;
733
717
  };
734
718
  type DeleteRealtimeInventoryParam = {
735
719
  /**
@@ -755,9 +739,9 @@ type DeleteSizeParam = {
755
739
  };
756
740
  type DownloadInventoryTemplateViewParam = {
757
741
  /**
758
- * - An `item_type` defines the type of item.
742
+ * - Type of file
759
743
  */
760
- itemType: string;
744
+ type: string;
761
745
  };
762
746
  type DownloadProductTemplateViewsParam = {
763
747
  /**
@@ -783,18 +767,17 @@ type EditProductParam = {
783
767
  };
784
768
  type ExportInventoryConfigParam = {
785
769
  /**
786
- * - Filter type from any one of ['brand',
787
- * 'store', 'type']
770
+ * - Filter type from any one of ['brand', 'store', 'type']
788
771
  */
789
- filterType?: string;
772
+ filter: string;
790
773
  };
791
774
  type GetAllProductHsnCodesParam = {
792
775
  /**
793
- * - Indicates current page number
776
+ * - Page no
794
777
  */
795
778
  pageNo?: number;
796
779
  /**
797
- * - Indicates page size
780
+ * - Page size
798
781
  */
799
782
  pageSize?: number;
800
783
  /**
@@ -843,6 +826,32 @@ type GetCompanyBrandDetailParam = {
843
826
  */
844
827
  marketplace?: string;
845
828
  };
829
+ type GetCompanyBrandsDRIParam = {
830
+ /**
831
+ * - The page number to navigate through the given
832
+ * set of results
833
+ */
834
+ pageNo?: number;
835
+ /**
836
+ * - Number of items to retrieve in each page.
837
+ * Default is 10.
838
+ */
839
+ pageSize?: number;
840
+ };
841
+ type GetCompanyVerificationParam = {
842
+ /**
843
+ * - A `q` parameter is used to search the company by its name.
844
+ */
845
+ q?: string;
846
+ /**
847
+ * - A `page_no` parameter is a number of the page requested.
848
+ */
849
+ pageNo?: number;
850
+ /**
851
+ * - A `page_size` is the no of items per page.
852
+ */
853
+ pageSize?: number;
854
+ };
846
855
  type GetDepartmentDataParam = {
847
856
  /**
848
857
  * - A `uid` is a unique identifier of a department.
@@ -859,7 +868,7 @@ type GetInventoriesParam = {
859
868
  /**
860
869
  * - Item code of the product of which size is to be get.
861
870
  */
862
- itemId?: string;
871
+ itemId?: number;
863
872
  /**
864
873
  * - Size of which inventory is to get.
865
874
  */
@@ -904,29 +913,21 @@ type GetInventoriesParam = {
904
913
  */
905
914
  sellerIdentifiers?: string[];
906
915
  /**
907
- * - This field allows you to filter for inventories
908
- * that have quantity greater than to the specified value based on qty_type filter.
909
- */
910
- qtyGt?: number;
911
- /**
912
- * - This field allows you to filter for inventories
913
- * that have a quantity less than to the specified value based on qty_type filter.
916
+ * - Min sellable quantity.
914
917
  */
915
- qtyLt?: number;
918
+ minSellable?: number;
916
919
  /**
917
- * - This field provides flexibility in selecting
918
- * filter for inventory quantity counts and date queries. For example, you
919
- * might use this field to specify "total" or "sellable" quantity.
920
+ * - Max sellable quantity.
920
921
  */
921
- qtyType?: string;
922
+ maxSellable?: number;
922
923
  /**
923
924
  * - Inventory updated on filter to get
924
- * inventories greater then or equal to provided date based on qty_type value.
925
+ * inventories greater then provided date.
925
926
  */
926
927
  fromDate?: string;
927
928
  /**
928
929
  * - Inventory updated on filter to get inventories
929
- * less then or equal to provided date based on qty_type value.
930
+ * less then provided date.
930
931
  */
931
932
  toDate?: string;
932
933
  /**
@@ -946,10 +947,6 @@ type GetInventoryBulkUploadHistoryParam = {
946
947
  * Default is 12.
947
948
  */
948
949
  pageSize?: number;
949
- /**
950
- * - Search string to filter the results by batch id
951
- */
952
- search?: string;
953
950
  };
954
951
  type GetInventoryBySizeParam = {
955
952
  /**
@@ -1008,8 +1005,11 @@ type GetInventoryBySizeIdentifierParam = {
1008
1005
  */
1009
1006
  locationIds?: number[];
1010
1007
  };
1011
- type GetOptimalLocationsParam = {
1012
- body: CatalogPlatformModel.AssignStore;
1008
+ type GetInventoryExportDetailParam = {
1009
+ /**
1010
+ * - Company Id in which assets to be uploaded.
1011
+ */
1012
+ jobId: string;
1013
1013
  };
1014
1014
  type GetProductParam = {
1015
1015
  /**
@@ -1091,6 +1091,12 @@ type GetProductBundleDetailParam = {
1091
1091
  */
1092
1092
  id: string;
1093
1093
  };
1094
+ type GetProductExportDetailParam = {
1095
+ /**
1096
+ * - Company Id in which assets to be uploaded.
1097
+ */
1098
+ jobId: string;
1099
+ };
1094
1100
  type GetProductExportJobsParam = {
1095
1101
  /**
1096
1102
  * - This is a parameter used to find all the jobs
@@ -1124,28 +1130,43 @@ type GetProductExportJobsParam = {
1124
1130
  pageSize?: number;
1125
1131
  };
1126
1132
  type GetProductSizeParam = {
1127
- /**
1128
- * - Item code of the product size.
1129
- */
1130
- itemCode?: string;
1131
1133
  /**
1132
1134
  * - Item Id of the product size.
1133
1135
  */
1134
1136
  itemId: number;
1137
+ };
1138
+ type GetProductTemplateBySlugParam = {
1135
1139
  /**
1136
- * - Brand Id of the product size.
1140
+ * - Slug of the template.
1137
1141
  */
1138
- brandUid?: number;
1142
+ slug: string;
1143
+ };
1144
+ type GetProductValidationParam = {
1139
1145
  /**
1140
- * - Id of the product size.
1146
+ * - Type of identifier to validate the product against.
1141
1147
  */
1142
- uid?: number;
1148
+ type: string;
1149
+ /**
1150
+ * - Type of identifier to validate the product against.
1151
+ */
1152
+ slug: string;
1153
+ };
1154
+ type GetProductVerificationDetailsParam = {
1155
+ /**
1156
+ * - A `item_id` is a unique identifier for a specific product.
1157
+ */
1158
+ itemId: number;
1143
1159
  };
1144
1160
  type GetProductsParam = {
1145
1161
  /**
1146
1162
  * - Get multiple products filtered by Brand Ids
1147
1163
  */
1148
1164
  brandIds?: number[];
1165
+ /**
1166
+ * - Get multiple products filtered by weather
1167
+ * have multiple sizes or not
1168
+ */
1169
+ multiSize?: boolean;
1149
1170
  /**
1150
1171
  * - Get multiple products filtered by Category Ids
1151
1172
  */
@@ -1238,6 +1259,10 @@ type GetSizeGuidesParam = {
1238
1259
  * - Query that is to be searched.
1239
1260
  */
1240
1261
  q?: string;
1262
+ /**
1263
+ * - Brand id that is to be searched.
1264
+ */
1265
+ brandId?: number;
1241
1266
  /**
1242
1267
  * - To filter size guide on basis of tag.
1243
1268
  */
@@ -1252,10 +1277,6 @@ type GetSizeGuidesParam = {
1252
1277
  * Default is 10.
1253
1278
  */
1254
1279
  pageSize?: number;
1255
- /**
1256
- * - Brand id that is to be searched.
1257
- */
1258
- brandId?: number;
1259
1280
  };
1260
1281
  type GetStoreDetailParam = {
1261
1282
  /**
@@ -1272,6 +1293,13 @@ type GetStoreDetailParam = {
1272
1293
  */
1273
1294
  pageSize?: number;
1274
1295
  };
1296
+ type GetVariantTypesParam = {
1297
+ /**
1298
+ * - The page number to navigate through the
1299
+ * given set of results
1300
+ */
1301
+ templateTag: string;
1302
+ };
1275
1303
  type GetVariantsOfProductsParam = {
1276
1304
  /**
1277
1305
  * - Get list of variants of item Id
@@ -1319,10 +1347,6 @@ type ListCategoriesParam = {
1319
1347
  * - Get multiple categories filtered by category uids.
1320
1348
  */
1321
1349
  uids?: number[];
1322
- /**
1323
- * - Get category by slug
1324
- */
1325
- slug?: string;
1326
1350
  };
1327
1351
  type ListDepartmentsDataParam = {
1328
1352
  /**
@@ -1355,13 +1379,13 @@ type ListDepartmentsDataParam = {
1355
1379
  */
1356
1380
  isActive?: boolean;
1357
1381
  /**
1358
- * - Can filter by slug
1382
+ * - Filter department by uids.
1359
1383
  */
1360
- slug?: string;
1384
+ uids?: number[];
1361
1385
  };
1362
1386
  type ListInventoryExportParam = {
1363
1387
  /**
1364
- * - Status of the export job.(Pending, Running, Success)
1388
+ * - Status of the export job.
1365
1389
  */
1366
1390
  status?: string;
1367
1391
  /**
@@ -1405,6 +1429,19 @@ type ListProductTemplateCategoriesParam = {
1405
1429
  * `set`, `standard`, `digital`, etc.
1406
1430
  */
1407
1431
  itemType: string;
1432
+ /**
1433
+ * - Number of categories needed in one page
1434
+ */
1435
+ pageSize?: number;
1436
+ /**
1437
+ * - Page number to fetch, for example if pagesize
1438
+ * is 10 and page number 1,
1439
+ */
1440
+ pageNo?: number;
1441
+ /**
1442
+ * - Search string to search categories from
1443
+ */
1444
+ q?: number;
1408
1445
  };
1409
1446
  type ListTemplateBrandTypeValuesParam = {
1410
1447
  /**
@@ -1423,47 +1460,29 @@ type ListTemplateBrandTypeValuesParam = {
1423
1460
  */
1424
1461
  itemType?: string;
1425
1462
  };
1426
- type UpdateHsnCodeParam = {
1463
+ type PatchInventoryExportDetailParam = {
1427
1464
  /**
1428
- * - Unique id
1465
+ * - Company Id in which assets to be uploaded.
1429
1466
  */
1430
- id: string;
1431
- body: CatalogPlatformModel.HsnUpsert;
1467
+ jobId: string;
1468
+ body: CatalogPlatformModel.ExportPatchRequest;
1432
1469
  };
1433
- type UpdateInventoriesParam = {
1434
- body: CatalogPlatformModel.InventoryRequestSchemaV2;
1435
- };
1436
- type UpdateLocationPriceParam = {
1437
- /**
1438
- * - The Store Id to update price of size for specific store.
1439
- */
1440
- storeId: number;
1470
+ type PatchProductExportDetailParam = {
1441
1471
  /**
1442
- * - Size Identifier (Seller Identifier or
1443
- * Primary Identifier) of which article price is to update.
1472
+ * - Company Id in which assets to be uploaded.
1444
1473
  */
1445
- sellerIdentifier: string;
1446
- body: CatalogPlatformModel.LocationPriceRequestSchema;
1474
+ jobId: string;
1475
+ body: CatalogPlatformModel.ExportPatchRequest;
1447
1476
  };
1448
- type UpdateLocationQuantityParam = {
1449
- /**
1450
- * - The Store Id to update quantity of size for
1451
- * specific store.
1452
- */
1453
- storeId: number;
1454
- /**
1455
- * - Size Identifier (Seller Identifier or
1456
- * Primary Identifier) of which article quantity is to update.
1457
- */
1458
- sellerIdentifier: string;
1459
- body: CatalogPlatformModel.LocationQuantityRequestSchema;
1477
+ type UpdateInventoriesParam = {
1478
+ body: CatalogPlatformModel.InventoryRequestSchemaV2;
1460
1479
  };
1461
1480
  type UpdateMarketplaceOptinParam = {
1462
1481
  /**
1463
1482
  * - Slug of the marketplace .
1464
1483
  */
1465
- marketplaceSlug: string;
1466
- body: CatalogPlatformModel.UpdateMarketplaceOptinRequestSchema;
1484
+ marketplace: string;
1485
+ body: CatalogPlatformModel.UpdateMarketplaceOptinRequest;
1467
1486
  };
1468
1487
  type UpdateProductBundleParam = {
1469
1488
  /**
@@ -1471,7 +1490,7 @@ type UpdateProductBundleParam = {
1471
1490
  * detail. Pass the `id` of the keywords which you want to delete.
1472
1491
  */
1473
1492
  id: string;
1474
- body: CatalogPlatformModel.ProductBundleUpdateRequestSchema;
1493
+ body: CatalogPlatformModel.ProductBundleUpdateRequest;
1475
1494
  };
1476
1495
  type UpdateRealtimeInventoryParam = {
1477
1496
  /**
@@ -1499,25 +1518,11 @@ type UploadBulkProductsParam = {
1499
1518
  department: string;
1500
1519
  /**
1501
1520
  * - Product type of the product to be uploaded
1502
- * i.e. set, standard, digital.
1521
+ * i.e. set, standard , digital.
1503
1522
  */
1504
1523
  productType: string;
1505
1524
  body: CatalogPlatformModel.BulkProductJob;
1506
1525
  };
1507
- type ValidateProductGlobalTemplateParam = {
1508
- /**
1509
- * - An `item_type` defines the type of item. The
1510
- * default value is standard.
1511
- */
1512
- itemType?: string;
1513
- /**
1514
- * - This specification determines the schema type to
1515
- * be retrieved. When set to true, it will return the schema for bulk data;
1516
- * when set to false, it will provide the schema for a single product. The
1517
- * default value is false.
1518
- */
1519
- bulk?: boolean;
1520
- };
1521
1526
  type ValidateProductTemplateParam = {
1522
1527
  /**
1523
1528
  * - A `slug` is a unique identifier for a particular template.
@@ -1542,14 +1547,16 @@ type ValidateProductTemplateSchemaParam = {
1542
1547
  * default value is standard.
1543
1548
  */
1544
1549
  itemType: string;
1550
+ /**
1551
+ * - Type of file template i.e if bulk
1552
+ */
1553
+ bulk: boolean;
1545
1554
  };
1546
1555
  type GetCompanyDetailParam = any;
1547
1556
  type GetCompanyMetricsParam = any;
1548
1557
  type GetInventoryExportParam = any;
1549
- type GetMarketplaceOptinDetailParam = any;
1558
+ type GetLocationTagsParam = any;
1550
1559
  type GetMarketplacesParam = any;
1551
1560
  type GetProductTagsParam = any;
1552
- type GetProductValidationParam = any;
1553
1561
  type ListHSNCodesParam = any;
1554
- type ListProductTemplateExportDetailsParam = any;
1555
1562
  import CatalogPlatformModel = require("./CatalogPlatformModel");