@gofynd/fdk-client-javascript 1.4.12 → 1.4.14

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 (297) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
  3. package/sdk/application/ApplicationClient.d.ts +2 -0
  4. package/sdk/application/ApplicationClient.js +2 -0
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +60 -53
  6. package/sdk/application/Cart/CartApplicationClient.js +130 -53
  7. package/sdk/application/Cart/CartApplicationModel.d.ts +489 -143
  8. package/sdk/application/Cart/CartApplicationModel.js +380 -159
  9. package/sdk/application/Cart/CartApplicationValidator.d.ts +38 -19
  10. package/sdk/application/Cart/CartApplicationValidator.js +34 -18
  11. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +88 -68
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +114 -94
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +194 -142
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +171 -133
  15. package/sdk/application/Common/CommonApplicationClient.d.ts +3 -2
  16. package/sdk/application/Common/CommonApplicationClient.js +6 -5
  17. package/sdk/application/Common/CommonApplicationModel.d.ts +9 -9
  18. package/sdk/application/Common/CommonApplicationModel.js +6 -6
  19. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +34 -27
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +34 -27
  21. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +45 -57
  22. package/sdk/application/Configuration/ConfigurationApplicationModel.js +35 -47
  23. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +2 -2
  24. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +2 -2
  25. package/sdk/application/Content/ContentApplicationClient.d.ts +23 -33
  26. package/sdk/application/Content/ContentApplicationClient.js +54 -75
  27. package/sdk/application/Content/ContentApplicationModel.d.ts +96 -39
  28. package/sdk/application/Content/ContentApplicationModel.js +88 -34
  29. package/sdk/application/Content/ContentApplicationValidator.d.ts +23 -17
  30. package/sdk/application/Content/ContentApplicationValidator.js +15 -10
  31. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -8
  32. package/sdk/application/FileStorage/FileStorageApplicationClient.js +14 -13
  33. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +23 -25
  34. package/sdk/application/FileStorage/FileStorageApplicationModel.js +16 -18
  35. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +6 -6
  36. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +6 -6
  37. package/sdk/application/Finance/FinanceApplicationClient.d.ts +36 -0
  38. package/sdk/application/Finance/FinanceApplicationClient.js +202 -0
  39. package/sdk/application/Finance/FinanceApplicationModel.d.ts +289 -0
  40. package/sdk/application/Finance/FinanceApplicationModel.js +208 -0
  41. package/sdk/application/Finance/FinanceApplicationValidator.d.ts +25 -0
  42. package/sdk/application/Finance/FinanceApplicationValidator.js +31 -0
  43. package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -3
  44. package/sdk/application/Lead/LeadApplicationClient.js +2 -3
  45. package/sdk/application/Lead/LeadApplicationModel.d.ts +11 -11
  46. package/sdk/application/Lead/LeadApplicationModel.js +19 -19
  47. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +39 -16
  48. package/sdk/application/Logistic/LogisticApplicationClient.js +189 -21
  49. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +532 -173
  50. package/sdk/application/Logistic/LogisticApplicationModel.js +409 -139
  51. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +54 -9
  52. package/sdk/application/Logistic/LogisticApplicationValidator.js +42 -8
  53. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -10
  54. package/sdk/application/Order/OrderApplicationClient.js +96 -13
  55. package/sdk/application/Order/OrderApplicationModel.d.ts +434 -102
  56. package/sdk/application/Order/OrderApplicationModel.js +278 -73
  57. package/sdk/application/Order/OrderApplicationValidator.d.ts +17 -3
  58. package/sdk/application/Order/OrderApplicationValidator.js +15 -2
  59. package/sdk/application/Payment/PaymentApplicationClient.d.ts +96 -99
  60. package/sdk/application/Payment/PaymentApplicationClient.js +111 -114
  61. package/sdk/application/Payment/PaymentApplicationModel.d.ts +293 -289
  62. package/sdk/application/Payment/PaymentApplicationModel.js +243 -241
  63. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +46 -46
  64. package/sdk/application/Payment/PaymentApplicationValidator.js +46 -46
  65. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -16
  66. package/sdk/application/Rewards/RewardsApplicationClient.js +19 -22
  67. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +37 -37
  68. package/sdk/application/Rewards/RewardsApplicationModel.js +29 -29
  69. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +6 -6
  70. package/sdk/application/Rewards/RewardsApplicationValidator.js +6 -6
  71. package/sdk/application/Share/ShareApplicationModel.js +1 -1
  72. package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
  73. package/sdk/application/Theme/ThemeApplicationClient.js +8 -6
  74. package/sdk/application/Theme/ThemeApplicationModel.d.ts +51 -19
  75. package/sdk/application/Theme/ThemeApplicationModel.js +47 -24
  76. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +16 -3
  77. package/sdk/application/Theme/ThemeApplicationValidator.js +9 -2
  78. package/sdk/application/User/UserApplicationClient.d.ts +10 -10
  79. package/sdk/application/User/UserApplicationClient.js +10 -10
  80. package/sdk/application/User/UserApplicationModel.d.ts +17 -17
  81. package/sdk/application/User/UserApplicationModel.js +16 -16
  82. package/sdk/application/User/UserApplicationValidator.d.ts +2 -2
  83. package/sdk/application/User/UserApplicationValidator.js +2 -2
  84. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  85. package/sdk/application/Webhook/WebhookApplicationClient.js +4 -4
  86. package/sdk/application/Webhook/WebhookApplicationModel.d.ts +11 -9
  87. package/sdk/application/Webhook/WebhookApplicationModel.js +8 -6
  88. package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +2 -2
  89. package/sdk/application/Webhook/WebhookApplicationValidator.js +2 -2
  90. package/sdk/application/index.d.ts +1 -0
  91. package/sdk/application/index.js +2 -0
  92. package/sdk/common/Clickstream.js +12 -0
  93. package/sdk/common/Constant.d.ts +5 -0
  94. package/sdk/common/Constant.js +5 -0
  95. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
  96. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
  97. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
  98. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
  99. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
  100. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
  101. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  102. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  103. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  104. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  105. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
  106. package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
  107. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
  108. package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
  109. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
  110. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
  111. package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
  112. package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
  113. package/sdk/partner/Theme/ThemePartnerModel.d.ts +99 -39
  114. package/sdk/partner/Theme/ThemePartnerModel.js +95 -38
  115. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  116. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
  117. package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
  118. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
  119. package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
  120. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
  121. package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
  122. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
  123. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
  124. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
  125. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
  126. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
  127. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
  129. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
  130. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  131. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  132. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  133. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  134. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  135. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  136. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  137. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  138. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
  139. package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
  140. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
  141. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
  142. package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
  143. package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
  144. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +192 -164
  145. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +371 -343
  146. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +99 -99
  147. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +54 -54
  148. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +139 -116
  149. package/sdk/platform/Catalog/CatalogPlatformClient.js +191 -168
  150. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1374 -749
  151. package/sdk/platform/Catalog/CatalogPlatformModel.js +1241 -830
  152. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
  153. package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
  154. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
  155. package/sdk/platform/Common/CommonPlatformClient.js +3 -2
  156. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  157. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  158. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
  159. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
  160. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  161. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  162. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
  163. package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  167. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
  168. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  169. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
  171. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
  172. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  173. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  174. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
  175. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
  176. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
  177. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
  178. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  179. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  180. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
  181. package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
  182. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
  183. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
  184. package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
  185. package/sdk/platform/Content/ContentPlatformClient.js +523 -336
  186. package/sdk/platform/Content/ContentPlatformModel.d.ts +1244 -397
  187. package/sdk/platform/Content/ContentPlatformModel.js +526 -392
  188. package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
  189. package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
  190. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
  191. package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
  192. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  193. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  194. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  195. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  196. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
  197. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
  198. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
  199. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
  200. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
  201. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  202. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
  203. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
  204. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  205. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  206. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  207. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  208. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  209. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  210. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
  211. package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
  212. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
  213. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  214. package/sdk/platform/Order/OrderPlatformClient.d.ts +138 -101
  215. package/sdk/platform/Order/OrderPlatformClient.js +267 -203
  216. package/sdk/platform/Order/OrderPlatformModel.d.ts +4497 -877
  217. package/sdk/platform/Order/OrderPlatformModel.js +2336 -812
  218. package/sdk/platform/Order/OrderPlatformValidator.d.ts +147 -50
  219. package/sdk/platform/Order/OrderPlatformValidator.js +75 -46
  220. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
  221. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
  222. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  223. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  224. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
  225. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
  226. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  227. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  228. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  229. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  230. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
  231. package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
  232. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  233. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  234. package/sdk/platform/PlatformClient.d.ts +0 -2
  235. package/sdk/platform/PlatformClient.js +0 -4
  236. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  237. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  238. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  239. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  240. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  241. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  242. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
  243. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
  244. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
  245. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
  246. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
  247. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
  248. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
  249. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
  250. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
  251. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
  252. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
  253. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  254. package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
  255. package/sdk/platform/Share/SharePlatformModel.js +27 -4
  256. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  257. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  258. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  259. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  260. package/sdk/platform/Theme/ThemePlatformModel.d.ts +40 -13
  261. package/sdk/platform/Theme/ThemePlatformModel.js +38 -17
  262. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  263. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  264. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  265. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  266. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  267. package/sdk/platform/User/UserPlatformModel.js +23 -23
  268. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  269. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  270. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  271. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  272. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  273. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  274. package/sdk/platform/index.d.ts +0 -1
  275. package/sdk/platform/index.js +0 -2
  276. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  277. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  278. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  279. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  280. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  281. package/sdk/public/Content/ContentPublicClient.js +791 -5
  282. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  283. package/sdk/public/Content/ContentPublicModel.js +649 -3
  284. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  285. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  286. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  287. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  288. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  289. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  290. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  291. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  292. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  293. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  294. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  295. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  296. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  297. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -17,7 +17,7 @@ export = CatalogPlatformModel;
17
17
  * @property {string} size
18
18
  */
19
19
  /**
20
- * @typedef AllowSingleRequest
20
+ * @typedef AllowSingleRequestSchema
21
21
  * @property {boolean} allow_single
22
22
  */
23
23
  /**
@@ -37,16 +37,15 @@ export = CatalogPlatformModel;
37
37
  /**
38
38
  * @typedef AppCategoryReturnConfig
39
39
  * @property {number} category_id - Unique identifier for L3 category
40
- * @property {ProductReturnConfigBaseSerializer} return_config - Return
41
- * configuration details
40
+ * @property {ProductReturnConfigBaseSchema} return_config - Return configuration details
42
41
  */
43
42
  /**
44
- * @typedef AppCategoryReturnConfigResponse
43
+ * @typedef AppCategoryReturnConfigResponseSchema
45
44
  * @property {string} [app_id] - Channel identifier
46
45
  * @property {number} [category_id] - Unique identifer of L3 category
47
46
  * @property {string} [logo]
48
47
  * @property {string} [name] - Name of L3 category
49
- * @property {ProductReturnConfigBaseSerializer} [return_config]
48
+ * @property {ProductReturnConfigBaseSchema} [return_config]
50
49
  */
51
50
  /**
52
51
  * @typedef AppConfiguration
@@ -106,7 +105,7 @@ export = CatalogPlatformModel;
106
105
  * @property {Object} _custom_json
107
106
  */
108
107
  /**
109
- * @typedef ApplicationDepartmentListingResponse
108
+ * @typedef ApplicationDepartmentListingResponseSchema
110
109
  * @property {ApplicationDepartment[]} [items]
111
110
  * @property {Page} page
112
111
  */
@@ -146,9 +145,102 @@ export = CatalogPlatformModel;
146
145
  * @property {string} [canonical_url]
147
146
  */
148
147
  /**
149
- * @typedef ApplicationProductListingResponse
148
+ * @typedef ApplicationProductsSchema
149
+ * @property {Object} [attributes] - Additional attributes of the product, such
150
+ * as custom properties or features.
151
+ * @property {ProductBrand} [brand]
152
+ * @property {string} [color]
153
+ * @property {string} [description] - A detailed description of the product.
154
+ * @property {string} [discount] - The discount applied to the product.
155
+ * @property {boolean} [has_variant] - Indicates whether the product has
156
+ * variants, such as different sizes or colors.
157
+ * @property {string[]} [highlights] - Key highlights of the product.
158
+ * @property {string} image_nature - The nature of the product image, indicating
159
+ * if it's the default or a standard image.
160
+ * @property {string} item_code - A unique code assigned to the product item at
161
+ * company and brand level.
162
+ * @property {string} item_type - The type of the product, defining its nature.
163
+ * @property {Media[]} [medias] - A list of media items associated with the
164
+ * product, such as images or videos.
165
+ * @property {string} name - The name of the product.
166
+ * @property {ProductListingPrice} [price]
167
+ * @property {string} [product_online_date] - The date and time when the product
168
+ * becomes available online.
169
+ * @property {Object} [promo_meta] - Metadata related to any promotions
170
+ * associated with the product.
171
+ * @property {number} [rating] - The average rating of the product, typically
172
+ * based on customer reviews.
173
+ * @property {number} [rating_count] - The total number of ratings the product
174
+ * has received.
175
+ * @property {boolean} [sellable] - Indicates whether the product is available for sale.
176
+ * @property {string} [short_description] - A brief description of the product.
177
+ * @property {string[]} [similars] - A list of similar products.
178
+ * @property {string} slug - A URL-friendly string representing the product.
179
+ * @property {Object} [teaser_tag] - A teaser tag object providing short
180
+ * promotional information about the product.
181
+ * @property {string[]} [tryouts] - A list of tryout options or samples
182
+ * available for the product.
183
+ * @property {string} [type] - The type or category of the product.
184
+ * @property {number} uid - A unique identifier for the product.
185
+ * @property {number} [popularity] - A numerical value indicating the popularity
186
+ * of the product.
187
+ * @property {number} brand_uid - The unique identifier for the brand associated
188
+ * with the product.
189
+ * @property {number} category_uid - The unique identifier for the category to
190
+ * which the product belongs.
191
+ * @property {number} [verification_status] - The verification status of the
192
+ * product, typically represented as an integer.
193
+ * @property {string} [channel_identifier] - The identifier for the sales
194
+ * channel through which the product is sold.
195
+ * @property {string} [category_slug] - A URL-friendly string representing the
196
+ * product's category.
197
+ * @property {string} [size_guide] - A guide or chart providing size information
198
+ * for the product.
199
+ * @property {number[]} l3_categories - A list of L3 category IDs of the product.
200
+ * @property {number[]} [store_ids] - A list of store IDs where the product is available.
201
+ * @property {number[]} [company_ids] - A list of company IDs associated with the product.
202
+ * @property {number[]} departments - A list of department IDs where the product
203
+ * is categorized.
204
+ * @property {string[]} [tags] - A list of tags or keywords associated with the product.
205
+ * @property {string[]} [l3_category_names] - A list of names of L3 categories
206
+ * of the product.
207
+ * @property {string[]} [sizes] - A list of available sizes for the product.
208
+ * @property {string[]} [product_group_tag] - Tags that group the product with
209
+ * other similar products.
210
+ * @property {boolean} multi_size - Indicates whether the product is available
211
+ * in multiple sizes.
212
+ * @property {boolean} is_gift - Indicates whether the product can be considered
213
+ * as a gift.
214
+ * @property {boolean} is_cod - Indicates whether the product is eligible for
215
+ * cash on delivery (COD).
216
+ * @property {boolean} is_dependent - Indicates whether the product depends on
217
+ * another product.
218
+ * @property {boolean} is_available - Indicates whether the product is currently
219
+ * available for purchase.
220
+ * @property {ApplicationItemMOQ} moq
221
+ * @property {ApplicationItemSEO} seo
222
+ * @property {Object} [variants] - An object containing details about the
223
+ * product variants.
224
+ * @property {Object} [variant_media] - Media items specific to the product variants.
225
+ * @property {Object} [variant_group] - A group identifier for products that are
226
+ * variants of one another.
227
+ * @property {MultiCategoriesSchema[]} [multi_categories]
228
+ * @property {string} [template_tag] - Tag used for categorizing or templating purposes.
229
+ * @property {Object} [net_quantity] - Net quantity details for the product.
230
+ * @property {CustomOrder} [custom_order]
231
+ * @property {string} country_of_origin - Country where the product is
232
+ * manufactured or sourced from.
233
+ * @property {Object} [_custom_json] - Custom JSON data associated with the product.
234
+ * @property {string[]} [identifiers] - Identifiers associated with the product.
235
+ * @property {number} [item_id] - Unique identifier for the item.
236
+ * @property {CustomMeta[]} [_custom_meta] - Custom meta associated with the product.
237
+ * @property {number} [discount_percentage] - The discount applied to the
238
+ * product in percentage.
239
+ */
240
+ /**
241
+ * @typedef ApplicationProductListingResponseSchema
150
242
  * @property {ProductFilters[]} [filters]
151
- * @property {ProductListingDetail[]} [items]
243
+ * @property {ApplicationProductsSchema[]} [items]
152
244
  * @property {Object} [operators]
153
245
  * @property {Page} page
154
246
  * @property {ProductSortOn[]} [sort_on]
@@ -158,7 +250,7 @@ export = CatalogPlatformModel;
158
250
  * @property {Object} _custom_json
159
251
  */
160
252
  /**
161
- * @typedef AppReturnConfigResponse
253
+ * @typedef AppReturnConfigResponseSchema
162
254
  * @property {string} [app_id] - Channel identifier
163
255
  * @property {number} [category_count] - Count of L3 category return config set
164
256
  * for application
@@ -186,7 +278,7 @@ export = CatalogPlatformModel;
186
278
  * @property {string} size
187
279
  */
188
280
  /**
189
- * @typedef ArticleStoreResponse
281
+ * @typedef ArticleStoreResponseSchema
190
282
  * @property {string} [name]
191
283
  * @property {string} [store_code]
192
284
  * @property {string} [store_type]
@@ -250,7 +342,7 @@ export = CatalogPlatformModel;
250
342
  * @property {AttributeMasterMandatoryDetails} mandatory_details
251
343
  */
252
344
  /**
253
- * @typedef AttributeMasterSerializer
345
+ * @typedef AttributeMasterSchema
254
346
  * @property {Object} [created_by]
255
347
  * @property {string} [created_on]
256
348
  * @property {string[]} departments
@@ -310,14 +402,12 @@ export = CatalogPlatformModel;
310
402
  */
311
403
  /**
312
404
  * @typedef BaseAppCategoryReturnConfig
313
- * @property {string} app_id - Channel identifier
314
- * @property {number} company_id - Unique identifer of company
315
405
  * @property {AppCategoryReturnConfig[]} data - Category level return config details
316
406
  */
317
407
  /**
318
- * @typedef BaseAppCategoryReturnConfigResponse
319
- * @property {AppCategoryReturnConfigResponse[]} [data]
320
- * @property {PageResponse} [page]
408
+ * @typedef BaseAppCategoryReturnConfigResponseSchema
409
+ * @property {AppCategoryReturnConfigResponseSchema[]} [data]
410
+ * @property {PageResponseSchema} [page]
321
411
  */
322
412
  /**
323
413
  * @typedef Brand
@@ -337,7 +427,53 @@ export = CatalogPlatformModel;
337
427
  * @property {number} [uid]
338
428
  */
339
429
  /**
340
- * @typedef BrandListingResponse
430
+ * @typedef ApplicationCategoryListingSchema
431
+ * @property {ApplicationCategoryListingItemSchema[]} [items]
432
+ * @property {Page} [page]
433
+ */
434
+ /**
435
+ * @typedef ApplicationCategoryListingItemSchema
436
+ * @property {string} [name] - Name of the category.
437
+ * @property {string} [logo] - URL of the category's logo.
438
+ * @property {number[]} [departments] - List of department IDs.
439
+ * @property {string} [attr_name] - Attribute name of the category.
440
+ * @property {string} [landscape_url] - URL of the landscape banner.
441
+ * @property {string} [portrait_url] - URL of the portrait banner.
442
+ * @property {Object} [_custom_json] - Custom JSON object for additional data.
443
+ * @property {number} [priority] - Priority of the category.
444
+ * @property {CreatedBy} [created_by]
445
+ * @property {string} [created_on] - Timestamp when the category was created.
446
+ * @property {ModifiedBy} [modified_by]
447
+ * @property {string} [modified_on] - Timestamp when the category was last modified.
448
+ * @property {string} [app_id] - Application ID associated with the category.
449
+ * @property {boolean} [is_active] - Indicates whether the category is active.
450
+ * @property {number} [uid] - Unique identifier of the category.
451
+ */
452
+ /**
453
+ * @typedef ApplicationBrandListingSchema
454
+ * @property {ApplicationBrandListingItemSchema[]} [items]
455
+ * @property {Page} [page]
456
+ */
457
+ /**
458
+ * @typedef ApplicationBrandListingItemSchema
459
+ * @property {Object} [_custom_json] - Custom JSON object for additional data.
460
+ * @property {Object} [_locale_language] - Custom object for locale-specific
461
+ * language data.
462
+ * @property {string} [brand_banner_portrait_url] - URL of the brand's portrait banner.
463
+ * @property {string} [brand_banner_url] - URL of the brand's landscape banner.
464
+ * @property {string} [brand_logo_url] - URL of the brand's logo.
465
+ * @property {string} [description] - Description of the brand.
466
+ * @property {string} [name] - Name of the brand.
467
+ * @property {string} [slug_key] - Unique slug key for the brand.
468
+ * @property {number} [priority] - Priority of the brand in listing.
469
+ * @property {number} [uid] - Unique identifier of the brand.
470
+ * @property {string} [created_on] - Timestamp when the category was created.
471
+ * @property {string} [last_updated] - Timestamp when the category was created.
472
+ * @property {boolean} [is_active] - Indicates if the brand is active.
473
+ * @property {number[]} [departments] - List of department IDs associated with the brand.
474
+ */
475
+ /**
476
+ * @typedef BrandListingResponseSchema
341
477
  * @property {BrandItem[]} [items]
342
478
  * @property {Page} page
343
479
  */
@@ -352,12 +488,12 @@ export = CatalogPlatformModel;
352
488
  * @property {string} [name]
353
489
  */
354
490
  /**
355
- * @typedef BulkAssetResponse
491
+ * @typedef BulkAssetResponseSchema
356
492
  * @property {Items[]} [items]
357
493
  * @property {Page} [page]
358
494
  */
359
495
  /**
360
- * @typedef BulkHsnResponse
496
+ * @typedef BulkHsnResponseSchema
361
497
  * @property {boolean} [success] - Flag indicating the success status of the
362
498
  * bulk HSN operation.
363
499
  */
@@ -422,14 +558,14 @@ export = CatalogPlatformModel;
422
558
  * @property {string} [tracking_url]
423
559
  */
424
560
  /**
425
- * @typedef BulkProductRequest
561
+ * @typedef BulkProductRequestSchema
426
562
  * @property {string} batch_id
427
563
  * @property {number} company_id
428
564
  * @property {Object[]} data
429
565
  * @property {string} template_tag
430
566
  */
431
567
  /**
432
- * @typedef BulkResponse
568
+ * @typedef BulkResponseSchema
433
569
  * @property {string} batch_id
434
570
  * @property {UserInfo1} [created_by] - The user who created the item.
435
571
  * @property {string} created_on - The date and time when the item was created.
@@ -453,12 +589,12 @@ export = CatalogPlatformModel;
453
589
  * @property {number} [sellable_count]
454
590
  */
455
591
  /**
456
- * @typedef CatalogInsightResponse
592
+ * @typedef CatalogInsightResponseSchema
457
593
  * @property {CatalogInsightBrand} [brand_distribution]
458
594
  * @property {CatalogInsightItem} [item]
459
595
  */
460
596
  /**
461
- * @typedef CategoriesResponse
597
+ * @typedef CategoriesResponseSchema
462
598
  * @property {string} [name]
463
599
  * @property {string} [slug]
464
600
  * @property {string} [slug_key]
@@ -501,7 +637,7 @@ export = CatalogPlatformModel;
501
637
  * @property {number} [uid]
502
638
  */
503
639
  /**
504
- * @typedef CategoryListingResponse
640
+ * @typedef CategoryListingResponseSchema
505
641
  * @property {DepartmentCategoryTree[]} [data]
506
642
  * @property {DepartmentIdentifier[]} [departments]
507
643
  */
@@ -521,7 +657,7 @@ export = CatalogPlatformModel;
521
657
  * @property {string} name - It is the name of the Category in the respective platform.
522
658
  */
523
659
  /**
524
- * @typedef CategoryResponse
660
+ * @typedef CategoryResponseSchema
525
661
  * @property {Category[]} [items]
526
662
  * @property {Page} [page]
527
663
  */
@@ -546,7 +682,7 @@ export = CatalogPlatformModel;
546
682
  * @property {CollectionImage} portrait
547
683
  */
548
684
  /**
549
- * @typedef CollectionCreateResponse
685
+ * @typedef CollectionCreateResponseSchema
550
686
  * @property {string} [uid]
551
687
  * @property {Object} [_schedule]
552
688
  * @property {boolean} [allow_facets]
@@ -569,7 +705,7 @@ export = CatalogPlatformModel;
569
705
  * @property {string[]} [visible_facets_keys]
570
706
  */
571
707
  /**
572
- * @typedef CollectionDetailResponse
708
+ * @typedef CollectionDetailResponseSchema
573
709
  * @property {Object} [_schedule]
574
710
  * @property {boolean} [allow_facets]
575
711
  * @property {boolean} [allow_sort]
@@ -671,11 +807,11 @@ export = CatalogPlatformModel;
671
807
  * @property {number[]} store_ids
672
808
  */
673
809
  /**
674
- * @typedef ConfigErrorResponse
810
+ * @typedef ConfigErrorResponseSchema
675
811
  * @property {string} message
676
812
  */
677
813
  /**
678
- * @typedef ConfigSuccessResponse
814
+ * @typedef ConfigSuccessResponseSchema
679
815
  * @property {string} message
680
816
  */
681
817
  /**
@@ -770,7 +906,7 @@ export = CatalogPlatformModel;
770
906
  * @property {string[]} [words]
771
907
  */
772
908
  /**
773
- * @typedef CreateAutocompleteWordsResponse
909
+ * @typedef CreateAutocompleteWordsResponseSchema
774
910
  * @property {Object} [_custom_json]
775
911
  * @property {string} [app_id]
776
912
  * @property {Object[]} [results]
@@ -805,18 +941,16 @@ export = CatalogPlatformModel;
805
941
  * @property {string[]} [visible_facets_keys]
806
942
  */
