@gofynd/fdk-client-javascript 1.4.12 → 1.4.14

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 (297) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
  3. package/sdk/application/ApplicationClient.d.ts +2 -0
  4. package/sdk/application/ApplicationClient.js +2 -0
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +60 -53
  6. package/sdk/application/Cart/CartApplicationClient.js +130 -53
  7. package/sdk/application/Cart/CartApplicationModel.d.ts +489 -143
  8. package/sdk/application/Cart/CartApplicationModel.js +380 -159
  9. package/sdk/application/Cart/CartApplicationValidator.d.ts +38 -19
  10. package/sdk/application/Cart/CartApplicationValidator.js +34 -18
  11. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +88 -68
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +114 -94
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +194 -142
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +171 -133
  15. package/sdk/application/Common/CommonApplicationClient.d.ts +3 -2
  16. package/sdk/application/Common/CommonApplicationClient.js +6 -5
  17. package/sdk/application/Common/CommonApplicationModel.d.ts +9 -9
  18. package/sdk/application/Common/CommonApplicationModel.js +6 -6
  19. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +34 -27
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +34 -27
  21. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +45 -57
  22. package/sdk/application/Configuration/ConfigurationApplicationModel.js +35 -47
  23. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +2 -2
  24. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +2 -2
  25. package/sdk/application/Content/ContentApplicationClient.d.ts +23 -33
  26. package/sdk/application/Content/ContentApplicationClient.js +54 -75
  27. package/sdk/application/Content/ContentApplicationModel.d.ts +96 -39
  28. package/sdk/application/Content/ContentApplicationModel.js +88 -34
  29. package/sdk/application/Content/ContentApplicationValidator.d.ts +23 -17
  30. package/sdk/application/Content/ContentApplicationValidator.js +15 -10
  31. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -8
  32. package/sdk/application/FileStorage/FileStorageApplicationClient.js +14 -13
  33. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +23 -25
  34. package/sdk/application/FileStorage/FileStorageApplicationModel.js +16 -18
  35. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +6 -6
  36. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +6 -6
  37. package/sdk/application/Finance/FinanceApplicationClient.d.ts +36 -0
  38. package/sdk/application/Finance/FinanceApplicationClient.js +202 -0
  39. package/sdk/application/Finance/FinanceApplicationModel.d.ts +289 -0
  40. package/sdk/application/Finance/FinanceApplicationModel.js +208 -0
  41. package/sdk/application/Finance/FinanceApplicationValidator.d.ts +25 -0
  42. package/sdk/application/Finance/FinanceApplicationValidator.js +31 -0
  43. package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -3
  44. package/sdk/application/Lead/LeadApplicationClient.js +2 -3
  45. package/sdk/application/Lead/LeadApplicationModel.d.ts +11 -11
  46. package/sdk/application/Lead/LeadApplicationModel.js +19 -19
  47. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +39 -16
  48. package/sdk/application/Logistic/LogisticApplicationClient.js +189 -21
  49. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +532 -173
  50. package/sdk/application/Logistic/LogisticApplicationModel.js +409 -139
  51. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +54 -9
  52. package/sdk/application/Logistic/LogisticApplicationValidator.js +42 -8
  53. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -10
  54. package/sdk/application/Order/OrderApplicationClient.js +96 -13
  55. package/sdk/application/Order/OrderApplicationModel.d.ts +434 -102
  56. package/sdk/application/Order/OrderApplicationModel.js +278 -73
  57. package/sdk/application/Order/OrderApplicationValidator.d.ts +17 -3
  58. package/sdk/application/Order/OrderApplicationValidator.js +15 -2
  59. package/sdk/application/Payment/PaymentApplicationClient.d.ts +96 -99
  60. package/sdk/application/Payment/PaymentApplicationClient.js +111 -114
  61. package/sdk/application/Payment/PaymentApplicationModel.d.ts +293 -289
  62. package/sdk/application/Payment/PaymentApplicationModel.js +243 -241
  63. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +46 -46
  64. package/sdk/application/Payment/PaymentApplicationValidator.js +46 -46
  65. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -16
  66. package/sdk/application/Rewards/RewardsApplicationClient.js +19 -22
  67. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +37 -37
  68. package/sdk/application/Rewards/RewardsApplicationModel.js +29 -29
  69. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +6 -6
  70. package/sdk/application/Rewards/RewardsApplicationValidator.js +6 -6
  71. package/sdk/application/Share/ShareApplicationModel.js +1 -1
  72. package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
  73. package/sdk/application/Theme/ThemeApplicationClient.js +8 -6
  74. package/sdk/application/Theme/ThemeApplicationModel.d.ts +51 -19
  75. package/sdk/application/Theme/ThemeApplicationModel.js +47 -24
  76. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +16 -3
  77. package/sdk/application/Theme/ThemeApplicationValidator.js +9 -2
  78. package/sdk/application/User/UserApplicationClient.d.ts +10 -10
  79. package/sdk/application/User/UserApplicationClient.js +10 -10
  80. package/sdk/application/User/UserApplicationModel.d.ts +17 -17
  81. package/sdk/application/User/UserApplicationModel.js +16 -16
  82. package/sdk/application/User/UserApplicationValidator.d.ts +2 -2
  83. package/sdk/application/User/UserApplicationValidator.js +2 -2
  84. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  85. package/sdk/application/Webhook/WebhookApplicationClient.js +4 -4
  86. package/sdk/application/Webhook/WebhookApplicationModel.d.ts +11 -9
  87. package/sdk/application/Webhook/WebhookApplicationModel.js +8 -6
  88. package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +2 -2
  89. package/sdk/application/Webhook/WebhookApplicationValidator.js +2 -2
  90. package/sdk/application/index.d.ts +1 -0
  91. package/sdk/application/index.js +2 -0
  92. package/sdk/common/Clickstream.js +12 -0
  93. package/sdk/common/Constant.d.ts +5 -0
  94. package/sdk/common/Constant.js +5 -0
  95. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
  96. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
  97. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
  98. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
  99. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
  100. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
  101. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  102. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  103. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  104. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  105. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
  106. package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
  107. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
  108. package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
  109. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
  110. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
  111. package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
  112. package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
  113. package/sdk/partner/Theme/ThemePartnerModel.d.ts +99 -39
  114. package/sdk/partner/Theme/ThemePartnerModel.js +95 -38
  115. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  116. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
  117. package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
  118. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
  119. package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
  120. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
  121. package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
  122. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
  123. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
  124. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
  125. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
  126. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
  127. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
  129. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
  130. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  131. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  132. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  133. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  134. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  135. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  136. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  137. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  138. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
  139. package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
  140. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
  141. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
  142. package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
  143. package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
  144. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +192 -164
  145. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +371 -343
  146. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +99 -99
  147. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +54 -54
  148. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +139 -116
  149. package/sdk/platform/Catalog/CatalogPlatformClient.js +191 -168
  150. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1374 -749
  151. package/sdk/platform/Catalog/CatalogPlatformModel.js +1241 -830
  152. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
  153. package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
  154. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
  155. package/sdk/platform/Common/CommonPlatformClient.js +3 -2
  156. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  157. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  158. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
  159. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
  160. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  161. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  162. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
  163. package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  167. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
  168. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  169. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
  171. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
  172. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  173. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  174. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
  175. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
  176. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
  177. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
  178. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  179. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  180. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
  181. package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
  182. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
  183. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
  184. package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
  185. package/sdk/platform/Content/ContentPlatformClient.js +523 -336
  186. package/sdk/platform/Content/ContentPlatformModel.d.ts +1244 -397
  187. package/sdk/platform/Content/ContentPlatformModel.js +526 -392
  188. package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
  189. package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
  190. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
  191. package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
  192. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  193. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  194. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  195. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  196. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
  197. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
  198. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
  199. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
  200. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
  201. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  202. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
  203. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
  204. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  205. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  206. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  207. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  208. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  209. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  210. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
  211. package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
  212. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
  213. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  214. package/sdk/platform/Order/OrderPlatformClient.d.ts +138 -101
  215. package/sdk/platform/Order/OrderPlatformClient.js +267 -203
  216. package/sdk/platform/Order/OrderPlatformModel.d.ts +4497 -877
  217. package/sdk/platform/Order/OrderPlatformModel.js +2336 -812
  218. package/sdk/platform/Order/OrderPlatformValidator.d.ts +147 -50
  219. package/sdk/platform/Order/OrderPlatformValidator.js +75 -46
  220. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
  221. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
  222. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  223. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  224. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
  225. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
  226. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  227. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  228. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  229. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  230. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
  231. package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
  232. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  233. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  234. package/sdk/platform/PlatformClient.d.ts +0 -2
  235. package/sdk/platform/PlatformClient.js +0 -4
  236. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  237. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  238. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  239. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  240. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  241. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  242. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
  243. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
  244. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
  245. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
  246. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
  247. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
  248. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
  249. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
  250. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
  251. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
  252. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
  253. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  254. package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
  255. package/sdk/platform/Share/SharePlatformModel.js +27 -4
  256. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  257. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  258. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  259. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  260. package/sdk/platform/Theme/ThemePlatformModel.d.ts +40 -13
  261. package/sdk/platform/Theme/ThemePlatformModel.js +38 -17
  262. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  263. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  264. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  265. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  266. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  267. package/sdk/platform/User/UserPlatformModel.js +23 -23
  268. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  269. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  270. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  271. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  272. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  273. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  274. package/sdk/platform/index.d.ts +0 -1
  275. package/sdk/platform/index.js +0 -2
  276. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  277. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  278. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  279. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  280. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  281. package/sdk/public/Content/ContentPublicClient.js +791 -5
  282. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  283. package/sdk/public/Content/ContentPublicModel.js +649 -3
  284. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  285. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  286. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  287. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  288. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  289. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  290. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  291. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  292. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  293. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  294. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  295. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  296. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  297. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -5,9 +5,9 @@ export = CartPlatformApplicationValidator;
