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