807
943
  /**
808
- * @typedef CreateSearchConfigurationRequest
944
+ * @typedef CreateSearchConfigurationRequestSchema
809
945
  * @property {string} application_id - The application id where custom search
810
946
  * configuration is set
811
947
  * @property {number} company_id - The company id where custom search configuration is set
812
- * @property {UserSerializer} [created_by] - The user who created the search
813
- * configuration.
948
+ * @property {UserSchema} [created_by] - The user who created the search configuration.
814
949
  * @property {string} [created_on] - The date and time when the search
815
950
  * configuration was created.
816
951
  * @property {boolean} [is_proximity_enabled] - Flag indicating if proximity
817
952
  * search is enabled for this attribute.
818
- * @property {UserSerializer} [modified_by] - The user who modified the search
819
- * configuration.
953
+ * @property {UserSchema} [modified_by] - The user who modified the search configuration.
820
954
  * @property {string} [modified_on] - The date and time when the search
821
955
  * configuration was last modified.
822
956
  * @property {number} [proximity] - Proximity distance configuration
@@ -824,7 +958,7 @@ export = CatalogPlatformModel;
824
958
  * attributes defined on the application.
825
959
  */
826
960
  /**
827
- * @typedef CreateSearchConfigurationResponse
961
+ * @typedef CreateSearchConfigurationResponseSchema
828
962
  * @property {boolean} [success]
829
963
  */
830
964
  /**
@@ -837,8 +971,6 @@ export = CatalogPlatformModel;
837
971
  */
838
972
  /**
839
973
  * @typedef CreateUpdateAppReturnConfig
840
- * @property {string} app_id - Channel identifier
841
- * @property {number} company_id - Unique identifer of company
842
974
  * @property {string} return_config_level - Return configurtion Level
843
975
  * category|product|no-return
844
976
  */
@@ -848,15 +980,18 @@ export = CatalogPlatformModel;
848
980
  * @property {number} [products]
849
981
  */
850
982
  /**
851
- * @typedef CrossSellingResponse
983
+ * @typedef CrossSellingResponseSchema
852
984
  * @property {CatalogInsightBrand} [brand_distribution]
853
985
  * @property {CrossSellingData} [data]
854
986
  */
855
987
  /**
856
988
  * @typedef CustomOrder
857
- * @property {boolean} [is_custom_order]
858
- * @property {number} [manufacturing_time]
859
- * @property {string} [manufacturing_time_unit]
989
+ * @property {string} [manufacturing_time_unit] - Unit of time for manufacturing
990
+ * (e.g., days, weeks).
991
+ * @property {boolean} is_custom_order - Indicates if the product is available
992
+ * for custom orders.
993
+ * @property {number} [manufacturing_time] - Time required for manufacturing in
994
+ * the specified unit.
860
995
  */
861
996
  /**
862
997
  * @typedef DateMeta
@@ -866,21 +1001,19 @@ export = CatalogPlatformModel;
866
1001
  * @property {string} [modified_on]
867
1002
  */
868
1003
  /**
869
- * @typedef DefaultKeyRequest
1004
+ * @typedef DefaultKeyRequestSchema
870
1005
  * @property {string} default_key
871
1006
  */
872
1007
  /**
873
1008
  * @typedef DeleteAppCategoryReturnConfig
874
- * @property {string} app_id - Channel identifier
875
1009
  * @property {number[]} category_ids - List of category_ids to be deleted.
876
- * @property {number} company_id - Unique identifer of company
877
1010
  */
878
1011
  /**
879
- * @typedef DeleteResponse
1012
+ * @typedef DeleteResponseSchema
880
1013
  * @property {string} [message]
881
1014
  */
882
1015
  /**
883
- * @typedef DeleteSearchConfigurationResponse
1016
+ * @typedef DeleteSearchConfigurationResponseSchema
884
1017
  * @property {boolean} [success]
885
1018
  */
886
1019
  /**
@@ -897,7 +1030,7 @@ export = CatalogPlatformModel;
897
1030
  * @property {CategoryItems[]} [items]
898
1031
  */
899
1032
  /**
900
- * @typedef DepartmentErrorResponse
1033
+ * @typedef DepartmentErrorResponseSchema
901
1034
  * @property {string} [code]
902
1035
  * @property {Object} [errors]
903
1036
  * @property {string} [message]
@@ -910,16 +1043,16 @@ export = CatalogPlatformModel;
910
1043
  * @property {number} [uid]
911
1044
  */
912
1045
  /**
913
- * @typedef DepartmentResponse
1046
+ * @typedef DepartmentResponseSchema
914
1047
  * @property {Department[]} [items]
915
1048
  */
916
1049
  /**
917
- * @typedef DepartmentsResponse
1050
+ * @typedef DepartmentsResponseSchema
918
1051
  * @property {GetDepartment[]} [items]
919
1052
  * @property {Page} [page]
920
1053
  */
921
1054
  /**
922
- * @typedef DimensionResponse
1055
+ * @typedef DimensionResponseSchema
923
1056
  * @property {number} height - The height dimension.
924
1057
  * @property {boolean} is_default - Indicates if it is the default dimension.
925
1058
  * @property {number} length - The length dimension.
@@ -951,7 +1084,7 @@ export = CatalogPlatformModel;
951
1084
  * @property {GetCatalogConfigurationDetailsProduct} [product]
952
1085
  */
953
1086
  /**
954
- * @typedef ErrorResponse
1087
+ * @typedef ErrorResponseSchema
955
1088
  * @property {string} [code]
956
1089
  * @property {string} [error]
957
1090
  * @property {string} [message]
@@ -1004,20 +1137,20 @@ export = CatalogPlatformModel;
1004
1137
  * @property {Object} [moq]
1005
1138
  * @property {boolean} [multi_size]
1006
1139
  * @property {string} [name]
1007
- * @property {NetQuantityResponse} [net_quantity]
1140
+ * @property {NetQuantityResponseSchema} [net_quantity]
1008
1141
  * @property {number} [no_of_boxes]
1009
1142
  * @property {string} [pending]
1010
1143
  * @property {string} [primary_color]
1011
1144
  * @property {string[]} [product_group_tag]
1012
1145
  * @property {ProductPublished} [product_publish]
1013
- * @property {ReturnConfigResponse} [return_config]
1146
+ * @property {ReturnConfigResponseSchema} [return_config]
1014
1147
  * @property {string} [short_description]
1015
1148
  * @property {string} [size_guide]
1016
1149
  * @property {Object[]} [sizes]
1017
1150
  * @property {string} [slug]
1018
1151
  * @property {string} [stage]
1019
1152
  * @property {string[]} [tags]
1020
- * @property {Object} [tax_identifier]
1153
+ * @property {TaxIdentifier} [tax_identifier]
1021
1154
  * @property {Object} [teaser_tag]
1022
1155
  * @property {string} [template_tag]
1023
1156
  * @property {Trader[]} [trader]
@@ -1030,7 +1163,7 @@ export = CatalogPlatformModel;
1030
1163
  * @property {string[]} [store_id_list]
1031
1164
  */
1032
1165
  /**
1033
- * @typedef RawProductListingResponse
1166
+ * @typedef RawProductListingResponseSchema
1034
1167
  * @property {RawProduct[]} [items]
1035
1168
  * @property {Page} [page]
1036
1169
  */
@@ -1056,7 +1189,7 @@ export = CatalogPlatformModel;
1056
1189
  * @property {string} [slug]
1057
1190
  */
1058
1191
  /**
1059
- * @typedef GetAddressSerializer
1192
+ * @typedef GetAddressSchema
1060
1193
  * @property {string} [address1]
1061
1194
  * @property {string} [address2]
1062
1195
  * @property {string} [address_type]
@@ -1092,7 +1225,7 @@ export = CatalogPlatformModel;
1092
1225
  * @property {string[]} [words]
1093
1226
  */
1094
1227
  /**
1095
- * @typedef GetAutocompleteWordsResponse
1228
+ * @typedef GetAutocompleteWordsResponseSchema
1096
1229
  * @property {GetAutocompleteWordsData[]} [items]
1097
1230
  * @property {Page} [page]
1098
1231
  */
@@ -1110,7 +1243,7 @@ export = CatalogPlatformModel;
1110
1243
  */
1111
1244
  /**
1112
1245
  * @typedef GetCatalogConfigurationMetaData
1113
- * @property {MetaDataListingResponse} [listing]
1246
+ * @property {MetaDataListingResponseSchema} [listing]
1114
1247
  * @property {GetCatalogConfigurationDetailsProduct} [product]
1115
1248
  */
1116
1249
  /**
@@ -1137,27 +1270,27 @@ export = CatalogPlatformModel;
1137
1270
  * @property {string[]} [visible_facets_keys]
1138
1271
  */
1139
1272
  /**
1140
- * @typedef GetCollectionItemsResponse
1273
+ * @typedef GetCollectionItemsResponseSchema
1141
1274
  * @property {ProductFilters[]} [filters]
1142
- * @property {ProductListingDetail[]} [items]
1275
+ * @property {ApplicationProductsSchema[]} [items]
1143
1276
  * @property {Page} [page]
1144
1277
  * @property {ProductSortOn[]} [sort_on]
1145
1278
  */
1146
1279
  /**
1147
- * @typedef GetCollectionListingResponse
1280
+ * @typedef GetCollectionListingResponseSchema
1148
1281
  * @property {CollectionListingFilter} [filters]
1149
1282
  * @property {GetCollectionDetailNest[]} [items]
1150
1283
  * @property {Page} [page]
1151
1284
  */
1152
1285
  /**
1153
- * @typedef GetCollectionQueryOptionResponse
1286
+ * @typedef GetCollectionQueryOptionResponseSchema
1154
1287
  * @property {ProductFilters[]} [filters]
1155
1288
  * @property {Object} operators
1156
1289
  * @property {ProductSortOn[]} [sort_on]
1157
1290
  */
1158
1291
  /**
1159
- * @typedef GetCompanySerializer
1160
- * @property {GetAddressSerializer[]} [addresses]
1292
+ * @typedef GetCompanySchema
1293
+ * @property {GetAddressSchema[]} [addresses]
1161
1294
  * @property {string} [business_type]
1162
1295
  * @property {string} [company_type]
1163
1296
  * @property {UserSerializer2} [created_by]
@@ -1194,7 +1327,7 @@ export = CatalogPlatformModel;
1194
1327
  * @property {string} [display]
1195
1328
  */
1196
1329
  /**
1197
- * @typedef GetConfigMetadataResponse
1330
+ * @typedef GetConfigMetadataResponseSchema
1198
1331
  * @property {ConditionItem[]} [condition]
1199
1332
  * @property {DataItem[]} data
1200
1333
  * @property {Page} [page]
@@ -1206,7 +1339,7 @@ export = CatalogPlatformModel;
1206
1339
  * @property {SortTypeItem[]} [sort]
1207
1340
  */
1208
1341
  /**
1209
- * @typedef GetConfigResponse
1342
+ * @typedef GetConfigResponseSchema
1210
1343
  * @property {Object[]} data
1211
1344
  * @property {PageResponseType} page
1212
1345
  */
@@ -1238,7 +1371,7 @@ export = CatalogPlatformModel;
1238
1371
  * @property {DimensionResponse1} [dimension]
1239
1372
  * @property {string} [expiration_date]
1240
1373
  * @property {string} [id]
1241
- * @property {Object} [identifier]
1374
+ * @property {Identifier} [identifier]
1242
1375
  * @property {string} [inventory_updated_on]
1243
1376
  * @property {boolean} [is_set]
1244
1377
  * @property {number} [item_id]
@@ -1251,9 +1384,9 @@ export = CatalogPlatformModel;
1251
1384
  * @property {string} [seller_identifier]
1252
1385
  * @property {string} [size]
1253
1386
  * @property {string} [stage]
1254
- * @property {ArticleStoreResponse} [store]
1387
+ * @property {ArticleStoreResponseSchema} [store]
1255
1388
  * @property {string[]} [tags]
1256
- * @property {Object} [tax_identifier]
1389
+ * @property {TaxIdentifier} [tax_identifier]
1257
1390
  * @property {number} [total_quantity]
1258
1391
  * @property {string} [trace_id]
1259
1392
  * @property {boolean} [track_inventory]
@@ -1262,33 +1395,33 @@ export = CatalogPlatformModel;
1262
1395
  * @property {WeightResponse1} [weight]
1263
1396
  */
1264
1397
  /**
1265
- * @typedef GetInventoriesResponse
1398
+ * @typedef GetInventoriesResponseSchema
1266
1399
  * @property {GetInventories[]} [items]
1267
1400
  * @property {Page} [page]
1268
1401
  */
1269
1402
  /**
1270
- * @typedef GetLocationSerializer
1403
+ * @typedef GetLocationSchema
1271
1404
  * @property {Object} [_custom_json]
1272
- * @property {GetAddressSerializer} address
1405
+ * @property {GetAddressSchema} address
1273
1406
  * @property {string} code
1274
- * @property {GetCompanySerializer} [company]
1407
+ * @property {GetCompanySchema} [company]
1275
1408
  * @property {SellerPhoneNumber[]} [contact_numbers]
1276
1409
  * @property {UserSerializer3} [created_by]
1277
1410
  * @property {string} [created_on]
1278
1411
  * @property {string} display_name
1279
1412
  * @property {Document[]} [documents]
1280
- * @property {InvoiceDetailsSerializer} [gst_credentials]
1413
+ * @property {InvoiceDetailsSchema} [gst_credentials]
1281
1414
  * @property {LocationIntegrationType} [integration_type]
1282
- * @property {LocationManagerSerializer} [manager]
1415
+ * @property {LocationManagerSchema} [manager]
1283
1416
  * @property {UserSerializer3} [modified_by]
1284
1417
  * @property {string} [modified_on]
1285
1418
  * @property {string} name
1286
1419
  * @property {string[]} [notification_emails]
1287
1420
  * @property {string} phone_number
1288
- * @property {ProductReturnConfigSerializer} [product_return_config]
1421
+ * @property {ProductReturnConfigSchema} [product_return_config]
1289
1422
  * @property {string} [stage]
1290
1423
  * @property {string} [store_type]
1291
- * @property {LocationDayWiseSerializer[]} [timing]
1424
+ * @property {LocationDayWiseSchema[]} [timing]
1292
1425
  * @property {number} [uid]
1293
1426
  * @property {UserSerializer3} [verified_by]
1294
1427
  * @property {string} [verified_on]
@@ -1300,7 +1433,7 @@ export = CatalogPlatformModel;
1300
1433
  * @property {Page} page
1301
1434
  */
1302
1435
  /**
1303
- * @typedef GetProductBundleCreateResponse
1436
+ * @typedef GetProductBundleCreateResponseSchema
1304
1437
  * @property {string} choice
1305
1438
  * @property {number} [company_id]
1306
1439
  * @property {Object} [created_by]
@@ -1318,12 +1451,12 @@ export = CatalogPlatformModel;
1318
1451
  * @property {string} slug
1319
1452
  */
1320
1453
  /**
1321
- * @typedef GetProductBundleListingResponse
1322
- * @property {GetProductBundleCreateResponse[]} [items]
1454
+ * @typedef GetProductBundleListingResponseSchema
1455
+ * @property {GetProductBundleCreateResponseSchema[]} [items]
1323
1456
  * @property {Page} [page]
1324
1457
  */
1325
1458
  /**
1326
- * @typedef GetProductBundleResponse
1459
+ * @typedef GetProductBundleResponseSchema
1327
1460
  * @property {string} [choice]
1328
1461
  * @property {number} [company_id]
1329
1462
  * @property {boolean} [is_active]
@@ -1348,7 +1481,7 @@ export = CatalogPlatformModel;
1348
1481
  * @property {Size[]} [sizes]
1349
1482
  */
1350
1483
  /**
1351
- * @typedef GetCollectionDetailResponse
1484
+ * @typedef GetCollectionDetailResponseSchema
1352
1485
  * @property {Object} [_custom_json]
1353
1486
  * @property {Object} [_locale_language]
1354
1487
  * @property {CollectionSchedule} [_schedule]
@@ -1380,13 +1513,13 @@ export = CatalogPlatformModel;
1380
1513
  * @property {string} [message]
1381
1514
  */
1382
1515
  /**
1383
- * @typedef GetQueryFiltersKeysResponse
1516
+ * @typedef GetQueryFiltersKeysResponseSchema
1384
1517
  * @property {ProductFiltersKeysOnly[]} [filters]
1385
1518
  * @property {Object} operators
1386
1519
  * @property {ProductSortOn[]} [sort_on]
1387
1520
  */
1388
1521
  /**
1389
- * @typedef GetQueryFiltersResponse
1522
+ * @typedef GetQueryFiltersResponseSchema
1390
1523
  * @property {ProductFilters[]} [filters]
1391
1524
  * @property {Object} operators
1392
1525
  * @property {ProductSortOn[]} [sort_on]
@@ -1445,18 +1578,16 @@ export = CatalogPlatformModel;
1445
1578
  * @property {number} [uid]
1446
1579
  */
1447
1580
  /**
1448
- * @typedef GetSearchConfigurationResponse
1581
+ * @typedef GetSearchConfigurationResponseSchema
1449
1582
  * @property {string} application_id - The application id where custom search
1450
1583
  * configuration is set
1451
1584
  * @property {number} company_id - The company id where custom search configuration is set
1452
- * @property {UserSerializer} [created_by] - The user who created the search
1453
- * configuration.
1585
+ * @property {UserSchema} [created_by] - The user who created the search configuration.
1454
1586
  * @property {string} [created_on] - The date and time when the search
1455
1587
  * configuration was created.
1456
1588
  * @property {boolean} [is_proximity_enabled] - Flag indicating if proximity
1457
1589
  * search is enabled for this attribute.
1458
- * @property {UserSerializer} [modified_by] - The user who modified the search
1459
- * configuration.
1590
+ * @property {UserSchema} [modified_by] - The user who modified the search configuration.
1460
1591
  * @property {string} [modified_on] - The date and time when the search
1461
1592
  * configuration was last modified.
1462
1593
  * @property {number} [proximity] - Proximity distance configuration
@@ -1473,12 +1604,12 @@ export = CatalogPlatformModel;
1473
1604
  * @property {string[]} [words]
1474
1605
  */
1475
1606
  /**
1476
- * @typedef GetSearchWordsDetailResponse
1607
+ * @typedef GetSearchWordsDetailResponseSchema
1477
1608
  * @property {GetSearchWordsData} [items]
1478
1609
  * @property {Page} [page]
1479
1610
  */
1480
1611
  /**
1481
- * @typedef GetSearchWordsResponse
1612
+ * @typedef GetSearchWordsResponseSchema
1482
1613
  * @property {GetSearchWordsData[]} [items]
1483
1614
  * @property {Page} [page]
1484
1615
  */
@@ -1496,7 +1627,7 @@ export = CatalogPlatformModel;
1496
1627
  * @property {Meta} [meta]
1497
1628
  */
1498
1629
  /**
1499
- * @typedef HSNCodesResponse
1630
+ * @typedef HSNCodesResponseSchema
1500
1631
  * @property {HSNData} [data]
1501
1632
  * @property {string} [message]
1502
1633
  */
@@ -1535,7 +1666,7 @@ export = CatalogPlatformModel;
1535
1666
  /**
1536
1667
  * @typedef HsnCodesListingResponseSchemaV2
1537
1668
  * @property {HSNDataInsertV2[]} [items]
1538
- * @property {PageResponse} [page]
1669
+ * @property {PageResponseSchema} [page]
1539
1670
  */
1540
1671
  /**
1541
1672
  * @typedef HsnCodesObject
@@ -1555,7 +1686,7 @@ export = CatalogPlatformModel;
1555
1686
  /**
1556
1687
  * @typedef HsnUpsert
1557
1688
  * @property {number} company_id - The ID of the company.
1558
- * @property {string} hs2_code - The HS2 code.
1689
+ * @property {string} [hs2_code] - The HS2 code.
1559
1690
  * @property {string} hsn_code - The HSN code.
1560
1691
  * @property {boolean} [is_active] - Flag indicating whether the entry is active.
1561
1692
  * @property {number} tax1 - The first tax rate.
@@ -1601,7 +1732,7 @@ export = CatalogPlatformModel;
1601
1732
  * @property {string} store_code
1602
1733
  */
1603
1734
  /**
1604
- * @typedef InventoryBulkRequest
1735
+ * @typedef InventoryBulkRequestSchema
1605
1736
  * @property {string} batch_id
1606
1737
  * @property {number} company_id
1607
1738
  * @property {InventoryJobPayload[]} sizes
@@ -1613,7 +1744,7 @@ export = CatalogPlatformModel;
1613
1744
  * @property {boolean} [multivalues]
1614
1745
  */
1615
1746
  /**
1616
- * @typedef InventoryCreateRequest
1747
+ * @typedef InventoryCreateRequestSchema
1617
1748
  * @property {string[]} [data] - The list of attributes that you want to extract
1618
1749
  * in the export job.
1619
1750
  * @property {InventoryExportFilter} filters - This filters that are applied for
@@ -1654,9 +1785,9 @@ export = CatalogPlatformModel;
1654
1785
  * @property {string} [url] - URL odf the exported file.
1655
1786
  */
1656
1787
  /**
1657
- * @typedef InventoryExportJobListResponse
1658
- * @property {InventoryJobDetailResponse} items - This is the list/history of
1659
- * all the jobs.
1788
+ * @typedef InventoryExportJobListResponseSchema
1789
+ * @property {InventoryJobDetailResponseSchema} items - This is the list/history
1790
+ * of all the jobs.
1660
1791
  * @property {Page} [page]
1661
1792
  */
1662
1793
  /**
@@ -1666,16 +1797,16 @@ export = CatalogPlatformModel;
1666
1797
  * @property {string} operators - Condition for the quantity that needs to be exported.
1667
1798
  */
1668
1799
  /**
1669
- * @typedef InventoryExportRequest
1800
+ * @typedef InventoryExportRequestSchema
1670
1801
  * @property {number[]} [brand]
1671
1802
  * @property {number[]} [store]
1672
1803
  * @property {string} [type]
1673
1804
  */
1674
1805
  /**
1675
- * @typedef InventoryExportResponse
1806
+ * @typedef InventoryExportResponseSchema
1676
1807
  * @property {string} [created_by] - The user that created the job.
1677
1808
  * @property {string} [created_on] - Creation datetime of the job
1678
- * @property {Object} [filters] - The filters that needs to be exported.
1809
+ * @property {Filters} [filters]
1679
1810
  * @property {string} [modified_on] - Modification date of the job
1680
1811
  * @property {string[]} [notification_emails] - The notification emails for the job.
1681
1812
  * @property {number} seller_id - The seller id that needs to be exported.
@@ -1689,7 +1820,7 @@ export = CatalogPlatformModel;
1689
1820
  * @property {string} message - It is the message of the activity performed.
1690
1821
  */
1691
1822
  /**
1692
- * @typedef InventoryJobDetailResponse
1823
+ * @typedef InventoryJobDetailResponseSchema
1693
1824
  * @property {UserDetail} [cancelled_by] - This is the user detail of the user
1694
1825
  * who cancelled the job.
1695
1826
  * @property {string} [cancelled_on] - This is the timestamp of the cacellation
@@ -1761,7 +1892,7 @@ export = CatalogPlatformModel;
1761
1892
  * @property {string} [trace_id] - The trace ID of the inventory payload.
1762
1893
  */
1763
1894
  /**
1764
- * @typedef InventoryRequest
1895
+ * @typedef InventoryRequestSchema
1765
1896
  * @property {number} company_id
1766
1897
  * @property {ItemQuery} item
1767
1898
  * @property {InvSize[]} sizes
@@ -1773,7 +1904,7 @@ export = CatalogPlatformModel;
1773
1904
  * @property {InventoryPayload[]} [payload] - The list of inventory payloads.
1774
1905
  */
1775
1906
  /**
1776
- * @typedef InventoryResponse
1907
+ * @typedef InventoryResponseSchema
1777
1908
  * @property {string} [currency]
1778
1909
  * @property {Object} [identifiers]
1779
1910
  * @property {string} [inventory_updated_on]
@@ -1795,16 +1926,16 @@ export = CatalogPlatformModel;
1795
1926
  */
1796
1927
  /**
1797
1928
  * @typedef InventoryResponsePaginated
1798
- * @property {InventoryResponse[]} [items]
1929
+ * @property {InventoryResponseSchema[]} [items]
1799
1930
  * @property {Page} [page]
1800
1931
  */
1801
1932
  /**
1802
1933
  * @typedef InventorySellerIdentifierResponsePaginated
1803
- * @property {InventorySellerResponse[]} [items]
1934
+ * @property {InventorySellerResponseSchema[]} [items]
1804
1935
  * @property {Page} [page]
1805
1936
  */
1806
1937
  /**
1807
- * @typedef InventorySellerResponse
1938
+ * @typedef InventorySellerResponseSchema
1808
1939
  * @property {Object} [_custom_json] - Custom JSON data for the article.
1809
1940
  * @property {string} [added_on_store] - The date and time when the article was
1810
1941
  * added to the store.
@@ -1812,7 +1943,7 @@ export = CatalogPlatformModel;
1812
1943
  * @property {CompanyMeta} company - The metadata of the company.
1813
1944
  * @property {string} country_of_origin - The country of origin of the article.
1814
1945
  * @property {string} [created_by] - The user who created the article.
1815
- * @property {DimensionResponse} dimension - The dimensions of the article.
1946
+ * @property {DimensionResponseSchema} dimension - The dimensions of the article.
1816
1947
  * @property {string} [expiration_date] - The expiration date of the article.
1817
1948
  * @property {boolean} fragile - Indicates if the article is fragile.
1818
1949
  * @property {string} fynd_article_code - The Fynd article code.
@@ -1822,7 +1953,7 @@ export = CatalogPlatformModel;
1822
1953
  * @property {boolean} [is_active] - Indicates if the article is active.
1823
1954
  * @property {boolean} [is_set]
1824
1955
  * @property {number} item_id - The ID of the item.
1825
- * @property {ManufacturerResponse} manufacturer - The manufacturer of the article.
1956
+ * @property {ManufacturerResponseSchema} manufacturer - The manufacturer of the article.
1826
1957
  * @property {Object} [meta] - Additional metadata for the article.
1827
1958
  * @property {string} [modified_by] - The user who modified the article.
1828
1959
  * @property {PriceMeta} price - The price metadata of the article.
@@ -1835,14 +1966,14 @@ export = CatalogPlatformModel;
1835
1966
  * @property {string} [stage] - The stage of the article.
1836
1967
  * @property {StoreMeta} store - The metadata of the store.
1837
1968
  * @property {string[]} [tags] - The tags associated with the article.
1838
- * @property {Object} [tax_identifier] - The tax identifier of the article.
1969
+ * @property {TaxIdentifier} [tax_identifier]
1839
1970
  * @property {number} total_quantity - The total quantity of the article.
1840
1971
  * @property {string} [trace_id] - The trace ID of the article.
1841
1972
  * @property {boolean} [track_inventory] - Indicates if the inventory is tracked
1842
1973
  * for the article.
1843
1974
  * @property {Trader1[]} [trader] - The traders associated with the article.
1844
1975
  * @property {string} uid - The unique identifier of the article.
1845
- * @property {WeightResponse} weight - The weight of the article.
1976
+ * @property {WeightResponseSchema} weight - The weight of the article.
1846
1977
  */