5
5
  */
6
6
  /**
7
7
  * @typedef AddItemsParam
8
- * @property {string} cartId - Current Cart _id
8
+ * @property {string} cartId - Current Cart id of user cart
9
9
  * @property {boolean} [b]
10
- * @property {CartPlatformModel.AddCartRequest} body
10
+ * @property {CartPlatformModel.AddCartCreation} body
11
11
  */
12
12
  /**
13
13
  * @typedef AddPriceAdjustmentParam
@@ -20,11 +20,11 @@ export = CartPlatformApplicationValidator;
20
20
  * @property {boolean} [p]
21
21
  * @property {string} [id]
22
22
  * @property {boolean} [buyNow]
23
- * @property {CartPlatformModel.ApplyCouponRequest} body
23
+ * @property {CartPlatformModel.ApplyCouponDetails} body
24
24
  */
25
25
  /**
26
26
  * @typedef CheckCartServiceabilityParam
27
- * @property {CartPlatformModel.OpenApiCartServiceabilityRequest} body
27
+ * @property {CartPlatformModel.OpenApiCartServiceabilityCreation} body
28
28
  */
29
29
  /**
30
30
  * @typedef CheckoutCartParam
@@ -45,11 +45,19 @@ export = CartPlatformApplicationValidator;
45
45
  /**
46
46
  * @typedef DeleteCartParam
47
47
  * @property {string} [id] - The unique identifier of the cart.
48
- * @property {CartPlatformModel.DeleteCartRequest} body
48
+ * @property {CartPlatformModel.DeleteCartDetails} body
49
+ */
50
+ /**
51
+ * @typedef DeleteCouponParam
52
+ * @property {string} id
53
+ */
54
+ /**
55
+ * @typedef DeletePromotionParam
56
+ * @property {string} id
49
57
  */
