@gofynd/fdk-client-javascript 1.1.6 → 1.3.0

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 (348) hide show
  1. package/README.md +52 -3
  2. package/index.js +0 -3
  3. package/package.json +1 -2
  4. package/sdk/application/ApplicationAPIClient.d.ts +15 -1
  5. package/sdk/application/ApplicationAPIClient.js +12 -3
  6. package/sdk/application/ApplicationClient.d.ts +36 -6
  7. package/sdk/application/ApplicationClient.js +30 -43
  8. package/sdk/application/ApplicationConfig.d.ts +92 -12
  9. package/sdk/application/ApplicationConfig.js +48 -14
  10. package/sdk/application/Cart/CartApplicationClient.d.ts +200 -357
  11. package/sdk/application/Cart/CartApplicationClient.js +711 -483
  12. package/sdk/application/Cart/CartApplicationModel.d.ts +2054 -96
  13. package/sdk/application/Cart/CartApplicationModel.js +1224 -93
  14. package/sdk/application/Cart/CartApplicationValidator.d.ts +508 -30
  15. package/sdk/application/Cart/CartApplicationValidator.js +270 -15
  16. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +274 -422
  17. package/sdk/application/Catalog/CatalogApplicationClient.js +865 -630
  18. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2320 -117
  19. package/sdk/application/Catalog/CatalogApplicationModel.js +1566 -172
  20. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +798 -31
  21. package/sdk/application/Catalog/CatalogApplicationValidator.js +318 -3
  22. package/sdk/application/Common/CommonApplicationClient.d.ts +16 -21
  23. package/sdk/application/Common/CommonApplicationClient.js +52 -33
  24. package/sdk/application/Common/CommonApplicationModel.d.ts +368 -19
  25. package/sdk/application/Common/CommonApplicationModel.js +192 -40
  26. package/sdk/application/Common/CommonApplicationValidator.d.ts +42 -4
  27. package/sdk/application/Common/CommonApplicationValidator.js +21 -3
  28. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +31 -18
  29. package/sdk/application/Communication/CommunicationApplicationClient.js +86 -47
  30. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +157 -14
  31. package/sdk/application/Communication/CommunicationApplicationModel.js +104 -23
  32. package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +27 -4
  33. package/sdk/application/Communication/CommunicationApplicationValidator.js +21 -5
  34. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +149 -118
  35. package/sdk/application/Configuration/ConfigurationApplicationClient.js +457 -260
  36. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +2235 -110
  37. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1113 -193
  38. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +160 -8
  39. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +88 -4
  40. package/sdk/application/Content/ContentApplicationClient.d.ts +149 -139
  41. package/sdk/application/Content/ContentApplicationClient.js +489 -278
  42. package/sdk/application/Content/ContentApplicationModel.d.ts +1010 -105
  43. package/sdk/application/Content/ContentApplicationModel.js +737 -396
  44. package/sdk/application/Content/ContentApplicationValidator.d.ts +214 -12
  45. package/sdk/application/Content/ContentApplicationValidator.js +113 -3
  46. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +23 -29
  47. package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -47
  48. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +148 -20
  49. package/sdk/application/FileStorage/FileStorageApplicationModel.js +100 -87
  50. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +55 -5
  51. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +33 -6
  52. package/sdk/application/Lead/LeadApplicationClient.d.ts +57 -53
  53. package/sdk/application/Lead/LeadApplicationClient.js +188 -103
  54. package/sdk/application/Lead/LeadApplicationModel.d.ts +686 -54
  55. package/sdk/application/Lead/LeadApplicationModel.js +330 -244
  56. package/sdk/application/Lead/LeadApplicationValidator.d.ts +91 -9
  57. package/sdk/application/Lead/LeadApplicationValidator.js +51 -6
  58. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +40 -33
  59. package/sdk/application/Logistic/LogisticApplicationClient.js +131 -73
  60. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +399 -28
  61. package/sdk/application/Logistic/LogisticApplicationModel.js +293 -24
  62. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +48 -6
  63. package/sdk/application/Logistic/LogisticApplicationValidator.js +34 -6
  64. package/sdk/application/Order/OrderApplicationClient.d.ts +93 -133
  65. package/sdk/application/Order/OrderApplicationClient.js +329 -217
  66. package/sdk/application/Order/OrderApplicationModel.d.ts +1101 -66
  67. package/sdk/application/Order/OrderApplicationModel.js +776 -57
  68. package/sdk/application/Order/OrderApplicationValidator.d.ts +249 -14
  69. package/sdk/application/Order/OrderApplicationValidator.js +114 -5
  70. package/sdk/application/Payment/PaymentApplicationClient.d.ts +400 -366
  71. package/sdk/application/Payment/PaymentApplicationClient.js +1176 -703
  72. package/sdk/application/Payment/PaymentApplicationModel.d.ts +3125 -99
  73. package/sdk/application/Payment/PaymentApplicationModel.js +1158 -62
  74. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +494 -41
  75. package/sdk/application/Payment/PaymentApplicationValidator.js +297 -25
  76. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +205 -350
  77. package/sdk/application/PosCart/PosCartApplicationClient.js +720 -491
  78. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +1823 -89
  79. package/sdk/application/PosCart/PosCartApplicationModel.js +1117 -85
  80. package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +480 -29
  81. package/sdk/application/PosCart/PosCartApplicationValidator.js +262 -15
  82. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +58 -47
  83. package/sdk/application/Rewards/RewardsApplicationClient.js +187 -102
  84. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +343 -22
  85. package/sdk/application/Rewards/RewardsApplicationModel.js +230 -15
  86. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +70 -7
  87. package/sdk/application/Rewards/RewardsApplicationValidator.js +45 -6
  88. package/sdk/application/Share/ShareApplicationClient.d.ts +52 -50
  89. package/sdk/application/Share/ShareApplicationClient.js +185 -97
  90. package/sdk/application/Share/ShareApplicationModel.d.ts +198 -15
  91. package/sdk/application/Share/ShareApplicationModel.js +131 -31
  92. package/sdk/application/Share/ShareApplicationValidator.d.ts +86 -8
  93. package/sdk/application/Share/ShareApplicationValidator.js +48 -4
  94. package/sdk/application/Theme/ThemeApplicationClient.d.ts +30 -27
  95. package/sdk/application/Theme/ThemeApplicationClient.js +102 -56
  96. package/sdk/application/Theme/ThemeApplicationModel.d.ts +1291 -48
  97. package/sdk/application/Theme/ThemeApplicationModel.js +895 -134
  98. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +49 -5
  99. package/sdk/application/Theme/ThemeApplicationValidator.js +26 -3
  100. package/sdk/application/User/UserApplicationClient.d.ts +260 -305
  101. package/sdk/application/User/UserApplicationClient.js +910 -522
  102. package/sdk/application/User/UserApplicationModel.d.ts +992 -101
  103. package/sdk/application/User/UserApplicationModel.js +699 -248
  104. package/sdk/application/User/UserApplicationValidator.d.ts +457 -33
  105. package/sdk/application/User/UserApplicationValidator.js +265 -31
  106. package/sdk/common/AxiosHelper.js +7 -2
  107. package/sdk/common/FDKError.d.ts +3 -0
  108. package/sdk/common/FDKError.js +8 -0
  109. package/sdk/common/Paginator.d.ts +27 -12
  110. package/sdk/common/Paginator.js +15 -0
  111. package/sdk/common/RequestSigner.js +0 -1
  112. package/sdk/common/utils.d.ts +3 -0
  113. package/sdk/common/utils.js +29 -0
  114. package/sdk/partner/PartnerAPIClient.d.ts +16 -1
  115. package/sdk/partner/PartnerAPIClient.js +12 -2
  116. package/sdk/partner/PartnerClient.d.ts +22 -3
  117. package/sdk/partner/PartnerClient.js +20 -0
  118. package/sdk/partner/PartnerConfig.d.ts +40 -14
  119. package/sdk/partner/PartnerConfig.js +31 -6
  120. package/sdk/partner/Theme/ThemePartnerClient.d.ts +299 -0
  121. package/sdk/partner/Theme/ThemePartnerClient.js +768 -0
  122. package/sdk/partner/Theme/ThemePartnerModel.d.ts +1706 -0
  123. package/sdk/partner/Theme/ThemePartnerModel.js +1409 -0
  124. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +22 -0
  125. package/sdk/partner/Theme/ThemePartnerValidator.js +157 -0
  126. package/sdk/partner/index.d.ts +3 -1
  127. package/sdk/partner/index.js +3 -1
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +30 -25
  129. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +104 -53
  130. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +190 -17
  131. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +132 -15
  132. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +52 -5
  133. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +30 -4
  134. package/sdk/platform/Billing/BillingPlatformClient.d.ts +133 -97
  135. package/sdk/platform/Billing/BillingPlatformClient.js +561 -191
  136. package/sdk/platform/Billing/BillingPlatformModel.d.ts +1071 -68
  137. package/sdk/platform/Billing/BillingPlatformModel.js +762 -151
  138. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +175 -12
  139. package/sdk/platform/Billing/BillingPlatformValidator.js +118 -8
  140. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +454 -635
  141. package/sdk/platform/Cart/CartPlatformApplicationClient.js +1646 -957
  142. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +827 -57
  143. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +492 -34
  144. package/sdk/platform/Cart/CartPlatformModel.d.ts +3839 -175
  145. package/sdk/platform/Cart/CartPlatformModel.js +2423 -217
  146. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +528 -638
  147. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1600 -984
  148. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1081 -49
  149. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +482 -23
  150. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +652 -826
  151. package/sdk/platform/Catalog/CatalogPlatformClient.js +1979 -1264
  152. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6869 -326
  153. package/sdk/platform/Catalog/CatalogPlatformModel.js +4215 -351
  154. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +1361 -71
  155. package/sdk/platform/Catalog/CatalogPlatformValidator.js +624 -30
  156. package/sdk/platform/Common/CommonPlatformClient.d.ts +16 -21
  157. package/sdk/platform/Common/CommonPlatformClient.js +50 -33
  158. package/sdk/platform/Common/CommonPlatformModel.d.ts +423 -19
  159. package/sdk/platform/Common/CommonPlatformModel.js +214 -40
  160. package/sdk/platform/Common/CommonPlatformValidator.d.ts +37 -4
  161. package/sdk/platform/Common/CommonPlatformValidator.js +20 -3
  162. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +731 -303
  163. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +3095 -785
  164. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +699 -41
  165. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +463 -27
  166. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +19 -5
  167. package/sdk/platform/Communication/CommunicationPlatformClient.js +59 -19
  168. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1708 -102
  169. package/sdk/platform/Communication/CommunicationPlatformModel.js +1360 -235
  170. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +16 -3
  171. package/sdk/platform/Communication/CommunicationPlatformValidator.js +11 -3
  172. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +127 -111
  173. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +435 -225
  174. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +882 -43
  175. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +666 -78
  176. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +184 -13
  177. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +105 -10
  178. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +327 -240
  179. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +922 -438
  180. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +297 -22
  181. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +191 -17
  182. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +184 -178
  183. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +555 -311
  184. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +4337 -188
  185. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2178 -248
  186. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +332 -19
  187. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +153 -10
  188. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +605 -578
  189. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1996 -987
  190. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +872 -62
  191. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +487 -35
  192. package/sdk/platform/Content/ContentPlatformModel.d.ts +1472 -108
  193. package/sdk/platform/Content/ContentPlatformModel.js +1085 -204
  194. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +85 -82
  195. package/sdk/platform/Discount/DiscountPlatformClient.js +333 -175
  196. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +281 -15
  197. package/sdk/platform/Discount/DiscountPlatformModel.js +189 -10
  198. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +185 -13
  199. package/sdk/platform/Discount/DiscountPlatformValidator.js +88 -8
  200. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +109 -52
  201. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +570 -105
  202. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +141 -6
  203. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +118 -7
  204. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +43 -63
  205. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +153 -135
  206. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +426 -20
  207. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +379 -40
  208. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +106 -8
  209. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +60 -8
  210. package/sdk/platform/Finance/FinancePlatformClient.d.ts +260 -129
  211. package/sdk/platform/Finance/FinancePlatformClient.js +1182 -194
  212. package/sdk/platform/Finance/FinancePlatformModel.d.ts +1267 -50
  213. package/sdk/platform/Finance/FinancePlatformModel.js +1252 -38
  214. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +233 -15
  215. package/sdk/platform/Finance/FinancePlatformValidator.js +229 -16
  216. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +111 -97
  217. package/sdk/platform/Inventory/InventoryPlatformClient.js +330 -199
  218. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +1354 -61
  219. package/sdk/platform/Inventory/InventoryPlatformModel.js +916 -83
  220. package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +168 -12
  221. package/sdk/platform/Inventory/InventoryPlatformValidator.js +82 -6
  222. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +100 -106
  223. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +372 -186
  224. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +180 -14
  225. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +94 -9
  226. package/sdk/platform/Lead/LeadPlatformClient.d.ts +89 -104
  227. package/sdk/platform/Lead/LeadPlatformClient.js +305 -180
  228. package/sdk/platform/Lead/LeadPlatformModel.d.ts +1045 -54
  229. package/sdk/platform/Lead/LeadPlatformModel.js +504 -142
  230. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +173 -12
  231. package/sdk/platform/Lead/LeadPlatformValidator.js +92 -15
  232. package/sdk/platform/OAuthClient.js +6 -2
  233. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +20 -14
  234. package/sdk/platform/Order/OrderPlatformApplicationClient.js +58 -29
  235. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +26 -4
  236. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  237. package/sdk/platform/Order/OrderPlatformClient.d.ts +437 -556
  238. package/sdk/platform/Order/OrderPlatformClient.js +1500 -760
  239. package/sdk/platform/Order/OrderPlatformModel.d.ts +5225 -247
  240. package/sdk/platform/Order/OrderPlatformModel.js +3473 -260
  241. package/sdk/platform/Order/OrderPlatformValidator.d.ts +859 -37
  242. package/sdk/platform/Order/OrderPlatformValidator.js +435 -23
  243. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +16 -42
  244. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -155
  245. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +37 -6
  246. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +19 -17
  247. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +78 -45
  248. package/sdk/platform/Partner/PartnerPlatformModel.js +43 -369
  249. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +418 -288
  250. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +1509 -505
  251. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +438 -30
  252. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +312 -19
  253. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +83 -73
  254. package/sdk/platform/Payment/PaymentPlatformClient.js +259 -154
  255. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3200 -93
  256. package/sdk/platform/Payment/PaymentPlatformModel.js +1334 -36
  257. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +111 -11
  258. package/sdk/platform/Payment/PaymentPlatformValidator.js +68 -7
  259. package/sdk/platform/PlatformAPIClient.d.ts +16 -1
  260. package/sdk/platform/PlatformAPIClient.js +9 -1
  261. package/sdk/platform/PlatformApplicationClient.d.ts +22 -1798
  262. package/sdk/platform/PlatformApplicationClient.js +17 -1899
  263. package/sdk/platform/PlatformClient.d.ts +31 -12581
  264. package/sdk/platform/PlatformClient.js +30 -15089
  265. package/sdk/platform/PlatformConfig.d.ts +37 -11
  266. package/sdk/platform/PlatformConfig.js +32 -6
  267. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +96 -92
  268. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +344 -177
  269. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +149 -12
  270. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +82 -8
  271. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +360 -23
  272. package/sdk/platform/Rewards/RewardsPlatformModel.js +238 -22
  273. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +159 -92
  274. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +473 -208
  275. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +138 -13
  276. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +100 -14
  277. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +166 -178
  278. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +518 -329
  279. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +1408 -96
  280. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1034 -71
  281. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +280 -18
  282. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +134 -11
  283. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +41 -66
  284. package/sdk/platform/Share/SharePlatformApplicationClient.js +149 -116
  285. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +87 -7
  286. package/sdk/platform/Share/SharePlatformApplicationValidator.js +42 -5
  287. package/sdk/platform/Share/SharePlatformModel.d.ts +250 -16
  288. package/sdk/platform/Share/SharePlatformModel.js +167 -19
  289. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +229 -193
  290. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +976 -352
  291. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +345 -24
  292. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +206 -14
  293. package/sdk/platform/Theme/ThemePlatformClient.d.ts +37 -0
  294. package/sdk/platform/Theme/ThemePlatformClient.js +235 -0
  295. package/sdk/platform/Theme/ThemePlatformModel.d.ts +1527 -48
  296. package/sdk/platform/Theme/ThemePlatformModel.js +1099 -118
  297. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +32 -0
  298. package/sdk/platform/Theme/ThemePlatformValidator.js +38 -0
  299. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +138 -152
  300. package/sdk/platform/User/UserPlatformApplicationClient.js +470 -244
  301. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +242 -18
  302. package/sdk/platform/User/UserPlatformApplicationValidator.js +129 -12
  303. package/sdk/platform/User/UserPlatformModel.d.ts +653 -101
  304. package/sdk/platform/User/UserPlatformModel.js +467 -424
  305. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +153 -49
  306. package/sdk/platform/Webhook/WebhookPlatformClient.js +896 -88
  307. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +632 -16
  308. package/sdk/platform/Webhook/WebhookPlatformModel.js +502 -54
  309. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +170 -7
  310. package/sdk/platform/Webhook/WebhookPlatformValidator.js +157 -7
  311. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +16 -21
  312. package/sdk/public/Configuration/ConfigurationPublicClient.js +48 -33
  313. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +370 -19
  314. package/sdk/public/Configuration/ConfigurationPublicModel.js +191 -40
  315. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +42 -4
  316. package/sdk/public/Configuration/ConfigurationPublicValidator.js +21 -3
  317. package/sdk/public/Inventory/InventoryPublicClient.d.ts +54 -48
  318. package/sdk/public/Inventory/InventoryPublicClient.js +161 -98
  319. package/sdk/public/Inventory/InventoryPublicModel.d.ts +392 -21
  320. package/sdk/public/Inventory/InventoryPublicModel.js +267 -27
  321. package/sdk/public/Inventory/InventoryPublicValidator.d.ts +90 -8
  322. package/sdk/public/Inventory/InventoryPublicValidator.js +44 -4
  323. package/sdk/public/Partner/PartnerPublicClient.d.ts +22 -0
  324. package/sdk/public/Partner/PartnerPublicClient.js +110 -0
  325. package/sdk/public/Partner/PartnerPublicModel.d.ts +240 -0
  326. package/sdk/public/Partner/PartnerPublicModel.js +280 -0
  327. package/sdk/public/Partner/PartnerPublicValidator.d.ts +18 -0
  328. package/sdk/public/Partner/PartnerPublicValidator.js +19 -0
  329. package/sdk/public/PublicAPIClient.d.ts +14 -1
  330. package/sdk/public/PublicAPIClient.js +7 -1
  331. package/sdk/public/PublicClient.d.ts +21 -3
  332. package/sdk/public/PublicClient.js +20 -0
  333. package/sdk/public/PublicConfig.d.ts +27 -6
  334. package/sdk/public/PublicConfig.js +17 -1
  335. package/sdk/public/Webhook/WebhookPublicClient.d.ts +16 -11
  336. package/sdk/public/Webhook/WebhookPublicClient.js +48 -27
  337. package/sdk/public/Webhook/WebhookPublicModel.d.ts +52 -16
  338. package/sdk/public/Webhook/WebhookPublicModel.js +33 -113
  339. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +18 -3
  340. package/sdk/public/Webhook/WebhookPublicValidator.js +14 -4
  341. package/sdk/public/index.d.ts +1 -0
  342. package/sdk/public/index.js +2 -0
  343. package/sdk/application/ApplicationModels.d.ts +0 -3
  344. package/sdk/application/ApplicationModels.js +0 -20
  345. package/sdk/platform/Partner/PartnerPlatformClient.d.ts +0 -145
  346. package/sdk/platform/Partner/PartnerPlatformClient.js +0 -799
  347. package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +0 -14
  348. package/sdk/platform/Partner/PartnerPlatformValidator.js +0 -87
