@gofynd/fdk-client-javascript 0.1.37 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (353) hide show
  1. package/README.md +24 -0
  2. package/application.d.ts +2 -1
  3. package/application.js +2 -1
  4. package/documentation/application/CART.md +315 -289
  5. package/documentation/application/CATALOG.md +427 -404
  6. package/documentation/application/FILESTORAGE.md +2 -0
  7. package/documentation/application/LEAD.md +18 -18
  8. package/documentation/application/LOGISTIC.md +45 -45
  9. package/documentation/application/ORDER.md +287 -287
  10. package/documentation/application/PAYMENT.md +278 -278
  11. package/documentation/application/POSCART.md +318 -292
  12. package/documentation/application/REWARDS.md +1 -0
  13. package/documentation/application/USER.md +19 -14
  14. package/documentation/platform/CART.md +465 -462
  15. package/documentation/platform/CATALOG.md +2691 -2624
  16. package/documentation/platform/COMPANYPROFILE.md +186 -348
  17. package/documentation/platform/DISCOUNT.md +86 -0
  18. package/documentation/platform/FILESTORAGE.md +2 -0
  19. package/documentation/platform/LEAD.md +60 -60
  20. package/documentation/platform/ORDER.md +1299 -1621
  21. package/documentation/platform/PAYMENT.md +89 -89
  22. package/documentation/platform/REWARDS.md +145 -0
  23. package/documentation/platform/USER.md +24 -14
  24. package/index.d.ts +4 -1
  25. package/index.js +6 -3
  26. package/package.json +9 -9
  27. package/platform.d.ts +2 -1
  28. package/platform.js +3 -2
  29. package/public.d.ts +1 -0
  30. package/public.js +3 -2
  31. package/sdk/application/ApplicationAPIClient.js +3 -1
  32. package/sdk/application/ApplicationClient.d.ts +16 -16
  33. package/sdk/application/ApplicationClient.js +32 -16
  34. package/sdk/application/ApplicationConfig.js +3 -2
  35. package/sdk/application/ApplicationModels.d.ts +0 -832
  36. package/sdk/application/ApplicationModels.js +3 -10574
  37. package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
  38. package/sdk/application/{client → Cart}/CartApplicationClient.js +14 -8
  39. package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
  40. package/sdk/application/Cart/CartApplicationModel.js +1136 -0
  41. package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +16 -12
  42. package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
  43. package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +11 -8
  44. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
  45. package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
  46. package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +3 -1
  47. package/sdk/application/{client → Common}/CommonApplicationClient.js +2 -2
  48. package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
  49. package/sdk/application/Common/CommonApplicationModel.js +228 -0
  50. package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +2 -1
  51. package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +2 -2
  52. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
  53. package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
  54. package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +4 -3
  55. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +2 -2
  56. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
  57. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
  58. package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +3 -2
  59. package/sdk/application/{client → Content}/ContentApplicationClient.js +2 -2
  60. package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
  61. package/sdk/application/Content/ContentApplicationModel.js +1349 -0
  62. package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +2 -1
  63. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +2 -2
  64. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
  65. package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
  66. package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +5 -4
  67. package/sdk/application/{client → Lead}/LeadApplicationClient.js +2 -2
  68. package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
  69. package/sdk/application/Lead/LeadApplicationModel.js +690 -0
  70. package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +5 -4
  71. package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +2 -2
  72. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
  73. package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
  74. package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +4 -3
  75. package/sdk/application/{client → Order}/OrderApplicationClient.js +2 -2
  76. package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
  77. package/sdk/application/Order/OrderApplicationModel.js +872 -0
  78. package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +4 -3
  79. package/sdk/application/{client → Payment}/PaymentApplicationClient.js +2 -2
  80. package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
  81. package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
  82. package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +24 -23
  83. package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
  84. package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +14 -8
  85. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
  86. package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
  87. package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +17 -13
  88. package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +2 -2
  89. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
  90. package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
  91. package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +5 -4
  92. package/sdk/application/{client → Share}/ShareApplicationClient.js +2 -2
  93. package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
  94. package/sdk/application/Share/ShareApplicationModel.js +178 -0
  95. package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +3 -2
  96. package/sdk/application/{client → Theme}/ThemeApplicationClient.js +2 -2
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
  98. package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
  99. package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +2 -1
  100. package/sdk/application/{client → User}/UserApplicationClient.js +2 -2
  101. package/sdk/application/User/UserApplicationModel.d.ts +95 -0
  102. package/sdk/application/User/UserApplicationModel.js +998 -0
  103. package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +30 -29
  104. package/sdk/application/index.d.ts +18 -0
  105. package/sdk/application/index.js +33 -0
  106. package/sdk/common/AxiosHelper.js +23 -10
  107. package/sdk/common/Logger.d.ts +2 -0
  108. package/sdk/common/Logger.js +6 -0
  109. package/sdk/common/curlHelper.d.ts +2 -0
  110. package/sdk/common/curlHelper.js +95 -0
  111. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +285 -0
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
  115. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +2 -2
  116. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
  118. package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
  119. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +2 -2
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
  122. package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
  123. package/sdk/platform/{client → Billing}/BillingPlatformClient.js +2 -2
  124. package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
  125. package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
  126. package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
  127. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
  128. package/sdk/platform/Cart/CartPlatformApplicationClient.js +755 -0
  129. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
  130. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
  131. package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
  132. package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
  133. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
  134. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2136 -0
  135. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
  136. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
  137. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +338 -338
  138. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +316 -0
  139. package/sdk/platform/Catalog/CatalogPlatformModel.js +4690 -0
  140. package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +89 -88
  141. package/sdk/platform/{client → Common}/CommonPlatformClient.js +2 -2
  142. package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
  143. package/sdk/platform/Common/CommonPlatformModel.js +228 -0
  144. package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
  145. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
  146. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1656 -0
  147. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
  148. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
  149. package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +2 -2
  150. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
  151. package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
  152. package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
  153. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
  154. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +2 -33
  155. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
  156. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
  157. package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
  158. package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
  159. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
  160. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +940 -0
  161. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
  162. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
  163. package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +2 -2
  164. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
  165. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
  166. package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
  167. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
  168. package/sdk/platform/Content/ContentPlatformApplicationClient.js +2208 -0
  169. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
  170. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
  171. package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
  172. package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
  173. package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
  174. package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +35 -2
  175. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
  176. package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
  177. package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
  178. package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
  179. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
  180. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +247 -0
  181. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
  182. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
  183. package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +2 -2
  184. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
  185. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
  186. package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
  187. package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +2 -2
  188. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
  189. package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
  190. package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
  191. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
  192. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +397 -0
  193. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
  194. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
  195. package/sdk/platform/{client → Lead}/LeadPlatformClient.js +2 -2
  196. package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
  197. package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
  198. package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
  199. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
  200. package/sdk/platform/Order/OrderPlatformApplicationClient.js +152 -0
  201. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
  202. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
  203. package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +9 -49
  204. package/sdk/platform/{client → Order}/OrderPlatformClient.js +18 -130
  205. package/sdk/platform/Order/OrderPlatformModel.d.ts +215 -0
  206. package/sdk/platform/Order/OrderPlatformModel.js +3530 -0
  207. package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +0 -2
  208. package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +22 -44
  209. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
  210. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -0
  211. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
  212. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
  213. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
  214. package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
  215. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
  216. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +333 -0
  217. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
  218. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
  219. package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +2 -2
  220. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
  221. package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
  222. package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
  223. package/sdk/platform/PlatformAPIClient.js +2 -1
  224. package/sdk/platform/PlatformApplicationClient.d.ts +2979 -18615
  225. package/sdk/platform/PlatformApplicationClient.js +3811 -13957
  226. package/sdk/platform/PlatformClient.d.ts +2982 -3013
  227. package/sdk/platform/PlatformClient.js +3806 -3231
  228. package/sdk/platform/PlatformConfig.js +2 -1
  229. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
  230. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +428 -0
  231. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
  232. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
  233. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
  234. package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
  235. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
  236. package/sdk/platform/Share/SharePlatformApplicationClient.js +182 -0
  237. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
  238. package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
  239. package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
  240. package/sdk/platform/Share/SharePlatformModel.js +170 -0
  241. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
  242. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +704 -0
  243. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
  244. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
  246. package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +361 -0
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
  251. package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
  252. package/sdk/platform/User/UserPlatformModel.js +998 -0
  253. package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +2 -2
  254. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
  255. package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
  256. package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
  257. package/sdk/platform/index.d.ts +24 -0
  258. package/sdk/platform/index.js +45 -0
  259. package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +1 -1
  260. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
  261. package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
  262. package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +1 -1
  263. package/sdk/public/{client → Inventory}/InventoryPublicClient.js +1 -1
  264. package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
  265. package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
  266. package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +2 -2
  267. package/sdk/public/PublicClient.d.ts +3 -3
  268. package/sdk/public/PublicClient.js +8 -3
  269. package/sdk/public/{client → Webhook}/WebhookPublicClient.js +1 -1
  270. package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
  271. package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
  272. package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +2 -2
  273. package/sdk/public/index.d.ts +5 -0
  274. package/sdk/public/index.js +7 -0
  275. package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
  276. package/sdk/platform/PlatformApplicationModels.js +0 -22658
  277. package/sdk/platform/PlatformModels.d.ts +0 -1477
  278. package/sdk/platform/PlatformModels.js +0 -20646
  279. package/sdk/platform/models/CartValidator.d.ts +0 -0
  280. package/sdk/platform/models/CartValidator.js +0 -0
  281. package/sdk/platform/models/ContentValidator.d.ts +0 -0
  282. package/sdk/platform/models/ContentValidator.js +0 -0
  283. package/sdk/platform/models/PartnerValidator.d.ts +0 -0
  284. package/sdk/platform/models/PartnerValidator.js +0 -0
  285. package/sdk/platform/models/RewardsValidator.d.ts +0 -0
  286. package/sdk/platform/models/RewardsValidator.js +0 -0
  287. package/sdk/platform/models/ShareValidator.d.ts +0 -0
  288. package/sdk/platform/models/ShareValidator.js +0 -0
  289. package/sdk/platform/models/ThemeValidator.d.ts +0 -0
  290. package/sdk/platform/models/ThemeValidator.js +0 -0
  291. package/sdk/platform/models/UserValidator.d.ts +0 -0
  292. package/sdk/platform/models/UserValidator.js +0 -0
  293. package/sdk/public/PublicModels.d.ts +0 -50
  294. package/sdk/public/PublicModels.js +0 -712
  295. package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
  296. package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
  297. package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
  298. package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
  299. package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
  300. package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
  301. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
  302. package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
  303. package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
  304. package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
  305. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
  306. package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
  307. package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
  308. package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
  309. package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
  310. package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
  311. package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
  312. package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
  313. package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
  314. package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
  315. package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
  316. package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
  317. package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
  318. package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
  319. package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
  320. package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
  321. package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
  322. package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
  323. package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
  324. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
  325. package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
  326. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
  327. package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
  328. package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
  329. package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
  330. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +126 -126
  331. package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +15 -15
  332. /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
  333. /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
  334. /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
  335. /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
  336. /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
  337. /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
  338. /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
  339. /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
  340. /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
  341. /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
  342. /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
  343. /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
  344. /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
  345. /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
  346. /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
  347. /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
  348. /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
  349. /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
  350. /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
  351. /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
  352. /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
  353. /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