1847
1978
  /**
1848
1979
  * @typedef InventorySet
@@ -1851,30 +1982,30 @@ export = CatalogPlatformModel;
1851
1982
  * @property {SizeDistribution} size_distribution
1852
1983
  */
1853
1984
  /**
1854
- * @typedef InventoryStockResponse
1985
+ * @typedef InventoryStockResponseSchema
1855
1986
  * @property {Object[]} [items]
1856
1987
  * @property {InventoryPage} page
1857
1988
  */
1858
1989
  /**
1859
- * @typedef InventoryUpdateResponse
1990
+ * @typedef InventoryUpdateResponseSchema
1860
1991
  * @property {InventoryResponseItem[]} [items]
1861
1992
  * @property {string} message - It is the success message of the inventory update.
1862
1993
  */
1863
1994
  /**
1864
- * @typedef InventoryValidationResponse
1995
+ * @typedef InventoryValidationResponseSchema
1865
1996
  * @property {Object} [data]
1866
1997
  * @property {string} [message]
1867
1998
  */
1868
1999
  /**
1869
- * @typedef InvoiceCredSerializer
2000
+ * @typedef InvoiceCredSchema
1870
2001
  * @property {boolean} [enabled]
1871
2002
  * @property {string} [password]
1872
2003
  * @property {string} [username]
1873
2004
  */
1874
2005
  /**
1875
- * @typedef InvoiceDetailsSerializer
1876
- * @property {InvoiceCredSerializer} [e_invoice]
1877
- * @property {InvoiceCredSerializer} [e_waybill]
2006
+ * @typedef InvoiceDetailsSchema
2007
+ * @property {InvoiceCredSchema} [e_invoice]
2008
+ * @property {InvoiceCredSchema} [e_waybill]
1878
2009
  */
1879
2010
  /**
1880
2011
  * @typedef ItemQuery
@@ -1923,30 +2054,29 @@ export = CatalogPlatformModel;
1923
2054
  * @property {Object} [page]
1924
2055
  */
1925
2056
  /**
1926
- * @typedef LocationDayWiseSerializer
1927
- * @property {LocationTimingSerializer} [closing]
2057
+ * @typedef LocationDayWiseSchema
2058
+ * @property {LocationTimingSchema} [closing]
1928
2059
  * @property {boolean} open
1929
- * @property {LocationTimingSerializer} [opening]
2060
+ * @property {LocationTimingSchema} [opening]
1930
2061
  * @property {string} weekday
1931
2062
  */
1932
2063
  /**
1933
2064
  * @typedef LocationIntegrationType
1934
2065
  * @property {string} [inventory]
1935
- * @property {string} [order]
1936
2066
  */
1937
2067
  /**
1938
- * @typedef LocationListSerializer
1939
- * @property {GetLocationSerializer[]} [items]
2068
+ * @typedef LocationListSchema
2069
+ * @property {GetLocationSchema[]} [items]
1940
2070
  * @property {Page} [page]
1941
2071
  */
1942
2072
  /**
1943
- * @typedef LocationManagerSerializer
2073
+ * @typedef LocationManagerSchema
1944
2074
  * @property {string} [email]
1945
2075
  * @property {SellerPhoneNumber} mobile_no
1946
2076
  * @property {string} [name]
1947
2077
  */
1948
2078
  /**
1949
- * @typedef LocationTimingSerializer
2079
+ * @typedef LocationTimingSchema
1950
2080
  * @property {number} [hour]
1951
2081
  * @property {number} [minute]
1952
2082
  */
@@ -1964,7 +2094,7 @@ export = CatalogPlatformModel;
1964
2094
  * @property {number} [minimum]
1965
2095
  */
1966
2096
  /**
1967
- * @typedef ManufacturerResponse
2097
+ * @typedef ManufacturerResponseSchema
1968
2098
  * @property {string} address - The address of the manufacturer.
1969
2099
  * @property {boolean} is_default - Indicates if it is the default manufacturer.
1970
2100
  * @property {string} name - The name of the manufacturer.
@@ -1977,9 +2107,14 @@ export = CatalogPlatformModel;
1977
2107
  */
1978
2108
  /**
1979
2109
  * @typedef Media
1980
- * @property {Object} [meta]
1981
- * @property {string} [type]
1982
- * @property {string} url
2110
+ * @property {Object} [meta] - A metadata object containing additional
2111
+ * information about the media, such as dimensions, format, or other relevant details.
2112
+ * @property {string} [type] - The type of media.
2113
+ * @property {string} url - The URL where the media can be accessed.
2114
+ * @property {string} [alt] - The alternative text for the media, used for
2115
+ * accessibility and as a fallback when the media cannot be displayed.
2116
+ * @property {string} [thumbnail] - The URL of the thumbnail image, typically a
2117
+ * smaller or lower-resolution version of the main media.
1983
2118
  */
1984
2119
  /**
1985
2120
  * @typedef Media1
@@ -2000,29 +2135,29 @@ export = CatalogPlatformModel;
2000
2135
  * @property {Object[]} [values]
2001
2136
  */
2002
2137
  /**
2003
- * @typedef MetaDataListingFilterMetaResponse
2138
+ * @typedef MetaDataListingFilterMetaResponseSchema
2004
2139
  * @property {string} [display]
2005
2140
  * @property {string[]} [filter_types]
2006
2141
  * @property {string} [key]
2007
2142
  * @property {Object[]} [units]
2008
2143
  */
2009
2144
  /**
2010
- * @typedef MetaDataListingFilterResponse
2011
- * @property {MetaDataListingFilterMetaResponse[]} [data]
2145
+ * @typedef MetaDataListingFilterResponseSchema
2146
+ * @property {MetaDataListingFilterMetaResponseSchema[]} [data]
2012
2147
  */
2013
2148
  /**
2014
- * @typedef MetaDataListingResponse
2015
- * @property {MetaDataListingFilterResponse} filter
2016
- * @property {MetaDataListingSortResponse} sort
2149
+ * @typedef MetaDataListingResponseSchema
2150
+ * @property {MetaDataListingFilterResponseSchema} filter
2151
+ * @property {MetaDataListingSortResponseSchema} sort
2017
2152
  */
2018
2153
  /**
2019
- * @typedef MetaDataListingSortMetaResponse
2154
+ * @typedef MetaDataListingSortMetaResponseSchema
2020
2155
  * @property {string} [display]
2021
2156
  * @property {string} [key]
2022
2157
  */
2023
2158
  /**
2024
- * @typedef MetaDataListingSortResponse
2025
- * @property {MetaDataListingSortMetaResponse[]} [data]
2159
+ * @typedef MetaDataListingSortResponseSchema
2160
+ * @property {MetaDataListingSortMetaResponseSchema[]} [data]
2026
2161
  */
2027
2162
  /**
2028
2163
  * @typedef MetaFields
@@ -2038,7 +2173,7 @@ export = CatalogPlatformModel;
2038
2173
  * @property {number} [value] - The value of the net quantity of the product.
2039
2174
  */
2040
2175
  /**
2041
- * @typedef NetQuantityResponse
2176
+ * @typedef NetQuantityResponseSchema
2042
2177
  * @property {string} [unit]
2043
2178
  * @property {number} [value]
2044
2179
  */
@@ -2048,7 +2183,7 @@ export = CatalogPlatformModel;
2048
2183
  * @property {string} [start]
2049
2184
  */
2050
2185
  /**
2051
- * @typedef OptInPostRequest
2186
+ * @typedef OptInPostRequestSchema
2052
2187
  * @property {number[]} [brand_ids]
2053
2188
  * @property {number} [company_id]
2054
2189
  * @property {boolean} [enabled]
@@ -2080,7 +2215,7 @@ export = CatalogPlatformModel;
2080
2215
  * @property {Page} [page]
2081
2216
  */
2082
2217
  /**
2083
- * @typedef OwnerAppItemResponse
2218
+ * @typedef OwnerAppItemResponseSchema
2084
2219
  * @property {Object} [alt_text]
2085
2220
  * @property {boolean} [is_cod]
2086
2221
  * @property {boolean} [is_gift]
@@ -2090,7 +2225,7 @@ export = CatalogPlatformModel;
2090
2225
  * @property {MetaFields[]} [_custom_meta] - Custom meta fields for the item
2091
2226
  */
2092
2227
  /**
2093
- * @typedef PTErrorResponse
2228
+ * @typedef PTErrorResponseSchema
2094
2229
  * @property {string} [code]
2095
2230
  * @property {Object} [errors]
2096
2231
  * @property {string} [message]
@@ -2108,7 +2243,7 @@ export = CatalogPlatformModel;
2108
2243
  * @property {number} [size] - The number of items per page.
2109
2244
  */
2110
2245
  /**
2111
- * @typedef PageResponse
2246
+ * @typedef PageResponseSchema
2112
2247
  * @property {string} [current] - It is the current page of the page response schema.
2113
2248
  * @property {boolean} [has_next] - It is the bool indicates if there is a next page.
2114
2249
  * @property {boolean} [has_previous] - It is the bool indicates if there is a
@@ -2117,15 +2252,6 @@ export = CatalogPlatformModel;
2117
2252
  * the filter.
2118
2253
  * @property {number} [size] - It is the size of each page.
2119
2254
  */
2120
- /**
2121
- * @typedef PageResponse1
2122
- * @property {number} [current]
2123
- * @property {boolean} [has_next]
2124
- * @property {boolean} [has_previous]
2125
- * @property {number} [item_total]
2126
- * @property {number} [size]
2127
- * @property {string} [type]
2128
- */
2129
2255
  /**
2130
2256
  * @typedef PageResponseType
2131
2257
  * @property {number} current
@@ -2141,13 +2267,6 @@ export = CatalogPlatformModel;
2141
2267
  * @property {number} [min_effective]
2142
2268
  * @property {number} [min_marked]
2143
2269
  */
2144
- /**
2145
- * @typedef Price1
2146
- * @property {string} [currency_code]
2147
- * @property {string} [currency_symbol]
2148
- * @property {number} [max]
2149
- * @property {number} [min]
2150
- */
2151
2270
  /**
2152
2271
  * @typedef PriceArticle
2153
2272
  * @property {string} [currency]
@@ -2166,8 +2285,8 @@ export = CatalogPlatformModel;
2166
2285
  * @property {string} [updated_at] - The date and time of the last update.
2167
2286
  */
2168
2287
  /**
2169
- * @typedef ProdcutTemplateCategoriesResponse
2170
- * @property {CategoriesResponse[]} [items]
2288
+ * @typedef ProdcutTemplateCategoriesResponseSchema
2289
+ * @property {CategoriesResponseSchema[]} [items]
2171
2290
  * @property {Page} [page]
2172
2291
  */
2173
2292
  /**
@@ -2211,20 +2330,20 @@ export = CatalogPlatformModel;
2211
2330
  * @property {Object} [moq]
2212
2331
  * @property {boolean} [multi_size]
2213
2332
  * @property {string} [name]
2214
- * @property {NetQuantityResponse} [net_quantity]
2333
+ * @property {NetQuantityResponseSchema} [net_quantity]
2215
2334
  * @property {number} [no_of_boxes]
2216
2335
  * @property {string} [pending]
2217
2336
  * @property {string} [primary_color]
2218
2337
  * @property {string[]} [product_group_tag]
2219
2338
  * @property {ProductPublished} [product_publish]
2220
- * @property {ReturnConfigResponse} [return_config]
2339
+ * @property {ReturnConfigResponseSchema} [return_config]
2221
2340
  * @property {string} [short_description]
2222
2341
  * @property {string} [size_guide]
2223
2342
  * @property {Object[]} [sizes]
2224
2343
  * @property {string} [slug]
2225
2344
  * @property {string} [stage]
2226
2345
  * @property {string[]} [tags]
2227
- * @property {Object} [tax_identifier]
2346
+ * @property {TaxIdentifier} [tax_identifier]
2228
2347
  * @property {Object} [teaser_tag]
2229
2348
  * @property {string} [template_tag]
2230
2349
  * @property {Trader[]} [trader]
@@ -2236,8 +2355,8 @@ export = CatalogPlatformModel;
2236
2355
  * @property {string} [verified_on]
2237
2356
  */
2238
2357
  /**
2239
- * @typedef ProductAttributesResponse
2240
- * @property {AttributeMasterSerializer[]} items
2358
+ * @typedef ProductAttributesResponseSchema
2359
+ * @property {AttributeMasterSchema[]} items
2241
2360
  */
2242
2361
  /**
2243
2362
  * @typedef ProductBrand
@@ -2254,7 +2373,7 @@ export = CatalogPlatformModel;
2254
2373
  * @property {Object} user
2255
2374
  */
2256
2375
  /**
2257
- * @typedef ProductBulkRequest
2376
+ * @typedef ProductBulkRequestSchema
2258
2377
  * @property {number} [cancelled]
2259
2378
  * @property {Object[]} [cancelled_records]
2260
2379
  * @property {number} [company_id]
@@ -2274,7 +2393,7 @@ export = CatalogPlatformModel;
2274
2393
  */
2275
2394
  /**
2276
2395
  * @typedef ProductBulkRequestList
2277
- * @property {ProductBulkRequest[]} [items]
2396
+ * @property {Object} [items]
2278
2397
  * @property {Page} [page]
2279
2398
  */
2280
2399
  /**
@@ -2287,7 +2406,7 @@ export = CatalogPlatformModel;
2287
2406
  * @property {number} product_uid
2288
2407
  */
2289
2408
  /**
2290
- * @typedef ProductBundleRequest
2409
+ * @typedef ProductBundleRequestSchema
2291
2410
  * @property {string} choice
2292
2411
  * @property {number} [company_id]
2293
2412
  * @property {Object} [created_by]
@@ -2304,7 +2423,7 @@ export = CatalogPlatformModel;
2304
2423
  * @property {string} slug
2305
2424
  */
2306
2425
  /**
2307
- * @typedef ProductBundleUpdateRequest
2426
+ * @typedef ProductBundleUpdateRequestSchema
2308
2427
  * @property {string} choice
2309
2428
  * @property {number} [company_id]
2310
2429
  * @property {boolean} is_active
@@ -2406,8 +2525,8 @@ export = CatalogPlatformModel;
2406
2525
  * @property {string} [title]
2407
2526
  */
2408
2527
  /**
2409
- * @typedef ProductDownloadsResponse
2410
- * @property {ProductTemplateExportResponse[]} [items] - The items of the job.
2528
+ * @typedef ProductDownloadsResponseSchema
2529
+ * @property {ProductTemplateExportResponseSchema[]} [items] - The items of the job.
2411
2530
  * @property {Page} [page]
2412
2531
  */
2413
2532
  /**
@@ -2416,7 +2535,7 @@ export = CatalogPlatformModel;
2416
2535
  * @property {ProductFiltersValue[]} values
2417
2536
  */
2418
2537
  /**
2419
- * @typedef GetQueryFiltersValuesResponse
2538
+ * @typedef GetQueryFiltersValuesResponseSchema
2420
2539
  * @property {ProductFiltersValue[]} values
2421
2540
  * @property {Page} page
2422
2541
  */
@@ -2448,41 +2567,7 @@ export = CatalogPlatformModel;
2448
2567
  * @property {Object} value
2449
2568
  */
2450
2569
  /**
2451
- * @typedef ProductListingDetail
2452
- * @property {Object} [attributes]
2453
- * @property {ProductBrand} [brand]
2454
- * @property {string} [color]
2455
- * @property {string} [description]
2456
- * @property {string} [discount]
2457
- * @property {ProductDetailGroupedAttribute[]} [grouped_attributes]
2458
- * @property {boolean} [has_variant]
2459
- * @property {string[]} [highlights]
2460
- * @property {string} [image_nature]
2461
- * @property {string} [item_code]
2462
- * @property {string} [item_type]
2463
- * @property {Media[]} [medias]
2464
- * @property {string} [name]
2465
- * @property {ProductListingPrice} [price]
2466
- * @property {string} [product_online_date]
2467
- * @property {Object} [promo_meta]
2468
- * @property {number} [rating]
2469
- * @property {number} [rating_count]
2470
- * @property {boolean} [sellable]
2471
- * @property {string} [short_description]
2472
- * @property {string[]} [similars]
2473
- * @property {string} slug
2474
- * @property {Object} [teaser_tag]
2475
- * @property {string[]} [tryouts]
2476
- * @property {string} [type]
2477
- * @property {number} [uid]
2478
- */
2479
- /**
2480
- * @typedef ProductListingPrice
2481
- * @property {Price1} [effective]
2482
- * @property {Price1} [marked]
2483
- */
2484
- /**
2485
- * @typedef ProductListingResponse
2570
+ * @typedef ProductListingResponseSchema
2486
2571
  * @property {Product[]} [items]
2487
2572
  * @property {Page} [page]
2488
2573
  */
@@ -2507,12 +2592,12 @@ export = CatalogPlatformModel;
2507
2592
  * @property {number} [product_online_date]
2508
2593
  */
2509
2594
  /**
2510
- * @typedef ProductReturnConfigSerializer
2595
+ * @typedef ProductReturnConfigSchema
2511
2596
  * @property {boolean} [on_same_store]
2512
2597
  * @property {number} [store_uid]
2513
2598
  */
2514
2599
  /**
2515
- * @typedef ProductReturnConfigBaseSerializer
2600
+ * @typedef ProductReturnConfigBaseSchema
2516
2601
  * @property {boolean} returnable - Boolean Flag for item returnable
2517
2602
  * @property {number} time - Valid return time for an item
2518
2603
  * @property {string} unit - Unit of return config days|hours
@@ -2558,20 +2643,20 @@ export = CatalogPlatformModel;
2558
2643
  * @property {Object} [moq]
2559
2644
  * @property {boolean} [multi_size]
2560
2645
  * @property {string} [name]
2561
- * @property {NetQuantityResponse} [net_quantity]
2646
+ * @property {NetQuantityResponseSchema} [net_quantity]
2562
2647
  * @property {number} [no_of_boxes]
2563
2648
  * @property {string} [pending]
2564
2649
  * @property {string} [primary_color]
2565
2650
  * @property {string[]} [product_group_tag]
2566
2651
  * @property {ProductPublish} [product_publish]
2567
- * @property {ReturnConfigResponse} [return_config]
2652
+ * @property {ReturnConfigResponseSchema} [return_config]
2568
2653
  * @property {string} [short_description]
2569
2654
  * @property {string} [size_guide]
2570
2655
  * @property {Object[]} [sizes]
2571
2656
  * @property {string} [slug]
2572
2657
  * @property {string} [stage]
2573
2658
  * @property {string[]} [tags]
2574
- * @property {Object} [tax_identifier]
2659
+ * @property {TaxIdentifier} [tax_identifier]
2575
2660
  * @property {Object} [teaser_tag]
2576
2661
  * @property {string} [template_tag]
2577
2662
  * @property {Trader[]} [trader]
@@ -2588,14 +2673,14 @@ export = CatalogPlatformModel;
2588
2673
  * @property {number} min
2589
2674
  */
2590
2675
  /**
2591
- * @typedef ProductSizeDeleteDataResponse
2676
+ * @typedef ProductSizeDeleteDataResponseSchema
2592
2677
  * @property {number} [company_id]
2593
2678
  * @property {number} [item_id]
2594
2679
  * @property {string} [size]
2595
2680
  */
2596
2681
  /**
2597
- * @typedef ProductSizeDeleteResponse
2598
- * @property {ProductSizeDeleteDataResponse} [data]
2682
+ * @typedef ProductSizeDeleteResponseSchema
2683
+ * @property {ProductSizeDeleteDataResponseSchema} [data]
2599
2684
  * @property {boolean} [success]
2600
2685
  */
2601
2686
  /**
@@ -2605,7 +2690,7 @@ export = CatalogPlatformModel;
2605
2690
  * @property {string} [value]
2606
2691
  */
2607
2692
  /**
2608
- * @typedef ProductTagsViewResponse
2693
+ * @typedef ProductTagsViewResponseSchema
2609
2694
  * @property {string[]} [items]
2610
2695
  */
2611
2696
  /**
@@ -2629,14 +2714,14 @@ export = CatalogPlatformModel;
2629
2714
  */
2630
2715
  /**
2631
2716
  * @typedef ProductTemplateDownloadsExport
2632
- * @property {ProductTemplateExportFilterRequest} [filters] - This is the
2717
+ * @property {ProductTemplateExportFilterRequestSchema} [filters] - This is the
2633
2718
  * filters of the file for the export.
2634
2719
  * @property {string[]} [notification_emails] - The list of the emails to be
2635
2720
  * notified after the completion of the job.
2636
2721
  * @property {string} [type] - This is the type of the file for the export.
2637
2722
  */
2638
2723
  /**
2639
- * @typedef ProductTemplateExportFilterRequest
2724
+ * @typedef ProductTemplateExportFilterRequestSchema
2640
2725
  * @property {string[]} [brands] - The list of the brands that needs to be exported.
2641
2726
  * @property {string[]} catalogue_types - The list of the type of the catalog
2642
2727
  * such as set, standard and composite.
@@ -2647,7 +2732,7 @@ export = CatalogPlatformModel;
2647
2732
  * to be exported.
2648
2733
  */
2649
2734
  /**
2650
- * @typedef ProductTemplateExportResponse
2735
+ * @typedef ProductTemplateExportResponseSchema
2651
2736
  * @property {string} [completed_on] - Completion datetime of the job
2652
2737
  * @property {UserInfo1} [created_by] - The user that created the job.
2653
2738
  * @property {Object} [filters] - The filters that needs to be exported.
@@ -2669,7 +2754,7 @@ export = CatalogPlatformModel;
2669
2754
  * @property {number} [uid]
2670
2755
  */
2671
2756
  /**
2672
- * @typedef ProductVariantsResponse
2757
+ * @typedef ProductVariantsResponseSchema
2673
2758
  * @property {Page} [page]
2674
2759
  * @property {ProductVariants[]} [variants]
2675
2760
  */
@@ -2748,7 +2833,7 @@ export = CatalogPlatformModel;
2748
2833
  * @property {string} [unit]
2749
2834
  */
2750
2835
  /**
2751
- * @typedef ReturnConfigResponse
2836
+ * @typedef ReturnConfigResponseSchema
2752
2837
  * @property {boolean} [returnable]
2753
2838
  * @property {number} [time]
2754
2839
  * @property {string} [unit]
@@ -2841,11 +2926,11 @@ export = CatalogPlatformModel;
2841
2926
  * @property {string} size
2842
2927
  */
2843
2928
  /**
2844
- * @typedef SingleCategoryResponse
2929
+ * @typedef SingleCategoryResponseSchema
2845
2930
  * @property {Category} [data]
2846
2931
  */
2847
2932
  /**
2848
- * @typedef SingleProductResponse
2933
+ * @typedef SingleProductResponseSchema
2849
2934
  * @property {ProductSchemaV2} [data]
2850
2935
  */
2851
2936
  /**
@@ -2860,7 +2945,7 @@ export = CatalogPlatformModel;
2860
2945
  * @property {SetSize[]} sizes
2861
2946
  */
2862
2947
  /**
2863
- * @typedef SizeGuideResponse
2948
+ * @typedef SizeGuideResponseSchema
2864
2949
  * @property {boolean} [active]
2865
2950
  * @property {number} [brand_id]
2866
2951
  * @property {number} [company_id]
@@ -2876,7 +2961,7 @@ export = CatalogPlatformModel;
2876
2961
  * @property {string} [title]
2877
2962
  */
2878
2963
  /**
2879
- * @typedef StoreAssignResponse
2964
+ * @typedef StoreAssignResponseSchema
2880
2965
  * @property {string} [_id]
2881
2966
  * @property {ArticleAssignment1} article_assignment
2882
2967
  * @property {number} [company_id]
@@ -2916,7 +3001,7 @@ export = CatalogPlatformModel;
2916
3001
  * @property {number} id
2917
3002
  */
2918
3003
  /**
2919
- * @typedef SuccessResponse
3004
+ * @typedef SuccessResponseSchema
2920
3005
  * @property {boolean} [success]
2921
3006
  */
2922
3007
  /**
@@ -2964,12 +3049,12 @@ export = CatalogPlatformModel;
2964
3049
  * @property {Object} [template_validation]
2965
3050
  */
2966
3051
  /**
2967
- * @typedef TemplatesResponse
3052
+ * @typedef TemplatesResponseSchema
2968
3053
  * @property {ProductTemplate} [items]
2969
3054
  * @property {Page} [page]
2970
3055
  */
2971
3056
  /**
2972
- * @typedef TemplatesValidationResponse
3057
+ * @typedef TemplatesValidationResponseSchema
2973
3058
  * @property {TemplateValidationData} [data]
2974
3059
  * @property {TemplateDetails} [template_details]
2975
3060
  */
@@ -3028,18 +3113,16 @@ export = CatalogPlatformModel;
3028
3113
  * @property {string[]} [visible_facets_keys]
3029
3114
  */
3030
3115
  /**
3031
- * @typedef UpdateSearchConfigurationRequest
3116
+ * @typedef UpdateSearchConfigurationRequestSchema
3032
3117
  * @property {string} application_id - The application id where custom search
3033
3118
  * configuration is set
3034
3119
  * @property {number} company_id - The company id where custom search configuration is set
3035
- * @property {UserSerializer} [created_by] - The user who created the search
3036
- * configuration.
3120
+ * @property {UserSchema} [created_by] - The user who created the search configuration.
3037
3121
  * @property {string} [created_on] - The date and time when the search
3038
3122
  * configuration was created.
3039
3123
  * @property {boolean} [is_proximity_enabled] - Flag indicating if proximity
3040
3124
  * search is enabled for this attribute.
3041
- * @property {UserSerializer} [modified_by] - The user who modified the search
3042
- * configuration.
3125
+ * @property {UserSchema} [modified_by] - The user who modified the search configuration.
3043
3126
  * @property {string} [modified_on] - The date and time when the search
3044
3127
  * configuration was last modified.
3045
3128
  * @property {number} [proximity] - Proximity distance configuration
@@ -3047,11 +3130,11 @@ export = CatalogPlatformModel;
3047
3130
  * attributes defined on the application.
3048
3131
  */
