@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
@@ -54,6 +54,7 @@ const promise = posCart.getCart({ id : value,
54
54
  i : value,
55
55
  b : value,
56
56
  assignCardId : value,
57
+ areaCode : value,
57
58
  buyNow : value });
58
59
 
59
60
  // Async/Await
@@ -61,6 +62,7 @@ const data = await posCart.getCart({ id : value,
61
62
  i : value,
62
63
  b : value,
63
64
  assignCardId : value,
65
+ areaCode : value,
64
66
  buyNow : value });
65
67
  ```
66
68
 
@@ -74,6 +76,7 @@ const data = await posCart.getCart({ id : value,
74
76
  | i | boolean | no | |
75
77
  | b | boolean | no | |
76
78
  | assignCardId | number | no | |
79
+ | areaCode | string | no | |
77
80
  | buyNow | boolean | no | |
78
81
 
79
82
 
@@ -325,12 +328,14 @@ Add items to cart
325
328
  const promise = posCart.addItems({ body : value,
326
329
  i : value,
327
330
  b : value,
331
+ areaCode : value,
328
332
  buyNow : value });
329
333
 
330
334
  // Async/Await
331
335
  const data = await posCart.addItems({ body : value,
332
336
  i : value,
333
337
  b : value,
338
+ areaCode : value,
334
339
  buyNow : value });
335
340
  ```
336
341
 