@@ -53,6 +53,7 @@ const promise = cart.getCart({ id : value,
53
53
  i : value,
54
54
  b : value,
55
55
  assignCardId : value,
56
+ areaCode : value,
56
57
  buyNow : value });
57
58
 
58
59
  // Async/Await
@@ -60,6 +61,7 @@ const data = await cart.getCart({ id : value,
60
61
  i : value,
61
62
  b : value,
62
63
  assignCardId : value,
64
+ areaCode : value,
63
65
  buyNow : value });
64
66
  ```
65
67
 
@@ -73,6 +75,7 @@ const data = await cart.getCart({ id : value,
73
75
  | i | boolean | no | |
74
76
  | b | boolean | no | |
75
77
  | assignCardId | number | no | |
78
+ | areaCode | string | no | |
76
79
  | buyNow | boolean | no | |
77
80
 
78
81
 
@@ -324,12 +327,14 @@ Add items to cart
324
327
  const promise = cart.addItems({ body : value,
325
328
  i : value,
326
329
  b : value,
330
+ areaCode : value,
327
331
  buyNow : value });
328
332
 
329
333
  // Async/Await
330
334
  const data = await cart.addItems({ body : value,
331
335
  i : value,
332
336
  b : value,
337
+ areaCode : value,
333
338
  buyNow : value });
334
339
  ```
335
340
 
