@gofynd/fdk-client-javascript 1.4.13 → 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 (294) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  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 +93 -37
  28. package/sdk/application/Content/ContentApplicationModel.js +83 -32
  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 +48 -17
  75. package/sdk/application/Theme/ThemeApplicationModel.js +42 -22
  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/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
  93. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
  94. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
  95. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
  96. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
  97. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
  98. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  99. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  100. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  101. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  102. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
  103. package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
  104. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
  105. package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
  106. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
  107. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
  108. package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
  109. package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
  110. package/sdk/partner/Theme/ThemePartnerModel.d.ts +96 -37
  111. package/sdk/partner/Theme/ThemePartnerModel.js +90 -36
  112. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  113. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
  114. package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
  115. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
  116. package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
  117. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
  118. package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
  119. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
  120. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
  121. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
  122. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
  123. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
  124. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
  125. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
  126. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
  127. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  129. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  130. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  131. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  132. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  133. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  134. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  135. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
  136. package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
  137. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
  138. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
  139. package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
  140. package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
  141. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +208 -183
  142. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +383 -358
  143. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +122 -126
  144. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +66 -68
  145. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +141 -118
  146. package/sdk/platform/Catalog/CatalogPlatformClient.js +193 -170
  147. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1516 -1766
  148. package/sdk/platform/Catalog/CatalogPlatformModel.js +1393 -1224
  149. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
  150. package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
  151. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
  152. package/sdk/platform/Common/CommonPlatformClient.js +3 -2
  153. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  154. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  155. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
  156. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
  157. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  158. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  159. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
  160. package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
  161. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
  162. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
  163. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  167. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
  168. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
  169. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  171. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
  172. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
  173. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
  174. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
  175. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  176. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  177. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
  178. package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
  179. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
  180. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
  181. package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
  182. package/sdk/platform/Content/ContentPlatformClient.js +523 -336
  183. package/sdk/platform/Content/ContentPlatformModel.d.ts +1241 -395
  184. package/sdk/platform/Content/ContentPlatformModel.js +521 -390
  185. package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
  186. package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
  187. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
  188. package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
  189. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  190. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  191. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  192. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  193. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
  194. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
  195. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
  196. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
  197. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
  198. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  199. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
  200. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
  201. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  202. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  203. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  204. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  205. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  206. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  207. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
  208. package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
  209. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
  210. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  211. package/sdk/platform/Order/OrderPlatformClient.d.ts +178 -97
  212. package/sdk/platform/Order/OrderPlatformClient.js +589 -229
  213. package/sdk/platform/Order/OrderPlatformModel.d.ts +5447 -3071
  214. package/sdk/platform/Order/OrderPlatformModel.js +3496 -1653
  215. package/sdk/platform/Order/OrderPlatformValidator.d.ts +241 -176
  216. package/sdk/platform/Order/OrderPlatformValidator.js +153 -97
  217. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
  218. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
  219. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  220. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  221. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
  222. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
  223. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  224. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  225. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  226. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  227. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
  228. package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
  229. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  230. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  231. package/sdk/platform/PlatformClient.d.ts +0 -2
  232. package/sdk/platform/PlatformClient.js +0 -4
  233. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  234. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  235. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  236. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  237. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  238. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  239. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
  240. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
  241. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
  242. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
  243. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
  244. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
  245. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
  246. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
  247. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
  248. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
  249. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
  250. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  251. package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
  252. package/sdk/platform/Share/SharePlatformModel.js +27 -4
  253. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  254. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  255. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  256. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  257. package/sdk/platform/Theme/ThemePlatformModel.d.ts +37 -11
  258. package/sdk/platform/Theme/ThemePlatformModel.js +33 -15
  259. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  260. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  261. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  262. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  263. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  264. package/sdk/platform/User/UserPlatformModel.js +23 -23
  265. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  266. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  267. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  268. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  269. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  270. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  271. package/sdk/platform/index.d.ts +0 -1
  272. package/sdk/platform/index.js +0 -2
  273. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  274. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  275. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  276. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  277. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  278. package/sdk/public/Content/ContentPublicClient.js +791 -5
  279. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  280. package/sdk/public/Content/ContentPublicModel.js +649 -3
  281. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  282. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  283. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  284. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  285. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  286. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  287. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  288. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  289. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  290. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  291. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  292. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  293. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  294. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -162,7 +162,7 @@ export = CatalogApplicationModel;
162
162
  * the product.
163
163
  */
164
164
  /**
165
- * @typedef ErrorResponse
165
+ * @typedef ErrorResponseSchema
166
166
  * @property {string} [error] - A brief description of the error.
167
167
  */
168
168
  /**
@@ -264,13 +264,13 @@ export = CatalogApplicationModel;
264
264
  * attributes.
265
265
  */
266
266
  /**
267
- * @typedef ProductsComparisonResponse
267
+ * @typedef ProductsComparisonResponseSchema
268
268
  * @property {ProductDetail[]} [items] - List of product details for comparison.
269
269
  * @property {AttributeMetadata[]} [attributes_metadata] - Metadata about
270
270
  * attributes used for comparing products.
271
271
  */
272
272
  /**
273
- * @typedef ProductCompareResponse
273
+ * @typedef ProductCompareResponseSchema
274
274
  * @property {string} [title] - Title or name of the comparison.
275
275
  * @property {ProductDetail[]} [items] - List of product details for comparison.
276
276
  * @property {AttributeMetadata[]} [attributes_metadata] - Metadata about
@@ -278,11 +278,11 @@ export = CatalogApplicationModel;
278
278
  * @property {string} [subtitle] - Subtitle or additional description for the comparison.
279
279
  */
280
280
  /**
281
- * @typedef ProductFrequentlyComparedSimilarResponse
282
- * @property {ProductCompareResponse} [similars]
281
+ * @typedef ProductFrequentlyComparedSimilarResponseSchema
282
+ * @property {ProductCompareResponseSchema} [similars]
283
283
  */