50
58
  /**
51
59
  * @typedef FetchAndvalidateCartItemsParam
52
- * @property {CartPlatformModel.OpenapiCartDetailsRequest} body
60
+ * @property {CartPlatformModel.OpenapiCartDetailsCreation} body
53
61
  */
54
62
  /** @typedef FetchCartMetaConfigParam */
55
63
  /**
@@ -125,7 +133,7 @@ export = CartPlatformApplicationValidator;
125
133
  */
126
134
  /**
127
135
  * @typedef GetCartShareLinkParam
128
- * @property {CartPlatformModel.GetShareCartLinkRequest} body
136
+ * @property {CartPlatformModel.GetShareCartLinkCreation} body
129
137
  */
130
138
  /**
131
139
  * @typedef GetCartSharedItemsParam
@@ -150,6 +158,13 @@ export = CartPlatformApplicationValidator;
150
158
  * @property {boolean} [isDisplay]
151
159
  * @property {string} [typeSlug]
152
160
  * @property {string} [code]
161
+ * @property {string} [createdBy]
162
+ * @property {string} [reviewedBy]
163
+ * @property {string} [approvedStartTime]
164
+ * @property {string} [approvedEndTime]
165
+ * @property {string} [reviewStartTime]
166
+ * @property {string} [reviewEndTime]
167
+ * @property {string} [status]
153
168
  */