@@ -341,6 +346,7 @@ const data = await cart.addItems({ body : value,
341
346
  | --------- | ----- | -------- | ----------- |
342
347
  | i | boolean | no | |
343
348
  | b | boolean | no | |
349
+ | areaCode | string | no | |
344
350
  | buyNow | boolean | no | |
345
351
  | body | [AddCartRequest](#AddCartRequest) | yes | Request body |
346
352
 
@@ -1034,6 +1040,7 @@ const promise = cart.updateCart({ body : value,
1034
1040
  id : value,
1035
1041
  i : value,
1036
1042
  b : value,
1043
+ areaCode : value,
1037
1044
  buyNow : value });
1038
1045
 
1039
1046
  // Async/Await
@@ -1041,6 +1048,7 @@ const data = await cart.updateCart({ body : value,
1041
1048
  id : value,
1042
1049
  i : value,
1043
1050
  b : value,
1051
+ areaCode : value,
1044
1052
  buyNow : value });
1045
1053
  ```
1046
1054
 
@@ -1053,6 +1061,7 @@ const data = await cart.updateCart({ body : value,
1053
1061
  | id | string | no | |
1054
1062
  | i | boolean | no | |
1055
1063
  | b | boolean | no | |
1064
+ | areaCode | string | no | |
1056
1065
  | buyNow | boolean | no | |
1057
1066
  | body | [UpdateCartRequest](#UpdateCartRequest) | yes | Request body |
1058
1067
 
@@ -6138,155 +6147,147 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6138
6147
 
6139
6148
 
6140
6149
 
6141
- #### [CartCurrency](#CartCurrency)
6150
+ #### [PaymentSelectionLock](#PaymentSelectionLock)
6142
6151
 
6143
6152
  | Properties | Type | Nullable | Description |
6144
6153
  | ---------- | ---- | -------- | ----------- |
6145
- | symbol | string | no | |
6146
- | code | string | no | Currency code defined by ISO 4217:2015 |
6154
+ | enabled | boolean | no | |
6155
+ | payment_identifier | string | no | |
6156
+ | default_options | string | no | |
6147
6157
 
6148
6158
  ---
6149
6159
 
6150
6160
 
6151
6161
 
6152
6162
 
6153
- #### [PaymentSelectionLock](#PaymentSelectionLock)
6163
+ #### [CartCurrency](#CartCurrency)
6154
6164
 
6155
6165
  | Properties | Type | Nullable | Description |
6156
6166
  | ---------- | ---- | -------- | ----------- |
6157
- | payment_identifier | string | no | |
6158
- | enabled | boolean | no | |
6159
- | default_options | string | no | |
6167
+ | code | string | no | Currency code defined by ISO 4217:2015 |
6168
+ | symbol | string | no | |
6160
6169
 
6161
6170
  ---
6162
6171
 
6163
6172
 
6164
6173
 
6165
6174
 
6166
- #### [PromiseTimestamp](#PromiseTimestamp)
6175
+ #### [ProductImage](#ProductImage)
6167
6176
 
6168
6177
  | Properties | Type | Nullable | Description |
6169
6178
  | ---------- | ---- | -------- | ----------- |
6170
- | min | number | no | |
6171
- | max | number | no | |
6179
+ | aspect_ratio | string | no | |
6180
+ | secure_url | string | no | |
6181
+ | url | string | no | |
6172
6182
 
6173
6183
  ---
6174
6184
 
6175
6185
 
6176
6186
 
6177
6187
 
6178
- #### [PromiseFormatted](#PromiseFormatted)
6188
+ #### [ActionQuery](#ActionQuery)
6179
6189
 
6180
6190
  | Properties | Type | Nullable | Description |
6181
6191
  | ---------- | ---- | -------- | ----------- |
6182
- | min | string | no | |
6183
- | max | string | no | |
6192
+ | product_slug | [string] | no | Contains list of product slug |
6184
6193
 
6185
6194
  ---
6186
6195
 
6187
6196
 
6188
6197
 
6189
6198
 
6190
- #### [ShipmentPromise](#ShipmentPromise)
6199
+ #### [ProductAction](#ProductAction)
6191
6200
 
6192
6201
  | Properties | Type | Nullable | Description |
6193
6202
  | ---------- | ---- | -------- | ----------- |
6194
- | timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
6195
- | formatted | [PromiseFormatted](#PromiseFormatted) | no | |
6203
+ | url | string | no | |
6204
+ | type | string | no | |
6205
+ | query | [ActionQuery](#ActionQuery) | no | |
6196
6206
 
6197
6207
  ---
6198
6208
 
6199
6209
 
6200
6210
 
6201
6211
 
6202
- #### [CouponBreakup](#CouponBreakup)
6212
+ #### [BaseInfo](#BaseInfo)
6203
6213
 
6204
6214
  | Properties | Type | Nullable | Description |
6205
6215
  | ---------- | ---- | -------- | ----------- |
6206
- | message | string | no | |
6207
- | value | number | no | |
6208
- | code | string | no | |
6209
- | is_applied | boolean | no | |
6210
- | uid | string | no | |
6211
- | type | string | no | |
6216
+ | uid | number | no | |
6217
+ | name | string | no | |
6212
6218
 
6213
6219
  ---
6214
6220
 
6215
6221
 
6216
6222
 
6217
6223
 
6218
- #### [LoyaltyPoints](#LoyaltyPoints)
6224
+ #### [CategoryInfo](#CategoryInfo)
6219
6225
 
6220
6226
  | Properties | Type | Nullable | Description |
6221
6227
  | ---------- | ---- | -------- | ----------- |
6222
- | applicable | number | no | |
6223
- | description | string | no | |
6224
- | total | number | no | |
6225
- | is_applied | boolean | no | |
6228
+ | uid | number | no | Product Category Id |
6229
+ | name | string | no | |
6226
6230
 
6227
6231
  ---
6228
6232
 
6229
6233
 
6230
6234
 
6231
6235
 
6232
- #### [DisplayBreakup](#DisplayBreakup)
6236
+ #### [CartProduct](#CartProduct)
6233
6237
 
6234
6238
  | Properties | Type | Nullable | Description |
6235
6239
  | ---------- | ---- | -------- | ----------- |
6236
- | message | [string] | no | |
6237
- | value | number | no | |
6238
- | key | string | no | |
6239
- | currency_symbol | string | no | |
6240
- | display | string | no | |
6241
- | currency_code | string | no | |
6240
+ | images | [[ProductImage](#ProductImage)] | no | |
6241
+ | uid | number | no | |
6242
+ | action | [ProductAction](#ProductAction) | no | |
6243
+ | type | string | no | |
6244
+ | name | string | no | |
6245
+ | brand | [BaseInfo](#BaseInfo) | no | |
6246
+ | slug | string | no | Unique product url name generated via product name and other meta data |
6247
+ | categories | [[CategoryInfo](#CategoryInfo)] | no | |
6242
6248
 
6243
6249
  ---
6244
6250
 
6245
6251
 
6246
6252
 
6247
6253
 
6248
- #### [RawBreakup](#RawBreakup)
6254
+ #### [ProductPrice](#ProductPrice)
6249
6255
 
6250
6256
  | Properties | Type | Nullable | Description |
6251
6257
  | ---------- | ---- | -------- | ----------- |
6252
- | coupon | number | no | |
6253
- | total | number | no | |
6254
- | subtotal | number | no | |
6255
- | vog | number | no | |
6256
- | delivery_charge | number | no | |
6257
- | you_saved | number | no | |
6258
- | mrp_total | number | no | |
6259
- | cod_charge | number | no | |
6260
- | fynd_cash | number | no | |
6261
- | gst_charges | number | no | |
6262
- | convenience_fee | number | no | |
6263
- | discount | number | no | |
6258
+ | currency_code | string | no | |
6259
+ | marked | number | no | |
6260
+ | currency_symbol | string | no | |
6261
+ | selling | number | no | |
6262
+ | effective | number | no | |
6263
+ | add_on | number | no | |
6264
6264
 
6265
6265
  ---
6266
6266
 
6267
6267
 
6268
6268
 
6269
6269
 
6270
- #### [CartBreakup](#CartBreakup)
6270
+ #### [ProductPriceInfo](#ProductPriceInfo)
6271
6271
 
6272
6272
  | Properties | Type | Nullable | Description |
6273
6273
  | ---------- | ---- | -------- | ----------- |
6274
- | coupon | [CouponBreakup](#CouponBreakup) | no | |
6275
- | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
6276
- | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
6277
- | raw | [RawBreakup](#RawBreakup) | no | |
6274
+ | converted | [ProductPrice](#ProductPrice) | no | |
6275
+ | base | [ProductPrice](#ProductPrice) | no | |
6278
6276
 
6279
6277
  ---
6280
6278
 
6281
6279
 
6282
6280
 
6283
6281
 
6284
- #### [BaseInfo](#BaseInfo)
6282
+ #### [ProductAvailability](#ProductAvailability)
6285
6283
 
6286
6284
  | Properties | Type | Nullable | Description |
6287
6285
  | ---------- | ---- | -------- | ----------- |
6288
- | name | string | no | |
6289
- | uid | number | no | |
6286
+ | is_valid | boolean | no | |
6287
+ | sizes | [string] | no | |
6288
+ | deliverable | boolean | no | |
6289
+ | other_store_quantity | number | no | |
6290
+ | out_of_stock | boolean | no | |
6290
6291
 
6291
6292
  ---
6292
6293
 
@@ -6297,10 +6298,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6297
6298
 
6298
6299
  | Properties | Type | Nullable | Description |
6299
6300
  | ---------- | ---- | -------- | ----------- |
6300
- | currency_symbol | string | no | |
6301
6301
  | marked | number | no | |
6302
- | currency_code | string | no | |
6303
6302
  | effective | number | no | |
6303
+ | currency_symbol | string | no | |
6304
+ | currency_code | string | no | |
6304
6305
 
6305
6306
  ---
6306
6307
 
@@ -6311,8 +6312,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6311
6312
 
6312
6313
  | Properties | Type | Nullable | Description |
6313
6314
  | ---------- | ---- | -------- | ----------- |
6314
- | base | [BasePrice](#BasePrice) | no | |
6315
6315
  | converted | [BasePrice](#BasePrice) | no | |
6316
+ | base | [BasePrice](#BasePrice) | no | |
6316
6317
 
6317
6318
  ---
6318
6319
 
@@ -6324,202 +6325,211 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6324
6325
  | Properties | Type | Nullable | Description |
6325
6326
  | ---------- | ---- | -------- | ----------- |
6326
6327
  | parent_item_identifiers | string | no | |
6327
- | size | string | no | |
6328
+ | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
6328
6329
  | extra_meta | string | no | |
6329
- | store | [BaseInfo](#BaseInfo) | no | |
6330
- | quantity | number | no | |
6331
- | seller | [BaseInfo](#BaseInfo) | no | |
6332
- | product_group_tags | [string] | no | |
6333
6330
  | uid | string | no | |
6334
- | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
6331
+ | size | string | no | |
6335
6332
  | type | string | no | |
6333
+ | _custom_json | string | no | |
6334
+ | product_group_tags | [string] | no | |
6335
+ | quantity | number | no | |
6336
+ | seller | [BaseInfo](#BaseInfo) | no | |
6337
+ | store | [BaseInfo](#BaseInfo) | no | |
6336
6338
 
6337
6339
  ---
6338
6340
 
6339
6341
 
6340
6342
 
6341
6343
 
6342
- #### [CategoryInfo](#CategoryInfo)
6344
+ #### [CartProductIdentifer](#CartProductIdentifer)
6343
6345
 
6344
6346
  | Properties | Type | Nullable | Description |
6345
6347
  | ---------- | ---- | -------- | ----------- |
6346
- | name | string | no | |
6347
- | uid | number | no | Product Category Id |
6348
+ | identifier | string | no | Article idenfier generated by cart |
6348
6349
 
6349
6350
  ---
6350
6351
 
6351
6352
 
6352
6353
 
6353
6354
 
6354
- #### [ProductImage](#ProductImage)
6355
+ #### [PromoMeta](#PromoMeta)
6355
6356
 
6356
6357
  | Properties | Type | Nullable | Description |
6357
6358
  | ---------- | ---- | -------- | ----------- |
6358
- | aspect_ratio | string | no | |
6359
- | secure_url | string | no | |
6360
- | url | string | no | |
6359
+ | message | string | no | |
6361
6360
 
6362
6361
  ---
6363
6362
 
6364
6363
 
6365
6364
 
6366
6365
 
6367
- #### [ActionQuery](#ActionQuery)
6366
+ #### [Ownership](#Ownership)
6368
6367
 
6369
6368
  | Properties | Type | Nullable | Description |
6370
6369
  | ---------- | ---- | -------- | ----------- |
6371
- | product_slug | [string] | no | Contains list of product slug |
6370
+ | payable_by | string | no | promo amount bearable party |
6371
+ | payable_category | string | no | promo amount payable category |
6372
6372
 
6373
6373
  ---
6374
6374
 
6375
6375
 
6376
6376
 
6377
6377
 
6378
- #### [ProductAction](#ProductAction)
6378
+ #### [AppliedPromotion](#AppliedPromotion)
6379
6379
 
6380
6380
  | Properties | Type | Nullable | Description |
6381
6381
  | ---------- | ---- | -------- | ----------- |
6382
- | query | [ActionQuery](#ActionQuery) | no | |
6383
- | url | string | no | |
6384
- | type | string | no | |
6382
+ | offer_text | string | no | Offer text of current promotion |
6383
+ | article_quantity | number | no | Quantity of article on which promotion is applicable |
6384
+ | promotion_type | string | no | Promotion type of current promotion |
6385
+ | ownership | [Ownership](#Ownership) | no | Ownership of promotion |
6386
+ | mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
6387
+ | amount | number | no | Per unit discount amount applied with current promotion |
6388
+ | promo_id | string | no | Promotion id |
6385
6389
 
6386
6390
  ---
6387
6391
 
6388
6392
 
6389
6393
 
6390
6394
 
6391
- #### [CartProduct](#CartProduct)
6395
+ #### [CartProductInfo](#CartProductInfo)
6392
6396
 
6393
6397
  | Properties | Type | Nullable | Description |
6394
6398
  | ---------- | ---- | -------- | ----------- |
6395
- | categories | [[CategoryInfo](#CategoryInfo)] | no | |
6396
- | slug | string | no | Unique product url name generated via product name and other meta data |
6397
- | images | [[ProductImage](#ProductImage)] | no | |
6398
- | action | [ProductAction](#ProductAction) | no | |
6399
- | brand | [BaseInfo](#BaseInfo) | no | |
6400
- | name | string | no | |
6401
- | uid | number | no | |
6402
- | type | string | no | |
6399
+ | is_set | boolean | no | |
6400
+ | product | [CartProduct](#CartProduct) | no | |
6401
+ | parent_item_identifiers | string | no | |
6402
+ | price | [ProductPriceInfo](#ProductPriceInfo) | no | |
6403
+ | key | string | no | |
6404
+ | message | string | no | |
6405
+ | coupon_message | string | no | |
6406
+ | availability | [ProductAvailability](#ProductAvailability) | no | |
6407
+ | discount | string | no | |
6408
+ | price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
6409
+ | article | [ProductArticle](#ProductArticle) | no | |
6410
+ | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
6411
+ | promo_meta | [PromoMeta](#PromoMeta) | no | |
6412
+ | bulk_offer | string | no | |
6413
+ | quantity | number | no | |
6414
+ | promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
6403
6415
 
6404
6416
  ---
6405
6417
 
6406
6418
 
6407
6419
 
6408
6420
 
6409
- #### [ProductPrice](#ProductPrice)
6421
+ #### [PromiseTimestamp](#PromiseTimestamp)
6410
6422
 
6411
6423
  | Properties | Type | Nullable | Description |
6412
6424
  | ---------- | ---- | -------- | ----------- |
6413
- | selling | number | no | |
6414
- | currency_symbol | string | no | |
6415
- | marked | number | no | |
6416
- | add_on | number | no | |
6417
- | effective | number | no | |
6418
- | currency_code | string | no | |
6425
+ | max | number | no | |
6426
+ | min | number | no | |
6419
6427
 
6420
6428
  ---
6421
6429
 
6422
6430
 
6423
6431
 
6424
6432
 
6425
- #### [ProductPriceInfo](#ProductPriceInfo)
6433
+ #### [PromiseFormatted](#PromiseFormatted)
6426
6434
 
6427
6435
  | Properties | Type | Nullable | Description |
6428
6436
  | ---------- | ---- | -------- | ----------- |
6429
- | base | [ProductPrice](#ProductPrice) | no | |
6430
- | converted | [ProductPrice](#ProductPrice) | no | |
6437
+ | max | string | no | |
6438
+ | min | string | no | |
6431
6439
 
6432
6440
  ---
6433
6441
 
6434
6442
 
6435
6443
 
6436
6444
 
6437
- #### [Ownership](#Ownership)
6445
+ #### [ShipmentPromise](#ShipmentPromise)
6438
6446
 
6439
6447
  | Properties | Type | Nullable | Description |
6440
6448
  | ---------- | ---- | -------- | ----------- |
6441
- | payable_category | string | no | promo amount payable category |
6442
- | payable_by | string | no | promo amount bearable party |
6449
+ | timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
6450
+ | formatted | [PromiseFormatted](#PromiseFormatted) | no | |
6443
6451
 
6444
6452
  ---
6445
6453
 
6446
6454
 
6447
6455
 
6448
6456
 
6449
- #### [AppliedPromotion](#AppliedPromotion)
6457
+ #### [RawBreakup](#RawBreakup)
6450
6458
 
6451
6459
  | Properties | Type | Nullable | Description |
6452
6460
  | ---------- | ---- | -------- | ----------- |
6453
- | promo_id | string | no | Promotion id |
6454
- | offer_text | string | no | Offer text of current promotion |
6455
- | mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
6456
- | amount | number | no | Per unit discount amount applied with current promotion |
6457
- | promotion_type | string | no | Promotion type of current promotion |
6458
- | article_quantity | number | no | Quantity of article on which promotion is applicable |
6459
- | ownership | [Ownership](#Ownership) | no | Ownership of promotion |
6461
+ | convenience_fee | number | no | |
6462
+ | fynd_cash | number | no | |
6463
+ | coupon | number | no | |
6464
+ | subtotal | number | no | |
6465
+ | gst_charges | number | no | |
6466
+ | vog | number | no | |
6467
+ | cod_charge | number | no | |
6468
+ | you_saved | number | no | |
6469
+ | discount | number | no | |
6470
+ | delivery_charge | number | no | |
6471
+ | total | number | no | |
6472
+ | mrp_total | number | no | |
6460
6473
 
6461
6474
  ---
6462
6475
 
6463
6476
 
6464
6477
 
6465
6478
 
6466
- #### [ProductAvailability](#ProductAvailability)
6479
+ #### [LoyaltyPoints](#LoyaltyPoints)
6467
6480
 
6468
6481
  | Properties | Type | Nullable | Description |
6469
6482
  | ---------- | ---- | -------- | ----------- |
6470
- | out_of_stock | boolean | no | |
6471
- | sizes | [string] | no | |
6472
- | other_store_quantity | number | no | |
6473
- | deliverable | boolean | no | |
6474
- | is_valid | boolean | no | |
6483
+ | is_applied | boolean | no | |
6484
+ | description | string | no | |
6485
+ | applicable | number | no | |
6486
+ | total | number | no | |
6475
6487
 
6476
6488
  ---
6477
6489
 
6478
6490
 
6479
6491
 
6480
6492
 
6481
- #### [CartProductIdentifer](#CartProductIdentifer)
6493
+ #### [DisplayBreakup](#DisplayBreakup)
6482
6494
 
6483
6495
  | Properties | Type | Nullable | Description |
6484
6496
  | ---------- | ---- | -------- | ----------- |
6485
- | identifier | string | no | Article idenfier generated by cart |
6497
+ | currency_code | string | no | |
6498
+ | message | [string] | no | |
6499
+ | key | string | no | |
6500
+ | currency_symbol | string | no | |
6501
+ | value | number | no | |
6502
+ | display | string | no | |
6486
6503
 
6487
6504
  ---
6488
6505
 
6489
6506
 
6490
6507
 
6491
6508
 
6492
- #### [PromoMeta](#PromoMeta)
6509
+ #### [CouponBreakup](#CouponBreakup)
6493
6510
 
6494
6511
  | Properties | Type | Nullable | Description |
6495
6512
  | ---------- | ---- | -------- | ----------- |
6513
+ | is_applied | boolean | no | |
6496
6514
  | message | string | no | |
6515
+ | uid | string | no | |
6516
+ | value | number | no | |
6517
+ | code | string | no | |
6518
+ | type | string | no | |
6497
6519
 
6498
6520
  ---
6499
6521
 
6500
6522
 
6501
6523
 
6502
6524
 
6503
- #### [CartProductInfo](#CartProductInfo)
6525
+ #### [CartBreakup](#CartBreakup)
6504
6526
 
6505
6527
  | Properties | Type | Nullable | Description |
6506
6528
  | ---------- | ---- | -------- | ----------- |
6507
- | parent_item_identifiers | string | no | |
6508
- | message | string | no | |
6509
- | coupon_message | string | no | |
6510
- | key | string | no | |
6511
- | article | [ProductArticle](#ProductArticle) | no | |
6512
- | product | [CartProduct](#CartProduct) | no | |
6513
- | bulk_offer | string | no | |
6514
- | price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
6515
- | quantity | number | no | |
6516
- | is_set | boolean | no | |
6517
- | promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
6518
- | availability | [ProductAvailability](#ProductAvailability) | no | |
6519
- | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
6520
- | promo_meta | [PromoMeta](#PromoMeta) | no | |
6521
- | price | [ProductPriceInfo](#ProductPriceInfo) | no | |
6522
- | discount | string | no | |
6529
+ | raw | [RawBreakup](#RawBreakup) | no | |
6530
+ | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
6531
+ | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
6532
+ | coupon | [CouponBreakup](#CouponBreakup) | no | |
6523
6533
 
6524
6534
  ---
6525
6535
 
@@ -6530,22 +6540,22 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6530
6540
 
6531
6541
  | Properties | Type | Nullable | Description |
6532
6542
  | ---------- | ---- | -------- | ----------- |
6533
- | buy_now | boolean | no | |
6543
+ | is_valid | boolean | no | |
6534
6544
  | message | string | no | |
6535
6545
  | id | string | no | |
6536
- | currency | [CartCurrency](#CartCurrency) | no | |
6537
6546
  | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
6538
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
6539
- | coupon_text | string | no | |
6540
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
6541
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
6542
- | gstin | string | no | |
6543
6547
  | restrict_checkout | boolean | no | |
6544
6548
  | last_modified | string | no | |
6549
+ | currency | [CartCurrency](#CartCurrency) | no | |
6550
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
6545
6551
  | comment | string | no | |
6546
- | checkout_mode | string | no | |
6547
- | is_valid | boolean | no | |
6552
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
6548
6553
  | delivery_charge_info | string | no | |
6554
+ | checkout_mode | string | no | |
6555
+ | buy_now | boolean | no | |
6556
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
6557
+ | gstin | string | no | |
6558
+ | coupon_text | string | no | |
6549
6559
 
6550
6560
  ---
6551
6561
 
@@ -6557,17 +6567,18 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6557
6567
  | Properties | Type | Nullable | Description |
6558
6568
  | ---------- | ---- | -------- | ----------- |
6559
6569
  | parent_item_identifiers | string | no | |
6570
+ | store_id | number | no | |
6560
6571
  | item_size | string | no | |
6561
- | pos | boolean | no | |
6562
6572
  | extra_meta | string | no | |
6563
6573
  | article_assignment | string | no | |
6564
- | article_id | string | no | |
6565
- | seller_id | number | no | |
6566
- | quantity | number | no | |
6567
6574
  | item_id | number | no | |
6575
+ | seller_id | number | no | |
6568
6576
  | display | string | no | |
6577
+ | _custom_json | string | no | |
6569
6578
  | product_group_tags | [string] | no | |
6570
- | store_id | number | no | |
6579
+ | article_id | string | no | |
6580
+ | quantity | number | no | |
6581
+ | pos | boolean | no | |
6571
6582
 
6572
6583
  ---
6573
6584
 
@@ -6589,10 +6600,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6589
6600
 
6590
6601
  | Properties | Type | Nullable | Description |
6591
6602
  | ---------- | ---- | -------- | ----------- |
6592
- | message | string | no | |
6593
- | cart | [CartDetailResponse](#CartDetailResponse) | no | |
6594
6603
  | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
6595
6604
  | partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
6605
+ | message | string | no | |
6606
+ | cart | [CartDetailResponse](#CartDetailResponse) | no | |
6596
6607
 
6597
6608
  ---
6598
6609
 
@@ -6606,11 +6617,12 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6606
6617
  | parent_item_identifiers | string | no | |
6607
6618
  | item_size | string | no | |
6608
6619
  | extra_meta | string | no | |
6609
- | article_id | string | no | |
6610
- | quantity | number | no | |
6611
6620
  | item_id | number | no | |
6612
6621
  | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
6622
+ | _custom_json | string | no | |
6613
6623
  | item_index | number | no | |
6624
+ | article_id | string | no | |
6625
+ | quantity | number | no | |
6614
6626
 
6615
6627
  ---
6616
6628
 
@@ -6633,9 +6645,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6633
6645
 
6634
6646
  | Properties | Type | Nullable | Description |
6635
6647
  | ---------- | ---- | -------- | ----------- |
6648
+ | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
6636
6649
  | message | string | no | |
6637
6650
  | cart | [CartDetailResponse](#CartDetailResponse) | no | |
6638
- | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
6639
6651
 
6640
6652
  ---
6641
6653
 
@@ -6657,11 +6669,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6657
6669
 
6658
6670
  | Properties | Type | Nullable | Description |
6659
6671
  | ---------- | ---- | -------- | ----------- |
6660
- | total_item_count | number | no | |
6661
- | total | number | no | |
6662
6672
  | has_previous | boolean | no | |
6663
- | has_next | boolean | no | |
6664
6673
  | current | number | no | |
6674
+ | total | number | no | |
6675
+ | total_item_count | number | no | |
6676
+ | has_next | boolean | no | |
6665
6677
 
6666
6678
  ---
6667
6679
 
@@ -6672,16 +6684,16 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6672
6684
 
6673
6685
  | Properties | Type | Nullable | Description |
6674
6686
  | ---------- | ---- | -------- | ----------- |
6687
+ | is_applied | boolean | no | |
6675
6688
  | message | string | no | |
6676
- | minimum_cart_value | number | no | |
6677
- | expires_on | string | no | |
6678
- | is_applicable | boolean | no | |
6679
6689
  | max_discount_value | number | no | |
6680
- | coupon_code | string | no | |
6681
6690
  | sub_title | string | no | |
6682
- | title | string | no | |
6683
- | is_applied | boolean | no | |
6691
+ | is_applicable | boolean | no | |
6692
+ | coupon_code | string | no | |
6693
+ | minimum_cart_value | number | no | |
6684
6694
  | coupon_value | number | no | |
6695
+ | expires_on | string | no | |
6696
+ | title | string | no | |
6685
6697
 
6686
6698
  ---
6687
6699
 
@@ -6715,8 +6727,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6715
6727
 
6716
6728
  | Properties | Type | Nullable | Description |
6717
6729
  | ---------- | ---- | -------- | ----------- |
6718
- | name | string | no | |
6719
6730
  | uid | number | no | Seller id |
6731
+ | name | string | no | |
6720
6732
 
6721
6733
  ---
6722
6734
 
@@ -6727,11 +6739,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6727
6739
 
6728
6740
  | Properties | Type | Nullable | Description |
6729
6741
  | ---------- | ---- | -------- | ----------- |
6730
- | bulk_effective | number | no | Discounted per unit price for current offer object |
6731
- | currency_symbol | string | no | Currency symbol for currency |
6742
+ | currency_code | string | no | Currency code for all amounts |
6732
6743
  | marked | number | no | Original price of product |
6744
+ | currency_symbol | string | no | Currency symbol for currency |
6733
6745
  | effective | number | no | Current per unit price of product after existing deductions |
6734
- | currency_code | string | no | Currency code for all amounts |
6746
+ | bulk_effective | number | no | Discounted per unit price for current offer object |
6735
6747
 
6736
6748
  ---
6737
6749
 
@@ -6742,13 +6754,13 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6742
6754
 
6743
6755
  | Properties | Type | Nullable | Description |
6744
6756
  | ---------- | ---- | -------- | ----------- |
6745
- | auto_applied | boolean | no | Whether offer discount is auto applied in cart |
6746
- | total | number | no | Total price of offer quantity with discount |
6757
+ | price | [OfferPrice](#OfferPrice) | no | |
6758
+ | type | string | no | Offer type |
6747
6759
  | margin | number | no | Percentage value of discount |
6748
6760
  | best | boolean | no | Is true for best offer from all offers present for all sellers |
6761
+ | total | number | no | Total price of offer quantity with discount |
6749
6762
  | quantity | number | no | Quantity on which offer is applicable |
6750
- | price | [OfferPrice](#OfferPrice) | no | |
6751
- | type | string | no | Offer type |
6763
+ | auto_applied | boolean | no | Whether offer discount is auto applied in cart |
6752
6764
 
6753
6765
  ---
6754
6766
 
@@ -6805,30 +6817,30 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6805
6817
 
6806
6818
  | Properties | Type | Nullable | Description |
6807
6819
  | ---------- | ---- | -------- | ----------- |
6808
- | geo_location | [GeoLocation](#GeoLocation) | no | |
6809
- | country_iso_code | string | no | |
6810
- | state | string | no | |
6811
- | is_active | boolean | no | |
6812
6820
  | country_phone_code | string | no | |
6813
- | area_code | string | no | |
6814
- | city | string | no | |
6821
+ | google_map_point | string | no | |
6815
6822
  | area | string | no | |
6816
- | phone | string | no | |
6817
- | meta | string | no | |
6818
6823
  | area_code_slug | string | no | |
6819
- | checkout_mode | string | no | |
6820
- | email | string | no | |
6821
- | country_code | string | no | |
6822
- | id | string | no | |
6823
- | country | string | no | |
6824
6824
  | address | string | no | |
6825
- | landmark | string | no | |
6825
+ | city | string | no | |
6826
+ | id | string | no | |
6827
+ | is_active | boolean | no | |
6828
+ | country_iso_code | string | no | |
6829
+ | area_code | string | no | |
6830
+ | user_id | string | no | |
6826
6831
  | name | string | no | |
6827
- | google_map_point | string | no | |
6828
- | tags | [string] | no | |
6832
+ | landmark | string | no | |
6833
+ | geo_location | [GeoLocation](#GeoLocation) | no | |
6834
+ | country | string | no | |
6835
+ | country_code | string | no | |
6836
+ | email | string | no | |
6837
+ | state | string | no | |
6838
+ | meta | string | no | |
6829
6839
  | is_default_address | boolean | no | |
6840
+ | phone | string | no | |
6841
+ | checkout_mode | string | no | |
6842
+ | tags | [string] | no | |
6830
6843
  | address_type | string | no | |
6831
- | user_id | string | no | |
6832
6844
 
6833
6845
  ---
6834
6846
 
@@ -6850,9 +6862,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6850
6862
 
6851
6863
  | Properties | Type | Nullable | Description |
6852
6864
  | ---------- | ---- | -------- | ----------- |
6865
+ | id | string | no | |
6853
6866
  | is_default_address | boolean | no | |
6854
6867
  | success | boolean | no | |
6855
- | id | string | no | |
6856
6868
 
6857
6869
  ---
6858
6870
 
@@ -6863,10 +6875,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6863
6875
 
6864
6876
  | Properties | Type | Nullable | Description |
6865
6877
  | ---------- | ---- | -------- | ----------- |
6866
- | is_default_address | boolean | no | |
6878
+ | id | string | no | |
6867
6879
  | is_updated | boolean | no | |
6880
+ | is_default_address | boolean | no | |
6868
6881
  | success | boolean | no | |
6869
- | id | string | no | |
6870
6882
 
6871
6883
  ---
6872
6884
 
@@ -6890,8 +6902,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6890
6902
  | Properties | Type | Nullable | Description |
6891
6903
  | ---------- | ---- | -------- | ----------- |
6892
6904
  | billing_address_id | string | no | |
6893
- | cart_id | string | no | |
6894
6905
  | id | string | no | |
6906
+ | cart_id | string | no | |
6895
6907
 
6896
6908
  ---
6897
6909
 
@@ -6902,12 +6914,12 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6902
6914
 
6903
6915
  | Properties | Type | Nullable | Description |
6904
6916
  | ---------- | ---- | -------- | ----------- |
6905
- | payment_identifier | string | no | |
6906
6917
  | id | string | no | |
6907
6918
  | aggregator_name | string | no | |
6919
+ | merchant_code | string | no | |
6920
+ | payment_identifier | string | no | |
6908
6921
  | payment_mode | string | no | |
6909
6922
  | address_id | string | no | |
6910
- | merchant_code | string | no | |
6911
6923
 
6912
6924
  ---
6913
6925
 
@@ -6918,11 +6930,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6918
6930
 
6919
6931
  | Properties | Type | Nullable | Description |
6920
6932
  | ---------- | ---- | -------- | ----------- |
6921
- | code | string | no | |
6933
+ | display_message_en | string | no | |
6934
+ | discount | number | no | |
6922
6935
  | valid | boolean | no | |
6936
+ | code | string | no | |
6923
6937
  | title | string | no | |
6924
- | discount | number | no | |
6925
- | display_message_en | string | no | |
6926
6938
 
6927
6939
  ---
6928
6940
 
@@ -6933,9 +6945,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6933
6945
 
6934
6946
  | Properties | Type | Nullable | Description |
6935
6947
  | ---------- | ---- | -------- | ----------- |
6936
- | message | string | no | |
6937
- | success | boolean | yes | |
6938
6948
  | coupon_validity | [CouponValidity](#CouponValidity) | no | |
6949
+ | success | boolean | yes | |
6950
+ | message | string | no | |
6939
6951
 
6940
6952
  ---
6941
6953
 
@@ -6946,16 +6958,16 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6946
6958
 
6947
6959
  | Properties | Type | Nullable | Description |
6948
6960
  | ---------- | ---- | -------- | ----------- |
6949
- | fulfillment_id | number | no | |
6950
- | shipments | number | no | |
6951
- | dp_options | string | no | |
6952
6961
  | box_type | string | no | |
6962
+ | promise | [ShipmentPromise](#ShipmentPromise) | no | |
6963
+ | dp_options | string | no | |
6953
6964
  | dp_id | string | no | |
6954
6965
  | items | [[CartProductInfo](#CartProductInfo)] | no | |
6955
- | order_type | string | no | |
6956
6966
  | shipment_type | string | no | |
6957
- | promise | [ShipmentPromise](#ShipmentPromise) | no | |
6958
6967
  | fulfillment_type | string | no | |
6968
+ | fulfillment_id | number | no | |
6969
+ | order_type | string | no | |
6970
+ | shipments | number | no | |
6959
6971
 
6960
6972
  ---
6961
6973
 
@@ -6966,25 +6978,37 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6966
6978
 
6967
6979
  | Properties | Type | Nullable | Description |
6968
6980
  | ---------- | ---- | -------- | ----------- |
6969
- | shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
6970
- | currency | [CartCurrency](#CartCurrency) | no | |
6971
- | gstin | string | no | |
6972
- | error | boolean | no | |
6973
- | checkout_mode | string | no | |
6974
6981
  | is_valid | boolean | no | |
6975
- | uid | string | no | |
6976
- | buy_now | boolean | no | |
6977
6982
  | message | string | no | |
6978
- | id | string | no | |
6979
6983
  | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
6980
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
6981
- | coupon_text | string | no | |
6982
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
6984
+ | uid | string | no | |
6985
+ | restrict_checkout | boolean | no | |
6983
6986
  | last_modified | string | no | |
6984
6987
  | comment | string | no | |
6985
- | restrict_checkout | boolean | no | |
6986
6988
  | delivery_charge_info | string | no | |
6989
+ | buy_now | boolean | no | |
6990
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
6991
+ | gstin | string | no | |
6992
+ | id | string | no | |
6987
6993
  | cart_id | number | no | |
6994
+ | currency | [CartCurrency](#CartCurrency) | no | |
6995
+ | error | boolean | no | |
6996
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
6997
+ | checkout_mode | string | no | |
6998
+ | shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
6999
+ | coupon_text | string | no | |
7000
+
7001
+ ---
7002
+
7003
+
7004
+
7005
+
7006
+ #### [CartCheckoutCustomMeta](#CartCheckoutCustomMeta)
7007
+
7008
+ | Properties | Type | Nullable | Description |
7009
+ | ---------- | ---- | -------- | ----------- |
7010
+ | value | string | yes | |
7011
+ | key | string | yes | |
6988
7012
 
6989
7013
  ---
6990
7014
 
@@ -6995,10 +7019,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6995
7019
 
6996
7020
  | Properties | Type | Nullable | Description |
6997
7021
  | ---------- | ---- | -------- | ----------- |
6998
- | last_name | string | yes | |
6999
7022
  | _id | string | yes | |
7000
- | user | string | yes | |
7001
7023
  | first_name | string | yes | |
7024
+ | employee_code | string | no | |
7025
+ | last_name | string | yes | |
7026
+ | user | string | yes | |
7002
7027
 
7003
7028
  ---
7004
7029
 
@@ -7009,21 +7034,22 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7009
7034
 
7010
7035
  | Properties | Type | Nullable | Description |
7011
7036
  | ---------- | ---- | -------- | ----------- |
7012
- | payment_identifier | string | no | |
7013
7037
  | ordering_store | number | no | |
7014
- | payment_params | string | no | |
7015
- | callback_url | string | no | |
7038
+ | custom_meta | [[CartCheckoutCustomMeta](#CartCheckoutCustomMeta)] | no | |
7039
+ | aggregator | string | no | |
7016
7040
  | extra_meta | string | no | |
7017
- | staff | [StaffCheckout](#StaffCheckout) | no | |
7041
+ | meta | string | no | |
7018
7042
  | billing_address_id | string | no | |
7019
- | aggregator | string | no | |
7020
- | payment_auto_confirm | boolean | no | |
7021
- | address_id | string | no | |
7043
+ | payment_params | string | no | |
7022
7044
  | delivery_address | string | no | |
7023
- | meta | string | no | |
7045
+ | callback_url | string | no | |
7046
+ | merchant_code | string | no | |
7047
+ | payment_identifier | string | no | |
7024
7048
  | billing_address | string | no | |
7025
7049
  | payment_mode | string | yes | |
7026
- | merchant_code | string | no | |
7050
+ | staff | [StaffCheckout](#StaffCheckout) | no | |
7051
+ | payment_auto_confirm | boolean | no | |
7052
+ | address_id | string | no | |
7027
7053
 
7028
7054
  ---
7029
7055
 
@@ -7034,35 +7060,35 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7034
7060
 
7035
7061
  | Properties | Type | Nullable | Description |
7036
7062
  | ---------- | ---- | -------- | ----------- |
7037
- | currency | [CartCurrency](#CartCurrency) | no | |
7038
- | store_code | string | no | |
7039
- | store_emps | [string] | no | |
7040
- | user_type | string | no | |
7041
- | success | boolean | no | |
7042
- | error_message | string | no | |
7043
7063
  | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7044
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
7045
- | comment | string | no | |
7064
+ | uid | string | no | |
7065
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
7046
7066
  | delivery_charge_info | string | no | |
7047
- | cart_id | number | no | |
7067
+ | delivery_charge_order_value | number | no | |
7068
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
7048
7069
  | cod_charges | number | no | |
7070
+ | id | string | no | |
7071
+ | cart_id | number | no | |
7072
+ | cod_message | string | no | |
7073
+ | error_message | string | no | |
7074
+ | currency | [CartCurrency](#CartCurrency) | no | |
7075
+ | store_emps | [string] | no | |
7049
7076
  | delivery_charges | number | no | |
7050
- | gstin | string | no | |
7051
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
7052
- | checkout_mode | string | no | |
7053
7077
  | is_valid | boolean | no | |
7054
- | order_id | string | no | |
7055
- | uid | string | no | |
7056
- | buy_now | boolean | no | |
7057
7078
  | message | string | no | |
7058
- | cod_message | string | no | |
7059
- | id | string | no | |
7060
- | delivery_charge_order_value | number | no | |
7061
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7062
7079
  | coupon_text | string | no | |
7063
- | last_modified | string | no | |
7064
7080
  | restrict_checkout | boolean | no | |
7081
+ | last_modified | string | no | |
7082
+ | comment | string | no | |
7083
+ | success | boolean | no | |
7084
+ | buy_now | boolean | no | |
7085
+ | gstin | string | no | |
7086
+ | order_id | string | no | |
7065
7087
  | cod_available | boolean | no | |
7088
+ | checkout_mode | string | no | |
7089
+ | user_type | string | no | |
7090
+ | store_code | string | no | |
7091
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7066
7092
 
7067
7093
  ---
7068
7094
 
@@ -7074,13 +7100,13 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7074
7100
  | Properties | Type | Nullable | Description |
7075
7101
  | ---------- | ---- | -------- | ----------- |
7076
7102
  | message | string | no | |
7077
- | cart | [CheckCart](#CheckCart) | no | |
7103
+ | order_id | string | no | |
7078
7104
  | data | string | no | |
7079
7105
  | callback_url | string | no | |
7080
7106
  | app_intercept_url | string | no | |
7081
7107
  | payment_confirm_url | string | no | |
7082
- | order_id | string | no | |
7083
7108
  | success | boolean | no | |
7109
+ | cart | [CheckCart](#CheckCart) | no | |
7084
7110
 
7085
7111
  ---
7086
7112
 
@@ -7092,9 +7118,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7092
7118
  | Properties | Type | Nullable | Description |
7093
7119
  | ---------- | ---- | -------- | ----------- |
7094
7120
  | comment | string | no | |
7095
- | gstin | string | no | |
7096
7121
  | checkout_mode | string | no | |
7097
7122
  | pick_up_customer_details | string | no | Customer contact details for customer pickup at store |
7123
+ | gstin | string | no | |
7098
7124
 
7099
7125
  ---
7100
7126
 
@@ -7151,11 +7177,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7151
7177
 
7152
7178
  | Properties | Type | Nullable | Description |
7153
7179
  | ---------- | ---- | -------- | ----------- |
7154
- | user | string | no | User details of who generated share link |
7155
- | created_on | string | no | |
7156
- | source | string | no | Share link device and other source information |
7157
- | token | string | no | Short link id |
7158
7180
  | meta | string | no | Meta data sent while generating share cart link |
7181
+ | token | string | no | Short link id |
7182
+ | source | string | no | Share link device and other source information |
7183
+ | created_on | string | no | |
7184
+ | user | string | no | User details of who generated share link |
7159
7185
 
7160
7186
  ---
7161
7187
 
@@ -7166,25 +7192,25 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7166
7192
 
7167
7193
  | Properties | Type | Nullable | Description |
7168
7194
  | ---------- | ---- | -------- | ----------- |
7169
- | currency | [CartCurrency](#CartCurrency) | no | |
7170
7195
  | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7171
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
7172
- | comment | string | no | |
7196
+ | uid | string | no | |
7197
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
7173
7198
  | delivery_charge_info | string | no | |
7199
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
7200
+ | id | string | no | |
7174
7201
  | cart_id | number | no | |
7175
- | shared_cart_details | [SharedCartDetails](#SharedCartDetails) | no | |
7176
- | gstin | string | no | |
7177
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
7178
- | checkout_mode | string | no | |
7202
+ | currency | [CartCurrency](#CartCurrency) | no | |
7179
7203
  | is_valid | boolean | no | |
7180
- | uid | string | no | |
7181
- | buy_now | boolean | no | |
7182
7204
  | message | string | no | |
7183
- | id | string | no | |
7184
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7185
7205
  | coupon_text | string | no | |
7186
- | last_modified | string | no | |
7187
7206
  | restrict_checkout | boolean | no | |
7207
+ | last_modified | string | no | |
7208
+ | comment | string | no | |
7209
+ | shared_cart_details | [SharedCartDetails](#SharedCartDetails) | no | |
7210
+ | buy_now | boolean | no | |
7211
+ | gstin | string | no | |
7212
+ | checkout_mode | string | no | |
7213
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7188
7214
 
7189
7215
  ---
7190
7216
 
@@ -7207,10 +7233,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7207
7233
 
7208
7234
  | Properties | Type | Nullable | Description |
7209
7235
  | ---------- | ---- | -------- | ----------- |
7210
- | description | string | no | Offer details including T&C |
7211
- | id | string | no | Promotion id |
7212
7236
  | offer_text | string | no | Offer title |
7213
7237
  | promotion_group | string | no | Group of promotion belongs to |
7238
+ | id | string | no | Promotion id |
7239
+ | description | string | no | Offer details including T&C |
7214
7240
  | valid_till | string | no | Datetime ISOString for promotion end date |
7215
7241
 
7216
7242
  ---
@@ -7233,8 +7259,20 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7233
7259
 
7234
7260
  | Properties | Type | Nullable | Description |
7235
7261
  | ---------- | ---- | -------- | ----------- |
7236
- | message | string | no | |
7237
7262
  | success | boolean | no | |
7263
+ | message | string | no | |
7264
+
7265
+ ---
7266
+
7267
+
7268
+
7269
+
7270
+ #### [CurrencyInfo](#CurrencyInfo)
7271
+
7272
+ | Properties | Type | Nullable | Description |
7273
+ | ---------- | ---- | -------- | ----------- |
7274
+ | code | string | no | |
7275
+ | symbol | string | no | |
7238
7276
 
7239
7277
  ---
7240
7278
 
@@ -7245,11 +7283,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7245
7283
 
7246
7284
  | Properties | Type | Nullable | Description |
7247
7285
  | ---------- | ---- | -------- | ----------- |
7248
- | currency_symbol | string | no | Currency symbol for currency |
7249
- | marked | number | no | Original price of product |
7286
+ | currency_code | string | no | Currency code for all amounts |
7250
7287
  | offer_price | number | no | Discounted per unit price for current offer object |
7288
+ | marked | number | no | Original price of product |
7289
+ | currency_symbol | string | no | Currency symbol for currency |
7251
7290
  | effective | number | no | Current per unit price of product after existing deductions |
7252
- | currency_code | string | no | Currency code for all amounts |
7253
7291
 
7254
7292
  ---
7255
7293
 
@@ -7260,11 +7298,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7260
7298
 
7261
7299
  | Properties | Type | Nullable | Description |
7262
7300
  | ---------- | ---- | -------- | ----------- |
7263
- | margin | number | no | Percentage value of discount |
7264
- | max_quantity | number | no | Minimum quantity upto which offer is applicable. If not present that offer is applicable on all quantities |
7265
- | min_quantity | number | no | Minimum quantity from which offer is applicable |
7266
7301
  | price | [LadderPrice](#LadderPrice) | no | |
7302
+ | min_quantity | number | no | Minimum quantity from which offer is applicable |
7303
+ | max_quantity | number | no | Minimum quantity upto which offer is applicable. If not present that offer is applicable on all quantities |
7267
7304
  | type | string | no | Offer type |
7305
+ | margin | number | no | Percentage value of discount |
7268
7306
 
7269
7307
  ---
7270
7308
 
@@ -7275,11 +7313,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7275
7313
 
7276
7314
  | Properties | Type | Nullable | Description |
7277
7315
  | ---------- | ---- | -------- | ----------- |
7278
- | description | string | no | Offer details including T&C |
7279
- | id | string | no | Promotion id |
7280
7316
  | offer_text | string | no | Offer title |
7281
7317
  | promotion_group | string | no | Group of promotion belongs to |
7318
+ | id | string | no | Promotion id |
7282
7319
  | offer_prices | [[LadderOfferItem](#LadderOfferItem)] | no | |
7320
+ | description | string | no | Offer details including T&C |
7283
7321
  | valid_till | string | no | Datetime ISOString for promotion end date |
7284
7322
 
7285
7323
  ---
@@ -7287,24 +7325,12 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7287
7325
 
7288
7326
 
7289
7327
 
7290
- #### [CurrencyInfo](#CurrencyInfo)
7291
-
7292
- | Properties | Type | Nullable | Description |
7293
- | ---------- | ---- | -------- | ----------- |
7294
- | symbol | string | no | |
7295
- | code | string | no | |
7296
-
7297
- ---
7298
-
7299
-
7300
-
7301
-
7302
7328
  #### [LadderPriceOffers](#LadderPriceOffers)
7303
7329
 
7304
7330
  | Properties | Type | Nullable | Description |
7305
7331
  | ---------- | ---- | -------- | ----------- |
7306
- | available_offers | [[LadderPriceOffer](#LadderPriceOffer)] | no | |
7307
7332
  | currency | [CurrencyInfo](#CurrencyInfo) | no | |
7333
+ | available_offers | [[LadderPriceOffer](#LadderPriceOffer)] | no | |
7308
7334
 
7309
7335
  ---
7310
7336