3049
3132
  /**
3050
- * @typedef UpdateSearchConfigurationResponse
3133
+ * @typedef UpdateSearchConfigurationResponseSchema
3051
3134
  * @property {boolean} [success]
3052
3135
  */
3053
3136
  /**
3054
- * @typedef CreateMarketplaceOptinResponse
3137
+ * @typedef CreateMarketplaceOptinResponseSchema
3055
3138
  * @property {number[]} [store_ids]
3056
3139
  * @property {number[]} [brand_ids]
3057
3140
  * @property {number} [company_id]
@@ -3096,7 +3179,7 @@ export = CatalogPlatformModel;
3096
3179
  * @property {string} [username] - The username of the user.
3097
3180
  */
3098
3181
  /**
3099
- * @typedef UserSerializer
3182
+ * @typedef UserSchema
3100
3183
  * @property {string} [contact] - The contact information of the user.
3101
3184
  * @property {string} [user_id] - The unique ID of the user.
3102
3185
  * @property {string} [username] - The username of the user.
@@ -3155,7 +3238,7 @@ export = CatalogPlatformModel;
3155
3238
  * @property {string} [username]
3156
3239
  */
3157
3240
  /**
3158
- * @typedef WeightResponse
3241
+ * @typedef WeightResponseSchema
3159
3242
  * @property {boolean} is_default - Indicates if it is the default weight.
3160
3243
  * @property {number} shipping - The shipping weight.
3161
3244
  * @property {string} unit - The unit of weight.
@@ -3170,6 +3253,11 @@ export = CatalogPlatformModel;
3170
3253
  * @property {string} [username]
3171
3254
  * @property {string} [user_id]
3172
3255
  */
3256
+ /**
3257
+ * @typedef ModifiedBy
3258
+ * @property {string} [username]
3259
+ * @property {string} [user_id]
3260
+ */
3173
3261
  /**
3174
3262
  * @typedef Marketplaces
3175
3263
  * @property {number[]} [brand_ids]
@@ -3191,7 +3279,7 @@ export = CatalogPlatformModel;
3191
3279
  * @property {Page} [page]
3192
3280
  */
3193
3281
  /**
3194
- * @typedef UpdateMarketplaceOptinRequest
3282
+ * @typedef UpdateMarketplaceOptinRequestSchema
3195
3283
  * @property {number[]} [brand_ids]
3196
3284
  * @property {number} [company_id]
3197
3285
  * @property {boolean} [enabled]
@@ -3200,7 +3288,7 @@ export = CatalogPlatformModel;
3200
3288
  * @property {number[]} [store_ids]
3201
3289
  */
3202
3290
  /**
3203
- * @typedef UpdateMarketplaceOptinResponse
3291
+ * @typedef UpdateMarketplaceOptinResponseSchema
3204
3292
  * @property {number[]} [brand_ids]
3205
3293
  * @property {number} [company_id]
3206
3294
  * @property {string} [app_id]
@@ -3211,6 +3299,27 @@ export = CatalogPlatformModel;
3211
3299
  * @property {CreatedBy} [created_by]
3212
3300
  * @property {CreatedBy} [modified_by]
3213
3301
  */
3302
+ /**
3303
+ * @typedef Identifier
3304
+ * @property {string} [ean] - The European Article Number (EAN) of the item.
3305
+ * @property {string} [sku_code] - The Stock Keeping Unit (SKU) code of the item.
3306
+ * @property {string} [alu] - The Alternative Lookup Product of the item.
3307
+ * @property {string} [upc] - Universal Product Code of the item.
3308
+ * @property {string} [isbn] - ISBN (International Standard Book Number) is a
3309
+ * unique identifier used globally to identify books and other non-periodical
3310
+ * publications
3311
+ */
3312
+ /**
3313
+ * @typedef Filters
3314
+ * @property {string[]} [brands] - The list of all the brands selected.
3315
+ * @property {string} [from_date] - The modified-on date from which the data
3316
+ * needs to be exported.
3317
+ * @property {InventoryExportQuantityFilter} [quantity] - The quantity range
3318
+ * that needs to be exported.
3319
+ * @property {string[]} [stores] - The list of all the stores selected.
3320
+ * @property {string} [to_date] - The modified-on date till when the data needs
3321
+ * to be exported.
3322
+ */
3214
3323
  /**
3215
3324
  * @typedef ActionPage
3216
3325
  * @property {Object} [params] - Parameters that should be considered in path.
@@ -3218,6 +3327,68 @@ export = CatalogPlatformModel;
3218
3327
  * @property {string} [url] - The URL for the action.
3219
3328
  * @property {PageType} type
3220
3329
  */
3330
+ /**
3331
+ * @typedef ProductListingPrice
3332
+ * @property {Price1} [effective]
3333
+ * @property {Price1} [marked]
3334
+ * @property {Price1} [selling]
3335
+ */
3336
+ /**
3337
+ * @typedef Price1
3338
+ * @property {CurrencyCodeEnum} [currency_code]
3339
+ * @property {string} [currency_symbol]
3340
+ * @property {number} [max]
3341
+ * @property {number} [min]
3342
+ */
3343
+ /**
3344
+ * @typedef MultiCategoriesSchema
3345
+ * @property {number} [l1] - The ID of the Level 1 (L1) category of the product.
3346
+ * @property {number} [l2] - The ID of the Level 2 (L2) category of the product.
3347
+ * @property {number} [l3] - The ID of the Level 3 (L3) category of the product.
3348
+ * @property {boolean} [is_active] - Indicates whether the L3 category of the
3349
+ * product is currently active.
3350
+ * @property {number} [department] - The department associated with the L3
3351
+ * category of the product.
3352
+ */
3353
+ /**
3354
+ * @typedef CustomMeta
3355
+ * @property {string} key - The key of the metadata. Should be a non-empty
3356
+ * string and length should not exceed 30 characters.
3357
+ * @property {string} value - The value of the metadata. Should be a non-empty
3358
+ * string and length should not exceed 100 characters.
3359
+ */
3360
+ /**
3361
+ * @typedef {| "browntape_v2"
3362
+ * | "easyops"
3363
+ * | "holisol"
3364
+ * | "logic"
3365
+ * | "tcnss"
3366
+ * | "increff"
3367
+ * | "liberty"
3368
+ * | "browntape"
3369
+ * | "easyecom"
3370
+ * | "major_brands"
3371
+ * | "jiopos"
3372
+ * | "jockey"
3373
+ * | "omsguru"
3374
+ * | "pulse"
3375
+ * | "sellerware"
3376
+ * | "unicommerce"
3377
+ * | "ethos"
3378
+ * | "sarasuole"
3379
+ * | "vajor"
3380
+ * | "vinculum"
3381
+ * | "jiomart_pos"
3382
+ * | "rbl_sap"
3383
+ * | "ginesys-pos"
3384
+ * | "fyndpos"
3385
+ * | "jiopos_openapi"
3386
+ * | "jiopos_hamleys"
3387
+ * | "westelm"
3388
+ * | "rbl_sap_furniture"
3389
+ * | "vinculum_v2"
3390
+ * | "wizapp"} order
3391
+ */
3221
3392
  /**
3222
3393
  * @typedef {| "about-us"
3223
3394
  * | "addresses"
@@ -3265,12 +3436,14 @@ export = CatalogPlatformModel;
3265
3436
  * | "register"
3266
3437
  * | "shipping-policy"
3267
3438
  * | "return-policy"
3268
- * | "order-status"} PageType
3439
+ * | "order-status"
3440
+ * | "locate-us"} PageType
3269
3441
  */
3442
+ /** @typedef {"INR" | "USD" | "EUR"} CurrencyCodeEnum */
3270
3443
  declare class CatalogPlatformModel {
3271
3444
  }
3272
3445
  declare namespace CatalogPlatformModel {
3273
- export { Action, AllSizes, AllowSingleRequest, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponse, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponse, ApplicationItemMOQ, ApplicationItemMeta, ApplicationItemSeoSitemap, ApplicationItemSEO, ApplicationProductListingResponse, ApplicationStoreJson, AppReturnConfigResponse, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponse, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSerializer, AttributeSchemaRange, AutoCompleteMedia, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponse, Brand, BrandItem, BrandListingResponse, BrandMeta, BrandMeta1, BulkAssetResponse, BulkHsnResponse, BulkHsnUpsert, BulkInventoryGet, FailedRecord, BulkInventoryGetItems, BulkProductJob, BulkJob, BulkProductRequest, BulkResponse, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponse, CategoriesResponse, Category, CategoryItems, CategoryListingResponse, CategoryMapping, CategoryMappingValues, CategoryResponse, Child, CollectionBadge, CollectionBanner, CollectionCreateResponse, CollectionDetailResponse, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, CompanyMeta1, CompanyOptIn, ConfigErrorResponse, ConfigSuccessResponse, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponse, CreateCollection, CreateSearchConfigurationRequest, CreateSearchConfigurationResponse, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponse, CustomOrder, DateMeta, DefaultKeyRequest, DeleteAppCategoryReturnConfig, DeleteResponse, DeleteSearchConfigurationResponse, Department, DepartmentCategoryTree, DepartmentErrorResponse, DepartmentIdentifier, DepartmentResponse, DepartmentsResponse, DimensionResponse, DimensionResponse1, Document, EntityConfiguration, ErrorResponse, FilerList, RawProduct, RawProductListingResponse, GTIN, AttributeDetail, GetAddressSerializer, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponse, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponse, GetCollectionListingResponse, GetCollectionQueryOptionResponse, GetCompanySerializer, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponse, GetConfigMetadataValues, GetConfigResponse, GetDepartment, GetInventories, GetInventoriesResponse, GetLocationSerializer, GetOptInPlatform, GetProductBundleCreateResponse, GetProductBundleListingResponse, GetProductBundleResponse, GetProducts, GetCollectionDetailResponse, CommonResponseSchemaCollection, GetQueryFiltersKeysResponse, GetQueryFiltersResponse, GetCollectionItemsResponseSchemaV2, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponse, GetSearchWordsData, GetSearchWordsDetailResponse, GetSearchWordsResponse, GlobalValidation, Guide, HSNCodesResponse, HSNData, HSNDataInsertV2, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequest, InventoryConfig, InventoryCreateRequest, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponse, InventoryExportQuantityFilter, InventoryExportRequest, InventoryExportResponse, InventoryFailedReason, InventoryJobDetailResponse, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequest, InventoryRequestSchemaV2, InventoryResponse, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponse, InventorySet, InventoryStockResponse, InventoryUpdateResponse, InventoryValidationResponse, InvoiceCredSerializer, InvoiceDetailsSerializer, ItemQuery, Items, LimitedProductData, ListSizeGuide, LocationDayWiseSerializer, LocationIntegrationType, LocationListSerializer, LocationManagerSerializer, LocationTimingSerializer, Logo, MOQData, ManufacturerResponse, ManufacturerResponse1, Media, Media1, Media2, Meta, MetaDataListingFilterMetaResponse, MetaDataListingFilterResponse, MetaDataListingResponse, MetaDataListingSortMetaResponse, MetaDataListingSortResponse, MetaFields, NetQuantity, NetQuantityResponse, NextSchedule, OptInPostRequest, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponse, PTErrorResponse, Page, PageResponse, PageResponse1, PageResponseType, Price, Price1, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponse, Product, ProductAttributesResponse, ProductBrand, ProductBulkAssets, ProductBulkRequest, ProductBulkRequestList, ProductBundleItem, ProductBundleRequest, ProductBundleUpdateRequest, ProductConfigurationDownloads, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponse, ProductFilters, GetQueryFiltersValuesResponse, ProductFiltersKeysOnly, ProductFiltersKey, ProductFiltersValue, ProductListingDetail, ProductListingPrice, ProductListingResponse, ProductListingResponseV2, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigSerializer, ProductReturnConfigBaseSerializer, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponse, ProductSizeDeleteResponse, ProductSortOn, ProductTagsViewResponse, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequest, ProductTemplateExportResponse, ProductVariants, ProductVariantsResponse, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, ReturnConfig1, ReturnConfig2, ReturnConfigResponse, Sitemap, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, SeoDetail, SetSize, SingleCategoryResponse, SingleProductResponse, Size, SizeDistribution, SizeGuideResponse, StoreAssignResponse, StoreDetail, StoreMeta, SuccessResponse, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplateValidationData, TemplatesResponse, TemplatesValidationResponse, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdateSearchConfigurationRequest, UpdateSearchConfigurationResponse, CreateMarketplaceOptinResponse, UserCommon, UserDetail, UserDetail1, UserInfo, UserInfo1, UserSerializer, UserSerializer1, UserSerializer2, UserSerializer3, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponse, WeightResponse1, CreatedBy, Marketplaces, GetAllMarketplaces, UpdateMarketplaceOptinRequest, UpdateMarketplaceOptinResponse, ActionPage, PageType };
3446
+ export { Action, AllSizes, AllowSingleRequestSchema, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponseSchema, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponseSchema, ApplicationItemMOQ, ApplicationItemMeta, ApplicationItemSeoSitemap, ApplicationItemSEO, ApplicationProductsSchema, ApplicationProductListingResponseSchema, ApplicationStoreJson, AppReturnConfigResponseSchema, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponseSchema, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSchema, AttributeSchemaRange, AutoCompleteMedia, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponseSchema, Brand, BrandItem, ApplicationCategoryListingSchema, ApplicationCategoryListingItemSchema, ApplicationBrandListingSchema, ApplicationBrandListingItemSchema, BrandListingResponseSchema, BrandMeta, BrandMeta1, BulkAssetResponseSchema, BulkHsnResponseSchema, BulkHsnUpsert, BulkInventoryGet, FailedRecord, BulkInventoryGetItems, BulkProductJob, BulkJob, BulkProductRequestSchema, BulkResponseSchema, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponseSchema, CategoriesResponseSchema, Category, CategoryItems, CategoryListingResponseSchema, CategoryMapping, CategoryMappingValues, CategoryResponseSchema, Child, CollectionBadge, CollectionBanner, CollectionCreateResponseSchema, CollectionDetailResponseSchema, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, CompanyMeta1, CompanyOptIn, ConfigErrorResponseSchema, ConfigSuccessResponseSchema, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponseSchema, CreateCollection, CreateSearchConfigurationRequestSchema, CreateSearchConfigurationResponseSchema, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponseSchema, CustomOrder, DateMeta, DefaultKeyRequestSchema, DeleteAppCategoryReturnConfig, DeleteResponseSchema, DeleteSearchConfigurationResponseSchema, Department, DepartmentCategoryTree, DepartmentErrorResponseSchema, DepartmentIdentifier, DepartmentResponseSchema, DepartmentsResponseSchema, DimensionResponseSchema, DimensionResponse1, Document, EntityConfiguration, ErrorResponseSchema, FilerList, RawProduct, RawProductListingResponseSchema, GTIN, AttributeDetail, GetAddressSchema, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponseSchema, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponseSchema, GetCollectionListingResponseSchema, GetCollectionQueryOptionResponseSchema, GetCompanySchema, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponseSchema, GetConfigMetadataValues, GetConfigResponseSchema, GetDepartment, GetInventories, GetInventoriesResponseSchema, GetLocationSchema, GetOptInPlatform, GetProductBundleCreateResponseSchema, GetProductBundleListingResponseSchema, GetProductBundleResponseSchema, GetProducts, GetCollectionDetailResponseSchema, CommonResponseSchemaCollection, GetQueryFiltersKeysResponseSchema, GetQueryFiltersResponseSchema, GetCollectionItemsResponseSchemaV2, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponseSchema, GetSearchWordsData, GetSearchWordsDetailResponseSchema, GetSearchWordsResponseSchema, GlobalValidation, Guide, HSNCodesResponseSchema, HSNData, HSNDataInsertV2, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequestSchema, InventoryConfig, InventoryCreateRequestSchema, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponseSchema, InventoryExportQuantityFilter, InventoryExportRequestSchema, InventoryExportResponseSchema, InventoryFailedReason, InventoryJobDetailResponseSchema, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequestSchema, InventoryRequestSchemaV2, InventoryResponseSchema, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponseSchema, InventorySet, InventoryStockResponseSchema, InventoryUpdateResponseSchema, InventoryValidationResponseSchema, InvoiceCredSchema, InvoiceDetailsSchema, ItemQuery, Items, LimitedProductData, ListSizeGuide, LocationDayWiseSchema, LocationIntegrationType, LocationListSchema, LocationManagerSchema, LocationTimingSchema, Logo, MOQData, ManufacturerResponseSchema, ManufacturerResponse1, Media, Media1, Media2, Meta, MetaDataListingFilterMetaResponseSchema, MetaDataListingFilterResponseSchema, MetaDataListingResponseSchema, MetaDataListingSortMetaResponseSchema, MetaDataListingSortResponseSchema, MetaFields, NetQuantity, NetQuantityResponseSchema, NextSchedule, OptInPostRequestSchema, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponseSchema, PTErrorResponseSchema, Page, PageResponseSchema, PageResponseType, Price, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponseSchema, Product, ProductAttributesResponseSchema, ProductBrand, ProductBulkAssets, ProductBulkRequestSchema, ProductBulkRequestList, ProductBundleItem, ProductBundleRequestSchema, ProductBundleUpdateRequestSchema, ProductConfigurationDownloads, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponseSchema, ProductFilters, GetQueryFiltersValuesResponseSchema, ProductFiltersKeysOnly, ProductFiltersKey, ProductFiltersValue, ProductListingResponseSchema, ProductListingResponseV2, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigSchema, ProductReturnConfigBaseSchema, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponseSchema, ProductSizeDeleteResponseSchema, ProductSortOn, ProductTagsViewResponseSchema, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequestSchema, ProductTemplateExportResponseSchema, ProductVariants, ProductVariantsResponseSchema, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, ReturnConfig1, ReturnConfig2, ReturnConfigResponseSchema, Sitemap, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, SeoDetail, SetSize, SingleCategoryResponseSchema, SingleProductResponseSchema, Size, SizeDistribution, SizeGuideResponseSchema, StoreAssignResponseSchema, StoreDetail, StoreMeta, SuccessResponseSchema, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplateValidationData, TemplatesResponseSchema, TemplatesValidationResponseSchema, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdateSearchConfigurationRequestSchema, UpdateSearchConfigurationResponseSchema, CreateMarketplaceOptinResponseSchema, UserCommon, UserDetail, UserDetail1, UserInfo, UserInfo1, UserSchema, UserSerializer1, UserSerializer2, UserSerializer3, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponseSchema, WeightResponse1, CreatedBy, ModifiedBy, Marketplaces, GetAllMarketplaces, UpdateMarketplaceOptinRequestSchema, UpdateMarketplaceOptinResponseSchema, Identifier, Filters, ActionPage, ProductListingPrice, Price1, MultiCategoriesSchema, CustomMeta, order, PageType, CurrencyCodeEnum };
3274
3447
  }
3275
3448
  /** @returns {Action} */
3276
3449
  declare function Action(): Action;
@@ -3294,9 +3467,9 @@ type AllSizes = {
3294
3467
  item_width: number;
3295
3468
  size: string;
3296
3469
  };
