@gofynd/fdk-client-javascript 0.1.37 → 1.0.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 (353) hide show
  1. package/README.md +24 -0
  2. package/application.d.ts +2 -1
  3. package/application.js +2 -1
  4. package/documentation/application/CART.md +315 -289
  5. package/documentation/application/CATALOG.md +427 -404
  6. package/documentation/application/FILESTORAGE.md +2 -0
  7. package/documentation/application/LEAD.md +18 -18
  8. package/documentation/application/LOGISTIC.md +45 -45
  9. package/documentation/application/ORDER.md +287 -287
  10. package/documentation/application/PAYMENT.md +278 -278
  11. package/documentation/application/POSCART.md +318 -292
  12. package/documentation/application/REWARDS.md +1 -0
  13. package/documentation/application/USER.md +19 -14
  14. package/documentation/platform/CART.md +465 -462
  15. package/documentation/platform/CATALOG.md +2691 -2624
  16. package/documentation/platform/COMPANYPROFILE.md +186 -348
  17. package/documentation/platform/DISCOUNT.md +86 -0
  18. package/documentation/platform/FILESTORAGE.md +2 -0
  19. package/documentation/platform/LEAD.md +60 -60
  20. package/documentation/platform/ORDER.md +1299 -1621
  21. package/documentation/platform/PAYMENT.md +89 -89
  22. package/documentation/platform/REWARDS.md +145 -0
  23. package/documentation/platform/USER.md +24 -14
  24. package/index.d.ts +4 -1
  25. package/index.js +6 -3
  26. package/package.json +9 -9
  27. package/platform.d.ts +2 -1
  28. package/platform.js +3 -2
  29. package/public.d.ts +1 -0
  30. package/public.js +3 -2
  31. package/sdk/application/ApplicationAPIClient.js +3 -1
  32. package/sdk/application/ApplicationClient.d.ts +16 -16
  33. package/sdk/application/ApplicationClient.js +32 -16
  34. package/sdk/application/ApplicationConfig.js +3 -2
  35. package/sdk/application/ApplicationModels.d.ts +0 -832
  36. package/sdk/application/ApplicationModels.js +3 -10574
  37. package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
  38. package/sdk/application/{client → Cart}/CartApplicationClient.js +14 -8
  39. package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
  40. package/sdk/application/Cart/CartApplicationModel.js +1136 -0
  41. package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +16 -12
  42. package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
  43. package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +11 -8
  44. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
  45. package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
  46. package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +3 -1
  47. package/sdk/application/{client → Common}/CommonApplicationClient.js +2 -2
  48. package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
  49. package/sdk/application/Common/CommonApplicationModel.js +228 -0
  50. package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +2 -1
  51. package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +2 -2
  52. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
  53. package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
  54. package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +4 -3
  55. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +2 -2
  56. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
  57. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
  58. package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +3 -2
  59. package/sdk/application/{client → Content}/ContentApplicationClient.js +2 -2
  60. package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
  61. package/sdk/application/Content/ContentApplicationModel.js +1349 -0
  62. package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +2 -1
  63. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +2 -2
  64. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
  65. package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
  66. package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +5 -4
  67. package/sdk/application/{client → Lead}/LeadApplicationClient.js +2 -2
  68. package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
  69. package/sdk/application/Lead/LeadApplicationModel.js +690 -0
  70. package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +5 -4
  71. package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +2 -2
  72. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
  73. package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
  74. package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +4 -3
  75. package/sdk/application/{client → Order}/OrderApplicationClient.js +2 -2
  76. package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
  77. package/sdk/application/Order/OrderApplicationModel.js +872 -0
  78. package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +4 -3
  79. package/sdk/application/{client → Payment}/PaymentApplicationClient.js +2 -2
  80. package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
  81. package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
  82. package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +24 -23
  83. package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
  84. package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +14 -8
  85. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
  86. package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
  87. package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +17 -13
  88. package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +2 -2
  89. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
  90. package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
  91. package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +5 -4
  92. package/sdk/application/{client → Share}/ShareApplicationClient.js +2 -2
  93. package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
  94. package/sdk/application/Share/ShareApplicationModel.js +178 -0
  95. package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +3 -2
  96. package/sdk/application/{client → Theme}/ThemeApplicationClient.js +2 -2
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
  98. package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
  99. package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +2 -1
  100. package/sdk/application/{client → User}/UserApplicationClient.js +2 -2
  101. package/sdk/application/User/UserApplicationModel.d.ts +95 -0
  102. package/sdk/application/User/UserApplicationModel.js +998 -0
  103. package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +30 -29
  104. package/sdk/application/index.d.ts +18 -0
  105. package/sdk/application/index.js +33 -0
  106. package/sdk/common/AxiosHelper.js +23 -10
  107. package/sdk/common/Logger.d.ts +2 -0
  108. package/sdk/common/Logger.js +6 -0
  109. package/sdk/common/curlHelper.d.ts +2 -0
  110. package/sdk/common/curlHelper.js +95 -0
  111. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +285 -0
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
  115. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +2 -2
  116. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
  118. package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
  119. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +2 -2
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
  122. package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
  123. package/sdk/platform/{client → Billing}/BillingPlatformClient.js +2 -2
  124. package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
  125. package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
  126. package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
  127. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
  128. package/sdk/platform/Cart/CartPlatformApplicationClient.js +755 -0
  129. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
  130. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
  131. package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
  132. package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
  133. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
  134. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2136 -0
  135. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
  136. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
  137. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +338 -338
  138. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +316 -0
  139. package/sdk/platform/Catalog/CatalogPlatformModel.js +4690 -0
  140. package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +89 -88
  141. package/sdk/platform/{client → Common}/CommonPlatformClient.js +2 -2
  142. package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
  143. package/sdk/platform/Common/CommonPlatformModel.js +228 -0
  144. package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
  145. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
  146. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1656 -0
  147. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
  148. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
  149. package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +2 -2
  150. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
  151. package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
  152. package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
  153. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
  154. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +2 -33
  155. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
  156. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
  157. package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
  158. package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
  159. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
  160. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +940 -0
  161. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
  162. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
  163. package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +2 -2
  164. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
  165. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
  166. package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
  167. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
  168. package/sdk/platform/Content/ContentPlatformApplicationClient.js +2208 -0
  169. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
  170. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
  171. package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
  172. package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
  173. package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
  174. package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +35 -2
  175. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
  176. package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
  177. package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
  178. package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
  179. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
  180. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +247 -0
  181. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
  182. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
  183. package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +2 -2
  184. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
  185. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
  186. package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
  187. package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +2 -2
  188. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
  189. package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
  190. package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
  191. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
  192. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +397 -0
  193. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
  194. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
  195. package/sdk/platform/{client → Lead}/LeadPlatformClient.js +2 -2
  196. package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
  197. package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
  198. package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
  199. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
  200. package/sdk/platform/Order/OrderPlatformApplicationClient.js +152 -0
  201. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
  202. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
  203. package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +9 -49
  204. package/sdk/platform/{client → Order}/OrderPlatformClient.js +18 -130
  205. package/sdk/platform/Order/OrderPlatformModel.d.ts +215 -0
  206. package/sdk/platform/Order/OrderPlatformModel.js +3530 -0
  207. package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +0 -2
  208. package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +22 -44
  209. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
  210. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -0
  211. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
  212. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
  213. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
  214. package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
  215. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
  216. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +333 -0
  217. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
  218. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
  219. package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +2 -2
  220. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
  221. package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
  222. package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
  223. package/sdk/platform/PlatformAPIClient.js +2 -1
  224. package/sdk/platform/PlatformApplicationClient.d.ts +2979 -18615
  225. package/sdk/platform/PlatformApplicationClient.js +3811 -13957
  226. package/sdk/platform/PlatformClient.d.ts +2982 -3013
  227. package/sdk/platform/PlatformClient.js +3806 -3231
  228. package/sdk/platform/PlatformConfig.js +2 -1
  229. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
  230. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +428 -0
  231. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
  232. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
  233. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
  234. package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
  235. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
  236. package/sdk/platform/Share/SharePlatformApplicationClient.js +182 -0
  237. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
  238. package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
  239. package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
  240. package/sdk/platform/Share/SharePlatformModel.js +170 -0
  241. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
  242. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +704 -0
  243. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
  244. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
  246. package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +361 -0
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
  251. package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
  252. package/sdk/platform/User/UserPlatformModel.js +998 -0
  253. package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +2 -2
  254. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
  255. package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
  256. package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
  257. package/sdk/platform/index.d.ts +24 -0
  258. package/sdk/platform/index.js +45 -0
  259. package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +1 -1
  260. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
  261. package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
  262. package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +1 -1
  263. package/sdk/public/{client → Inventory}/InventoryPublicClient.js +1 -1
  264. package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
  265. package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
  266. package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +2 -2
  267. package/sdk/public/PublicClient.d.ts +3 -3
  268. package/sdk/public/PublicClient.js +8 -3
  269. package/sdk/public/{client → Webhook}/WebhookPublicClient.js +1 -1
  270. package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
  271. package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
  272. package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +2 -2
  273. package/sdk/public/index.d.ts +5 -0
  274. package/sdk/public/index.js +7 -0
  275. package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
  276. package/sdk/platform/PlatformApplicationModels.js +0 -22658
  277. package/sdk/platform/PlatformModels.d.ts +0 -1477
  278. package/sdk/platform/PlatformModels.js +0 -20646
  279. package/sdk/platform/models/CartValidator.d.ts +0 -0
  280. package/sdk/platform/models/CartValidator.js +0 -0
  281. package/sdk/platform/models/ContentValidator.d.ts +0 -0
  282. package/sdk/platform/models/ContentValidator.js +0 -0
  283. package/sdk/platform/models/PartnerValidator.d.ts +0 -0
  284. package/sdk/platform/models/PartnerValidator.js +0 -0
  285. package/sdk/platform/models/RewardsValidator.d.ts +0 -0
  286. package/sdk/platform/models/RewardsValidator.js +0 -0
  287. package/sdk/platform/models/ShareValidator.d.ts +0 -0
  288. package/sdk/platform/models/ShareValidator.js +0 -0
  289. package/sdk/platform/models/ThemeValidator.d.ts +0 -0
  290. package/sdk/platform/models/ThemeValidator.js +0 -0
  291. package/sdk/platform/models/UserValidator.d.ts +0 -0
  292. package/sdk/platform/models/UserValidator.js +0 -0
  293. package/sdk/public/PublicModels.d.ts +0 -50
  294. package/sdk/public/PublicModels.js +0 -712
  295. package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
  296. package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
  297. package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
  298. package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
  299. package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
  300. package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
  301. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
  302. package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
  303. package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
  304. package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
  305. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
  306. package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
  307. package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
  308. package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
  309. package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
  310. package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
  311. package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
  312. package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
  313. package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
  314. package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
  315. package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
  316. package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
  317. package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
  318. package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
  319. package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
  320. package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
  321. package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
  322. package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
  323. package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
  324. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
  325. package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
  326. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
  327. package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
  328. package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
  329. package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
  330. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +126 -126
  331. package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +15 -15
  332. /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
  333. /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
  334. /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
  335. /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
  336. /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
  337. /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
  338. /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
  339. /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
  340. /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
  341. /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
  342. /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
  343. /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
  344. /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
  345. /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
  346. /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
  347. /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
  348. /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
  349. /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
  350. /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
  351. /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
  352. /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
  353. /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