154
169
  /**
155
170
  * @typedef GetItemCountParam
@@ -158,12 +173,12 @@ export = CartPlatformApplicationValidator;
158
173
  */
159
174
  /**
160
175
  * @typedef GetPriceAdjustmentsParam
161
- * @property {string} cartId - Cart Id
176
+ * @property {string} cartId - Cart id of user cart
162
177
  */
163
178
  /**
164
179
  * @typedef GetPromosCouponConfigParam
165
- * @property {string} [entityType] - Entity_type as promotion or coupon
166
- * @property {boolean} [isHidden] - Promo-coupon config shown or not
180
+ * @property {string} [entityType] - Entity type as promotion or coupon
181
+ * @property {boolean} [isHidden] - Promotion coupon config shown or not
167
182
  */
168
183
  /**
169
184
  * @typedef GetPromotionByIdParam
@@ -180,13 +195,13 @@ export = CartPlatformApplicationValidator;
180
195
  * /service/application/catalog/v1.0/products/
181
196
  * @property {number} [pageSize] - Number of offers to be fetched to show
182
197
  * @property {string} [promotionGroup] - Type of promotion groups
183
- * @property {number} [storeId] - Store id
198
+ * @property {number} [storeId] - Unique identifier of a store
184
199
  * @property {string} [cartType] - The type of cart
185
200
  */
186
201
  /**
187
202
  * @typedef GetPromotionPaymentOffersParam
188
- * @property {string} [id] - Cart id
189
- * @property {number} [uid] - Cart uid
203
+ * @property {string} [id] - Cart id of the user cart
204
+ * @property {number} [uid] - Cart uid of the user cart
190
205
  */
191
206
  /**
192
207
  * @typedef GetPromotionsParam
@@ -198,6 +213,13 @@ export = CartPlatformApplicationValidator;
198
213
  * @property {string} [promotionType]
199
214
  * @property {string} [fpPanel]
200
215
  * @property {string} [promotionId]
216
+ * @property {string} [createdBy]
217
+ * @property {string} [reviewedBy]
218
+ * @property {string} [approvedStartTime]
219
+ * @property {string} [approvedEndTime]
220
+ * @property {string} [reviewStartTime]
221
+ * @property {string} [reviewEndTime]
222
+ * @property {string} [status]
201
223
  */
202
224
  /**
203
225
  * @typedef GetShipmentsParam
@@ -234,12 +256,17 @@ export = CartPlatformApplicationValidator;
234
256
  * the customer wants the order home-delivered PickAtStore - If the customer
235
257
  * wants the handover of an order at the store itself.
236
258
  * @property {string} [id] - The unique identifier of the cart
237
- * @property {CartPlatformModel.PlatformAddCartRequest} body
259
+ * @property {CartPlatformModel.PlatformAddCartDetails} body
260
+ */
261
+ /**
262
+ * @typedef PlatformCheckoutCartParam
263
+ * @property {string} [id] - The unique identifier of the cart
264
+ * @property {CartPlatformModel.PlatformCartCheckoutDetailCreation} body
238
265
  */
239
266
  /**
240
267
  * @typedef PlatformCheckoutCartV2Param
241
268
  * @property {string} [id] - The unique identifier of the cart
242
- * @property {CartPlatformModel.PlatformCartCheckoutDetailV2Request} body
269
+ * @property {CartPlatformModel.PlatformCartCheckoutDetailV2Creation} body
243
270
  */
244
271
  /**
245
272
  * @typedef PlatformUpdateCartParam
@@ -253,7 +280,7 @@ export = CartPlatformApplicationValidator;
253
280
  * the price breakup of cart items.
254
281
  * @property {boolean} [buyNow] - This is a boolen value. Select `true` to
255
282
  * set/initialize buy now cart
256
- * @property {CartPlatformModel.PlatformUpdateCartRequest} body
283
+ * @property {CartPlatformModel.PlatformUpdateCartDetails} body
257
284
  */
258
285
  /**
259
286
  * @typedef RemoveAddressParam
@@ -275,24 +302,20 @@ export = CartPlatformApplicationValidator;
275
302
  * @property {boolean} [buyNow]
276
303
  * @property {boolean} [i]
277
304
  * @property {boolean} [b]
278
- * @property {CartPlatformModel.PlatformSelectCartAddressRequest} body
305
+ * @property {CartPlatformModel.PlatformSelectCartAddress} body
279
306
  */
