@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
@@ -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
 
@@ -2883,6 +2892,8 @@ Success. Returns an Address object containing a list of address saved in the acc
2883
2892
  "meta": {},
2884
2893
  "user_id": "8b526f521bb14a2593a8b9e3ce8c76b3",
2885
2894
  "country_code": "IND",
2895
+ "country_phone_code": "91",
2896
+ "country_iso_code": "IND",
2886
2897
  "phone": 9915347757,
2887
2898
  "geo_location": {},
2888
2899
  "country": "India",
@@ -3043,6 +3054,8 @@ Success. Returns an Address object containing a list of address saved in the acc
3043
3054
  "meta": {},
3044
3055
  "user_id": "8b526f521bb14a2593a8b9e3ce8c76b3",
3045
3056
  "country_code": "IND",
3057
+ "country_phone_code": "91",
3058
+ "country_iso_code": "IND",
3046
3059
  "phone": 9915347757,
3047
3060
  "geo_location": {},
3048
3061
  "country": "India",
@@ -6134,155 +6147,147 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6134
6147
 
6135
6148
 
6136
6149
 
6137
- #### [DisplayBreakup](#DisplayBreakup)
6150
+ #### [PaymentSelectionLock](#PaymentSelectionLock)
6138
6151
 
6139
6152
  | Properties | Type | Nullable | Description |
6140
6153
  | ---------- | ---- | -------- | ----------- |
6141
- | display | string | no | |
6142
- | value | number | no | |
6143
- | currency_code | string | no | |
6144
- | currency_symbol | string | no | |
6145
- | message | [string] | no | |
6146
- | key | string | no | |
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
- #### [CouponBreakup](#CouponBreakup)
6163
+ #### [CartCurrency](#CartCurrency)
6154
6164
 
6155
6165
  | Properties | Type | Nullable | Description |
6156
6166
  | ---------- | ---- | -------- | ----------- |
6157
- | type | string | no | |
6158
- | code | string | no | |
6159
- | uid | string | no | |
6160
- | is_applied | boolean | no | |
6161
- | value | number | no | |
6162
- | message | string | no | |
6167
+ | code | string | no | Currency code defined by ISO 4217:2015 |
6168
+ | symbol | string | no | |
6163
6169
 
6164
6170
  ---
6165
6171
 
6166
6172
 
6167
6173
 
6168
6174
 
6169
- #### [RawBreakup](#RawBreakup)
6175
+ #### [ProductImage](#ProductImage)
6170
6176
 
6171
6177
  | Properties | Type | Nullable | Description |
6172
6178
  | ---------- | ---- | -------- | ----------- |
6173
- | cod_charge | number | no | |
6174
- | convenience_fee | number | no | |
6175
- | subtotal | number | no | |
6176
- | you_saved | number | no | |
6177
- | total | number | no | |
6178
- | fynd_cash | number | no | |
6179
- | delivery_charge | number | no | |
6180
- | coupon | number | no | |
6181
- | mrp_total | number | no | |
6182
- | gst_charges | number | no | |
6183
- | discount | number | no | |
6184
- | vog | number | no | |
6179
+ | aspect_ratio | string | no | |
6180
+ | secure_url | string | no | |
6181
+ | url | string | no | |
6185
6182
 
6186
6183
  ---
6187
6184
 
6188
6185
 
6189
6186
 
6190
6187
 
6191
- #### [LoyaltyPoints](#LoyaltyPoints)
6188
+ #### [ActionQuery](#ActionQuery)
6192
6189
 
6193
6190
  | Properties | Type | Nullable | Description |
6194
6191
  | ---------- | ---- | -------- | ----------- |
6195
- | total | number | no | |
6196
- | applicable | number | no | |
6197
- | is_applied | boolean | no | |
6198
- | description | string | no | |
6192
+ | product_slug | [string] | no | Contains list of product slug |
6199
6193
 
6200
6194
  ---
6201
6195
 
6202
6196
 
6203
6197
 
6204
6198
 
6205
- #### [CartBreakup](#CartBreakup)
6199
+ #### [ProductAction](#ProductAction)
6206
6200
 
6207
6201
  | Properties | Type | Nullable | Description |
6208
6202
  | ---------- | ---- | -------- | ----------- |