@@ -7581,13 +7581,15 @@ Get the price of a product size at a PIN Code
7581
7581
  const promise = catalog.getProductPriceBySlug({ slug : value,
7582
7582
  size : value,
7583
7583
  storeId : value,
7584
- pincode : value });
7584
+ pincode : value,
7585
+ moq : value });
7585
7586
 
7586
7587
  // Async/Await
7587
7588
  const data = await catalog.getProductPriceBySlug({ slug : value,
7588
7589
  size : value,
7589
7590
  storeId : value,
7590
- pincode : value });
7591
+ pincode : value,
7592
+ moq : value });
7591
7593
  ```
7592
7594
 
7593
7595
 
@@ -7599,7 +7601,8 @@ const data = await catalog.getProductPriceBySlug({ slug : value,
7599
7601
  | slug | string | yes | A short, human-readable, URL-friendly identifier of a product. You can get slug value from the endpoint /service/application/catalog/v1.0/products/ |
7600
7602
  | size | string | yes | A string indicating the size of the product, e.g. S, M, XL. You can get slug value from the endpoint /service/application/catalog/v1.0/products/sizes |
7601
7603
  | storeId | number | no | The ID of the store that is selling the product, e.g. 1,2,3. |
7602
- | pincode | string | no | The PIN Code of the area near which the selling locations should be searched, e.g. 400059. |
7604
+ | pincode | string | no | The PIN Code of the area near which the selling locations should be searched, e.g. 400059. |
7605
+ | moq | number | no | An Integer indication the Minimum Order Quantity of a product, e.g. 100. |
7603
7606
 
7604
7607
 
7605
7608
 
@@ -7610,9 +7613,9 @@ Prices may vary for different sizes of a product. Use this API to retrieve the p
7610
7613
 
7611
7614
 
7612
7615
 
7613
- [ProductSizePriceResponseV2](#ProductSizePriceResponseV2)
7616
+ [ProductSizePriceResponseV3](#ProductSizePriceResponseV3)
7614
7617
 
7615
- Success. Returns a ProductSizePriceV2 object. Check the example shown below or refer `ProductSizePriceResponseV2` for more details.
7618
+ Success. Returns a ProductSizePriceV3 object. Check the example shown below or refer `ProductSizePriceResponseV3` for more details.
7616
7619
 
7617
7620
 
7618
7621
 
@@ -7759,9 +7762,9 @@ A product of a particular size may be sold by multiple sellers. Use this API to
7759
7762
 
7760
7763
 
7761
7764
 
7762
- [ProductSizeSellersResponseV2](#ProductSizeSellersResponseV2)
7765
+ [ProductSizeSellersResponseV3](#ProductSizeSellersResponseV3)
7763
7766
 
7764
- Success. Returns a ProductSizeSellerV2 object. Check the example shown below or refer `ProductSizeSellersResponseV2` for more details.
7767
+ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or refer `ProductSizeSellersResponseV3` for more details.
7765
7768
 
7766
7769
 
7767
7770
 
@@ -7885,39 +7888,51 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
7885
7888
 
7886
7889
 
7887
7890
 
7888
- #### [Price](#Price)
7891
+ #### [ApplicationItemMOQ](#ApplicationItemMOQ)
7889
7892
 
7890
7893
  | Properties | Type | Nullable | Description |
7891
7894
  | ---------- | ---- | -------- | ----------- |
7892
- | currency_code | string | no | |
7893
- | currency_symbol | string | no | |
7894
- | max | number | no | |
7895
- | min | number | no | |
7895
+ | increment_unit | number | no | |
7896
+ | maximum | number | no | |
7897
+ | minimum | number | no | |
7896
7898
 
7897
7899
  ---
7898
7900
 
7899
7901
 
7900
7902
 
7901
7903
 
7902
- #### [ProductListingPrice](#ProductListingPrice)
7904
+ #### [Meta](#Meta)
7903
7905
 
7904
7906
  | Properties | Type | Nullable | Description |
7905
7907
  | ---------- | ---- | -------- | ----------- |
7906
- | marked | [Price](#Price) | no | |
7907
- | effective | [Price](#Price) | no | |
7908
+ | source | string | no | |
7908
7909
 
7909
7910
  ---
7910
7911
 
7911
7912
 
7912
7913
 
7913
7914
 
7914
- #### [ProductListingActionPage](#ProductListingActionPage)
7915
+ #### [Media](#Media)
7915
7916
 
7916
7917
  | Properties | Type | Nullable | Description |
7917
7918
  | ---------- | ---- | -------- | ----------- |
7919
+ | meta | [Meta](#Meta) | no | |
7918
7920
  | type | string | no | |
7919
- | params | string | no | |
7921
+ | url | string | no | |
7922
+ | alt | string | no | |
7923
+
7924
+ ---
7925
+
7926
+
7927
+
7928
+
7929
+ #### [ProductListingActionPage](#ProductListingActionPage)
7930
+
7931
+ | Properties | Type | Nullable | Description |
7932
+ | ---------- | ---- | -------- | ----------- |
7920
7933
  | query | string | no | |
7934
+ | params | string | no | |
7935
+ | type | string | no | |
7921
7936
 
7922
7937
  ---
7923
7938
 
@@ -7936,40 +7951,40 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
7936
7951
 
7937
7952
 
7938
7953
 
7939
- #### [Meta](#Meta)
7954
+ #### [ProductBrand](#ProductBrand)
7940
7955
 
7941
7956
  | Properties | Type | Nullable | Description |
7942
7957
  | ---------- | ---- | -------- | ----------- |
7943
- | source | string | no | |
7958
+ | logo | [Media](#Media) | no | |
7959
+ | name | string | no | |
7960
+ | uid | number | no | |
7961
+ | action | [ProductListingAction](#ProductListingAction) | no | |
7962
+ | description | string | no | |
7944
7963
 
7945
7964
  ---
7946
7965
 
7947
7966
 
7948
7967
 
7949
7968
 
7950
- #### [Media](#Media)
7969
+ #### [ProductCategoryMap](#ProductCategoryMap)
7951
7970
 
7952
7971
  | Properties | Type | Nullable | Description |
7953
7972
  | ---------- | ---- | -------- | ----------- |
7954
- | type | string | no | |
7955
- | alt | string | no | |
7956
- | meta | [Meta](#Meta) | no | |
7957
- | url | string | no | |
7973
+ | l2 | [ProductBrand](#ProductBrand) | no | |
7974
+ | l3 | [ProductBrand](#ProductBrand) | no | |
7975
+ | l1 | [ProductBrand](#ProductBrand) | no | |
7958
7976
 
7959
7977
  ---
7960
7978
 
7961
7979
 
7962
7980
 
7963
7981
 
7964
- #### [ProductBrand](#ProductBrand)
7982
+ #### [CustomMetaFields](#CustomMetaFields)
7965
7983
 
7966
7984
  | Properties | Type | Nullable | Description |
7967
7985
  | ---------- | ---- | -------- | ----------- |
7968
- | action | [ProductListingAction](#ProductListingAction) | no | |
7969
- | name | string | no | |
7970
- | logo | [Media](#Media) | no | |
7971
- | description | string | no | |
7972
- | uid | number | no | |
7986
+ | key | string | yes | |
7987
+ | value | string | yes | |
7973
7988
 
7974
7989
  ---
7975
7990
 
@@ -7993,57 +8008,58 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
7993
8008
 
7994
8009
  | Properties | Type | Nullable | Description |
7995
8010
  | ---------- | ---- | -------- | ----------- |
7996
- | details | [[ProductDetailAttribute](#ProductDetailAttribute)] | no | |
7997
8011
  | title | string | no | |
8012
+ | details | [[ProductDetailAttribute](#ProductDetailAttribute)] | no | |
7998
8013
 
7999
8014
  ---
8000
8015
 
8001
8016
 
8002
8017
 
8003
8018
 
8004
- #### [CustomMetaFields](#CustomMetaFields)
8019
+ #### [Price](#Price)
8005
8020
 
8006
8021
  | Properties | Type | Nullable | Description |
8007
8022
  | ---------- | ---- | -------- | ----------- |
8008
- | key | string | yes | |
8009
- | value | string | yes | |
8023
+ | max | number | no | |
8024
+ | min | number | no | |
8025
+ | currency_symbol | string | no | |
8026
+ | currency_code | string | no | |
8010
8027
 
8011
8028
  ---
8012
8029
 
8013
8030
 
8014
8031
 
8015
8032
 
8016
- #### [ApplicationItemMOQ](#ApplicationItemMOQ)
8033
+ #### [ProductListingPrice](#ProductListingPrice)
8017
8034
 
8018
8035
  | Properties | Type | Nullable | Description |
8019
8036
  | ---------- | ---- | -------- | ----------- |
8020
- | increment_unit | number | no | |
8021
- | minimum | number | no | |
8022
- | maximum | number | no | |
8037
+ | marked | [Price](#Price) | no | |
8038
+ | effective | [Price](#Price) | no | |
8023
8039
 
8024
8040
  ---
8025
8041
 
8026
8042
 
8027
8043
 
8028
8044
 
8029
- #### [ApplicationItemSEO](#ApplicationItemSEO)
8045
+ #### [NetQuantity](#NetQuantity)
8030
8046
 
8031
8047
  | Properties | Type | Nullable | Description |
8032
8048
  | ---------- | ---- | -------- | ----------- |
8033
- | title | any | no | |
8034
- | description | any | no | |
8049
+ | unit | any | no | |
8050
+ | value | number | no | |
8035
8051
 
8036
8052
  ---
8037
8053
 
8038
8054
 
8039
8055
 
8040
8056
 
8041
- #### [NetQuantity](#NetQuantity)
8057
+ #### [ApplicationItemSEO](#ApplicationItemSEO)
8042
8058
 
8043
8059
  | Properties | Type | Nullable | Description |
8044
8060
  | ---------- | ---- | -------- | ----------- |
8045
- | unit | any | no | |
8046
- | value | number | no | |
8061
+ | title | any | no | |
8062
+ | description | any | no | |
8047
8063
 
8048
8064
  ---
8049
8065
 
@@ -8055,38 +8071,39 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8055
8071
  | Properties | Type | Nullable | Description |
8056
8072
  | ---------- | ---- | -------- | ----------- |
8057
8073
  | discount | string | no | |
8058
- | teaser_tag | string | no | |
8074
+ | type | string | no | |
8075
+ | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8076
+ | image_nature | string | no | |
8077
+ | _custom_json | string | no | |
8078
+ | tags | [string] | no | |
8079
+ | category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
8080
+ | uid | number | no | |
8081
+ | slug | string | yes | |
8082
+ | item_type | string | no | |
8083
+ | color | string | no | |
8084
+ | medias | [[Media](#Media)] | no | |
8085
+ | highlights | [string] | no | |
8086
+ | name | string | no | |
8087
+ | tryouts | [string] | no | |
8088
+ | rating_count | number | no | |
8059
8089
  | attributes | string | no | |
8060
- | price | [ProductListingPrice](#ProductListingPrice) | no | |
8061
- | brand | [ProductBrand](#ProductBrand) | no | |
8062
8090
  | similars | [string] | no | |
8063
- | short_description | string | no | |
8064
- | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8065
- | color | string | no | |
8066
- | image_nature | string | no | |
8091
+ | item_code | string | no | |
8092
+ | teaser_tag | string | no | |
8067
8093
  | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8068
- | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8094
+ | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8095
+ | price | [ProductListingPrice](#ProductListingPrice) | no | |
8096
+ | brand | [ProductBrand](#ProductBrand) | no | |
8097
+ | product_online_date | string | no | |
8069
8098
  | rating | number | no | |
8070
- | uid | number | no | |
8071
- | type | string | no | |
8072
- | tryouts | [string] | no | |
8099
+ | net_quantity | [NetQuantity](#NetQuantity) | no | |
8100
+ | categories | [[ProductBrand](#ProductBrand)] | no | |
8073
8101
  | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8102
+ | short_description | string | no | |
8103
+ | is_dependent | boolean | no | |
8074
8104
  | has_variant | boolean | no | |
8075
- | tags | [string] | no | |
8076
- | _custom_json | string | no | |
8077
- | net_quantity | [NetQuantity](#NetQuantity) | no | |
8078
8105
  | action | [ProductListingAction](#ProductListingAction) | no | |
8079
- | highlights | [string] | no | |
8080
- | product_online_date | string | no | |
8081
- | rating_count | number | no | |
8082
- | name | string | no | |
8083
8106
  | description | string | no | |
8084
- | medias | [[Media](#Media)] | no | |
8085
- | slug | string | yes | |
8086
- | categories | [[ProductBrand](#ProductBrand)] | no | |
8087
- | is_dependent | boolean | no | |
8088
- | item_type | string | no | |
8089
- | item_code | string | no | |
8090
8107
 
8091
8108
  ---
8092
8109
 
@@ -8104,61 +8121,56 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8104
8121
 
8105
8122
 
8106
8123
 
8107
- #### [Dimension](#Dimension)
8124
+ #### [ProductSizeStores](#ProductSizeStores)
8108
8125
 
8109
8126
  | Properties | Type | Nullable | Description |
8110
8127
  | ---------- | ---- | -------- | ----------- |
8111
- | is_default | boolean | yes | |
8112
- | unit | string | yes | |
8113
- | width | number | yes | |
8114
- | length | number | yes | |
8115
- | height | number | yes | |
8128
+ | count | number | no | |
8116
8129
 
8117
8130
  ---
8118
8131
 
8119
8132
 
8120
8133
 
8121
8134
 
8122
- #### [Weight](#Weight)
8135
+ #### [Dimension](#Dimension)
8123
8136
 
8124
8137
  | Properties | Type | Nullable | Description |
8125
8138
  | ---------- | ---- | -------- | ----------- |
8139
+ | height | number | yes | |
8126
8140
  | unit | string | yes | |
8141
+ | width | number | yes | |
8127
8142
  | is_default | boolean | yes | |
8128
- | shipping | number | yes | |
8143
+ | length | number | yes | |
8129
8144
 
8130
8145
  ---
8131
8146
 
8132
8147
 
8133
8148
 
8134
8149
 
8135
- #### [ProductSize](#ProductSize)
8150
+ #### [Weight](#Weight)
8136
8151
 
8137
8152
  | Properties | Type | Nullable | Description |
8138
8153
  | ---------- | ---- | -------- | ----------- |
8139
- | seller_identifiers | [string] | no | |
8140
- | is_available | boolean | no | |
8141
- | dimension | [Dimension](#Dimension) | no | |
8142
- | display | string | no | |
8143
- | quantity | number | no | |
8144
- | value | string | no | |
8145
- | weight | [Weight](#Weight) | no | |
8154
+ | shipping | number | yes | |
8155
+ | is_default | boolean | yes | |
8156
+ | unit | string | yes | |
8146
8157
 
8147
8158
  ---
8148
8159
 
8149
8160
 
8150
8161
 
8151
8162
 
8152
- #### [SizeChartValues](#SizeChartValues)
8163
+ #### [ProductSize](#ProductSize)
8153
8164
 
8154
8165
  | Properties | Type | Nullable | Description |
8155
8166
  | ---------- | ---- | -------- | ----------- |
8156
- | col_6 | string | no | |
8157
- | col_1 | string | no | |
8158
- | col_3 | string | no | |
8159
- | col_5 | string | no | |
8160
- | col_2 | string | no | |
8161
- | col_4 | string | no | |
8167
+ | dimension | [Dimension](#Dimension) | no | |
8168
+ | display | string | no | |
8169
+ | is_available | boolean | no | |
8170
+ | seller_identifiers | [string] | no | |
8171
+ | value | string | no | |
8172
+ | quantity | number | no | |
8173
+ | weight | [Weight](#Weight) | no | |
8162
8174
 
8163
8175
  ---
8164
8176
 
@@ -8181,40 +8193,45 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8181
8193
 
8182
8194
  | Properties | Type | Nullable | Description |
8183
8195
  | ---------- | ---- | -------- | ----------- |
8184
- | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8185
- | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8186
- | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8187
- | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8188
8196
  | col_2 | [ColumnHeader](#ColumnHeader) | no | |
8189
8197
  | col_4 | [ColumnHeader](#ColumnHeader) | no | |
8198
+ | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8199
+ | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8200
+ | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8201
+ | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8190
8202
 
8191
8203
  ---
8192
8204
 
8193
8205
 
8194
8206
 
8195
8207
 
8196
- #### [SizeChart](#SizeChart)
8208
+ #### [SizeChartValues](#SizeChartValues)
8197
8209
 
8198
8210
  | Properties | Type | Nullable | Description |
8199
8211
  | ---------- | ---- | -------- | ----------- |
8200
- | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8201
- | title | string | no | |
8202
- | unit | string | no | |
8203
- | description | string | no | |
8204
- | image | string | no | |
8205
- | headers | [ColumnHeaders](#ColumnHeaders) | no | |
8206
- | size_tip | string | no | |
8212
+ | col_2 | string | no | |
8213
+ | col_4 | string | no | |
8214
+ | col_1 | string | no | |
8215
+ | col_5 | string | no | |
8216
+ | col_6 | string | no | |
8217
+ | col_3 | string | no | |
8207
8218
 
8208
8219
  ---
8209
8220
 
8210
8221
 
8211
8222
 
8212
8223
 
8213
- #### [ProductSizeStores](#ProductSizeStores)
8224
+ #### [SizeChart](#SizeChart)
8214
8225
 
8215
8226
  | Properties | Type | Nullable | Description |
8216
8227
  | ---------- | ---- | -------- | ----------- |
8217
- | count | number | no | |
8228
+ | unit | string | no | |
8229
+ | headers | [ColumnHeaders](#ColumnHeaders) | no | |
8230
+ | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8231
+ | image | string | no | |
8232
+ | size_tip | string | no | |
8233
+ | title | string | no | |
8234
+ | description | string | no | |
8218
8235
 
8219
8236
  ---
8220
8237
 
@@ -8225,13 +8242,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8225
8242
 
8226
8243
  | Properties | Type | Nullable | Description |
8227
8244
  | ---------- | ---- | -------- | ----------- |
8228
- | sizes | [[ProductSize](#ProductSize)] | no | |
8229
- | sellable | boolean | no | |
8230
8245
  | discount | string | no | |
8231
- | size_chart | [SizeChart](#SizeChart) | no | |
8232
- | price | [ProductListingPrice](#ProductListingPrice) | no | |
8233
8246
  | multi_size | boolean | no | |
8234
8247
  | stores | [ProductSizeStores](#ProductSizeStores) | no | |
8248
+ | sizes | [[ProductSize](#ProductSize)] | no | |
8249
+ | price | [ProductListingPrice](#ProductListingPrice) | no | |
8250
+ | size_chart | [SizeChart](#SizeChart) | no | |
8251
+ | sellable | boolean | no | |
8235
8252
 
8236
8253
  ---
8237
8254
 
@@ -8243,8 +8260,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8243
8260
  | Properties | Type | Nullable | Description |
8244
8261
  | ---------- | ---- | -------- | ----------- |
8245
8262
  | display | string | no | |
8246
- | key | string | no | |
8247
8263
  | logo | string | no | |
8264
+ | key | string | no | |
8248
8265
  | description | string | no | |
8249
8266
 
8250
8267
  ---
@@ -8256,8 +8273,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8256
8273
 
8257
8274
  | Properties | Type | Nullable | Description |
8258
8275
  | ---------- | ---- | -------- | ----------- |
8259
- | details | [[AttributeDetail](#AttributeDetail)] | no | |
8260
8276
  | title | string | no | |
8277
+ | details | [[AttributeDetail](#AttributeDetail)] | no | |
8261
8278
 
8262
8279
  ---
8263
8280
 
@@ -8281,9 +8298,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8281
8298
  | Properties | Type | Nullable | Description |
8282
8299
  | ---------- | ---- | -------- | ----------- |
8283
8300
  | subtitle | string | no | |
8301
+ | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8284
8302
  | title | string | no | |
8285
8303
  | items | [[ProductDetail](#ProductDetail)] | no | |
8286
- | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8287
8304
 
8288
8305
  ---
8289
8306
 
@@ -8305,15 +8322,16 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8305
8322
 
8306
8323
  | Properties | Type | Nullable | Description |
8307
8324
  | ---------- | ---- | -------- | ----------- |
8325
+ | slug | string | no | |
8326
+ | value | string | no | |
8327
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8328
+ | color | string | no | |
8329
+ | medias | [[Media](#Media)] | no | |
8308
8330
  | color_name | string | no | |
8309
8331
  | is_available | boolean | no | |
8310
- | action | [ProductListingAction](#ProductListingAction) | no | |
8311
8332
  | name | string | no | |
8312
- | color | string | no | |
8313
- | medias | [[Media](#Media)] | no | |
8314
- | slug | string | no | |
8315
- | value | string | no | |
8316
8333
  | uid | number | no | |
8334
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8317
8335
 
8318
8336
  ---
8319
8337
 
@@ -8325,9 +8343,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8325
8343
  | Properties | Type | Nullable | Description |
8326
8344
  | ---------- | ---- | -------- | ----------- |
8327
8345
  | key | string | no | |
8346
+ | header | string | no | |
8328
8347
  | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8329
8348
  | display_type | string | no | |
8330
- | header | string | no | |
8331
8349
 
8332
8350
  ---
8333
8351
 
@@ -8349,8 +8367,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8349
8367
 
8350
8368
  | Properties | Type | Nullable | Description |
8351
8369
  | ---------- | ---- | -------- | ----------- |
8352
- | id | number | no | |
8353
8370
  | name | string | no | |
8371
+ | id | number | no | |
8354
8372
 
8355
8373
  ---
8356
8374
 
@@ -8361,36 +8379,36 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8361
8379
 
8362
8380
  | Properties | Type | Nullable | Description |
8363
8381
  | ---------- | ---- | -------- | ----------- |
8382
+ | currency | string | no | |
8364
8383
  | marked | number | no | |
8365
8384
  | effective | number | no | |
8366
- | currency | string | no | |
8367
8385
 
8368
8386
  ---
8369
8387
 
8370
8388
 
8371
8389
 
8372
8390
 
8373
- #### [StoreDetail](#StoreDetail)
8391
+ #### [Seller](#Seller)
8374
8392
 
8375
8393
  | Properties | Type | Nullable | Description |
8376
8394
  | ---------- | ---- | -------- | ----------- |
8377
- | id | number | no | |
8378
8395
  | name | string | no | |
8379
- | code | string | no | |
8380
- | city | string | no | |
8396
+ | count | number | no | |
8397
+ | uid | number | no | |
8381
8398
 
8382
8399
  ---
8383
8400
 
8384
8401
 
8385
8402
 
8386
8403
 
8387
- #### [Seller](#Seller)
8404
+ #### [StoreDetail](#StoreDetail)
8388
8405
 
8389
8406
  | Properties | Type | Nullable | Description |
8390
8407
  | ---------- | ---- | -------- | ----------- |
8391
- | count | number | no | |
8392
8408
  | name | string | no | |
8393
- | uid | number | no | |
8409
+ | code | string | no | |
8410
+ | city | string | no | |
8411
+ | id | number | no | |
8394
8412
 
8395
8413
  ---
8396
8414
 
@@ -8401,15 +8419,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8401
8419
 
8402
8420
  | Properties | Type | Nullable | Description |
8403
8421
  | ---------- | ---- | -------- | ----------- |
8404
- | item_id | number | no | |
8405
8422
  | company | [CompanyDetail](#CompanyDetail) | no | |
8406
8423
  | price | [ProductStockPrice](#ProductStockPrice) | no | |
8407
- | size | string | no | |
8408
8424
  | identifier | string | no | |
8409
- | quantity | number | no | |
8410
- | store | [StoreDetail](#StoreDetail) | no | |
8411
- | seller | [Seller](#Seller) | no | |
8425
+ | item_id | number | no | |
8412
8426
  | uid | string | no | |
8427
+ | seller | [Seller](#Seller) | no | |
8428
+ | quantity | number | no | |
8429
+ | size | string | no | |
8430
+ | store | [StoreDetail](#StoreDetail) | no | |
8413
8431
 
8414
8432
  ---
8415
8433
 
@@ -8431,13 +8449,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8431
8449
 
8432
8450
  | Properties | Type | Nullable | Description |
8433
8451
  | ---------- | ---- | -------- | ----------- |
8434
- | type | string | yes | |
8435
- | has_next | boolean | no | |
8436
- | size | number | no | |
8452
+ | item_total | number | no | |
8437
8453
  | current | number | no | |
8438
8454
  | has_previous | boolean | no | |
8455
+ | has_next | boolean | no | |
8456
+ | type | string | yes | |
8439
8457
  | next_id | string | no | |
8440
- | item_total | number | no | |
8458
+ | size | number | no | |
8441
8459
 
8442
8460
  ---
8443
8461
 
@@ -8460,18 +8478,18 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8460
8478
 
8461
8479
  | Properties | Type | Nullable | Description |
8462
8480
  | ---------- | ---- | -------- | ----------- |
8463
- | min | number | no | |
8464
- | query_format | string | no | |
8465
- | display_format | string | no | |
8466
- | currency_code | string | no | |
8467
8481
  | currency_symbol | string | no | |
8468
- | display | string | yes | |
8482
+ | count | number | no | |
8469
8483
  | value | string | no | |
8484
+ | selected_min | number | no | |
8485
+ | display_format | string | no | |
8486
+ | max | number | no | |
8487
+ | display | string | yes | |
8470
8488
  | is_selected | boolean | yes | |
8489
+ | query_format | string | no | |
8490
+ | min | number | no | |
8491
+ | currency_code | string | no | |
8471
8492
  | selected_max | number | no | |
8472
- | max | number | no | |
8473
- | selected_min | number | no | |
8474
- | count | number | no | |
8475
8493
 
8476
8494
  ---
8477
8495
 
@@ -8482,10 +8500,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8482
8500
 
8483
8501
  | Properties | Type | Nullable | Description |
8484
8502
  | ---------- | ---- | -------- | ----------- |
8485
- | display | string | yes | |
8486
- | kind | string | no | |
8487
8503
  | name | string | yes | |
8504
+ | display | string | yes | |
8488
8505
  | logo | string | no | |
8506
+ | kind | string | no | |
8489
8507
 
8490
8508
  ---
8491
8509
 
@@ -8504,15 +8522,28 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8504
8522
 
8505
8523
 
8506
8524
 
8525
+ #### [ProductSortOn](#ProductSortOn)
8526
+
8527
+ | Properties | Type | Nullable | Description |
8528
+ | ---------- | ---- | -------- | ----------- |
8529
+ | name | string | no | |
8530
+ | is_selected | boolean | no | |
8531
+ | value | string | no | |
8532
+
8533
+ ---
8534
+
8535
+
8536
+
8537
+
8507
8538
  #### [ProductVariantListingResponse](#ProductVariantListingResponse)
8508
8539
 
8509
8540
  | Properties | Type | Nullable | Description |
8510
8541
  | ---------- | ---- | -------- | ----------- |
8542
+ | header | string | no | |
8543
+ | key | string | no | |
8511
8544
  | total | number | no | |
8512
8545
  | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8513
- | key | string | no | |
8514
8546
  | display_type | string | no | |
8515
- | header | string | no | |
8516
8547
 
8517
8548
  ---
8518
8549
 
@@ -8524,55 +8555,43 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8524
8555
  | Properties | Type | Nullable | Description |
8525
8556
  | ---------- | ---- | -------- | ----------- |
8526
8557
  | discount | string | no | |
8527
- | teaser_tag | string | no | |
8528
- | attributes | string | no | |
8529
- | price | [ProductListingPrice](#ProductListingPrice) | no | |
8530
- | brand | [ProductBrand](#ProductBrand) | no | |
8531
- | similars | [string] | no | |
8532
- | short_description | string | no | |
8533
- | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8534
- | color | string | no | |
8535
- | image_nature | string | no | |
8536
- | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8537
- | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8538
- | rating | number | no | |
8539
- | uid | number | no | |
8540
8558
  | type | string | no | |
8541
- | sellable | boolean | no | |
8542
- | tryouts | [string] | no | |
8543
- | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8544
- | has_variant | boolean | no | |
8545
- | tags | [string] | no | |
8559
+ | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8560
+ | image_nature | string | no | |
8561
+ | sizes | [string] | no | |
8546
8562
  | _custom_json | string | no | |
8547
- | net_quantity | [NetQuantity](#NetQuantity) | no | |
8563
+ | tags | [string] | no | |
8564
+ | category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
8565
+ | uid | number | no | |
8566
+ | slug | string | yes | |
8548
8567
  | variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
8549
- | action | [ProductListingAction](#ProductListingAction) | no | |
8568
+ | item_type | string | no | |
8569
+ | color | string | no | |
8570
+ | medias | [[Media](#Media)] | no | |
8550
8571
  | highlights | [string] | no | |
8551
- | product_online_date | string | no | |
8552
- | sizes | [string] | no | |
8553
- | rating_count | number | no | |
8554
8572
  | name | string | no | |
8573
+ | tryouts | [string] | no | |
8574
+ | rating_count | number | no | |
8575
+ | attributes | string | no | |
8555
8576
  | identifiers | [string] | no | |
8556
- | description | string | no | |
8557
- | medias | [[Media](#Media)] | no | |
8558
- | slug | string | yes | |
8577
+ | similars | [string] | no | |
8578
+ | item_code | string | no | |
8579
+ | teaser_tag | string | no | |
8580
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8581
+ | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8582
+ | price | [ProductListingPrice](#ProductListingPrice) | no | |
8583
+ | brand | [ProductBrand](#ProductBrand) | no | |
8584
+ | product_online_date | string | no | |
8585
+ | sellable | boolean | no | |
8586
+ | rating | number | no | |
8587
+ | net_quantity | [NetQuantity](#NetQuantity) | no | |
8559
8588
  | categories | [[ProductBrand](#ProductBrand)] | no | |
8589
+ | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8590
+ | short_description | string | no | |
8560
8591
  | is_dependent | boolean | no | |
8561
- | item_type | string | no | |
8562
- | item_code | string | no | |
8563
-
8564
- ---
8565
-
8566
-
8567
-
8568
-
8569
- #### [ProductSortOn](#ProductSortOn)
8570
-
8571
- | Properties | Type | Nullable | Description |
8572
- | ---------- | ---- | -------- | ----------- |
8573
- | is_selected | boolean | no | |
8574
- | name | string | no | |
8575
- | value | string | no | |
8592
+ | has_variant | boolean | no | |
8593
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8594
+ | description | string | no | |
8576
8595
 
8577
8596
  ---
8578
8597
 
@@ -8583,10 +8602,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8583
8602
 
8584
8603
  | Properties | Type | Nullable | Description |
8585
8604
  | ---------- | ---- | -------- | ----------- |
8586
- | page | [Page](#Page) | yes | |
8587
8605
  | filters | [[ProductFilters](#ProductFilters)] | no | |
8588
- | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8606
+ | page | [Page](#Page) | yes | |
8589
8607
  | sort_on | [[ProductSortOn](#ProductSortOn)] | no | |
8608
+ | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8590
8609
 
8591
8610
  ---
8592
8611
 
@@ -8597,8 +8616,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8597
8616
 
8598
8617
  | Properties | Type | Nullable | Description |
8599
8618
  | ---------- | ---- | -------- | ----------- |
8600
- | portrait | [Media](#Media) | no | |
8601
8619
  | landscape | [Media](#Media) | no | |
8620
+ | portrait | [Media](#Media) | no | |
8602
8621
 
8603
8622
  ---
8604
8623
 
@@ -8609,15 +8628,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8609
8628
 
8610
8629
  | Properties | Type | Nullable | Description |
8611
8630
  | ---------- | ---- | -------- | ----------- |
8631
+ | slug | string | no | |
8612
8632
  | discount | string | no | |
8613
- | action | [ProductListingAction](#ProductListingAction) | no | |
8614
- | name | string | no | |
8615
8633
  | logo | [Media](#Media) | no | |
8616
- | description | string | no | |
8617
- | slug | string | no | |
8618
8634
  | banners | [ImageUrls](#ImageUrls) | no | |
8619
8635
  | departments | [string] | no | |
8636
+ | name | string | no | |
8620
8637
  | uid | number | no | |
8638
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8639
+ | description | string | no | |
8621
8640
 
8622
8641
  ---
8623
8642
 
@@ -8640,11 +8659,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8640
8659
 
8641
8660
  | Properties | Type | Nullable | Description |
8642
8661
  | ---------- | ---- | -------- | ----------- |
8643
- | name | string | no | |
8644
8662
  | logo | [Media](#Media) | no | |
8645
- | description | string | no | |
8646
8663
  | banners | [ImageUrls](#ImageUrls) | no | |
8664
+ | name | string | no | |
8665
+ | _custom_json | string | no | |
8647
8666
  | uid | number | no | |
8667
+ | description | string | no | |
8648
8668
 
8649
8669
  ---
8650
8670
 
@@ -8667,13 +8687,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8667
8687
 
8668
8688
  | Properties | Type | Nullable | Description |
8669
8689
  | ---------- | ---- | -------- | ----------- |
8690
+ | slug | string | no | |
8670
8691
  | childs | [string] | no | |
8671
- | action | [ProductListingAction](#ProductListingAction) | no | |
8692
+ | banners | [ImageUrls](#ImageUrls) | no | |
8672
8693
  | name | string | no | |
8673
8694
  | _custom_json | string | no | |
8674
- | slug | string | no | |
8675
- | banners | [ImageUrls](#ImageUrls) | no | |
8676
8695
  | uid | number | no | |
8696
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8677
8697
 
8678
8698
  ---
8679
8699
 
@@ -8684,13 +8704,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8684
8704
 
8685
8705
  | Properties | Type | Nullable | Description |
8686
8706
  | ---------- | ---- | -------- | ----------- |
8707
+ | slug | string | no | |
8687
8708
  | childs | [[ThirdLevelChild](#ThirdLevelChild)] | no | |
8688
- | action | [ProductListingAction](#ProductListingAction) | no | |
8709
+ | banners | [ImageUrls](#ImageUrls) | no | |
8689
8710
  | name | string | no | |
8690
8711
  | _custom_json | string | no | |
8691
- | slug | string | no | |
8692
- | banners | [ImageUrls](#ImageUrls) | no | |
8693
8712
  | uid | number | no | |
8713
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8694
8714
 
8695
8715
  ---
8696
8716
 
@@ -8701,13 +8721,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8701
8721
 
8702
8722
  | Properties | Type | Nullable | Description |
8703
8723
  | ---------- | ---- | -------- | ----------- |
8724
+ | slug | string | no | |
8704
8725
  | childs | [[SecondLevelChild](#SecondLevelChild)] | no | |
8705
- | action | [ProductListingAction](#ProductListingAction) | no | |
8726
+ | banners | [ImageUrls](#ImageUrls) | no | |
8706
8727
  | name | string | no | |
8707
8728
  | _custom_json | string | no | |
8708
- | slug | string | no | |
8709
- | banners | [ImageUrls](#ImageUrls) | no | |
8710
8729
  | uid | number | no | |
8730
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8711
8731
 
8712
8732
  ---
8713
8733
 
@@ -8718,8 +8738,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8718
8738
 
8719
8739
  | Properties | Type | Nullable | Description |
8720
8740
  | ---------- | ---- | -------- | ----------- |
8721
- | portrait | [Media](#Media) | yes | |
8722
8741
  | landscape | [Media](#Media) | yes | |
8742
+ | portrait | [Media](#Media) | yes | |
8723
8743
 
8724
8744
  ---
8725
8745
 
@@ -8730,12 +8750,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8730
8750
 
8731
8751
  | Properties | Type | Nullable | Description |
8732
8752
  | ---------- | ---- | -------- | ----------- |
8733
- | childs | [[Child](#Child)] | no | |
8734
- | action | [ProductListingAction](#ProductListingAction) | yes | |
8735
- | name | string | yes | |
8736
8753
  | slug | string | yes | |
8754
+ | childs | [[Child](#Child)] | no | |
8737
8755
  | banners | [CategoryBanner](#CategoryBanner) | yes | |
8756
+ | name | string | yes | |
8738
8757
  | uid | number | yes | |
8758
+ | action | [ProductListingAction](#ProductListingAction) | yes | |
8739
8759
 
8740
8760
  ---
8741
8761
 
@@ -8770,9 +8790,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8770
8790
 
8771
8791
  | Properties | Type | Nullable | Description |
8772
8792
  | ---------- | ---- | -------- | ----------- |
8773
- | name | string | no | |
8774
- | banners | [ImageUrls](#ImageUrls) | no | |
8775
8793
  | logo | [Media](#Media) | no | |
8794
+ | banners | [ImageUrls](#ImageUrls) | no | |
8795
+ | name | string | no | |
8796
+ | _custom_json | string | no | |
8776
8797
  | uid | number | no | |
8777
8798
 
8778
8799
  ---
@@ -8797,10 +8818,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8797
8818
 
8798
8819
  | Properties | Type | Nullable | Description |
8799
8820
  | ---------- | ---- | -------- | ----------- |
8800
- | name | string | no | |
8801
- | logo | [Media](#Media) | no | |
8802
8821
  | slug | string | no | |
8822
+ | logo | [Media](#Media) | no | |
8803
8823
  | priority_order | number | no | |
8824
+ | name | string | no | |
8804
8825
  | uid | number | no | |
8805
8826
 
8806
8827
  ---
@@ -8823,11 +8844,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8823
8844
 
8824
8845
  | Properties | Type | Nullable | Description |
8825
8846
  | ---------- | ---- | -------- | ----------- |
8826
- | type | string | no | |
8827
- | action | [ProductListingAction](#ProductListingAction) | no | |
8828
8847
  | logo | [Media](#Media) | no | |
8848
+ | type | string | no | |
8829
8849
  | display | string | no | |
8830
8850
  | _custom_json | string | no | |
8851
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8831
8852
 
8832
8853
  ---
8833
8854
 
@@ -8849,9 +8870,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8849
8870
 
8850
8871
  | Properties | Type | Nullable | Description |
8851
8872
  | ---------- | ---- | -------- | ----------- |
8873
+ | name | string | no | |
8852
8874
  | display | string | no | |
8853
8875
  | is_selected | boolean | no | |
8854
- | name | string | no | |
8855
8876
 
8856
8877
  ---
8857
8878
 
@@ -8862,9 +8883,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8862
8883
 
8863
8884
  | Properties | Type | Nullable | Description |
8864
8885
  | ---------- | ---- | -------- | ----------- |
8886
+ | name | string | no | |
8865
8887
  | display | string | no | |
8866
8888
  | is_selected | boolean | no | |
8867
- | name | string | no | |
8868
8889
 
8869
8890
  ---
8870
8891
 
@@ -8887,8 +8908,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8887
8908
 
8888
8909
  | Properties | Type | Nullable | Description |
8889
8910
  | ---------- | ---- | -------- | ----------- |
8890
- | attribute | string | yes | |
8891
8911
  | op | string | yes | |
8912
+ | attribute | string | yes | |
8892
8913
  | value | [any] | yes | |
8893
8914
 
8894
8915
  ---
@@ -8900,27 +8921,28 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8900
8921
 
8901
8922
  | Properties | Type | Nullable | Description |
8902
8923
  | ---------- | ---- | -------- | ----------- |
8903
- | allow_facets | boolean | no | |
8904
- | sort_on | string | no | |
8905
- | uid | string | no | |
8906
8924
  | type | string | no | |
8907
8925
  | priority | number | no | |
8926
+ | allow_facets | boolean | no | |
8927
+ | _custom_json | string | no | |
8928
+ | uid | string | no | |
8929
+ | slug | string | no | |
8930
+ | meta | string | no | |
8931
+ | tag | [string] | no | |
8908
8932
  | logo | [Media](#Media) | no | |
8909
- | allow_sort | boolean | no | |
8910
- | query | [[CollectionQuery](#CollectionQuery)] | no | |
8911
- | action | [ProductListingAction](#ProductListingAction) | no | |
8933
+ | sort_on | string | no | |
8912
8934
  | cron | string | no | |
8913
- | tag | [string] | no | |
8914
- | banners | [ImageUrls](#ImageUrls) | no | |
8935
+ | _schedule | string | no | |
8936
+ | name | string | no | |
8915
8937
  | app_id | string | no | |
8938
+ | visible_facets_keys | [string] | no | |
8916
8939
  | badge | string | no | |
8917
- | meta | string | no | |
8940
+ | allow_sort | boolean | no | |
8941
+ | banners | [ImageUrls](#ImageUrls) | no | |
8918
8942
  | is_active | boolean | no | |
8919
- | _schedule | string | no | |
8920
- | name | string | no | |
8943
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8944
+ | query | [[CollectionQuery](#CollectionQuery)] | no | |
8921
8945
  | description | string | no | |
8922
- | slug | string | no | |
8923
- | visible_facets_keys | [string] | no | |
8924
8946
 
8925
8947
  ---
8926
8948
 
@@ -8931,8 +8953,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8931
8953
 
8932
8954
  | Properties | Type | Nullable | Description |
8933
8955
  | ---------- | ---- | -------- | ----------- |
8934
- | page | [Page](#Page) | yes | |
8935
8956
  | filters | [CollectionListingFilter](#CollectionListingFilter) | no | |
8957
+ | page | [Page](#Page) | yes | |
8936
8958
  | items | [[GetCollectionDetailNest](#GetCollectionDetailNest)] | no | |
8937
8959
 
8938
8960
  ---
@@ -8944,25 +8966,26 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8944
8966
 
8945
8967
  | Properties | Type | Nullable | Description |
8946
8968
  | ---------- | ---- | -------- | ----------- |
8947
- | allow_facets | boolean | no | |
8948
- | sort_on | string | no | |
8949
8969
  | type | string | no | |
8950
8970
  | priority | number | no | |
8971
+ | allow_facets | boolean | no | |
8972
+ | _custom_json | string | no | |
8973
+ | slug | string | no | |
8974
+ | meta | string | no | |
8975
+ | tag | [string] | no | |
8951
8976
  | logo | [Media](#Media) | no | |
8952
- | allow_sort | boolean | no | |
8953
- | query | [[CollectionQuery](#CollectionQuery)] | no | |
8977
+ | sort_on | string | no | |
8954
8978
  | cron | string | no | |
8955
- | tag | [string] | no | |
8956
- | banners | [ImageUrls](#ImageUrls) | no | |
8979
+ | _schedule | string | no | |
8980
+ | name | string | no | |
8957
8981
  | app_id | string | no | |
8982
+ | visible_facets_keys | [string] | no | |
8958
8983
  | badge | string | no | |
8959
- | meta | string | no | |
8984
+ | allow_sort | boolean | no | |
8985
+ | banners | [ImageUrls](#ImageUrls) | no | |
8960
8986
  | is_active | boolean | no | |
8961
- | _schedule | string | no | |
8962
- | name | string | no | |
8987
+ | query | [[CollectionQuery](#CollectionQuery)] | no | |
8963
8988
  | description | string | no | |
8964
- | slug | string | no | |
8965
- | visible_facets_keys | [string] | no | |
8966
8989
 
8967
8990
  ---
8968
8991
 
@@ -8985,8 +9008,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8985
9008
 
8986
9009
  | Properties | Type | Nullable | Description |
8987
9010
  | ---------- | ---- | -------- | ----------- |
8988
- | id | string | yes | |
8989
9011
  | message | string | yes | |
9012
+ | id | string | yes | |
8990
9013
 
8991
9014
  ---
8992
9015
 
@@ -9008,9 +9031,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9008
9031
 
9009
9032
  | Properties | Type | Nullable | Description |
9010
9033
  | ---------- | ---- | -------- | ----------- |
9034
+ | products | [number] | no | |
9011
9035
  | brands | [number] | no | |
9012
9036
  | collections | [number] | no | |
9013
- | products | [number] | no | |
9014
9037
 
9015
9038
  ---
9016
9039
 
@@ -9044,16 +9067,16 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9044
9067
 
9045
9068
  | Properties | Type | Nullable | Description |
9046
9069
  | ---------- | ---- | -------- | ----------- |
9047
- | store_code | string | no | |
9048
- | state | string | no | |
9070
+ | pincode | number | no | |
9071
+ | city | string | no | |
9049
9072
  | address | string | no | |
9050
- | name | string | no | |
9051
9073
  | store_email | string | no | |
9074
+ | name | string | no | |
9075
+ | store_code | string | no | |
9076
+ | state | string | no | |
9077
+ | uid | number | no | |
9052
9078
  | lat_long | [LatLong](#LatLong) | no | |
9053
- | city | string | no | |
9054
9079
  | country | string | no | |
9055
- | pincode | number | no | |
9056
- | uid | number | no | |
9057
9080
 
9058
9081
  ---
9059
9082
 
@@ -9076,10 +9099,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9076
9099
 
9077
9100
  | Properties | Type | Nullable | Description |
9078
9101
  | ---------- | ---- | -------- | ----------- |
9079
- | name | string | no | |
9080
- | logo | string | no | |
9081
9102
  | slug | string | no | |
9103
+ | logo | string | no | |
9082
9104
  | priority_order | number | no | |
9105
+ | name | string | no | |
9083
9106
  | uid | number | no | |
9084
9107
 
9085
9108
  ---
@@ -9099,13 +9122,19 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9099
9122
 
9100
9123
 
9101
9124
 
9102
- #### [StoreManagerSerializer](#StoreManagerSerializer)
9125
+ #### [StoreAddressSerializer](#StoreAddressSerializer)
9103
9126
 
9104
9127
  | Properties | Type | Nullable | Description |
9105
9128
  | ---------- | ---- | -------- | ----------- |
9106
- | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | no | |
9107
- | name | string | no | |
9108
- | email | string | no | |
9129
+ | pincode | number | no | |
9130
+ | city | string | no | |
9131
+ | longitude | number | no | |
9132
+ | latitude | number | no | |
9133
+ | address2 | string | no | |
9134
+ | state | string | no | |
9135
+ | country | string | no | |
9136
+ | landmark | string | no | |
9137
+ | address1 | string | no | |
9109
9138
 
9110
9139
  ---
9111
9140
 
@@ -9116,9 +9145,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9116
9145
 
9117
9146
  | Properties | Type | Nullable | Description |
9118
9147
  | ---------- | ---- | -------- | ----------- |
9148
+ | name | string | no | |
9119
9149
  | business_type | string | no | |
9120
9150
  | company_type | string | no | |
9121
- | name | string | no | |
9122
9151
  | uid | number | no | |
9123
9152
 
9124
9153
  ---
@@ -9126,19 +9155,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9126
9155
 
9127
9156
 
9128
9157
 
9129
- #### [StoreAddressSerializer](#StoreAddressSerializer)
9158
+ #### [StoreManagerSerializer](#StoreManagerSerializer)
9130
9159
 
9131
9160
  | Properties | Type | Nullable | Description |
9132
9161
  | ---------- | ---- | -------- | ----------- |
9133
- | longitude | number | no | |
9134
- | address1 | string | no | |
9135
- | state | string | no | |
9136
- | latitude | number | no | |
9137
- | landmark | string | no | |
9138
- | city | string | no | |
9139
- | country | string | no | |
9140
- | pincode | number | no | |
9141
- | address2 | string | no | |
9162
+ | name | string | no | |
9163
+ | email | string | no | |
9164
+ | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | no | |
9142
9165
 
9143
9166
  ---
9144
9167
 
@@ -9149,13 +9172,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9149
9172
 
9150
9173
  | Properties | Type | Nullable | Description |
9151
9174
  | ---------- | ---- | -------- | ----------- |
9152
- | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9153
- | company | [CompanyStore](#CompanyStore) | no | |
9175
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9154
9176
  | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9155
- | name | string | no | |
9156
9177
  | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9157
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9178
+ | name | string | no | |
9158
9179
  | uid | number | no | |
9180
+ | company | [CompanyStore](#CompanyStore) | no | |
9181
+ | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9159
9182
 
9160
9183
  ---
9161
9184
 
@@ -9166,8 +9189,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9166
9189
 
9167
9190
  | Properties | Type | Nullable | Description |
9168
9191
  | ---------- | ---- | -------- | ----------- |
9169
- | page | [Page](#Page) | no | |
9170
9192
  | filters | [[StoreDepartments](#StoreDepartments)] | no | |
9193
+ | page | [Page](#Page) | no | |
9171
9194
  | items | [[AppStore](#AppStore)] | no | |
9172
9195
 
9173
9196
  ---
@@ -9179,8 +9202,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9179
9202
 
9180
9203
  | Properties | Type | Nullable | Description |
9181
9204
  | ---------- | ---- | -------- | ----------- |
9182
- | minute | number | no | |
9183
9205
  | hour | number | no | |
9206
+ | minute | number | no | |
9184
9207
 
9185
9208
  ---
9186
9209
 
@@ -9191,10 +9214,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9191
9214
 
9192
9215
  | Properties | Type | Nullable | Description |
9193
9216
  | ---------- | ---- | -------- | ----------- |
9194
- | open | boolean | no | |
9195
- | closing | [Time](#Time) | no | |
9196
9217
  | weekday | string | no | |
9197
9218
  | opening | [Time](#Time) | no | |
9219
+ | closing | [Time](#Time) | no | |
9220
+ | open | boolean | no | |
9198
9221
 
9199
9222
  ---
9200
9223
 
@@ -9205,15 +9228,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9205
9228
 
9206
9229
  | Properties | Type | Nullable | Description |
9207
9230
  | ---------- | ---- | -------- | ----------- |
9208
- | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9209
- | company | [CompanyStore](#CompanyStore) | no | |
9231
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9210
9232
  | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9233
+ | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9211
9234
  | name | string | no | |
9212
- | timing | [[StoreTiming](#StoreTiming)] | no | |
9213
9235
  | _custom_json | string | no | |
9214
- | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9215
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9236
+ | timing | [[StoreTiming](#StoreTiming)] | no | |
9216
9237
  | uid | number | no | |
9238
+ | company | [CompanyStore](#CompanyStore) | no | |
9239
+ | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9217
9240
 
9218
9241
  ---
9219
9242
 
@@ -9224,70 +9247,70 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9224
9247
 
9225
9248
  | Properties | Type | Nullable | Description |
9226
9249
  | ---------- | ---- | -------- | ----------- |
9227
- | contact | string | no | |
9228
- | username | string | yes | |
9229
- | user_id | string | yes | |
9230
9250
  | super_user | boolean | no | |
9251
+ | user_id | string | yes | |
9252
+ | username | string | yes | |
9253
+ | contact | string | no | |
9231
9254
 
9232
9255
  ---
9233
9256
 
9234
9257
 
9235
9258
 
9236
9259
 
9237
- #### [Size](#Size)
9260
+ #### [ProductDetails](#ProductDetails)
9238
9261
 
9239
9262
  | Properties | Type | Nullable | Description |
9240
9263
  | ---------- | ---- | -------- | ----------- |
9241
- | display | any | no | |
9242
- | is_available | boolean | no | |
9243
- | quantity | number | no | |
9244
- | value | any | no | |
9264
+ | image_nature | any | no | |
9265
+ | brand_uid | number | no | |
9266
+ | images | [any] | no | |
9267
+ | is_set | boolean | no | |
9268
+ | slug | any | no | |
9269
+ | highlights | [any] | no | |
9270
+ | country_of_origin | any | no | |
9271
+ | name | any | no | |
9272
+ | identifier | string | no | |
9273
+ | rating_count | number | no | |
9274
+ | attributes | string | no | |
9275
+ | item_code | any | no | |
9276
+ | media | [string] | no | |
9277
+ | grouped_attributes | string | no | |
9278
+ | hsn_code | number | no | |
9279
+ | rating | number | no | |
9280
+ | short_description | any | no | |
9281
+ | has_variant | boolean | no | |
9282
+ | template_tag | any | no | |
9283
+ | out_of_stock | boolean | no | |
9284
+ | description | any | no | |
9245
9285
 
9246
9286
  ---
9247
9287
 
9248
9288
 
9249
9289
 
9250
9290
 
9251
- #### [ProductGroupPrice](#ProductGroupPrice)
9291
+ #### [Size](#Size)
9252
9292
 
9253
9293
  | Properties | Type | Nullable | Description |
9254
9294
  | ---------- | ---- | -------- | ----------- |
9255
- | max_marked | number | no | |
9256
- | max_effective | number | no | |
9257
- | min_effective | number | no | |
9258
- | min_marked | number | no | |
9259
- | currency | any | no | |
9295
+ | quantity | number | no | |
9296
+ | display | any | no | |
9297
+ | is_available | boolean | no | |
9298
+ | value | any | no | |
9260
9299
 
9261
9300
  ---
9262
9301
 
9263
9302
 
9264
9303
 
9265
9304
 
9266
- #### [ProductDetails](#ProductDetails)
9305
+ #### [ProductGroupPrice](#ProductGroupPrice)
9267
9306
 
9268
9307
  | Properties | Type | Nullable | Description |
9269
9308
  | ---------- | ---- | -------- | ----------- |
9270
- | attributes | string | no | |
9271
- | template_tag | any | no | |
9272
- | images | [any] | no | |
9273
- | is_set | boolean | no | |
9274
- | short_description | any | no | |
9275
- | grouped_attributes | string | no | |
9276
- | image_nature | any | no | |
9277
- | rating | number | no | |
9278
- | has_variant | boolean | no | |
9279
- | media | [string] | no | |
9280
- | brand_uid | number | no | |
9281
- | hsn_code | number | no | |
9282
- | highlights | [any] | no | |
9283
- | country_of_origin | any | no | |
9284
- | rating_count | number | no | |
9285
- | name | any | no | |
9286
- | identifier | string | no | |
9287
- | description | any | no | |
9288
- | slug | any | no | |
9289
- | out_of_stock | boolean | no | |
9290
- | item_code | any | no | |
9309
+ | min_effective | number | no | |
9310
+ | min_marked | number | no | |
9311
+ | max_marked | number | no | |
9312
+ | currency | any | no | |
9313
+ | max_effective | number | no | |
9291
9314
 
9292
9315
  ---
9293
9316
 
@@ -9298,15 +9321,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9298
9321
 
9299
9322
  | Properties | Type | Nullable | Description |
9300
9323
  | ---------- | ---- | -------- | ----------- |
9301
- | sizes | [[Size](#Size)] | no | |
9302
- | product_uid | number | yes | |
9303
- | auto_add_to_cart | boolean | no | |
9304
9324
  | max_quantity | number | yes | |
9305
- | min_quantity | number | no | |
9325
+ | product_details | [ProductDetails](#ProductDetails) | no | |
9326
+ | auto_select | boolean | no | |
9306
9327
  | allow_remove | boolean | no | |
9328
+ | min_quantity | number | no | |
9329
+ | sizes | [[Size](#Size)] | no | |
9307
9330
  | price | [ProductGroupPrice](#ProductGroupPrice) | no | |
9308
- | auto_select | boolean | no | |
9309
- | product_details | [ProductDetails](#ProductDetails) | no | |
9331
+ | product_uid | number | yes | |
9332
+ | auto_add_to_cart | boolean | no | |
9310
9333
 
9311
9334
  ---
9312
9335
 
@@ -9317,23 +9340,23 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9317
9340
 
9318
9341
  | Properties | Type | Nullable | Description |
9319
9342
  | ---------- | ---- | -------- | ----------- |
9320
- | created_by | [UserDetail](#UserDetail) | no | |
9321
- | choice | any | no | |
9322
- | is_active | boolean | no | |
9323
- | same_store_assignment | boolean | no | |
9324
- | verified_on | string | no | |
9343
+ | slug | any | no | |
9325
9344
  | verified_by | [UserDetail](#UserDetail) | no | |
9326
- | modified_by | [UserDetail](#UserDetail) | no | |
9327
- | name | any | yes | |
9328
- | logo | string | no | |
9329
9345
  | company_id | number | no | |
9330
- | created_on | string | yes | |
9331
- | _id | any | no | |
9332
- | slug | any | no | |
9346
+ | meta | string | no | |
9333
9347
  | page_visibility | [any] | no | |
9348
+ | logo | string | no | |
9349
+ | created_on | string | yes | |
9334
9350
  | modified_on | string | yes | |
9335
- | meta | string | no | |
9351
+ | created_by | [UserDetail](#UserDetail) | no | |
9336
9352
  | products | [[ProductInGroup](#ProductInGroup)] | yes | |
9353
+ | modified_by | [UserDetail](#UserDetail) | no | |
9354
+ | name | any | yes | |
9355
+ | _id | any | no | |
9356
+ | choice | any | no | |
9357
+ | is_active | boolean | no | |
9358
+ | verified_on | string | no | |
9359
+ | same_store_assignment | boolean | no | |
9337
9360
 
9338
9361
  ---
9339
9362
 
@@ -9351,145 +9374,146 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9351
9374
 
9352
9375
 
9353
9376
 
9354
- #### [ProductStockPriceV2](#ProductStockPriceV2)
9377
+ #### [StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)
9355
9378
 
9356
9379
  | Properties | Type | Nullable | Description |
9357
9380
  | ---------- | ---- | -------- | ----------- |
9358
- | marked | number | no | |
9359
- | effective | number | no | |
9360
- | currency | string | no | |
9381
+ | quantity | number | no | |
9382
+ | tat | number | no | |
9383
+ | distance | number | no | |
9384
+ | pincode | number | no | |
9361
9385
 
9362
9386
  ---
9363
9387
 
9364
9388
 
9365
9389
 
9366
9390
 
9367
- #### [DetailsSchemaV2](#DetailsSchemaV2)
9391
+ #### [ProductStockUnitPriceV3](#ProductStockUnitPriceV3)
9368
9392
 
9369
9393
  | Properties | Type | Nullable | Description |
9370
9394
  | ---------- | ---- | -------- | ----------- |
9371
- | type | string | no | |
9372
- | key | string | no | |
9373
- | value | string | no | |
9395
+ | currency_symbol | string | no | |
9396
+ | currency_code | string | no | |
9397
+ | price | number | no | |
9398
+ | unit | string | no | |
9374
9399
 
9375
9400
  ---
9376
9401
 
9377
9402
 
9378
9403
 
9379
9404
 
9380
- #### [SellerGroupAttributes](#SellerGroupAttributes)
9405
+ #### [StoreV3](#StoreV3)
9381
9406
 
9382
9407
  | Properties | Type | Nullable | Description |
9383
9408
  | ---------- | ---- | -------- | ----------- |
9384
- | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9385
- | title | string | no | |
9409
+ | name | string | no | |
9410
+ | count | number | no | |
9411
+ | uid | number | no | |
9386
9412
 
9387
9413
  ---
9388
9414
 
9389
9415
 
9390
9416
 
9391
9417
 
9392
- #### [MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)
9418
+ #### [ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)
9393
9419
 
9394
9420
  | Properties | Type | Nullable | Description |
9395
9421
  | ---------- | ---- | -------- | ----------- |
9396
- | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9397
- | title | string | no | |
9422
+ | size | string | no | |
9423
+ | pieces | number | no | |
9398
9424
 
9399
9425
  ---
9400
9426
 
9401
9427
 
9402
9428
 
9403
9429
 
9404
- #### [ProductStockUnitPriceV2](#ProductStockUnitPriceV2)
9430
+ #### [ProductSetDistributionV3](#ProductSetDistributionV3)
9405
9431
 
9406
9432
  | Properties | Type | Nullable | Description |
9407
9433
  | ---------- | ---- | -------- | ----------- |
9408
- | price | number | no | |
9409
- | unit | string | no | |
9410
- | currency_code | string | no | |
9411
- | currency_symbol | string | no | |
9434
+ | sizes | [[ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)] | no | |
9412
9435
 
9413
9436
  ---
9414
9437
 
9415
9438
 
9416
9439
 
9417
9440
 
9418
- #### [ReturnConfigSchemaV2](#ReturnConfigSchemaV2)
9441
+ #### [ProductSetV3](#ProductSetV3)
9419
9442
 
9420
9443
  | Properties | Type | Nullable | Description |
9421
9444
  | ---------- | ---- | -------- | ----------- |
9422
- | unit | string | no | |
9423
- | returnable | boolean | no | |
9424
- | time | number | no | |
9445
+ | quantity | number | no | |
9446
+ | size_distribution | [ProductSetDistributionV3](#ProductSetDistributionV3) | no | |
9425
9447
 
9426
9448
  ---
9427
9449
 
9428
9450
 
9429
9451
 
9430
9452
 
9431
- #### [StoreV2](#StoreV2)
9453
+ #### [ReturnConfigSchemaV3](#ReturnConfigSchemaV3)
9432
9454
 
9433
9455
  | Properties | Type | Nullable | Description |
9434
9456
  | ---------- | ---- | -------- | ----------- |
9435
- | count | number | no | |
9436
- | name | string | no | |
9437
- | uid | number | no | |
9457
+ | returnable | boolean | no | |
9458
+ | time | number | no | |
9459
+ | unit | string | no | |
9438
9460
 
9439
9461
  ---
9440
9462
 
9441
9463
 
9442
9464
 
9443
9465
 
9444
- #### [SellerV2](#SellerV2)
9466
+ #### [ProductStockPriceV3](#ProductStockPriceV3)
9445
9467
 
9446
9468
  | Properties | Type | Nullable | Description |
9447
9469
  | ---------- | ---- | -------- | ----------- |
9448
- | count | number | no | |
9449
- | name | string | no | |
9450
- | uid | number | no | |
9470
+ | currency | string | no | |
9471
+ | marked | number | no | |
9472
+ | effective | number | no | |
9451
9473
 
9452
9474
  ---
9453
9475
 
9454
9476
 
9455
9477
 
9456
9478
 
9457
- #### [ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)
9479
+ #### [DetailsSchemaV3](#DetailsSchemaV3)
9458
9480
 
9459
9481
  | Properties | Type | Nullable | Description |
9460
9482
  | ---------- | ---- | -------- | ----------- |
9461
- | size | string | no | |
9462
- | pieces | number | no | |
9483
+ | type | string | no | |
9484
+ | key | string | no | |
9485
+ | value | string | no | |
9463
9486
 
9464
9487
  ---
9465
9488
 
9466
9489
 
9467
9490
 
9468
9491
 
9469
- #### [ProductSetDistributionV2](#ProductSetDistributionV2)
9492
+ #### [MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)
9470
9493
 
9471
9494
  | Properties | Type | Nullable | Description |
9472
9495
  | ---------- | ---- | -------- | ----------- |
9473
- | sizes | [[ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)] | no | |
9496
+ | title | string | no | |
9497
+ | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9474
9498
 
9475
9499
  ---
9476
9500
 
9477
9501
 
9478
9502
 
9479
9503
 
9480
- #### [ProductSetV2](#ProductSetV2)
9504
+ #### [SellerGroupAttributes](#SellerGroupAttributes)
9481
9505
 
9482
9506
  | Properties | Type | Nullable | Description |
9483
9507
  | ---------- | ---- | -------- | ----------- |
9484
- | size_distribution | [ProductSetDistributionV2](#ProductSetDistributionV2) | no | |
9485
- | quantity | number | no | |
9508
+ | title | string | no | |
9509
+ | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9486
9510
 
9487
9511
  ---
9488
9512
 
9489
9513
 
9490
9514
 
9491
9515
 
9492
- #### [ArticleAssignmentV2](#ArticleAssignmentV2)
9516
+ #### [ArticleAssignmentV3](#ArticleAssignmentV3)
9493
9517
 
9494
9518
  | Properties | Type | Nullable | Description |
9495
9519
  | ---------- | ---- | -------- | ----------- |
@@ -9501,57 +9525,56 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9501
9525
 
9502
9526
 
9503
9527
 
9504
- #### [StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)
9528
+ #### [SellerV3](#SellerV3)
9505
9529
 
9506
9530
  | Properties | Type | Nullable | Description |
9507
9531
  | ---------- | ---- | -------- | ----------- |
9508
- | pincode | number | no | |
9509
- | tat | number | no | |
9510
- | quantity | number | no | |
9511
- | distance | number | no | |
9532
+ | name | string | no | |
9533
+ | count | number | no | |
9534
+ | uid | number | no | |
9512
9535
 
9513
9536
  ---
9514
9537
 
9515
9538
 
9516
9539
 
9517
9540
 
9518
- #### [ProductSizePriceResponseV2](#ProductSizePriceResponseV2)
9541
+ #### [ProductSizePriceResponseV3](#ProductSizePriceResponseV3)
9519
9542
 
9520
9543
  | Properties | Type | Nullable | Description |
9521
9544
  | ---------- | ---- | -------- | ----------- |
9545
+ | strategy_wise_listing | [[StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)] | no | |
9522
9546
  | discount | string | no | |
9523
- | is_gift | boolean | no | |
9524
- | price | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9547
+ | price_per_unit | [ProductStockUnitPriceV3](#ProductStockUnitPriceV3) | no | |
9548
+ | store | [StoreV3](#StoreV3) | no | |
9549
+ | set | [ProductSetV3](#ProductSetV3) | no | |
9550
+ | item_type | string | no | |
9525
9551
  | is_cod | boolean | no | |
9526
- | grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
9527
- | marketplace_attributes | [[MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)] | no | |
9528
- | long_lat | [number] | no | |
9529
- | price_per_unit | [ProductStockUnitPriceV2](#ProductStockUnitPriceV2) | no | |
9530
- | return_config | [ReturnConfigSchemaV2](#ReturnConfigSchemaV2) | no | |
9531
- | store | [StoreV2](#StoreV2) | no | |
9532
- | article_id | string | no | |
9533
- | seller | [SellerV2](#SellerV2) | no | |
9534
- | price_per_piece | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9535
- | seller_count | number | no | |
9536
- | set | [ProductSetV2](#ProductSetV2) | no | |
9537
- | article_assignment | [ArticleAssignmentV2](#ArticleAssignmentV2) | no | |
9552
+ | return_config | [ReturnConfigSchemaV3](#ReturnConfigSchemaV3) | no | |
9538
9553
  | special_badge | string | no | |
9554
+ | long_lat | [number] | no | |
9555
+ | price_per_piece | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
9556
+ | marketplace_attributes | [[MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)] | no | |
9557
+ | grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
9558
+ | price | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
9559
+ | article_assignment | [ArticleAssignmentV3](#ArticleAssignmentV3) | no | |
9560
+ | seller | [SellerV3](#SellerV3) | no | |
9539
9561
  | quantity | number | no | |
9540
9562
  | pincode | number | no | |
9541
- | item_type | string | no | |
9542
- | strategy_wise_listing | [[StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)] | no | |
9563
+ | article_id | string | no | |
9564
+ | is_gift | boolean | no | |
9565
+ | seller_count | number | no | |
9543
9566
 
9544
9567
  ---
9545
9568
 
9546
9569
 
9547
9570
 
9548
9571
 
9549
- #### [ProductSizeSellerFilterSchemaV2](#ProductSizeSellerFilterSchemaV2)
9572
+ #### [ProductSizeSellerFilterSchemaV3](#ProductSizeSellerFilterSchemaV3)
9550
9573
 
9551
9574
  | Properties | Type | Nullable | Description |
9552
9575
  | ---------- | ---- | -------- | ----------- |
9553
- | is_selected | boolean | no | |
9554
9576
  | name | string | no | |
9577
+ | is_selected | boolean | no | |
9555
9578
  | value | string | no | |
9556
9579
 
9557
9580
  ---
@@ -9559,13 +9582,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9559
9582
 
9560
9583
 
9561
9584
 
9562
- #### [ProductSizeSellersResponseV2](#ProductSizeSellersResponseV2)
9585
+ #### [ProductSizeSellersResponseV3](#ProductSizeSellersResponseV3)
9563
9586
 
9564
9587
  | Properties | Type | Nullable | Description |
9565
9588
  | ---------- | ---- | -------- | ----------- |
9566
9589
  | page | [Page](#Page) | yes | |
9567
- | items | [[ProductSizePriceResponseV2](#ProductSizePriceResponseV2)] | no | |
9568
- | sort_on | [[ProductSizeSellerFilterSchemaV2](#ProductSizeSellerFilterSchemaV2)] | no | |
9590
+ | sort_on | [[ProductSizeSellerFilterSchemaV3](#ProductSizeSellerFilterSchemaV3)] | no | |
9591
+ | items | [[ProductSizePriceResponseV3](#ProductSizePriceResponseV3)] | no | |
9569
9592
 
9570
9593
  ---
9571
9594