280
307
  /**
281
308
  * @typedef SelectPaymentModeParam
282
309
  * @property {string} [id]
283
310
  * @property {boolean} [buyNow]
284
- * @property {string} [orderType] - The order type of shipment HomeDelivery - If
285
- * the customer wants the order home-delivered PickAtStore - If the customer
286
- * wants the handover of an order at the store itself.
287
- * @property {CartPlatformModel.UpdateCartPaymentRequest} body
311
+ * @property {string} [orderType]
312
+ * @property {CartPlatformModel.CartPaymentUpdate} body
288
313
  */
289
314
  /**
290
315
  * @typedef SelectPaymentModeV2Param
291
316
  * @property {string} [id]
292
317
  * @property {boolean} [buyNow]
293
- * @property {string} [orderType] - The order type of shipment HomeDelivery - If
294
- * the customer wants the order home-delivered PickAtStore - If the customer
295
- * wants the handover of an order at the store itself.
318
+ * @property {string} [orderType]
296
319
  * @property {CartPlatformModel.UpdateCartPaymentRequestV2} body
297
320
  */
298
321
  /**
@@ -302,20 +325,20 @@ export = CartPlatformApplicationValidator;
302
325
  */
303
326
  /**
304
327
  * @typedef UpdateCartParam
305
- * @property {string} cartId - Current Cart _id
328
+ * @property {string} cartId - Current Cart id of user cart
306
329
  * @property {boolean} [b]
307
- * @property {CartPlatformModel.UpdateCartRequest} body
330
+ * @property {CartPlatformModel.UpdateCartCreation} body
308
331
  */
309
332
  /**
310
333
  * @typedef UpdateCartMetaParam
311
334
  * @property {string} [id]
312
335
  * @property {boolean} [buyNow]
313
- * @property {CartPlatformModel.PlatformCartMetaRequest} body
336
+ * @property {CartPlatformModel.PlatformCartMetaCreation} body
314
337
  */
315
338
  /**
316
339
  * @typedef UpdateCartMetaConfigParam
317
- * @property {string} cartMetaId - CartMeta mongo _id for fetching single cart
318
- * meta data for editing
340
+ * @property {string} cartMetaId - CartMeta id for fetching single cart meta
341
+ * data for editing
319
342
  * @property {CartPlatformModel.CartMetaConfigUpdate} body
320
343
  */
321
344
  /**
@@ -366,7 +389,7 @@ export = CartPlatformApplicationValidator;
366
389
  * @property {string} [orderType] - The order type of shipment HomeDelivery - If
367
390
  * the customer wants the order home-delivered PickAtStore - If the customer
368
391
  * wants the handover of an order at the store itself.
369
- * @property {CartPlatformModel.UpdateCartShipmentRequest} body
392
+ * @property {CartPlatformModel.UpdateCartShipmentCreation} body
370
393
  */
371
394
  /**
372
395
  * @typedef ValidateCouponForPaymentParam
@@ -399,6 +422,10 @@ declare class CartPlatformApplicationValidator {
399
422
  static createPromotion(): CreatePromotionParam;
400
423
  /** @returns {DeleteCartParam} */
401
424
  static deleteCart(): DeleteCartParam;
425
+ /** @returns {DeleteCouponParam} */
426
+ static deleteCoupon(): DeleteCouponParam;
427
+ /** @returns {DeletePromotionParam} */
428
+ static deletePromotion(): DeletePromotionParam;
402
429
  /** @returns {FetchAndvalidateCartItemsParam} */
403
430
  static fetchAndvalidateCartItems(): FetchAndvalidateCartItemsParam;
404
431
  /** @returns {FetchCartMetaConfigParam} */