6209
- | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
6210
- | coupon | [CouponBreakup](#CouponBreakup) | no | |
6211
- | raw | [RawBreakup](#RawBreakup) | no | |
6212
- | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
6203
+ | url | string | no | |
6204
+ | type | string | no | |
6205
+ | query | [ActionQuery](#ActionQuery) | no | |
6213
6206
 
6214
6207
  ---
6215
6208
 
6216
6209
 
6217
6210
 
6218
6211
 
6219
- #### [PromiseFormatted](#PromiseFormatted)
6212
+ #### [BaseInfo](#BaseInfo)
6220
6213
 
6221
6214
  | Properties | Type | Nullable | Description |
6222
6215
  | ---------- | ---- | -------- | ----------- |
6223
- | min | string | no | |
6224
- | max | string | no | |
6216
+ | uid | number | no | |
6217
+ | name | string | no | |
6225
6218
 
6226
6219
  ---
6227
6220
 
6228
6221
 
6229
6222
 
6230
6223
 
6231
- #### [PromiseTimestamp](#PromiseTimestamp)
6224
+ #### [CategoryInfo](#CategoryInfo)
6232
6225
 
6233
6226
  | Properties | Type | Nullable | Description |
6234
6227
  | ---------- | ---- | -------- | ----------- |
6235
- | min | number | no | |
6236
- | max | number | no | |
6228
+ | uid | number | no | Product Category Id |
6229
+ | name | string | no | |
6237
6230
 
6238
6231
  ---
6239
6232
 
6240
6233
 
6241
6234
 
6242
6235
 
6243
- #### [ShipmentPromise](#ShipmentPromise)
6236
+ #### [CartProduct](#CartProduct)
6244
6237
 
6245
6238
  | Properties | Type | Nullable | Description |
6246
6239
  | ---------- | ---- | -------- | ----------- |
6247
- | formatted | [PromiseFormatted](#PromiseFormatted) | no | |
6248
- | timestamp | [PromiseTimestamp](#PromiseTimestamp) | 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 | |
6249
6248
 
6250
6249
  ---
6251
6250
 
6252
6251
 
6253
6252
 
6254
6253
 
6255
- #### [CartCurrency](#CartCurrency)
6254
+ #### [ProductPrice](#ProductPrice)
6256
6255
 
6257
6256
  | Properties | Type | Nullable | Description |
6258
6257
  | ---------- | ---- | -------- | ----------- |
6259
- | symbol | string | no | |
6260
- | code | string | no | Currency code defined by ISO 4217:2015 |
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 | |
6261
6264
 
6262
6265
  ---
6263
6266
 
6264
6267
 
6265
6268
 
6266
6269
 
6267
- #### [PaymentSelectionLock](#PaymentSelectionLock)
6270
+ #### [ProductPriceInfo](#ProductPriceInfo)
6268
6271
 
6269
6272
  | Properties | Type | Nullable | Description |
6270
6273
  | ---------- | ---- | -------- | ----------- |
6271
- | payment_identifier | string | no | |
6272
- | default_options | string | no | |
6273
- | enabled | boolean | no | |
6274
+ | converted | [ProductPrice](#ProductPrice) | no | |
6275
+ | base | [ProductPrice](#ProductPrice) | no | |
6274
6276
 
6275
6277
  ---
6276
6278
 
6277
6279
 
6278
6280
 
6279
6281
 
6280
- #### [BaseInfo](#BaseInfo)
6282
+ #### [ProductAvailability](#ProductAvailability)
6281
6283
 
6282
6284
  | Properties | Type | Nullable | Description |
6283
6285
  | ---------- | ---- | -------- | ----------- |
6284
- | uid | number | no | |
6285
- | name | string | 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 | |
6286
6291
 
6287
6292
  ---
6288
6293
 
@@ -6294,9 +6299,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6294
6299
  | Properties | Type | Nullable | Description |
6295
6300
  | ---------- | ---- | -------- | ----------- |
6296
6301
  | marked | number | no | |
6297
- | currency_code | string | no | |
6298
6302
  | effective | number | no | |
6299
6303
  | currency_symbol | string | no | |
6304
+ | currency_code | string | no | |
6300
6305
 
6301
6306
  ---
6302
6307
 
@@ -6319,203 +6324,212 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6319
6324
 
6320
6325
  | Properties | Type | Nullable | Description |
6321
6326
  | ---------- | ---- | -------- | ----------- |
6322
- | type | string | no | |
6327
+ | parent_item_identifiers | string | no | |
6328
+ | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
6323
6329
  | extra_meta | string | no | |
6324
- | product_group_tags | [string] | no | |
6325
- | seller | [BaseInfo](#BaseInfo) | no | |
6326
6330
  | uid | string | no | |
6327
- | store | [BaseInfo](#BaseInfo) | no | |
6328
- | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
6329
6331
  | size | string | no | |
6330
- | parent_item_identifiers | string | no | |
6332
+ | type | string | no | |
6333
+ | _custom_json | string | no | |
6334
+ | product_group_tags | [string] | no | |
6331
6335
  | quantity | number | no | |
6336
+ | seller | [BaseInfo](#BaseInfo) | no | |
6337
+ | store | [BaseInfo](#BaseInfo) | no | |
6332
6338
 
6333
6339
  ---
6334
6340
 
6335
6341
 
6336
6342
 
6337
6343
 
6338
- #### [PromoMeta](#PromoMeta)
6344
+ #### [CartProductIdentifer](#CartProductIdentifer)
6339
6345
 
6340
6346
  | Properties | Type | Nullable | Description |
6341
6347
  | ---------- | ---- | -------- | ----------- |
6342
- | message | string | no | |
6348
+ | identifier | string | no | Article idenfier generated by cart |
6343
6349
 
6344
6350
  ---
6345
6351
 
6346
6352
 
6347
6353
 
6348
6354
 
6349
- #### [CartProductIdentifer](#CartProductIdentifer)
6355
+ #### [PromoMeta](#PromoMeta)
6350
6356
 
6351
6357
  | Properties | Type | Nullable | Description |
6352
6358
  | ---------- | ---- | -------- | ----------- |
6353
- | identifier | string | no | Article idenfier generated by cart |
6359
+ | message | string | no | |
6354
6360
 
6355
6361
  ---
6356
6362
 
6357
6363
 
6358
6364
 
6359
6365
 
6360
- #### [ProductPrice](#ProductPrice)
6366
+ #### [Ownership](#Ownership)
6361
6367
 
6362
6368
  | Properties | Type | Nullable | Description |
6363
6369
  | ---------- | ---- | -------- | ----------- |
6364
- | selling | number | no | |
6365
- | add_on | number | no | |
6366
- | marked | number | no | |
6367
- | currency_code | string | no | |
6368
- | currency_symbol | string | no | |
6369
- | effective | number | no | |
6370
+ | payable_by | string | no | promo amount bearable party |
6371
+ | payable_category | string | no | promo amount payable category |
6370
6372
 
6371
6373
  ---
6372
6374
 
6373
6375
 
6374
6376
 
6375
6377
 
6376
- #### [ProductPriceInfo](#ProductPriceInfo)
6378
+ #### [AppliedPromotion](#AppliedPromotion)
6377
6379
 
6378
6380
  | Properties | Type | Nullable | Description |
6379
6381
  | ---------- | ---- | -------- | ----------- |
6380
- | converted | [ProductPrice](#ProductPrice) | no | |
6381
- | base | [ProductPrice](#ProductPrice) | 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 |
6382
6389
 
6383
6390
  ---
6384
6391
 
6385
6392
 
6386
6393
 
6387
6394
 
6388
- #### [ProductAvailability](#ProductAvailability)
6395
+ #### [CartProductInfo](#CartProductInfo)
6389
6396
 
6390
6397
  | Properties | Type | Nullable | Description |
6391
6398
  | ---------- | ---- | -------- | ----------- |
6392
- | other_store_quantity | number | no | |
6393
- | sizes | [string] | no | |
6394
- | is_valid | boolean | no | |
6395
- | deliverable | boolean | no | |
6396
- | out_of_stock | boolean | 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 | |
6397
6415
 
6398
6416
  ---
6399
6417
 
6400
6418
 
6401
6419
 
6402
6420
 
6403
- #### [Ownership](#Ownership)
6421
+ #### [PromiseTimestamp](#PromiseTimestamp)
6404
6422
 
6405
6423
  | Properties | Type | Nullable | Description |
6406
6424
  | ---------- | ---- | -------- | ----------- |
6407
- | payable_by | string | no | promo amount bearable party |
6408
- | payable_category | string | no | promo amount payable category |
6425
+ | max | number | no | |
6426
+ | min | number | no | |
6409
6427
 
6410
6428
  ---
6411
6429
 
6412
6430
 
6413
6431
 
6414
6432
 
6415
- #### [AppliedPromotion](#AppliedPromotion)
6433
+ #### [PromiseFormatted](#PromiseFormatted)
6416
6434
 
6417
6435
  | Properties | Type | Nullable | Description |
6418
6436
  | ---------- | ---- | -------- | ----------- |
6419
- | amount | number | no | Per unit discount amount applied with current promotion |
6420
- | promo_id | string | no | Promotion id |
6421
- | mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
6422
- | offer_text | string | no | Offer text of current promotion |
6423
- | article_quantity | number | no | Quantity of article on which promotion is applicable |
6424
- | ownership | [Ownership](#Ownership) | no | Ownership of promotion |
6425
- | promotion_type | string | no | Promotion type of current promotion |
6437
+ | max | string | no | |
6438
+ | min | string | no | |
6426
6439
 
6427
6440
  ---
6428
6441
 
6429
6442
 
6430
6443
 
6431
6444
 
6432
- #### [CategoryInfo](#CategoryInfo)
6445
+ #### [ShipmentPromise](#ShipmentPromise)
6433
6446
 
6434
6447
  | Properties | Type | Nullable | Description |
6435
6448
  | ---------- | ---- | -------- | ----------- |
6436
- | uid | number | no | Product Category Id |
6437
- | name | string | no | |
6449
+ | timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
6450
+ | formatted | [PromiseFormatted](#PromiseFormatted) | no | |
6438
6451
 
6439
6452
  ---
6440
6453
 
6441
6454
 
6442
6455
 
6443
6456
 
6444
- #### [ProductImage](#ProductImage)
6457
+ #### [RawBreakup](#RawBreakup)
6445
6458
 
6446
6459
  | Properties | Type | Nullable | Description |
6447
6460
  | ---------- | ---- | -------- | ----------- |
6448
- | secure_url | string | no | |
6449
- | aspect_ratio | string | no | |
6450
- | url | string | no | |
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 | |
6451
6473
 
6452
6474
  ---
6453
6475
 
6454
6476
 
6455
6477
 
6456
6478
 
6457
- #### [ActionQuery](#ActionQuery)
6479
+ #### [LoyaltyPoints](#LoyaltyPoints)
6458
6480
 
6459
6481
  | Properties | Type | Nullable | Description |
6460
6482
  | ---------- | ---- | -------- | ----------- |
6461
- | product_slug | [string] | no | Contains list of product slug |
6483
+ | is_applied | boolean | no | |
6484
+ | description | string | no | |
6485
+ | applicable | number | no | |
6486
+ | total | number | no | |
6462
6487
 
6463
6488
  ---
6464
6489
 
6465
6490
 
6466
6491
 
6467
6492
 
6468
- #### [ProductAction](#ProductAction)
6493
+ #### [DisplayBreakup](#DisplayBreakup)
6469
6494
 
6470
6495
  | Properties | Type | Nullable | Description |
6471
6496
  | ---------- | ---- | -------- | ----------- |
6472
- | type | string | no | |
6473
- | url | string | no | |
6474
- | query | [ActionQuery](#ActionQuery) | no | |
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 | |
6475
6503
 
6476
6504
  ---
6477
6505
 
6478
6506
 
6479
6507
 
6480
6508
 
6481
- #### [CartProduct](#CartProduct)
6509
+ #### [CouponBreakup](#CouponBreakup)
6482
6510
 
6483
6511
  | Properties | Type | Nullable | Description |
6484
6512
  | ---------- | ---- | -------- | ----------- |
6513
+ | is_applied | boolean | no | |
6514
+ | message | string | no | |
6515
+ | uid | string | no | |
6516
+ | value | number | no | |
6517
+ | code | string | no | |
6485
6518
  | type | string | no | |
6486
- | categories | [[CategoryInfo](#CategoryInfo)] | no | |
6487
- | name | string | no | |
6488
- | uid | number | no | |
6489
- | brand | [BaseInfo](#BaseInfo) | no | |
6490
- | images | [[ProductImage](#ProductImage)] | no | |
6491
- | slug | string | no | Unique product url name generated via product name and other meta data |
6492
- | action | [ProductAction](#ProductAction) | no | |
6493
6519
 
6494
6520
  ---
6495
6521
 
6496
6522
 
6497
6523
 
6498
6524
 
6499
- #### [CartProductInfo](#CartProductInfo)
6525
+ #### [CartBreakup](#CartBreakup)
6500
6526
 
6501
6527
  | Properties | Type | Nullable | Description |
6502
6528
  | ---------- | ---- | -------- | ----------- |
6503
- | article | [ProductArticle](#ProductArticle) | no | |
6504
- | promo_meta | [PromoMeta](#PromoMeta) | no | |
6505
- | bulk_offer | string | no | |
6506
- | coupon_message | string | no | |
6507
- | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
6508
- | price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
6509
- | availability | [ProductAvailability](#ProductAvailability) | no | |
6510
- | price | [ProductPriceInfo](#ProductPriceInfo) | no | |
6511
- | message | string | no | |
6512
- | is_set | boolean | no | |
6513
- | promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
6514
- | product | [CartProduct](#CartProduct) | no | |
6515
- | discount | string | no | |
6516
- | key | string | no | |
6517
- | parent_item_identifiers | string | no | |
6518
- | quantity | number | no | |
6529
+ | raw | [RawBreakup](#RawBreakup) | no | |
6530
+ | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
6531
+ | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
6532
+ | coupon | [CouponBreakup](#CouponBreakup) | no | |
6519
6533
 
6520
6534
  ---
6521
6535
 
@@ -6526,22 +6540,22 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6526
6540
 
6527
6541
  | Properties | Type | Nullable | Description |
6528
6542
  | ---------- | ---- | -------- | ----------- |
6529
- | delivery_charge_info | string | no | |
6530
- | buy_now | boolean | no | |
6531
- | coupon_text | string | no | |
6532
- | restrict_checkout | boolean | no | |
6533
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
6534
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
6535
6543
  | is_valid | boolean | no | |
6536
- | currency | [CartCurrency](#CartCurrency) | no | |
6544
+ | message | string | no | |
6545
+ | id | string | no | |
6537
6546
  | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
6547
+ | restrict_checkout | boolean | no | |
6538
6548
  | last_modified | string | no | |
6539
- | checkout_mode | string | no | |
6549
+ | currency | [CartCurrency](#CartCurrency) | no | |
6550
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
6540
6551
  | comment | string | no | |
6541
- | id | string | no | |
6552
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
6553
+ | delivery_charge_info | string | no | |
6554
+ | checkout_mode | string | no | |
6555
+ | buy_now | boolean | no | |
6556
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
6542
6557
  | gstin | string | no | |
6543
- | message | string | no | |
6544
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
6558
+ | coupon_text | string | no | |
6545
6559
 
6546
6560
  ---
6547
6561
 
@@ -6552,18 +6566,19 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6552
6566
 
6553
6567
  | Properties | Type | Nullable | Description |
6554
6568
  | ---------- | ---- | -------- | ----------- |
6569
+ | parent_item_identifiers | string | no | |
6570
+ | store_id | number | no | |
6571
+ | item_size | string | no | |
6555
6572
  | extra_meta | string | no | |
6556
- | pos | boolean | no | |
6557
- | display | string | no | |
6558
- | product_group_tags | [string] | no | |
6559
- | item_id | number | no | |
6560
6573
  | article_assignment | string | no | |
6574
+ | item_id | number | no | |
6561
6575
  | seller_id | number | no | |
6562
- | store_id | number | no | |
6576
+ | display | string | no | |
6577
+ | _custom_json | string | no | |
6578
+ | product_group_tags | [string] | no | |
6563
6579
  | article_id | string | no | |
6564
- | item_size | string | no | |
6565
- | parent_item_identifiers | string | no | |
6566
6580
  | quantity | number | no | |
6581
+ | pos | boolean | no | |
6567
6582
 
6568
6583
  ---
6569
6584
 
@@ -6586,9 +6601,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6586
6601
  | Properties | Type | Nullable | Description |
6587
6602
  | ---------- | ---- | -------- | ----------- |
6588
6603
  | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
6589
- | cart | [CartDetailResponse](#CartDetailResponse) | no | |
6590
- | message | string | no | |
6591
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 | |
6592
6607
 
6593
6608
  ---
6594
6609
 
@@ -6599,13 +6614,14 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6599
6614
 
6600
6615
  | Properties | Type | Nullable | Description |
6601
6616
  | ---------- | ---- | -------- | ----------- |
6617
+ | parent_item_identifiers | string | no | |
6618
+ | item_size | string | no | |
6602
6619
  | extra_meta | string | no | |
6603
- | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
6604
6620
  | item_id | number | no | |
6621
+ | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
6622
+ | _custom_json | string | no | |
6605
6623
  | item_index | number | no | |
6606
6624
  | article_id | string | no | |
6607
- | item_size | string | no | |
6608
- | parent_item_identifiers | string | no | |
6609
6625
  | quantity | number | no | |
6610
6626
 
6611
6627
  ---
@@ -6630,8 +6646,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6630
6646
  | Properties | Type | Nullable | Description |
6631
6647
  | ---------- | ---- | -------- | ----------- |
6632
6648
  | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
6633
- | cart | [CartDetailResponse](#CartDetailResponse) | no | |
6634
6649
  | message | string | no | |
6650
+ | cart | [CartDetailResponse](#CartDetailResponse) | no | |
6635
6651
 
6636
6652
  ---
6637
6653
 
@@ -6652,12 +6668,12 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6652
6668
  #### [PageCoupon](#PageCoupon)
6653
6669
 
6654
6670
  | Properties | Type | Nullable | Description |
6655
- | ---------- | ---- | -------- | ----------- |
6656
- | has_next | boolean | no | |
6657
- | total | number | no | |
6671
+ | ---------- | ---- | -------- | ----------- |
6658
6672
  | has_previous | boolean | no | |
6659
- | total_item_count | number | no | |
6660
6673
  | current | number | no | |
6674
+ | total | number | no | |
6675
+ | total_item_count | number | no | |
6676
+ | has_next | boolean | no | |
6661
6677
 
6662
6678
  ---
6663
6679
 
@@ -6668,15 +6684,15 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6668
6684
 
6669
6685
  | Properties | Type | Nullable | Description |
6670
6686
  | ---------- | ---- | -------- | ----------- |
6687
+ | is_applied | boolean | no | |
6688
+ | message | string | no | |
6671
6689
  | max_discount_value | number | no | |
6672
6690
  | sub_title | string | no | |
6673
- | expires_on | string | no | |
6691
+ | is_applicable | boolean | no | |
6674
6692
  | coupon_code | string | no | |
6675
6693
  | minimum_cart_value | number | no | |
6676
- | is_applicable | boolean | no | |
6677
- | is_applied | boolean | no | |
6678
6694
  | coupon_value | number | no | |
6679
- | message | string | no | |
6695
+ | expires_on | string | no | |
6680
6696
  | title | string | no | |
6681
6697
 
6682
6698
  ---
@@ -6723,11 +6739,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6723
6739
 
6724
6740
  | Properties | Type | Nullable | Description |
6725
6741
  | ---------- | ---- | -------- | ----------- |
6726
- | marked | number | no | Original price of product |
6727
6742
  | currency_code | string | no | Currency code for all amounts |
6743
+ | marked | number | no | Original price of product |
6728
6744
  | currency_symbol | string | no | Currency symbol for currency |
6729
- | bulk_effective | number | no | Discounted per unit price for current offer object |
6730
6745
  | effective | number | no | Current per unit price of product after existing deductions |
6746
+ | bulk_effective | number | no | Discounted per unit price for current offer object |
6731
6747
 
6732
6748
  ---
6733
6749
 
@@ -6738,13 +6754,13 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6738
6754
 
6739
6755
  | Properties | Type | Nullable | Description |
6740
6756
  | ---------- | ---- | -------- | ----------- |
6741
- | type | string | no | Offer type |
6742
- | auto_applied | boolean | no | Whether offer discount is auto applied in cart |
6743
6757
  | price | [OfferPrice](#OfferPrice) | no | |
6744
- | total | number | no | Total price of offer quantity with discount |
6758
+ | type | string | no | Offer type |
6759
+ | margin | number | no | Percentage value of discount |
6745
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 |
6746
6762
  | quantity | number | no | Quantity on which offer is applicable |
6747
- | margin | number | no | Percentage value of discount |
6763
+ | auto_applied | boolean | no | Whether offer discount is auto applied in cart |
6748
6764
 
6749
6765
  ---
6750
6766
 
@@ -6789,8 +6805,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6789
6805
 
6790
6806
  | Properties | Type | Nullable | Description |
6791
6807
  | ---------- | ---- | -------- | ----------- |
6792
- | longitude | number | no | |
6793
6808
  | latitude | number | no | |
6809
+ | longitude | number | no | |
6794
6810
 
6795
6811
  ---
6796
6812
 
@@ -6801,28 +6817,30 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6801
6817
 
6802
6818
  | Properties | Type | Nullable | Description |
6803
6819
  | ---------- | ---- | -------- | ----------- |
6820
+ | country_phone_code | string | no | |
6821
+ | google_map_point | string | no | |
6822
+ | area | string | no | |
6823
+ | area_code_slug | string | no | |
6804
6824
  | address | string | no | |
6805
- | state | string | no | |
6806
- | name | string | no | |
6825
+ | city | string | no | |
6807
6826
  | id | string | no | |
6808
- | tags | [string] | no | |
6809
- | area | string | no | |
6810
- | google_map_point | string | no | |
6811
- | meta | string | no | |
6812
- | checkout_mode | string | no | |
6813
- | user_id | string | no | |
6814
- | email | string | no | |
6815
6827
  | is_active | boolean | no | |
6816
- | geo_location | [GeoLocation](#GeoLocation) | no | |
6817
- | address_type | string | no | |
6828
+ | country_iso_code | string | no | |
6818
6829
  | area_code | string | no | |
6819
- | country_code | string | no | |
6820
- | city | string | no | |
6821
- | area_code_slug | string | no | |
6822
- | phone | string | no | |
6830
+ | user_id | string | no | |
6831
+ | name | string | no | |
6823
6832
  | landmark | string | no | |
6833
+ | geo_location | [GeoLocation](#GeoLocation) | no | |
6824
6834
  | country | string | no | |
6835
+ | country_code | string | no | |
6836
+ | email | string | no | |
6837
+ | state | string | no | |
6838
+ | meta | string | no | |
6825
6839
  | is_default_address | boolean | no | |
6840
+ | phone | string | no | |
6841
+ | checkout_mode | string | no | |
6842
+ | tags | [string] | no | |
6843
+ | address_type | string | no | |
6826
6844
 
6827
6845
  ---
6828
6846
 
@@ -6844,9 +6862,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6844
6862
 
6845
6863
  | Properties | Type | Nullable | Description |
6846
6864
  | ---------- | ---- | -------- | ----------- |
6847
- | success | boolean | no | |
6848
6865
  | id | string | no | |
6849
6866
  | is_default_address | boolean | no | |
6867
+ | success | boolean | no | |
6850
6868
 
6851
6869
  ---
6852
6870
 
@@ -6857,10 +6875,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6857
6875
 
6858
6876
  | Properties | Type | Nullable | Description |
6859
6877
  | ---------- | ---- | -------- | ----------- |
6860
- | is_updated | boolean | no | |
6861
- | success | boolean | no | |
6862
6878
  | id | string | no | |
6879
+ | is_updated | boolean | no | |
6863
6880
  | is_default_address | boolean | no | |
6881
+ | success | boolean | no | |
6864
6882
 
6865
6883
  ---
6866
6884
 
@@ -6883,9 +6901,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6883
6901
 
6884
6902
  | Properties | Type | Nullable | Description |
6885
6903
  | ---------- | ---- | -------- | ----------- |
6886
- | cart_id | string | no | |
6887
- | id | string | no | |
6888
6904
  | billing_address_id | string | no | |
6905
+ | id | string | no | |
6906
+ | cart_id | string | no | |
6889
6907
 
6890
6908
  ---
6891
6909
 
@@ -6896,12 +6914,12 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6896
6914
 
6897
6915
  | Properties | Type | Nullable | Description |
6898
6916
  | ---------- | ---- | -------- | ----------- |
6917
+ | id | string | no | |
6899
6918
  | aggregator_name | string | no | |
6900
6919
  | merchant_code | string | no | |
6901
6920
  | payment_identifier | string | no | |
6902
- | address_id | string | no | |
6903
6921
  | payment_mode | string | no | |
6904
- | id | string | no | |
6922
+ | address_id | string | no | |
6905
6923
 
6906
6924
  ---
6907
6925
 
@@ -6912,10 +6930,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6912
6930
 
6913
6931
  | Properties | Type | Nullable | Description |
6914
6932
  | ---------- | ---- | -------- | ----------- |
6915
- | code | string | no | |
6916
- | valid | boolean | no | |
6917
6933
  | display_message_en | string | no | |
6918
6934
  | discount | number | no | |
6935
+ | valid | boolean | no | |
6936
+ | code | string | no | |
6919
6937
  | title | string | no | |
6920
6938
 
6921
6939
  ---
@@ -6927,8 +6945,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6927
6945
 
6928
6946
  | Properties | Type | Nullable | Description |
6929
6947
  | ---------- | ---- | -------- | ----------- |
6930
- | success | boolean | yes | |
6931
6948
  | coupon_validity | [CouponValidity](#CouponValidity) | no | |
6949
+ | success | boolean | yes | |
6932
6950
  | message | string | no | |
6933
6951
 
6934
6952
  ---
@@ -6940,16 +6958,16 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6940
6958
 
6941
6959
  | Properties | Type | Nullable | Description |
6942
6960
  | ---------- | ---- | -------- | ----------- |
6943
- | fulfillment_id | number | no | |
6944
- | shipments | number | no | |
6945
- | shipment_type | string | no | |
6946
- | order_type | string | no | |
6947
- | dp_id | string | no | |
6948
- | dp_options | string | no | |
6949
6961
  | box_type | string | no | |
6950
- | fulfillment_type | string | no | |
6951
6962
  | promise | [ShipmentPromise](#ShipmentPromise) | no | |
6963
+ | dp_options | string | no | |
6964
+ | dp_id | string | no | |
6952
6965
  | items | [[CartProductInfo](#CartProductInfo)] | no | |
6966
+ | shipment_type | string | no | |
6967
+ | fulfillment_type | string | no | |
6968
+ | fulfillment_id | number | no | |
6969
+ | order_type | string | no | |
6970
+ | shipments | number | no | |
6953
6971
 
6954
6972
  ---
6955
6973
 
@@ -6960,25 +6978,37 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6960
6978
 
6961
6979
  | Properties | Type | Nullable | Description |
6962
6980
  | ---------- | ---- | -------- | ----------- |
6963
- | buy_now | boolean | no | |
6964
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
6965
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
6966
- | uid | string | no | |
6967
- | currency | [CartCurrency](#CartCurrency) | no | |
6981
+ | is_valid | boolean | no | |
6982
+ | message | string | no | |
6968
6983
  | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
6984
+ | uid | string | no | |
6985
+ | restrict_checkout | boolean | no | |
6969
6986
  | last_modified | string | no | |
6970
- | id | string | no | |
6971
- | gstin | string | no | |
6972
- | message | string | no | |
6987
+ | comment | string | no | |
6973
6988
  | delivery_charge_info | string | no | |
6974
- | coupon_text | string | no | |
6975
- | restrict_checkout | boolean | no | |
6976
- | shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
6989
+ | buy_now | boolean | no | |
6990
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
6991
+ | gstin | string | no | |
6992
+ | id | string | no | |
6993
+ | cart_id | number | no | |
6994
+ | currency | [CartCurrency](#CartCurrency) | no | |
6977
6995
  | error | boolean | no | |
6978
- | comment | string | no | |
6979
- | is_valid | boolean | no | |
6996
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
6980
6997
  | checkout_mode | string | no | |
6981
- | cart_id | number | 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 | |
6982
7012
 
6983
7013
  ---
6984
7014
 
@@ -6989,10 +7019,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
6989
7019
 
6990
7020
  | Properties | Type | Nullable | Description |
6991
7021
  | ---------- | ---- | -------- | ----------- |
6992
- | last_name | string | yes | |
6993
7022
  | _id | string | yes | |
6994
- | user | string | yes | |
6995
7023
  | first_name | string | yes | |
7024
+ | employee_code | string | no | |
7025
+ | last_name | string | yes | |
7026
+ | user | string | yes | |
6996
7027
 
6997
7028
  ---
6998
7029
 
@@ -7003,21 +7034,22 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7003
7034
 
7004
7035
  | Properties | Type | Nullable | Description |
7005
7036
  | ---------- | ---- | -------- | ----------- |
7006
- | extra_meta | string | no | |
7037
+ | ordering_store | number | no | |
7038
+ | custom_meta | [[CartCheckoutCustomMeta](#CartCheckoutCustomMeta)] | no | |
7007
7039
  | aggregator | string | no | |
7040
+ | extra_meta | string | no | |
7041
+ | meta | string | no | |
7042
+ | billing_address_id | string | no | |
7043
+ | payment_params | string | no | |
7044
+ | delivery_address | string | no | |
7045
+ | callback_url | string | no | |
7008
7046
  | merchant_code | string | no | |
7009
7047
  | payment_identifier | string | no | |
7010
7048
  | billing_address | string | no | |
7011
- | address_id | string | no | |
7012
7049
  | payment_mode | string | yes | |
7013
- | payment_auto_confirm | boolean | no | |
7014
- | ordering_store | number | no | |
7015
- | callback_url | string | no | |
7016
- | delivery_address | string | no | |
7017
- | billing_address_id | string | no | |
7018
7050
  | staff | [StaffCheckout](#StaffCheckout) | no | |
7019
- | meta | string | no | |
7020
- | payment_params | string | no | |
7051
+ | payment_auto_confirm | boolean | no | |
7052
+ | address_id | string | no | |
7021
7053
 
7022
7054
  ---
7023
7055
 
@@ -7028,35 +7060,35 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7028
7060
 
7029
7061
  | Properties | Type | Nullable | Description |
7030
7062
  | ---------- | ---- | -------- | ----------- |
7031
- | buy_now | boolean | no | |
7032
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
7033
- | success | boolean | no | |
7063
+ | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7034
7064
  | uid | string | no | |
7035
- | currency | [CartCurrency](#CartCurrency) | no | |
7036
- | id | string | no | |
7037
- | gstin | string | no | |
7065
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
7066
+ | delivery_charge_info | string | no | |
7038
7067
  | delivery_charge_order_value | number | no | |
7039
- | cod_message | string | no | |
7040
- | is_valid | boolean | no | |
7041
- | checkout_mode | string | no | |
7068
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
7069
+ | cod_charges | number | no | |
7070
+ | id | string | no | |
7042
7071
  | cart_id | number | no | |
7043
- | store_code | string | no | |
7044
- | store_emps | [string] | no | |
7072
+ | cod_message | string | no | |
7045
7073
  | error_message | string | no | |
7046
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7047
- | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7048
- | last_modified | string | no | |
7049
- | cod_available | boolean | no | |
7074
+ | currency | [CartCurrency](#CartCurrency) | no | |
7075
+ | store_emps | [string] | no | |
7050
7076
  | delivery_charges | number | no | |
7051
- | order_id | string | no | |
7052
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
7053
- | cod_charges | number | no | |
7054
- | delivery_charge_info | string | no | |
7077
+ | is_valid | boolean | no | |
7078
+ | message | string | no | |
7055
7079
  | coupon_text | string | no | |
7056
7080
  | restrict_checkout | boolean | no | |
7057
- | user_type | string | no | |
7081
+ | last_modified | string | no | |
7058
7082
  | comment | string | no | |
7059
- | message | string | no | |
7083
+ | success | boolean | no | |
7084
+ | buy_now | boolean | no | |
7085
+ | gstin | string | no | |
7086
+ | order_id | string | no | |
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 | |
7060
7092
 
7061
7093
  ---
7062
7094
 
@@ -7067,14 +7099,14 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7067
7099
 
7068
7100
  | Properties | Type | Nullable | Description |
7069
7101
  | ---------- | ---- | -------- | ----------- |
7070
- | cart | [CheckCart](#CheckCart) | no | |
7071
- | success | boolean | no | |
7072
- | data | string | no | |
7073
- | callback_url | string | no | |
7074
- | payment_confirm_url | string | no | |
7075
7102
  | message | string | no | |
7076
7103
  | order_id | string | no | |
7104
+ | data | string | no | |
7105
+ | callback_url | string | no | |
7077
7106
  | app_intercept_url | string | no | |
7107
+ | payment_confirm_url | string | no | |
7108
+ | success | boolean | no | |
7109
+ | cart | [CheckCart](#CheckCart) | no | |
7078
7110
 
7079
7111
  ---
7080
7112
 
@@ -7085,10 +7117,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7085
7117
 
7086
7118
  | Properties | Type | Nullable | Description |
7087
7119
  | ---------- | ---- | -------- | ----------- |
7088
- | gstin | string | no | |
7120
+ | comment | string | no | |
7089
7121
  | checkout_mode | string | no | |
7090
7122
  | pick_up_customer_details | string | no | Customer contact details for customer pickup at store |
7091
- | comment | string | no | |
7123
+ | gstin | string | no | |
7092
7124
 
7093
7125
  ---
7094
7126
 
@@ -7133,8 +7165,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7133
7165
 
7134
7166
  | Properties | Type | Nullable | Description |
7135
7167
  | ---------- | ---- | -------- | ----------- |
7136
- | share_url | string | no | Short shareable final url |
7137
7168
  | token | string | no | Short url unique id |
7169
+ | share_url | string | no | Short shareable final url |
7138
7170
 
7139
7171
  ---
7140
7172
 
@@ -7145,11 +7177,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7145
7177
 
7146
7178
  | Properties | Type | Nullable | Description |
7147
7179
  | ---------- | ---- | -------- | ----------- |
7180
+ | meta | string | no | Meta data sent while generating share cart link |
7148
7181
  | token | string | no | Short link id |
7149
- | user | string | no | User details of who generated share link |
7150
7182
  | source | string | no | Share link device and other source information |
7151
- | meta | string | no | Meta data sent while generating share cart link |
7152
7183
  | created_on | string | no | |
7184
+ | user | string | no | User details of who generated share link |
7153
7185
 
7154
7186
  ---
7155
7187
 
@@ -7160,25 +7192,25 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7160
7192
 
7161
7193
  | Properties | Type | Nullable | Description |
7162
7194
  | ---------- | ---- | -------- | ----------- |
7163
- | buy_now | boolean | no | |
7164
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
7165
- | uid | string | no | |
7166
- | currency | [CartCurrency](#CartCurrency) | no | |
7167
- | id | string | no | |
7168
- | shared_cart_details | [SharedCartDetails](#SharedCartDetails) | no | |
7169
- | gstin | string | no | |
7170
- | is_valid | boolean | no | |
7171
- | checkout_mode | string | no | |
7172
- | cart_id | number | no | |
7173
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7174
7195
  | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7175
- | last_modified | string | no | |
7196
+ | uid | string | no | |
7176
7197
  | items | [[CartProductInfo](#CartProductInfo)] | no | |
7177
7198
  | delivery_charge_info | string | no | |
7199
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
7200
+ | id | string | no | |
7201
+ | cart_id | number | no | |
7202
+ | currency | [CartCurrency](#CartCurrency) | no | |
7203
+ | is_valid | boolean | no | |
7204
+ | message | string | no | |
7178
7205
  | coupon_text | string | no | |
7179
7206
  | restrict_checkout | boolean | no | |
7207
+ | last_modified | string | no | |
7180
7208
  | comment | string | no | |
7181
- | message | 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 | |
7182
7214
 
7183
7215
  ---
7184
7216
 
@@ -7189,8 +7221,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7189
7221
 
7190
7222
  | Properties | Type | Nullable | Description |
7191
7223
  | ---------- | ---- | -------- | ----------- |
7192
- | cart | [SharedCart](#SharedCart) | no | |
7193
7224
  | error | string | no | |
7225
+ | cart | [SharedCart](#SharedCart) | no | |
7194
7226
 
7195
7227
  ---
7196
7228
 
@@ -7203,8 +7235,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7203
7235
  | ---------- | ---- | -------- | ----------- |
7204
7236
  | offer_text | string | no | Offer title |
7205
7237
  | promotion_group | string | no | Group of promotion belongs to |
7206
- | description | string | no | Offer details including T&C |
7207
7238
  | id | string | no | Promotion id |
7239
+ | description | string | no | Offer details including T&C |
7208
7240
  | valid_till | string | no | Datetime ISOString for promotion end date |
7209
7241
 
7210
7242
  ---
@@ -7239,8 +7271,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7239
7271
 
7240
7272
  | Properties | Type | Nullable | Description |
7241
7273
  | ---------- | ---- | -------- | ----------- |
7242
- | symbol | string | no | |
7243
7274
  | code | string | no | |
7275
+ | symbol | string | no | |
7244
7276
 
7245
7277
  ---
7246
7278
 
@@ -7251,9 +7283,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7251
7283
 
7252
7284
  | Properties | Type | Nullable | Description |
7253
7285
  | ---------- | ---- | -------- | ----------- |
7286
+ | currency_code | string | no | Currency code for all amounts |
7254
7287
  | offer_price | number | no | Discounted per unit price for current offer object |
7255
7288
  | marked | number | no | Original price of product |
7256
- | currency_code | string | no | Currency code for all amounts |
7257
7289
  | currency_symbol | string | no | Currency symbol for currency |
7258
7290
  | effective | number | no | Current per unit price of product after existing deductions |
7259
7291
 
@@ -7266,10 +7298,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7266
7298
 
7267
7299
  | Properties | Type | Nullable | Description |
7268
7300
  | ---------- | ---- | -------- | ----------- |
7269
- | type | string | no | Offer type |
7270
- | max_quantity | number | no | Minimum quantity upto which offer is applicable. If not present that offer is applicable on all quantities |
7271
- | min_quantity | number | no | Minimum quantity from which offer is applicable |
7272
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 |
7304
+ | type | string | no | Offer type |
7273
7305
  | margin | number | no | Percentage value of discount |
7274
7306
 
7275
7307
  ---
@@ -7283,10 +7315,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
7283
7315
  | ---------- | ---- | -------- | ----------- |
7284
7316
  | offer_text | string | no | Offer title |
7285
7317
  | promotion_group | string | no | Group of promotion belongs to |
7286
- | description | string | no | Offer details including T&C |
7287
7318
  | id | string | no | Promotion id |
7288
- | valid_till | string | no | Datetime ISOString for promotion end date |
7289
7319
  | offer_prices | [[LadderOfferItem](#LadderOfferItem)] | no | |
7320
+ | description | string | no | Offer details including T&C |
7321
+ | valid_till | string | no | Datetime ISOString for promotion end date |
7290
7322
 
7291
7323
  ---
7292
7324