284
284
  /**
285
- * @typedef ProductVariantItemResponse
285
+ * @typedef ProductVariantItemResponseSchema
286
286
  * @property {number} [uid] - Unique identifier for the product variant.
287
287
  * @property {string} [color_name] - Name of the color for the variant.
288
288
  * @property {string} [color] - Color code or representation for the variant.
@@ -299,20 +299,20 @@ export = CatalogApplicationModel;
299
299
  * @property {ProductListingAction} [action]
300
300
  */
301
301
  /**
302
- * @typedef ProductVariantResponse
302
+ * @typedef ProductVariantResponseSchema
303
303
  * @property {string} [display_type] - The type of display for the product
304
304
  * variant (e.g., image, text, image, color).
305
305
  * @property {string} [header] - Header or title for the product variant section.
306
306
  * @property {string} [group_id] - Group ID used to group variants.
307
- * @property {ProductVariantItemResponse[]} [items] - List of product variant items.
307
+ * @property {ProductVariantItemResponseSchema[]} [items] - List of product variant items.
308
308
  * @property {string} [key] - Attribute identifier of the variant.
309
309
  * @property {string} [logo] - URL or path to the logo associated with the
310
310
  * product variant.
311
311
  */
312
312
  /**
313
- * @typedef ProductVariantsResponse
314
- * @property {ProductVariantResponse[]} [variants] - A list of product variant
315
- * responses, each detailing a specific variant.
313
+ * @typedef ProductVariantsResponseSchema
314
+ * @property {ProductVariantResponseSchema[]} [variants] - A list of product
315
+ * variant responses, each detailing a specific variant.
316
316
  */
317
317
  /**
318
318
  * @typedef StoreDetail
@@ -348,10 +348,10 @@ export = CatalogApplicationModel;
348
348
  * @property {CompanyDetail} [company]
349
349
  * @property {number} [item_id] - NA.
350
350
  * @property {Seller} [seller]
351
- * @property {Object} [identifier] - NA.
351
+ * @property {Identifier} [identifier]
352
352
  */
353
353
  /**
354
- * @typedef ProductStockStatusResponse
354
+ * @typedef ProductStockStatusResponseSchema
355
355
  * @property {ProductStockStatusItem[]} [items] - NA.
356
356
  */
357
357
  /**
@@ -370,10 +370,10 @@ export = CatalogApplicationModel;
370
370
  * @property {Page} page
371
371
  */
372
372
  /**
373
- * @typedef ProductVariantListingResponse
373
+ * @typedef ProductVariantListingResponseSchema
374
374
  * @property {string} [header] - Header or title for the product variant section.
375
- * @property {ProductVariantItemResponse[]} [items] - List of Upto 5 product
376
- * variant items.
375
+ * @property {ProductVariantItemResponseSchema[]} [items] - List of Upto 5
376
+ * product variant items.
377
377
  * @property {number} [total] - The total number of product variants available.
378
378
  * @property {string} [key] - Attribute identifier of the variant.
379
379
  * @property {string} [display_type] - The type of display for the product
@@ -417,8 +417,8 @@ export = CatalogApplicationModel;
417
417
  * @property {boolean} [sellable] - Indicates whether the product is available for sale.
418
418
  * @property {Object} [attributes] - Additional attributes or characteristics of
419
419
  * the product.
420
- * @property {ProductVariantListingResponse[]} [variants] - List of product
421
- * variants available for the product.
420
+ * @property {ProductVariantListingResponseSchema[]} [variants] - List of
421
+ * product variants available for the product.
422
422
  * @property {string} [discount] - Discount details or percentage applied to the product.
423
423
  * @property {string[]} [tryouts] - List of tryout options available for the product.
424
424
  * @property {string[]} [identifiers] - List of seller identifiers for the product.
@@ -478,7 +478,7 @@ export = CatalogApplicationModel;
478
478
  * @property {string} [display] - Display name or label for the sorting option.
479
479
  */
480
480
  /**
481
- * @typedef ProductListingResponse
481
+ * @typedef ProductListingResponseSchema
482
482
  * @property {ProductListingDetail[]} [items] - List of product details included
483
483
  * in the response.
484
484
  * @property {ProductFilters[]} [filters] - List of filters available for
@@ -509,12 +509,12 @@ export = CatalogApplicationModel;
509
509
  * @property {ProductListingAction} [action]
510
510
  */
511
511
  /**
512
- * @typedef BrandListingResponse
512
+ * @typedef BrandListingResponseSchema
513
513
  * @property {BrandItem[]} [items] - List of brand items included in the response.
514
514
  * @property {Page} page
515
515
  */
516
516
  /**
517
- * @typedef BrandDetailResponse
517
+ * @typedef BrandDetailResponseSchema
518
518
  * @property {Media} [logo]
519
519
  * @property {number} [uid] - The unique identifier for the brand.
520
520
  * @property {string} [description] - Detailed description of the brand,
@@ -582,12 +582,12 @@ export = CatalogApplicationModel;
582
582
  * @property {string} [slug] - Slug or URL-friendly identifier for the department.
583
583
  */
584
584
  /**
585
- * @typedef CategoryListingResponse
585
+ * @typedef CategoryListingResponseSchema
586
586
  * @property {DepartmentCategoryTree[]} [data] - List of department category trees.
587
587
  * @property {DepartmentIdentifier[]} [departments] - List of departments.
588
588
  */
589
589
  /**
590
- * @typedef CategoryMetaResponse
590
+ * @typedef CategoryMetaResponseSchema
591
591
  * @property {Media} [logo]
592
592
  * @property {number} [uid] - Unique identifier for the category.
593
593
  * @property {ImageUrls} [banners]
@@ -596,7 +596,7 @@ export = CatalogApplicationModel;
596
596
  * @property {string} [name] - Name of the category.
597
597
  */
598
598
  /**
599
- * @typedef HomeListingResponse
599
+ * @typedef HomeListingResponseSchema
600
600
  * @property {ProductListingDetail[]} [items] - List of product details
601
601
  * displayed on the home page.
602
602
  * @property {Page} page
@@ -614,7 +614,7 @@ export = CatalogApplicationModel;
614
614
  * used in the web address to access the department's page on the platform.
615
615
  */