@@ -455,6 +482,8 @@ declare class CartPlatformApplicationValidator {
455
482
  static overrideCart(): OverrideCartParam;
456
483
  /** @returns {PlatformAddItemsParam} */
457
484
  static platformAddItems(): PlatformAddItemsParam;
485
+ /** @returns {PlatformCheckoutCartParam} */
486
+ static platformCheckoutCart(): PlatformCheckoutCartParam;
458
487
  /** @returns {PlatformCheckoutCartV2Param} */
459
488
  static platformCheckoutCartV2(): PlatformCheckoutCartV2Param;
460
489
  /** @returns {PlatformUpdateCartParam} */
@@ -499,18 +528,18 @@ declare class CartPlatformApplicationValidator {
499
528
  static validateCouponForPayment(): ValidateCouponForPaymentParam;
500
529
  }
501
530
  declare namespace CartPlatformApplicationValidator {
502
- export { AddAddressParam, AddItemsParam, AddPriceAdjustmentParam, ApplyCouponParam, CheckCartServiceabilityParam, CheckoutCartParam, CreateCartMetaConfigParam, CreateCouponParam, CreatePromotionParam, DeleteCartParam, FetchAndvalidateCartItemsParam, FetchCartMetaConfigParam, GetAbandonedCartParam, GetAbandonedCartDetailsParam, GetAddressByIdParam, GetAddressesParam, GetAppCouponsParam, GetAvailableDeliveryModesParam, GetCartParam, GetCartListParam, GetCartShareLinkParam, GetCartSharedItemsParam, GetCouponByIdParam, GetCouponCodeExistsParam, GetCouponOptionValuesParam, GetCouponsParam, GetItemCountParam, GetPriceAdjustmentsParam, GetPromosCouponConfigParam, GetPromotionByIdParam, GetPromotionCodeExistsParam, GetPromotionOffersParam, GetPromotionPaymentOffersParam, GetPromotionsParam, GetShipmentsParam, GetStoreAddressByUidParam, OverrideCartParam, PlatformAddItemsParam, PlatformCheckoutCartV2Param, PlatformUpdateCartParam, RemoveAddressParam, RemoveCouponParam, RemovePriceAdjustmentParam, SelectAddressParam, SelectPaymentModeParam, SelectPaymentModeV2Param, UpdateAddressParam, UpdateCartParam, UpdateCartMetaParam, UpdateCartMetaConfigParam, UpdateCartUserParam, UpdateCartWithSharedItemsParam, UpdateCouponParam, UpdateCouponPartiallyParam, UpdatePriceAdjustmentParam, UpdatePromotionParam, UpdatePromotionPartiallyParam, UpdateShipmentsParam, ValidateCouponForPaymentParam };
531
+ export { AddAddressParam, AddItemsParam, AddPriceAdjustmentParam, ApplyCouponParam, CheckCartServiceabilityParam, CheckoutCartParam, CreateCartMetaConfigParam, CreateCouponParam, CreatePromotionParam, DeleteCartParam, DeleteCouponParam, DeletePromotionParam, FetchAndvalidateCartItemsParam, FetchCartMetaConfigParam, GetAbandonedCartParam, GetAbandonedCartDetailsParam, GetAddressByIdParam, GetAddressesParam, GetAppCouponsParam, GetAvailableDeliveryModesParam, GetCartParam, GetCartListParam, GetCartShareLinkParam, GetCartSharedItemsParam, GetCouponByIdParam, GetCouponCodeExistsParam, GetCouponOptionValuesParam, GetCouponsParam, GetItemCountParam, GetPriceAdjustmentsParam, GetPromosCouponConfigParam, GetPromotionByIdParam, GetPromotionCodeExistsParam, GetPromotionOffersParam, GetPromotionPaymentOffersParam, GetPromotionsParam, GetShipmentsParam, GetStoreAddressByUidParam, OverrideCartParam, PlatformAddItemsParam, PlatformCheckoutCartParam, PlatformCheckoutCartV2Param, PlatformUpdateCartParam, RemoveAddressParam, RemoveCouponParam, RemovePriceAdjustmentParam, SelectAddressParam, SelectPaymentModeParam, SelectPaymentModeV2Param, UpdateAddressParam, UpdateCartParam, UpdateCartMetaParam, UpdateCartMetaConfigParam, UpdateCartUserParam, UpdateCartWithSharedItemsParam, UpdateCouponParam, UpdateCouponPartiallyParam, UpdatePriceAdjustmentParam, UpdatePromotionParam, UpdatePromotionPartiallyParam, UpdateShipmentsParam, ValidateCouponForPaymentParam };
503
532
  }
504
533
  type AddAddressParam = {
505
534
  body: CartPlatformModel.PlatformAddress;
506
535
  };
507
536
  type AddItemsParam = {
508
537
  /**
509
- * - Current Cart _id
538
+ * - Current Cart id of user cart
510
539
  */
511
540
  cartId: string;
512
541
  b?: boolean;
513
- body: CartPlatformModel.AddCartRequest;
542
+ body: CartPlatformModel.AddCartCreation;
514
543
  };
515
544
  type AddPriceAdjustmentParam = {
516
545
  body: CartPlatformModel.PriceAdjustmentAdd;
@@ -521,10 +550,10 @@ type ApplyCouponParam = {
521
550
  p?: boolean;
522
551
  id?: string;
523
552
  buyNow?: boolean;
524
- body: CartPlatformModel.ApplyCouponRequest;
553
+ body: CartPlatformModel.ApplyCouponDetails;
525
554
  };
526
555
  type CheckCartServiceabilityParam = {
527
- body: CartPlatformModel.OpenApiCartServiceabilityRequest;
556
+ body: CartPlatformModel.OpenApiCartServiceabilityCreation;
528
557
  };
529
558
  type CheckoutCartParam = {
530
559
  body: CartPlatformModel.OpenApiPlatformCheckoutReq;
@@ -543,10 +572,16 @@ type DeleteCartParam = {
543
572
  * - The unique identifier of the cart.
544
573
  */
545
574
  id?: string;
546
- body: CartPlatformModel.DeleteCartRequest;
575
+ body: CartPlatformModel.DeleteCartDetails;
576
+ };
577
+ type DeleteCouponParam = {
578
+ id: string;
579
+ };
580
+ type DeletePromotionParam = {
581
+ id: string;
547
582
  };
548
583
  type FetchAndvalidateCartItemsParam = {
549
- body: CartPlatformModel.OpenapiCartDetailsRequest;
584
+ body: CartPlatformModel.OpenapiCartDetailsCreation;
550
585
  };
551
586
  type GetAbandonedCartParam = {
552
587
  pageNo?: number;
@@ -633,7 +668,7 @@ type GetCartListParam = {
633
668
  filterOn?: string;
634
669
  };
635
670
  type GetCartShareLinkParam = {
636
- body: CartPlatformModel.GetShareCartLinkRequest;
671
+ body: CartPlatformModel.GetShareCartLinkCreation;
637
672
  };
638
673
  type GetCartSharedItemsParam = {
639
674
  /**
@@ -656,6 +691,13 @@ type GetCouponsParam = {
656
691
  isDisplay?: boolean;
657
692
  typeSlug?: string;
658
693
  code?: string;
694
+ createdBy?: string;
695
+ reviewedBy?: string;
696
+ approvedStartTime?: string;
697
+ approvedEndTime?: string;
698
+ reviewStartTime?: string;
699
+ reviewEndTime?: string;
700
+ status?: string;
659
701
  };
660
702
  type GetItemCountParam = {
661
703
  /**
@@ -669,17 +711,17 @@ type GetItemCountParam = {
669
711
  };
670
712
  type GetPriceAdjustmentsParam = {
671
713
  /**
672
- * - Cart Id
714
+ * - Cart id of user cart
673
715
  */
674
716
  cartId: string;
675
717
  };
676
718
  type GetPromosCouponConfigParam = {
677
719
  /**
678
- * - Entity_type as promotion or coupon
720
+ * - Entity type as promotion or coupon
679
721
  */
680
722
  entityType?: string;
681
723
  /**
682
- * - Promo-coupon config shown or not
724
+ * - Promotion coupon config shown or not
683
725
  */
684
726
  isHidden?: boolean;
685
727
  };
@@ -705,7 +747,7 @@ type GetPromotionOffersParam = {
705
747
  */
706
748
  promotionGroup?: string;
707
749
  /**
708
- * - Store id
750
+ * - Unique identifier of a store
709
751
  */
710
752
  storeId?: number;
711
753
  /**
@@ -715,11 +757,11 @@ type GetPromotionOffersParam = {
715
757
  };
716
758
  type GetPromotionPaymentOffersParam = {
717
759
  /**
718
- * - Cart id
760
+ * - Cart id of the user cart
719
761
  */
720
762
  id?: string;
721
763
  /**
722
- * - Cart uid
764
+ * - Cart uid of the user cart
723
765
  */
724
766
  uid?: number;
725
767
  };
@@ -732,6 +774,13 @@ type GetPromotionsParam = {
732
774
  promotionType?: string;
733
775
  fpPanel?: string;
734
776
  promotionId?: string;
777
+ createdBy?: string;
778
+ reviewedBy?: string;
779
+ approvedStartTime?: string;
780
+ approvedEndTime?: string;
781
+ reviewStartTime?: string;
782
+ reviewEndTime?: string;
783
+ status?: string;
735
784
  };
736
785
  type GetShipmentsParam = {
737
786
  pickAtStoreUid?: number;
@@ -797,14 +846,21 @@ type PlatformAddItemsParam = {
797
846
  * - The unique identifier of the cart
798
847
  */
799
848
  id?: string;
800
- body: CartPlatformModel.PlatformAddCartRequest;
849
+ body: CartPlatformModel.PlatformAddCartDetails;
850
+ };
851
+ type PlatformCheckoutCartParam = {
852
+ /**
853
+ * - The unique identifier of the cart
854
+ */
855
+ id?: string;
856
+ body: CartPlatformModel.PlatformCartCheckoutDetailCreation;
801
857
  };
802
858
  type PlatformCheckoutCartV2Param = {
803
859
  /**
804
860
  * - The unique identifier of the cart
805
861
  */
806
862
  id?: string;
807
- body: CartPlatformModel.PlatformCartCheckoutDetailV2Request;
863
+ body: CartPlatformModel.PlatformCartCheckoutDetailV2Creation;
808
864
  };
809
865
  type PlatformUpdateCartParam = {
810
866
  /**
@@ -832,7 +888,7 @@ type PlatformUpdateCartParam = {
832
888
  * set/initialize buy now cart
833
889
  */
834
890
  buyNow?: boolean;
835
- body: CartPlatformModel.PlatformUpdateCartRequest;
891
+ body: CartPlatformModel.PlatformUpdateCartDetails;
836
892
  };
837
893
  type RemoveAddressParam = {
838
894
  /**
@@ -856,27 +912,17 @@ type SelectAddressParam = {
856
912
  buyNow?: boolean;
857
913
  i?: boolean;
858
914
  b?: boolean;
859
- body: CartPlatformModel.PlatformSelectCartAddressRequest;
915
+ body: CartPlatformModel.PlatformSelectCartAddress;
860
916
  };
861
917
  type SelectPaymentModeParam = {
862
918
  id?: string;
863
919
  buyNow?: boolean;
864
- /**
865
- * - The order type of shipment HomeDelivery - If
866
- * the customer wants the order home-delivered PickAtStore - If the customer
867
- * wants the handover of an order at the store itself.
868
- */
869
920
  orderType?: string;
870
- body: CartPlatformModel.UpdateCartPaymentRequest;
921
+ body: CartPlatformModel.CartPaymentUpdate;
871
922
  };
872
923
  type SelectPaymentModeV2Param = {
873
924
  id?: string;
874
925
  buyNow?: boolean;
875
- /**
876
- * - The order type of shipment HomeDelivery - If
877
- * the customer wants the order home-delivered PickAtStore - If the customer
878
- * wants the handover of an order at the store itself.
879
- */
880
926
  orderType?: string;
881
927
  body: CartPlatformModel.UpdateCartPaymentRequestV2;
882
928
  };
@@ -889,21 +935,21 @@ type UpdateAddressParam = {
889
935
  };
890
936
  type UpdateCartParam = {
891
937
  /**
892
- * - Current Cart _id
938
+ * - Current Cart id of user cart
893
939
  */
894
940
  cartId: string;
895
941
  b?: boolean;
896
- body: CartPlatformModel.UpdateCartRequest;
942
+ body: CartPlatformModel.UpdateCartCreation;
897
943
  };
898
944
  type UpdateCartMetaParam = {
899
945
  id?: string;
900
946
  buyNow?: boolean;
901
- body: CartPlatformModel.PlatformCartMetaRequest;
947
+ body: CartPlatformModel.PlatformCartMetaCreation;
902
948
  };
903
949
  type UpdateCartMetaConfigParam = {
904
950
  /**
905
- * - CartMeta mongo _id for fetching single cart
906
- * meta data for editing
951
+ * - CartMeta id for fetching single cart meta
952
+ * data for editing
907
953
  */
908
954
  cartMetaId: string;
909
955
  body: CartPlatformModel.CartMetaConfigUpdate;
@@ -972,7 +1018,7 @@ type UpdateShipmentsParam = {
972
1018
  * wants the handover of an order at the store itself.
973
1019
  */
974
1020
  orderType?: string;
975
- body: CartPlatformModel.UpdateCartShipmentRequest;
1021
+ body: CartPlatformModel.UpdateCartShipmentCreation;
976
1022
  };
977
1023
  type ValidateCouponForPaymentParam = {
978
1024
  id?: string;