@@ -342,6 +347,7 @@ const data = await posCart.addItems({ body : value,
342
347
  | --------- | ----- | -------- | ----------- |
343
348
  | i | boolean | no | |
344
349
  | b | boolean | no | |
350
+ | areaCode | string | no | |
345
351
  | buyNow | boolean | no | |
346
352
  | body | [AddCartRequest](#AddCartRequest) | yes | Request body |
347
353
 
@@ -1035,6 +1041,7 @@ const promise = posCart.updateCart({ body : value,
1035
1041
  id : value,
1036
1042
  i : value,
1037
1043
  b : value,
1044
+ areaCode : value,
1038
1045
  buyNow : value });
1039
1046
 
1040
1047
  // Async/Await
@@ -1042,6 +1049,7 @@ const data = await posCart.updateCart({ body : value,
1042
1049
  id : value,
1043
1050
  i : value,
1044
1051
  b : value,
1052
+ areaCode : value,
1045
1053
  buyNow : value });
1046
1054
  ```
1047
1055
 
@@ -1054,6 +1062,7 @@ const data = await posCart.updateCart({ body : value,
1054
1062
  | id | string | no | |
1055
1063
  | i | boolean | no | |
1056
1064
  | b | boolean | no | |
1065
+ | areaCode | string | no | |
1057
1066
  | buyNow | boolean | no | |
1058
1067
  | body | [UpdateCartRequest](#UpdateCartRequest) | yes | Request body |
1059
1068
 
@@ -2884,6 +2893,8 @@ Success. Returns an Address object containing a list of address saved in the acc
2884
2893
  "meta": {},
2885
2894
  "user_id": "8b526f521bb14a2593a8b9e3ce8c76b3",
2886
2895
  "country_code": "IND",
2896
+ "country_phone_code": "91",
2897
+ "country_iso_code": "IND",
2887
2898
  "phone": 9915347757,
2888
2899
  "geo_location": {},
2889
2900
  "country": "India",
@@ -3044,6 +3055,8 @@ Success. Returns an Address object containing a list of address saved in the acc
3044
3055
  "meta": {},
3045
3056
  "user_id": "8b526f521bb14a2593a8b9e3ce8c76b3",
3046
3057
  "country_code": "IND",
3058
+ "country_phone_code": "91",
3059
+ "country_iso_code": "IND",
3047
3060
  "phone": 9915347757,
3048
3061
  "geo_location": {},
3049
3062
  "country": "India",
@@ -6752,166 +6765,174 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
6752
6765
 
6753
6766
 
6754
6767
 
6755
- #### [BaseInfo](#BaseInfo)
6768
+ #### [CouponBreakup](#CouponBreakup)
6756
6769
 
6757
6770
  | Properties | Type | Nullable | Description |
6758
6771
  | ---------- | ---- | -------- | ----------- |
6759
- | uid | number | no | |
6760
- | name | string | no | |
6772
+ | code | string | no | |
6773
+ | type | string | no | |
6774
+ | message | string | no | |
6775
+ | uid | string | no | |
6776
+ | value | number | no | |
6777
+ | is_applied | boolean | no | |
6761
6778
 
6762
6779
  ---
6763
6780
 
6764
6781
 
6765
6782
 
6766
6783
 
6767
- #### [BasePrice](#BasePrice)
6784
+ #### [DisplayBreakup](#DisplayBreakup)
6768
6785
 
6769
6786
  | Properties | Type | Nullable | Description |
6770
6787
  | ---------- | ---- | -------- | ----------- |
6771
- | currency_symbol | string | no | |
6772
6788
  | currency_code | string | no | |
6773
- | effective | number | no | |
6774
- | marked | number | no | |
6789
+ | message | [string] | no | |
6790
+ | key | string | no | |
6791
+ | currency_symbol | string | no | |
6792
+ | value | number | no | |
6793
+ | display | string | no | |
6775
6794
 
6776
6795
  ---
6777
6796
 
6778
6797
 
6779
6798
 
6780
6799
 
6781
- #### [ArticlePriceInfo](#ArticlePriceInfo)
6800
+ #### [LoyaltyPoints](#LoyaltyPoints)
6782
6801
 
6783
6802
  | Properties | Type | Nullable | Description |
6784
6803
  | ---------- | ---- | -------- | ----------- |
6785
- | base | [BasePrice](#BasePrice) | no | |
6786
- | converted | [BasePrice](#BasePrice) | no | |
6804
+ | is_applied | boolean | no | |
6805
+ | applicable | number | no | |
6806
+ | total | number | no | |
6807
+ | description | string | no | |
6787
6808
 
6788
6809
  ---
6789
6810
 
6790
6811
 
6791
6812
 
6792
6813
 
6793
- #### [ProductArticle](#ProductArticle)
6814
+ #### [RawBreakup](#RawBreakup)
6794
6815
 
6795
6816
  | Properties | Type | Nullable | Description |
6796
6817
  | ---------- | ---- | -------- | ----------- |
6797
- | store | [BaseInfo](#BaseInfo) | no | |
6798
- | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
6799
- | size | string | no | |
6800
- | quantity | number | no | |
6801
- | seller | [BaseInfo](#BaseInfo) | no | |
6802
- | product_group_tags | [string] | no | |
6803
- | type | string | no | |
6804
- | parent_item_identifiers | string | no | |
6805
- | uid | string | no | |
6806
- | extra_meta | string | no | |
6818
+ | subtotal | number | no | |
6819
+ | gst_charges | number | no | |
6820
+ | coupon | number | no | |
6821
+ | you_saved | number | no | |
6822
+ | delivery_charge | number | no | |
6823
+ | cod_charge | number | no | |
6824
+ | vog | number | no | |
6825
+ | fynd_cash | number | no | |
6826
+ | mrp_total | number | no | |
6827
+ | total | number | no | |
6828
+ | convenience_fee | number | no | |
6829
+ | discount | number | no | |
6807
6830
 
6808
6831
  ---
6809
6832
 
6810
6833
 
6811
6834
 
6812
6835
 
6813
- #### [ProductPrice](#ProductPrice)
6836
+ #### [CartBreakup](#CartBreakup)
6814
6837
 
6815
6838
  | Properties | Type | Nullable | Description |
6816
6839
  | ---------- | ---- | -------- | ----------- |
6817
- | marked | number | no | |
6818
- | add_on | number | no | |
6819
- | effective | number | no | |
6820
- | currency_code | string | no | |
6821
- | selling | number | no | |
6822
- | currency_symbol | string | no | |
6840
+ | coupon | [CouponBreakup](#CouponBreakup) | no | |
6841
+ | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
6842
+ | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
6843
+ | raw | [RawBreakup](#RawBreakup) | no | |
6823
6844
 
6824
6845
  ---
6825
6846
 
6826
6847
 
6827
6848
 
6828
6849
 
6829
- #### [ProductPriceInfo](#ProductPriceInfo)
6850
+ #### [PaymentSelectionLock](#PaymentSelectionLock)
6830
6851
 
6831
6852
  | Properties | Type | Nullable | Description |
6832
6853
  | ---------- | ---- | -------- | ----------- |
6833
- | base | [ProductPrice](#ProductPrice) | no | |
6834
- | converted | [ProductPrice](#ProductPrice) | no | |
6854
+ | enabled | boolean | no | |
6855
+ | default_options | string | no | |
6856
+ | payment_identifier | string | no | |
6835
6857
 
6836
6858
  ---
6837
6859
 
6838
6860
 
6839
6861
 
6840
6862
 
6841
- #### [ProductAvailability](#ProductAvailability)
6863
+ #### [PromiseFormatted](#PromiseFormatted)
6842
6864
 
6843
6865
  | Properties | Type | Nullable | Description |
6844
6866
  | ---------- | ---- | -------- | ----------- |
6845
- | is_valid | boolean | no | |
6846
- | other_store_quantity | number | no | |
6847
- | out_of_stock | boolean | no | |
6848
- | deliverable | boolean | no | |
6849
- | sizes | [string] | no | |
6867
+ | min | string | no | |
6868
+ | max | string | no | |
6850
6869
 
6851
6870
  ---
6852
6871
 
6853
6872
 
6854
6873
 
6855
6874
 
6856
- #### [Ownership](#Ownership)
6875
+ #### [PromiseTimestamp](#PromiseTimestamp)
6857
6876
 
6858
6877
  | Properties | Type | Nullable | Description |
6859
6878
  | ---------- | ---- | -------- | ----------- |
6860
- | payable_by | string | no | promo amount bearable party |
6861
- | payable_category | string | no | promo amount payable category |
6879
+ | min | number | no | |
6880
+ | max | number | no | |
6862
6881
 
6863
6882
  ---
6864
6883
 
6865
6884
 
6866
6885
 
6867
6886
 
6868
- #### [AppliedPromotion](#AppliedPromotion)
6887
+ #### [ShipmentPromise](#ShipmentPromise)
6869
6888
 
6870
6889
  | Properties | Type | Nullable | Description |
6871
6890
  | ---------- | ---- | -------- | ----------- |
6872
- | article_quantity | number | no | Quantity of article on which promotion is applicable |
6873
- | offer_text | string | no | Offer text of current promotion |
6874
- | promo_id | string | no | Promotion id |
6875
- | amount | number | no | Per unit discount amount applied with current promotion |
6876
- | promotion_type | string | no | Promotion type of current promotion |
6877
- | mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
6878
- | ownership | [Ownership](#Ownership) | no | Ownership of promotion |
6891
+ | formatted | [PromiseFormatted](#PromiseFormatted) | no | |
6892
+ | timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
6879
6893
 
6880
6894
  ---
6881
6895
 
6882
6896
 
6883
6897
 
6884
6898
 
6885
- #### [CartProductIdentifer](#CartProductIdentifer)
6899
+ #### [ProductAvailability](#ProductAvailability)
6886
6900
 
6887
6901
  | Properties | Type | Nullable | Description |
6888
6902
  | ---------- | ---- | -------- | ----------- |
6889
- | identifier | string | no | Article idenfier generated by cart |
6903
+ | other_store_quantity | number | no | |
6904
+ | out_of_stock | boolean | no | |
6905
+ | sizes | [string] | no | |
6906
+ | is_valid | boolean | no | |
6907
+ | deliverable | boolean | no | |
6890
6908
 
6891
6909
  ---
6892
6910
 
6893
6911
 
6894
6912
 
6895
6913
 
6896
- #### [ProductImage](#ProductImage)
6914
+ #### [ProductPrice](#ProductPrice)
6897
6915
 
6898
6916
  | Properties | Type | Nullable | Description |
6899
6917
  | ---------- | ---- | -------- | ----------- |
6900
- | aspect_ratio | string | no | |
6901
- | secure_url | string | no | |
6902
- | url | string | no | |
6918
+ | marked | number | no | |
6919
+ | currency_code | string | no | |
6920
+ | add_on | number | no | |
6921
+ | currency_symbol | string | no | |
6922
+ | selling | number | no | |
6923
+ | effective | number | no | |
6903
6924
 
6904
6925
  ---
6905
6926
 
6906
6927
 
6907
6928
 
6908
6929
 
6909
- #### [CategoryInfo](#CategoryInfo)
6930
+ #### [ProductPriceInfo](#ProductPriceInfo)
6910
6931
 
6911
6932
  | Properties | Type | Nullable | Description |
6912
6933
  | ---------- | ---- | -------- | ----------- |
6913
- | uid | number | no | Product Category Id |
6914
- | name | string | no | |
6934
+ | base | [ProductPrice](#ProductPrice) | no | |
6935
+ | converted | [ProductPrice](#ProductPrice) | no | |
6915
6936
 
6916
6937
  ---
6917
6938
 
@@ -6933,8 +6954,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
6933
6954
 
6934
6955
  | Properties | Type | Nullable | Description |
6935
6956
  | ---------- | ---- | -------- | ----------- |
6936
- | url | string | no | |
6937
6957
  | query | [ActionQuery](#ActionQuery) | no | |
6958
+ | url | string | no | |
6938
6959
  | type | string | no | |
6939
6960
 
6940
6961
  ---
@@ -6942,198 +6963,191 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
6942
6963
 
6943
6964
 
6944
6965
 
6945
- #### [CartProduct](#CartProduct)
6966
+ #### [BaseInfo](#BaseInfo)
6946
6967
 
6947
6968
  | Properties | Type | Nullable | Description |
6948
6969
  | ---------- | ---- | -------- | ----------- |
6949
- | images | [[ProductImage](#ProductImage)] | no | |
6950
- | categories | [[CategoryInfo](#CategoryInfo)] | no | |
6951
6970
  | name | string | no | |
6952
- | slug | string | no | Unique product url name generated via product name and other meta data |
6953
- | action | [ProductAction](#ProductAction) | no | |
6954
- | type | string | no | |
6955
6971
  | uid | number | no | |
6956
- | brand | [BaseInfo](#BaseInfo) | no | |
6957
6972
 
6958
6973
  ---
6959
6974
 
6960
6975
 
6961
6976
 
6962
6977
 
6963
- #### [PromoMeta](#PromoMeta)
6978
+ #### [CategoryInfo](#CategoryInfo)
6964
6979
 
6965
6980
  | Properties | Type | Nullable | Description |
6966
6981
  | ---------- | ---- | -------- | ----------- |
6967
- | message | string | no | |
6982
+ | name | string | no | |
6983
+ | uid | number | no | Product Category Id |
6968
6984
 
6969
6985
  ---
6970
6986
 
6971
6987
 
6972
6988
 
6973
6989
 
6974
- #### [CartProductInfo](#CartProductInfo)
6990
+ #### [ProductImage](#ProductImage)
6975
6991
 
6976
6992
  | Properties | Type | Nullable | Description |
6977
6993
  | ---------- | ---- | -------- | ----------- |
6978
- | discount | string | no | |
6979
- | is_set | boolean | no | |
6980
- | article | [ProductArticle](#ProductArticle) | no | |
6981
- | price | [ProductPriceInfo](#ProductPriceInfo) | no | |
6982
- | message | string | no | |
6983
- | coupon_message | string | no | |
6984
- | availability | [ProductAvailability](#ProductAvailability) | no | |
6985
- | bulk_offer | string | no | |
6986
- | quantity | number | no | |
6987
- | promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
6988
- | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
6989
- | parent_item_identifiers | string | no | |
6990
- | price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
6991
- | product | [CartProduct](#CartProduct) | no | |
6992
- | promo_meta | [PromoMeta](#PromoMeta) | no | |
6993
- | key | string | no | |
6994
+ | secure_url | string | no | |
6995
+ | aspect_ratio | string | no | |
6996
+ | url | string | no | |
6994
6997
 
6995
6998
  ---
6996
6999
 
6997
7000
 
6998
7001
 
6999
7002
 
7000
- #### [PromiseFormatted](#PromiseFormatted)
7003
+ #### [CartProduct](#CartProduct)
7001
7004
 
7002
7005
  | Properties | Type | Nullable | Description |
7003
7006
  | ---------- | ---- | -------- | ----------- |
7004
- | min | string | no | |
7005
- | max | string | no | |
7007
+ | slug | string | no | Unique product url name generated via product name and other meta data |
7008
+ | action | [ProductAction](#ProductAction) | no | |
7009
+ | brand | [BaseInfo](#BaseInfo) | no | |
7010
+ | name | string | no | |
7011
+ | type | string | no | |
7012
+ | categories | [[CategoryInfo](#CategoryInfo)] | no | |
7013
+ | uid | number | no | |
7014
+ | images | [[ProductImage](#ProductImage)] | no | |
7006
7015
 
7007
7016
  ---
7008
7017
 
7009
7018
 
7010
7019
 
7011
7020
 
7012
- #### [PromiseTimestamp](#PromiseTimestamp)
7021
+ #### [CartProductIdentifer](#CartProductIdentifer)
7013
7022
 
7014
7023
  | Properties | Type | Nullable | Description |
7015
7024
  | ---------- | ---- | -------- | ----------- |
7016
- | min | number | no | |
7017
- | max | number | no | |
7025
+ | identifier | string | no | Article idenfier generated by cart |
7018
7026
 
7019
7027
  ---
7020
7028
 
7021
7029
 
7022
7030
 
7023
7031
 
7024
- #### [ShipmentPromise](#ShipmentPromise)
7032
+ #### [Ownership](#Ownership)
7025
7033
 
7026
7034
  | Properties | Type | Nullable | Description |
7027
7035
  | ---------- | ---- | -------- | ----------- |
7028
- | formatted | [PromiseFormatted](#PromiseFormatted) | no | |
7029
- | timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
7036
+ | payable_by | string | no | promo amount bearable party |
7037
+ | payable_category | string | no | promo amount payable category |
7030
7038
 
7031
7039
  ---
7032
7040
 
7033
7041
 
7034
7042
 
7035
7043
 
7036
- #### [CartCurrency](#CartCurrency)
7044
+ #### [AppliedPromotion](#AppliedPromotion)
7037
7045
 
7038
7046
  | Properties | Type | Nullable | Description |
7039
7047
  | ---------- | ---- | -------- | ----------- |
7040
- | code | string | no | Currency code defined by ISO 4217:2015 |
7041
- | symbol | string | no | |
7048
+ | offer_text | string | no | Offer text of current promotion |
7049
+ | article_quantity | number | no | Quantity of article on which promotion is applicable |
7050
+ | promotion_type | string | no | Promotion type of current promotion |
7051
+ | amount | number | no | Per unit discount amount applied with current promotion |
7052
+ | promo_id | string | no | Promotion id |
7053
+ | ownership | [Ownership](#Ownership) | no | Ownership of promotion |
7054
+ | mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
7042
7055
 
7043
7056
  ---
7044
7057
 
7045
7058
 
7046
7059
 
7047
7060
 
7048
- #### [PaymentSelectionLock](#PaymentSelectionLock)
7061
+ #### [BasePrice](#BasePrice)
7049
7062
 
7050
7063
  | Properties | Type | Nullable | Description |
7051
7064
  | ---------- | ---- | -------- | ----------- |
7052
- | default_options | string | no | |
7053
- | payment_identifier | string | no | |
7054
- | enabled | boolean | no | |
7065
+ | effective | number | no | |
7066
+ | currency_symbol | string | no | |
7067
+ | marked | number | no | |
7068
+ | currency_code | string | no | |
7055
7069
 
7056
7070
  ---
7057
7071
 
7058
7072
 
7059
7073
 
7060
7074
 
7061
- #### [CouponBreakup](#CouponBreakup)
7075
+ #### [ArticlePriceInfo](#ArticlePriceInfo)
7062
7076
 
7063
7077
  | Properties | Type | Nullable | Description |
7064
7078
  | ---------- | ---- | -------- | ----------- |
7065
- | message | string | no | |
7066
- | value | number | no | |
7067
- | is_applied | boolean | no | |
7068
- | type | string | no | |
7069
- | code | string | no | |
7070
- | uid | string | no | |
7079
+ | base | [BasePrice](#BasePrice) | no | |
7080
+ | converted | [BasePrice](#BasePrice) | no | |
7071
7081
 
7072
7082
  ---
7073
7083
 
7074
7084
 
7075
7085
 
7076
7086
 
7077
- #### [LoyaltyPoints](#LoyaltyPoints)
7087
+ #### [ProductArticle](#ProductArticle)
7078
7088
 
7079
7089
  | Properties | Type | Nullable | Description |
7080
7090
  | ---------- | ---- | -------- | ----------- |
7081
- | applicable | number | no | |
7082
- | total | number | no | |
7083
- | is_applied | boolean | no | |
7084
- | description | string | no | |
7091
+ | type | string | no | |
7092
+ | parent_item_identifiers | string | no | |
7093
+ | seller | [BaseInfo](#BaseInfo) | no | |
7094
+ | extra_meta | string | no | |
7095
+ | _custom_json | string | no | |
7096
+ | store | [BaseInfo](#BaseInfo) | no | |
7097
+ | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
7098
+ | uid | string | no | |
7099
+ | product_group_tags | [string] | no | |
7100
+ | size | string | no | |
7101
+ | quantity | number | no | |
7085
7102
 
7086
7103
  ---
7087
7104
 
7088
7105
 
7089
7106
 
7090
7107
 
7091
- #### [RawBreakup](#RawBreakup)
7108
+ #### [PromoMeta](#PromoMeta)
7092
7109
 
7093
7110
  | Properties | Type | Nullable | Description |
7094
7111
  | ---------- | ---- | -------- | ----------- |
7095
- | delivery_charge | number | no | |
7096
- | discount | number | no | |
7097
- | subtotal | number | no | |
7098
- | total | number | no | |
7099
- | you_saved | number | no | |
7100
- | vog | number | no | |
7101
- | cod_charge | number | no | |
7102
- | convenience_fee | number | no | |
7103
- | coupon | number | no | |
7104
- | gst_charges | number | no | |
7105
- | mrp_total | number | no | |
7106
- | fynd_cash | number | no | |
7112
+ | message | string | no | |
7107
7113
 
7108
7114
  ---
7109
7115
 
7110
7116
 
7111
7117
 
7112
7118
 
7113
- #### [DisplayBreakup](#DisplayBreakup)
7119
+ #### [CartProductInfo](#CartProductInfo)
7114
7120
 
7115
7121
  | Properties | Type | Nullable | Description |
7116
7122
  | ---------- | ---- | -------- | ----------- |
7117
- | message | [string] | no | |
7118
- | value | number | no | |
7119
- | display | string | no | |
7120
- | currency_code | string | no | |
7121
- | currency_symbol | string | no | |
7122
- | key | string | no | |
7123
+ | coupon_message | string | no | |
7124
+ | is_set | boolean | no | |
7125
+ | availability | [ProductAvailability](#ProductAvailability) | no | |
7126
+ | parent_item_identifiers | string | no | |
7127
+ | message | string | no | |
7128
+ | price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
7129
+ | key | string | no | |
7130
+ | product | [CartProduct](#CartProduct) | no | |
7131
+ | discount | string | no | |
7132
+ | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
7133
+ | price | [ProductPriceInfo](#ProductPriceInfo) | no | |
7134
+ | bulk_offer | string | no | |
7135
+ | promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
7136
+ | article | [ProductArticle](#ProductArticle) | no | |
7137
+ | promo_meta | [PromoMeta](#PromoMeta) | no | |
7138
+ | quantity | number | no | |
7123
7139
 
7124
7140
  ---
7125
7141
 
7126
7142
 
7127
7143
 
7128
7144
 
7129
- #### [CartBreakup](#CartBreakup)
7145
+ #### [CartCurrency](#CartCurrency)
7130
7146
 
7131
7147
  | Properties | Type | Nullable | Description |
7132
7148
  | ---------- | ---- | -------- | ----------- |
7133
- | coupon | [CouponBreakup](#CouponBreakup) | no | |
7134
- | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
7135
- | raw | [RawBreakup](#RawBreakup) | no | |
7136
- | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
7149
+ | symbol | string | no | |
7150
+ | code | string | no | Currency code defined by ISO 4217:2015 |
7137
7151
 
7138
7152
  ---
7139
7153
 
@@ -7144,22 +7158,22 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7144
7158
 
7145
7159
  | Properties | Type | Nullable | Description |
7146
7160
  | ---------- | ---- | -------- | ----------- |
7147
- | delivery_charge_info | string | no | |
7148
- | buy_now | boolean | no | |
7161
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
7149
7162
  | message | string | no | |
7150
- | checkout_mode | string | no | |
7151
- | is_valid | boolean | no | |
7152
- | gstin | string | no | |
7153
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
7154
7163
  | restrict_checkout | boolean | no | |
7155
- | coupon_text | string | no | |
7156
- | last_modified | string | no | |
7164
+ | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7157
7165
  | id | string | no | |
7166
+ | coupon_text | string | no | |
7167
+ | gstin | string | no | |
7168
+ | checkout_mode | string | no | |
7158
7169
  | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7159
- | comment | string | no | |
7170
+ | buy_now | boolean | no | |
7171
+ | is_valid | boolean | no | |
7172
+ | last_modified | string | no | |
7173
+ | delivery_charge_info | string | no | |
7174
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
7160
7175
  | currency | [CartCurrency](#CartCurrency) | no | |
7161
- | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7162
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
7176
+ | comment | string | no | |
7163
7177
 
7164
7178
  ---
7165
7179
 
@@ -7170,18 +7184,19 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7170
7184
 
7171
7185
  | Properties | Type | Nullable | Description |
7172
7186
  | ---------- | ---- | -------- | ----------- |
7173
- | pos | boolean | no | |
7174
- | item_id | number | no | |
7175
7187
  | seller_id | number | no | |
7188
+ | pos | boolean | no | |
7176
7189
  | store_id | number | no | |
7177
- | quantity | number | no | |
7190
+ | parent_item_identifiers | string | no | |
7191
+ | item_id | number | no | |
7178
7192
  | article_assignment | string | no | |
7179
- | display | string | no | |
7180
7193
  | product_group_tags | [string] | no | |
7181
- | parent_item_identifiers | string | no | |
7182
- | item_size | string | no | |
7183
- | article_id | string | no | |
7184
7194
  | extra_meta | string | no | |
7195
+ | _custom_json | string | no | |
7196
+ | article_id | string | no | |
7197
+ | item_size | string | no | |
7198
+ | display | string | no | |
7199
+ | quantity | number | no | |
7185
7200
 
7186
7201
  ---
7187
7202
 
@@ -7203,10 +7218,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7203
7218
 
7204
7219
  | Properties | Type | Nullable | Description |
7205
7220
  | ---------- | ---- | -------- | ----------- |
7221
+ | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
7206
7222
  | partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
7207
- | message | string | no | |
7208
7223
  | cart | [CartDetailResponse](#CartDetailResponse) | no | |
7209
- | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
7224
+ | message | string | no | |
7210
7225
 
7211
7226
  ---
7212
7227
 
@@ -7217,14 +7232,15 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7217
7232
 
7218
7233
  | Properties | Type | Nullable | Description |
7219
7234
  | ---------- | ---- | -------- | ----------- |
7235
+ | item_index | number | no | |
7236
+ | parent_item_identifiers | string | no | |
7220
7237
  | item_id | number | no | |
7221
- | quantity | number | no | |
7238
+ | extra_meta | string | no | |
7239
+ | _custom_json | string | no | |
7222
7240
  | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
7223
- | parent_item_identifiers | string | no | |
7224
- | item_index | number | no | |
7225
- | item_size | string | no | |
7226
7241
  | article_id | string | no | |
7227
- | extra_meta | string | no | |
7242
+ | item_size | string | no | |
7243
+ | quantity | number | no | |
7228
7244
 
7229
7245
  ---
7230
7246
 
@@ -7247,9 +7263,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7247
7263
 
7248
7264
  | Properties | Type | Nullable | Description |
7249
7265
  | ---------- | ---- | -------- | ----------- |
7250
- | message | string | no | |
7251
- | cart | [CartDetailResponse](#CartDetailResponse) | no | |
7252
7266
  | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
7267
+ | cart | [CartDetailResponse](#CartDetailResponse) | no | |
7268
+ | message | string | no | |
7253
7269
 
7254
7270
  ---
7255
7271
 
@@ -7267,70 +7283,58 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7267
7283
 
7268
7284
 
7269
7285
 
7270
- #### [PageCoupon](#PageCoupon)
7271
-
7272
- | Properties | Type | Nullable | Description |
7273
- | ---------- | ---- | -------- | ----------- |
7274
- | total | number | no | |
7275
- | has_previous | boolean | no | |
7276
- | current | number | no | |
7277
- | has_next | boolean | no | |
7278
- | total_item_count | number | no | |
7279
-
7280
- ---
7281
-
7282
-
7283
-
7284
-
7285
7286
  #### [Coupon](#Coupon)
7286
7287
 
7287
7288
  | Properties | Type | Nullable | Description |
7288
7289
  | ---------- | ---- | -------- | ----------- |
7290
+ | title | string | no | |
7291
+ | coupon_value | number | no | |
7289
7292
  | message | string | no | |
7293
+ | expires_on | string | no | |
7290
7294
  | max_discount_value | number | no | |
7291
- | sub_title | string | no | |
7292
7295
  | is_applicable | boolean | no | |
7293
- | expires_on | string | no | |
7294
- | is_applied | boolean | no | |
7296
+ | sub_title | string | no | |
7295
7297
  | coupon_code | string | no | |
7296
- | coupon_value | number | no | |
7297
7298
  | minimum_cart_value | number | no | |
7298
- | title | string | no | |
7299
+ | is_applied | boolean | no | |
7299
7300
 
7300
7301
  ---
7301
7302
 
7302
7303
 
7303
7304
 
7304
7305
 
7305
- #### [GetCouponResponse](#GetCouponResponse)
7306
+ #### [PageCoupon](#PageCoupon)
7306
7307
 
7307
7308
  | Properties | Type | Nullable | Description |
7308
7309
  | ---------- | ---- | -------- | ----------- |
7309
- | page | [PageCoupon](#PageCoupon) | no | |
7310
- | available_coupon_list | [[Coupon](#Coupon)] | no | |
7310
+ | has_next | boolean | no | |
7311
+ | has_previous | boolean | no | |
7312
+ | total | number | no | |
7313
+ | total_item_count | number | no | |
7314
+ | current | number | no | |
7311
7315
 
7312
7316
  ---
7313
7317
 
7314
7318
 
7315
7319
 
7316
7320
 
7317
- #### [ApplyCouponRequest](#ApplyCouponRequest)
7321
+ #### [GetCouponResponse](#GetCouponResponse)
7318
7322
 
7319
7323
  | Properties | Type | Nullable | Description |
7320
7324
  | ---------- | ---- | -------- | ----------- |
7321
- | coupon_code | string | yes | Coupon code to be applied |
7325
+ | available_coupon_list | [[Coupon](#Coupon)] | no | |
7326
+ | page | [PageCoupon](#PageCoupon) | no | |
7322
7327
 
7323
7328
  ---
7324
7329
 
7325
7330
 
7326
7331
 
7327
7332
 
7328
- #### [OfferSeller](#OfferSeller)
7333
+ #### [ApplyCouponRequest](#ApplyCouponRequest)
7329
7334
 
7330
7335
  | Properties | Type | Nullable | Description |
7331
7336
  | ---------- | ---- | -------- | ----------- |
7332
- | uid | number | no | Seller id |
7333
- | name | string | no | |
7337
+ | coupon_code | string | yes | Coupon code to be applied |
7334
7338
 
7335
7339
  ---
7336
7340
 
@@ -7343,9 +7347,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7343
7347
  | ---------- | ---- | -------- | ----------- |
7344
7348
  | bulk_effective | number | no | Discounted per unit price for current offer object |
7345
7349
  | marked | number | no | Original price of product |
7346
- | effective | number | no | Current per unit price of product after existing deductions |
7347
7350
  | currency_code | string | no | Currency code for all amounts |
7348
7351
  | currency_symbol | string | no | Currency symbol for currency |
7352
+ | effective | number | no | Current per unit price of product after existing deductions |
7349
7353
 
7350
7354
  ---
7351
7355
 
@@ -7356,13 +7360,25 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7356
7360
 
7357
7361
  | Properties | Type | Nullable | Description |
7358
7362
  | ---------- | ---- | -------- | ----------- |
7359
- | price | [OfferPrice](#OfferPrice) | no | |
7360
- | total | number | no | Total price of offer quantity with discount |
7361
7363
  | margin | number | no | Percentage value of discount |
7362
- | auto_applied | boolean | no | Whether offer discount is auto applied in cart |
7363
- | quantity | number | no | Quantity on which offer is applicable |
7364
7364
  | type | string | no | Offer type |
7365
+ | auto_applied | boolean | no | Whether offer discount is auto applied in cart |
7366
+ | price | [OfferPrice](#OfferPrice) | no | |
7367
+ | total | number | no | Total price of offer quantity with discount |
7365
7368
  | best | boolean | no | Is true for best offer from all offers present for all sellers |
7369
+ | quantity | number | no | Quantity on which offer is applicable |
7370
+
7371
+ ---
7372
+
7373
+
7374
+
7375
+
7376
+ #### [OfferSeller](#OfferSeller)
7377
+
7378
+ | Properties | Type | Nullable | Description |
7379
+ | ---------- | ---- | -------- | ----------- |
7380
+ | name | string | no | |
7381
+ | uid | number | no | Seller id |
7366
7382
 
7367
7383
  ---
7368
7384
 
@@ -7373,8 +7389,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7373
7389
 
7374
7390
  | Properties | Type | Nullable | Description |
7375
7391
  | ---------- | ---- | -------- | ----------- |
7376
- | seller | [OfferSeller](#OfferSeller) | no | |
7377
7392
  | offers | [[OfferItem](#OfferItem)] | no | |
7393
+ | seller | [OfferSeller](#OfferSeller) | no | |
7378
7394
 
7379
7395
  ---
7380
7396
 
@@ -7419,28 +7435,30 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7419
7435
 
7420
7436
  | Properties | Type | Nullable | Description |
7421
7437
  | ---------- | ---- | -------- | ----------- |
7438
+ | geo_location | [GeoLocation](#GeoLocation) | no | |
7422
7439
  | area_code | string | no | |
7423
- | address_type | string | no | |
7440
+ | country_iso_code | string | no | |
7424
7441
  | landmark | string | no | |
7425
- | name | string | no | |
7426
- | tags | [string] | no | |
7427
- | country | string | no | |
7428
- | area | string | no | |
7429
- | phone | string | no | |
7430
- | checkout_mode | string | no | |
7431
- | email | string | no | |
7432
- | country_code | string | no | |
7433
- | city | string | no | |
7434
- | state | string | no | |
7435
- | area_code_slug | string | no | |
7436
- | geo_location | [GeoLocation](#GeoLocation) | no | |
7437
- | is_active | boolean | no | |
7438
7442
  | id | string | no | |
7443
+ | user_id | string | no | |
7439
7444
  | meta | string | no | |
7445
+ | area_code_slug | string | no | |
7446
+ | city | string | no | |
7447
+ | email | string | no | |
7440
7448
  | is_default_address | boolean | no | |
7449
+ | phone | string | no | |
7450
+ | area | string | no | |
7451
+ | country_phone_code | string | no | |
7441
7452
  | google_map_point | string | no | |
7442
- | user_id | string | no | |
7453
+ | checkout_mode | string | no | |
7454
+ | address_type | string | no | |
7455
+ | tags | [string] | no | |
7443
7456
  | address | string | no | |
7457
+ | state | string | no | |
7458
+ | name | string | no | |
7459
+ | is_active | boolean | no | |
7460
+ | country | string | no | |
7461
+ | country_code | string | no | |
7444
7462
 
7445
7463
  ---
7446
7464
 
@@ -7462,9 +7480,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7462
7480
 
7463
7481
  | Properties | Type | Nullable | Description |
7464
7482
  | ---------- | ---- | -------- | ----------- |
7465
- | is_default_address | boolean | no | |
7466
7483
  | success | boolean | no | |
7467
7484
  | id | string | no | |
7485
+ | is_default_address | boolean | no | |
7468
7486
 
7469
7487
  ---
7470
7488
 
@@ -7475,10 +7493,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7475
7493
 
7476
7494
  | Properties | Type | Nullable | Description |
7477
7495
  | ---------- | ---- | -------- | ----------- |
7478
- | is_default_address | boolean | no | |
7479
7496
  | success | boolean | no | |
7480
- | is_updated | boolean | no | |
7481
7497
  | id | string | no | |
7498
+ | is_updated | boolean | no | |
7499
+ | is_default_address | boolean | no | |
7482
7500
 
7483
7501
  ---
7484
7502
 
@@ -7489,8 +7507,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7489
7507
 
7490
7508
  | Properties | Type | Nullable | Description |
7491
7509
  | ---------- | ---- | -------- | ----------- |
7492
- | is_deleted | boolean | no | |
7493
7510
  | id | string | no | |
7511
+ | is_deleted | boolean | no | |
7494
7512
 
7495
7513
  ---
7496
7514
 
@@ -7501,9 +7519,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7501
7519
 
7502
7520
  | Properties | Type | Nullable | Description |
7503
7521
  | ---------- | ---- | -------- | ----------- |
7522
+ | id | string | no | |
7504
7523
  | cart_id | string | no | |
7505
7524
  | billing_address_id | string | no | |
7506
- | id | string | no | |
7507
7525
 
7508
7526
  ---
7509
7527
 
@@ -7515,11 +7533,11 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7515
7533
  | Properties | Type | Nullable | Description |
7516
7534
  | ---------- | ---- | -------- | ----------- |
7517
7535
  | aggregator_name | string | no | |
7518
- | address_id | string | no | |
7519
7536
  | id | string | no | |
7537
+ | address_id | string | no | |
7538
+ | payment_identifier | string | no | |
7520
7539
  | payment_mode | string | no | |
7521
7540
  | merchant_code | string | no | |
7522
- | payment_identifier | string | no | |
7523
7541
 
7524
7542
  ---
7525
7543
 
@@ -7530,11 +7548,11 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7530
7548
 
7531
7549
  | Properties | Type | Nullable | Description |
7532
7550
  | ---------- | ---- | -------- | ----------- |
7533
- | discount | number | no | |
7534
- | display_message_en | string | no | |
7535
- | valid | boolean | no | |
7536
- | title | string | no | |
7537
7551
  | code | string | no | |
7552
+ | title | string | no | |
7553
+ | valid | boolean | no | |
7554
+ | display_message_en | string | no | |
7555
+ | discount | number | no | |
7538
7556
 
7539
7557
  ---
7540
7558
 
@@ -7545,9 +7563,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7545
7563
 
7546
7564
  | Properties | Type | Nullable | Description |
7547
7565
  | ---------- | ---- | -------- | ----------- |
7548
- | message | string | no | |
7549
7566
  | success | boolean | yes | |
7550
7567
  | coupon_validity | [CouponValidity](#CouponValidity) | no | |
7568
+ | message | string | no | |
7551
7569
 
7552
7570
  ---
7553
7571
 
@@ -7558,16 +7576,16 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7558
7576
 
7559
7577
  | Properties | Type | Nullable | Description |
7560
7578
  | ---------- | ---- | -------- | ----------- |
7561
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
7562
- | fulfillment_id | number | no | |
7563
- | shipment_type | string | no | |
7564
7579
  | dp_options | string | no | |
7565
- | promise | [ShipmentPromise](#ShipmentPromise) | no | |
7566
- | dp_id | string | no | |
7567
- | box_type | string | no | |
7568
7580
  | shipments | number | no | |
7569
7581
  | order_type | string | no | |
7582
+ | dp_id | string | no | |
7570
7583
  | fulfillment_type | string | no | |
7584
+ | promise | [ShipmentPromise](#ShipmentPromise) | no | |
7585
+ | box_type | string | no | |
7586
+ | fulfillment_id | number | no | |
7587
+ | shipment_type | string | no | |
7588
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
7571
7589
 
7572
7590
  ---
7573
7591
 
@@ -7579,24 +7597,24 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7579
7597
  | Properties | Type | Nullable | Description |
7580
7598
  | ---------- | ---- | -------- | ----------- |
7581
7599
  | message | string | no | |
7582
- | error | boolean | no | |
7583
- | coupon_text | string | no | |
7600
+ | restrict_checkout | boolean | no | |
7601
+ | id | string | no | |
7602
+ | checkout_mode | string | no | |
7603
+ | uid | string | no | |
7584
7604
  | currency | [CartCurrency](#CartCurrency) | no | |
7605
+ | comment | string | no | |
7606
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
7607
+ | shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
7608
+ | error | boolean | no | |
7585
7609
  | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7586
- | uid | string | no | |
7587
- | checkout_mode | string | no | |
7610
+ | coupon_text | string | no | |
7611
+ | gstin | string | no | |
7588
7612
  | buy_now | boolean | no | |
7589
- | delivery_charge_info | string | no | |
7590
7613
  | is_valid | boolean | no | |
7591
- | gstin | string | no | |
7592
- | restrict_checkout | boolean | no | |
7614
+ | cart_id | number | no | |
7593
7615
  | last_modified | string | no | |
7616
+ | delivery_charge_info | string | no | |
7594
7617
  | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7595
- | id | string | no | |
7596
- | comment | string | no | |
7597
- | shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
7598
- | cart_id | number | no | |
7599
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
7600
7618
 
7601
7619
  ---
7602
7620
 
@@ -7607,9 +7625,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7607
7625
 
7608
7626
  | Properties | Type | Nullable | Description |
7609
7627
  | ---------- | ---- | -------- | ----------- |
7610
- | article_uid | string | yes | Article mongo id |
7611
7628
  | shipment_type | string | yes | Shipment delivery type |
7612
7629
  | quantity | number | no | Quantity of product in shipment |
7630
+ | article_uid | string | yes | Article mongo id |
7613
7631
 
7614
7632
  ---
7615
7633
 
@@ -7627,11 +7645,26 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7627
7645
 
7628
7646
 
7629
7647
 
7630
- #### [Files](#Files)
7648
+ #### [StaffCheckout](#StaffCheckout)
7631
7649
 
7632
7650
  | Properties | Type | Nullable | Description |
7633
7651
  | ---------- | ---- | -------- | ----------- |
7634
- | values | [string] | yes | |
7652
+ | user | string | yes | |
7653
+ | last_name | string | yes | |
7654
+ | employee_code | string | no | |
7655
+ | _id | string | yes | |
7656
+ | first_name | string | yes | |
7657
+
7658
+ ---
7659
+
7660
+
7661
+
7662
+
7663
+ #### [CartCheckoutCustomMeta](#CartCheckoutCustomMeta)
7664
+
7665
+ | Properties | Type | Nullable | Description |
7666
+ | ---------- | ---- | -------- | ----------- |
7667
+ | value | string | yes | |
7635
7668
  | key | string | yes | |
7636
7669
 
7637
7670
  ---
@@ -7639,14 +7672,12 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7639
7672
 
7640
7673
 
7641
7674
 
7642
- #### [StaffCheckout](#StaffCheckout)
7675
+ #### [Files](#Files)
7643
7676
 
7644
7677
  | Properties | Type | Nullable | Description |
7645
7678
  | ---------- | ---- | -------- | ----------- |
7646
- | _id | string | yes | |
7647
- | last_name | string | yes | |
7648
- | first_name | string | yes | |
7649
- | user | string | yes | |
7679
+ | key | string | yes | |
7680
+ | values | [string] | yes | |
7650
7681
 
7651
7682
  ---
7652
7683
 
@@ -7657,25 +7688,26 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7657
7688
 
7658
7689
  | Properties | Type | Nullable | Description |
7659
7690
  | ---------- | ---- | -------- | ----------- |
7660
- | aggregator | string | no | |
7691
+ | billing_address_id | string | no | |
7692
+ | extra_meta | string | no | |
7693
+ | billing_address | string | no | |
7694
+ | delivery_address | string | no | |
7695
+ | meta | string | no | |
7696
+ | address_id | string | no | |
7697
+ | staff | [StaffCheckout](#StaffCheckout) | no | |
7661
7698
  | payment_mode | string | yes | |
7662
- | merchant_code | string | no | |
7699
+ | payment_identifier | string | no | |
7700
+ | payment_params | string | no | |
7701
+ | pos | boolean | no | |
7702
+ | aggregator | string | no | |
7703
+ | pick_at_store_uid | number | no | |
7663
7704
  | payment_auto_confirm | boolean | no | |
7705
+ | custom_meta | [[CartCheckoutCustomMeta](#CartCheckoutCustomMeta)] | no | |
7664
7706
  | order_type | string | yes | |
7665
- | delivery_address | string | no | |
7666
7707
  | ordering_store | number | no | |
7667
7708
  | files | [[Files](#Files)] | no | List of file url |
7668
- | pick_at_store_uid | number | no | |
7669
- | pos | boolean | no | |
7670
- | extra_meta | string | no | |
7671
- | payment_params | string | no | |
7672
- | billing_address | string | no | |
7673
- | address_id | string | no | |
7674
- | billing_address_id | string | no | |
7675
- | staff | [StaffCheckout](#StaffCheckout) | no | |
7676
- | meta | string | no | |
7709
+ | merchant_code | string | no | |
7677
7710
  | callback_url | string | no | |
7678
- | payment_identifier | string | no | |
7679
7711
 
7680
7712
  ---
7681
7713
 
@@ -7686,35 +7718,35 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7686
7718
 
7687
7719
  | Properties | Type | Nullable | Description |
7688
7720
  | ---------- | ---- | -------- | ----------- |
7689
- | error_message | string | no | |
7690
- | cod_available | boolean | no | |
7691
7721
  | delivery_charges | number | no | |
7692
- | currency | [CartCurrency](#CartCurrency) | no | |
7693
- | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7694
- | store_emps | [string] | no | |
7695
- | checkout_mode | string | no | |
7696
- | buy_now | boolean | no | |
7697
- | gstin | string | no | |
7698
- | last_modified | string | no | |
7699
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7700
- | success | boolean | no | |
7701
- | cart_id | number | no | |
7702
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
7703
7722
  | message | string | no | |
7704
- | store_code | string | no | |
7723
+ | restrict_checkout | boolean | no | |
7724
+ | id | string | no | |
7725
+ | error_message | string | no | |
7705
7726
  | items | [[CartProductInfo](#CartProductInfo)] | no | |
7706
- | cod_charges | number | no | |
7707
- | coupon_text | string | no | |
7727
+ | comment | string | no | |
7728
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
7729
+ | gstin | string | no | |
7730
+ | buy_now | boolean | no | |
7731
+ | is_valid | boolean | no | |
7732
+ | last_modified | string | no | |
7733
+ | delivery_charge_order_value | number | no | |
7708
7734
  | order_id | string | no | |
7735
+ | checkout_mode | string | no | |
7709
7736
  | uid | string | no | |
7710
- | delivery_charge_info | string | no | |
7711
- | is_valid | boolean | no | |
7712
7737
  | cod_message | string | no | |
7713
- | delivery_charge_order_value | number | no | |
7714
- | restrict_checkout | boolean | no | |
7715
- | id | string | no | |
7738
+ | store_code | string | no | |
7739
+ | currency | [CartCurrency](#CartCurrency) | no | |
7716
7740
  | user_type | string | no | |
7717
- | comment | string | no | |
7741
+ | cod_available | boolean | no | |
7742
+ | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7743
+ | success | boolean | no | |
7744
+ | store_emps | [string] | no | |
7745
+ | cod_charges | number | no | |
7746
+ | coupon_text | string | no | |
7747
+ | cart_id | number | no | |
7748
+ | delivery_charge_info | string | no | |
7749
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7718
7750
 
7719
7751
  ---
7720
7752
 
@@ -7725,14 +7757,14 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7725
7757
 
7726
7758
  | Properties | Type | Nullable | Description |
7727
7759
  | ---------- | ---- | -------- | ----------- |
7760
+ | payment_confirm_url | string | no | |
7761
+ | order_id | string | no | |
7728
7762
  | message | string | no | |
7763
+ | success | boolean | no | |
7729
7764
  | cart | [CheckCart](#CheckCart) | no | |
7730
7765
  | app_intercept_url | string | no | |
7731
- | payment_confirm_url | string | no | |
7732
7766
  | callback_url | string | no | |
7733
7767
  | data | string | no | |
7734
- | order_id | string | no | |
7735
- | success | boolean | no | |
7736
7768
 
7737
7769
  ---
7738
7770
 
@@ -7779,8 +7811,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7779
7811
 
7780
7812
  | Properties | Type | Nullable | Description |
7781
7813
  | ---------- | ---- | -------- | ----------- |
7782
- | available_modes | [string] | no | Available delivery modes |
7783
7814
  | pickup_stores | [number] | no | Store pick up available store uids |
7815
+ | available_modes | [string] | no | Available delivery modes |
7784
7816
 
7785
7817
  ---
7786
7818
 
@@ -7791,21 +7823,21 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7791
7823
 
7792
7824
  | Properties | Type | Nullable | Description |
7793
7825
  | ---------- | ---- | -------- | ----------- |
7794
- | area_code | string | no | |
7795
- | address_type | string | no | |
7826
+ | area | string | no | |
7796
7827
  | pincode | number | no | |
7797
- | landmark | string | no | |
7798
- | store_code | string | no | |
7828
+ | area_code | string | no | |
7799
7829
  | area_code_slug | string | no | |
7800
7830
  | name | string | no | |
7801
7831
  | city | string | no | |
7802
- | id | number | no | |
7803
- | country | string | no | |
7804
- | state | string | no | |
7805
7832
  | email | string | no | |
7806
- | area | string | no | |
7833
+ | landmark | string | no | |
7834
+ | id | number | no | |
7835
+ | store_code | string | no | |
7807
7836
  | phone | string | no | |
7837
+ | address_type | string | no | |
7838
+ | country | string | no | |
7808
7839
  | uid | number | no | |
7840
+ | state | string | no | |
7809
7841
  | address | string | no | |
7810
7842
 
7811
7843
  ---
@@ -7828,8 +7860,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7828
7860
 
7829
7861
  | Properties | Type | Nullable | Description |
7830
7862
  | ---------- | ---- | -------- | ----------- |
7831
- | meta | string | no | Staff, Ordering store or any other data. This data will be used to generate link as well as sent as shared details. |
7832
7863
  | id | string | no | Cart uid for generating sharing |
7864
+ | meta | string | no | Staff, Ordering store or any other data. This data will be used to generate link as well as sent as shared details. |
7833
7865
 
7834
7866
  ---
7835
7867
 
@@ -7840,8 +7872,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7840
7872
 
7841
7873
  | Properties | Type | Nullable | Description |
7842
7874
  | ---------- | ---- | -------- | ----------- |
7843
- | token | string | no | Short url unique id |
7844
7875
  | share_url | string | no | Short shareable final url |
7876
+ | token | string | no | Short url unique id |
7845
7877
 
7846
7878
  ---
7847
7879
 
@@ -7852,11 +7884,11 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7852
7884
 
7853
7885
  | Properties | Type | Nullable | Description |
7854
7886
  | ---------- | ---- | -------- | ----------- |
7855
- | token | string | no | Short link id |
7856
7887
  | user | string | no | User details of who generated share link |
7857
- | created_on | string | no | |
7858
7888
  | source | string | no | Share link device and other source information |
7889
+ | created_on | string | no | |
7859
7890
  | meta | string | no | Meta data sent while generating share cart link |
7891
+ | token | string | no | Short link id |
7860
7892
 
7861
7893
  ---
7862
7894
 
@@ -7867,25 +7899,25 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7867
7899
 
7868
7900
  | Properties | Type | Nullable | Description |
7869
7901
  | ---------- | ---- | -------- | ----------- |
7870
- | currency | [CartCurrency](#CartCurrency) | no | |
7871
- | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7872
- | checkout_mode | string | no | |
7873
- | buy_now | boolean | no | |
7874
- | gstin | string | no | |
7875
- | last_modified | string | no | |
7876
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7877
- | cart_id | number | no | |
7878
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
7902
+ | shared_cart_details | [SharedCartDetails](#SharedCartDetails) | no | |
7879
7903
  | message | string | no | |
7880
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
7881
- | coupon_text | string | no | |
7882
- | uid | string | no | |
7883
- | delivery_charge_info | string | no | |
7884
- | is_valid | boolean | no | |
7885
7904
  | restrict_checkout | boolean | no | |
7886
- | shared_cart_details | [SharedCartDetails](#SharedCartDetails) | no | |
7887
7905
  | id | string | no | |
7906
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
7888
7907
  | comment | string | no | |
7908
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
7909
+ | gstin | string | no | |
7910
+ | buy_now | boolean | no | |
7911
+ | is_valid | boolean | no | |
7912
+ | last_modified | string | no | |
7913
+ | checkout_mode | string | no | |
7914
+ | uid | string | no | |
7915
+ | currency | [CartCurrency](#CartCurrency) | no | |
7916
+ | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
7917
+ | coupon_text | string | no | |
7918
+ | cart_id | number | no | |
7919
+ | delivery_charge_info | string | no | |
7920
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
7889
7921
 
7890
7922
  ---
7891
7923
 
@@ -7896,8 +7928,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
7896
7928
 
7897
7929
  | Properties | Type | Nullable | Description |
7898
7930
  | ---------- | ---- | -------- | ----------- |
7899
- | cart | [SharedCart](#SharedCart) | no | |
7900
7931
  | error | string | no | |
7932
+ | cart | [SharedCart](#SharedCart) | no | |
7901
7933
 
7902
7934
  ---
7903
7935