616
616
  /**
617
- * @typedef DepartmentResponse
617
+ * @typedef DepartmentResponseSchema
618
618
  * @property {Department[]} [items] - List of department detail objects.
619
619
  */
620
620
  /**
@@ -628,7 +628,7 @@ export = CatalogApplicationModel;
628
628
  * @property {ProductListingAction} [action]
629
629
  */
630
630
  /**
631
- * @typedef AutoCompleteResponse
631
+ * @typedef AutoCompleteResponseSchema
632
632
  * @property {AutocompleteItem[]} [items] - List of autocomplete items suggested
633
633
  * based on user input.
634
634
  */
@@ -699,7 +699,7 @@ export = CatalogApplicationModel;
699
699
  * category or attribute for filtering.
700
700
  */
701
701
  /**
702
- * @typedef GetCollectionListingResponse
702
+ * @typedef GetCollectionListingResponseSchema
703
703
  * @property {GetCollectionDetailNest[]} [items] - An array of collection
704
704
  * details. Each item in the array represents a collection with various
705
705
  * attributes and configurations.
@@ -707,7 +707,7 @@ export = CatalogApplicationModel;
707
707
  * @property {Page} page
708
708
  */
709
709
  /**
710
- * @typedef CollectionDetailResponse
710
+ * @typedef CollectionDetailResponseSchema
711
711
  * @property {boolean} [is_active] - Indicates whether the collection is active.
712
712
  * @property {string} [sort_on] - Criteria used to sort the items within the
713
713
  * collection, such as price, popularity, or newest first.
@@ -739,21 +739,21 @@ export = CatalogApplicationModel;
739
739
  * @property {string} [app_id] - Application ID associated with the collection.
740
740
  */
741
741
  /**
742
- * @typedef GetFollowListingResponse
742
+ * @typedef GetFollowListingResponseSchema
743
743
  * @property {ProductListingDetail[]} items - An array of product details that
744
744
  * the user is following. Each item includes information such as the product
745
745
  * name, price, and other attributes.
746
746
  * @property {Page} page
747
747
  */
748
748
  /**
749
- * @typedef FollowPostResponse
749
+ * @typedef FollowPostResponseSchema
750
750
  * @property {string} message - A message indicating the result of the follow or
751
751
  * unfollow operation. This could be a confirmation message or an error message.
752
752
  * @property {string} id - A unique identifier for the follow operation, which
753
753
  * can be used to reference or track the follow status.
754
754
  */
755
755
  /**
756
- * @typedef FollowerCountResponse
756
+ * @typedef FollowerCountResponseSchema
757
757
  * @property {number} [count] - The number of followers for the item. This count
758
758
  * indicates how many users are following the specified item.
759
759
  */
@@ -767,7 +767,7 @@ export = CatalogApplicationModel;
767
767
  * the user is following.
768
768
  */
769
769
  /**
770
- * @typedef FollowIdsResponse
770
+ * @typedef FollowIdsResponseSchema
771
771
  * @property {FollowIdsData} [data]
772
772
  */
773
773
  /**
@@ -777,6 +777,11 @@ export = CatalogApplicationModel;
777
777
  * @property {string} [type] - The type of geographic coordinate system used.
778
778
  * For example, "Point" indicates a single point in a geographic coordinate system.
779
779
  */
780
+ /**
781
+ * @typedef StoreContact
782
+ * @property {string} [number] - The contact number of the Store Manager.
783
+ * @property {number} [country_code] - The country code for the contact number.
784
+ */
780
785
  /**
781
786
  * @typedef Store
782
787
  * @property {number} [uid] - A unique identifier for the store.
@@ -791,9 +796,10 @@ export = CatalogApplicationModel;
791
796
  * @property {LatLong} [lat_long]
792
797
  * @property {string} [name] - The name of the store.
793
798
  * @property {string[]} [tags] - The list of tags mapped to the store.
799
+ * @property {StoreContact[]} [contacts] - List of contact numbers for the store.
794
800
  */
795
801
  /**
796
- * @typedef StoreListingResponse
802
+ * @typedef StoreListingResponseSchema
797
803
  * @property {Store[]} items - An array of store details. Each store includes
798
804
  * information such as name, address, and geographic coordinates.
799
805
  * @property {Page} page
@@ -830,13 +836,13 @@ export = CatalogApplicationModel;
830
836
  * @property {string} number - The seller's contact number.
831
837
  */
832
838
  /**
833
- * @typedef StoreManagerSerializer
839
+ * @typedef StoreManagerSchema
834
840
  * @property {string} [name] - The name of the store manager.
835
841
  * @property {string} [email] - The email address of the store manager.
836
842
  * @property {SellerPhoneNumber} [mobile_no]
837
843
  */
838
844
  /**
839
- * @typedef StoreAddressSerializer
845
+ * @typedef StoreAddressSchema
840
846
  * @property {number} [latitude] - The latitude of the store's location.
841
847
  * @property {string} [state] - The state where the store is located.
842
848
  * @property {string} [country] - The country where the store is located.
@@ -852,9 +858,9 @@ export = CatalogApplicationModel;
852
858
  * @property {number} [uid] - The unique identifier for the application store.
853
859
  * @property {StoreDepartments[]} [departments] - A list of departments within the store.
854
860
  * @property {CompanyStore} [company]
855
- * @property {StoreManagerSerializer} [manager]
861
+ * @property {StoreManagerSchema} [manager]
856
862
  * @property {string} [store_code] - A unique code for identifying the store.
857
- * @property {StoreAddressSerializer} [address]
863
+ * @property {StoreAddressSchema} [address]
858
864
  * @property {string} [name] - The name of the store.
859
865
  * @property {SellerPhoneNumber[]} [contact_numbers] - A list of contact numbers
860
866
  * for the store.
@@ -882,11 +888,11 @@ export = CatalogApplicationModel;
882
888
  * @property {number} [uid] - The unique identifier for the store.
883
889
  * @property {StoreDepartments[]} [departments] - A list of departments within the store.
884
890
  * @property {CompanyStore} [company]
885
- * @property {StoreManagerSerializer} [manager]
891
+ * @property {StoreManagerSchema} [manager]
886
892
  * @property {string} [store_code] - A unique code for identifying the store.
887
893
  * @property {StoreTiming[]} [timing] - The opening and closing times for the
888
894
  * store throughout the week.
889
- * @property {StoreAddressSerializer} [address]
895
+ * @property {StoreAddressSchema} [address]
890
896
  * @property {Object} [_custom_json] - Custom JSON data for the store.
891
897
  * @property {string} [name] - The name of the store.
892
898
  * @property {SellerPhoneNumber[]} [contact_numbers] - A list of contact numbers
@@ -934,7 +940,7 @@ export = CatalogApplicationModel;
934
940
  * @property {Object[]} [images] - A list of image URLs for the product.
935
941
  * @property {Object} [slug] - The slug of the product.
936
942
  * @property {number} [rating] - The rating of the product.
937
- * @property {Object} [identifier] - A dictionary of product identifiers.
943
+ * @property {Identifier} [identifier]
938
944
  * @property {Object[]} [highlights] - A list of highlights for the product.
939
945
  * @property {number} [brand_uid] - The unique ID of the product's brand.
940
946
  */