@@ -1,118 +1,2321 @@
1
- export = CatalogModel;
2
- declare class CatalogModel {
3
- static ApplicationItemMOQ(): any;
4
- static ApplicationItemSEO(): any;
5
- static ApplicationStoreListing(): any;
6
- static AppStore(): any;
7
- static ArticleAssignmentV3(): any;
8
- static AttributeDetail(): any;
9
- static AttributeMetadata(): any;
10
- static AutocompleteItem(): any;
11
- static AutoCompleteResponse(): any;
12
- static BrandDetailResponse(): any;
13
- static BrandItem(): any;
14
- static BrandListingResponse(): any;
15
- static CategoryBanner(): any;
16
- static CategoryItems(): any;
17
- static CategoryListingResponse(): any;
18
- static CategoryMetaResponse(): any;
19
- static Child(): any;
20
- static CollectionDetailResponse(): any;
21
- static CollectionListingFilter(): any;
22
- static CollectionListingFilterTag(): any;
23
- static CollectionListingFilterType(): any;
24
- static CollectionQuery(): any;
25
- static ColumnHeader(): any;
26
- static ColumnHeaders(): any;
27
- static CompanyDetail(): any;
28
- static CompanyStore(): any;
29
- static CustomMetaFields(): any;
30
- static Department(): any;
31
- static DepartmentCategoryTree(): any;
32
- static DepartmentIdentifier(): any;
33
- static DepartmentResponse(): any;
34
- static DetailsSchemaV3(): any;
35
- static Dimension(): any;
36
- static ErrorResponse(): any;
37
- static FollowerCountResponse(): any;
38
- static FollowIdsData(): any;
39
- static FollowIdsResponse(): any;
40
- static FollowPostResponse(): any;
41
- static GetCollectionDetailNest(): any;
42
- static GetCollectionListingResponse(): any;
43
- static GetFollowListingResponse(): any;
44
- static HomeListingResponse(): any;
45
- static ImageUrls(): any;
46
- static LatLong(): any;
47
- static MarketPlaceSttributesSchemaV3(): any;
48
- static Media(): any;
49
- static Meta(): any;
50
- static NetQuantity(): any;
51
- static Page(): any;
52
- static Price(): any;
53
- static ProductBrand(): any;
54
- static ProductBundle(): any;
55
- static ProductCategoryMap(): any;
56
- static ProductCompareResponse(): any;
57
- static ProductDetail(): any;
58
- static ProductDetailAttribute(): any;
59
- static ProductDetailCustomOrder(): any;
60
- static ProductDetailGroupedAttribute(): any;
61
- static ProductDetails(): any;
62
- static ProductFilters(): any;
63
- static ProductFiltersKey(): any;
64
- static ProductFiltersValue(): any;
65
- static ProductFrequentlyComparedSimilarResponse(): any;
66
- static ProductGroupingModel(): any;
67
- static ProductGroupPrice(): any;
68
- static ProductInGroup(): any;
69
- static ProductListingAction(): any;
70
- static ProductListingActionPage(): any;
71
- static ProductListingDetail(): any;
72
- static ProductListingPrice(): any;
73
- static ProductListingResponse(): any;
74
- static ProductsComparisonResponse(): any;
75
- static ProductSetDistributionSizeV3(): any;
76
- static ProductSetDistributionV3(): any;
77
- static ProductSetV3(): any;
78
- static ProductSize(): any;
79
- static ProductSizePriceResponseV3(): any;
80
- static ProductSizes(): any;
81
- static ProductSizeSellerFilterSchemaV3(): any;
82
- static ProductSizeSellersResponseV3(): any;
83
- static ProductSizeStores(): any;
84
- static ProductSortOn(): any;
85
- static ProductStockPolling(): any;
86
- static ProductStockPrice(): any;
87
- static ProductStockPriceV3(): any;
88
- static ProductStockStatusItem(): any;
89
- static ProductStockStatusResponse(): any;
90
- static ProductStockUnitPriceV3(): any;
91
- static ProductVariantItemResponse(): any;
92
- static ProductVariantListingResponse(): any;
93
- static ProductVariantResponse(): any;
94
- static ProductVariantsResponse(): any;
95
- static ReturnConfigSchemaV3(): any;
96
- static SecondLevelChild(): any;
97
- static Seller(): any;
98
- static SellerGroupAttributes(): any;
99
- static SellerPhoneNumber(): any;
100
- static SellerV3(): any;
101
- static Size(): any;
102
- static SizeChart(): any;
103
- static SizeChartValues(): any;
104
- static Store(): any;
105
- static StoreAddressSerializer(): any;
106
- static StoreDepartments(): any;
107
- static StoreDetail(): any;
108
- static StoreDetails(): any;
109
- static StoreListingResponse(): any;
110
- static StoreManagerSerializer(): any;
111
- static StoreTiming(): any;
112
- static StoreV3(): any;
113
- static StrategyWiseListingSchemaV3(): any;
114
- static ThirdLevelChild(): any;
115
- static Time(): any;
116
- static UserDetail(): any;
117
- static Weight(): any;
1
+ export = CatalogApplicationModel;
2
+ /**
3
+ * @typedef ApplicationItemMOQ
4
+ * @property {number} [increment_unit] - The minimum quantity increment in which
5
+ * the item can be purchased.
6
+ * @property {number} [maximum] - The maximum quantity allowed for purchase.
7
+ * @property {number} [minimum] - The minimum quantity required for purchase.
8
+ */
9
+ /**
10
+ * @typedef ApplicationItemSEO
11
+ * @property {Object} [description] - The SEO description of the item
12
+ * @property {Object} [title] - The SEO title of the item
13
+ */
14
+ /**
15
+ * @typedef ApplicationStoreListing
16
+ * @property {Object[]} [filters]
17
+ * @property {AppStore[]} [items]
18
+ * @property {Page} [page]
19
+ */
20
+ /**
21
+ * @typedef AppStore
22
+ * @property {StoreAddressSerializer} [address]
23
+ * @property {CompanyStore} [company]
24
+ * @property {SellerPhoneNumber[]} [contact_numbers]
25
+ * @property {StoreDepartments[]} [departments]
26
+ * @property {StoreManagerSerializer} [manager]
27
+ * @property {string} [name]
28
+ * @property {string} [store_code]
29
+ * @property {number} [uid]
30
+ */
31
+ /**
32
+ * @typedef ArticleAssignmentV3
33
+ * @property {string} [level]
34
+ * @property {string} [strategy]
35
+ */
36
+ /**
37
+ * @typedef AttributeDetail
38
+ * @property {string} [description]
39
+ * @property {string} [display]
40
+ * @property {string} [key]
41
+ * @property {string} [logo]
42
+ */
43
+ /**
44
+ * @typedef AttributeMetadata
45
+ * @property {AttributeDetail[]} [details]
46
+ * @property {string} [title]
47
+ */
48
+ /**
49
+ * @typedef AutocompleteItem
50
+ * @property {Object} [_custom_json]
51
+ * @property {ProductListingAction} [action]
52
+ * @property {string} [display]
53
+ * @property {Media} [logo]
54
+ * @property {string} [type]
55
+ */
56
+ /**
57
+ * @typedef AutoCompleteResponse
58
+ * @property {AutocompleteItem[]} [items]
59
+ */
60
+ /**
61
+ * @typedef BrandDetailResponse
62
+ * @property {Object} [_custom_json]
63
+ * @property {ImageUrls} [banners]
64
+ * @property {string} [description]
65
+ * @property {Media} [logo]
66
+ * @property {string} [name]
67
+ * @property {number} [uid]
68
+ */
69
+ /**
70
+ * @typedef BrandItem
71
+ * @property {ProductListingAction} [action]
72
+ * @property {ImageUrls} [banners]
73
+ * @property {string[]} [departments]
74
+ * @property {string} [description]
75
+ * @property {string} [discount]
76
+ * @property {Media} [logo]
77
+ * @property {string} [name]
78
+ * @property {string} [slug]
79
+ * @property {number} [uid]
80
+ */
81
+ /**
82
+ * @typedef BrandListingResponse
83
+ * @property {BrandItem[]} [items]
84
+ * @property {Page} page
85
+ */
86
+ /**
87
+ * @typedef CategoryBanner
88
+ * @property {Media} landscape
89
+ * @property {Media} portrait
90
+ */
91
+ /**
92
+ * @typedef CategoryItems
93
+ * @property {ProductListingAction} action
94
+ * @property {CategoryBanner} banners
95
+ * @property {Child[]} [childs]
96
+ * @property {string} name
97
+ * @property {string} slug
98
+ * @property {number} uid
99
+ */
100
+ /**
101
+ * @typedef CategoryListingResponse
102
+ * @property {DepartmentCategoryTree[]} [data]
103
+ * @property {DepartmentIdentifier[]} [departments]
104
+ */
105
+ /**
106
+ * @typedef CategoryMetaResponse
107
+ * @property {Object} [_custom_json]
108
+ * @property {ImageUrls} [banners]
109
+ * @property {Media} [logo]
110
+ * @property {string} [name]
111
+ * @property {number} [uid]
112
+ */
113
+ /**
114
+ * @typedef Child
115
+ * @property {Object} [_custom_json]
116
+ * @property {ProductListingAction} [action]
117
+ * @property {ImageUrls} [banners]
118
+ * @property {SecondLevelChild[]} [childs]
119
+ * @property {string} [name]
120
+ * @property {string} [slug]
121
+ * @property {number} [uid]
122
+ */
123
+ /**
124
+ * @typedef CollectionDetailResponse
125
+ * @property {Object} [_custom_json]
126
+ * @property {Object} [_schedule]
127
+ * @property {boolean} [allow_facets]
128
+ * @property {boolean} [allow_sort]
129
+ * @property {string} [app_id]
130
+ * @property {Object} [badge]
131
+ * @property {ImageUrls} [banners]
132
+ * @property {Object} [cron]
133
+ * @property {string} [description]
134
+ * @property {boolean} [is_active]
135
+ * @property {Media} [logo]
136
+ * @property {Object} [meta]
137
+ * @property {string} [name]
138
+ * @property {number} [priority]
139
+ * @property {CollectionQuery[]} [query]
140
+ * @property {string} [slug]
141
+ * @property {string} [sort_on]
142
+ * @property {string[]} [tag]
143
+ * @property {string} [type]
144
+ * @property {string[]} [visible_facets_keys]
145
+ */
146
+ /**
147
+ * @typedef CollectionListingFilter
148
+ * @property {CollectionListingFilterTag[]} [tags]
149
+ * @property {CollectionListingFilterType[]} [type]
150
+ */
151
+ /**
152
+ * @typedef CollectionListingFilterTag
153
+ * @property {string} [display]
154
+ * @property {boolean} [is_selected]
155
+ * @property {string} [name]
156
+ */
157
+ /**
158
+ * @typedef CollectionListingFilterType
159
+ * @property {string} [display]
160
+ * @property {boolean} [is_selected]
161
+ * @property {string} [name]
162
+ */
163
+ /**
164
+ * @typedef CollectionQuery
165
+ * @property {string} attribute
166
+ * @property {string} op
167
+ * @property {Object[]} value
168
+ */
169
+ /**
170
+ * @typedef ColumnHeader
171
+ * @property {boolean} [convertable]
172
+ * @property {string} [value]
173
+ */
174
+ /**
175
+ * @typedef ColumnHeaders
176
+ * @property {ColumnHeader} [col_1]
177
+ * @property {ColumnHeader} [col_2]
178
+ * @property {ColumnHeader} [col_3]
179
+ * @property {ColumnHeader} [col_4]
180
+ * @property {ColumnHeader} [col_5]
181
+ * @property {ColumnHeader} [col_6]
182
+ */
183
+ /**
184
+ * @typedef CompanyDetail
185
+ * @property {number} [id]
186
+ * @property {string} [name]
187
+ */
188
+ /**
189
+ * @typedef CompanyStore
190
+ * @property {string} [business_type]
191
+ * @property {string} [company_type]
192
+ * @property {string} [name]
193
+ * @property {number} [uid]
194
+ */
195
+ /**
196
+ * @typedef CustomMetaFields
197
+ * @property {string} key - A key to store a custom field.
198
+ * @property {string} value - A value to store in the custom field.
199
+ */
200
+ /**
201
+ * @typedef Department
202
+ * @property {Media} [logo]
203
+ * @property {string} [name]
204
+ * @property {number} [priority_order]
205
+ * @property {string} [slug]
206
+ * @property {number} [uid]
207
+ */
208
+ /**
209
+ * @typedef DepartmentCategoryTree
210
+ * @property {string} department
211
+ * @property {CategoryItems[]} [items]
212
+ */
213
+ /**
214
+ * @typedef DepartmentIdentifier
215
+ * @property {string} [slug]
216
+ * @property {number} [uid]
217
+ */
218
+ /**
219
+ * @typedef DepartmentResponse
220
+ * @property {Department[]} [items]
221
+ */
222
+ /**
223
+ * @typedef DetailsSchemaV3
224
+ * @property {string} [key]
225
+ * @property {string} [type]
226
+ * @property {string} [value]
227
+ */
228
+ /**
229
+ * @typedef Dimension
230
+ * @property {number} height - The height of the product
231
+ * @property {boolean} is_default - Whether the dimension is the default one or not
232
+ * @property {number} length - The length of the product
233
+ * @property {string} unit - The unit of dimension
234
+ * @property {number} width - The width of the product
235
+ */
236
+ /**
237
+ * @typedef DiscountMeta
238
+ * @property {string} [end] - The end time of the live discount.
239
+ * @property {string} [start] - The start time of the live discount.
240
+ * @property {number} [start_timer_in_minutes] - The time in minutes before the
241
+ * discount ends when the countdown timer should start.
242
+ * @property {boolean} timer - Determines whether the discount countdown is
243
+ * visible or not.
244
+ */
245
+ /**
246
+ * @typedef ErrorResponse
247
+ * @property {string} [error]
248
+ */
249
+ /**
250
+ * @typedef FollowerCountResponse
251
+ * @property {number} [count]
252
+ */
253
+ /**
254
+ * @typedef FollowIdsData
255
+ * @property {number[]} [brands]
256
+ * @property {number[]} [collections]
257
+ * @property {number[]} [products]
258
+ */
259
+ /**
260
+ * @typedef FollowIdsResponse
261
+ * @property {FollowIdsData} [data]
262
+ */
263
+ /**
264
+ * @typedef FollowPostResponse
265
+ * @property {string} id
266
+ * @property {string} message
267
+ */
268
+ /**
269
+ * @typedef GetCollectionDetailNest
270
+ * @property {Object} [_custom_json]
271
+ * @property {Object} [_schedule]
272
+ * @property {ProductListingAction} [action]
273
+ * @property {boolean} [allow_facets]
274
+ * @property {boolean} [allow_sort]
275
+ * @property {string} [app_id]
276
+ * @property {Object} [badge]
277
+ * @property {ImageUrls} [banners]
278
+ * @property {Object} [cron]
279
+ * @property {string} [description]
280
+ * @property {boolean} [is_active]
281
+ * @property {Media} [logo]
282
+ * @property {Object} [meta]
283
+ * @property {string} [name]
284
+ * @property {number} [priority]
285
+ * @property {CollectionQuery[]} [query]
286
+ * @property {string} [slug]
287
+ * @property {string} [sort_on]
288
+ * @property {string[]} [tag]
289
+ * @property {string} [type]
290
+ * @property {string} [uid]
291
+ * @property {string[]} [visible_facets_keys]
292
+ */
293
+ /**
294
+ * @typedef GetCollectionListingResponse
295
+ * @property {CollectionListingFilter} [filters]
296
+ * @property {GetCollectionDetailNest[]} [items]
297
+ * @property {Page} page
298
+ */
299
+ /**
300
+ * @typedef GetFollowListingResponse
301
+ * @property {ProductListingDetail[]} items
302
+ * @property {Page} page
303
+ */
304
+ /**
305
+ * @typedef HomeListingResponse
306
+ * @property {ProductListingDetail[]} [items]
307
+ * @property {string} [message]
308
+ * @property {Page} page
309
+ */
310
+ /**
311
+ * @typedef ImageUrls
312
+ * @property {Media} [landscape]
313
+ * @property {Media} [portrait]
314
+ */
315
+ /**
316
+ * @typedef LatLong
317
+ * @property {number[]} [coordinates]
318
+ * @property {string} [type]
319
+ */
320
+ /**
321
+ * @typedef MarketPlaceSttributesSchemaV3
322
+ * @property {DetailsSchemaV3[]} [details]
323
+ * @property {string} [title]
324
+ */
325
+ /**
326
+ * @typedef Media
327
+ * @property {string} [alt]
328
+ * @property {Meta} [meta]
329
+ * @property {string} [type]
330
+ * @property {string} [url]
331
+ */
332
+ /**
333
+ * @typedef Meta
334
+ * @property {string} [source]
335
+ */
336
+ /**
337
+ * @typedef NetQuantity
338
+ * @property {Object} [unit] - The unit of measurement used for the net quantity
339
+ * of the product.
340
+ * @property {number} [value] - The value of the net quantity of the product.
341
+ */
342
+ /**
343
+ * @typedef Page
344
+ * @property {number} [current]
345
+ * @property {boolean} [has_next]
346
+ * @property {boolean} [has_previous]
347
+ * @property {number} [item_total]
348
+ * @property {string} [next_id]
349
+ * @property {number} [size]
350
+ * @property {string} type
351
+ */
352
+ /**
353
+ * @typedef Price
354
+ * @property {string} [currency_code] - The currency code for the currency in
355
+ * which the product is available.
356
+ * @property {string} [currency_symbol] - The currency symbol for the currency
357
+ * in which the product is available.
358
+ * @property {number} [max] - The maximum price for the product across stores.
359
+ * @property {number} [min] - The minimum price for the product across stores.
360
+ */
361
+ /**
362
+ * @typedef ProductBrand
363
+ * @property {ProductListingAction} [action]
364
+ * @property {string} [description]
365
+ * @property {Media} [logo]
366
+ * @property {string} [name]
367
+ * @property {number} [uid]
368
+ */
369
+ /**
370
+ * @typedef ProductBundle
371
+ * @property {ProductGroupingModel[]} [items]
372
+ */
373
+ /**
374
+ * @typedef ProductCategoryMap
375
+ * @property {ProductBrand} [l1]
376
+ * @property {ProductBrand} [l2]
377
+ * @property {ProductBrand} [l3]
378
+ */
379
+ /**
380
+ * @typedef ProductCompareResponse
381
+ * @property {AttributeMetadata[]} [attributes_metadata]
382
+ * @property {ProductDetail[]} [items]
383
+ * @property {string} [subtitle]
384
+ * @property {string} [title]
385
+ */
386
+ /**
387
+ * @typedef ProductDetail
388
+ * @property {Object} [_custom_json]
389
+ * @property {CustomMetaFields[]} [_custom_meta]
390
+ * @property {ProductListingAction} [action]
391
+ * @property {Object} [attributes]
392
+ * @property {ProductBrand} [brand]
393
+ * @property {ProductBrand[]} [categories]
394
+ * @property {ProductCategoryMap} [category_map]
395
+ * @property {string} [color]
396
+ * @property {ProductDetailCustomOrder} [custom_order]
397
+ * @property {string} [description]
398
+ * @property {string} [discount]
399
+ * @property {ProductDetailGroupedAttribute[]} [grouped_attributes]
400
+ * @property {boolean} [has_variant]
401
+ * @property {string[]} [highlights]
402
+ * @property {string} [image_nature]
403
+ * @property {boolean} [is_dependent]
404
+ * @property {string} [item_code]
405
+ * @property {string} [item_type]
406
+ * @property {Media[]} [medias]
407
+ * @property {ApplicationItemMOQ} [moq]
408
+ * @property {string} [name]
409
+ * @property {NetQuantity} [net_quantity]
410
+ * @property {ProductListingPrice} [price]
411
+ * @property {string[]} [product_group_tag]
412
+ * @property {string} [product_online_date]
413
+ * @property {number} [rating]
414
+ * @property {number} [rating_count]
415
+ * @property {ApplicationItemSEO} [seo]
416
+ * @property {string} [short_description]
417
+ * @property {string[]} [similars]
418
+ * @property {string} slug
419
+ * @property {string[]} [tags]
420
+ * @property {string} [teaser_tag]
421
+ * @property {string[]} [tryouts]
422
+ * @property {string} [type]
423
+ * @property {number} [uid]
424
+ */
425
+ /**
426
+ * @typedef ProductDetailAttribute
427
+ * @property {string} [key]
428
+ * @property {string} [type]
429
+ * @property {string} [value]
430
+ */
431
+ /**
432
+ * @typedef ProductDetailCustomOrder
433
+ * @property {boolean} [is_custom_order]
434
+ * @property {number} [manufacturing_time]
435
+ * @property {string} [manufacturing_time_unit]
436
+ */
437
+ /**
438
+ * @typedef ProductDetailGroupedAttribute
439
+ * @property {ProductDetailAttribute[]} [details]
440
+ * @property {string} [title]
441
+ */
442
+ /**
443
+ * @typedef ProductDetails
444
+ * @property {Object} [attributes] - A dictionary of product attributes
445
+ * @property {number} [brand_uid] - The unique ID of the product's brand
446
+ * @property {Object} [country_of_origin] - The country of origin for the product
447
+ * @property {Object} [description] - The long description of the product
448
+ * @property {Object} [grouped_attributes] - A dictionary of grouped product attributes
449
+ * @property {boolean} [has_variant] - Whether or not the product has a variant
450
+ * @property {Object[]} [highlights] - A list of highlights for the product
451
+ * @property {number} [hsn_code] - The HSN code of the product
452
+ * @property {Object} [identifier] - A dictionary of product identifiers
453
+ * @property {Object} [image_nature] - The nature of the product's images
454
+ * @property {Object[]} [images] - A list of image URLs for the product
455
+ * @property {boolean} [is_set] - Whether or not the product is a set of items
456
+ * @property {Object} [item_code] - The item code of the product
457
+ * @property {Object[]} [media] - A list of media objects for the product
458
+ * @property {Object} [name] - The name of the product
459
+ * @property {boolean} [out_of_stock] - Whether or not the product is out of stock
460
+ * @property {number} [rating] - The rating of the product
461
+ * @property {number} [rating_count] - The number of ratings the product has received
462
+ * @property {Object} [short_description] - The short description of the product
463
+ * @property {Object} [slug] - The slug of the product
464
+ * @property {Object} [template_tag] - The template tag of the product
465
+ */
466
+ /**
467
+ * @typedef ProductFilters
468
+ * @property {ProductFiltersKey} key
469
+ * @property {ProductFiltersValue[]} values
470
+ */
471
+ /**
472
+ * @typedef ProductFiltersKey
473
+ * @property {string} display
474
+ * @property {string} [kind]
475
+ * @property {string} [logo]
476
+ * @property {string} name
477
+ */
478
+ /**
479
+ * @typedef ProductFiltersValue
480
+ * @property {number} [count]
481
+ * @property {string} [currency_code]
482
+ * @property {string} [currency_symbol]
483
+ * @property {string} display
484
+ * @property {string} [display_format]
485
+ * @property {boolean} is_selected
486
+ * @property {number} [max]
487
+ * @property {number} [min]
488
+ * @property {string} [query_format]
489
+ * @property {number} [selected_max]
490
+ * @property {number} [selected_min]
491
+ * @property {string} [value]
492
+ */
493
+ /**
494
+ * @typedef ProductFrequentlyComparedSimilarResponse
495
+ * @property {ProductCompareResponse} [similars]
496
+ */
497
+ /**
498
+ * @typedef ProductGroupingModel
499
+ * @property {Object} [_id]
500
+ * @property {Object} [choice] - The choice of the product grouping.
501
+ * @property {number} [company_id] - The ID of the company that owns the product grouping.
502
+ * @property {UserDetail} [created_by] - User details of the creator of the document
503
+ * @property {string} created_on - Timestamp of the creation of the document
504
+ * @property {boolean} [is_active] - Whether the product grouping is active.
505
+ * @property {string} [logo] - The URL for the logo of the product grouping.
506
+ * @property {Object} [meta] - A dictionary containing metadata information.
507
+ * @property {UserDetail} [modified_by] - User details of the last modifier of
508
+ * the document
509
+ * @property {string} modified_on - Timestamp of the last modification of the document
510
+ * @property {Object} name - The name of the product grouping.
511
+ * @property {Object[]} [page_visibility] - A list of page visibilities of the
512
+ * product grouping.
513
+ * @property {ProductInGroup[]} products - A list of products in the grouping.
514
+ * @property {boolean} [same_store_assignment] - Whether the products are
515
+ * assigned to the same store.
516
+ * @property {Object} [slug] - The unique identifier for the product grouping.
517
+ * @property {UserDetail} [verified_by] - User details of the verifier of the
518
+ * document, if applicable
519
+ * @property {string} [verified_on] - Timestamp of when the document was
520
+ * verified, if applicable
521
+ */
522
+ /**
523
+ * @typedef ProductGroupPrice
524
+ * @property {Object} [currency] - The currency code for the prices.
525
+ * @property {number} [max_effective] - The maximum effective price of the product group.
526
+ * @property {number} [max_marked] - The maximum marked price of the product group.
527
+ * @property {number} [min_effective] - The minimum effective price of the product group.
528
+ * @property {number} [min_marked] - The minimum marked price of the product group.
529
+ */
530
+ /**
531
+ * @typedef ProductInGroup
532
+ * @property {boolean} [allow_remove] - A flag indicating whether the product
533
+ * can be removed from the cart.
534
+ * @property {boolean} [auto_add_to_cart] - A flag indicating whether the
535
+ * product should be automatically added to the cart.
536
+ * @property {boolean} [auto_select] - A flag indicating whether the product
537
+ * should be automatically selected.
538
+ * @property {number} max_quantity - The maximum quantity of the product that
539
+ * can be added to the cart.
540
+ * @property {number} [min_quantity] - The minimum quantity of the product that
541
+ * can be added to the cart.
542
+ * @property {ProductGroupPrice} [price] - The price details for the product group.
543
+ * @property {ProductDetails} [product_details] - The details of the product.
544
+ * @property {number} product_uid - The unique ID of the product in the group.
545
+ * @property {Size[]} [sizes] - The available sizes for the product.
546
+ */
547
+ /**
548
+ * @typedef ProductListingAction
549
+ * @property {ProductListingActionPage} [page]
550
+ * @property {string} [type]
551
+ */
552
+ /**
553
+ * @typedef ProductListingActionPage
554
+ * @property {Object} [params]
555
+ * @property {Object} [query]
556
+ * @property {string} [type]
557
+ */
558
+ /**
559
+ * @typedef ProductListingDetail
560
+ * @property {Object} [_custom_json]
561
+ * @property {CustomMetaFields[]} [_custom_meta]
562
+ * @property {ProductListingAction} [action]
563
+ * @property {Object} [attributes]
564
+ * @property {ProductBrand} [brand]
565
+ * @property {ProductBrand[]} [categories]
566
+ * @property {ProductCategoryMap} [category_map]
567
+ * @property {string} [color]
568
+ * @property {ProductDetailCustomOrder} [custom_order]
569
+ * @property {string} [description]
570
+ * @property {string} [discount]
571
+ * @property {ProductDetailGroupedAttribute[]} [grouped_attributes]
572
+ * @property {boolean} [has_variant]
573
+ * @property {string[]} [highlights]
574
+ * @property {string[]} [identifiers]
575
+ * @property {string} [image_nature]
576
+ * @property {boolean} [is_dependent]
577
+ * @property {string} [item_code]
578
+ * @property {string} [item_type]
579
+ * @property {Media[]} [medias]
580
+ * @property {ApplicationItemMOQ} [moq]
581
+ * @property {string} [name]
582
+ * @property {NetQuantity} [net_quantity]
583
+ * @property {ProductListingPrice} [price]
584
+ * @property {string[]} [product_group_tag]
585
+ * @property {string} [product_online_date]
586
+ * @property {number} [rating]
587
+ * @property {number} [rating_count]
588
+ * @property {boolean} [sellable]
589
+ * @property {ApplicationItemSEO} [seo]
590
+ * @property {string} [short_description]
591
+ * @property {string[]} [similars]
592
+ * @property {string[]} [sizes]
593
+ * @property {string} slug
594
+ * @property {string[]} [tags]
595
+ * @property {string} [teaser_tag]
596
+ * @property {string[]} [tryouts]
597
+ * @property {string} [type]
598
+ * @property {number} [uid]
599
+ * @property {ProductVariantListingResponse[]} [variants]
600
+ */
601
+ /**
602
+ * @typedef ProductListingPrice
603
+ * @property {Price} [effective]
604
+ * @property {Price} [marked]
605
+ */
606
+ /**
607
+ * @typedef ProductListingResponse
608
+ * @property {ProductFilters[]} [filters]
609
+ * @property {ProductListingDetail[]} [items]
610
+ * @property {Page} page
611
+ * @property {ProductSortOn[]} [sort_on]
612
+ */
613
+ /**
614
+ * @typedef ProductsComparisonResponse
615
+ * @property {AttributeMetadata[]} [attributes_metadata]
616
+ * @property {ProductDetail[]} [items]
617
+ */
618
+ /**
619
+ * @typedef ProductSetDistributionSizeV3
620
+ * @property {number} [pieces]
621
+ * @property {string} [size]
622
+ */
623
+ /**
624
+ * @typedef ProductSetDistributionV3
625
+ * @property {ProductSetDistributionSizeV3[]} [sizes]
626
+ */
627
+ /**
628
+ * @typedef ProductSetV3
629
+ * @property {number} [quantity]
630
+ * @property {ProductSetDistributionV3} [size_distribution]
631
+ */
632
+ /**
633
+ * @typedef ProductSize
634
+ * @property {Dimension} [dimension]
635
+ * @property {string} [display]
636
+ * @property {boolean} [is_available]
637
+ * @property {number} [quantity]
638
+ * @property {string[]} [seller_identifiers]
639
+ * @property {string} [value]
640
+ * @property {Weight} [weight]
641
+ */
642
+ /**
643
+ * @typedef ProductSizePriceResponseV3
644
+ * @property {ArticleAssignmentV3} [article_assignment]
645
+ * @property {string} [article_id]
646
+ * @property {PromiseSchema} [delivery_promise]
647
+ * @property {string} [discount]
648
+ * @property {DiscountMeta} [discount_meta]
649
+ * @property {SellerGroupAttributes[]} [grouped_attributes]
650
+ * @property {boolean} [is_cod]
651
+ * @property {boolean} [is_gift]
652
+ * @property {string} [item_type]
653
+ * @property {number[]} [long_lat]
654
+ * @property {MarketPlaceSttributesSchemaV3[]} [marketplace_attributes]
655
+ * @property {number} [pincode]
656
+ * @property {ProductStockPriceV3} [price]
657
+ * @property {ProductStockPriceV3} [price_per_piece]
658
+ * @property {ProductStockUnitPriceV3} [price_per_unit]
659
+ * @property {number} [quantity]
660
+ * @property {ReturnConfigSchemaV3} [return_config]
661
+ * @property {SellerV3} [seller]
662
+ * @property {number} [seller_count]
663
+ * @property {ProductSetV3} [set]
664
+ * @property {string} [special_badge]
665
+ * @property {StoreV3} [store]
666
+ * @property {StrategyWiseListingSchemaV3[]} [strategy_wise_listing]
667
+ */
668
+ /**
669
+ * @typedef ProductSizes
670
+ * @property {string} [discount]
671
+ * @property {DiscountMeta} [discount_meta]
672
+ * @property {boolean} [multi_size]
673
+ * @property {ProductSizesPrice} [price]
674
+ * @property {boolean} [sellable]
675
+ * @property {SizeChart} [size_chart]
676
+ * @property {ProductSize[]} [sizes]
677
+ * @property {ProductSizeStores} [stores]
678
+ */
679
+ /**
680
+ * @typedef ProductSizeSellerFilterSchemaV3
681
+ * @property {boolean} [is_selected]
682
+ * @property {string} [name]
683
+ * @property {string} [value]
684
+ */
685
+ /**
686
+ * @typedef ProductSizeSellersResponseV3
687
+ * @property {ProductSizePriceResponseV3[]} [items]
688
+ * @property {Page} page
689
+ * @property {ProductSizeSellerFilterSchemaV3[]} [sort_on]
690
+ */
691
+ /**
692
+ * @typedef ProductSizesPrice
693
+ * @property {Price} [effective]
694
+ * @property {Price} [marked]
695
+ * @property {Price} [selling]
696
+ */
697
+ /**
698
+ * @typedef ProductSizeStores
699
+ * @property {number} [count]
700
+ */
701
+ /**
702
+ * @typedef ProductSortOn
703
+ * @property {string} [display]
704
+ * @property {boolean} [is_selected]
705
+ * @property {string} [logo]
706
+ * @property {string} [name]
707
+ * @property {string} [value]
708
+ */
709
+ /**
710
+ * @typedef ProductStockPolling
711
+ * @property {ProductStockStatusItem[]} [items]
712
+ * @property {Page} page
713
+ */
714
+ /**
715
+ * @typedef ProductStockPrice
716
+ * @property {string} [currency]
717
+ * @property {number} [effective]
718
+ * @property {number} [marked]
719
+ */
720
+ /**
721
+ * @typedef ProductStockPriceV3
722
+ * @property {string} [currency_code] - The currency code for which the product
723
+ * is available
724
+ * @property {string} [currency_symbol] - The currency symbol for the currency
725
+ * in which the product is available.
726
+ * @property {number} [effective] - The effective or final price for the product
727
+ * at the given pincode.
728
+ * @property {number} [marked] - The marked price of the product.
729
+ * @property {number} [selling] - The selling price of the product.
730
+ */
731
+ /**
732
+ * @typedef ProductStockStatusItem
733
+ * @property {CompanyDetail} [company]
734
+ * @property {Object} [identifier]
735
+ * @property {number} [item_id]
736
+ * @property {ProductStockPrice} [price]
737
+ * @property {number} [quantity]
738
+ * @property {Seller} [seller]
739
+ * @property {string} [size]
740
+ * @property {StoreDetail} [store]
741
+ * @property {string} [uid]
742
+ */
743
+ /**
744
+ * @typedef ProductStockStatusResponse
745
+ * @property {ProductStockStatusItem[]} [items]
746
+ */
747
+ /**
748
+ * @typedef ProductStockUnitPriceV3
749
+ * @property {string} [currency_code]
750
+ * @property {string} [currency_symbol]
751
+ * @property {number} [price]
752
+ * @property {string} [unit]
753
+ */
754
+ /**
755
+ * @typedef ProductVariantItemResponse
756
+ * @property {CustomMetaFields[]} [_custom_meta]
757
+ * @property {ProductListingAction} [action]
758
+ * @property {string} [color]
759
+ * @property {string} [color_name]
760
+ * @property {boolean} [is_available]
761
+ * @property {Media[]} [medias]
762
+ * @property {string} [name]
763
+ * @property {string} [slug]
764
+ * @property {number} [uid]
765
+ * @property {string} [value]
766
+ */
767
+ /**
768
+ * @typedef ProductVariantListingResponse
769
+ * @property {string} [display_type]
770
+ * @property {string} [header]
771
+ * @property {ProductVariantItemResponse[]} [items]
772
+ * @property {string} [key]
773
+ * @property {number} [total]
774
+ */
775
+ /**
776
+ * @typedef ProductVariantResponse
777
+ * @property {string} [display_type]
778
+ * @property {string} [header]
779
+ * @property {ProductVariantItemResponse[]} [items]
780
+ * @property {string} [key]
781
+ */
782
+ /**
783
+ * @typedef ProductVariantsResponse
784
+ * @property {ProductVariantResponse[]} [variants]
785
+ */
786
+ /**
787
+ * @typedef PromiseSchema
788
+ * @property {string} [max]
789
+ * @property {string} [min]
790
+ */
791
+ /**
792
+ * @typedef ReturnConfigSchemaV3
793
+ * @property {boolean} [returnable]
794
+ * @property {number} [time]
795
+ * @property {string} [unit]
796
+ */
797
+ /**
798
+ * @typedef SecondLevelChild
799
+ * @property {Object} [_custom_json]
800
+ * @property {ProductListingAction} [action]
801
+ * @property {ImageUrls} [banners]
802
+ * @property {ThirdLevelChild[]} [childs]
803
+ * @property {string} [name]
804
+ * @property {string} [slug]
805
+ * @property {number} [uid]
806
+ */
807
+ /**
808
+ * @typedef Seller
809
+ * @property {number} [count]
810
+ * @property {string} [name]
811
+ * @property {number} [uid]
812
+ */
813
+ /**
814
+ * @typedef SellerGroupAttributes
815
+ * @property {DetailsSchemaV3[]} [details]
816
+ * @property {string} [title]
817
+ */
818
+ /**
819
+ * @typedef SellerPhoneNumber
820
+ * @property {number} country_code
821
+ * @property {string} number
822
+ */
823
+ /**
824
+ * @typedef SellerV3
825
+ * @property {number} [count]
826
+ * @property {string} [name]
827
+ * @property {number} [uid]
828
+ */
829
+ /**
830
+ * @typedef Size
831
+ * @property {Object} [display] - The display string for the size
832
+ * @property {boolean} [is_available] - Whether or not this size is available
833
+ * @property {number} [quantity] - The quantity of this size available
834
+ * @property {Object} [value] - The value of the size
835
+ */
836
+ /**
837
+ * @typedef SizeChart
838
+ * @property {string} [description]
839
+ * @property {ColumnHeaders} [headers]
840
+ * @property {string} [image]
841
+ * @property {string} [size_tip]
842
+ * @property {SizeChartValues[]} [sizes]
843
+ * @property {string} [title]
844
+ * @property {string} [unit]
845
+ */
846
+ /**
847
+ * @typedef SizeChartValues
848
+ * @property {string} [col_1]
849
+ * @property {string} [col_2]
850
+ * @property {string} [col_3]
851
+ * @property {string} [col_4]
852
+ * @property {string} [col_5]
853
+ * @property {string} [col_6]
854
+ */
855
+ /**
856
+ * @typedef Store
857
+ * @property {string} [address]
858
+ * @property {string} [city]
859
+ * @property {string} [country]
860
+ * @property {LatLong} [lat_long]
861
+ * @property {string} [name]
862
+ * @property {number} [pincode]
863
+ * @property {string} [state]
864
+ * @property {string} [store_code]
865
+ * @property {string} [store_email]
866
+ * @property {number} [uid]
867
+ */
868
+ /**
869
+ * @typedef StoreAddressSerializer
870
+ * @property {string} [address1]
871
+ * @property {string} [address2]
872
+ * @property {string} [city]
873
+ * @property {string} [country]
874
+ * @property {string} [landmark]
875
+ * @property {number} [latitude]
876
+ * @property {number} [longitude]
877
+ * @property {number} [pincode]
878
+ * @property {string} [state]
879
+ */
880
+ /**
881
+ * @typedef StoreDepartments
882
+ * @property {Object} [logo]
883
+ * @property {string} [name]
884
+ * @property {number} [priority_order]
885
+ * @property {string} [slug]
886
+ * @property {number} [uid]
887
+ */
888
+ /**
889
+ * @typedef StoreDetail
890
+ * @property {string} [city]
891
+ * @property {string} [code]
892
+ * @property {number} [id]
893
+ * @property {string} [name]
894
+ */
895
+ /**
896
+ * @typedef StoreDetails
897
+ * @property {Object} [_custom_json]
898
+ * @property {StoreAddressSerializer} [address]
899
+ * @property {CompanyStore} [company]
900
+ * @property {SellerPhoneNumber[]} [contact_numbers]
901
+ * @property {StoreDepartments[]} [departments]
902
+ * @property {StoreManagerSerializer} [manager]
903
+ * @property {string} [name]
904
+ * @property {string} [store_code]
905
+ * @property {StoreTiming[]} [timing]
906
+ * @property {number} [uid]
907
+ */
908
+ /**
909
+ * @typedef StoreListingResponse
910
+ * @property {Store[]} items
911
+ * @property {Page} page
912
+ */
913
+ /**
914
+ * @typedef StoreManagerSerializer
915
+ * @property {string} [email]
916
+ * @property {SellerPhoneNumber} [mobile_no]
917
+ * @property {string} [name]
918
+ */
919
+ /**
920
+ * @typedef StoreTiming
921
+ * @property {Time} [closing]
922
+ * @property {boolean} [open]
923
+ * @property {Time} [opening]
924
+ * @property {string} [weekday]
925
+ */
926
+ /**
927
+ * @typedef StoreV3
928
+ * @property {number} [count]
929
+ * @property {string} [name]
930
+ * @property {number} [uid]
931
+ */
932
+ /**
933
+ * @typedef StrategyWiseListingSchemaV3
934
+ * @property {number} [distance]
935
+ * @property {number} [pincode]
936
+ * @property {number} [quantity]
937
+ * @property {number} [tat]
938
+ */
939
+ /**
940
+ * @typedef ThirdLevelChild
941
+ * @property {Object} [_custom_json]
942
+ * @property {ProductListingAction} [action]
943
+ * @property {ImageUrls} [banners]
944
+ * @property {Object[]} [childs]
945
+ * @property {string} [name]
946
+ * @property {string} [slug]
947
+ * @property {number} [uid]
948
+ */
949
+ /**
950
+ * @typedef Time
951
+ * @property {number} [hour]
952
+ * @property {number} [minute]
953
+ */
954
+ /**
955
+ * @typedef UserDetail
956
+ * @property {string} [contact] - The contact details of the user.
957
+ * @property {boolean} [super_user] - A flag indicating whether the user is a super user.
958
+ * @property {string} user_id - The user ID of the user.
959
+ * @property {string} username - The username of the user.
960
+ */
961
+ /**
962
+ * @typedef Weight
963
+ * @property {boolean} is_default - Whether the weight is the default one or not
964
+ * @property {number} shipping - The shipping weight of the product
965
+ * @property {string} unit - The unit of weight
966
+ */
967
+ declare class CatalogApplicationModel {
118
968
  }
969
+ declare namespace CatalogApplicationModel {
970
+ export { ApplicationItemMOQ, ApplicationItemSEO, ApplicationStoreListing, AppStore, ArticleAssignmentV3, AttributeDetail, AttributeMetadata, AutocompleteItem, AutoCompleteResponse, BrandDetailResponse, BrandItem, BrandListingResponse, CategoryBanner, CategoryItems, CategoryListingResponse, CategoryMetaResponse, Child, CollectionDetailResponse, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, ColumnHeader, ColumnHeaders, CompanyDetail, CompanyStore, CustomMetaFields, Department, DepartmentCategoryTree, DepartmentIdentifier, DepartmentResponse, DetailsSchemaV3, Dimension, DiscountMeta, ErrorResponse, FollowerCountResponse, FollowIdsData, FollowIdsResponse, FollowPostResponse, GetCollectionDetailNest, GetCollectionListingResponse, GetFollowListingResponse, HomeListingResponse, ImageUrls, LatLong, MarketPlaceSttributesSchemaV3, Media, Meta, NetQuantity, Page, Price, ProductBrand, ProductBundle, ProductCategoryMap, ProductCompareResponse, ProductDetail, ProductDetailAttribute, ProductDetailCustomOrder, ProductDetailGroupedAttribute, ProductDetails, ProductFilters, ProductFiltersKey, ProductFiltersValue, ProductFrequentlyComparedSimilarResponse, ProductGroupingModel, ProductGroupPrice, ProductInGroup, ProductListingAction, ProductListingActionPage, ProductListingDetail, ProductListingPrice, ProductListingResponse, ProductsComparisonResponse, ProductSetDistributionSizeV3, ProductSetDistributionV3, ProductSetV3, ProductSize, ProductSizePriceResponseV3, ProductSizes, ProductSizeSellerFilterSchemaV3, ProductSizeSellersResponseV3, ProductSizesPrice, ProductSizeStores, ProductSortOn, ProductStockPolling, ProductStockPrice, ProductStockPriceV3, ProductStockStatusItem, ProductStockStatusResponse, ProductStockUnitPriceV3, ProductVariantItemResponse, ProductVariantListingResponse, ProductVariantResponse, ProductVariantsResponse, PromiseSchema, ReturnConfigSchemaV3, SecondLevelChild, Seller, SellerGroupAttributes, SellerPhoneNumber, SellerV3, Size, SizeChart, SizeChartValues, Store, StoreAddressSerializer, StoreDepartments, StoreDetail, StoreDetails, StoreListingResponse, StoreManagerSerializer, StoreTiming, StoreV3, StrategyWiseListingSchemaV3, ThirdLevelChild, Time, UserDetail, Weight };
971
+ }
972
+ /** @returns {ApplicationItemMOQ} */
973
+ declare function ApplicationItemMOQ(): ApplicationItemMOQ;
974
+ type ApplicationItemMOQ = {
975
+ /**
976
+ * - The minimum quantity increment in which
977
+ * the item can be purchased.
978
+ */
979
+ increment_unit?: number;
980
+ /**
981
+ * - The maximum quantity allowed for purchase.
982
+ */
983
+ maximum?: number;
984
+ /**
985
+ * - The minimum quantity required for purchase.
986
+ */
987
+ minimum?: number;
988
+ };
989
+ /** @returns {ApplicationItemSEO} */
990
+ declare function ApplicationItemSEO(): ApplicationItemSEO;
991
+ type ApplicationItemSEO = {
992
+ /**
993
+ * - The SEO description of the item
994
+ */
995
+ description?: any;
996
+ /**
997
+ * - The SEO title of the item
998
+ */
999
+ title?: any;
1000
+ };
1001
+ /** @returns {ApplicationStoreListing} */
1002
+ declare function ApplicationStoreListing(): ApplicationStoreListing;
1003
+ type ApplicationStoreListing = {
1004
+ filters?: any[];
1005
+ items?: AppStore[];
1006
+ page?: Page;
1007
+ };
1008
+ /** @returns {AppStore} */
1009
+ declare function AppStore(): AppStore;
1010
+ type AppStore = {
1011
+ address?: StoreAddressSerializer;
1012
+ company?: CompanyStore;
1013
+ contact_numbers?: SellerPhoneNumber[];
1014
+ departments?: StoreDepartments[];
1015
+ manager?: StoreManagerSerializer;
1016
+ name?: string;
1017
+ store_code?: string;
1018
+ uid?: number;
1019
+ };
1020
+ /** @returns {ArticleAssignmentV3} */
1021
+ declare function ArticleAssignmentV3(): ArticleAssignmentV3;
1022
+ type ArticleAssignmentV3 = {
1023
+ level?: string;
1024
+ strategy?: string;
1025
+ };
1026
+ /** @returns {AttributeDetail} */
1027
+ declare function AttributeDetail(): AttributeDetail;
1028
+ type AttributeDetail = {
1029
+ description?: string;
1030
+ display?: string;
1031
+ key?: string;
1032
+ logo?: string;
1033
+ };
1034
+ /** @returns {AttributeMetadata} */
1035
+ declare function AttributeMetadata(): AttributeMetadata;
1036
+ type AttributeMetadata = {
1037
+ details?: AttributeDetail[];
1038
+ title?: string;
1039
+ };
1040
+ /** @returns {AutocompleteItem} */
1041
+ declare function AutocompleteItem(): AutocompleteItem;
1042
+ type AutocompleteItem = {
1043
+ _custom_json?: any;
1044
+ action?: ProductListingAction;
1045
+ display?: string;
1046
+ logo?: Media;
1047
+ type?: string;
1048
+ };
1049
+ /** @returns {AutoCompleteResponse} */
1050
+ declare function AutoCompleteResponse(): AutoCompleteResponse;
1051
+ type AutoCompleteResponse = {
1052
+ items?: AutocompleteItem[];
1053
+ };
1054
+ /** @returns {BrandDetailResponse} */
1055
+ declare function BrandDetailResponse(): BrandDetailResponse;
1056
+ type BrandDetailResponse = {
1057
+ _custom_json?: any;
1058
+ banners?: ImageUrls;
1059
+ description?: string;
1060
+ logo?: Media;
1061
+ name?: string;
1062
+ uid?: number;
1063
+ };
1064
+ /** @returns {BrandItem} */
1065
+ declare function BrandItem(): BrandItem;
1066
+ type BrandItem = {
1067
+ action?: ProductListingAction;
1068
+ banners?: ImageUrls;
1069
+ departments?: string[];
1070
+ description?: string;
1071
+ discount?: string;
1072
+ logo?: Media;
1073
+ name?: string;
1074
+ slug?: string;
1075
+ uid?: number;
1076
+ };
1077
+ /** @returns {BrandListingResponse} */
1078
+ declare function BrandListingResponse(): BrandListingResponse;
1079
+ type BrandListingResponse = {
1080
+ items?: BrandItem[];
1081
+ page: Page;
1082
+ };
1083
+ /** @returns {CategoryBanner} */
1084
+ declare function CategoryBanner(): CategoryBanner;
1085
+ type CategoryBanner = {
1086
+ landscape: Media;
1087
+ portrait: Media;
1088
+ };
1089
+ /** @returns {CategoryItems} */
1090
+ declare function CategoryItems(): CategoryItems;
1091
+ type CategoryItems = {
1092
+ action: ProductListingAction;
1093
+ banners: CategoryBanner;
1094
+ childs?: Child[];
1095
+ name: string;
1096
+ slug: string;
1097
+ uid: number;
1098
+ };
1099
+ /** @returns {CategoryListingResponse} */
1100
+ declare function CategoryListingResponse(): CategoryListingResponse;
1101
+ type CategoryListingResponse = {
1102
+ data?: DepartmentCategoryTree[];
1103
+ departments?: DepartmentIdentifier[];
1104
+ };
1105
+ /** @returns {CategoryMetaResponse} */
1106
+ declare function CategoryMetaResponse(): CategoryMetaResponse;
1107
+ type CategoryMetaResponse = {
1108
+ _custom_json?: any;
1109
+ banners?: ImageUrls;
1110
+ logo?: Media;
1111
+ name?: string;
1112
+ uid?: number;
1113
+ };
1114
+ /** @returns {Child} */
1115
+ declare function Child(): Child;
1116
+ type Child = {
1117
+ _custom_json?: any;
1118
+ action?: ProductListingAction;
1119
+ banners?: ImageUrls;
1120
+ childs?: SecondLevelChild[];
1121
+ name?: string;
1122
+ slug?: string;
1123
+ uid?: number;
1124
+ };
1125
+ /** @returns {CollectionDetailResponse} */
1126
+ declare function CollectionDetailResponse(): CollectionDetailResponse;
1127
+ type CollectionDetailResponse = {
1128
+ _custom_json?: any;
1129
+ _schedule?: any;
1130
+ allow_facets?: boolean;
1131
+ allow_sort?: boolean;
1132
+ app_id?: string;
1133
+ badge?: any;
1134
+ banners?: ImageUrls;
1135
+ cron?: any;
1136
+ description?: string;
1137
+ is_active?: boolean;
1138
+ logo?: Media;
1139
+ meta?: any;
1140
+ name?: string;
1141
+ priority?: number;
1142
+ query?: CollectionQuery[];
1143
+ slug?: string;
1144
+ sort_on?: string;
1145
+ tag?: string[];
1146
+ type?: string;
1147
+ visible_facets_keys?: string[];
1148
+ };
1149
+ /** @returns {CollectionListingFilter} */
1150
+ declare function CollectionListingFilter(): CollectionListingFilter;
1151
+ type CollectionListingFilter = {
1152
+ tags?: CollectionListingFilterTag[];
1153
+ type?: CollectionListingFilterType[];
1154
+ };
1155
+ /** @returns {CollectionListingFilterTag} */
1156
+ declare function CollectionListingFilterTag(): CollectionListingFilterTag;
1157
+ type CollectionListingFilterTag = {
1158
+ display?: string;
1159
+ is_selected?: boolean;
1160
+ name?: string;
1161
+ };
1162
+ /** @returns {CollectionListingFilterType} */
1163
+ declare function CollectionListingFilterType(): CollectionListingFilterType;
1164
+ type CollectionListingFilterType = {
1165
+ display?: string;
1166
+ is_selected?: boolean;
1167
+ name?: string;
1168
+ };
1169
+ /** @returns {CollectionQuery} */
1170
+ declare function CollectionQuery(): CollectionQuery;
1171
+ type CollectionQuery = {
1172
+ attribute: string;
1173
+ op: string;
1174
+ value: any[];
1175
+ };
1176
+ /** @returns {ColumnHeader} */
1177
+ declare function ColumnHeader(): ColumnHeader;
1178
+ type ColumnHeader = {
1179
+ convertable?: boolean;
1180
+ value?: string;
1181
+ };
1182
+ /** @returns {ColumnHeaders} */
1183
+ declare function ColumnHeaders(): ColumnHeaders;
1184
+ type ColumnHeaders = {
1185
+ col_1?: ColumnHeader;
1186
+ col_2?: ColumnHeader;
1187
+ col_3?: ColumnHeader;
1188
+ col_4?: ColumnHeader;
1189
+ col_5?: ColumnHeader;
1190
+ col_6?: ColumnHeader;
1191
+ };
1192
+ /** @returns {CompanyDetail} */
1193
+ declare function CompanyDetail(): CompanyDetail;
1194
+ type CompanyDetail = {
1195
+ id?: number;
1196
+ name?: string;
1197
+ };
1198
+ /** @returns {CompanyStore} */
1199
+ declare function CompanyStore(): CompanyStore;
1200
+ type CompanyStore = {
1201
+ business_type?: string;
1202
+ company_type?: string;
1203
+ name?: string;
1204
+ uid?: number;
1205
+ };
1206
+ /** @returns {CustomMetaFields} */
1207
+ declare function CustomMetaFields(): CustomMetaFields;
1208
+ type CustomMetaFields = {
1209
+ /**
1210
+ * - A key to store a custom field.
1211
+ */
1212
+ key: string;
1213
+ /**
1214
+ * - A value to store in the custom field.
1215
+ */
1216
+ value: string;
1217
+ };
1218
+ /** @returns {Department} */
1219
+ declare function Department(): Department;
1220
+ type Department = {
1221
+ logo?: Media;
1222
+ name?: string;
1223
+ priority_order?: number;
1224
+ slug?: string;
1225
+ uid?: number;
1226
+ };
1227
+ /** @returns {DepartmentCategoryTree} */
1228
+ declare function DepartmentCategoryTree(): DepartmentCategoryTree;
1229
+ type DepartmentCategoryTree = {
1230
+ department: string;
1231
+ items?: CategoryItems[];
1232
+ };
1233
+ /** @returns {DepartmentIdentifier} */
1234
+ declare function DepartmentIdentifier(): DepartmentIdentifier;
1235
+ type DepartmentIdentifier = {
1236
+ slug?: string;
1237
+ uid?: number;
1238
+ };
1239
+ /** @returns {DepartmentResponse} */
1240
+ declare function DepartmentResponse(): DepartmentResponse;
1241
+ type DepartmentResponse = {
1242
+ items?: Department[];
1243
+ };
1244
+ /** @returns {DetailsSchemaV3} */
1245
+ declare function DetailsSchemaV3(): DetailsSchemaV3;
1246
+ type DetailsSchemaV3 = {
1247
+ key?: string;
1248
+ type?: string;
1249
+ value?: string;
1250
+ };
1251
+ /** @returns {Dimension} */
1252
+ declare function Dimension(): Dimension;
1253
+ type Dimension = {
1254
+ /**
1255
+ * - The height of the product
1256
+ */
1257
+ height: number;
1258
+ /**
1259
+ * - Whether the dimension is the default one or not
1260
+ */
1261
+ is_default: boolean;
1262
+ /**
1263
+ * - The length of the product
1264
+ */
1265
+ length: number;
1266
+ /**
1267
+ * - The unit of dimension
1268
+ */
1269
+ unit: string;
1270
+ /**
1271
+ * - The width of the product
1272
+ */
1273
+ width: number;
1274
+ };
1275
+ /** @returns {DiscountMeta} */
1276
+ declare function DiscountMeta(): DiscountMeta;
1277
+ type DiscountMeta = {
1278
+ /**
1279
+ * - The end time of the live discount.
1280
+ */
1281
+ end?: string;
1282
+ /**
1283
+ * - The start time of the live discount.
1284
+ */
1285
+ start?: string;
1286
+ /**
1287
+ * - The time in minutes before the
1288
+ * discount ends when the countdown timer should start.
1289
+ */
1290
+ start_timer_in_minutes?: number;
1291
+ /**
1292
+ * - Determines whether the discount countdown is
1293
+ * visible or not.
1294
+ */
1295
+ timer: boolean;
1296
+ };
1297
+ /** @returns {ErrorResponse} */
1298
+ declare function ErrorResponse(): ErrorResponse;
1299
+ type ErrorResponse = {
1300
+ error?: string;
1301
+ };
1302
+ /** @returns {FollowerCountResponse} */
1303
+ declare function FollowerCountResponse(): FollowerCountResponse;
1304
+ type FollowerCountResponse = {
1305
+ count?: number;
1306
+ };
1307
+ /** @returns {FollowIdsData} */
1308
+ declare function FollowIdsData(): FollowIdsData;
1309
+ type FollowIdsData = {
1310
+ brands?: number[];
1311
+ collections?: number[];
1312
+ products?: number[];
1313
+ };
1314
+ /** @returns {FollowIdsResponse} */
1315
+ declare function FollowIdsResponse(): FollowIdsResponse;
1316
+ type FollowIdsResponse = {
1317
+ data?: FollowIdsData;
1318
+ };
1319
+ /** @returns {FollowPostResponse} */
1320
+ declare function FollowPostResponse(): FollowPostResponse;
1321
+ type FollowPostResponse = {
1322
+ id: string;
1323
+ message: string;
1324
+ };
1325
+ /** @returns {GetCollectionDetailNest} */
1326
+ declare function GetCollectionDetailNest(): GetCollectionDetailNest;
1327
+ type GetCollectionDetailNest = {
1328
+ _custom_json?: any;
1329
+ _schedule?: any;
1330
+ action?: ProductListingAction;
1331
+ allow_facets?: boolean;
1332
+ allow_sort?: boolean;
1333
+ app_id?: string;
1334
+ badge?: any;
1335
+ banners?: ImageUrls;
1336
+ cron?: any;
1337
+ description?: string;
1338
+ is_active?: boolean;
1339
+ logo?: Media;
1340
+ meta?: any;
1341
+ name?: string;
1342
+ priority?: number;
1343
+ query?: CollectionQuery[];
1344
+ slug?: string;
1345
+ sort_on?: string;
1346
+ tag?: string[];
1347
+ type?: string;
1348
+ uid?: string;
1349
+ visible_facets_keys?: string[];
1350
+ };
1351
+ /** @returns {GetCollectionListingResponse} */
1352
+ declare function GetCollectionListingResponse(): GetCollectionListingResponse;
1353
+ type GetCollectionListingResponse = {
1354
+ filters?: CollectionListingFilter;
1355
+ items?: GetCollectionDetailNest[];
1356
+ page: Page;
1357
+ };
1358
+ /** @returns {GetFollowListingResponse} */
1359
+ declare function GetFollowListingResponse(): GetFollowListingResponse;
1360
+ type GetFollowListingResponse = {
1361
+ items: ProductListingDetail[];
1362
+ page: Page;
1363
+ };
1364
+ /** @returns {HomeListingResponse} */
1365
+ declare function HomeListingResponse(): HomeListingResponse;
1366
+ type HomeListingResponse = {
1367
+ items?: ProductListingDetail[];
1368
+ message?: string;
1369
+ page: Page;
1370
+ };
1371
+ /** @returns {ImageUrls} */
1372
+ declare function ImageUrls(): ImageUrls;
1373
+ type ImageUrls = {
1374
+ landscape?: Media;
1375
+ portrait?: Media;
1376
+ };
1377
+ /** @returns {LatLong} */
1378
+ declare function LatLong(): LatLong;
1379
+ type LatLong = {
1380
+ coordinates?: number[];
1381
+ type?: string;
1382
+ };
1383
+ /** @returns {MarketPlaceSttributesSchemaV3} */
1384
+ declare function MarketPlaceSttributesSchemaV3(): MarketPlaceSttributesSchemaV3;
1385
+ type MarketPlaceSttributesSchemaV3 = {
1386
+ details?: DetailsSchemaV3[];
1387
+ title?: string;
1388
+ };
1389
+ /** @returns {Media} */
1390
+ declare function Media(): Media;
1391
+ type Media = {
1392
+ alt?: string;
1393
+ meta?: Meta;
1394
+ type?: string;
1395
+ url?: string;
1396
+ };
1397
+ /** @returns {Meta} */
1398
+ declare function Meta(): Meta;
1399
+ type Meta = {
1400
+ source?: string;
1401
+ };
1402
+ /** @returns {NetQuantity} */
1403
+ declare function NetQuantity(): NetQuantity;
1404
+ type NetQuantity = {
1405
+ /**
1406
+ * - The unit of measurement used for the net quantity
1407
+ * of the product.
1408
+ */
1409
+ unit?: any;
1410
+ /**
1411
+ * - The value of the net quantity of the product.
1412
+ */
1413
+ value?: number;
1414
+ };
1415
+ /** @returns {Page} */
1416
+ declare function Page(): Page;
1417
+ type Page = {
1418
+ current?: number;
1419
+ has_next?: boolean;
1420
+ has_previous?: boolean;
1421
+ item_total?: number;
1422
+ next_id?: string;
1423
+ size?: number;
1424
+ type: string;
1425
+ };
1426
+ /** @returns {Price} */
1427
+ declare function Price(): Price;
1428
+ type Price = {
1429
+ /**
1430
+ * - The currency code for the currency in
1431
+ * which the product is available.
1432
+ */
1433
+ currency_code?: string;
1434
+ /**
1435
+ * - The currency symbol for the currency
1436
+ * in which the product is available.
1437
+ */
1438
+ currency_symbol?: string;
1439
+ /**
1440
+ * - The maximum price for the product across stores.
1441
+ */
1442
+ max?: number;
1443
+ /**
1444
+ * - The minimum price for the product across stores.
1445
+ */
1446
+ min?: number;
1447
+ };
1448
+ /** @returns {ProductBrand} */
1449
+ declare function ProductBrand(): ProductBrand;
1450
+ type ProductBrand = {
1451
+ action?: ProductListingAction;
1452
+ description?: string;
1453
+ logo?: Media;
1454
+ name?: string;
1455
+ uid?: number;
1456
+ };
1457
+ /** @returns {ProductBundle} */
1458
+ declare function ProductBundle(): ProductBundle;
1459
+ type ProductBundle = {
1460
+ items?: ProductGroupingModel[];
1461
+ };
1462
+ /** @returns {ProductCategoryMap} */
1463
+ declare function ProductCategoryMap(): ProductCategoryMap;
1464
+ type ProductCategoryMap = {
1465
+ l1?: ProductBrand;
1466
+ l2?: ProductBrand;
1467
+ l3?: ProductBrand;
1468
+ };
1469
+ /** @returns {ProductCompareResponse} */
1470
+ declare function ProductCompareResponse(): ProductCompareResponse;
1471
+ type ProductCompareResponse = {
1472
+ attributes_metadata?: AttributeMetadata[];
1473
+ items?: ProductDetail[];
1474
+ subtitle?: string;
1475
+ title?: string;
1476
+ };
1477
+ /** @returns {ProductDetail} */
1478
+ declare function ProductDetail(): ProductDetail;
1479
+ type ProductDetail = {
1480
+ _custom_json?: any;
1481
+ _custom_meta?: CustomMetaFields[];
1482
+ action?: ProductListingAction;
1483
+ attributes?: any;
1484
+ brand?: ProductBrand;
1485
+ categories?: ProductBrand[];
1486
+ category_map?: ProductCategoryMap;
1487
+ color?: string;
1488
+ custom_order?: ProductDetailCustomOrder;
1489
+ description?: string;
1490
+ discount?: string;
1491
+ grouped_attributes?: ProductDetailGroupedAttribute[];
1492
+ has_variant?: boolean;
1493
+ highlights?: string[];
1494
+ image_nature?: string;
1495
+ is_dependent?: boolean;
1496
+ item_code?: string;
1497
+ item_type?: string;
1498
+ medias?: Media[];
1499
+ moq?: ApplicationItemMOQ;
1500
+ name?: string;
1501
+ net_quantity?: NetQuantity;
1502
+ price?: ProductListingPrice;
1503
+ product_group_tag?: string[];
1504
+ product_online_date?: string;
1505
+ rating?: number;
1506
+ rating_count?: number;
1507
+ seo?: ApplicationItemSEO;
1508
+ short_description?: string;
1509
+ similars?: string[];
1510
+ slug: string;
1511
+ tags?: string[];
1512
+ teaser_tag?: string;
1513
+ tryouts?: string[];
1514
+ type?: string;
1515
+ uid?: number;
1516
+ };
1517
+ /** @returns {ProductDetailAttribute} */
1518
+ declare function ProductDetailAttribute(): ProductDetailAttribute;
1519
+ type ProductDetailAttribute = {
1520
+ key?: string;
1521
+ type?: string;
1522
+ value?: string;
1523
+ };
1524
+ /** @returns {ProductDetailCustomOrder} */
1525
+ declare function ProductDetailCustomOrder(): ProductDetailCustomOrder;
1526
+ type ProductDetailCustomOrder = {
1527
+ is_custom_order?: boolean;
1528
+ manufacturing_time?: number;
1529
+ manufacturing_time_unit?: string;
1530
+ };
1531
+ /** @returns {ProductDetailGroupedAttribute} */
1532
+ declare function ProductDetailGroupedAttribute(): ProductDetailGroupedAttribute;
1533
+ type ProductDetailGroupedAttribute = {
1534
+ details?: ProductDetailAttribute[];
1535
+ title?: string;
1536
+ };
1537
+ /** @returns {ProductDetails} */
1538
+ declare function ProductDetails(): ProductDetails;
1539
+ type ProductDetails = {
1540
+ /**
1541
+ * - A dictionary of product attributes
1542
+ */
1543
+ attributes?: any;
1544
+ /**
1545
+ * - The unique ID of the product's brand
1546
+ */
1547
+ brand_uid?: number;
1548
+ /**
1549
+ * - The country of origin for the product
1550
+ */
1551
+ country_of_origin?: any;
1552
+ /**
1553
+ * - The long description of the product
1554
+ */
1555
+ description?: any;
1556
+ /**
1557
+ * - A dictionary of grouped product attributes
1558
+ */
1559
+ grouped_attributes?: any;
1560
+ /**
1561
+ * - Whether or not the product has a variant
1562
+ */
1563
+ has_variant?: boolean;
1564
+ /**
1565
+ * - A list of highlights for the product
1566
+ */
1567
+ highlights?: any[];
1568
+ /**
1569
+ * - The HSN code of the product
1570
+ */
1571
+ hsn_code?: number;
1572
+ /**
1573
+ * - A dictionary of product identifiers
1574
+ */
1575
+ identifier?: any;
1576
+ /**
1577
+ * - The nature of the product's images
1578
+ */
1579
+ image_nature?: any;
1580
+ /**
1581
+ * - A list of image URLs for the product
1582
+ */
1583
+ images?: any[];
1584
+ /**
1585
+ * - Whether or not the product is a set of items
1586
+ */
1587
+ is_set?: boolean;
1588
+ /**
1589
+ * - The item code of the product
1590
+ */
1591
+ item_code?: any;
1592
+ /**
1593
+ * - A list of media objects for the product
1594
+ */
1595
+ media?: any[];
1596
+ /**
1597
+ * - The name of the product
1598
+ */
1599
+ name?: any;
1600
+ /**
1601
+ * - Whether or not the product is out of stock
1602
+ */
1603
+ out_of_stock?: boolean;
1604
+ /**
1605
+ * - The rating of the product
1606
+ */
1607
+ rating?: number;
1608
+ /**
1609
+ * - The number of ratings the product has received
1610
+ */
1611
+ rating_count?: number;
1612
+ /**
1613
+ * - The short description of the product
1614
+ */
1615
+ short_description?: any;
1616
+ /**
1617
+ * - The slug of the product
1618
+ */
1619
+ slug?: any;
1620
+ /**
1621
+ * - The template tag of the product
1622
+ */
1623
+ template_tag?: any;
1624
+ };
1625
+ /** @returns {ProductFilters} */
1626
+ declare function ProductFilters(): ProductFilters;
1627
+ type ProductFilters = {
1628
+ key: ProductFiltersKey;
1629
+ values: ProductFiltersValue[];
1630
+ };
1631
+ /** @returns {ProductFiltersKey} */
1632
+ declare function ProductFiltersKey(): ProductFiltersKey;
1633
+ type ProductFiltersKey = {
1634
+ display: string;
1635
+ kind?: string;
1636
+ logo?: string;
1637
+ name: string;
1638
+ };
1639
+ /** @returns {ProductFiltersValue} */
1640
+ declare function ProductFiltersValue(): ProductFiltersValue;
1641
+ type ProductFiltersValue = {
1642
+ count?: number;
1643
+ currency_code?: string;
1644
+ currency_symbol?: string;
1645
+ display: string;
1646
+ display_format?: string;
1647
+ is_selected: boolean;
1648
+ max?: number;
1649
+ min?: number;
1650
+ query_format?: string;
1651
+ selected_max?: number;
1652
+ selected_min?: number;
1653
+ value?: string;
1654
+ };
1655
+ /** @returns {ProductFrequentlyComparedSimilarResponse} */
1656
+ declare function ProductFrequentlyComparedSimilarResponse(): ProductFrequentlyComparedSimilarResponse;
1657
+ type ProductFrequentlyComparedSimilarResponse = {
1658
+ similars?: ProductCompareResponse;
1659
+ };
1660
+ /** @returns {ProductGroupingModel} */
1661
+ declare function ProductGroupingModel(): ProductGroupingModel;
1662
+ type ProductGroupingModel = {
1663
+ _id?: any;
1664
+ /**
1665
+ * - The choice of the product grouping.
1666
+ */
1667
+ choice?: any;
1668
+ /**
1669
+ * - The ID of the company that owns the product grouping.
1670
+ */
1671
+ company_id?: number;
1672
+ /**
1673
+ * - User details of the creator of the document
1674
+ */
1675
+ created_by?: UserDetail;
1676
+ /**
1677
+ * - Timestamp of the creation of the document
1678
+ */
1679
+ created_on: string;
1680
+ /**
1681
+ * - Whether the product grouping is active.
1682
+ */
1683
+ is_active?: boolean;
1684
+ /**
1685
+ * - The URL for the logo of the product grouping.
1686
+ */
1687
+ logo?: string;
1688
+ /**
1689
+ * - A dictionary containing metadata information.
1690
+ */
1691
+ meta?: any;
1692
+ /**
1693
+ * - User details of the last modifier of
1694
+ * the document
1695
+ */
1696
+ modified_by?: UserDetail;
1697
+ /**
1698
+ * - Timestamp of the last modification of the document
1699
+ */
1700
+ modified_on: string;
1701
+ /**
1702
+ * - The name of the product grouping.
1703
+ */
1704
+ name: any;
1705
+ /**
1706
+ * - A list of page visibilities of the
1707
+ * product grouping.
1708
+ */
1709
+ page_visibility?: any[];
1710
+ /**
1711
+ * - A list of products in the grouping.
1712
+ */
1713
+ products: ProductInGroup[];
1714
+ /**
1715
+ * - Whether the products are
1716
+ * assigned to the same store.
1717
+ */
1718
+ same_store_assignment?: boolean;
1719
+ /**
1720
+ * - The unique identifier for the product grouping.
1721
+ */
1722
+ slug?: any;
1723
+ /**
1724
+ * - User details of the verifier of the
1725
+ * document, if applicable
1726
+ */
1727
+ verified_by?: UserDetail;
1728
+ /**
1729
+ * - Timestamp of when the document was
1730
+ * verified, if applicable
1731
+ */
1732
+ verified_on?: string;
1733
+ };
1734
+ /** @returns {ProductGroupPrice} */
1735
+ declare function ProductGroupPrice(): ProductGroupPrice;
1736
+ type ProductGroupPrice = {
1737
+ /**
1738
+ * - The currency code for the prices.
1739
+ */
1740
+ currency?: any;
1741
+ /**
1742
+ * - The maximum effective price of the product group.
1743
+ */
1744
+ max_effective?: number;
1745
+ /**
1746
+ * - The maximum marked price of the product group.
1747
+ */
1748
+ max_marked?: number;
1749
+ /**
1750
+ * - The minimum effective price of the product group.
1751
+ */
1752
+ min_effective?: number;
1753
+ /**
1754
+ * - The minimum marked price of the product group.
1755
+ */
1756
+ min_marked?: number;
1757
+ };
1758
+ /** @returns {ProductInGroup} */
1759
+ declare function ProductInGroup(): ProductInGroup;
1760
+ type ProductInGroup = {
1761
+ /**
1762
+ * - A flag indicating whether the product
1763
+ * can be removed from the cart.
1764
+ */
1765
+ allow_remove?: boolean;
1766
+ /**
1767
+ * - A flag indicating whether the
1768
+ * product should be automatically added to the cart.
1769
+ */
1770
+ auto_add_to_cart?: boolean;
1771
+ /**
1772
+ * - A flag indicating whether the product
1773
+ * should be automatically selected.
1774
+ */
1775
+ auto_select?: boolean;
1776
+ /**
1777
+ * - The maximum quantity of the product that
1778
+ * can be added to the cart.
1779
+ */
1780
+ max_quantity: number;
1781
+ /**
1782
+ * - The minimum quantity of the product that
1783
+ * can be added to the cart.
1784
+ */
1785
+ min_quantity?: number;
1786
+ /**
1787
+ * - The price details for the product group.
1788
+ */
1789
+ price?: ProductGroupPrice;
1790
+ /**
1791
+ * - The details of the product.
1792
+ */
1793
+ product_details?: ProductDetails;
1794
+ /**
1795
+ * - The unique ID of the product in the group.
1796
+ */
1797
+ product_uid: number;
1798
+ /**
1799
+ * - The available sizes for the product.
1800
+ */
1801
+ sizes?: Size[];
1802
+ };
1803
+ /** @returns {ProductListingAction} */
1804
+ declare function ProductListingAction(): ProductListingAction;
1805
+ type ProductListingAction = {
1806
+ page?: ProductListingActionPage;
1807
+ type?: string;
1808
+ };
1809
+ /** @returns {ProductListingActionPage} */
1810
+ declare function ProductListingActionPage(): ProductListingActionPage;
1811
+ type ProductListingActionPage = {
1812
+ params?: any;
1813
+ query?: any;
1814
+ type?: string;
1815
+ };
1816
+ /** @returns {ProductListingDetail} */
1817
+ declare function ProductListingDetail(): ProductListingDetail;
1818
+ type ProductListingDetail = {
1819
+ _custom_json?: any;
1820
+ _custom_meta?: CustomMetaFields[];
1821
+ action?: ProductListingAction;
1822
+ attributes?: any;
1823
+ brand?: ProductBrand;
1824
+ categories?: ProductBrand[];
1825
+ category_map?: ProductCategoryMap;
1826
+ color?: string;
1827
+ custom_order?: ProductDetailCustomOrder;
1828
+ description?: string;
1829
+ discount?: string;
1830
+ grouped_attributes?: ProductDetailGroupedAttribute[];
1831
+ has_variant?: boolean;
1832
+ highlights?: string[];
1833
+ identifiers?: string[];
1834
+ image_nature?: string;
1835
+ is_dependent?: boolean;
1836
+ item_code?: string;
1837
+ item_type?: string;
1838
+ medias?: Media[];
1839
+ moq?: ApplicationItemMOQ;
1840
+ name?: string;
1841
+ net_quantity?: NetQuantity;
1842
+ price?: ProductListingPrice;
1843
+ product_group_tag?: string[];
1844
+ product_online_date?: string;
1845
+ rating?: number;
1846
+ rating_count?: number;
1847
+ sellable?: boolean;
1848
+ seo?: ApplicationItemSEO;
1849
+ short_description?: string;
1850
+ similars?: string[];
1851
+ sizes?: string[];
1852
+ slug: string;
1853
+ tags?: string[];
1854
+ teaser_tag?: string;
1855
+ tryouts?: string[];
1856
+ type?: string;
1857
+ uid?: number;
1858
+ variants?: ProductVariantListingResponse[];
1859
+ };
1860
+ /** @returns {ProductListingPrice} */
1861
+ declare function ProductListingPrice(): ProductListingPrice;
1862
+ type ProductListingPrice = {
1863
+ effective?: Price;
1864
+ marked?: Price;
1865
+ };
1866
+ /** @returns {ProductListingResponse} */
1867
+ declare function ProductListingResponse(): ProductListingResponse;
1868
+ type ProductListingResponse = {
1869
+ filters?: ProductFilters[];
1870
+ items?: ProductListingDetail[];
1871
+ page: Page;
1872
+ sort_on?: ProductSortOn[];
1873
+ };
1874
+ /** @returns {ProductsComparisonResponse} */
1875
+ declare function ProductsComparisonResponse(): ProductsComparisonResponse;
1876
+ type ProductsComparisonResponse = {
1877
+ attributes_metadata?: AttributeMetadata[];
1878
+ items?: ProductDetail[];
1879
+ };
1880
+ /** @returns {ProductSetDistributionSizeV3} */
1881
+ declare function ProductSetDistributionSizeV3(): ProductSetDistributionSizeV3;
1882
+ type ProductSetDistributionSizeV3 = {
1883
+ pieces?: number;
1884
+ size?: string;
1885
+ };
1886
+ /** @returns {ProductSetDistributionV3} */
1887
+ declare function ProductSetDistributionV3(): ProductSetDistributionV3;
1888
+ type ProductSetDistributionV3 = {
1889
+ sizes?: ProductSetDistributionSizeV3[];
1890
+ };
1891
+ /** @returns {ProductSetV3} */
1892
+ declare function ProductSetV3(): ProductSetV3;
1893
+ type ProductSetV3 = {
1894
+ quantity?: number;
1895
+ size_distribution?: ProductSetDistributionV3;
1896
+ };
1897
+ /** @returns {ProductSize} */
1898
+ declare function ProductSize(): ProductSize;
1899
+ type ProductSize = {
1900
+ dimension?: Dimension;
1901
+ display?: string;
1902
+ is_available?: boolean;
1903
+ quantity?: number;
1904
+ seller_identifiers?: string[];
1905
+ value?: string;
1906
+ weight?: Weight;
1907
+ };
1908
+ /** @returns {ProductSizePriceResponseV3} */
1909
+ declare function ProductSizePriceResponseV3(): ProductSizePriceResponseV3;
1910
+ type ProductSizePriceResponseV3 = {
1911
+ article_assignment?: ArticleAssignmentV3;
1912
+ article_id?: string;
1913
+ delivery_promise?: PromiseSchema;
1914
+ discount?: string;
1915
+ discount_meta?: DiscountMeta;
1916
+ grouped_attributes?: SellerGroupAttributes[];
1917
+ is_cod?: boolean;
1918
+ is_gift?: boolean;
1919
+ item_type?: string;
1920
+ long_lat?: number[];
1921
+ marketplace_attributes?: MarketPlaceSttributesSchemaV3[];
1922
+ pincode?: number;
1923
+ price?: ProductStockPriceV3;
1924
+ price_per_piece?: ProductStockPriceV3;
1925
+ price_per_unit?: ProductStockUnitPriceV3;
1926
+ quantity?: number;
1927
+ return_config?: ReturnConfigSchemaV3;
1928
+ seller?: SellerV3;
1929
+ seller_count?: number;
1930
+ set?: ProductSetV3;
1931
+ special_badge?: string;
1932
+ store?: StoreV3;
1933
+ strategy_wise_listing?: StrategyWiseListingSchemaV3[];
1934
+ };
1935
+ /** @returns {ProductSizes} */
1936
+ declare function ProductSizes(): ProductSizes;
1937
+ type ProductSizes = {
1938
+ discount?: string;
1939
+ discount_meta?: DiscountMeta;
1940
+ multi_size?: boolean;
1941
+ price?: ProductSizesPrice;
1942
+ sellable?: boolean;
1943
+ size_chart?: SizeChart;
1944
+ sizes?: ProductSize[];
1945
+ stores?: ProductSizeStores;
1946
+ };
1947
+ /** @returns {ProductSizeSellerFilterSchemaV3} */
1948
+ declare function ProductSizeSellerFilterSchemaV3(): ProductSizeSellerFilterSchemaV3;
1949
+ type ProductSizeSellerFilterSchemaV3 = {
1950
+ is_selected?: boolean;
1951
+ name?: string;
1952
+ value?: string;
1953
+ };
1954
+ /** @returns {ProductSizeSellersResponseV3} */
1955
+ declare function ProductSizeSellersResponseV3(): ProductSizeSellersResponseV3;
1956
+ type ProductSizeSellersResponseV3 = {
1957
+ items?: ProductSizePriceResponseV3[];
1958
+ page: Page;
1959
+ sort_on?: ProductSizeSellerFilterSchemaV3[];
1960
+ };
1961
+ /** @returns {ProductSizesPrice} */
1962
+ declare function ProductSizesPrice(): ProductSizesPrice;
1963
+ type ProductSizesPrice = {
1964
+ effective?: Price;
1965
+ marked?: Price;
1966
+ selling?: Price;
1967
+ };
1968
+ /** @returns {ProductSizeStores} */
1969
+ declare function ProductSizeStores(): ProductSizeStores;
1970
+ type ProductSizeStores = {
1971
+ count?: number;
1972
+ };
1973
+ /** @returns {ProductSortOn} */
1974
+ declare function ProductSortOn(): ProductSortOn;
1975
+ type ProductSortOn = {
1976
+ display?: string;
1977
+ is_selected?: boolean;
1978
+ logo?: string;
1979
+ name?: string;
1980
+ value?: string;
1981
+ };
1982
+ /** @returns {ProductStockPolling} */
1983
+ declare function ProductStockPolling(): ProductStockPolling;
1984
+ type ProductStockPolling = {
1985
+ items?: ProductStockStatusItem[];
1986
+ page: Page;
1987
+ };
1988
+ /** @returns {ProductStockPrice} */
1989
+ declare function ProductStockPrice(): ProductStockPrice;
1990
+ type ProductStockPrice = {
1991
+ currency?: string;
1992
+ effective?: number;
1993
+ marked?: number;
1994
+ };
1995
+ /** @returns {ProductStockPriceV3} */
1996
+ declare function ProductStockPriceV3(): ProductStockPriceV3;
1997
+ type ProductStockPriceV3 = {
1998
+ /**
1999
+ * - The currency code for which the product
2000
+ * is available
2001
+ */
2002
+ currency_code?: string;
2003
+ /**
2004
+ * - The currency symbol for the currency
2005
+ * in which the product is available.
2006
+ */
2007
+ currency_symbol?: string;
2008
+ /**
2009
+ * - The effective or final price for the product
2010
+ * at the given pincode.
2011
+ */
2012
+ effective?: number;
2013
+ /**
2014
+ * - The marked price of the product.
2015
+ */
2016
+ marked?: number;
2017
+ /**
2018
+ * - The selling price of the product.
2019
+ */
2020
+ selling?: number;
2021
+ };
2022
+ /** @returns {ProductStockStatusItem} */
2023
+ declare function ProductStockStatusItem(): ProductStockStatusItem;
2024
+ type ProductStockStatusItem = {
2025
+ company?: CompanyDetail;
2026
+ identifier?: any;
2027
+ item_id?: number;
2028
+ price?: ProductStockPrice;
2029
+ quantity?: number;
2030
+ seller?: Seller;
2031
+ size?: string;
2032
+ store?: StoreDetail;
2033
+ uid?: string;
2034
+ };
2035
+ /** @returns {ProductStockStatusResponse} */
2036
+ declare function ProductStockStatusResponse(): ProductStockStatusResponse;
2037
+ type ProductStockStatusResponse = {
2038
+ items?: ProductStockStatusItem[];
2039
+ };
2040
+ /** @returns {ProductStockUnitPriceV3} */
2041
+ declare function ProductStockUnitPriceV3(): ProductStockUnitPriceV3;
2042
+ type ProductStockUnitPriceV3 = {
2043
+ currency_code?: string;
2044
+ currency_symbol?: string;
2045
+ price?: number;
2046
+ unit?: string;
2047
+ };
2048
+ /** @returns {ProductVariantItemResponse} */
2049
+ declare function ProductVariantItemResponse(): ProductVariantItemResponse;
2050
+ type ProductVariantItemResponse = {
2051
+ _custom_meta?: CustomMetaFields[];
2052
+ action?: ProductListingAction;
2053
+ color?: string;
2054
+ color_name?: string;
2055
+ is_available?: boolean;
2056
+ medias?: Media[];
2057
+ name?: string;
2058
+ slug?: string;
2059
+ uid?: number;
2060
+ value?: string;
2061
+ };
2062
+ /** @returns {ProductVariantListingResponse} */
2063
+ declare function ProductVariantListingResponse(): ProductVariantListingResponse;
2064
+ type ProductVariantListingResponse = {
2065
+ display_type?: string;
2066
+ header?: string;
2067
+ items?: ProductVariantItemResponse[];
2068
+ key?: string;
2069
+ total?: number;
2070
+ };
2071
+ /** @returns {ProductVariantResponse} */
2072
+ declare function ProductVariantResponse(): ProductVariantResponse;
2073
+ type ProductVariantResponse = {
2074
+ display_type?: string;
2075
+ header?: string;
2076
+ items?: ProductVariantItemResponse[];
2077
+ key?: string;
2078
+ };
2079
+ /** @returns {ProductVariantsResponse} */
2080
+ declare function ProductVariantsResponse(): ProductVariantsResponse;
2081
+ type ProductVariantsResponse = {
2082
+ variants?: ProductVariantResponse[];
2083
+ };
2084
+ /** @returns {PromiseSchema} */
2085
+ declare function PromiseSchema(): PromiseSchema;
2086
+ type PromiseSchema = {
2087
+ max?: string;
2088
+ min?: string;
2089
+ };
2090
+ /** @returns {ReturnConfigSchemaV3} */
2091
+ declare function ReturnConfigSchemaV3(): ReturnConfigSchemaV3;
2092
+ type ReturnConfigSchemaV3 = {
2093
+ returnable?: boolean;
2094
+ time?: number;
2095
+ unit?: string;
2096
+ };
2097
+ /** @returns {SecondLevelChild} */
2098
+ declare function SecondLevelChild(): SecondLevelChild;
2099
+ type SecondLevelChild = {
2100
+ _custom_json?: any;
2101
+ action?: ProductListingAction;
2102
+ banners?: ImageUrls;
2103
+ childs?: ThirdLevelChild[];
2104
+ name?: string;
2105
+ slug?: string;
2106
+ uid?: number;
2107
+ };
2108
+ /** @returns {Seller} */
2109
+ declare function Seller(): Seller;
2110
+ type Seller = {
2111
+ count?: number;
2112
+ name?: string;
2113
+ uid?: number;
2114
+ };
2115
+ /** @returns {SellerGroupAttributes} */
2116
+ declare function SellerGroupAttributes(): SellerGroupAttributes;
2117
+ type SellerGroupAttributes = {
2118
+ details?: DetailsSchemaV3[];
2119
+ title?: string;
2120
+ };
2121
+ /** @returns {SellerPhoneNumber} */
2122
+ declare function SellerPhoneNumber(): SellerPhoneNumber;
2123
+ type SellerPhoneNumber = {
2124
+ country_code: number;
2125
+ number: string;
2126
+ };
2127
+ /** @returns {SellerV3} */
2128
+ declare function SellerV3(): SellerV3;
2129
+ type SellerV3 = {
2130
+ count?: number;
2131
+ name?: string;
2132
+ uid?: number;
2133
+ };
2134
+ /** @returns {Size} */
2135
+ declare function Size(): Size;
2136
+ type Size = {
2137
+ /**
2138
+ * - The display string for the size
2139
+ */
2140
+ display?: any;
2141
+ /**
2142
+ * - Whether or not this size is available
2143
+ */
2144
+ is_available?: boolean;
2145
+ /**
2146
+ * - The quantity of this size available
2147
+ */
2148
+ quantity?: number;
2149
+ /**
2150
+ * - The value of the size
2151
+ */
2152
+ value?: any;
2153
+ };
2154
+ /** @returns {SizeChart} */
2155
+ declare function SizeChart(): SizeChart;
2156
+ type SizeChart = {
2157
+ description?: string;
2158
+ headers?: ColumnHeaders;
2159
+ image?: string;
2160
+ size_tip?: string;
2161
+ sizes?: SizeChartValues[];
2162
+ title?: string;
2163
+ unit?: string;
2164
+ };
2165
+ /** @returns {SizeChartValues} */
2166
+ declare function SizeChartValues(): SizeChartValues;
2167
+ type SizeChartValues = {
2168
+ col_1?: string;
2169
+ col_2?: string;
2170
+ col_3?: string;
2171
+ col_4?: string;
2172
+ col_5?: string;
2173
+ col_6?: string;
2174
+ };
2175
+ /** @returns {Store} */
2176
+ declare function Store(): Store;
2177
+ type Store = {
2178
+ address?: string;
2179
+ city?: string;
2180
+ country?: string;
2181
+ lat_long?: LatLong;
2182
+ name?: string;
2183
+ pincode?: number;
2184
+ state?: string;
2185
+ store_code?: string;
2186
+ store_email?: string;
2187
+ uid?: number;
2188
+ };
2189
+ /** @returns {StoreAddressSerializer} */
2190
+ declare function StoreAddressSerializer(): StoreAddressSerializer;
2191
+ type StoreAddressSerializer = {
2192
+ address1?: string;
2193
+ address2?: string;
2194
+ city?: string;
2195
+ country?: string;
2196
+ landmark?: string;
2197
+ latitude?: number;
2198
+ longitude?: number;
2199
+ pincode?: number;
2200
+ state?: string;
2201
+ };
2202
+ /** @returns {StoreDepartments} */
2203
+ declare function StoreDepartments(): StoreDepartments;
2204
+ type StoreDepartments = {
2205
+ logo?: any;
2206
+ name?: string;
2207
+ priority_order?: number;
2208
+ slug?: string;
2209
+ uid?: number;
2210
+ };
2211
+ /** @returns {StoreDetail} */
2212
+ declare function StoreDetail(): StoreDetail;
2213
+ type StoreDetail = {
2214
+ city?: string;
2215
+ code?: string;
2216
+ id?: number;
2217
+ name?: string;
2218
+ };
2219
+ /** @returns {StoreDetails} */
2220
+ declare function StoreDetails(): StoreDetails;
2221
+ type StoreDetails = {
2222
+ _custom_json?: any;
2223
+ address?: StoreAddressSerializer;
2224
+ company?: CompanyStore;
2225
+ contact_numbers?: SellerPhoneNumber[];
2226
+ departments?: StoreDepartments[];
2227
+ manager?: StoreManagerSerializer;
2228
+ name?: string;
2229
+ store_code?: string;
2230
+ timing?: StoreTiming[];
2231
+ uid?: number;
2232
+ };
2233
+ /** @returns {StoreListingResponse} */
2234
+ declare function StoreListingResponse(): StoreListingResponse;
2235
+ type StoreListingResponse = {
2236
+ items: Store[];
2237
+ page: Page;
2238
+ };
2239
+ /** @returns {StoreManagerSerializer} */
2240
+ declare function StoreManagerSerializer(): StoreManagerSerializer;
2241
+ type StoreManagerSerializer = {
2242
+ email?: string;
2243
+ mobile_no?: SellerPhoneNumber;
2244
+ name?: string;
2245
+ };
2246
+ /** @returns {StoreTiming} */
2247
+ declare function StoreTiming(): StoreTiming;
2248
+ type StoreTiming = {
2249
+ closing?: Time;
2250
+ open?: boolean;
2251
+ opening?: Time;
2252
+ weekday?: string;
2253
+ };
2254
+ /** @returns {StoreV3} */
2255
+ declare function StoreV3(): StoreV3;
2256
+ type StoreV3 = {
2257
+ count?: number;
2258
+ name?: string;
2259
+ uid?: number;
2260
+ };
2261
+ /** @returns {StrategyWiseListingSchemaV3} */
2262
+ declare function StrategyWiseListingSchemaV3(): StrategyWiseListingSchemaV3;
2263
+ type StrategyWiseListingSchemaV3 = {
2264
+ distance?: number;
2265
+ pincode?: number;
2266
+ quantity?: number;
2267
+ tat?: number;
2268
+ };
2269
+ /** @returns {ThirdLevelChild} */
2270
+ declare function ThirdLevelChild(): ThirdLevelChild;
2271
+ type ThirdLevelChild = {
2272
+ _custom_json?: any;
2273
+ action?: ProductListingAction;
2274
+ banners?: ImageUrls;
2275
+ childs?: any[];
2276
+ name?: string;
2277
+ slug?: string;
2278
+ uid?: number;
2279
+ };
2280
+ /** @returns {Time} */
2281
+ declare function Time(): Time;
2282
+ type Time = {
2283
+ hour?: number;
2284
+ minute?: number;
2285
+ };
2286
+ /** @returns {UserDetail} */
2287
+ declare function UserDetail(): UserDetail;
2288
+ type UserDetail = {
2289
+ /**
2290
+ * - The contact details of the user.
2291
+ */
2292
+ contact?: string;
2293
+ /**
2294
+ * - A flag indicating whether the user is a super user.
2295
+ */
2296
+ super_user?: boolean;
2297
+ /**
2298
+ * - The user ID of the user.
2299
+ */
2300
+ user_id: string;
2301
+ /**
2302
+ * - The username of the user.
2303
+ */
2304
+ username: string;
2305
+ };
2306
+ /** @returns {Weight} */
2307
+ declare function Weight(): Weight;
2308
+ type Weight = {
2309
+ /**
2310
+ * - Whether the weight is the default one or not
2311
+ */
2312
+ is_default: boolean;
2313
+ /**
2314
+ * - The shipping weight of the product
2315
+ */
2316
+ shipping: number;
2317
+ /**
2318
+ * - The unit of weight
2319
+ */
2320
+ unit: string;
2321
+ };