3297
- /** @returns {AllowSingleRequest} */
3298
- declare function AllowSingleRequest(): AllowSingleRequest;
3299
- type AllowSingleRequest = {
3470
+ /** @returns {AllowSingleRequestSchema} */
3471
+ declare function AllowSingleRequestSchema(): AllowSingleRequestSchema;
3472
+ type AllowSingleRequestSchema = {
3300
3473
  allow_single: boolean;
3301
3474
  };
3302
3475
  /** @returns {AppCatalogConfiguration} */
@@ -3322,14 +3495,13 @@ type AppCategoryReturnConfig = {
3322
3495
  */
3323
3496
  category_id: number;
3324
3497
  /**
3325
- * - Return
3326
- * configuration details
3498
+ * - Return configuration details
3327
3499
  */
3328
- return_config: ProductReturnConfigBaseSerializer;
3500
+ return_config: ProductReturnConfigBaseSchema;
3329
3501
  };
3330
- /** @returns {AppCategoryReturnConfigResponse} */
3331
- declare function AppCategoryReturnConfigResponse(): AppCategoryReturnConfigResponse;
3332
- type AppCategoryReturnConfigResponse = {
3502
+ /** @returns {AppCategoryReturnConfigResponseSchema} */
3503
+ declare function AppCategoryReturnConfigResponseSchema(): AppCategoryReturnConfigResponseSchema;
3504
+ type AppCategoryReturnConfigResponseSchema = {
3333
3505
  /**
3334
3506
  * - Channel identifier
3335
3507
  */
@@ -3343,7 +3515,7 @@ type AppCategoryReturnConfigResponse = {
3343
3515
  * - Name of L3 category
3344
3516
  */
3345
3517
  name?: string;
3346
- return_config?: ProductReturnConfigBaseSerializer;
3518
+ return_config?: ProductReturnConfigBaseSchema;
3347
3519
  };
3348
3520
  /** @returns {AppConfiguration} */
3349
3521
  declare function AppConfiguration(): AppConfiguration;
@@ -3409,9 +3581,9 @@ declare function ApplicationDepartmentJson(): ApplicationDepartmentJson;
3409
3581
  type ApplicationDepartmentJson = {
3410
3582
  _custom_json: any;
3411
3583
  };
3412
- /** @returns {ApplicationDepartmentListingResponse} */
3413
- declare function ApplicationDepartmentListingResponse(): ApplicationDepartmentListingResponse;
3414
- type ApplicationDepartmentListingResponse = {
3584
+ /** @returns {ApplicationDepartmentListingResponseSchema} */
3585
+ declare function ApplicationDepartmentListingResponseSchema(): ApplicationDepartmentListingResponseSchema;
3586
+ type ApplicationDepartmentListingResponseSchema = {
3415
3587
  items?: ApplicationDepartment[];
3416
3588
  page: Page;
3417
3589
  };
@@ -3499,11 +3671,264 @@ type ApplicationItemSEO = {
3499
3671
  meta_tags?: ApplicationItemSeoMetaTags[];
3500
3672
  canonical_url?: string;
3501
3673
  };
3502
- /** @returns {ApplicationProductListingResponse} */
3503
- declare function ApplicationProductListingResponse(): ApplicationProductListingResponse;
3504
- type ApplicationProductListingResponse = {
3674
+ /** @returns {ApplicationProductsSchema} */
3675
+ declare function ApplicationProductsSchema(): ApplicationProductsSchema;
3676
+ type ApplicationProductsSchema = {
3677
+ /**
3678
+ * - Additional attributes of the product, such
3679
+ * as custom properties or features.
3680
+ */
3681
+ attributes?: any;
3682
+ brand?: ProductBrand;
3683
+ color?: string;
3684
+ /**
3685
+ * - A detailed description of the product.
3686
+ */
3687
+ description?: string;
3688
+ /**
3689
+ * - The discount applied to the product.
3690
+ */
3691
+ discount?: string;
3692
+ /**
3693
+ * - Indicates whether the product has
3694
+ * variants, such as different sizes or colors.
3695
+ */
3696
+ has_variant?: boolean;
3697
+ /**
3698
+ * - Key highlights of the product.
3699
+ */
3700
+ highlights?: string[];
3701
+ /**
3702
+ * - The nature of the product image, indicating
3703
+ * if it's the default or a standard image.
3704
+ */
3705
+ image_nature: string;
3706
+ /**
3707
+ * - A unique code assigned to the product item at
3708
+ * company and brand level.
3709
+ */
3710
+ item_code: string;
3711
+ /**
3712
+ * - The type of the product, defining its nature.
3713
+ */
3714
+ item_type: string;
3715
+ /**
3716
+ * - A list of media items associated with the
3717
+ * product, such as images or videos.
3718
+ */
3719
+ medias?: Media[];
3720
+ /**
3721
+ * - The name of the product.
3722
+ */
3723
+ name: string;
3724
+ price?: ProductListingPrice;
3725
+ /**
3726
+ * - The date and time when the product
3727
+ * becomes available online.
3728
+ */
3729
+ product_online_date?: string;
3730
+ /**
3731
+ * - Metadata related to any promotions
3732
+ * associated with the product.
3733
+ */
3734
+ promo_meta?: any;
3735
+ /**
3736
+ * - The average rating of the product, typically
3737
+ * based on customer reviews.
3738
+ */
3739
+ rating?: number;
3740
+ /**
3741
+ * - The total number of ratings the product
3742
+ * has received.
3743
+ */
3744
+ rating_count?: number;
3745
+ /**
3746
+ * - Indicates whether the product is available for sale.
3747
+ */
3748
+ sellable?: boolean;
3749
+ /**
3750
+ * - A brief description of the product.
3751
+ */
3752
+ short_description?: string;
3753
+ /**
3754
+ * - A list of similar products.
3755
+ */
3756
+ similars?: string[];
3757
+ /**
3758
+ * - A URL-friendly string representing the product.
3759
+ */
3760
+ slug: string;
3761
+ /**
3762
+ * - A teaser tag object providing short
3763
+ * promotional information about the product.
3764
+ */
3765
+ teaser_tag?: any;
3766
+ /**
3767
+ * - A list of tryout options or samples
3768
+ * available for the product.
3769
+ */
3770
+ tryouts?: string[];
3771
+ /**
3772
+ * - The type or category of the product.
3773
+ */
3774
+ type?: string;
3775
+ /**
3776
+ * - A unique identifier for the product.
3777
+ */
3778
+ uid: number;
3779
+ /**
3780
+ * - A numerical value indicating the popularity
3781
+ * of the product.
3782
+ */
3783
+ popularity?: number;
3784
+ /**
3785
+ * - The unique identifier for the brand associated
3786
+ * with the product.
3787
+ */
3788
+ brand_uid: number;
3789
+ /**
3790
+ * - The unique identifier for the category to
3791
+ * which the product belongs.
3792
+ */
3793
+ category_uid: number;
3794
+ /**
3795
+ * - The verification status of the
3796
+ * product, typically represented as an integer.
3797
+ */
3798
+ verification_status?: number;
3799
+ /**
3800
+ * - The identifier for the sales
3801
+ * channel through which the product is sold.
3802
+ */
3803
+ channel_identifier?: string;
3804
+ /**
3805
+ * - A URL-friendly string representing the
3806
+ * product's category.
3807
+ */
3808
+ category_slug?: string;
3809
+ /**
3810
+ * - A guide or chart providing size information
3811
+ * for the product.
3812
+ */
3813
+ size_guide?: string;
3814
+ /**
3815
+ * - A list of L3 category IDs of the product.
3816
+ */
3817
+ l3_categories: number[];
3818
+ /**
3819
+ * - A list of store IDs where the product is available.
3820
+ */
3821
+ store_ids?: number[];
3822
+ /**
3823
+ * - A list of company IDs associated with the product.
3824
+ */
3825
+ company_ids?: number[];
3826
+ /**
3827
+ * - A list of department IDs where the product
3828
+ * is categorized.
3829
+ */
3830
+ departments: number[];
3831
+ /**
3832
+ * - A list of tags or keywords associated with the product.
3833
+ */
3834
+ tags?: string[];
3835
+ /**
3836
+ * - A list of names of L3 categories
3837
+ * of the product.
3838
+ */
3839
+ l3_category_names?: string[];
3840
+ /**
3841
+ * - A list of available sizes for the product.
3842
+ */
3843
+ sizes?: string[];
3844
+ /**
3845
+ * - Tags that group the product with
3846
+ * other similar products.
3847
+ */
3848
+ product_group_tag?: string[];
3849
+ /**
3850
+ * - Indicates whether the product is available
3851
+ * in multiple sizes.
3852
+ */
3853
+ multi_size: boolean;
3854
+ /**
3855
+ * - Indicates whether the product can be considered
3856
+ * as a gift.
3857
+ */
3858
+ is_gift: boolean;
3859
+ /**
3860
+ * - Indicates whether the product is eligible for
3861
+ * cash on delivery (COD).
3862
+ */
3863
+ is_cod: boolean;
3864
+ /**
3865
+ * - Indicates whether the product depends on
3866
+ * another product.
3867
+ */
3868
+ is_dependent: boolean;
3869
+ /**
3870
+ * - Indicates whether the product is currently
3871
+ * available for purchase.
3872
+ */
3873
+ is_available: boolean;
3874
+ moq: ApplicationItemMOQ;
3875
+ seo: ApplicationItemSEO;
3876
+ /**
3877
+ * - An object containing details about the
3878
+ * product variants.
3879
+ */
3880
+ variants?: any;
3881
+ /**
3882
+ * - Media items specific to the product variants.
3883
+ */
3884
+ variant_media?: any;
3885
+ /**
3886
+ * - A group identifier for products that are
3887
+ * variants of one another.
3888
+ */
3889
+ variant_group?: any;
3890
+ multi_categories?: MultiCategoriesSchema[];
3891
+ /**
3892
+ * - Tag used for categorizing or templating purposes.
3893
+ */
3894
+ template_tag?: string;
3895
+ /**
3896
+ * - Net quantity details for the product.
3897
+ */
3898
+ net_quantity?: any;
3899
+ custom_order?: CustomOrder;
3900
+ /**
3901
+ * - Country where the product is
3902
+ * manufactured or sourced from.
3903
+ */
3904
+ country_of_origin: string;
3905
+ /**
3906
+ * - Custom JSON data associated with the product.
3907
+ */
3908
+ _custom_json?: any;
3909
+ /**
3910
+ * - Identifiers associated with the product.
3911
+ */
3912
+ identifiers?: string[];
3913
+ /**
3914
+ * - Unique identifier for the item.
3915
+ */
3916
+ item_id?: number;
3917
+ /**
3918
+ * - Custom meta associated with the product.
3919
+ */
3920
+ _custom_meta?: CustomMeta[];
3921
+ /**
3922
+ * - The discount applied to the
3923
+ * product in percentage.
3924
+ */
3925
+ discount_percentage?: number;
3926
+ };
3927
+ /** @returns {ApplicationProductListingResponseSchema} */
3928
+ declare function ApplicationProductListingResponseSchema(): ApplicationProductListingResponseSchema;
3929
+ type ApplicationProductListingResponseSchema = {
3505
3930
  filters?: ProductFilters[];
3506
- items?: ProductListingDetail[];
3931
+ items?: ApplicationProductsSchema[];
3507
3932
  operators?: any;
3508
3933
  page: Page;
3509
3934
  sort_on?: ProductSortOn[];
@@ -3513,9 +3938,9 @@ declare function ApplicationStoreJson(): ApplicationStoreJson;
3513
3938
  type ApplicationStoreJson = {
3514
3939
  _custom_json: any;
3515
3940
  };
3516
- /** @returns {AppReturnConfigResponse} */
3517
- declare function AppReturnConfigResponse(): AppReturnConfigResponse;
3518
- type AppReturnConfigResponse = {
3941
+ /** @returns {AppReturnConfigResponseSchema} */
3942
+ declare function AppReturnConfigResponseSchema(): AppReturnConfigResponseSchema;
3943
+ type AppReturnConfigResponseSchema = {
3519
3944
  /**
3520
3945
  * - Channel identifier
3521
3946
  */
@@ -3566,9 +3991,9 @@ type ArticleQuery = {
3566
3991
  item_id: number;
3567
3992
  size: string;
3568
3993
  };
3569
- /** @returns {ArticleStoreResponse} */
3570
- declare function ArticleStoreResponse(): ArticleStoreResponse;
3571
- type ArticleStoreResponse = {
3994
+ /** @returns {ArticleStoreResponseSchema} */
3995
+ declare function ArticleStoreResponseSchema(): ArticleStoreResponseSchema;
3996
+ type ArticleStoreResponseSchema = {
3572
3997
  name?: string;
3573
3998
  store_code?: string;
3574
3999
  store_type?: string;
@@ -3639,9 +4064,9 @@ type AttributeMasterMeta = {
3639
4064
  enriched?: boolean;
3640
4065
  mandatory_details: AttributeMasterMandatoryDetails;
3641
4066
  };
3642
- /** @returns {AttributeMasterSerializer} */
3643
- declare function AttributeMasterSerializer(): AttributeMasterSerializer;
3644
- type AttributeMasterSerializer = {
4067
+ /** @returns {AttributeMasterSchema} */
4068
+ declare function AttributeMasterSchema(): AttributeMasterSchema;
4069
+ type AttributeMasterSchema = {
3645
4070
  created_by?: any;
3646
4071
  created_on?: string;
3647
4072
  departments: string[];
@@ -3708,24 +4133,16 @@ type BannerImage = {
3708
4133
  /** @returns {BaseAppCategoryReturnConfig} */
3709
4134
  declare function BaseAppCategoryReturnConfig(): BaseAppCategoryReturnConfig;
3710
4135
  type BaseAppCategoryReturnConfig = {
3711
- /**
3712
- * - Channel identifier
3713
- */
3714
- app_id: string;
3715
- /**
3716
- * - Unique identifer of company
3717
- */
3718
- company_id: number;
3719
4136
  /**
3720
4137
  * - Category level return config details
3721
4138
  */
3722
4139
  data: AppCategoryReturnConfig[];
3723
4140
  };
3724
- /** @returns {BaseAppCategoryReturnConfigResponse} */
3725
- declare function BaseAppCategoryReturnConfigResponse(): BaseAppCategoryReturnConfigResponse;
3726
- type BaseAppCategoryReturnConfigResponse = {
3727
- data?: AppCategoryReturnConfigResponse[];
3728
- page?: PageResponse;
4141
+ /** @returns {BaseAppCategoryReturnConfigResponseSchema} */
4142
+ declare function BaseAppCategoryReturnConfigResponseSchema(): BaseAppCategoryReturnConfigResponseSchema;
4143
+ type BaseAppCategoryReturnConfigResponseSchema = {
4144
+ data?: AppCategoryReturnConfigResponseSchema[];
4145
+ page?: PageResponseSchema;
3729
4146
  };
3730
4147
  /** @returns {Brand} */
3731
4148
  declare function Brand(): Brand;
@@ -3746,9 +4163,140 @@ type BrandItem = {
3746
4163
  slug?: string;
3747
4164
  uid?: number;
3748
4165
  };
3749
- /** @returns {BrandListingResponse} */
3750
- declare function BrandListingResponse(): BrandListingResponse;
3751
- type BrandListingResponse = {
4166
+ /** @returns {ApplicationCategoryListingSchema} */
4167
+ declare function ApplicationCategoryListingSchema(): ApplicationCategoryListingSchema;
4168
+ type ApplicationCategoryListingSchema = {
4169
+ items?: ApplicationCategoryListingItemSchema[];
4170
+ page?: Page;
4171
+ };
4172
+ /** @returns {ApplicationCategoryListingItemSchema} */
4173
+ declare function ApplicationCategoryListingItemSchema(): ApplicationCategoryListingItemSchema;
4174
+ type ApplicationCategoryListingItemSchema = {
4175
+ /**
4176
+ * - Name of the category.
4177
+ */
4178
+ name?: string;
4179
+ /**
4180
+ * - URL of the category's logo.
4181
+ */
4182
+ logo?: string;
4183
+ /**
4184
+ * - List of department IDs.
4185
+ */
4186
+ departments?: number[];
4187
+ /**
4188
+ * - Attribute name of the category.
4189
+ */
4190
+ attr_name?: string;
4191
+ /**
4192
+ * - URL of the landscape banner.
4193
+ */
4194
+ landscape_url?: string;
4195
+ /**
4196
+ * - URL of the portrait banner.
4197
+ */
4198
+ portrait_url?: string;
4199
+ /**
4200
+ * - Custom JSON object for additional data.
4201
+ */
4202
+ _custom_json?: any;
4203
+ /**
4204
+ * - Priority of the category.
4205
+ */
4206
+ priority?: number;
4207
+ created_by?: CreatedBy;
4208
+ /**
4209
+ * - Timestamp when the category was created.
4210
+ */
4211
+ created_on?: string;
4212
+ modified_by?: ModifiedBy;
4213
+ /**
4214
+ * - Timestamp when the category was last modified.
4215
+ */
4216
+ modified_on?: string;
4217
+ /**
4218
+ * - Application ID associated with the category.
4219
+ */
4220
+ app_id?: string;
4221
+ /**
4222
+ * - Indicates whether the category is active.
4223
+ */
4224
+ is_active?: boolean;
4225
+ /**
4226
+ * - Unique identifier of the category.
4227
+ */
4228
+ uid?: number;
4229
+ };
4230
+ /** @returns {ApplicationBrandListingSchema} */
4231
+ declare function ApplicationBrandListingSchema(): ApplicationBrandListingSchema;
4232
+ type ApplicationBrandListingSchema = {
4233
+ items?: ApplicationBrandListingItemSchema[];
4234
+ page?: Page;
4235
+ };
4236
+ /** @returns {ApplicationBrandListingItemSchema} */
4237
+ declare function ApplicationBrandListingItemSchema(): ApplicationBrandListingItemSchema;
4238
+ type ApplicationBrandListingItemSchema = {
4239
+ /**
4240
+ * - Custom JSON object for additional data.
4241
+ */
4242
+ _custom_json?: any;
4243
+ /**
4244
+ * - Custom object for locale-specific
4245
+ * language data.
4246
+ */
4247
+ _locale_language?: any;
4248
+ /**
4249
+ * - URL of the brand's portrait banner.
4250
+ */
4251
+ brand_banner_portrait_url?: string;
4252
+ /**
4253
+ * - URL of the brand's landscape banner.
4254
+ */
4255
+ brand_banner_url?: string;
4256
+ /**
4257
+ * - URL of the brand's logo.
4258
+ */
4259
+ brand_logo_url?: string;
4260
+ /**
4261
+ * - Description of the brand.
4262
+ */
4263
+ description?: string;
4264
+ /**
4265
+ * - Name of the brand.
4266
+ */
4267
+ name?: string;
4268
+ /**
4269
+ * - Unique slug key for the brand.
4270
+ */
4271
+ slug_key?: string;
4272
+ /**
4273
+ * - Priority of the brand in listing.
4274
+ */
4275
+ priority?: number;
4276
+ /**
4277
+ * - Unique identifier of the brand.
4278
+ */
4279
+ uid?: number;
4280
+ /**
4281
+ * - Timestamp when the category was created.
4282
+ */
4283
+ created_on?: string;
4284
+ /**
4285
+ * - Timestamp when the category was created.
4286
+ */
4287
+ last_updated?: string;
4288
+ /**
4289
+ * - Indicates if the brand is active.
4290
+ */
4291
+ is_active?: boolean;
4292
+ /**
4293
+ * - List of department IDs associated with the brand.
4294
+ */
4295
+ departments?: number[];
4296
+ };
4297
+ /** @returns {BrandListingResponseSchema} */
4298
+ declare function BrandListingResponseSchema(): BrandListingResponseSchema;
4299
+ type BrandListingResponseSchema = {
3752
4300
  items?: BrandItem[];
3753
4301
  page: Page;
3754
4302
  };
@@ -3764,15 +4312,15 @@ type BrandMeta1 = {
3764
4312
  id?: number;
3765
4313
  name?: string;
3766
4314
  };
3767
- /** @returns {BulkAssetResponse} */
3768
- declare function BulkAssetResponse(): BulkAssetResponse;
3769
- type BulkAssetResponse = {
4315
+ /** @returns {BulkAssetResponseSchema} */
4316
+ declare function BulkAssetResponseSchema(): BulkAssetResponseSchema;
4317
+ type BulkAssetResponseSchema = {
3770
4318
  items?: Items[];
3771
4319
  page?: Page;
3772
4320
  };
3773
- /** @returns {BulkHsnResponse} */
3774
- declare function BulkHsnResponse(): BulkHsnResponse;
3775
- type BulkHsnResponse = {
4321
+ /** @returns {BulkHsnResponseSchema} */
4322
+ declare function BulkHsnResponseSchema(): BulkHsnResponseSchema;
4323
+ type BulkHsnResponseSchema = {
3776
4324
  /**
3777
4325
  * - Flag indicating the success status of the
3778
4326
  * bulk HSN operation.
@@ -3860,17 +4408,17 @@ type BulkJob = {
3860
4408
  total?: number;
3861
4409
  tracking_url?: string;
3862
4410
  };
3863
- /** @returns {BulkProductRequest} */
3864
- declare function BulkProductRequest(): BulkProductRequest;
3865
- type BulkProductRequest = {
4411
+ /** @returns {BulkProductRequestSchema} */
4412
+ declare function BulkProductRequestSchema(): BulkProductRequestSchema;
4413
+ type BulkProductRequestSchema = {
3866
4414
  batch_id: string;
3867
4415
  company_id: number;
3868
4416
  data: any[];
3869
4417
  template_tag: string;
3870
4418
  };
3871
- /** @returns {BulkResponse} */
3872
- declare function BulkResponse(): BulkResponse;
3873
- type BulkResponse = {
4419
+ /** @returns {BulkResponseSchema} */
4420
+ declare function BulkResponseSchema(): BulkResponseSchema;
4421
+ type BulkResponseSchema = {
3874
4422
  batch_id: string;
3875
4423
  /**
3876
4424
  * - The user who created the item.
@@ -3910,15 +4458,15 @@ type CatalogInsightItem = {
3910
4458
  out_of_stock_count?: number;
3911
4459
  sellable_count?: number;
3912
4460
  };
3913
- /** @returns {CatalogInsightResponse} */
3914
- declare function CatalogInsightResponse(): CatalogInsightResponse;
3915
- type CatalogInsightResponse = {
4461
+ /** @returns {CatalogInsightResponseSchema} */
4462
+ declare function CatalogInsightResponseSchema(): CatalogInsightResponseSchema;
4463
+ type CatalogInsightResponseSchema = {
3916
4464
  brand_distribution?: CatalogInsightBrand;
3917
4465
  item?: CatalogInsightItem;
3918
4466
  };
3919
- /** @returns {CategoriesResponse} */
3920
- declare function CategoriesResponse(): CategoriesResponse;
3921
- type CategoriesResponse = {
4467
+ /** @returns {CategoriesResponseSchema} */
4468
+ declare function CategoriesResponseSchema(): CategoriesResponseSchema;
4469
+ type CategoriesResponseSchema = {
3922
4470
  name?: string;
3923
4471
  slug?: string;
3924
4472
  slug_key?: string;
@@ -4013,9 +4561,9 @@ type CategoryItems = {
4013
4561
  slug?: string;
4014
4562
  uid?: number;
4015
4563
  };
4016
- /** @returns {CategoryListingResponse} */
4017
- declare function CategoryListingResponse(): CategoryListingResponse;
4018
- type CategoryListingResponse = {
4564
+ /** @returns {CategoryListingResponseSchema} */
4565
+ declare function CategoryListingResponseSchema(): CategoryListingResponseSchema;
4566
+ type CategoryListingResponseSchema = {
4019
4567
  data?: DepartmentCategoryTree[];
4020
4568
  departments?: DepartmentIdentifier[];
4021
4569
  };
@@ -4051,9 +4599,9 @@ type CategoryMappingValues = {
4051
4599
  */
4052
4600
  name: string;
4053
4601
  };
4054
- /** @returns {CategoryResponse} */
4055
- declare function CategoryResponse(): CategoryResponse;
4056
- type CategoryResponse = {
4602
+ /** @returns {CategoryResponseSchema} */
4603
+ declare function CategoryResponseSchema(): CategoryResponseSchema;
4604
+ type CategoryResponseSchema = {
4057
4605
  items?: Category[];
4058
4606
  page?: Page;
4059
4607
  };
@@ -4080,9 +4628,9 @@ type CollectionBanner = {
4080
4628
  landscape: CollectionImage;
4081
4629
  portrait: CollectionImage;
4082
4630
  };
4083
- /** @returns {CollectionCreateResponse} */
4084
- declare function CollectionCreateResponse(): CollectionCreateResponse;
4085
- type CollectionCreateResponse = {
4631
+ /** @returns {CollectionCreateResponseSchema} */
4632
+ declare function CollectionCreateResponseSchema(): CollectionCreateResponseSchema;
4633
+ type CollectionCreateResponseSchema = {
4086
4634
  uid?: string;
4087
4635
  _schedule?: any;
4088
4636
  allow_facets?: boolean;
@@ -4104,9 +4652,9 @@ type CollectionCreateResponse = {
4104
4652
  type?: string;
4105
4653
  visible_facets_keys?: string[];
4106
4654
  };
4107
- /** @returns {CollectionDetailResponse} */
4108
- declare function CollectionDetailResponse(): CollectionDetailResponse;
4109
- type CollectionDetailResponse = {
4655
+ /** @returns {CollectionDetailResponseSchema} */
4656
+ declare function CollectionDetailResponseSchema(): CollectionDetailResponseSchema;
4657
+ type CollectionDetailResponseSchema = {
4110
4658
  _schedule?: any;
4111
4659
  allow_facets?: boolean;
4112
4660
  allow_sort?: boolean;
@@ -4228,14 +4776,14 @@ type CompanyOptIn = {
4228
4776
  platform: string;
4229
4777
  store_ids: number[];
4230
4778
  };
4231
- /** @returns {ConfigErrorResponse} */
4232
- declare function ConfigErrorResponse(): ConfigErrorResponse;
4233
- type ConfigErrorResponse = {
4779
+ /** @returns {ConfigErrorResponseSchema} */
4780
+ declare function ConfigErrorResponseSchema(): ConfigErrorResponseSchema;
4781
+ type ConfigErrorResponseSchema = {
4234
4782
  message: string;
4235
4783
  };
4236
- /** @returns {ConfigSuccessResponse} */
4237
- declare function ConfigSuccessResponse(): ConfigSuccessResponse;
4238
- type ConfigSuccessResponse = {
4784
+ /** @returns {ConfigSuccessResponseSchema} */
4785
+ declare function ConfigSuccessResponseSchema(): ConfigSuccessResponseSchema;
4786
+ type ConfigSuccessResponseSchema = {
4239
4787
  message: string;
4240
4788
  };
4241
4789
  /** @returns {ConfigurationBucketPoints} */
@@ -4342,9 +4890,9 @@ type CreateAutocompleteKeyword = {
4342
4890
  results?: AutocompleteResult[];
4343
4891
  words?: string[];
4344
4892
  };
4345
- /** @returns {CreateAutocompleteWordsResponse} */
4346
- declare function CreateAutocompleteWordsResponse(): CreateAutocompleteWordsResponse;
4347
- type CreateAutocompleteWordsResponse = {
4893
+ /** @returns {CreateAutocompleteWordsResponseSchema} */
4894
+ declare function CreateAutocompleteWordsResponseSchema(): CreateAutocompleteWordsResponseSchema;
4895
+ type CreateAutocompleteWordsResponseSchema = {
4348
4896
  _custom_json?: any;
4349
4897
  app_id?: string;
4350
4898
  results?: any[];
@@ -4379,9 +4927,9 @@ type CreateCollection = {
4379
4927
  type: string;
4380
4928
  visible_facets_keys?: string[];
4381
4929
  };
4382
- /** @returns {CreateSearchConfigurationRequest} */
4383
- declare function CreateSearchConfigurationRequest(): CreateSearchConfigurationRequest;
4384
- type CreateSearchConfigurationRequest = {
4930
+ /** @returns {CreateSearchConfigurationRequestSchema} */
4931
+ declare function CreateSearchConfigurationRequestSchema(): CreateSearchConfigurationRequestSchema;
4932
+ type CreateSearchConfigurationRequestSchema = {
4385
4933
  /**
4386
4934
  * - The application id where custom search
4387
4935
  * configuration is set
@@ -4392,10 +4940,9 @@ type CreateSearchConfigurationRequest = {
4392
4940
  */
4393
4941
  company_id: number;
4394
4942
  /**
4395
- * - The user who created the search
4396
- * configuration.
4943
+ * - The user who created the search configuration.
4397
4944
  */
4398
- created_by?: UserSerializer;
4945
+ created_by?: UserSchema;
4399
4946
  /**
4400
4947
  * - The date and time when the search
4401
4948
  * configuration was created.
@@ -4407,10 +4954,9 @@ type CreateSearchConfigurationRequest = {
4407
4954
  */
4408
4955
  is_proximity_enabled?: boolean;
4409
4956
  /**
4410
- * - The user who modified the search
4411
- * configuration.
4957
+ * - The user who modified the search configuration.
4412
4958
  */
4413
- modified_by?: UserSerializer;
4959
+ modified_by?: UserSchema;
4414
4960
  /**
4415
4961
  * - The date and time when the search
4416
4962
  * configuration was last modified.
@@ -4426,9 +4972,9 @@ type CreateSearchConfigurationRequest = {
4426
4972
  */
4427
4973
  searchable_attributes?: SearchableAttribute[];
4428
4974
  };
4429
- /** @returns {CreateSearchConfigurationResponse} */
4430
- declare function CreateSearchConfigurationResponse(): CreateSearchConfigurationResponse;
4431
- type CreateSearchConfigurationResponse = {
4975
+ /** @returns {CreateSearchConfigurationResponseSchema} */
4976
+ declare function CreateSearchConfigurationResponseSchema(): CreateSearchConfigurationResponseSchema;
4977
+ type CreateSearchConfigurationResponseSchema = {
4432
4978
  success?: boolean;
4433
4979
  };
4434
4980
  /** @returns {CreateSearchKeyword} */
@@ -4443,14 +4989,6 @@ type CreateSearchKeyword = {
4443
4989
  /** @returns {CreateUpdateAppReturnConfig} */
4444
4990
  declare function CreateUpdateAppReturnConfig(): CreateUpdateAppReturnConfig;
4445
4991
  type CreateUpdateAppReturnConfig = {
4446
- /**
4447
- * - Channel identifier
4448
- */
4449
- app_id: string;
4450
- /**
4451
- * - Unique identifer of company
4452
- */
4453
- company_id: number;
4454
4992
  /**
4455
4993
  * - Return configurtion Level
4456
4994
  * category|product|no-return
@@ -4463,18 +5001,30 @@ type CrossSellingData = {
4463
5001
  articles?: number;
4464
5002
  products?: number;
4465
5003
  };
4466
- /** @returns {CrossSellingResponse} */
4467
- declare function CrossSellingResponse(): CrossSellingResponse;
4468
- type CrossSellingResponse = {
5004
+ /** @returns {CrossSellingResponseSchema} */
5005
+ declare function CrossSellingResponseSchema(): CrossSellingResponseSchema;
5006
+ type CrossSellingResponseSchema = {
4469
5007
  brand_distribution?: CatalogInsightBrand;
4470
5008
  data?: CrossSellingData;
4471
5009
  };
4472
5010
  /** @returns {CustomOrder} */
4473
5011
  declare function CustomOrder(): CustomOrder;
4474
5012
  type CustomOrder = {
4475
- is_custom_order?: boolean;
4476
- manufacturing_time?: number;
5013
+ /**
5014
+ * - Unit of time for manufacturing
5015
+ * (e.g., days, weeks).
5016
+ */
4477
5017
  manufacturing_time_unit?: string;
5018
+ /**
5019
+ * - Indicates if the product is available
5020
+ * for custom orders.
5021
+ */
5022
+ is_custom_order: boolean;
5023
+ /**
5024
+ * - Time required for manufacturing in
5025
+ * the specified unit.
5026
+ */
5027
+ manufacturing_time?: number;
4478
5028
  };
4479
5029
  /** @returns {DateMeta} */
4480
5030
  declare function DateMeta(): DateMeta;
@@ -4484,35 +5034,27 @@ type DateMeta = {
4484
5034
  inventory_updated_on?: string;
4485
5035
  modified_on?: string;
4486
5036
  };
4487
- /** @returns {DefaultKeyRequest} */
4488
- declare function DefaultKeyRequest(): DefaultKeyRequest;
4489
- type DefaultKeyRequest = {
5037
+ /** @returns {DefaultKeyRequestSchema} */
5038
+ declare function DefaultKeyRequestSchema(): DefaultKeyRequestSchema;
5039
+ type DefaultKeyRequestSchema = {
4490
5040
  default_key: string;
4491
5041
  };
4492
5042
  /** @returns {DeleteAppCategoryReturnConfig} */
4493
5043
  declare function DeleteAppCategoryReturnConfig(): DeleteAppCategoryReturnConfig;
4494
5044
  type DeleteAppCategoryReturnConfig = {
4495
- /**
4496
- * - Channel identifier
4497
- */
4498
- app_id: string;
4499
5045
  /**
4500
5046
  * - List of category_ids to be deleted.
4501
5047
  */
4502
5048
  category_ids: number[];
4503
- /**
4504
- * - Unique identifer of company
4505
- */
4506
- company_id: number;
4507
5049
  };
4508
- /** @returns {DeleteResponse} */
4509
- declare function DeleteResponse(): DeleteResponse;
4510
- type DeleteResponse = {
5050
+ /** @returns {DeleteResponseSchema} */
5051
+ declare function DeleteResponseSchema(): DeleteResponseSchema;
5052
+ type DeleteResponseSchema = {
4511
5053
  message?: string;
4512
5054
  };
4513
- /** @returns {DeleteSearchConfigurationResponse} */
4514
- declare function DeleteSearchConfigurationResponse(): DeleteSearchConfigurationResponse;
4515
- type DeleteSearchConfigurationResponse = {
5055
+ /** @returns {DeleteSearchConfigurationResponseSchema} */
5056
+ declare function DeleteSearchConfigurationResponseSchema(): DeleteSearchConfigurationResponseSchema;
5057
+ type DeleteSearchConfigurationResponseSchema = {
4516
5058
  success?: boolean;
4517
5059
  };
4518
5060
  /** @returns {Department} */
@@ -4530,9 +5072,9 @@ type DepartmentCategoryTree = {
4530
5072
  department?: string;
4531
5073
  items?: CategoryItems[];
4532
5074
  };
4533
- /** @returns {DepartmentErrorResponse} */
4534
- declare function DepartmentErrorResponse(): DepartmentErrorResponse;
4535
- type DepartmentErrorResponse = {
5075
+ /** @returns {DepartmentErrorResponseSchema} */
5076
+ declare function DepartmentErrorResponseSchema(): DepartmentErrorResponseSchema;
5077
+ type DepartmentErrorResponseSchema = {
4536
5078
  code?: string;
4537
5079
  errors?: any;
4538
5080
  message?: string;
@@ -4545,20 +5087,20 @@ type DepartmentIdentifier = {
4545
5087
  slug?: string;
4546
5088
  uid?: number;
4547
5089
  };
4548
- /** @returns {DepartmentResponse} */
4549
- declare function DepartmentResponse(): DepartmentResponse;
4550
- type DepartmentResponse = {
5090
+ /** @returns {DepartmentResponseSchema} */
5091
+ declare function DepartmentResponseSchema(): DepartmentResponseSchema;
5092
+ type DepartmentResponseSchema = {
4551
5093
  items?: Department[];
4552
5094
  };
4553
- /** @returns {DepartmentsResponse} */
4554
- declare function DepartmentsResponse(): DepartmentsResponse;
4555
- type DepartmentsResponse = {
5095
+ /** @returns {DepartmentsResponseSchema} */
5096
+ declare function DepartmentsResponseSchema(): DepartmentsResponseSchema;
5097
+ type DepartmentsResponseSchema = {
4556
5098
  items?: GetDepartment[];
4557
5099
  page?: Page;
4558
5100
  };
4559
- /** @returns {DimensionResponse} */
4560
- declare function DimensionResponse(): DimensionResponse;
4561
- type DimensionResponse = {
5101
+ /** @returns {DimensionResponseSchema} */
5102
+ declare function DimensionResponseSchema(): DimensionResponseSchema;
5103
+ type DimensionResponseSchema = {
4562
5104
  /**
4563
5105
  * - The height dimension.
4564
5106
  */
@@ -4607,9 +5149,9 @@ type EntityConfiguration = {
4607
5149
  listing?: GetCatalogConfigurationDetailsSchemaListing;
4608
5150
  product?: GetCatalogConfigurationDetailsProduct;
4609
5151
  };
4610
- /** @returns {ErrorResponse} */
4611
- declare function ErrorResponse(): ErrorResponse;
4612
- type ErrorResponse = {
5152
+ /** @returns {ErrorResponseSchema} */
5153
+ declare function ErrorResponseSchema(): ErrorResponseSchema;
5154
+ type ErrorResponseSchema = {
4613
5155
  code?: string;
4614
5156
  error?: string;
4615
5157
  message?: string;
@@ -4664,20 +5206,20 @@ type RawProduct = {
4664
5206
  moq?: any;
4665
5207
  multi_size?: boolean;
4666
5208
  name?: string;
4667
- net_quantity?: NetQuantityResponse;
5209
+ net_quantity?: NetQuantityResponseSchema;
4668
5210
  no_of_boxes?: number;
4669
5211
  pending?: string;
4670
5212
  primary_color?: string;
4671
5213
  product_group_tag?: string[];
4672
5214
  product_publish?: ProductPublished;
4673
- return_config?: ReturnConfigResponse;
5215
+ return_config?: ReturnConfigResponseSchema;
4674
5216
  short_description?: string;
4675
5217
  size_guide?: string;
4676
5218
  sizes?: any[];
4677
5219
  slug?: string;
4678
5220
  stage?: string;
4679
5221
  tags?: string[];
4680
- tax_identifier?: any;
5222
+ tax_identifier?: TaxIdentifier;
4681
5223
  teaser_tag?: any;
4682
5224
  template_tag?: string;
4683
5225
  trader?: Trader[];
@@ -4689,9 +5231,9 @@ type RawProduct = {
4689
5231
  verified_on?: string;
4690
5232
  store_id_list?: string[];
4691
5233
  };
4692
- /** @returns {RawProductListingResponse} */
4693
- declare function RawProductListingResponse(): RawProductListingResponse;
4694
- type RawProductListingResponse = {
5234
+ /** @returns {RawProductListingResponseSchema} */
5235
+ declare function RawProductListingResponseSchema(): RawProductListingResponseSchema;
5236
+ type RawProductListingResponseSchema = {
4695
5237
  items?: RawProduct[];
4696
5238
  page?: Page;
4697
5239
  };
@@ -4718,9 +5260,9 @@ type AttributeDetail = {
4718
5260
  schema?: AttributeMaster;
4719
5261
  slug?: string;
4720
5262
  };
4721
- /** @returns {GetAddressSerializer} */
4722
- declare function GetAddressSerializer(): GetAddressSerializer;
4723
- type GetAddressSerializer = {
5263
+ /** @returns {GetAddressSchema} */
5264
+ declare function GetAddressSchema(): GetAddressSchema;
5265
+ type GetAddressSchema = {
4724
5266
  address1?: string;
4725
5267
  address2?: string;
4726
5268
  address_type?: string;
@@ -4759,9 +5301,9 @@ type GetAutocompleteWordsData = {
4759
5301
  uid?: string;
4760
5302
  words?: string[];
4761
5303
  };
4762
- /** @returns {GetAutocompleteWordsResponse} */
4763
- declare function GetAutocompleteWordsResponse(): GetAutocompleteWordsResponse;
4764
- type GetAutocompleteWordsResponse = {
5304
+ /** @returns {GetAutocompleteWordsResponseSchema} */
5305
+ declare function GetAutocompleteWordsResponseSchema(): GetAutocompleteWordsResponseSchema;
5306
+ type GetAutocompleteWordsResponseSchema = {
4765
5307
  items?: GetAutocompleteWordsData[];
4766
5308
  page?: Page;
4767
5309
  };
@@ -4782,7 +5324,7 @@ type GetCatalogConfigurationDetailsSchemaListing = {
4782
5324
  /** @returns {GetCatalogConfigurationMetaData} */
4783
5325
  declare function GetCatalogConfigurationMetaData(): GetCatalogConfigurationMetaData;
4784
5326
  type GetCatalogConfigurationMetaData = {
4785
- listing?: MetaDataListingResponse;
5327
+ listing?: MetaDataListingResponseSchema;
4786
5328
  product?: GetCatalogConfigurationDetailsProduct;
4787
5329
  };
4788
5330
  /** @returns {GetCollectionDetailNest} */
@@ -4809,32 +5351,32 @@ type GetCollectionDetailNest = {
4809
5351
  uid?: string;
4810
5352
  visible_facets_keys?: string[];
4811
5353
  };
4812
- /** @returns {GetCollectionItemsResponse} */
4813
- declare function GetCollectionItemsResponse(): GetCollectionItemsResponse;
4814
- type GetCollectionItemsResponse = {
5354
+ /** @returns {GetCollectionItemsResponseSchema} */
5355
+ declare function GetCollectionItemsResponseSchema(): GetCollectionItemsResponseSchema;
5356
+ type GetCollectionItemsResponseSchema = {
4815
5357
  filters?: ProductFilters[];
4816
- items?: ProductListingDetail[];
5358
+ items?: ApplicationProductsSchema[];
4817
5359
  page?: Page;
4818
5360
  sort_on?: ProductSortOn[];
4819
5361
  };
4820
- /** @returns {GetCollectionListingResponse} */
4821
- declare function GetCollectionListingResponse(): GetCollectionListingResponse;
4822
- type GetCollectionListingResponse = {
5362
+ /** @returns {GetCollectionListingResponseSchema} */
5363
+ declare function GetCollectionListingResponseSchema(): GetCollectionListingResponseSchema;
5364
+ type GetCollectionListingResponseSchema = {
4823
5365
  filters?: CollectionListingFilter;
4824
5366
  items?: GetCollectionDetailNest[];
4825
5367
  page?: Page;
4826
5368
  };
4827
- /** @returns {GetCollectionQueryOptionResponse} */
4828
- declare function GetCollectionQueryOptionResponse(): GetCollectionQueryOptionResponse;
4829
- type GetCollectionQueryOptionResponse = {
5369
+ /** @returns {GetCollectionQueryOptionResponseSchema} */
5370
+ declare function GetCollectionQueryOptionResponseSchema(): GetCollectionQueryOptionResponseSchema;
5371
+ type GetCollectionQueryOptionResponseSchema = {
4830
5372
  filters?: ProductFilters[];
4831
5373
  operators: any;
4832
5374
  sort_on?: ProductSortOn[];
4833
5375
  };
4834
- /** @returns {GetCompanySerializer} */
4835
- declare function GetCompanySerializer(): GetCompanySerializer;
4836
- type GetCompanySerializer = {
4837
- addresses?: GetAddressSerializer[];
5376
+ /** @returns {GetCompanySchema} */
5377
+ declare function GetCompanySchema(): GetCompanySchema;
5378
+ type GetCompanySchema = {
5379
+ addresses?: GetAddressSchema[];
4838
5380
  business_type?: string;
4839
5381
  company_type?: string;
4840
5382
  created_by?: UserSerializer2;
@@ -4874,9 +5416,9 @@ type SortTypeItem = {
4874
5416
  key?: string;
4875
5417
  display?: string;
4876
5418
  };
4877
- /** @returns {GetConfigMetadataResponse} */
4878
- declare function GetConfigMetadataResponse(): GetConfigMetadataResponse;
4879
- type GetConfigMetadataResponse = {
5419
+ /** @returns {GetConfigMetadataResponseSchema} */
5420
+ declare function GetConfigMetadataResponseSchema(): GetConfigMetadataResponseSchema;
5421
+ type GetConfigMetadataResponseSchema = {
4880
5422
  condition?: ConditionItem[];
4881
5423
  data: DataItem[];
4882
5424
  page?: Page;
@@ -4888,9 +5430,9 @@ type GetConfigMetadataValues = {
4888
5430
  type?: ValueTypeItem[];
4889
5431
  sort?: SortTypeItem[];
4890
5432
  };
4891
- /** @returns {GetConfigResponse} */
4892
- declare function GetConfigResponse(): GetConfigResponse;
4893
- type GetConfigResponse = {
5433
+ /** @returns {GetConfigResponseSchema} */
5434
+ declare function GetConfigResponseSchema(): GetConfigResponseSchema;
5435
+ type GetConfigResponseSchema = {
4894
5436
  data: any[];
4895
5437
  page: PageResponseType;
4896
5438
  };
@@ -4924,7 +5466,7 @@ type GetInventories = {
4924
5466
  dimension?: DimensionResponse1;
4925
5467
  expiration_date?: string;
4926
5468
  id?: string;
4927
- identifier?: any;
5469
+ identifier?: Identifier;
4928
5470
  inventory_updated_on?: string;
4929
5471
  is_set?: boolean;
4930
5472
  item_id?: number;
@@ -4937,9 +5479,9 @@ type GetInventories = {
4937
5479
  seller_identifier?: string;
4938
5480
  size?: string;
4939
5481
  stage?: string;
4940
- store?: ArticleStoreResponse;
5482
+ store?: ArticleStoreResponseSchema;
4941
5483
  tags?: string[];
4942
- tax_identifier?: any;
5484
+ tax_identifier?: TaxIdentifier;
4943
5485
  total_quantity?: number;
4944
5486
  trace_id?: string;
4945
5487
  track_inventory?: boolean;
@@ -4947,36 +5489,36 @@ type GetInventories = {
4947
5489
  uid?: string;
4948
5490
  weight?: WeightResponse1;
4949
5491
  };
4950
- /** @returns {GetInventoriesResponse} */
4951
- declare function GetInventoriesResponse(): GetInventoriesResponse;
4952
- type GetInventoriesResponse = {
5492
+ /** @returns {GetInventoriesResponseSchema} */
5493
+ declare function GetInventoriesResponseSchema(): GetInventoriesResponseSchema;
5494
+ type GetInventoriesResponseSchema = {
4953
5495
  items?: GetInventories[];
4954
5496
  page?: Page;
4955
5497
  };
4956
- /** @returns {GetLocationSerializer} */
4957
- declare function GetLocationSerializer(): GetLocationSerializer;
4958
- type GetLocationSerializer = {
5498
+ /** @returns {GetLocationSchema} */
5499
+ declare function GetLocationSchema(): GetLocationSchema;
5500
+ type GetLocationSchema = {
4959
5501
  _custom_json?: any;
4960
- address: GetAddressSerializer;
5502
+ address: GetAddressSchema;
4961
5503
  code: string;
4962
- company?: GetCompanySerializer;
5504
+ company?: GetCompanySchema;
4963
5505
  contact_numbers?: SellerPhoneNumber[];
4964
5506
  created_by?: UserSerializer3;
4965
5507
  created_on?: string;
4966
5508
  display_name: string;
4967
5509
  documents?: Document[];
4968
- gst_credentials?: InvoiceDetailsSerializer;
5510
+ gst_credentials?: InvoiceDetailsSchema;
4969
5511
  integration_type?: LocationIntegrationType;
4970
- manager?: LocationManagerSerializer;
5512
+ manager?: LocationManagerSchema;
4971
5513
  modified_by?: UserSerializer3;
4972
5514
  modified_on?: string;
4973
5515
  name: string;
4974
5516
  notification_emails?: string[];
4975
5517
  phone_number: string;
4976
- product_return_config?: ProductReturnConfigSerializer;
5518
+ product_return_config?: ProductReturnConfigSchema;
4977
5519
  stage?: string;
4978
5520
  store_type?: string;
4979
- timing?: LocationDayWiseSerializer[];
5521
+ timing?: LocationDayWiseSchema[];
4980
5522
  uid?: number;
4981
5523
  verified_by?: UserSerializer3;
4982
5524
  verified_on?: string;
@@ -4988,9 +5530,9 @@ type GetOptInPlatform = {
4988
5530
  items: CompanyOptIn[];
4989
5531
  page: Page;
4990
5532
  };
4991
- /** @returns {GetProductBundleCreateResponse} */
4992
- declare function GetProductBundleCreateResponse(): GetProductBundleCreateResponse;
4993
- type GetProductBundleCreateResponse = {
5533
+ /** @returns {GetProductBundleCreateResponseSchema} */
5534
+ declare function GetProductBundleCreateResponseSchema(): GetProductBundleCreateResponseSchema;
5535
+ type GetProductBundleCreateResponseSchema = {
4994
5536
  choice: string;
4995
5537
  company_id?: number;
4996
5538
  created_by?: any;
@@ -5007,15 +5549,15 @@ type GetProductBundleCreateResponse = {
5007
5549
  same_store_assignment?: boolean;
5008
5550
  slug: string;
5009
5551
  };
5010
- /** @returns {GetProductBundleListingResponse} */
5011
- declare function GetProductBundleListingResponse(): GetProductBundleListingResponse;
5012
- type GetProductBundleListingResponse = {
5013
- items?: GetProductBundleCreateResponse[];
5552
+ /** @returns {GetProductBundleListingResponseSchema} */
5553
+ declare function GetProductBundleListingResponseSchema(): GetProductBundleListingResponseSchema;
5554
+ type GetProductBundleListingResponseSchema = {
5555
+ items?: GetProductBundleCreateResponseSchema[];
5014
5556
  page?: Page;
5015
5557
  };
5016
- /** @returns {GetProductBundleResponse} */
5017
- declare function GetProductBundleResponse(): GetProductBundleResponse;
5018
- type GetProductBundleResponse = {
5558
+ /** @returns {GetProductBundleResponseSchema} */
5559
+ declare function GetProductBundleResponseSchema(): GetProductBundleResponseSchema;
5560
+ type GetProductBundleResponseSchema = {
5019
5561
  choice?: string;
5020
5562
  company_id?: number;
5021
5563
  is_active?: boolean;
@@ -5040,9 +5582,9 @@ type GetProducts = {
5040
5582
  product_uid?: number;
5041
5583
  sizes?: Size[];
5042
5584
  };
5043
- /** @returns {GetCollectionDetailResponse} */
5044
- declare function GetCollectionDetailResponse(): GetCollectionDetailResponse;
5045
- type GetCollectionDetailResponse = {
5585
+ /** @returns {GetCollectionDetailResponseSchema} */
5586
+ declare function GetCollectionDetailResponseSchema(): GetCollectionDetailResponseSchema;
5587
+ type GetCollectionDetailResponseSchema = {
5046
5588
  _custom_json?: any;
5047
5589
  _locale_language?: any;
5048
5590
  _schedule?: CollectionSchedule;
@@ -5074,16 +5616,16 @@ declare function CommonResponseSchemaCollection(): CommonResponseSchemaCollectio
5074
5616
  type CommonResponseSchemaCollection = {
5075
5617
  message?: string;
5076
5618
  };
5077
- /** @returns {GetQueryFiltersKeysResponse} */
5078
- declare function GetQueryFiltersKeysResponse(): GetQueryFiltersKeysResponse;
5079
- type GetQueryFiltersKeysResponse = {
5619
+ /** @returns {GetQueryFiltersKeysResponseSchema} */
5620
+ declare function GetQueryFiltersKeysResponseSchema(): GetQueryFiltersKeysResponseSchema;
5621
+ type GetQueryFiltersKeysResponseSchema = {
5080
5622
  filters?: ProductFiltersKeysOnly[];
5081
5623
  operators: any;
5082
5624
  sort_on?: ProductSortOn[];
5083
5625
  };
5084
- /** @returns {GetQueryFiltersResponse} */
5085
- declare function GetQueryFiltersResponse(): GetQueryFiltersResponse;
5086
- type GetQueryFiltersResponse = {
5626
+ /** @returns {GetQueryFiltersResponseSchema} */
5627
+ declare function GetQueryFiltersResponseSchema(): GetQueryFiltersResponseSchema;
5628
+ type GetQueryFiltersResponseSchema = {
5087
5629
  filters?: ProductFilters[];
5088
5630
  operators: any;
5089
5631
  sort_on?: ProductSortOn[];
@@ -5156,9 +5698,9 @@ type ProductDetailV2 = {
5156
5698
  slug: string;
5157
5699
  uid?: number;
5158
5700
  };
5159
- /** @returns {GetSearchConfigurationResponse} */
5160
- declare function GetSearchConfigurationResponse(): GetSearchConfigurationResponse;
5161
- type GetSearchConfigurationResponse = {
5701
+ /** @returns {GetSearchConfigurationResponseSchema} */
5702
+ declare function GetSearchConfigurationResponseSchema(): GetSearchConfigurationResponseSchema;
5703
+ type GetSearchConfigurationResponseSchema = {
5162
5704
  /**
5163
5705
  * - The application id where custom search
5164
5706
  * configuration is set
@@ -5169,10 +5711,9 @@ type GetSearchConfigurationResponse = {
5169
5711
  */
5170
5712
  company_id: number;
5171
5713
  /**
5172
- * - The user who created the search
5173
- * configuration.
5714
+ * - The user who created the search configuration.
5174
5715
  */
5175
- created_by?: UserSerializer;
5716
+ created_by?: UserSchema;
5176
5717
  /**
5177
5718
  * - The date and time when the search
5178
5719
  * configuration was created.
@@ -5184,10 +5725,9 @@ type GetSearchConfigurationResponse = {
5184
5725
  */
5185
5726
  is_proximity_enabled?: boolean;
5186
5727
  /**
5187
- * - The user who modified the search
5188
- * configuration.
5728
+ * - The user who modified the search configuration.
5189
5729
  */
5190
- modified_by?: UserSerializer;
5730
+ modified_by?: UserSchema;
5191
5731
  /**
5192
5732
  * - The date and time when the search
5193
5733
  * configuration was last modified.
@@ -5213,15 +5753,15 @@ type GetSearchWordsData = {
5213
5753
  uid?: string;
5214
5754
  words?: string[];
5215
5755
  };
5216
- /** @returns {GetSearchWordsDetailResponse} */
5217
- declare function GetSearchWordsDetailResponse(): GetSearchWordsDetailResponse;
5218
- type GetSearchWordsDetailResponse = {
5756
+ /** @returns {GetSearchWordsDetailResponseSchema} */
5757
+ declare function GetSearchWordsDetailResponseSchema(): GetSearchWordsDetailResponseSchema;
5758
+ type GetSearchWordsDetailResponseSchema = {
5219
5759
  items?: GetSearchWordsData;
5220
5760
  page?: Page;
5221
5761
  };
5222
- /** @returns {GetSearchWordsResponse} */
5223
- declare function GetSearchWordsResponse(): GetSearchWordsResponse;
5224
- type GetSearchWordsResponse = {
5762
+ /** @returns {GetSearchWordsResponseSchema} */
5763
+ declare function GetSearchWordsResponseSchema(): GetSearchWordsResponseSchema;
5764
+ type GetSearchWordsResponseSchema = {
5225
5765
  items?: GetSearchWordsData[];
5226
5766
  page?: Page;
5227
5767
  };
@@ -5240,9 +5780,9 @@ declare function Guide(): Guide;
5240
5780
  type Guide = {
5241
5781
  meta?: Meta;
5242
5782
  };
5243
- /** @returns {HSNCodesResponse} */
5244
- declare function HSNCodesResponse(): HSNCodesResponse;
5245
- type HSNCodesResponse = {
5783
+ /** @returns {HSNCodesResponseSchema} */
5784
+ declare function HSNCodesResponseSchema(): HSNCodesResponseSchema;
5785
+ type HSNCodesResponseSchema = {
5246
5786
  data?: HSNData;
5247
5787
  message?: string;
5248
5788
  };
@@ -5331,7 +5871,7 @@ type HsnCode = {
5331
5871
  declare function HsnCodesListingResponseSchemaV2(): HsnCodesListingResponseSchemaV2;
5332
5872
  type HsnCodesListingResponseSchemaV2 = {
5333
5873
  items?: HSNDataInsertV2[];
5334
- page?: PageResponse;
5874
+ page?: PageResponseSchema;
5335
5875
  };
5336
5876
  /** @returns {HsnCodesObject} */
5337
5877
  declare function HsnCodesObject(): HsnCodesObject;
@@ -5392,7 +5932,7 @@ type HsnUpsert = {
5392
5932
  /**
5393
5933
  * - The HS2 code.
5394
5934
  */
5395
- hs2_code: string;
5935
+ hs2_code?: string;
5396
5936
  /**
5397
5937
  * - The HSN code.
5398
5938
  */
@@ -5488,9 +6028,9 @@ type InvSize = {
5488
6028
  size: string;
5489
6029
  store_code: string;
5490
6030
  };
5491
- /** @returns {InventoryBulkRequest} */
5492
- declare function InventoryBulkRequest(): InventoryBulkRequest;
5493
- type InventoryBulkRequest = {
6031
+ /** @returns {InventoryBulkRequestSchema} */
6032
+ declare function InventoryBulkRequestSchema(): InventoryBulkRequestSchema;
6033
+ type InventoryBulkRequestSchema = {
5494
6034
  batch_id: string;
5495
6035
  company_id: number;
5496
6036
  sizes: InventoryJobPayload[];
@@ -5502,9 +6042,9 @@ type InventoryConfig = {
5502
6042
  data?: FilerList[];
5503
6043
  multivalues?: boolean;
5504
6044
  };
5505
- /** @returns {InventoryCreateRequest} */
5506
- declare function InventoryCreateRequest(): InventoryCreateRequest;
5507
- type InventoryCreateRequest = {
6045
+ /** @returns {InventoryCreateRequestSchema} */
6046
+ declare function InventoryCreateRequestSchema(): InventoryCreateRequestSchema;
6047
+ type InventoryCreateRequestSchema = {
5508
6048
  /**
5509
6049
  * - The list of attributes that you want to extract
5510
6050
  * in the export job.
@@ -5598,14 +6138,14 @@ type InventoryExportJob = {
5598
6138
  */
5599
6139
  url?: string;
5600
6140
  };
5601
- /** @returns {InventoryExportJobListResponse} */
5602
- declare function InventoryExportJobListResponse(): InventoryExportJobListResponse;
5603
- type InventoryExportJobListResponse = {
6141
+ /** @returns {InventoryExportJobListResponseSchema} */
6142
+ declare function InventoryExportJobListResponseSchema(): InventoryExportJobListResponseSchema;
6143
+ type InventoryExportJobListResponseSchema = {
5604
6144
  /**
5605
- * - This is the list/history of
5606
- * all the jobs.
6145
+ * - This is the list/history
6146
+ * of all the jobs.
5607
6147
  */
5608
- items: InventoryJobDetailResponse;
6148
+ items: InventoryJobDetailResponseSchema;
5609
6149
  page?: Page;
5610
6150
  };
5611
6151
  /** @returns {InventoryExportQuantityFilter} */
@@ -5624,16 +6164,16 @@ type InventoryExportQuantityFilter = {
5624
6164
  */
5625
6165
  operators: string;
5626
6166
  };
5627
- /** @returns {InventoryExportRequest} */
5628
- declare function InventoryExportRequest(): InventoryExportRequest;
5629
- type InventoryExportRequest = {
6167
+ /** @returns {InventoryExportRequestSchema} */
6168
+ declare function InventoryExportRequestSchema(): InventoryExportRequestSchema;
6169
+ type InventoryExportRequestSchema = {
5630
6170
  brand?: number[];
5631
6171
  store?: number[];
5632
6172
  type?: string;
5633
6173
  };
5634
- /** @returns {InventoryExportResponse} */
5635
- declare function InventoryExportResponse(): InventoryExportResponse;
5636
- type InventoryExportResponse = {
6174
+ /** @returns {InventoryExportResponseSchema} */
6175
+ declare function InventoryExportResponseSchema(): InventoryExportResponseSchema;
6176
+ type InventoryExportResponseSchema = {
5637
6177
  /**
5638
6178
  * - The user that created the job.
5639
6179
  */
@@ -5642,10 +6182,7 @@ type InventoryExportResponse = {
5642
6182
  * - Creation datetime of the job
5643
6183
  */
5644
6184
  created_on?: string;
5645
- /**
5646
- * - The filters that needs to be exported.
5647
- */
5648
- filters?: any;
6185
+ filters?: Filters;
5649
6186
  /**
5650
6187
  * - Modification date of the job
5651
6188
  */
@@ -5683,9 +6220,9 @@ type InventoryFailedReason = {
5683
6220
  */
5684
6221
  message: string;
5685
6222
  };
5686
- /** @returns {InventoryJobDetailResponse} */
5687
- declare function InventoryJobDetailResponse(): InventoryJobDetailResponse;
5688
- type InventoryJobDetailResponse = {
6223
+ /** @returns {InventoryJobDetailResponseSchema} */
6224
+ declare function InventoryJobDetailResponseSchema(): InventoryJobDetailResponseSchema;
6225
+ type InventoryJobDetailResponseSchema = {
5689
6226
  /**
5690
6227
  * - This is the user detail of the user
5691
6228
  * who cancelled the job.
@@ -5880,9 +6417,9 @@ type InventoryPayload = {
5880
6417
  */
5881
6418
  trace_id?: string;
5882
6419
  };
5883
- /** @returns {InventoryRequest} */
5884
- declare function InventoryRequest(): InventoryRequest;
5885
- type InventoryRequest = {
6420
+ /** @returns {InventoryRequestSchema} */
6421
+ declare function InventoryRequestSchema(): InventoryRequestSchema;
6422
+ type InventoryRequestSchema = {
5886
6423
  company_id: number;
5887
6424
  item: ItemQuery;
5888
6425
  sizes: InvSize[];
@@ -5903,9 +6440,9 @@ type InventoryRequestSchemaV2 = {
5903
6440
  */
5904
6441
  payload?: InventoryPayload[];
5905
6442
  };
5906
- /** @returns {InventoryResponse} */
5907
- declare function InventoryResponse(): InventoryResponse;
5908
- type InventoryResponse = {
6443
+ /** @returns {InventoryResponseSchema} */
6444
+ declare function InventoryResponseSchema(): InventoryResponseSchema;
6445
+ type InventoryResponseSchema = {
5909
6446
  currency?: string;
5910
6447
  identifiers?: any;
5911
6448
  inventory_updated_on?: string;
@@ -5929,18 +6466,18 @@ type InventoryResponseItem = {
5929
6466
  /** @returns {InventoryResponsePaginated} */
5930
6467
  declare function InventoryResponsePaginated(): InventoryResponsePaginated;
5931
6468
  type InventoryResponsePaginated = {
5932
- items?: InventoryResponse[];
6469
+ items?: InventoryResponseSchema[];
5933
6470
  page?: Page;
5934
6471
  };
5935
6472
  /** @returns {InventorySellerIdentifierResponsePaginated} */
5936
6473
  declare function InventorySellerIdentifierResponsePaginated(): InventorySellerIdentifierResponsePaginated;
5937
6474
  type InventorySellerIdentifierResponsePaginated = {
5938
- items?: InventorySellerResponse[];
6475
+ items?: InventorySellerResponseSchema[];
5939
6476
  page?: Page;
5940
6477
  };
5941
- /** @returns {InventorySellerResponse} */
5942
- declare function InventorySellerResponse(): InventorySellerResponse;
5943
- type InventorySellerResponse = {
6478
+ /** @returns {InventorySellerResponseSchema} */
6479
+ declare function InventorySellerResponseSchema(): InventorySellerResponseSchema;
6480
+ type InventorySellerResponseSchema = {
5944
6481
  /**
5945
6482
  * - Custom JSON data for the article.
5946
6483
  */
@@ -5969,7 +6506,7 @@ type InventorySellerResponse = {
5969
6506
  /**
5970
6507
  * - The dimensions of the article.
5971
6508
  */
5972
- dimension: DimensionResponse;
6509
+ dimension: DimensionResponseSchema;
5973
6510
  /**
5974
6511
  * - The expiration date of the article.
5975
6512
  */
@@ -6006,7 +6543,7 @@ type InventorySellerResponse = {
6006
6543
  /**
6007
6544
  * - The manufacturer of the article.
6008
6545
  */
6009
- manufacturer: ManufacturerResponse;
6546
+ manufacturer: ManufacturerResponseSchema;
6010
6547
  /**
6011
6548
  * - Additional metadata for the article.
6012
6549
  */
@@ -6049,10 +6586,7 @@ type InventorySellerResponse = {
6049
6586
  * - The tags associated with the article.
6050
6587
  */
6051
6588
  tags?: string[];
6052
- /**
6053
- * - The tax identifier of the article.
6054
- */
6055
- tax_identifier?: any;
6589
+ tax_identifier?: TaxIdentifier;
6056
6590
  /**
6057
6591
  * - The total quantity of the article.
6058
6592
  */
@@ -6077,7 +6611,7 @@ type InventorySellerResponse = {
6077
6611
  /**
6078
6612
  * - The weight of the article.
6079
6613
  */
6080
- weight: WeightResponse;
6614
+ weight: WeightResponseSchema;
6081
6615
  };
6082
6616
  /** @returns {InventorySet} */
6083
6617
  declare function InventorySet(): InventorySet;
@@ -6086,39 +6620,39 @@ type InventorySet = {
6086
6620
  quantity?: number;
6087
6621
  size_distribution: SizeDistribution;
6088
6622
  };
6089
- /** @returns {InventoryStockResponse} */
6090
- declare function InventoryStockResponse(): InventoryStockResponse;
6091
- type InventoryStockResponse = {
6623
+ /** @returns {InventoryStockResponseSchema} */
6624
+ declare function InventoryStockResponseSchema(): InventoryStockResponseSchema;
6625
+ type InventoryStockResponseSchema = {
6092
6626
  items?: any[];
6093
6627
  page: InventoryPage;
6094
6628
  };
6095
- /** @returns {InventoryUpdateResponse} */
6096
- declare function InventoryUpdateResponse(): InventoryUpdateResponse;
6097
- type InventoryUpdateResponse = {
6629
+ /** @returns {InventoryUpdateResponseSchema} */
6630
+ declare function InventoryUpdateResponseSchema(): InventoryUpdateResponseSchema;
6631
+ type InventoryUpdateResponseSchema = {
6098
6632
  items?: InventoryResponseItem[];
6099
6633
  /**
6100
6634
  * - It is the success message of the inventory update.
6101
6635
  */
6102
6636
  message: string;
6103
6637
  };
6104
- /** @returns {InventoryValidationResponse} */
6105
- declare function InventoryValidationResponse(): InventoryValidationResponse;
6106
- type InventoryValidationResponse = {
6638
+ /** @returns {InventoryValidationResponseSchema} */
6639
+ declare function InventoryValidationResponseSchema(): InventoryValidationResponseSchema;
6640
+ type InventoryValidationResponseSchema = {
6107
6641
  data?: any;
6108
6642
  message?: string;
6109
6643
  };
6110
- /** @returns {InvoiceCredSerializer} */
6111
- declare function InvoiceCredSerializer(): InvoiceCredSerializer;
6112
- type InvoiceCredSerializer = {
6644
+ /** @returns {InvoiceCredSchema} */
6645
+ declare function InvoiceCredSchema(): InvoiceCredSchema;
6646
+ type InvoiceCredSchema = {
6113
6647
  enabled?: boolean;
6114
6648
  password?: string;
6115
6649
  username?: string;
6116
6650
  };
6117
- /** @returns {InvoiceDetailsSerializer} */
6118
- declare function InvoiceDetailsSerializer(): InvoiceDetailsSerializer;
6119
- type InvoiceDetailsSerializer = {
6120
- e_invoice?: InvoiceCredSerializer;
6121
- e_waybill?: InvoiceCredSerializer;
6651
+ /** @returns {InvoiceDetailsSchema} */
6652
+ declare function InvoiceDetailsSchema(): InvoiceDetailsSchema;
6653
+ type InvoiceDetailsSchema = {
6654
+ e_invoice?: InvoiceCredSchema;
6655
+ e_waybill?: InvoiceCredSchema;
6122
6656
  };
6123
6657
  /** @returns {ItemQuery} */
6124
6658
  declare function ItemQuery(): ItemQuery;
@@ -6170,36 +6704,35 @@ type ListSizeGuide = {
6170
6704
  items?: any[];
6171
6705
  page?: any;
6172
6706
  };
6173
- /** @returns {LocationDayWiseSerializer} */
6174
- declare function LocationDayWiseSerializer(): LocationDayWiseSerializer;
6175
- type LocationDayWiseSerializer = {
6176
- closing?: LocationTimingSerializer;
6707
+ /** @returns {LocationDayWiseSchema} */
6708
+ declare function LocationDayWiseSchema(): LocationDayWiseSchema;
6709
+ type LocationDayWiseSchema = {
6710
+ closing?: LocationTimingSchema;
6177
6711
  open: boolean;
6178
- opening?: LocationTimingSerializer;
6712
+ opening?: LocationTimingSchema;
6179
6713
  weekday: string;
6180
6714
  };
6181
6715
  /** @returns {LocationIntegrationType} */
6182
6716
  declare function LocationIntegrationType(): LocationIntegrationType;
6183
6717
  type LocationIntegrationType = {
6184
6718
  inventory?: string;
6185
- order?: string;
6186
6719
  };
6187
- /** @returns {LocationListSerializer} */
6188
- declare function LocationListSerializer(): LocationListSerializer;
6189
- type LocationListSerializer = {
6190
- items?: GetLocationSerializer[];
6720
+ /** @returns {LocationListSchema} */
6721
+ declare function LocationListSchema(): LocationListSchema;
6722
+ type LocationListSchema = {
6723
+ items?: GetLocationSchema[];
6191
6724
  page?: Page;
6192
6725
  };
6193
- /** @returns {LocationManagerSerializer} */
6194
- declare function LocationManagerSerializer(): LocationManagerSerializer;
6195
- type LocationManagerSerializer = {
6726
+ /** @returns {LocationManagerSchema} */
6727
+ declare function LocationManagerSchema(): LocationManagerSchema;
6728
+ type LocationManagerSchema = {
6196
6729
  email?: string;
6197
6730
  mobile_no: SellerPhoneNumber;
6198
6731
  name?: string;
6199
6732
  };
6200
- /** @returns {LocationTimingSerializer} */
6201
- declare function LocationTimingSerializer(): LocationTimingSerializer;
6202
- type LocationTimingSerializer = {
6733
+ /** @returns {LocationTimingSchema} */
6734
+ declare function LocationTimingSchema(): LocationTimingSchema;
6735
+ type LocationTimingSchema = {
6203
6736
  hour?: number;
6204
6737
  minute?: number;
6205
6738
  };
@@ -6218,9 +6751,9 @@ type MOQData = {
6218
6751
  maximum?: number;
6219
6752
  minimum?: number;
6220
6753
  };
6221
- /** @returns {ManufacturerResponse} */
6222
- declare function ManufacturerResponse(): ManufacturerResponse;
6223
- type ManufacturerResponse = {
6754
+ /** @returns {ManufacturerResponseSchema} */
6755
+ declare function ManufacturerResponseSchema(): ManufacturerResponseSchema;
6756
+ type ManufacturerResponseSchema = {
6224
6757
  /**
6225
6758
  * - The address of the manufacturer.
6226
6759
  */
@@ -6244,9 +6777,29 @@ type ManufacturerResponse1 = {
6244
6777
  /** @returns {Media} */
6245
6778
  declare function Media(): Media;
6246
6779
  type Media = {
6780
+ /**
6781
+ * - A metadata object containing additional
6782
+ * information about the media, such as dimensions, format, or other relevant details.
6783
+ */
6247
6784
  meta?: any;
6785
+ /**
6786
+ * - The type of media.
6787
+ */
6248
6788
  type?: string;
6789
+ /**
6790
+ * - The URL where the media can be accessed.
6791
+ */
6249
6792
  url: string;
6793
+ /**
6794
+ * - The alternative text for the media, used for
6795
+ * accessibility and as a fallback when the media cannot be displayed.
6796
+ */
6797
+ alt?: string;
6798
+ /**
6799
+ * - The URL of the thumbnail image, typically a
6800
+ * smaller or lower-resolution version of the main media.
6801
+ */
6802
+ thumbnail?: string;
6250
6803
  };
6251
6804
  /** @returns {Media1} */
6252
6805
  declare function Media1(): Media1;
@@ -6278,35 +6831,35 @@ type Meta = {
6278
6831
  unit?: string;
6279
6832
  values?: any[];
6280
6833
  };
6281
- /** @returns {MetaDataListingFilterMetaResponse} */
6282
- declare function MetaDataListingFilterMetaResponse(): MetaDataListingFilterMetaResponse;
6283
- type MetaDataListingFilterMetaResponse = {
6834
+ /** @returns {MetaDataListingFilterMetaResponseSchema} */
6835
+ declare function MetaDataListingFilterMetaResponseSchema(): MetaDataListingFilterMetaResponseSchema;
6836
+ type MetaDataListingFilterMetaResponseSchema = {
6284
6837
  display?: string;
6285
6838
  filter_types?: string[];
6286
6839
  key?: string;
6287
6840
  units?: any[];
6288
6841
  };
6289
- /** @returns {MetaDataListingFilterResponse} */
6290
- declare function MetaDataListingFilterResponse(): MetaDataListingFilterResponse;
6291
- type MetaDataListingFilterResponse = {
6292
- data?: MetaDataListingFilterMetaResponse[];
6842
+ /** @returns {MetaDataListingFilterResponseSchema} */
6843
+ declare function MetaDataListingFilterResponseSchema(): MetaDataListingFilterResponseSchema;
6844
+ type MetaDataListingFilterResponseSchema = {
6845
+ data?: MetaDataListingFilterMetaResponseSchema[];
6293
6846
  };
6294
- /** @returns {MetaDataListingResponse} */
6295
- declare function MetaDataListingResponse(): MetaDataListingResponse;
6296
- type MetaDataListingResponse = {
6297
- filter: MetaDataListingFilterResponse;
6298
- sort: MetaDataListingSortResponse;
6847
+ /** @returns {MetaDataListingResponseSchema} */
6848
+ declare function MetaDataListingResponseSchema(): MetaDataListingResponseSchema;
6849
+ type MetaDataListingResponseSchema = {
6850
+ filter: MetaDataListingFilterResponseSchema;
6851
+ sort: MetaDataListingSortResponseSchema;
6299
6852
  };
6300
- /** @returns {MetaDataListingSortMetaResponse} */
6301
- declare function MetaDataListingSortMetaResponse(): MetaDataListingSortMetaResponse;
6302
- type MetaDataListingSortMetaResponse = {
6853
+ /** @returns {MetaDataListingSortMetaResponseSchema} */
6854
+ declare function MetaDataListingSortMetaResponseSchema(): MetaDataListingSortMetaResponseSchema;
6855
+ type MetaDataListingSortMetaResponseSchema = {
6303
6856
  display?: string;
6304
6857
  key?: string;
6305
6858
  };
6306
- /** @returns {MetaDataListingSortResponse} */
6307
- declare function MetaDataListingSortResponse(): MetaDataListingSortResponse;
6308
- type MetaDataListingSortResponse = {
6309
- data?: MetaDataListingSortMetaResponse[];
6859
+ /** @returns {MetaDataListingSortResponseSchema} */
6860
+ declare function MetaDataListingSortResponseSchema(): MetaDataListingSortResponseSchema;
6861
+ type MetaDataListingSortResponseSchema = {
6862
+ data?: MetaDataListingSortMetaResponseSchema[];
6310
6863
  };
6311
6864
  /** @returns {MetaFields} */
6312
6865
  declare function MetaFields(): MetaFields;
@@ -6335,9 +6888,9 @@ type NetQuantity = {
6335
6888
  */
6336
6889
  value?: number;
6337
6890
  };
6338
- /** @returns {NetQuantityResponse} */
6339
- declare function NetQuantityResponse(): NetQuantityResponse;
6340
- type NetQuantityResponse = {
6891
+ /** @returns {NetQuantityResponseSchema} */
6892
+ declare function NetQuantityResponseSchema(): NetQuantityResponseSchema;
6893
+ type NetQuantityResponseSchema = {
6341
6894
  unit?: string;
6342
6895
  value?: number;
6343
6896
  };
@@ -6347,9 +6900,9 @@ type NextSchedule = {
6347
6900
  end?: string;
6348
6901
  start?: string;
6349
6902
  };
6350
- /** @returns {OptInPostRequest} */
6351
- declare function OptInPostRequest(): OptInPostRequest;
6352
- type OptInPostRequest = {
6903
+ /** @returns {OptInPostRequestSchema} */
6904
+ declare function OptInPostRequestSchema(): OptInPostRequestSchema;
6905
+ type OptInPostRequestSchema = {
6353
6906
  brand_ids?: number[];
6354
6907
  company_id?: number;
6355
6908
  enabled?: boolean;
@@ -6384,9 +6937,9 @@ type OptinStoreDetails = {
6384
6937
  items?: StoreDetail[];
6385
6938
  page?: Page;
6386
6939
  };
6387
- /** @returns {OwnerAppItemResponse} */
6388
- declare function OwnerAppItemResponse(): OwnerAppItemResponse;
6389
- type OwnerAppItemResponse = {
6940
+ /** @returns {OwnerAppItemResponseSchema} */
6941
+ declare function OwnerAppItemResponseSchema(): OwnerAppItemResponseSchema;
6942
+ type OwnerAppItemResponseSchema = {
6390
6943
  alt_text?: any;
6391
6944
  is_cod?: boolean;
6392
6945
  is_gift?: boolean;
@@ -6401,9 +6954,9 @@ type OwnerAppItemResponse = {
6401
6954
  */
6402
6955
  _custom_meta?: MetaFields[];
6403
6956
  };
6404
- /** @returns {PTErrorResponse} */
6405
- declare function PTErrorResponse(): PTErrorResponse;
6406
- type PTErrorResponse = {
6957
+ /** @returns {PTErrorResponseSchema} */
6958
+ declare function PTErrorResponseSchema(): PTErrorResponseSchema;
6959
+ type PTErrorResponseSchema = {
6407
6960
  code?: string;
6408
6961
  errors?: any;
6409
6962
  message?: string;
@@ -6442,9 +6995,9 @@ type Page = {
6442
6995
  */
6443
6996
  size?: number;
6444
6997
  };
6445
- /** @returns {PageResponse} */
6446
- declare function PageResponse(): PageResponse;
6447
- type PageResponse = {
6998
+ /** @returns {PageResponseSchema} */
6999
+ declare function PageResponseSchema(): PageResponseSchema;
7000
+ type PageResponseSchema = {
6448
7001
  /**
6449
7002
  * - It is the current page of the page response schema.
6450
7003
  */
@@ -6468,16 +7021,6 @@ type PageResponse = {
6468
7021
  */
6469
7022
  size?: number;
6470
7023
  };
6471
- /** @returns {PageResponse1} */
6472
- declare function PageResponse1(): PageResponse1;
6473
- type PageResponse1 = {
6474
- current?: number;
6475
- has_next?: boolean;
6476
- has_previous?: boolean;
6477
- item_total?: number;
6478
- size?: number;
6479
- type?: string;
6480
- };
6481
7024
  /** @returns {PageResponseType} */
6482
7025
  declare function PageResponseType(): PageResponseType;
6483
7026
  type PageResponseType = {
@@ -6495,14 +7038,6 @@ type Price = {
6495
7038
  min_effective?: number;
6496
7039
  min_marked?: number;
6497
7040
  };
6498
- /** @returns {Price1} */
6499
- declare function Price1(): Price1;
6500
- type Price1 = {
6501
- currency_code?: string;
6502
- currency_symbol?: string;
6503
- max?: number;
6504
- min?: number;
6505
- };
6506
7041
  /** @returns {PriceArticle} */
6507
7042
  declare function PriceArticle(): PriceArticle;
6508
7043
  type PriceArticle = {
@@ -6540,10 +7075,10 @@ type PriceMeta = {
6540
7075
  */
6541
7076
  updated_at?: string;
6542
7077
  };
6543
- /** @returns {ProdcutTemplateCategoriesResponse} */
6544
- declare function ProdcutTemplateCategoriesResponse(): ProdcutTemplateCategoriesResponse;
6545
- type ProdcutTemplateCategoriesResponse = {
6546
- items?: CategoriesResponse[];
7078
+ /** @returns {ProdcutTemplateCategoriesResponseSchema} */
7079
+ declare function ProdcutTemplateCategoriesResponseSchema(): ProdcutTemplateCategoriesResponseSchema;
7080
+ type ProdcutTemplateCategoriesResponseSchema = {
7081
+ items?: CategoriesResponseSchema[];
6547
7082
  page?: Page;
6548
7083
  };
6549
7084
  /** @returns {Product} */
@@ -6588,20 +7123,20 @@ type Product = {
6588
7123
  moq?: any;
6589
7124
  multi_size?: boolean;
6590
7125
  name?: string;
6591
- net_quantity?: NetQuantityResponse;
7126
+ net_quantity?: NetQuantityResponseSchema;
6592
7127
  no_of_boxes?: number;
6593
7128
  pending?: string;
6594
7129
  primary_color?: string;
6595
7130
  product_group_tag?: string[];
6596
7131
  product_publish?: ProductPublished;
6597
- return_config?: ReturnConfigResponse;
7132
+ return_config?: ReturnConfigResponseSchema;
6598
7133
  short_description?: string;
6599
7134
  size_guide?: string;
6600
7135
  sizes?: any[];
6601
7136
  slug?: string;
6602
7137
  stage?: string;
6603
7138
  tags?: string[];
6604
- tax_identifier?: any;
7139
+ tax_identifier?: TaxIdentifier;
6605
7140
  teaser_tag?: any;
6606
7141
  template_tag?: string;
6607
7142
  trader?: Trader[];
@@ -6612,10 +7147,10 @@ type Product = {
6612
7147
  verified_by?: VerifiedBy;
6613
7148
  verified_on?: string;
6614
7149
  };
6615
- /** @returns {ProductAttributesResponse} */
6616
- declare function ProductAttributesResponse(): ProductAttributesResponse;
6617
- type ProductAttributesResponse = {
6618
- items: AttributeMasterSerializer[];
7150
+ /** @returns {ProductAttributesResponseSchema} */
7151
+ declare function ProductAttributesResponseSchema(): ProductAttributesResponseSchema;
7152
+ type ProductAttributesResponseSchema = {
7153
+ items: AttributeMasterSchema[];
6619
7154
  };
6620
7155
  /** @returns {ProductBrand} */
6621
7156
  declare function ProductBrand(): ProductBrand;
@@ -6633,9 +7168,9 @@ type ProductBulkAssets = {
6633
7168
  url: string;
6634
7169
  user: any;
6635
7170
  };
6636
- /** @returns {ProductBulkRequest} */
6637
- declare function ProductBulkRequest(): ProductBulkRequest;
6638
- type ProductBulkRequest = {
7171
+ /** @returns {ProductBulkRequestSchema} */
7172
+ declare function ProductBulkRequestSchema(): ProductBulkRequestSchema;
7173
+ type ProductBulkRequestSchema = {
6639
7174
  cancelled?: number;
6640
7175
  cancelled_records?: any[];
6641
7176
  company_id?: number;
@@ -6656,7 +7191,7 @@ type ProductBulkRequest = {
6656
7191
  /** @returns {ProductBulkRequestList} */
6657
7192
  declare function ProductBulkRequestList(): ProductBulkRequestList;
6658
7193
  type ProductBulkRequestList = {
6659
- items?: ProductBulkRequest[];
7194
+ items?: any;
6660
7195
  page?: Page;
6661
7196
  };
6662
7197
  /** @returns {ProductBundleItem} */
@@ -6669,9 +7204,9 @@ type ProductBundleItem = {
6669
7204
  min_quantity: number;
6670
7205
  product_uid: number;
6671
7206
  };
6672
- /** @returns {ProductBundleRequest} */
6673
- declare function ProductBundleRequest(): ProductBundleRequest;
6674
- type ProductBundleRequest = {
7207
+ /** @returns {ProductBundleRequestSchema} */
7208
+ declare function ProductBundleRequestSchema(): ProductBundleRequestSchema;
7209
+ type ProductBundleRequestSchema = {
6675
7210
  choice: string;
6676
7211
  company_id?: number;
6677
7212
  created_by?: any;
@@ -6687,9 +7222,9 @@ type ProductBundleRequest = {
6687
7222
  same_store_assignment?: boolean;
6688
7223
  slug: string;
6689
7224
  };
6690
- /** @returns {ProductBundleUpdateRequest} */
6691
- declare function ProductBundleUpdateRequest(): ProductBundleUpdateRequest;
6692
- type ProductBundleUpdateRequest = {
7225
+ /** @returns {ProductBundleUpdateRequestSchema} */
7226
+ declare function ProductBundleUpdateRequestSchema(): ProductBundleUpdateRequestSchema;
7227
+ type ProductBundleUpdateRequestSchema = {
6693
7228
  choice: string;
6694
7229
  company_id?: number;
6695
7230
  is_active: boolean;
@@ -6795,13 +7330,13 @@ type ProductDetailGroupedAttribute = {
6795
7330
  details?: ProductDetailAttribute[];
6796
7331
  title?: string;
6797
7332
  };
6798
- /** @returns {ProductDownloadsResponse} */
6799
- declare function ProductDownloadsResponse(): ProductDownloadsResponse;
6800
- type ProductDownloadsResponse = {
7333
+ /** @returns {ProductDownloadsResponseSchema} */
7334
+ declare function ProductDownloadsResponseSchema(): ProductDownloadsResponseSchema;
7335
+ type ProductDownloadsResponseSchema = {
6801
7336
  /**
6802
7337
  * - The items of the job.
6803
7338
  */
6804
- items?: ProductTemplateExportResponse[];
7339
+ items?: ProductTemplateExportResponseSchema[];
6805
7340
  page?: Page;
6806
7341
  };
6807
7342
  /** @returns {ProductFilters} */
@@ -6810,9 +7345,9 @@ type ProductFilters = {
6810
7345
  key: ProductFiltersKey;
6811
7346
  values: ProductFiltersValue[];
6812
7347
  };
6813
- /** @returns {GetQueryFiltersValuesResponse} */
6814
- declare function GetQueryFiltersValuesResponse(): GetQueryFiltersValuesResponse;
6815
- type GetQueryFiltersValuesResponse = {
7348
+ /** @returns {GetQueryFiltersValuesResponseSchema} */
7349
+ declare function GetQueryFiltersValuesResponseSchema(): GetQueryFiltersValuesResponseSchema;
7350
+ type GetQueryFiltersValuesResponseSchema = {
6816
7351
  values: ProductFiltersValue[];
6817
7352
  page: Page;
6818
7353
  };
@@ -6846,45 +7381,9 @@ type ProductFiltersValue = {
6846
7381
  selected_min?: number;
6847
7382
  value: any;
6848
7383
  };
6849
- /** @returns {ProductListingDetail} */
6850
- declare function ProductListingDetail(): ProductListingDetail;
6851
- type ProductListingDetail = {
6852
- attributes?: any;
6853
- brand?: ProductBrand;
6854
- color?: string;
6855
- description?: string;
6856
- discount?: string;
6857
- grouped_attributes?: ProductDetailGroupedAttribute[];
6858
- has_variant?: boolean;
6859
- highlights?: string[];
6860
- image_nature?: string;
6861
- item_code?: string;
6862
- item_type?: string;
6863
- medias?: Media[];
6864
- name?: string;
6865
- price?: ProductListingPrice;
6866
- product_online_date?: string;
6867
- promo_meta?: any;
6868
- rating?: number;
6869
- rating_count?: number;
6870
- sellable?: boolean;
6871
- short_description?: string;
6872
- similars?: string[];
6873
- slug: string;
6874
- teaser_tag?: any;
6875
- tryouts?: string[];
6876
- type?: string;
6877
- uid?: number;
6878
- };
6879
- /** @returns {ProductListingPrice} */
6880
- declare function ProductListingPrice(): ProductListingPrice;
6881
- type ProductListingPrice = {
6882
- effective?: Price1;
6883
- marked?: Price1;
6884
- };
6885
- /** @returns {ProductListingResponse} */
6886
- declare function ProductListingResponse(): ProductListingResponse;
6887
- type ProductListingResponse = {
7384
+ /** @returns {ProductListingResponseSchema} */
7385
+ declare function ProductListingResponseSchema(): ProductListingResponseSchema;
7386
+ type ProductListingResponseSchema = {
6888
7387
  items?: Product[];
6889
7388
  page?: Page;
6890
7389
  };
@@ -6912,15 +7411,15 @@ type ProductPublished = {
6912
7411
  is_set?: boolean;
6913
7412
  product_online_date?: number;
6914
7413
  };
6915
- /** @returns {ProductReturnConfigSerializer} */
6916
- declare function ProductReturnConfigSerializer(): ProductReturnConfigSerializer;
6917
- type ProductReturnConfigSerializer = {
7414
+ /** @returns {ProductReturnConfigSchema} */
7415
+ declare function ProductReturnConfigSchema(): ProductReturnConfigSchema;
7416
+ type ProductReturnConfigSchema = {
6918
7417
  on_same_store?: boolean;
6919
7418
  store_uid?: number;
6920
7419
  };
6921
- /** @returns {ProductReturnConfigBaseSerializer} */
6922
- declare function ProductReturnConfigBaseSerializer(): ProductReturnConfigBaseSerializer;
6923
- type ProductReturnConfigBaseSerializer = {
7420
+ /** @returns {ProductReturnConfigBaseSchema} */
7421
+ declare function ProductReturnConfigBaseSchema(): ProductReturnConfigBaseSchema;
7422
+ type ProductReturnConfigBaseSchema = {
6924
7423
  /**
6925
7424
  * - Boolean Flag for item returnable
6926
7425
  */
@@ -6976,20 +7475,20 @@ type ProductSchemaV2 = {
6976
7475
  moq?: any;
6977
7476
  multi_size?: boolean;
6978
7477
  name?: string;
6979
- net_quantity?: NetQuantityResponse;
7478
+ net_quantity?: NetQuantityResponseSchema;
6980
7479
  no_of_boxes?: number;
6981
7480
  pending?: string;
6982
7481
  primary_color?: string;
6983
7482
  product_group_tag?: string[];
6984
7483
  product_publish?: ProductPublish;
6985
- return_config?: ReturnConfigResponse;
7484
+ return_config?: ReturnConfigResponseSchema;
6986
7485
  short_description?: string;
6987
7486
  size_guide?: string;
6988
7487
  sizes?: any[];
6989
7488
  slug?: string;
6990
7489
  stage?: string;
6991
7490
  tags?: string[];
6992
- tax_identifier?: any;
7491
+ tax_identifier?: TaxIdentifier;
6993
7492
  teaser_tag?: any;
6994
7493
  template_tag?: string;
6995
7494
  trader?: Trader[];
@@ -7006,17 +7505,17 @@ type ProductSize = {
7006
7505
  max: number;
7007
7506
  min: number;
7008
7507
  };
7009
- /** @returns {ProductSizeDeleteDataResponse} */
7010
- declare function ProductSizeDeleteDataResponse(): ProductSizeDeleteDataResponse;
7011
- type ProductSizeDeleteDataResponse = {
7508
+ /** @returns {ProductSizeDeleteDataResponseSchema} */
7509
+ declare function ProductSizeDeleteDataResponseSchema(): ProductSizeDeleteDataResponseSchema;
7510
+ type ProductSizeDeleteDataResponseSchema = {
7012
7511
  company_id?: number;
7013
7512
  item_id?: number;
7014
7513
  size?: string;
7015
7514
  };
7016
- /** @returns {ProductSizeDeleteResponse} */
7017
- declare function ProductSizeDeleteResponse(): ProductSizeDeleteResponse;
7018
- type ProductSizeDeleteResponse = {
7019
- data?: ProductSizeDeleteDataResponse;
7515
+ /** @returns {ProductSizeDeleteResponseSchema} */
7516
+ declare function ProductSizeDeleteResponseSchema(): ProductSizeDeleteResponseSchema;
7517
+ type ProductSizeDeleteResponseSchema = {
7518
+ data?: ProductSizeDeleteDataResponseSchema;
7020
7519
  success?: boolean;
7021
7520
  };
7022
7521
  /** @returns {ProductSortOn} */
@@ -7026,9 +7525,9 @@ type ProductSortOn = {
7026
7525
  name?: string;
7027
7526
  value?: string;
7028
7527
  };
7029
- /** @returns {ProductTagsViewResponse} */
7030
- declare function ProductTagsViewResponse(): ProductTagsViewResponse;
7031
- type ProductTagsViewResponse = {
7528
+ /** @returns {ProductTagsViewResponseSchema} */
7529
+ declare function ProductTagsViewResponseSchema(): ProductTagsViewResponseSchema;
7530
+ type ProductTagsViewResponseSchema = {
7032
7531
  items?: string[];
7033
7532
  };
7034
7533
  /** @returns {ProductTemplate} */
@@ -7058,7 +7557,7 @@ type ProductTemplateDownloadsExport = {
7058
7557
  * - This is the
7059
7558
  * filters of the file for the export.
7060
7559
  */
7061
- filters?: ProductTemplateExportFilterRequest;
7560
+ filters?: ProductTemplateExportFilterRequestSchema;
7062
7561
  /**
7063
7562
  * - The list of the emails to be
7064
7563
  * notified after the completion of the job.
@@ -7069,9 +7568,9 @@ type ProductTemplateDownloadsExport = {
7069
7568
  */
7070
7569
  type?: string;
7071
7570
  };
7072
- /** @returns {ProductTemplateExportFilterRequest} */
7073
- declare function ProductTemplateExportFilterRequest(): ProductTemplateExportFilterRequest;
7074
- type ProductTemplateExportFilterRequest = {
7571
+ /** @returns {ProductTemplateExportFilterRequestSchema} */
7572
+ declare function ProductTemplateExportFilterRequestSchema(): ProductTemplateExportFilterRequestSchema;
7573
+ type ProductTemplateExportFilterRequestSchema = {
7075
7574
  /**
7076
7575
  * - The list of the brands that needs to be exported.
7077
7576
  */
@@ -7096,9 +7595,9 @@ type ProductTemplateExportFilterRequest = {
7096
7595
  */
7097
7596
  to_date?: string;
7098
7597
  };
7099
- /** @returns {ProductTemplateExportResponse} */
7100
- declare function ProductTemplateExportResponse(): ProductTemplateExportResponse;
7101
- type ProductTemplateExportResponse = {
7598
+ /** @returns {ProductTemplateExportResponseSchema} */
7599
+ declare function ProductTemplateExportResponseSchema(): ProductTemplateExportResponseSchema;
7600
+ type ProductTemplateExportResponseSchema = {
7102
7601
  /**
7103
7602
  * - Completion datetime of the job
7104
7603
  */
@@ -7150,9 +7649,9 @@ type ProductVariants = {
7150
7649
  name?: string;
7151
7650
  uid?: number;
7152
7651
  };
7153
- /** @returns {ProductVariantsResponse} */
7154
- declare function ProductVariantsResponse(): ProductVariantsResponse;
7155
- type ProductVariantsResponse = {
7652
+ /** @returns {ProductVariantsResponseSchema} */
7653
+ declare function ProductVariantsResponseSchema(): ProductVariantsResponseSchema;
7654
+ type ProductVariantsResponseSchema = {
7156
7655
  page?: Page;
7157
7656
  variants?: ProductVariants[];
7158
7657
  };
@@ -7247,9 +7746,9 @@ type ReturnConfig2 = {
7247
7746
  time?: number;
7248
7747
  unit?: string;
7249
7748
  };
7250
- /** @returns {ReturnConfigResponse} */
7251
- declare function ReturnConfigResponse(): ReturnConfigResponse;
7252
- type ReturnConfigResponse = {
7749
+ /** @returns {ReturnConfigResponseSchema} */
7750
+ declare function ReturnConfigResponseSchema(): ReturnConfigResponseSchema;
7751
+ type ReturnConfigResponseSchema = {
7253
7752
  returnable?: boolean;
7254
7753
  time?: number;
7255
7754
  unit?: string;
@@ -7364,14 +7863,14 @@ type SetSize = {
7364
7863
  pieces: number;
7365
7864
  size: string;
7366
7865
  };
7367
- /** @returns {SingleCategoryResponse} */
7368
- declare function SingleCategoryResponse(): SingleCategoryResponse;
7369
- type SingleCategoryResponse = {
7866
+ /** @returns {SingleCategoryResponseSchema} */
7867
+ declare function SingleCategoryResponseSchema(): SingleCategoryResponseSchema;
7868
+ type SingleCategoryResponseSchema = {
7370
7869
  data?: Category;
7371
7870
  };
7372
- /** @returns {SingleProductResponse} */
7373
- declare function SingleProductResponse(): SingleProductResponse;
7374
- type SingleProductResponse = {
7871
+ /** @returns {SingleProductResponseSchema} */
7872
+ declare function SingleProductResponseSchema(): SingleProductResponseSchema;
7873
+ type SingleProductResponseSchema = {
7375
7874
  data?: ProductSchemaV2;
7376
7875
  };
7377
7876
  /** @returns {Size} */
@@ -7387,9 +7886,9 @@ declare function SizeDistribution(): SizeDistribution;
7387
7886
  type SizeDistribution = {
7388
7887
  sizes: SetSize[];
7389
7888
  };
7390
- /** @returns {SizeGuideResponse} */
7391
- declare function SizeGuideResponse(): SizeGuideResponse;
7392
- type SizeGuideResponse = {
7889
+ /** @returns {SizeGuideResponseSchema} */
7890
+ declare function SizeGuideResponseSchema(): SizeGuideResponseSchema;
7891
+ type SizeGuideResponseSchema = {
7393
7892
  active?: boolean;
7394
7893
  brand_id?: number;
7395
7894
  company_id?: number;
@@ -7404,9 +7903,9 @@ type SizeGuideResponse = {
7404
7903
  tag?: string;
7405
7904
  title?: string;
7406
7905
  };
7407
- /** @returns {StoreAssignResponse} */
7408
- declare function StoreAssignResponse(): StoreAssignResponse;
7409
- type StoreAssignResponse = {
7906
+ /** @returns {StoreAssignResponseSchema} */
7907
+ declare function StoreAssignResponseSchema(): StoreAssignResponseSchema;
7908
+ type StoreAssignResponseSchema = {
7410
7909
  _id?: string;
7411
7910
  article_assignment: ArticleAssignment1;
7412
7911
  company_id?: number;
@@ -7447,9 +7946,9 @@ declare function StoreMeta(): StoreMeta;
7447
7946
  type StoreMeta = {
7448
7947
  id: number;
7449
7948
  };
7450
- /** @returns {SuccessResponse} */
7451
- declare function SuccessResponse(): SuccessResponse;
7452
- type SuccessResponse = {
7949
+ /** @returns {SuccessResponseSchema} */
7950
+ declare function SuccessResponseSchema(): SuccessResponseSchema;
7951
+ type SuccessResponseSchema = {
7453
7952
  success?: boolean;
7454
7953
  };
7455
7954
  /** @returns {SuccessResponse1} */
@@ -7502,15 +8001,15 @@ type TemplateValidationData = {
7502
8001
  global_validation?: GlobalValidation;
7503
8002
  template_validation?: any;
7504
8003
  };
7505
- /** @returns {TemplatesResponse} */
7506
- declare function TemplatesResponse(): TemplatesResponse;
7507
- type TemplatesResponse = {
8004
+ /** @returns {TemplatesResponseSchema} */
8005
+ declare function TemplatesResponseSchema(): TemplatesResponseSchema;
8006
+ type TemplatesResponseSchema = {
7508
8007
  items?: ProductTemplate;
7509
8008
  page?: Page;
7510
8009
  };
7511
- /** @returns {TemplatesValidationResponse} */
7512
- declare function TemplatesValidationResponse(): TemplatesValidationResponse;
7513
- type TemplatesValidationResponse = {
8010
+ /** @returns {TemplatesValidationResponseSchema} */
8011
+ declare function TemplatesValidationResponseSchema(): TemplatesValidationResponseSchema;
8012
+ type TemplatesValidationResponseSchema = {
7514
8013
  data?: TemplateValidationData;
7515
8014
  template_details?: TemplateDetails;
7516
8015
  };
@@ -7576,9 +8075,9 @@ type UpdateCollection = {
7576
8075
  type?: string;
7577
8076
  visible_facets_keys?: string[];
7578
8077
  };
7579
- /** @returns {UpdateSearchConfigurationRequest} */
7580
- declare function UpdateSearchConfigurationRequest(): UpdateSearchConfigurationRequest;
7581
- type UpdateSearchConfigurationRequest = {
8078
+ /** @returns {UpdateSearchConfigurationRequestSchema} */
8079
+ declare function UpdateSearchConfigurationRequestSchema(): UpdateSearchConfigurationRequestSchema;
8080
+ type UpdateSearchConfigurationRequestSchema = {
7582
8081
  /**
7583
8082
  * - The application id where custom search
7584
8083
  * configuration is set
@@ -7589,10 +8088,9 @@ type UpdateSearchConfigurationRequest = {
7589
8088
  */
7590
8089
  company_id: number;
7591
8090
  /**
7592
- * - The user who created the search
7593
- * configuration.
8091
+ * - The user who created the search configuration.
7594
8092
  */
7595
- created_by?: UserSerializer;
8093
+ created_by?: UserSchema;
7596
8094
  /**
7597
8095
  * - The date and time when the search
7598
8096
  * configuration was created.
@@ -7604,10 +8102,9 @@ type UpdateSearchConfigurationRequest = {
7604
8102
  */
7605
8103
  is_proximity_enabled?: boolean;
7606
8104
  /**
7607
- * - The user who modified the search
7608
- * configuration.
8105
+ * - The user who modified the search configuration.
7609
8106
  */
7610
- modified_by?: UserSerializer;
8107
+ modified_by?: UserSchema;
7611
8108
  /**
7612
8109
  * - The date and time when the search
7613
8110
  * configuration was last modified.
@@ -7623,14 +8120,14 @@ type UpdateSearchConfigurationRequest = {
7623
8120
  */
7624
8121
  searchable_attributes?: SearchableAttribute[];
7625
8122
  };
7626
- /** @returns {UpdateSearchConfigurationResponse} */
7627
- declare function UpdateSearchConfigurationResponse(): UpdateSearchConfigurationResponse;
7628
- type UpdateSearchConfigurationResponse = {
8123
+ /** @returns {UpdateSearchConfigurationResponseSchema} */
8124
+ declare function UpdateSearchConfigurationResponseSchema(): UpdateSearchConfigurationResponseSchema;
8125
+ type UpdateSearchConfigurationResponseSchema = {
7629
8126
  success?: boolean;
7630
8127
  };
7631
- /** @returns {CreateMarketplaceOptinResponse} */
7632
- declare function CreateMarketplaceOptinResponse(): CreateMarketplaceOptinResponse;
7633
- type CreateMarketplaceOptinResponse = {
8128
+ /** @returns {CreateMarketplaceOptinResponseSchema} */
8129
+ declare function CreateMarketplaceOptinResponseSchema(): CreateMarketplaceOptinResponseSchema;
8130
+ type CreateMarketplaceOptinResponseSchema = {
7634
8131
  store_ids?: number[];
7635
8132
  brand_ids?: number[];
7636
8133
  company_id?: number;
@@ -7703,9 +8200,9 @@ type UserInfo1 = {
7703
8200
  */
7704
8201
  username?: string;
7705
8202
  };
7706
- /** @returns {UserSerializer} */
7707
- declare function UserSerializer(): UserSerializer;
7708
- type UserSerializer = {
8203
+ /** @returns {UserSchema} */
8204
+ declare function UserSchema(): UserSchema;
8205
+ type UserSchema = {
7709
8206
  /**
7710
8207
  * - The contact information of the user.
7711
8208
  */
@@ -7779,9 +8276,9 @@ type VerifiedBy = {
7779
8276
  user_id?: string;
7780
8277
  username?: string;
7781
8278
  };
7782
- /** @returns {WeightResponse} */
7783
- declare function WeightResponse(): WeightResponse;
7784
- type WeightResponse = {
8279
+ /** @returns {WeightResponseSchema} */
8280
+ declare function WeightResponseSchema(): WeightResponseSchema;
8281
+ type WeightResponseSchema = {
7785
8282
  /**
7786
8283
  * - Indicates if it is the default weight.
7787
8284
  */
@@ -7807,6 +8304,12 @@ type CreatedBy = {
7807
8304
  username?: string;
7808
8305
  user_id?: string;
7809
8306
  };
8307
+ /** @returns {ModifiedBy} */
8308
+ declare function ModifiedBy(): ModifiedBy;
8309
+ type ModifiedBy = {
8310
+ username?: string;
8311
+ user_id?: string;
8312
+ };
7810
8313
  /** @returns {Marketplaces} */
7811
8314
  declare function Marketplaces(): Marketplaces;
7812
8315
  type Marketplaces = {
@@ -7829,9 +8332,9 @@ type GetAllMarketplaces = {
7829
8332
  items?: Marketplaces[];
7830
8333
  page?: Page;
7831
8334
  };
7832
- /** @returns {UpdateMarketplaceOptinRequest} */
7833
- declare function UpdateMarketplaceOptinRequest(): UpdateMarketplaceOptinRequest;
7834
- type UpdateMarketplaceOptinRequest = {
8335
+ /** @returns {UpdateMarketplaceOptinRequestSchema} */
8336
+ declare function UpdateMarketplaceOptinRequestSchema(): UpdateMarketplaceOptinRequestSchema;
8337
+ type UpdateMarketplaceOptinRequestSchema = {
7835
8338
  brand_ids?: number[];
7836
8339
  company_id?: number;
7837
8340
  enabled?: boolean;
@@ -7839,9 +8342,9 @@ type UpdateMarketplaceOptinRequest = {
7839
8342
  platform?: string;
7840
8343
  store_ids?: number[];
7841
8344
  };
7842
- /** @returns {UpdateMarketplaceOptinResponse} */
7843
- declare function UpdateMarketplaceOptinResponse(): UpdateMarketplaceOptinResponse;
7844
- type UpdateMarketplaceOptinResponse = {
8345
+ /** @returns {UpdateMarketplaceOptinResponseSchema} */
8346
+ declare function UpdateMarketplaceOptinResponseSchema(): UpdateMarketplaceOptinResponseSchema;
8347
+ type UpdateMarketplaceOptinResponseSchema = {
7845
8348
  brand_ids?: number[];
7846
8349
  company_id?: number;
7847
8350
  app_id?: string;
@@ -7852,6 +8355,59 @@ type UpdateMarketplaceOptinResponse = {
7852
8355
  created_by?: CreatedBy;
7853
8356
  modified_by?: CreatedBy;
7854
8357
  };
8358
+ /** @returns {Identifier} */
8359
+ declare function Identifier(): Identifier;
8360
+ type Identifier = {
8361
+ /**
8362
+ * - The European Article Number (EAN) of the item.
8363
+ */
8364
+ ean?: string;
8365
+ /**
8366
+ * - The Stock Keeping Unit (SKU) code of the item.
8367
+ */
8368
+ sku_code?: string;
8369
+ /**
8370
+ * - The Alternative Lookup Product of the item.
8371
+ */
8372
+ alu?: string;
8373
+ /**
8374
+ * - Universal Product Code of the item.
8375
+ */
8376
+ upc?: string;
8377
+ /**
8378
+ * - ISBN (International Standard Book Number) is a
8379
+ * unique identifier used globally to identify books and other non-periodical
8380
+ * publications
8381
+ */
8382
+ isbn?: string;
8383
+ };
8384
+ /** @returns {Filters} */
8385
+ declare function Filters(): Filters;
8386
+ type Filters = {
8387
+ /**
8388
+ * - The list of all the brands selected.
8389
+ */
8390
+ brands?: string[];
8391
+ /**
8392
+ * - The modified-on date from which the data
8393
+ * needs to be exported.
8394
+ */
8395
+ from_date?: string;
8396
+ /**
8397
+ * - The quantity range
8398
+ * that needs to be exported.
8399
+ */
8400
+ quantity?: InventoryExportQuantityFilter;
8401
+ /**
8402
+ * - The list of all the stores selected.
8403
+ */
8404
+ stores?: string[];
8405
+ /**
8406
+ * - The modified-on date till when the data needs
8407
+ * to be exported.
8408
+ */
8409
+ to_date?: string;
8410
+ };
7855
8411
  /** @returns {ActionPage} */
7856
8412
  declare function ActionPage(): ActionPage;
7857
8413
  type ActionPage = {
@@ -7869,10 +8425,79 @@ type ActionPage = {
7869
8425
  url?: string;
7870
8426
  type: PageType;
7871
8427
  };
8428
+ /** @returns {ProductListingPrice} */
8429
+ declare function ProductListingPrice(): ProductListingPrice;
8430
+ type ProductListingPrice = {
8431
+ effective?: Price1;
8432
+ marked?: Price1;
8433
+ selling?: Price1;
8434
+ };
8435
+ /** @returns {Price1} */
8436
+ declare function Price1(): Price1;
8437
+ type Price1 = {
8438
+ currency_code?: CurrencyCodeEnum;
8439
+ currency_symbol?: string;
8440
+ max?: number;
8441
+ min?: number;
8442
+ };
8443
+ /** @returns {MultiCategoriesSchema} */
8444
+ declare function MultiCategoriesSchema(): MultiCategoriesSchema;
8445
+ type MultiCategoriesSchema = {
8446
+ /**
8447
+ * - The ID of the Level 1 (L1) category of the product.
8448
+ */
8449
+ l1?: number;
8450
+ /**
8451
+ * - The ID of the Level 2 (L2) category of the product.
8452
+ */
8453
+ l2?: number;
8454
+ /**
8455
+ * - The ID of the Level 3 (L3) category of the product.
8456
+ */
8457
+ l3?: number;
8458
+ /**
8459
+ * - Indicates whether the L3 category of the
8460
+ * product is currently active.
8461
+ */
8462
+ is_active?: boolean;
8463
+ /**
8464
+ * - The department associated with the L3
8465
+ * category of the product.
8466
+ */
8467
+ department?: number;
8468
+ };
8469
+ /** @returns {CustomMeta} */
8470
+ declare function CustomMeta(): CustomMeta;
8471
+ type CustomMeta = {
8472
+ /**
8473
+ * - The key of the metadata. Should be a non-empty
8474
+ * string and length should not exceed 30 characters.
8475
+ */
8476
+ key: string;
8477
+ /**
8478
+ * - The value of the metadata. Should be a non-empty
8479
+ * string and length should not exceed 100 characters.
8480
+ */
8481
+ value: string;
8482
+ };
8483
+ /**
8484
+ * Enum: order Used By: Catalog
8485
+ *
8486
+ * @returns {order}
8487
+ */
8488
+ declare function order(): order;
8489
+ type order = "browntape_v2" | "easyops" | "holisol" | "logic" | "tcnss" | "increff" | "liberty" | "browntape" | "easyecom" | "major_brands" | "jiopos" | "jockey" | "omsguru" | "pulse" | "sellerware" | "unicommerce" | "ethos" | "sarasuole" | "vajor" | "vinculum" | "jiomart_pos" | "rbl_sap" | "ginesys-pos" | "fyndpos" | "jiopos_openapi" | "jiopos_hamleys" | "westelm" | "rbl_sap_furniture" | "vinculum_v2" | "wizapp";
7872
8490
  /**
7873
8491
  * Enum: PageType Used By: Catalog
7874
8492
  *
7875
8493
  * @returns {PageType}
7876
8494
  */
7877
8495
  declare function PageType(): PageType;
7878
- type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-emails" | "profile-phones" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status";
8496
+ type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-emails" | "profile-phones" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status" | "locate-us";
8497
+ /**
8498
+ * Enum: CurrencyCodeEnum Used By: Catalog
8499
+ *
8500
+ * @returns {CurrencyCodeEnum}
8501
+ */
8502
+ declare function CurrencyCodeEnum(): CurrencyCodeEnum;
8503
+ type CurrencyCodeEnum = "INR" | "USD" | "EUR";