@@ -1127,10 +1133,20 @@ export = CatalogApplicationModel;
1127
1133
  * @property {ProductSizeSellerFilterSchemaV3[]} [sort_on] - A list of sorting
1128
1134
  * and filtering criteria applied to the sellers' data.
1129
1135
  */
1136
+ /**
1137
+ * @typedef Identifier
1138
+ * @property {string} [ean] - The European Article Number (EAN) of the item.
1139
+ * @property {string} [sku_code] - The Stock Keeping Unit (SKU) code of the item.
1140
+ * @property {string} [alu] - The Alternative Lookup Product of the item.
1141
+ * @property {string} [upc] - Universal Product Code of the item.
1142
+ * @property {string} [isbn] - ISBN (International Standard Book Number) is a
1143
+ * unique identifier used globally to identify books and other non-periodical
1144
+ * publications
1145
+ */
1130
1146
  declare class CatalogApplicationModel {
1131
1147
  }
1132
1148
  declare namespace CatalogApplicationModel {
1133
- export { ProductDetailCustomOrder, Meta, Media, ProductListingActionPage, ProductListingAction, ProductBrand, ProductDepartment, ProductCategoryMap, NetQuantity, CustomMetaFields, ApplicationItemSEO, ProductDetailAttribute, ProductDetailGroupedAttribute, ApplicationItemMOQ, Price, ProductListingPrice, ProductSizesPrice, ProductDetail, ErrorResponse, Dimension, Weight, DiscountMeta, ProductSize, SizeChartValues, ColumnHeader, ColumnHeaders, SizeChart, ProductSizeStores, ProductSizes, AttributeDetail, AttributeMetadata, ProductsComparisonResponse, ProductCompareResponse, ProductFrequentlyComparedSimilarResponse, ProductVariantItemResponse, ProductVariantResponse, ProductVariantsResponse, StoreDetail, ProductStockPrice, CompanyDetail, Seller, ProductStockStatusItem, ProductStockStatusResponse, Page, ProductStockPolling, ProductVariantListingResponse, ProductListingDetail, ProductFiltersValue, ProductFiltersKey, ProductFilters, ProductSortOn, ProductListingResponse, ImageUrls, BrandItem, BrandListingResponse, BrandDetailResponse, CategoryBanner, ThirdLevelChild, SecondLevelChild, Child, CategoryItems, DepartmentCategoryTree, DepartmentIdentifier, CategoryListingResponse, CategoryMetaResponse, HomeListingResponse, Department, DepartmentResponse, AutocompleteItem, AutoCompleteResponse, CollectionQuery, GetCollectionDetailNest, CollectionListingFilterTag, CollectionListingFilterType, CollectionListingFilter, GetCollectionListingResponse, CollectionDetailResponse, GetFollowListingResponse, FollowPostResponse, FollowerCountResponse, FollowIdsData, FollowIdsResponse, LatLong, Store, StoreListingResponse, StoreDepartments, CompanyStore, SellerPhoneNumber, StoreManagerSerializer, StoreAddressSerializer, AppStore, ApplicationStoreListing, Time, StoreTiming, StoreDetails, UserDetail, Size, ProductGroupPrice, ProductDetails, ProductInGroup, ProductGroupingModel, ProductBundle, StoreV3, ArticleAssignmentV3, StrategyWiseListingSchemaV3, DetailsSchemaV3, SellerGroupAttributes, ReturnConfigSchemaV3, ProductSetDistributionSizeV3, ProductSetDistributionV3, ProductSetV3, ProductStockPriceV3, ProductStockUnitPriceV3, MarketPlaceSttributesSchemaV3, SellerV3, PromiseSchema, ProductSizePriceResponseV3, ProductSizeSellerFilterSchemaV3, ProductSizeSellersResponseV3 };
1149
+ export { ProductDetailCustomOrder, Meta, Media, ProductListingActionPage, ProductListingAction, ProductBrand, ProductDepartment, ProductCategoryMap, NetQuantity, CustomMetaFields, ApplicationItemSEO, ProductDetailAttribute, ProductDetailGroupedAttribute, ApplicationItemMOQ, Price, ProductListingPrice, ProductSizesPrice, ProductDetail, ErrorResponseSchema, Dimension, Weight, DiscountMeta, ProductSize, SizeChartValues, ColumnHeader, ColumnHeaders, SizeChart, ProductSizeStores, ProductSizes, AttributeDetail, AttributeMetadata, ProductsComparisonResponseSchema, ProductCompareResponseSchema, ProductFrequentlyComparedSimilarResponseSchema, ProductVariantItemResponseSchema, ProductVariantResponseSchema, ProductVariantsResponseSchema, StoreDetail, ProductStockPrice, CompanyDetail, Seller, ProductStockStatusItem, ProductStockStatusResponseSchema, Page, ProductStockPolling, ProductVariantListingResponseSchema, ProductListingDetail, ProductFiltersValue, ProductFiltersKey, ProductFilters, ProductSortOn, ProductListingResponseSchema, ImageUrls, BrandItem, BrandListingResponseSchema, BrandDetailResponseSchema, CategoryBanner, ThirdLevelChild, SecondLevelChild, Child, CategoryItems, DepartmentCategoryTree, DepartmentIdentifier, CategoryListingResponseSchema, CategoryMetaResponseSchema, HomeListingResponseSchema, Department, DepartmentResponseSchema, AutocompleteItem, AutoCompleteResponseSchema, CollectionQuery, GetCollectionDetailNest, CollectionListingFilterTag, CollectionListingFilterType, CollectionListingFilter, GetCollectionListingResponseSchema, CollectionDetailResponseSchema, GetFollowListingResponseSchema, FollowPostResponseSchema, FollowerCountResponseSchema, FollowIdsData, FollowIdsResponseSchema, LatLong, StoreContact, Store, StoreListingResponseSchema, StoreDepartments, CompanyStore, SellerPhoneNumber, StoreManagerSchema, StoreAddressSchema, AppStore, ApplicationStoreListing, Time, StoreTiming, StoreDetails, UserDetail, Size, ProductGroupPrice, ProductDetails, ProductInGroup, ProductGroupingModel, ProductBundle, StoreV3, ArticleAssignmentV3, StrategyWiseListingSchemaV3, DetailsSchemaV3, SellerGroupAttributes, ReturnConfigSchemaV3, ProductSetDistributionSizeV3, ProductSetDistributionV3, ProductSetV3, ProductStockPriceV3, ProductStockUnitPriceV3, MarketPlaceSttributesSchemaV3, SellerV3, PromiseSchema, ProductSizePriceResponseV3, ProductSizeSellerFilterSchemaV3, ProductSizeSellersResponseV3, Identifier };
1134
1150
  }
