@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
@@ -3997,72 +3997,77 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
3997
3997
 
3998
3998
  | Properties | Type | Nullable | Description |
3999
3999
  | ---------- | ---- | -------- | ----------- |
4000
- | payable_by | string | yes | |
4001
4000
  | payable_category | string | yes | |
4001
+ | payable_by | string | yes | |
4002
4002
 
4003
4003
  ---
4004
4004
 
4005
4005
 
4006
4006
 
4007
4007
 
4008
- #### [Validity](#Validity)
4008
+ #### [DisplayMetaDict](#DisplayMetaDict)
4009
4009
 
4010
4010
  | Properties | Type | Nullable | Description |
4011
4011
  | ---------- | ---- | -------- | ----------- |
4012
- | priority | number | no | |
4012
+ | title | string | no | |
4013
+ | subtitle | string | no | |
4013
4014
 
4014
4015
  ---
4015
4016
 
4016
4017
 
4017
4018
 
4018
4019
 
4019
- #### [DisplayMetaDict](#DisplayMetaDict)
4020
+ #### [DisplayMeta](#DisplayMeta)
4020
4021
 
4021
4022
  | Properties | Type | Nullable | Description |
4022
4023
  | ---------- | ---- | -------- | ----------- |
4024
+ | apply | [DisplayMetaDict](#DisplayMetaDict) | no | |
4025
+ | description | string | no | |
4026
+ | remove | [DisplayMetaDict](#DisplayMetaDict) | no | |
4023
4027
  | title | string | no | |
4024
4028
  | subtitle | string | no | |
4029
+ | auto | [DisplayMetaDict](#DisplayMetaDict) | no | |
4025
4030
 
4026
4031
  ---
4027
4032
 
4028
4033
 
4029
4034
 
4030
4035
 
4031
- #### [DisplayMeta](#DisplayMeta)
4036
+ #### [Validity](#Validity)
4032
4037
 
4033
4038
  | Properties | Type | Nullable | Description |
4034
4039
  | ---------- | ---- | -------- | ----------- |
4035
- | remove | [DisplayMetaDict](#DisplayMetaDict) | no | |
4036
- | subtitle | string | no | |
4037
- | description | string | no | |
4038
- | apply | [DisplayMetaDict](#DisplayMetaDict) | no | |
4039
- | title | string | no | |
4040
- | auto | [DisplayMetaDict](#DisplayMetaDict) | no | |
4040
+ | priority | number | no | |
4041
4041
 
4042
4042
  ---
4043
4043
 
4044
4044
 
4045
4045
 
4046
4046
 
4047
- #### [CouponDateMeta](#CouponDateMeta)
4047
+ #### [CouponSchedule](#CouponSchedule)
4048
4048
 
4049
4049
  | Properties | Type | Nullable | Description |
4050
4050
  | ---------- | ---- | -------- | ----------- |
4051
- | created_on | string | no | |
4052
- | modified_on | string | no | |
4051
+ | start | string | no | |
4052
+ | next_schedule | [string] | no | |
4053
+ | duration | number | no | |
4054
+ | end | string | no | |
4055
+ | cron | string | no | |
4053
4056
 
4054
4057
  ---
4055
4058
 
4056
4059
 
4057
4060
 
4058
4061
 
4059
- #### [Validation](#Validation)
4062
+ #### [Rule](#Rule)
4060
4063
 
4061
4064
  | Properties | Type | Nullable | Description |
4062
4065
  | ---------- | ---- | -------- | ----------- |
4063
- | app_id | [string] | no | |
4064
- | anonymous | boolean | no | |
4065
- | user_registered_after | string | no | |
4066
+ | max | number | no | |
4067
+ | min | number | no | |
4068
+ | discount_qty | number | no | |
4069
+ | key | number | no | |
4070
+ | value | number | no | |
4066
4071
 
4067
4072
  ---
4068
4073
 
@@ -4073,13 +4078,13 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4073
4078
 
4074
4079
  | Properties | Type | Nullable | Description |
4075
4080
  | ---------- | ---- | -------- | ----------- |
4081
+ | applicable_on | string | yes | |
4076
4082
  | is_exact | boolean | no | |
4077
- | auto_apply | boolean | no | |
4083
+ | currency_code | string | no | |
4078
4084
  | value_type | string | yes | |
4079
4085
  | scope | [string] | no | |
4080
- | currency_code | string | no | |
4086
+ | auto_apply | boolean | no | |
4081
4087
  | calculate_on | string | yes | |
4082
- | applicable_on | string | yes | |
4083
4088
  | type | string | yes | |
4084
4089
 
4085
4090
  ---
@@ -4087,144 +4092,147 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4087
4092
 
4088
4093
 
4089
4094
 
4090
- #### [PriceRange](#PriceRange)
4095
+ #### [CouponAction](#CouponAction)
4091
4096
 
4092
4097
  | Properties | Type | Nullable | Description |
4093
4098
  | ---------- | ---- | -------- | ----------- |
4094
- | max | number | no | |
4095
- | min | number | no | |
4099
+ | txn_mode | string | no | |
4100
+ | action_date | string | no | |
4096
4101
 
4097
4102
  ---
4098
4103
 
4099
4104
 
4100
4105
 
4101
4106
 
4102
- #### [PaymentAllowValue](#PaymentAllowValue)
4107
+ #### [CouponDateMeta](#CouponDateMeta)
4103
4108
 
4104
4109
  | Properties | Type | Nullable | Description |
4105
4110
  | ---------- | ---- | -------- | ----------- |
4106
- | max | number | no | |
4111
+ | modified_on | string | no | |
4112
+ | created_on | string | no | |
4107
4113
 
4108
4114
  ---
4109
4115
 
4110
4116
 
4111
4117
 
4112
4118
 
4113
- #### [PaymentModes](#PaymentModes)
4119
+ #### [Identifier](#Identifier)
4114
4120
 
4115
4121
  | Properties | Type | Nullable | Description |
4116
4122
  | ---------- | ---- | -------- | ----------- |
4117
- | codes | [string] | no | |
4118
- | uses | [PaymentAllowValue](#PaymentAllowValue) | no | |
4119
- | types | [string] | no | |
4120
- | networks | [string] | no | |
4123
+ | item_id | [number] | no | |
4124
+ | user_id | [string] | no | |
4125
+ | collection_id | [string] | no | |
4126
+ | store_id | [number] | no | |
4127
+ | brand_id | [number] | no | |
4128
+ | category_id | [number] | no | |
4129
+ | article_id | [string] | no | |
4130
+ | exclude_brand_id | [number] | no | |
4131
+ | company_id | [number] | no | |
4121
4132
 
4122
4133
  ---
4123
4134
 
4124
4135
 
4125
4136
 
4126
4137
 
4127
- #### [PostOrder](#PostOrder)
4138
+ #### [PaymentAllowValue](#PaymentAllowValue)
4128
4139
 
4129
4140
  | Properties | Type | Nullable | Description |
4130
4141
  | ---------- | ---- | -------- | ----------- |
4131
- | return_allowed | boolean | no | |
4132
- | cancellation_allowed | boolean | no | |
4142
+ | max | number | no | |
4133
4143
 
4134
4144
  ---
4135
4145
 
4136
4146
 
4137
4147
 
4138
4148
 
4139
- #### [UsesRemaining](#UsesRemaining)
4149
+ #### [PaymentModes](#PaymentModes)
4140
4150
 
4141
4151
  | Properties | Type | Nullable | Description |
4142
4152
  | ---------- | ---- | -------- | ----------- |
4143
- | total | number | no | |
4144
- | app | number | no | |
4145
- | user | number | no | |
4153
+ | codes | [string] | no | |
4154
+ | uses | [PaymentAllowValue](#PaymentAllowValue) | no | |
4155
+ | networks | [string] | no | |
4156
+ | types | [string] | no | |
4146
4157
 
4147
4158
  ---
4148
4159
 
4149
4160
 
4150
4161
 
4151
4162
 
4152
- #### [UsesRestriction](#UsesRestriction)
4163
+ #### [UsesRemaining](#UsesRemaining)
4153
4164
 
4154
4165
  | Properties | Type | Nullable | Description |
4155
4166
  | ---------- | ---- | -------- | ----------- |
4156
- | remaining | [UsesRemaining](#UsesRemaining) | no | |
4157
- | maximum | [UsesRemaining](#UsesRemaining) | no | |
4167
+ | app | number | no | |
4168
+ | total | number | no | |
4169
+ | user | number | no | |
4158
4170
 
4159
4171
  ---
4160
4172
 
4161
4173
 
4162
4174
 
4163
4175
 
4164
- #### [BulkBundleRestriction](#BulkBundleRestriction)
4176
+ #### [UsesRestriction](#UsesRestriction)
4165
4177
 
4166
4178
  | Properties | Type | Nullable | Description |
4167
4179
  | ---------- | ---- | -------- | ----------- |
4168
- | multi_store_allowed | boolean | yes | |
4180
+ | remaining | [UsesRemaining](#UsesRemaining) | no | |
4181
+ | maximum | [UsesRemaining](#UsesRemaining) | no | |
4169
4182
 
4170
4183
  ---
4171
4184
 
4172
4185
 
4173
4186
 
4174
4187
 
4175
- #### [Restrictions](#Restrictions)
4188
+ #### [PriceRange](#PriceRange)
4176
4189
 
4177
4190
  | Properties | Type | Nullable | Description |
4178
4191
  | ---------- | ---- | -------- | ----------- |
4179
- | price_range | [PriceRange](#PriceRange) | no | |
4180
- | payments | [String: [PaymentModes](#PaymentModes)] | no | |
4181
- | ordering_stores | [number] | no | |
4182
- | post_order | [PostOrder](#PostOrder) | no | |
4183
- | user_groups | [number] | no | |
4184
- | coupon_allowed | boolean | no | |
4185
- | uses | [UsesRestriction](#UsesRestriction) | no | |
4186
- | platforms | [string] | no | |
4187
- | bulk_bundle | [BulkBundleRestriction](#BulkBundleRestriction) | no | |
4192
+ | min | number | no | |
4193
+ | max | number | no | |
4188
4194
 
4189
4195
  ---
4190
4196
 
4191
4197
 
4192
4198
 
4193
4199
 
4194
- #### [State](#State)
4200
+ #### [BulkBundleRestriction](#BulkBundleRestriction)
4195
4201
 
4196
4202
  | Properties | Type | Nullable | Description |
4197
4203
  | ---------- | ---- | -------- | ----------- |
4198
- | is_display | boolean | no | |
4199
- | is_archived | boolean | no | |
4200
- | is_public | boolean | no | |
4204
+ | multi_store_allowed | boolean | yes | |
4201
4205
 
4202
4206
  ---
4203
4207
 
4204
4208
 
4205
4209
 
4206
4210
 
4207
- #### [CouponAction](#CouponAction)
4211
+ #### [PostOrder](#PostOrder)
4208
4212
 
4209
4213
  | Properties | Type | Nullable | Description |
4210
4214
  | ---------- | ---- | -------- | ----------- |
4211
- | txn_mode | string | no | |
4212
- | action_date | string | no | |
4215
+ | return_allowed | boolean | no | |
4216
+ | cancellation_allowed | boolean | no | |
4213
4217
 
4214
4218
  ---
4215
4219
 
4216
4220
 
4217
4221
 
4218
4222
 
4219
- #### [CouponSchedule](#CouponSchedule)
4223
+ #### [Restrictions](#Restrictions)
4220
4224
 
4221
4225
  | Properties | Type | Nullable | Description |
4222
4226
  | ---------- | ---- | -------- | ----------- |
4223
- | duration | number | no | |
4224
- | cron | string | no | |
4225
- | end | string | no | |
4226
- | next_schedule | [string] | no | |
4227
- | start | string | no | |
4227
+ | ordering_stores | [number] | no | |
4228
+ | user_groups | [number] | no | |
4229
+ | payments | [String: [PaymentModes](#PaymentModes)] | no | |
4230
+ | platforms | [string] | no | |
4231
+ | uses | [UsesRestriction](#UsesRestriction) | no | |
4232
+ | price_range | [PriceRange](#PriceRange) | no | |
4233
+ | coupon_allowed | boolean | no | |
4234
+ | bulk_bundle | [BulkBundleRestriction](#BulkBundleRestriction) | no | |
4235
+ | post_order | [PostOrder](#PostOrder) | no | |
4228
4236
 
4229
4237
  ---
4230
4238
 
@@ -4235,42 +4243,34 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4235
4243
 
4236
4244
  | Properties | Type | Nullable | Description |
4237
4245
  | ---------- | ---- | -------- | ----------- |
4238
- | modified_by | string | no | |
4239
4246
  | created_by | string | no | |
4247
+ | modified_by | string | no | |
4240
4248
 
4241
4249
  ---
4242
4250
 
4243
4251
 
4244
4252
 
4245
4253
 
4246
- #### [Identifier](#Identifier)
4254
+ #### [State](#State)
4247
4255
 
4248
4256
  | Properties | Type | Nullable | Description |
4249
4257
  | ---------- | ---- | -------- | ----------- |
4250
- | article_id | [string] | no | |
4251
- | category_id | [number] | no | |
4252
- | collection_id | [string] | no | |
4253
- | company_id | [number] | no | |
4254
- | user_id | [string] | no | |
4255
- | item_id | [number] | no | |
4256
- | exclude_brand_id | [number] | no | |
4257
- | store_id | [number] | no | |
4258
- | brand_id | [number] | no | |
4258
+ | is_public | boolean | no | |
4259
+ | is_archived | boolean | no | |
4260
+ | is_display | boolean | no | |
4259
4261
 
4260
4262
  ---
4261
4263
 
4262
4264
 
4263
4265
 
4264
4266
 
4265
- #### [Rule](#Rule)
4267
+ #### [Validation](#Validation)
4266
4268
 
4267
4269
  | Properties | Type | Nullable | Description |
4268
4270
  | ---------- | ---- | -------- | ----------- |
4269
- | max | number | no | |
4270
- | discount_qty | number | no | |
4271
- | value | number | no | |
4272
- | min | number | no | |
4273
- | key | number | no | |
4271
+ | anonymous | boolean | no | |
4272
+ | user_registered_after | string | no | |
4273
+ | app_id | [string] | no | |
4274
4274
 
4275
4275
  ---
4276
4276
 
@@ -4282,21 +4282,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4282
4282
  | Properties | Type | Nullable | Description |
4283
4283
  | ---------- | ---- | -------- | ----------- |
4284
4284
  | ownership | [Ownership](#Ownership) | yes | |
4285
- | validity | [Validity](#Validity) | yes | |
4286
4285
  | display_meta | [DisplayMeta](#DisplayMeta) | yes | |
4287
- | date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
4288
- | validation | [Validation](#Validation) | no | |
4286
+ | validity | [Validity](#Validity) | yes | |
4287
+ | _schedule | [CouponSchedule](#CouponSchedule) | no | |
4288
+ | rule | [[Rule](#Rule)] | yes | |
4289
4289
  | rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
4290
+ | code | string | yes | |
4291
+ | action | [CouponAction](#CouponAction) | no | |
4292
+ | date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
4293
+ | identifiers | [Identifier](#Identifier) | yes | |
4290
4294
  | type_slug | string | yes | |
4291
4295
  | restrictions | [Restrictions](#Restrictions) | no | |
4292
- | state | [State](#State) | no | |
4293
- | action | [CouponAction](#CouponAction) | no | |
4294
- | _schedule | [CouponSchedule](#CouponSchedule) | no | |
4295
4296
  | author | [CouponAuthor](#CouponAuthor) | no | |
4297
+ | state | [State](#State) | no | |
4298
+ | validation | [Validation](#Validation) | no | |
4296
4299
  | tags | [string] | no | |
4297
- | identifiers | [Identifier](#Identifier) | yes | |
4298
- | rule | [[Rule](#Rule)] | yes | |
4299
- | code | string | yes | |
4300
4300
 
4301
4301
  ---
4302
4302
 
@@ -4307,15 +4307,15 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4307
4307
 
4308
4308
  | Properties | Type | Nullable | Description |
4309
4309
  | ---------- | ---- | -------- | ----------- |
4310
- | current | number | no | Current page no |
4311
4310
  | last_id | string | no | Last objects id |
4311
+ | next_id | string | no | Cursor id for next set of records. |
4312
4312
  | has_previous | boolean | no | True if more records are present for previous pages. Sent for cursor pagination |
4313
- | size | number | no | Current request page size |
4314
4313
  | has_next | boolean | no | True if more records are present for next pages |
4315
- | next_id | string | no | Cursor id for next set of records. |
4314
+ | size | number | no | Current request page size |
4315
+ | current | number | no | Current page no |
4316
4316
  | item_total | number | no | Total coupon count in system |
4317
- | type | string | yes | |
4318
4317
  | page | number | no | Page requested |
4318
+ | type | string | yes | |
4319
4319
 
4320
4320
  ---
4321
4321
 
@@ -4363,21 +4363,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4363
4363
  | Properties | Type | Nullable | Description |
4364
4364
  | ---------- | ---- | -------- | ----------- |
4365
4365
  | ownership | [Ownership](#Ownership) | yes | |
4366
- | validity | [Validity](#Validity) | yes | |
4367
4366
  | display_meta | [DisplayMeta](#DisplayMeta) | yes | |
4368
- | date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
4369
- | validation | [Validation](#Validation) | no | |
4367
+ | validity | [Validity](#Validity) | yes | |
4368
+ | _schedule | [CouponSchedule](#CouponSchedule) | no | |
4369
+ | rule | [[Rule](#Rule)] | yes | |
4370
4370
  | rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
4371
+ | code | string | yes | |
4372
+ | action | [CouponAction](#CouponAction) | no | |
4373
+ | date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
4374
+ | identifiers | [Identifier](#Identifier) | yes | |
4371
4375
  | type_slug | string | yes | |
4372
4376
  | restrictions | [Restrictions](#Restrictions) | no | |
4373
- | state | [State](#State) | no | |
4374
- | action | [CouponAction](#CouponAction) | no | |
4375
- | _schedule | [CouponSchedule](#CouponSchedule) | no | |
4376
4377
  | author | [CouponAuthor](#CouponAuthor) | no | |
4378
+ | state | [State](#State) | no | |
4379
+ | validation | [Validation](#Validation) | no | |
4377
4380
  | tags | [string] | no | |
4378
- | identifiers | [Identifier](#Identifier) | yes | |
4379
- | rule | [[Rule](#Rule)] | yes | |
4380
- | code | string | yes | |
4381
4381
 
4382
4382
  ---
4383
4383
 
@@ -4396,84 +4396,112 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4396
4396
 
4397
4397
 
4398
4398
 
4399
- #### [PromotionDateMeta](#PromotionDateMeta)
4399
+ #### [PromotionSchedule](#PromotionSchedule)
4400
4400
 
4401
4401
  | Properties | Type | Nullable | Description |
4402
4402
  | ---------- | ---- | -------- | ----------- |
4403
- | created_on | string | no | |
4404
- | modified_on | string | no | |
4403
+ | start | string | yes | |
4404
+ | next_schedule | [string] | no | |
4405
+ | duration | number | no | |
4406
+ | end | string | no | |
4407
+ | published | boolean | yes | |
4408
+ | cron | string | no | |
4405
4409
 
4406
4410
  ---
4407
4411
 
4408
4412
 
4409
4413
 
4410
4414
 
4411
- #### [PaymentAllowValue1](#PaymentAllowValue1)
4415
+ #### [PromotionAuthor](#PromotionAuthor)
4412
4416
 
4413
4417
  | Properties | Type | Nullable | Description |
4414
4418
  | ---------- | ---- | -------- | ----------- |
4415
- | max | number | no | |
4419
+ | created_by | string | no | |
4420
+ | modified_by | string | no | |
4416
4421
 
4417
4422
  ---
4418
4423
 
4419
4424
 
4420
4425
 
4421
4426
 
4422
- #### [PromotionPaymentModes](#PromotionPaymentModes)
4427
+ #### [Visibility](#Visibility)
4423
4428
 
4424
4429
  | Properties | Type | Nullable | Description |
4425
4430
  | ---------- | ---- | -------- | ----------- |
4426
- | codes | [string] | no | |
4427
- | uses | [PaymentAllowValue1](#PaymentAllowValue1) | no | |
4428
- | type | string | yes | |
4431
+ | pdp | boolean | yes | |
4432
+ | coupon_list | boolean | yes | |
4429
4433
 
4430
4434
  ---
4431
4435
 
4432
4436
 
4433
4437
 
4434
4438
 
4435
- #### [PostOrder1](#PostOrder1)
4439
+ #### [UserRegistered](#UserRegistered)
4436
4440
 
4437
4441
  | Properties | Type | Nullable | Description |
4438
4442
  | ---------- | ---- | -------- | ----------- |
4439
- | return_allowed | boolean | no | |
4440
- | cancellation_allowed | boolean | no | |
4443
+ | start | string | no | |
4444
+ | end | string | no | |
4441
4445
 
4442
4446
  ---
4443
4447
 
4444
4448
 
4445
4449
 
4446
4450
 
4447
- #### [UsesRemaining1](#UsesRemaining1)
4451
+ #### [PaymentAllowValue1](#PaymentAllowValue1)
4448
4452
 
4449
4453
  | Properties | Type | Nullable | Description |
4450
4454
  | ---------- | ---- | -------- | ----------- |
4451
- | total | number | no | |
4452
- | user | number | no | |
4455
+ | max | number | no | |
4453
4456
 
4454
4457
  ---
4455
4458
 
4456
4459
 
4457
4460
 
4458
4461
 
4459
- #### [UsesRestriction1](#UsesRestriction1)
4462
+ #### [PromotionPaymentModes](#PromotionPaymentModes)
4460
4463
 
4461
4464
  | Properties | Type | Nullable | Description |
4462
4465
  | ---------- | ---- | -------- | ----------- |
4463
- | remaining | [UsesRemaining1](#UsesRemaining1) | no | |
4464
- | maximum | [UsesRemaining1](#UsesRemaining1) | no | |
4466
+ | codes | [string] | no | |
4467
+ | uses | [PaymentAllowValue1](#PaymentAllowValue1) | no | |
4468
+ | type | string | yes | |
4465
4469
 
4466
4470
  ---
4467
4471
 
4468
4472
 
4469
4473
 
4470
4474
 
4471
- #### [UserRegistered](#UserRegistered)
4475
+ #### [UsesRemaining1](#UsesRemaining1)
4472
4476
 
4473
4477
  | Properties | Type | Nullable | Description |
4474
4478
  | ---------- | ---- | -------- | ----------- |
4475
- | start | string | no | |
4476
- | end | string | no | |
4479
+ | total | number | no | |
4480
+ | user | number | no | |
4481
+
4482
+ ---
4483
+
4484
+
4485
+
4486
+
4487
+ #### [UsesRestriction1](#UsesRestriction1)
4488
+
4489
+ | Properties | Type | Nullable | Description |
4490
+ | ---------- | ---- | -------- | ----------- |
4491
+ | remaining | [UsesRemaining1](#UsesRemaining1) | no | |
4492
+ | maximum | [UsesRemaining1](#UsesRemaining1) | no | |
4493
+
4494
+ ---
4495
+
4496
+
4497
+
4498
+
4499
+ #### [PostOrder1](#PostOrder1)
4500
+
4501
+ | Properties | Type | Nullable | Description |
4502
+ | ---------- | ---- | -------- | ----------- |
4503
+ | return_allowed | boolean | no | |
4504
+ | cancellation_allowed | boolean | no | |
4477
4505
 
4478
4506
  ---
4479
4507
 
@@ -4484,15 +4512,15 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4484
4512
 
4485
4513
  | Properties | Type | Nullable | Description |
4486
4514
  | ---------- | ---- | -------- | ----------- |
4487
- | order_quantity | number | no | |
4488
- | payments | [[PromotionPaymentModes](#PromotionPaymentModes)] | no | |
4489
- | post_order | [PostOrder1](#PostOrder1) | no | |
4515
+ | user_registered | [UserRegistered](#UserRegistered) | no | |
4490
4516
  | user_groups | [number] | no | |
4491
- | anonymous_users | boolean | no | |
4492
- | uses | [UsesRestriction1](#UsesRestriction1) | yes | |
4493
- | platforms | [string] | no | |
4494
4517
  | user_id | [string] | no | |
4495
- | user_registered | [UserRegistered](#UserRegistered) | no | |
4518
+ | payments | [[PromotionPaymentModes](#PromotionPaymentModes)] | no | |
4519
+ | platforms | [string] | no | |
4520
+ | uses | [UsesRestriction1](#UsesRestriction1) | yes | |
4521
+ | order_quantity | number | no | |
4522
+ | anonymous_users | boolean | no | |
4523
+ | post_order | [PostOrder1](#PostOrder1) | no | |
4496
4524
 
4497
4525
  ---
4498
4526
 
@@ -4518,8 +4546,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4518
4546
  | greater_than | number | no | |
4519
4547
  | less_than | number | no | |
4520
4548
  | equals | number | no | |
4521
- | less_than_equals | number | no | |
4522
4549
  | greater_than_equals | number | no | |
4550
+ | less_than_equals | number | no | |
4523
4551
 
4524
4552
  ---
4525
4553
 
@@ -4530,22 +4558,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4530
4558
 
4531
4559
  | Properties | Type | Nullable | Description |
4532
4560
  | ---------- | ---- | -------- | ----------- |
4533
- | item_sku | [string] | no | |
4534
- | item_exclude_brand | [number] | no | |
4561
+ | cart_quantity | [CompareObject](#CompareObject) | no | |
4535
4562
  | item_exclude_company | [number] | no | |
4536
- | buy_rules | [string] | no | |
4537
- | item_exclude_store | [number] | no | |
4538
4563
  | item_brand | [number] | no | |
4539
- | item_size | [string] | no | |
4540
- | cart_quantity | [CompareObject](#CompareObject) | no | |
4564
+ | item_sku | [string] | no | |
4541
4565
  | item_id | [number] | no | |
4542
- | all_items | boolean | no | |
4543
4566
  | item_company | [number] | no | |
4544
4567
  | item_exclude_sku | [string] | no | |
4545
- | cart_total | [CompareObject](#CompareObject) | no | |
4546
- | item_store | [number] | no | |
4568
+ | buy_rules | [string] | no | |
4569
+ | item_exclude_store | [number] | no | |
4570
+ | item_size | [string] | no | |
4547
4571
  | item_category | [number] | no | |
4548
4572
  | item_exclude_category | [number] | no | |
4573
+ | cart_total | [CompareObject](#CompareObject) | no | |
4574
+ | all_items | boolean | no | |
4575
+ | item_exclude_brand | [number] | no | |
4576
+ | item_store | [number] | no | |
4549
4577
 
4550
4578
  ---
4551
4579
 
@@ -4556,13 +4584,13 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4556
4584
 
4557
4585
  | Properties | Type | Nullable | Description |
4558
4586
  | ---------- | ---- | -------- | ----------- |
4559
- | discount_price | number | no | |
4560
4587
  | discount_percentage | number | no | |
4561
- | max_discount_amount | number | no | |
4562
4588
  | max_offer_quantity | number | no | |
4563
- | discount_amount | number | no | |
4564
- | min_offer_quantity | number | no | |
4589
+ | max_discount_amount | number | no | |
4565
4590
  | code | string | no | |
4591
+ | min_offer_quantity | number | no | |
4592
+ | discount_amount | number | no | |
4593
+ | discount_price | number | no | |
4566
4594
 
4567
4595
  ---
4568
4596
 
@@ -4573,8 +4601,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4573
4601
 
4574
4602
  | Properties | Type | Nullable | Description |
4575
4603
  | ---------- | ---- | -------- | ----------- |
4576
- | buy_condition | string | yes | |
4577
4604
  | item_criteria | [ItemCriteria](#ItemCriteria) | yes | |
4605
+ | buy_condition | string | yes | |
4578
4606
  | offer | [DiscountOffer](#DiscountOffer) | yes | |
4579
4607
  | discount_type | string | yes | |
4580
4608
 
@@ -4583,13 +4611,12 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4583
4611
 
4584
4612
 
4585
4613
 
4586
- #### [DisplayMeta1](#DisplayMeta1)
4614
+ #### [PromotionDateMeta](#PromotionDateMeta)
4587
4615
 
4588
4616
  | Properties | Type | Nullable | Description |
4589
4617
  | ---------- | ---- | -------- | ----------- |
4590
- | name | string | no | |
4591
- | offer_text | string | no | |
4592
- | description | string | no | |
4618
+ | modified_on | string | no | |
4619
+ | created_on | string | no | |
4593
4620
 
4594
4621
  ---
4595
4622
 
@@ -4600,48 +4627,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4600
4627
 
4601
4628
  | Properties | Type | Nullable | Description |
4602
4629
  | ---------- | ---- | -------- | ----------- |
4603
- | payable_by | string | yes | |
4604
4630
  | payable_category | string | yes | |
4631
+ | payable_by | string | yes | |
4605
4632
 
4606
4633
  ---
4607
4634
 
4608
4635
 
4609
4636
 
4610
4637
 
4611
- #### [Visibility](#Visibility)
4612
-
4613
- | Properties | Type | Nullable | Description |
4614
- | ---------- | ---- | -------- | ----------- |
4615
- | pdp | boolean | yes | |
4616
- | coupon_list | boolean | yes | |
4617
-
4618
- ---
4619
-
4620
-
4621
-
4622
-
4623
- #### [PromotionSchedule](#PromotionSchedule)
4624
-
4625
- | Properties | Type | Nullable | Description |
4626
- | ---------- | ---- | -------- | ----------- |
4627
- | duration | number | no | |
4628
- | cron | string | no | |
4629
- | end | string | no | |
4630
- | published | boolean | yes | |
4631
- | next_schedule | [string] | no | |
4632
- | start | string | yes | |
4633
-
4634
- ---
4635
-
4636
-
4637
-
4638
-
4639
- #### [PromotionAuthor](#PromotionAuthor)
4638
+ #### [DisplayMeta1](#DisplayMeta1)
4640
4639
 
4641
4640
  | Properties | Type | Nullable | Description |
4642
4641
  | ---------- | ---- | -------- | ----------- |
4643
- | modified_by | string | no | |
4644
- | created_by | string | no | |
4642
+ | offer_text | string | no | |
4643
+ | name | string | no | |
4644
+ | description | string | no | |
4645
4645
 
4646
4646
  ---
4647
4647
 
@@ -4652,27 +4652,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4652
4652
 
4653
4653
  | Properties | Type | Nullable | Description |
4654
4654
  | ---------- | ---- | -------- | ----------- |
4655
- | _custom_json | string | no | |
4656
- | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4657
- | promo_group | string | yes | |
4658
- | restrictions | [Restrictions1](#Restrictions1) | no | |
4655
+ | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4656
+ | apply_all_discount | boolean | no | |
4657
+ | application_id | string | yes | |
4658
+ | author | [PromotionAuthor](#PromotionAuthor) | no | |
4659
4659
  | apply_priority | number | no | |
4660
- | code | string | no | |
4661
4660
  | stackable | boolean | no | |
4661
+ | visiblility | [Visibility](#Visibility) | no | |
4662
+ | restrictions | [Restrictions1](#Restrictions1) | no | |
4663
+ | _custom_json | string | no | |
4662
4664
  | mode | string | yes | |
4663
4665
  | post_order_action | [PromotionAction](#PromotionAction) | no | |
4664
4666
  | discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
4665
4667
  | buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
4668
+ | code | string | no | |
4669
+ | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4670
+ | ownership | [Ownership1](#Ownership1) | yes | |
4666
4671
  | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4667
4672
  | currency | string | no | |
4673
+ | promo_group | string | yes | |
4668
4674
  | apply_exclusive | string | no | |
4669
- | ownership | [Ownership1](#Ownership1) | yes | |
4670
- | visiblility | [Visibility](#Visibility) | no | |
4671
- | apply_all_discount | boolean | no | |
4672
4675
  | promotion_type | string | yes | |
4673
- | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4674
- | application_id | string | yes | |
4675
- | author | [PromotionAuthor](#PromotionAuthor) | no | |
4676
4676
 
4677
4677
  ---
4678
4678
 
@@ -4695,27 +4695,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4695
4695
 
4696
4696
  | Properties | Type | Nullable | Description |
4697
4697
  | ---------- | ---- | -------- | ----------- |
4698
- | _custom_json | string | no | |
4699
- | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4700
- | promo_group | string | yes | |
4701
- | restrictions | [Restrictions1](#Restrictions1) | no | |
4698
+ | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4699
+ | apply_all_discount | boolean | no | |
4700
+ | application_id | string | yes | |
4701
+ | author | [PromotionAuthor](#PromotionAuthor) | no | |
4702
4702
  | apply_priority | number | no | |
4703
- | code | string | no | |
4704
4703
  | stackable | boolean | no | |
4704
+ | visiblility | [Visibility](#Visibility) | no | |
4705
+ | restrictions | [Restrictions1](#Restrictions1) | no | |
4706
+ | _custom_json | string | no | |
4705
4707
  | mode | string | yes | |
4706
4708
  | post_order_action | [PromotionAction](#PromotionAction) | no | |
4707
4709
  | discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
4708
4710
  | buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
4711
+ | code | string | no | |
4712
+ | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4713
+ | ownership | [Ownership1](#Ownership1) | yes | |
4709
4714
  | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4710
4715
  | currency | string | no | |
4716
+ | promo_group | string | yes | |
4711
4717
  | apply_exclusive | string | no | |
4712
- | ownership | [Ownership1](#Ownership1) | yes | |
4713
- | visiblility | [Visibility](#Visibility) | no | |
4714
- | apply_all_discount | boolean | no | |
4715
4718
  | promotion_type | string | yes | |
4716
- | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4717
- | application_id | string | yes | |
4718
- | author | [PromotionAuthor](#PromotionAuthor) | no | |
4719
4719
 
4720
4720
  ---
4721
4721
 
@@ -4726,27 +4726,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4726
4726
 
4727
4727
  | Properties | Type | Nullable | Description |
4728
4728
  | ---------- | ---- | -------- | ----------- |
4729
- | _custom_json | string | no | |
4730
- | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4731
- | promo_group | string | yes | |
4732
- | restrictions | [Restrictions1](#Restrictions1) | no | |
4729
+ | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4730
+ | apply_all_discount | boolean | no | |
4731
+ | application_id | string | yes | |
4732
+ | author | [PromotionAuthor](#PromotionAuthor) | no | |
4733
4733
  | apply_priority | number | no | |
4734
- | code | string | no | |
4735
4734
  | stackable | boolean | no | |
4735
+ | visiblility | [Visibility](#Visibility) | no | |
4736
+ | restrictions | [Restrictions1](#Restrictions1) | no | |
4737
+ | _custom_json | string | no | |
4736
4738
  | mode | string | yes | |
4737
4739
  | post_order_action | [PromotionAction](#PromotionAction) | no | |
4738
4740
  | discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
4739
4741
  | buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
4742
+ | code | string | no | |
4743
+ | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4744
+ | ownership | [Ownership1](#Ownership1) | yes | |
4740
4745
  | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4741
4746
  | currency | string | no | |
4747
+ | promo_group | string | yes | |
4742
4748
  | apply_exclusive | string | no | |
4743
- | ownership | [Ownership1](#Ownership1) | yes | |
4744
- | visiblility | [Visibility](#Visibility) | no | |
4745
- | apply_all_discount | boolean | no | |
4746
4749
  | promotion_type | string | yes | |
4747
- | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4748
- | application_id | string | yes | |
4749
- | author | [PromotionAuthor](#PromotionAuthor) | no | |
4750
4750
 
4751
4751
  ---
4752
4752
 
@@ -4769,9 +4769,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4769
4769
 
4770
4770
  | Properties | Type | Nullable | Description |
4771
4771
  | ---------- | ---- | -------- | ----------- |
4772
- | product_id | string | yes | |
4773
4772
  | size | string | yes | |
4774
4773
  | quantity | number | no | |
4774
+ | product_id | string | yes | |
4775
4775
 
4776
4776
  ---
4777
4777
 
@@ -4789,174 +4789,150 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4789
4789
 
4790
4790
 
4791
4791
 
4792
- #### [CouponBreakup](#CouponBreakup)
4793
-
4794
- | Properties | Type | Nullable | Description |
4795
- | ---------- | ---- | -------- | ----------- |
4796
- | message | string | no | |
4797
- | is_applied | boolean | no | |
4798
- | uid | string | no | |
4799
- | value | number | no | |
4800
- | code | string | no | |
4801
- | type | string | no | |
4802
-
4803
- ---
4804
-
4805
-
4806
-
4807
-
4808
- #### [DisplayBreakup](#DisplayBreakup)
4792
+ #### [ProductPrice](#ProductPrice)
4809
4793
 
4810
4794
  | Properties | Type | Nullable | Description |
4811
4795
  | ---------- | ---- | -------- | ----------- |
4812
- | display | string | no | |
4813
- | message | [string] | no | |
4814
4796
  | currency_symbol | string | no | |
4815
- | value | number | no | |
4797
+ | marked | number | no | |
4816
4798
  | currency_code | string | no | |
4817
- | key | string | no | |
4799
+ | add_on | number | no | |
4800
+ | effective | number | no | |
4801
+ | selling | number | no | |
4818
4802
 
4819
4803
  ---
4820
4804
 
4821
4805
 
4822
4806
 
4823
4807
 
4824
- #### [LoyaltyPoints](#LoyaltyPoints)
4808
+ #### [ProductPriceInfo](#ProductPriceInfo)
4825
4809
 
4826
4810
  | Properties | Type | Nullable | Description |
4827
4811
  | ---------- | ---- | -------- | ----------- |
4828
- | total | number | no | |
4829
- | is_applied | boolean | no | |
4830
- | description | string | no | |
4831
- | applicable | number | no | |
4812
+ | converted | [ProductPrice](#ProductPrice) | no | |
4813
+ | base | [ProductPrice](#ProductPrice) | no | |
4832
4814
 
4833
4815
  ---
4834
4816
 
4835
4817
 
4836
4818
 
4837
4819
 
4838
- #### [RawBreakup](#RawBreakup)
4820
+ #### [Ownership2](#Ownership2)
4839
4821
 
4840
4822
  | Properties | Type | Nullable | Description |
4841
4823
  | ---------- | ---- | -------- | ----------- |
4842
- | convenience_fee | number | no | |
4843
- | cod_charge | number | no | |
4844
- | fynd_cash | number | no | |
4845
- | subtotal | number | no | |
4846
- | you_saved | number | no | |
4847
- | coupon | number | no | |
4848
- | total | number | no | |
4849
- | discount | number | no | |
4850
- | gst_charges | number | no | |
4851
- | vog | number | no | |
4852
- | mrp_total | number | no | |
4853
- | delivery_charge | number | no | |
4824
+ | payable_category | string | no | promo amount payable category |
4825
+ | payable_by | string | no | promo amount bearable party |
4854
4826
 
4855
4827
  ---
4856
4828
 
4857
4829
 
4858
4830
 
4859
4831
 
4860
- #### [CartBreakup](#CartBreakup)
4832
+ #### [AppliedPromotion](#AppliedPromotion)
4861
4833
 
4862
4834
  | Properties | Type | Nullable | Description |
4863
4835
  | ---------- | ---- | -------- | ----------- |
4864
- | coupon | [CouponBreakup](#CouponBreakup) | no | |
4865
- | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
4866
- | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
4867
- | raw | [RawBreakup](#RawBreakup) | no | |
4836
+ | article_quantity | number | no | Quantity of article on which promotion is applicable |
4837
+ | ownership | [Ownership2](#Ownership2) | no | Ownership of promotion |
4838
+ | promo_id | string | no | Promotion id |
4839
+ | amount | number | no | Per unit discount amount applied with current promotion |
4840
+ | promotion_type | string | no | Promotion type of current promotion |
4841
+ | mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
4842
+ | offer_text | string | no | Offer text of current promotion |
4868
4843
 
4869
4844
  ---
4870
4845
 
4871
4846
 
4872
4847
 
4873
4848
 
4874
- #### [ProductPrice](#ProductPrice)
4849
+ #### [PromoMeta](#PromoMeta)
4875
4850
 
4876
4851
  | Properties | Type | Nullable | Description |
4877
4852
  | ---------- | ---- | -------- | ----------- |
4878
- | add_on | number | no | |
4879
- | selling | number | no | |
4880
- | currency_symbol | string | no | |
4881
- | effective | number | no | |
4882
- | currency_code | string | no | |
4883
- | marked | number | no | |
4853
+ | message | string | no | |
4884
4854
 
4885
4855
  ---
4886
4856
 
4887
4857
 
4888
4858
 
4889
4859
 
4890
- #### [ProductPriceInfo](#ProductPriceInfo)
4860
+ #### [CartProductIdentifer](#CartProductIdentifer)
4891
4861
 
4892
4862
  | Properties | Type | Nullable | Description |
4893
4863
  | ---------- | ---- | -------- | ----------- |
4894
- | converted | [ProductPrice](#ProductPrice) | no | |
4895
- | base | [ProductPrice](#ProductPrice) | no | |
4864
+ | identifier | string | no | Article idenfier generated by cart |
4896
4865
 
4897
4866
  ---
4898
4867
 
4899
4868
 
4900
4869
 
4901
4870
 
4902
- #### [PromoMeta](#PromoMeta)
4871
+ #### [BaseInfo](#BaseInfo)
4903
4872
 
4904
4873
  | Properties | Type | Nullable | Description |
4905
4874
  | ---------- | ---- | -------- | ----------- |
4906
- | message | string | no | |
4875
+ | name | string | no | |
4876
+ | uid | number | no | |
4907
4877
 
4908
4878
  ---
4909
4879
 
4910
4880
 
4911
4881
 
4912
4882
 
4913
- #### [Ownership2](#Ownership2)
4883
+ #### [BasePrice](#BasePrice)
4914
4884
 
4915
4885
  | Properties | Type | Nullable | Description |
4916
4886
  | ---------- | ---- | -------- | ----------- |
4917
- | payable_by | string | no | promo amount bearable party |
4918
- | payable_category | string | no | promo amount payable category |
4887
+ | effective | number | no | |
4888
+ | currency_symbol | string | no | |
4889
+ | marked | number | no | |
4890
+ | currency_code | string | no | |
4919
4891
 
4920
4892
  ---
4921
4893
 
4922
4894
 
4923
4895
 
4924
4896
 
4925
- #### [AppliedPromotion](#AppliedPromotion)
4897
+ #### [ArticlePriceInfo](#ArticlePriceInfo)
4926
4898
 
4927
4899
  | Properties | Type | Nullable | Description |
4928
4900
  | ---------- | ---- | -------- | ----------- |
4929
- | promo_id | string | no | Promotion id |
4930
- | mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
4931
- | offer_text | string | no | Offer text of current promotion |
4932
- | ownership | [Ownership2](#Ownership2) | no | Ownership of promotion |
4933
- | amount | number | no | Per unit discount amount applied with current promotion |
4934
- | promotion_type | string | no | Promotion type of current promotion |
4935
- | article_quantity | number | no | Quantity of article on which promotion is applicable |
4901
+ | converted | [BasePrice](#BasePrice) | no | |
4902
+ | base | [BasePrice](#BasePrice) | no | |
4936
4903
 
4937
4904
  ---
4938
4905
 
4939
4906
 
4940
4907
 
4941
4908
 
4942
- #### [CategoryInfo](#CategoryInfo)
4909
+ #### [ProductArticle](#ProductArticle)
4943
4910
 
4944
4911
  | Properties | Type | Nullable | Description |
4945
4912
  | ---------- | ---- | -------- | ----------- |
4946
- | name | string | no | |
4947
- | uid | number | no | Product Category Id |
4913
+ | extra_meta | string | no | |
4914
+ | quantity | number | no | |
4915
+ | product_group_tags | [string] | no | |
4916
+ | store | [BaseInfo](#BaseInfo) | no | |
4917
+ | seller | [BaseInfo](#BaseInfo) | no | |
4918
+ | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
4919
+ | size | string | no | |
4920
+ | uid | string | no | |
4921
+ | _custom_json | string | no | |
4922
+ | parent_item_identifiers | string | no | |
4923
+ | type | string | no | |
4948
4924
 
4949
4925
  ---
4950
4926
 
4951
4927
 
4952
4928
 
4953
4929
 
4954
- #### [BaseInfo](#BaseInfo)
4930
+ #### [CategoryInfo](#CategoryInfo)
4955
4931
 
4956
4932
  | Properties | Type | Nullable | Description |
4957
4933
  | ---------- | ---- | -------- | ----------- |
4958
4934
  | name | string | no | |
4959
- | uid | number | no | |
4935
+ | uid | number | no | Product Category Id |
4960
4936
 
4961
4937
  ---
4962
4938
 
@@ -5004,14 +4980,14 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5004
4980
 
5005
4981
  | Properties | Type | Nullable | Description |
5006
4982
  | ---------- | ---- | -------- | ----------- |
5007
- | name | string | no | |
5008
4983
  | categories | [[CategoryInfo](#CategoryInfo)] | no | |
4984
+ | action | [ProductAction](#ProductAction) | no | |
4985
+ | images | [[ProductImage](#ProductImage)] | no | |
5009
4986
  | slug | string | no | Unique product url name generated via product name and other meta data |
5010
- | brand | [BaseInfo](#BaseInfo) | no | |
5011
4987
  | uid | number | no | |
5012
- | action | [ProductAction](#ProductAction) | no | |
4988
+ | name | string | no | |
4989
+ | brand | [BaseInfo](#BaseInfo) | no | |
5013
4990
  | type | string | no | |
5014
- | images | [[ProductImage](#ProductImage)] | no | |
5015
4991
 
5016
4992
  ---
5017
4993
 
@@ -5022,94 +4998,119 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5022
4998
 
5023
4999
  | Properties | Type | Nullable | Description |
5024
5000
  | ---------- | ---- | -------- | ----------- |
5025
- | deliverable | boolean | no | |
5026
5001
  | out_of_stock | boolean | no | |
5002
+ | other_store_quantity | number | no | |
5003
+ | deliverable | boolean | no | |
5027
5004
  | is_valid | boolean | no | |
5028
5005
  | sizes | [string] | no | |
5029
- | other_store_quantity | number | no | |
5030
5006
 
5031
5007
  ---
5032
5008
 
5033
5009
 
5034
5010
 
5035
5011
 
5036
- #### [CartProductIdentifer](#CartProductIdentifer)
5012
+ #### [CartProductInfo](#CartProductInfo)
5037
5013
 
5038
5014
  | Properties | Type | Nullable | Description |
5039
5015
  | ---------- | ---- | -------- | ----------- |
5040
- | identifier | string | no | Article idenfier generated by cart |
5016
+ | price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
5017
+ | coupon_message | string | no | |
5018
+ | is_set | boolean | no | |
5019
+ | promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
5020
+ | quantity | number | no | |
5021
+ | discount | string | no | |
5022
+ | promo_meta | [PromoMeta](#PromoMeta) | no | |
5023
+ | price | [ProductPriceInfo](#ProductPriceInfo) | no | |
5024
+ | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
5025
+ | article | [ProductArticle](#ProductArticle) | no | |
5026
+ | message | string | no | |
5027
+ | bulk_offer | string | no | |
5028
+ | product | [CartProduct](#CartProduct) | no | |
5029
+ | key | string | no | |
5030
+ | parent_item_identifiers | string | no | |
5031
+ | availability | [ProductAvailability](#ProductAvailability) | no | |
5041
5032
 
5042
5033
  ---
5043
5034
 
5044
5035
 
5045
5036
 
5046
5037
 
5047
- #### [BasePrice](#BasePrice)
5038
+ #### [LoyaltyPoints](#LoyaltyPoints)
5039
+
5040
+ | Properties | Type | Nullable | Description |
5041
+ | ---------- | ---- | -------- | ----------- |
5042
+ | is_applied | boolean | no | |
5043
+ | applicable | number | no | |
5044
+ | description | string | no | |
5045
+ | total | number | no | |
5046
+
5047
+ ---
5048
+
5049
+
5050
+
5051
+
5052
+ #### [DisplayBreakup](#DisplayBreakup)
5048
5053
 
5049
5054
  | Properties | Type | Nullable | Description |
5050
5055
  | ---------- | ---- | -------- | ----------- |
5051
- | currency_code | string | no | |
5052
- | marked | number | no | |
5053
- | effective | number | no | |
5054
5056
  | currency_symbol | string | no | |
5057
+ | currency_code | string | no | |
5058
+ | display | string | no | |
5059
+ | message | [string] | no | |
5060
+ | key | string | no | |
5061
+ | value | number | no | |
5055
5062
 
5056
5063
  ---
5057
5064
 
5058
5065
 
5059
5066
 
5060
5067
 
5061
- #### [ArticlePriceInfo](#ArticlePriceInfo)
5068
+ #### [RawBreakup](#RawBreakup)
5062
5069
 
5063
5070
  | Properties | Type | Nullable | Description |
5064
5071
  | ---------- | ---- | -------- | ----------- |
5065
- | converted | [BasePrice](#BasePrice) | no | |
5066
- | base | [BasePrice](#BasePrice) | no | |
5072
+ | subtotal | number | no | |
5073
+ | discount | number | no | |
5074
+ | gst_charges | number | no | |
5075
+ | total | number | no | |
5076
+ | vog | number | no | |
5077
+ | you_saved | number | no | |
5078
+ | fynd_cash | number | no | |
5079
+ | coupon | number | no | |
5080
+ | cod_charge | number | no | |
5081
+ | delivery_charge | number | no | |
5082
+ | mrp_total | number | no | |
5083
+ | convenience_fee | number | no | |
5067
5084
 
5068
5085
  ---
5069
5086
 
5070
5087
 
5071
5088
 
5072
5089
 
5073
- #### [ProductArticle](#ProductArticle)
5090
+ #### [CouponBreakup](#CouponBreakup)
5074
5091
 
5075
5092
  | Properties | Type | Nullable | Description |
5076
5093
  | ---------- | ---- | -------- | ----------- |
5077
- | parent_item_identifiers | string | no | |
5078
- | store | [BaseInfo](#BaseInfo) | no | |
5079
- | seller | [BaseInfo](#BaseInfo) | no | |
5080
- | product_group_tags | [string] | no | |
5081
- | size | string | no | |
5094
+ | code | string | no | |
5095
+ | message | string | no | |
5096
+ | is_applied | boolean | no | |
5082
5097
  | uid | string | no | |
5083
- | quantity | number | no | |
5098
+ | value | number | no | |
5084
5099
  | type | string | no | |
5085
- | extra_meta | string | no | |
5086
- | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
5087
5100
 
5088
5101
  ---
5089
5102
 
5090
5103
 
5091
5104
 
5092
5105
 
5093
- #### [CartProductInfo](#CartProductInfo)
5106
+ #### [CartBreakup](#CartBreakup)
5094
5107
 
5095
5108
  | Properties | Type | Nullable | Description |
5096
5109
  | ---------- | ---- | -------- | ----------- |
5097
- | price | [ProductPriceInfo](#ProductPriceInfo) | no | |
5098
- | parent_item_identifiers | string | no | |
5099
- | promo_meta | [PromoMeta](#PromoMeta) | no | |
5100
- | bulk_offer | string | no | |
5101
- | message | string | no | |
5102
- | promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
5103
- | discount | string | no | |
5104
- | product | [CartProduct](#CartProduct) | no | |
5105
- | is_set | boolean | no | |
5106
- | quantity | number | no | |
5107
- | availability | [ProductAvailability](#ProductAvailability) | no | |
5108
- | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
5109
- | price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
5110
- | key | string | no | |
5111
- | coupon_message | string | no | |
5112
- | article | [ProductArticle](#ProductArticle) | no | |
5110
+ | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
5111
+ | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
5112
+ | raw | [RawBreakup](#RawBreakup) | no | |
5113
+ | coupon | [CouponBreakup](#CouponBreakup) | no | |
5113
5114
 
5114
5115
  ---
5115
5116
 
@@ -5120,9 +5121,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5120
5121
 
5121
5122
  | Properties | Type | Nullable | Description |
5122
5123
  | ---------- | ---- | -------- | ----------- |
5123
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
5124
5124
  | items | [[CartProductInfo](#CartProductInfo)] | no | |
5125
5125
  | is_valid | boolean | no | |
5126
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
5126
5127
  | message | string | no | |
5127
5128
 
5128
5129
  ---
@@ -5135,8 +5136,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5135
5136
  | Properties | Type | Nullable | Description |
5136
5137
  | ---------- | ---- | -------- | ----------- |
5137
5138
  | success | boolean | no | |
5138
- | errors | string | no | Contains field name which has error as key and error message as value |
5139
5139
  | message | string | no | |
5140
+ | errors | string | no | Contains field name which has error as key and error message as value |
5140
5141
 
5141
5142
  ---
5142
5143
 
@@ -5147,21 +5148,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5147
5148
 
5148
5149
  | Properties | Type | Nullable | Description |
5149
5150
  | ---------- | ---- | -------- | ----------- |
5150
- | name | string | no | |
5151
- | landmark | string | no | |
5152
- | country | string | no | |
5153
5151
  | address_type | string | no | |
5152
+ | phone | number | no | |
5153
+ | pincode | number | no | |
5154
+ | area | string | no | |
5155
+ | country | string | no | |
5154
5156
  | email | string | no | |
5155
- | country_code | string | no | |
5157
+ | meta | string | no | |
5158
+ | landmark | string | no | |
5159
+ | area_code_slug | string | no | |
5156
5160
  | area_code | string | yes | |
5157
- | state | string | no | |
5158
5161
  | city | string | no | |
5159
- | area_code_slug | string | no | |
5160
- | meta | string | no | |
5161
- | area | string | no | |
5162
- | phone | number | no | |
5162
+ | country_code | string | no | |
5163
+ | state | string | no | |
5164
+ | name | string | no | |
5163
5165
  | address | string | no | |
5164
- | pincode | number | no | |
5165
5166
 
5166
5167
  ---
5167
5168
 
@@ -5172,8 +5173,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5172
5173
 
5173
5174
  | Properties | Type | Nullable | Description |
5174
5175
  | ---------- | ---- | -------- | ----------- |
5175
- | cart_items | [CartItem](#CartItem) | no | |
5176
5176
  | shipping_address | [ShippingAddress](#ShippingAddress) | yes | |
5177
+ | cart_items | [CartItem](#CartItem) | no | |
5177
5178
 
5178
5179
  ---
5179
5180
 
@@ -5184,8 +5185,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5184
5185
 
5185
5186
  | Properties | Type | Nullable | Description |
5186
5187
  | ---------- | ---- | -------- | ----------- |
5187
- | max | number | no | |
5188
5188
  | min | number | no | |
5189
+ | max | number | no | |
5189
5190
 
5190
5191
  ---
5191
5192
 
@@ -5196,8 +5197,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5196
5197
 
5197
5198
  | Properties | Type | Nullable | Description |
5198
5199
  | ---------- | ---- | -------- | ----------- |
5199
- | max | string | no | |
5200
5200
  | min | string | no | |
5201
+ | max | string | no | |
5201
5202
 
5202
5203
  ---
5203
5204
 
@@ -5220,52 +5221,52 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5220
5221
 
5221
5222
  | Properties | Type | Nullable | Description |
5222
5223
  | ---------- | ---- | -------- | ----------- |
5223
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
5224
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
5224
5225
  | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
5225
5226
  | message | string | no | |
5227
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
5226
5228
  | is_valid | boolean | no | |
5227
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
5228
5229
 
5229
5230
  ---
5230
5231
 
5231
5232
 
5232
5233
 
5233
5234
 
5234
- #### [MultiTenderPaymentMeta](#MultiTenderPaymentMeta)
5235
+ #### [OpenApiFiles](#OpenApiFiles)
5235
5236
 
5236
5237
  | Properties | Type | Nullable | Description |
5237
5238
  | ---------- | ---- | -------- | ----------- |
5238
- | current_status | string | no | |
5239
- | payment_id | string | no | |
5240
- | order_id | string | no | |
5241
- | payment_gateway | string | no | |
5242
- | extra_meta | string | no | |
5239
+ | key | string | yes | |
5240
+ | values | [string] | yes | |
5243
5241
 
5244
5242
  ---
5245
5243
 
5246
5244
 
5247
5245
 
5248
5246
 
5249
- #### [MultiTenderPaymentMethod](#MultiTenderPaymentMethod)
5247
+ #### [MultiTenderPaymentMeta](#MultiTenderPaymentMeta)
5250
5248
 
5251
5249
  | Properties | Type | Nullable | Description |
5252
5250
  | ---------- | ---- | -------- | ----------- |
5253
- | name | string | no | Payment mode name |
5254
- | meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
5255
- | mode | string | yes | |
5256
- | amount | number | yes | Payment amount |
5251
+ | payment_gateway | string | no | |
5252
+ | extra_meta | string | no | |
5253
+ | payment_id | string | no | |
5254
+ | current_status | string | no | |
5255
+ | order_id | string | no | |
5257
5256
 
5258
5257
  ---
5259
5258
 
5260
5259
 
5261
5260
 
5262
5261
 
5263
- #### [OpenApiFiles](#OpenApiFiles)
5262
+ #### [MultiTenderPaymentMethod](#MultiTenderPaymentMethod)
5264
5263
 
5265
5264
  | Properties | Type | Nullable | Description |
5266
5265
  | ---------- | ---- | -------- | ----------- |
5267
- | values | [string] | yes | |
5268
- | key | string | yes | |
5266
+ | name | string | no | Payment mode name |
5267
+ | amount | number | yes | Payment amount |
5268
+ | mode | string | yes | |
5269
+ | meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
5269
5270
 
5270
5271
  ---
5271
5272
 
@@ -5288,23 +5289,23 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5288
5289
 
5289
5290
  | Properties | Type | Nullable | Description |
5290
5291
  | ---------- | ---- | -------- | ----------- |
5291
- | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
5292
- | price_effective | number | yes | |
5293
- | amount_paid | number | yes | |
5294
- | discount | number | yes | |
5295
5292
  | coupon_effective_discount | number | yes | |
5296
- | loyalty_discount | number | no | |
5297
5293
  | cashback_applied | number | yes | |
5298
- | size | string | yes | |
5294
+ | product_id | number | yes | |
5299
5295
  | files | [[OpenApiFiles](#OpenApiFiles)] | no | |
5296
+ | cod_charges | number | yes | |
5297
+ | extra_meta | string | no | |
5300
5298
  | quantity | number | no | |
5301
- | product_id | number | yes | |
5302
- | delivery_charges | number | yes | |
5299
+ | discount | number | yes | |
5300
+ | size | string | yes | |
5303
5301
  | employee_discount | number | no | |
5304
5302
  | meta | [CartItemMeta](#CartItemMeta) | no | |
5305
- | extra_meta | string | no | |
5306
- | cod_charges | number | yes | |
5303
+ | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
5304
+ | price_effective | number | yes | |
5307
5305
  | price_marked | number | yes | |
5306
+ | delivery_charges | number | yes | |
5307
+ | amount_paid | number | yes | |
5308
+ | loyalty_discount | number | no | |
5308
5309
 
5309
5310
  ---
5310
5311
 
@@ -5315,26 +5316,26 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5315
5316
 
5316
5317
  | Properties | Type | Nullable | Description |
5317
5318
  | ---------- | ---- | -------- | ----------- |
5318
- | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
5319
- | cart_items | [[OpenApiOrderItem](#OpenApiOrderItem)] | yes | |
5320
- | coupon_value | number | yes | |
5321
- | affiliate_order_id | string | no | |
5322
- | payment_mode | string | no | |
5323
- | loyalty_discount | number | no | |
5324
- | cashback_applied | number | yes | |
5325
5319
  | cod_charges | number | yes | |
5326
- | billing_address | [ShippingAddress](#ShippingAddress) | yes | |
5320
+ | affiliate_order_id | string | no | |
5327
5321
  | comment | string | no | |
5328
- | currency_code | string | no | |
5329
- | employee_discount | string | no | |
5330
- | gstin | string | no | |
5322
+ | coupon | string | no | |
5323
+ | coupon_value | number | yes | |
5331
5324
  | shipping_address | [ShippingAddress](#ShippingAddress) | no | |
5325
+ | gstin | string | no | |
5326
+ | delivery_charges | number | yes | |
5332
5327
  | coupon_code | string | yes | |
5333
- | coupon | string | no | |
5328
+ | loyalty_discount | number | no | |
5329
+ | payment_mode | string | no | |
5330
+ | cashback_applied | number | yes | |
5334
5331
  | files | [[OpenApiFiles](#OpenApiFiles)] | no | |
5335
- | delivery_charges | number | yes | |
5332
+ | currency_code | string | no | |
5336
5333
  | order_id | string | no | |
5337
5334
  | cart_value | number | yes | |
5335
+ | employee_discount | string | no | |
5336
+ | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
5337
+ | cart_items | [[OpenApiOrderItem](#OpenApiOrderItem)] | yes | |
5338
+ | billing_address | [ShippingAddress](#ShippingAddress) | yes | |
5338
5339
 
5339
5340
  ---
5340
5341
 
@@ -5345,8 +5346,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5345
5346
 
5346
5347
  | Properties | Type | Nullable | Description |
5347
5348
  | ---------- | ---- | -------- | ----------- |
5348
- | order_id | string | yes | Fynd order id |
5349
5349
  | success | boolean | no | |
5350
+ | order_id | string | yes | Fynd order id |
5350
5351
  | message | string | no | |
5351
5352
  | order_ref_id | string | no | Order id sent in request |
5352
5353
 
@@ -5359,39 +5360,39 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5359
5360
 
5360
5361
  | Properties | Type | Nullable | Description |
5361
5362
  | ---------- | ---- | -------- | ----------- |
5362
- | is_archive | boolean | no | |
5363
- | payment_methods | [string] | no | |
5364
- | payment_mode | string | no | |
5365
- | comment | string | no | |
5366
- | articles | [string] | yes | |
5367
- | promotion | string | no | |
5368
- | is_default | boolean | yes | |
5369
- | app_id | string | no | |
5370
- | discount | number | no | |
5363
+ | cod_charges | string | no | |
5364
+ | checkout_mode | string | no | |
5371
5365
  | coupon | string | no | |
5372
- | merge_qty | boolean | no | |
5366
+ | meta | string | no | |
5367
+ | gstin | string | no | |
5368
+ | user_id | string | yes | |
5369
+ | discount | number | no | |
5370
+ | fynd_credits | string | no | |
5371
+ | is_archive | boolean | no | |
5373
5372
  | cart_value | number | no | |
5374
- | buy_now | boolean | no | |
5375
5373
  | order_id | string | no | |
5374
+ | expire_at | string | yes | |
5375
+ | app_id | string | no | |
5376
+ | merge_qty | boolean | no | |
5377
+ | last_modified | string | yes | |
5376
5378
  | _id | string | yes | |
5377
- | cashback | string | yes | |
5378
- | meta | string | no | |
5379
+ | created_on | string | yes | |
5380
+ | articles | [string] | yes | |
5381
+ | comment | string | no | |
5379
5382
  | is_active | boolean | no | |
5383
+ | delivery_charges | string | no | |
5384
+ | cashback | string | yes | |
5385
+ | payment_mode | string | no | |
5380
5386
  | bulk_coupon_discount | number | no | |
5387
+ | fc_index_map | [number] | no | |
5381
5388
  | payments | string | no | |
5382
- | expire_at | string | yes | |
5383
- | user_id | string | yes | |
5384
- | checkout_mode | string | no | |
5385
- | pick_up_customer_details | string | no | |
5386
- | gstin | string | no | |
5389
+ | promotion | string | no | |
5390
+ | payment_methods | [string] | no | |
5387
5391
  | shipments | [string] | no | |
5388
- | last_modified | string | yes | |
5389
- | created_on | string | yes | |
5390
5392
  | uid | number | yes | |
5391
- | fc_index_map | [number] | no | |
5392
- | delivery_charges | string | no | |
5393
- | fynd_credits | string | no | |
5394
- | cod_charges | string | no | |
5393
+ | pick_up_customer_details | string | no | |
5394
+ | is_default | boolean | yes | |
5395
+ | buy_now | boolean | no | |
5395
5396
 
5396
5397
  ---
5397
5398
 
@@ -5402,11 +5403,11 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5402
5403
 
5403
5404
  | Properties | Type | Nullable | Description |
5404
5405
  | ---------- | ---- | -------- | ----------- |
5406
+ | items | [[AbandonedCart](#AbandonedCart)] | no | |
5405
5407
  | message | string | no | message of the response |
5408
+ | page | [Page](#Page) | no | |
5406
5409
  | success | boolean | no | the request success is defined |
5407
- | items | [[AbandonedCart](#AbandonedCart)] | no | |
5408
5410
  | result | string | no | |
5409
- | page | [Page](#Page) | no | |
5410
5411
 
5411
5412
  ---
5412
5413
 
@@ -5429,9 +5430,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5429
5430
 
5430
5431
  | Properties | Type | Nullable | Description |
5431
5432
  | ---------- | ---- | -------- | ----------- |
5432
- | default_options | string | no | |
5433
- | enabled | boolean | no | |
5434
5433
  | payment_identifier | string | no | |
5434
+ | enabled | boolean | no | |
5435
+ | default_options | string | no | |
5435
5436
 
5436
5437
  ---
5437
5438
 
@@ -5442,22 +5443,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5442
5443
 
5443
5444
  | Properties | Type | Nullable | Description |
5444
5445
  | ---------- | ---- | -------- | ----------- |
5445
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
5446
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
5447
- | message | string | no | |
5448
- | id | string | no | |
5449
5446
  | currency | [CartCurrency](#CartCurrency) | no | |
5450
5447
  | last_modified | string | no | |
5451
- | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
5452
5448
  | delivery_charge_info | string | no | |
5453
- | restrict_checkout | boolean | no | |
5454
- | buy_now | boolean | no | |
5449
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
5450
+ | checkout_mode | string | no | |
5455
5451
  | comment | string | no | |
5452
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
5453
+ | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
5456
5454
  | is_valid | boolean | no | |
5457
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
5455
+ | message | string | no | |
5456
+ | restrict_checkout | boolean | no | |
5458
5457
  | coupon_text | string | no | |
5459
- | checkout_mode | string | no | |
5458
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
5459
+ | id | string | no | |
5460
5460
  | gstin | string | no | |
5461
+ | buy_now | boolean | no | |
5461
5462
 
5462
5463
  ---
5463
5464
 
@@ -5468,18 +5469,19 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5468
5469
 
5469
5470
  | Properties | Type | Nullable | Description |
5470
5471
  | ---------- | ---- | -------- | ----------- |
5472
+ | seller_id | number | no | |
5473
+ | item_id | number | no | |
5474
+ | extra_meta | string | no | |
5475
+ | quantity | number | no | |
5476
+ | product_group_tags | [string] | no | |
5477
+ | item_size | string | no | |
5471
5478
  | display | string | no | |
5479
+ | store_id | number | no | |
5480
+ | _custom_json | string | no | |
5472
5481
  | parent_item_identifiers | string | no | |
5473
5482
  | article_id | string | no | |
5474
- | article_assignment | string | no | |
5475
- | item_size | string | no | |
5476
- | product_group_tags | [string] | no | |
5477
5483
  | pos | boolean | no | |
5478
- | quantity | number | no | |
5479
- | item_id | number | no | |
5480
- | seller_id | number | no | |
5481
- | store_id | number | no | |
5482
- | extra_meta | string | no | |
5484
+ | article_assignment | string | no | |
5483
5485
 
5484
5486
  ---
5485
5487
 
@@ -5501,8 +5503,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5501
5503
 
5502
5504
  | Properties | Type | Nullable | Description |
5503
5505
  | ---------- | ---- | -------- | ----------- |
5504
- | partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
5505
5506
  | success | boolean | no | True if all items are added successfully. False if partially added or not added. |
5507
+ | partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
5506
5508
  | cart | [CartDetailResponse](#CartDetailResponse) | no | |
5507
5509
  | message | string | no | |
5508
5510
 
@@ -5515,14 +5517,15 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5515
5517
 
5516
5518
  | Properties | Type | Nullable | Description |
5517
5519
  | ---------- | ---- | -------- | ----------- |
5518
- | parent_item_identifiers | string | no | |
5519
- | article_id | string | no | |
5520
- | item_size | string | no | |
5521
- | item_index | number | no | |
5522
- | quantity | number | no | |
5523
5520
  | item_id | number | no | |
5524
- | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
5525
5521
  | extra_meta | string | no | |
5522
+ | quantity | number | no | |
5523
+ | item_size | string | no | |
5524
+ | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
5525
+ | item_index | number | no | |
5526
+ | _custom_json | string | no | |
5527
+ | parent_item_identifiers | string | no | |
5528
+ | article_id | string | no | |
5526
5529
 
5527
5530
  ---
5528
5531
 
@@ -5533,8 +5536,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5533
5536
 
5534
5537
  | Properties | Type | Nullable | Description |
5535
5538
  | ---------- | ---- | -------- | ----------- |
5536
- | operation | string | yes | |
5537
5539
  | items | [[UpdateProductCart](#UpdateProductCart)] | no | |
5540
+ | operation | string | yes | |
5538
5541
 
5539
5542
  ---
5540
5543