1135
1151
  /** @returns {ProductDetailCustomOrder} */
1136
1152
  declare function ProductDetailCustomOrder(): ProductDetailCustomOrder;
@@ -1501,9 +1517,9 @@ type ProductDetail = {
1501
1517
  */
1502
1518
  teaser_tag?: string;
1503
1519
  };
1504
- /** @returns {ErrorResponse} */
1505
- declare function ErrorResponse(): ErrorResponse;
1506
- type ErrorResponse = {
1520
+ /** @returns {ErrorResponseSchema} */
1521
+ declare function ErrorResponseSchema(): ErrorResponseSchema;
1522
+ type ErrorResponseSchema = {
1507
1523
  /**
1508
1524
  * - A brief description of the error.
1509
1525
  */
@@ -1745,9 +1761,9 @@ type AttributeMetadata = {
1745
1761
  */
1746
1762
  details?: AttributeDetail[];
1747
1763
  };
1748
- /** @returns {ProductsComparisonResponse} */
1749
- declare function ProductsComparisonResponse(): ProductsComparisonResponse;
1750
- type ProductsComparisonResponse = {
1764
+ /** @returns {ProductsComparisonResponseSchema} */
1765
+ declare function ProductsComparisonResponseSchema(): ProductsComparisonResponseSchema;
1766
+ type ProductsComparisonResponseSchema = {
1751
1767
  /**
1752
1768
  * - List of product details for comparison.
1753
1769
  */
@@ -1758,9 +1774,9 @@ type ProductsComparisonResponse = {
1758
1774
  */
1759
1775
  attributes_metadata?: AttributeMetadata[];
1760
1776
  };
1761
- /** @returns {ProductCompareResponse} */
1762
- declare function ProductCompareResponse(): ProductCompareResponse;
1763
- type ProductCompareResponse = {
1777
+ /** @returns {ProductCompareResponseSchema} */
1778
+ declare function ProductCompareResponseSchema(): ProductCompareResponseSchema;
1779
+ type ProductCompareResponseSchema = {
1764
1780
  /**
1765
1781
  * - Title or name of the comparison.
1766
1782
  */
@@ -1779,14 +1795,14 @@ type ProductCompareResponse = {
1779
1795
  */
1780
1796
  subtitle?: string;
1781
1797
  };
1782
- /** @returns {ProductFrequentlyComparedSimilarResponse} */
1783
- declare function ProductFrequentlyComparedSimilarResponse(): ProductFrequentlyComparedSimilarResponse;
1784
- type ProductFrequentlyComparedSimilarResponse = {
1785
- similars?: ProductCompareResponse;
1798
+ /** @returns {ProductFrequentlyComparedSimilarResponseSchema} */
1799
+ declare function ProductFrequentlyComparedSimilarResponseSchema(): ProductFrequentlyComparedSimilarResponseSchema;
1800
+ type ProductFrequentlyComparedSimilarResponseSchema = {
1801
+ similars?: ProductCompareResponseSchema;
1786
1802
  };
1787
- /** @returns {ProductVariantItemResponse} */
1788
- declare function ProductVariantItemResponse(): ProductVariantItemResponse;
1789
- type ProductVariantItemResponse = {
1803
+ /** @returns {ProductVariantItemResponseSchema} */
1804
+ declare function ProductVariantItemResponseSchema(): ProductVariantItemResponseSchema;
1805
+ type ProductVariantItemResponseSchema = {
1790
1806
  /**
1791
1807
  * - Unique identifier for the product variant.
1792
1808
  */
@@ -1832,9 +1848,9 @@ type ProductVariantItemResponse = {
1832
1848
  _custom_json?: any;
1833
1849
  action?: ProductListingAction;
1834
1850
  };
1835
- /** @returns {ProductVariantResponse} */
1836
- declare function ProductVariantResponse(): ProductVariantResponse;
1837
- type ProductVariantResponse = {
1851
+ /** @returns {ProductVariantResponseSchema} */
1852
+ declare function ProductVariantResponseSchema(): ProductVariantResponseSchema;
1853
+ type ProductVariantResponseSchema = {
1838
1854
  /**
1839
1855
  * - The type of display for the product
1840
1856
  * variant (e.g., image, text, image, color).
@@ -1851,7 +1867,7 @@ type ProductVariantResponse = {
1851
1867
  /**
1852
1868
  * - List of product variant items.
1853
1869
  */
1854
- items?: ProductVariantItemResponse[];
1870
+ items?: ProductVariantItemResponseSchema[];
1855
1871
  /**
1856
1872
  * - Attribute identifier of the variant.
1857
1873
  */
@@ -1862,14 +1878,14 @@ type ProductVariantResponse = {
1862
1878
  */
1863
1879
  logo?: string;
1864
1880
  };
1865
- /** @returns {ProductVariantsResponse} */
1866
- declare function ProductVariantsResponse(): ProductVariantsResponse;
1867
- type ProductVariantsResponse = {
1881
+ /** @returns {ProductVariantsResponseSchema} */
1882
+ declare function ProductVariantsResponseSchema(): ProductVariantsResponseSchema;
1883
+ type ProductVariantsResponseSchema = {
1868
1884
  /**
1869
- * - A list of product variant
1870
- * responses, each detailing a specific variant.
1885
+ * - A list of product
1886
+ * variant responses, each detailing a specific variant.
1871
1887
  */
1872
- variants?: ProductVariantResponse[];
1888
+ variants?: ProductVariantResponseSchema[];
1873
1889
  };
1874
1890
  /** @returns {StoreDetail} */
1875
1891
  declare function StoreDetail(): StoreDetail;
@@ -1958,14 +1974,11 @@ type ProductStockStatusItem = {
1958
1974
  */
1959
1975
  item_id?: number;
1960
1976
  seller?: Seller;
1961
- /**
1962
- * - NA.
1963
- */
1964
- identifier?: any;
1977
+ identifier?: Identifier;
1965
1978
  };
1966
- /** @returns {ProductStockStatusResponse} */
1967
- declare function ProductStockStatusResponse(): ProductStockStatusResponse;
1968
- type ProductStockStatusResponse = {
1979
+ /** @returns {ProductStockStatusResponseSchema} */
1980
+ declare function ProductStockStatusResponseSchema(): ProductStockStatusResponseSchema;
1981
+ type ProductStockStatusResponseSchema = {
1969
1982
  /**
1970
1983
  * - NA.
1971
1984
  */
@@ -2012,18 +2025,18 @@ type ProductStockPolling = {
2012
2025
  items?: ProductStockStatusItem[];
2013
2026
  page: Page;
2014
2027
  };
2015
- /** @returns {ProductVariantListingResponse} */
2016
- declare function ProductVariantListingResponse(): ProductVariantListingResponse;
2017
- type ProductVariantListingResponse = {
2028
+ /** @returns {ProductVariantListingResponseSchema} */
2029
+ declare function ProductVariantListingResponseSchema(): ProductVariantListingResponseSchema;
2030
+ type ProductVariantListingResponseSchema = {
2018
2031
  /**
2019
2032
  * - Header or title for the product variant section.
2020
2033
  */
2021
2034
  header?: string;
2022
2035
  /**
2023
- * - List of Upto 5 product
2024
- * variant items.
2036
+ * - List of Upto 5
2037
+ * product variant items.
2025
2038
  */
2026
- items?: ProductVariantItemResponse[];
2039
+ items?: ProductVariantItemResponseSchema[];
2027
2040
  /**
2028
2041
  * - The total number of product variants available.
2029
2042
  */
@@ -2144,10 +2157,10 @@ type ProductListingDetail = {
2144
2157
  */
2145
2158
  attributes?: any;
2146
2159
  /**
2147
- * - List of product
2148
- * variants available for the product.
2160
+ * - List of
2161
+ * product variants available for the product.
2149
2162
  */
2150
- variants?: ProductVariantListingResponse[];
2163
+ variants?: ProductVariantListingResponseSchema[];
2151
2164
  /**
2152
2165
  * - Discount details or percentage applied to the product.
2153
2166
  */
@@ -2303,9 +2316,9 @@ type ProductSortOn = {
2303
2316
  */
2304
2317
  display?: string;
2305
2318
  };
2306
- /** @returns {ProductListingResponse} */
2307
- declare function ProductListingResponse(): ProductListingResponse;
2308
- type ProductListingResponse = {
2319
+ /** @returns {ProductListingResponseSchema} */
2320
+ declare function ProductListingResponseSchema(): ProductListingResponseSchema;
2321
+ type ProductListingResponseSchema = {
2309
2322
  /**
2310
2323
  * - List of product details included
2311
2324
  * in the response.
@@ -2364,18 +2377,18 @@ type BrandItem = {
2364
2377
  slug?: string;
2365
2378
  action?: ProductListingAction;
2366
2379
  };
2367
- /** @returns {BrandListingResponse} */
2368
- declare function BrandListingResponse(): BrandListingResponse;
2369
- type BrandListingResponse = {
2380
+ /** @returns {BrandListingResponseSchema} */
2381
+ declare function BrandListingResponseSchema(): BrandListingResponseSchema;
2382
+ type BrandListingResponseSchema = {
2370
2383
  /**
2371
2384
  * - List of brand items included in the response.
2372
2385
  */
2373
2386
  items?: BrandItem[];
2374
2387
  page: Page;
2375
2388
  };
2376
- /** @returns {BrandDetailResponse} */
2377
- declare function BrandDetailResponse(): BrandDetailResponse;
2378
- type BrandDetailResponse = {
2389
+ /** @returns {BrandDetailResponseSchema} */
2390
+ declare function BrandDetailResponseSchema(): BrandDetailResponseSchema;
2391
+ type BrandDetailResponseSchema = {
2379
2392
  logo?: Media;
2380
2393
  /**
2381
2394
  * - The unique identifier for the brand.
@@ -2530,9 +2543,9 @@ type DepartmentIdentifier = {
2530
2543
  */
2531
2544
  slug?: string;
2532
2545
  };
2533
- /** @returns {CategoryListingResponse} */
2534
- declare function CategoryListingResponse(): CategoryListingResponse;
2535
- type CategoryListingResponse = {
2546
+ /** @returns {CategoryListingResponseSchema} */
2547
+ declare function CategoryListingResponseSchema(): CategoryListingResponseSchema;
2548
+ type CategoryListingResponseSchema = {
2536
2549
  /**
2537
2550
  * - List of department category trees.
2538
2551
  */
@@ -2542,9 +2555,9 @@ type CategoryListingResponse = {
2542
2555
  */
2543
2556
  departments?: DepartmentIdentifier[];
2544
2557
  };
2545
- /** @returns {CategoryMetaResponse} */
2546
- declare function CategoryMetaResponse(): CategoryMetaResponse;
2547
- type CategoryMetaResponse = {
2558
+ /** @returns {CategoryMetaResponseSchema} */
2559
+ declare function CategoryMetaResponseSchema(): CategoryMetaResponseSchema;
2560
+ type CategoryMetaResponseSchema = {
2548
2561
  logo?: Media;
2549
2562
  /**
2550
2563
  * - Unique identifier for the category.
@@ -2561,9 +2574,9 @@ type CategoryMetaResponse = {
2561
2574
  */
2562
2575
  name?: string;
2563
2576
  };
2564
- /** @returns {HomeListingResponse} */
2565
- declare function HomeListingResponse(): HomeListingResponse;
2566
- type HomeListingResponse = {
2577
+ /** @returns {HomeListingResponseSchema} */
2578
+ declare function HomeListingResponseSchema(): HomeListingResponseSchema;
2579
+ type HomeListingResponseSchema = {
2567
2580
  /**
2568
2581
  * - List of product details
2569
2582
  * displayed on the home page.
@@ -2599,9 +2612,9 @@ type Department = {
2599
2612
  */
2600
2613
  slug?: string;
2601
2614
  };
2602
- /** @returns {DepartmentResponse} */
2603
- declare function DepartmentResponse(): DepartmentResponse;
2604
- type DepartmentResponse = {
2615
+ /** @returns {DepartmentResponseSchema} */
2616
+ declare function DepartmentResponseSchema(): DepartmentResponseSchema;
2617
+ type DepartmentResponseSchema = {
2605
2618
  /**
2606
2619
  * - List of department detail objects.
2607
2620
  */
@@ -2627,9 +2640,9 @@ type AutocompleteItem = {
2627
2640
  _custom_json?: any;
2628
2641
  action?: ProductListingAction;
2629
2642
  };
2630
- /** @returns {AutoCompleteResponse} */
2631
- declare function AutoCompleteResponse(): AutoCompleteResponse;
2632
- type AutoCompleteResponse = {
2643
+ /** @returns {AutoCompleteResponseSchema} */
2644
+ declare function AutoCompleteResponseSchema(): AutoCompleteResponseSchema;
2645
+ type AutoCompleteResponseSchema = {
2633
2646
  /**
2634
2647
  * - List of autocomplete items suggested
2635
2648
  * based on user input.
@@ -2797,9 +2810,9 @@ type CollectionListingFilter = {
2797
2810
  */
2798
2811
  type?: CollectionListingFilterType[];
2799
2812
  };
2800
- /** @returns {GetCollectionListingResponse} */
2801
- declare function GetCollectionListingResponse(): GetCollectionListingResponse;
2802
- type GetCollectionListingResponse = {
2813
+ /** @returns {GetCollectionListingResponseSchema} */
2814
+ declare function GetCollectionListingResponseSchema(): GetCollectionListingResponseSchema;
2815
+ type GetCollectionListingResponseSchema = {
2803
2816
  /**
2804
2817
  * - An array of collection
2805
2818
  * details. Each item in the array represents a collection with various
@@ -2809,9 +2822,9 @@ type GetCollectionListingResponse = {
2809
2822
  filters?: CollectionListingFilter;
2810
2823
  page: Page;
2811
2824
  };
2812
- /** @returns {CollectionDetailResponse} */
2813
- declare function CollectionDetailResponse(): CollectionDetailResponse;
2814
- type CollectionDetailResponse = {
2825
+ /** @returns {CollectionDetailResponseSchema} */
2826
+ declare function CollectionDetailResponseSchema(): CollectionDetailResponseSchema;
2827
+ type CollectionDetailResponseSchema = {
2815
2828
  /**
2816
2829
  * - Indicates whether the collection is active.
2817
2830
  */
@@ -2896,9 +2909,9 @@ type CollectionDetailResponse = {
2896
2909
  */
2897
2910
  app_id?: string;
2898
2911
  };
2899
- /** @returns {GetFollowListingResponse} */
2900
- declare function GetFollowListingResponse(): GetFollowListingResponse;
2901
- type GetFollowListingResponse = {
2912
+ /** @returns {GetFollowListingResponseSchema} */
2913
+ declare function GetFollowListingResponseSchema(): GetFollowListingResponseSchema;
2914
+ type GetFollowListingResponseSchema = {
2902
2915
  /**
2903
2916
  * - An array of product details that
2904
2917
  * the user is following. Each item includes information such as the product
@@ -2907,9 +2920,9 @@ type GetFollowListingResponse = {
2907
2920
  items: ProductListingDetail[];
2908
2921
  page: Page;
2909
2922
  };
2910
- /** @returns {FollowPostResponse} */
2911
- declare function FollowPostResponse(): FollowPostResponse;
2912
- type FollowPostResponse = {
2923
+ /** @returns {FollowPostResponseSchema} */
2924
+ declare function FollowPostResponseSchema(): FollowPostResponseSchema;
2925
+ type FollowPostResponseSchema = {
2913
2926
  /**
2914
2927
  * - A message indicating the result of the follow or
2915
2928
  * unfollow operation. This could be a confirmation message or an error message.
@@ -2921,9 +2934,9 @@ type FollowPostResponse = {
2921
2934
  */
2922
2935
  id: string;
2923
2936
  };
2924
- /** @returns {FollowerCountResponse} */
2925
- declare function FollowerCountResponse(): FollowerCountResponse;
2926
- type FollowerCountResponse = {
2937
+ /** @returns {FollowerCountResponseSchema} */
2938
+ declare function FollowerCountResponseSchema(): FollowerCountResponseSchema;
2939
+ type FollowerCountResponseSchema = {
2927
2940
  /**
2928
2941
  * - The number of followers for the item. This count
2929
2942
  * indicates how many users are following the specified item.
@@ -2949,9 +2962,9 @@ type FollowIdsData = {
2949
2962
  */
2950
2963
  brands?: number[];
2951
2964
  };
2952
- /** @returns {FollowIdsResponse} */
2953
- declare function FollowIdsResponse(): FollowIdsResponse;
2954
- type FollowIdsResponse = {
2965
+ /** @returns {FollowIdsResponseSchema} */
2966
+ declare function FollowIdsResponseSchema(): FollowIdsResponseSchema;
2967
+ type FollowIdsResponseSchema = {
2955
2968
  data?: FollowIdsData;
2956
2969
  };
2957
2970
  /** @returns {LatLong} */
@@ -2968,6 +2981,18 @@ type LatLong = {
2968
2981
  */
2969
2982
  type?: string;
2970
2983
  };
2984
+ /** @returns {StoreContact} */
2985
+ declare function StoreContact(): StoreContact;
2986
+ type StoreContact = {
2987
+ /**
2988
+ * - The contact number of the Store Manager.
2989
+ */
2990
+ number?: string;
2991
+ /**
2992
+ * - The country code for the contact number.
2993
+ */
2994
+ country_code?: number;
2995
+ };
2971
2996
  /** @returns {Store} */
2972
2997
  declare function Store(): Store;
2973
2998
  type Store = {
@@ -3013,10 +3038,14 @@ type Store = {
3013
3038
  * - The list of tags mapped to the store.
3014
3039
  */
3015
3040
  tags?: string[];
3041
+ /**
3042
+ * - List of contact numbers for the store.
3043
+ */
3044
+ contacts?: StoreContact[];
3016
3045
  };
3017
- /** @returns {StoreListingResponse} */
3018
- declare function StoreListingResponse(): StoreListingResponse;
3019
- type StoreListingResponse = {
3046
+ /** @returns {StoreListingResponseSchema} */
3047
+ declare function StoreListingResponseSchema(): StoreListingResponseSchema;
3048
+ type StoreListingResponseSchema = {
3020
3049
  /**
3021
3050
  * - An array of store details. Each store includes
3022
3051
  * information such as name, address, and geographic coordinates.
@@ -3091,9 +3120,9 @@ type SellerPhoneNumber = {
3091
3120
  */
3092
3121
  number: string;
3093
3122
  };
3094
- /** @returns {StoreManagerSerializer} */
3095
- declare function StoreManagerSerializer(): StoreManagerSerializer;
3096
- type StoreManagerSerializer = {
3123
+ /** @returns {StoreManagerSchema} */
3124
+ declare function StoreManagerSchema(): StoreManagerSchema;
3125
+ type StoreManagerSchema = {
3097
3126
  /**
3098
3127
  * - The name of the store manager.
3099
3128
  */
@@ -3104,9 +3133,9 @@ type StoreManagerSerializer = {
3104
3133
  email?: string;
3105
3134
  mobile_no?: SellerPhoneNumber;
3106
3135
  };
3107
- /** @returns {StoreAddressSerializer} */
3108
- declare function StoreAddressSerializer(): StoreAddressSerializer;
3109
- type StoreAddressSerializer = {
3136
+ /** @returns {StoreAddressSchema} */
3137
+ declare function StoreAddressSchema(): StoreAddressSchema;
3138
+ type StoreAddressSchema = {
3110
3139
  /**
3111
3140
  * - The latitude of the store's location.
3112
3141
  */
@@ -3156,12 +3185,12 @@ type AppStore = {
3156
3185
  */
3157
3186
  departments?: StoreDepartments[];
3158
3187
  company?: CompanyStore;
3159
- manager?: StoreManagerSerializer;
3188
+ manager?: StoreManagerSchema;
3160
3189
  /**
3161
3190
  * - A unique code for identifying the store.
3162
3191
  */
3163
3192
  store_code?: string;
3164
- address?: StoreAddressSerializer;
3193
+ address?: StoreAddressSchema;
3165
3194
  /**
3166
3195
  * - The name of the store.
3167
3196
  */
@@ -3223,7 +3252,7 @@ type StoreDetails = {
3223
3252
  */
3224
3253
  departments?: StoreDepartments[];
3225
3254
  company?: CompanyStore;
3226
- manager?: StoreManagerSerializer;
3255
+ manager?: StoreManagerSchema;
3227
3256
  /**
3228
3257
  * - A unique code for identifying the store.
3229
3258
  */
@@ -3233,7 +3262,7 @@ type StoreDetails = {
3233
3262
  * store throughout the week.
3234
3263
  */
3235
3264
  timing?: StoreTiming[];
3236
- address?: StoreAddressSerializer;
3265
+ address?: StoreAddressSchema;
3237
3266
  /**
3238
3267
  * - Custom JSON data for the store.
3239
3268
  */
@@ -3387,10 +3416,7 @@ type ProductDetails = {
3387
3416
  * - The rating of the product.
3388
3417
  */
3389
3418
  rating?: number;
3390
- /**
3391
- * - A dictionary of product identifiers.
3392
- */
3393
- identifier?: any;
3419
+ identifier?: Identifier;
3394
3420
  /**
3395
3421
  * - A list of highlights for the product.
3396
3422
  */
@@ -3855,3 +3881,29 @@ type ProductSizeSellersResponseV3 = {
3855
3881
  */
3856
3882
  sort_on?: ProductSizeSellerFilterSchemaV3[];
3857
3883
  };
3884
+ /** @returns {Identifier} */
3885
+ declare function Identifier(): Identifier;
3886
+ type Identifier = {
3887
+ /**
3888
+ * - The European Article Number (EAN) of the item.
3889
+ */
3890
+ ean?: string;
3891
+ /**
3892
+ * - The Stock Keeping Unit (SKU) code of the item.
3893
+ */
3894
+ sku_code?: string;
3895
+ /**
3896
+ * - The Alternative Lookup Product of the item.
3897
+ */
3898
+ alu?: string;
3899
+ /**
3900
+ * - Universal Product Code of the item.
3901
+ */
3902
+ upc?: string;
3903
+ /**
3904
+ * - ISBN (International Standard Book Number) is a
3905
+ * unique identifier used globally to identify books and other non-periodical
3906
+ * publications
3907
+ */
3908
+ isbn?: string;
3909
+ };