@gofynd/fdk-client-javascript 1.4.13 → 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 (294) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  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 +93 -37
  28. package/sdk/application/Content/ContentApplicationModel.js +83 -32
  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 +48 -17
  75. package/sdk/application/Theme/ThemeApplicationModel.js +42 -22
  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/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
  93. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
  94. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
  95. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
  96. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
  97. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
  98. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  99. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  100. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  101. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  102. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
  103. package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
  104. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
  105. package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
  106. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
  107. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
  108. package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
  109. package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
  110. package/sdk/partner/Theme/ThemePartnerModel.d.ts +96 -37
  111. package/sdk/partner/Theme/ThemePartnerModel.js +90 -36
  112. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  113. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
  114. package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
  115. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
  116. package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
  117. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
  118. package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
  119. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
  120. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
  121. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
  122. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
  123. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
  124. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
  125. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
  126. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
  127. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  129. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  130. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  131. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  132. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  133. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  134. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  135. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
  136. package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
  137. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
  138. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
  139. package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
  140. package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
  141. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +208 -183
  142. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +383 -358
  143. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +122 -126
  144. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +66 -68
  145. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +141 -118
  146. package/sdk/platform/Catalog/CatalogPlatformClient.js +193 -170
  147. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1516 -1766
  148. package/sdk/platform/Catalog/CatalogPlatformModel.js +1393 -1224
  149. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
  150. package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
  151. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
  152. package/sdk/platform/Common/CommonPlatformClient.js +3 -2
  153. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  154. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  155. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
  156. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
  157. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  158. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  159. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
  160. package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
  161. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
  162. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
  163. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  167. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
  168. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
  169. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  171. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
  172. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
  173. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
  174. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
  175. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  176. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  177. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
  178. package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
  179. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
  180. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
  181. package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
  182. package/sdk/platform/Content/ContentPlatformClient.js +523 -336
  183. package/sdk/platform/Content/ContentPlatformModel.d.ts +1241 -395
  184. package/sdk/platform/Content/ContentPlatformModel.js +521 -390
  185. package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
  186. package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
  187. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
  188. package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
  189. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  190. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  191. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  192. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  193. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
  194. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
  195. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
  196. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
  197. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
  198. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  199. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
  200. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
  201. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  202. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  203. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  204. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  205. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  206. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  207. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
  208. package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
  209. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
  210. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  211. package/sdk/platform/Order/OrderPlatformClient.d.ts +178 -97
  212. package/sdk/platform/Order/OrderPlatformClient.js +589 -229
  213. package/sdk/platform/Order/OrderPlatformModel.d.ts +5447 -3071
  214. package/sdk/platform/Order/OrderPlatformModel.js +3496 -1653
  215. package/sdk/platform/Order/OrderPlatformValidator.d.ts +241 -176
  216. package/sdk/platform/Order/OrderPlatformValidator.js +153 -97
  217. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
  218. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
  219. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  220. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  221. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
  222. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
  223. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  224. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  225. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  226. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  227. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
  228. package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
  229. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  230. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  231. package/sdk/platform/PlatformClient.d.ts +0 -2
  232. package/sdk/platform/PlatformClient.js +0 -4
  233. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  234. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  235. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  236. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  237. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  238. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  239. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
  240. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
  241. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
  242. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
  243. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
  244. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
  245. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
  246. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
  247. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
  248. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
  249. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
  250. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  251. package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
  252. package/sdk/platform/Share/SharePlatformModel.js +27 -4
  253. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  254. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  255. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  256. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  257. package/sdk/platform/Theme/ThemePlatformModel.d.ts +37 -11
  258. package/sdk/platform/Theme/ThemePlatformModel.js +33 -15
  259. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  260. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  261. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  262. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  263. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  264. package/sdk/platform/User/UserPlatformModel.js +23 -23
  265. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  266. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  267. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  268. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  269. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  270. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  271. package/sdk/platform/index.d.ts +0 -1
  272. package/sdk/platform/index.js +0 -2
  273. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  274. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  275. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  276. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  277. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  278. package/sdk/public/Content/ContentPublicClient.js +791 -5
  279. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  280. package/sdk/public/Content/ContentPublicModel.js +649 -3
  281. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  282. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  283. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  284. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  285. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  286. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  287. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  288. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  289. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  290. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  291. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  292. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  293. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  294. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -9,15 +9,13 @@ export = OrderPlatformValidator;
9
9
  */
10
10
  /**
11
11
  * @typedef BulkListingParam
12
- * @property {number} pageSize - The number of records to return per page in the response.
13
- * @property {number} pageNo - The page number to fetch from the paginated results.
14
- * @property {string} startDate - The start date for filtering the jobs,
15
- * expressed in UTC format
16
- * @property {string} endDate - The end date for filtering the jobs, expressed
17
- * in UTC format
18
- * @property {string} [status] - The status of the jobs to filter the results.
19
- * @property {string} [bulkActionType] - Pecifies the type of job action being requested.
20
- * @property {string} [searchKey] - A key or keyword used to search for specific jobs.
12
+ * @property {number} pageSize - Page size
13
+ * @property {number} pageNo - Page number
14
+ * @property {string} startDate - UTC start date in ISO format
15
+ * @property {string} endDate - UTC end date in ISO format
16
+ * @property {string} [status] - Status for which to fetch the jobs.
17
+ * @property {string} [bulkActionType] - Job type.
18
+ * @property {string} [searchKey] - Search_key.
21
19
  */
22
20
  /**
23
21
  * @typedef BulkStateTransistionParam
@@ -27,6 +25,10 @@ export = OrderPlatformValidator;
27
25
  * @typedef CheckOrderStatusParam
28
26
  * @property {OrderPlatformModel.OrderStatus} body
29
27
  */
28
+ /**
29
+ * @typedef CreateChannelConfigParam
30
+ * @property {OrderPlatformModel.CreateChannelConfigData} body
31
+ */
30
32
  /**
31
33
  * @typedef CreateOrderParam
32
34
  * @property {OrderPlatformModel.CreateOrderAPI} body
@@ -41,7 +43,7 @@ export = OrderPlatformValidator;
41
43
  */
42
44
  /**
43
45
  * @typedef DownloadLanesReportParam
44
- * @property {OrderPlatformModel.BulkReportsDownloadRequest} body
46
+ * @property {OrderPlatformModel.BulkReportsDownloadRequestSchema} body
45
47
  */
46
48
  /**
47
49
  * @typedef EInvoiceRetryParam
@@ -51,6 +53,10 @@ export = OrderPlatformValidator;
51
53
  * @typedef FailedOrderLogDetailsParam
52
54
  * @property {string} logId - Log Error ID
53
55
  */
56
+ /**
57
+ * @typedef FetchCreditBalanceDetailParam
58
+ * @property {OrderPlatformModel.FetchCreditBalanceRequestPayload} body
59
+ */
54
60
  /**
55
61
  * @typedef FetchRefundModeConfigParam
56
62
  * @property {OrderPlatformModel.RefundModeConfigRequestPayload} body
@@ -68,18 +74,18 @@ export = OrderPlatformValidator;
68
74
  */
69
75
  /**
70
76
  * @typedef GenerateProcessManifestParam
71
- * @property {OrderPlatformModel.ProcessManifestRequest} body
77
+ * @property {OrderPlatformModel.ProcessManifestRequestSchema} body
72
78
  */
73
79
  /**
74
80
  * @typedef GetAllowedStateTransitionParam
75
- * @property {string} orderingChannel - The channel through which orders are placed.
76
- * @property {string} status - The status key indicates the current status for
77
- * which the API will provide a list of possible next state transitions.
81
+ * @property {string} orderingChannel - Ordering channel
82
+ * @property {string} status - Current status of a shipment
78
83
  */
79
84
  /** @typedef GetAllowedTemplatesForBulkParam */
80
85
  /**
81
86
  * @typedef GetAnnouncementsParam
82
- * @property {string} [date] - Date On which the announcement is Active.
87
+ * @property {string} [date] - Date On which the announcement is Active (Date
88
+ * should in ISO Datetime format IST Time)
83
89
  */
84
90
  /**
85
91
  * @typedef GetBagByIdParam
@@ -104,8 +110,8 @@ export = OrderPlatformValidator;
104
110
  * @typedef GetBulkShipmentExcelFileParam
105
111
  * @property {string} [salesChannels] - Comma separated values of sales channel ids
106
112
  * @property {string} [dpIds] - Comma separated values of delivery partner ids
107
- * @property {string} [startDate] - UTC start date in ISO format
108
- * @property {string} [endDate] - UTC end date in ISO format
113
+ * @property {string} [startDate] - Date time in UTC timezone as per ISO format.
114
+ * @property {string} [endDate] - Date time in UTC timezone as per ISO format.
109
115
  * @property {string} [stores] - Comma separated values of store ids
110
116
  * @property {string} [tags] - Comma separated values of tags
111
117
  * @property {string} [bagStatus] - Comma separated values of bag statuses
@@ -115,12 +121,13 @@ export = OrderPlatformValidator;
115
121
  * @property {number} [pageNo]
116
122
  * @property {number} [pageSize]
117
123
  */
124
+ /** @typedef GetChannelConfigParam */
118
125
  /**
119
126
  * @typedef GetFileByStatusParam
120
- * @property {string} batchId - Batch Id to identify the bulk operation request.
121
- * @property {string} status - The status of the jobs to filter the results.
122
- * @property {string} fileType - The type of file to be downloaded.
123
- * @property {string} [reportType] - The type of report to be downloaded.
127
+ * @property {string} batchId
128
+ * @property {string} status
129
+ * @property {string} fileType - It contains the type of file.
130
+ * @property {string} [reportType]
124
131
  */
125
132
  /**
126
133
  * @typedef GetLaneConfigParam
@@ -135,38 +142,44 @@ export = OrderPlatformValidator;
135
142
  * @property {string} [salesChannels]
136
143
  * @property {string} [paymentMode] - Comma separated values of payment modes
137
144
  * @property {string} [bagStatus] - Comma separated values of bag statuses
138
- * @property {string} [searchType]
145
+ * @property {string} [searchType] - Search_type refers to the field that will
146
+ * be used as the target for the search operation
139
147
  * @property {string} [searchValue]
140
148
  * @property {string} [tags]
141
- * @property {number} [timeToDispatch]
149
+ * @property {number} [timeToDispatch] - Time_to_dispatch refers to estimated SLA time.
142
150
  * @property {string} [paymentMethods]
143
151
  * @property {boolean} [myOrders]
144
152
  * @property {boolean} [showCrossCompanyData] - Flag to view cross & non-cross
145
153
  * company order
146
- * @property {string} [orderType]
154
+ * @property {string} [orderType] - Defines the specific journey a shipment will
155
+ * follow based on the application's operational needs and customer
156
+ * preferences. This field categorizes orders into distinct types, each
157
+ * associated with a unique processing flow. For example:
158
+ *
159
+ * - "HomeDelivery": The order undergoes all state transitions typical for a
160
+ * delivery, from processing the shipment to final delivery at the
161
+ * customer's address.
162
+ * - "PickAtStore": The order is prepared for pickup and moved to a state where it
163
+ * is ready to be handed over directly to the customer at the store. This
164
+ * type streamlines the process by bypassing traditional shipping stages
165
+ * and facilitating a quicker transition to the final handover stage.
147
166
  */
148
167
  /**
149
168
  * @typedef GetManifestDetailsParam
150
- * @property {string} manifestId - The unique identifier assigned to the manifest.
151
- * @property {string} [dpIds] - Filter shipments with the specific Courier
152
- * partner Ids which is a combination of courier partner extension and scheme Ids.
153
- * @property {string} [endDate] - End date for the shipment search range in manifest.
154
- * @property {string} [startDate] - Start date for the shipment search range in manifest.
155
- * @property {number} [pageNo] - Page number for pagination.
156
- * @property {number} [pageSize] - Number of records per page for pagination.
169
+ * @property {string} manifestId
157
170
  */
158
171
  /**
159
172
  * @typedef GetManifestShipmentsParam
160
173
  * @property {string} dpIds - Filter shipments with the specific Courier partner
161
174
  * Ids which is a combination of courier partner extension and scheme Ids.
162
- * @property {number} stores - Filter results based on specific store IDs.
175
+ * @property {number} stores - Filter with the specific store.
163
176
  * @property {string} toDate - End date for the shipment search range.
164
177
  * @property {string} fromDate - Start date for the shipment search range.
165
- * @property {string} [dpName] - Filter results based on specific courier partner name.
166
- * @property {string} [salesChannels] - Filter results based on comma-separated
167
- * list of sales channels.
168
- * @property {string} [searchType] - Filter results based on search type.
169
- * @property {string} [searchValue] - Filter results based on the search value.
178
+ * @property {string} [dpName] - Filter with the specific courier partner name.
179
+ * @property {string} [salesChannels] - Comma-separated list of sales channels.
180
+ * @property {string} [searchType] - Type of search (e.g., by shipment ID, order
181
+ * ID, AWB number).
182
+ * @property {string} [searchValue] - Value to search for based on the search type.
170
183
  * @property {number} [pageNo] - Page number for pagination.
171
184
  * @property {number} [pageSize] - Number of records per page for pagination.
172
185
  */
@@ -176,20 +189,16 @@ export = OrderPlatformValidator;
176
189
  */
177
190
  /**
178
191
  * @typedef GetManifestsParam
179
- * @property {string} [status] - Filter for the status of manifests.
180
- * @property {string} [startDate] - The starting date for filtering manifests in
181
- * ISO format
182
- * @property {string} [endDate] - The end date for filtering manifests in ISO format
183
- * @property {string} [searchType] - Specifies the type of search to perform.
184
- * @property {number} [storeId] - Filter to fetch manifests for a specific store
185
- * by its ID.
186
- * @property {string} [searchValue] - The value to search for based on the
187
- * selected search type.
188
- * @property {string} [dpIds] - A comma-separated list of courier partner IDs
189
- * (DP IDs) to filter the manifests.
190
- * @property {number} [pageNo] - The number of the page to fetch data.
191
- * @property {number} [pageSize] - The number of records to return per page for
192
- * pagination.
192
+ * @property {string} [status] - Possible Status [ active, closed ]
193
+ * @property {string} [startDate] - UTC Start Date in ISO format
194
+ * @property {string} [endDate] - UTC End Date in ISO format
195
+ * @property {string} [searchType] - Search type options [ fynd_order_id,
196
+ * shipment_id, manifest_id, dp_name, awb_no ]
197
+ * @property {number} [storeId] - Fetch manifests for a Store.
198
+ * @property {string} [searchValue] - Search value for selected search type
199
+ * @property {string} [dpIds] - DP Ids separated by ',' (comma)
200
+ * @property {number} [pageNo]
201
+ * @property {number} [pageSize]
193
202
  */
194
203
  /**
195
204
  * @typedef GetOrderByIdParam
@@ -211,10 +220,10 @@ export = OrderPlatformValidator;
211
220
  * associated with the order
212
221
  * @property {string} [searchValue] - Search_value is matched against the field
213
222
  * specified by the search_type
214
- * @property {string} [fromDate]
215
- * @property {string} [toDate]
216
- * @property {string} [startDate]
217
- * @property {string} [endDate]
223
+ * @property {string} [fromDate] - Date time in UTC timezone as per ISO format.
224
+ * @property {string} [toDate] - Date time in UTC timezone as per ISO format.
225
+ * @property {string} [startDate] - Date time in UTC timezone as per ISO format.
226
+ * @property {string} [endDate] - Date time in UTC timezone as per ISO format.
218
227
  * @property {string} [dpIds] - Delivery Partner IDs to which shipments are assigned.
219
228
  * @property {string} [stores]
220
229
  * @property {string} [salesChannels]
@@ -229,6 +238,11 @@ export = OrderPlatformValidator;
229
238
  * @property {string} [orderType]
230
239
  * @property {boolean} [allowInactive] - Flag indicating whether inactive
231
240
  * shipments are allowed
241
+ * @property {string} [groupEntity] - Defines the grouping criterion for
242
+ * retrieving shipments or orders. It specifies whether the results should be
243
+ * organized based on shipment groups or order groups. For example, using
244
+ * 'shipments' groups results by shipment, while an invalid value like 'abcd'
245
+ * may not be recognized, leading to errors or default behavior.
232
246
  */
233
247
  /** @typedef GetRoleBasedActionsParam */
234
248
  /**
@@ -242,8 +256,8 @@ export = OrderPlatformValidator;
242
256
  */
243
257
  /**
244
258
  * @typedef GetShipmentHistoryParam
245
- * @property {string} [shipmentId] - Identifier for the shipment
246
- * @property {number} [bagId] - Identifier for a bag or product.
259
+ * @property {string} [shipmentId] - Shipment Id
260
+ * @property {number} [bagId] - Bag/Product Id
247
261
  */
248
262
  /**
249
263
  * @typedef GetShipmentReasonsParam
@@ -260,8 +274,9 @@ export = OrderPlatformValidator;
260
274
  * @property {string} [bagStatus] - Comma separated values of bag statuses
261
275
  * @property {boolean} [statusOverrideLane] - Use this flag to fetch by
262
276
  * bag_status and override lane
263
- * @property {number} [timeToDispatch]
264
- * @property {string} [searchType] - Search type key
277
+ * @property {number} [timeToDispatch] - Time_to_dispatch refers to estimated SLA time.
278
+ * @property {string} [searchType] - Search_type refers to the field that will
279
+ * be used as the target for the search operation
265
280
  * @property {string} [searchValue] - Search type value
266
281
  * @property {string} [fromDate] - Start Date in DD-MM-YYYY format
267
282
  * @property {string} [toDate] - End Date in DD-MM-YYYY format
@@ -288,7 +303,24 @@ export = OrderPlatformValidator;
288
303
  * company order
289
304
  * @property {string} [tags] - Comma separated values of tags
290
305
  * @property {string} [customerId]
291
- * @property {string} [orderType]
306
+ * @property {string} [orderType] - Defines the specific journey a shipment will
307
+ * follow based on the application's operational needs and customer
308
+ * preferences. This field categorizes orders into distinct types, each
309
+ * associated with a unique processing flow. For example:
310
+ *
311
+ * - "HomeDelivery": The order undergoes all state transitions typical for a
312
+ * delivery, from processing the shipment to final delivery at the
313
+ * customer's address.
314
+ * - "PickAtStore": The order is prepared for pickup and moved to a state where it
315
+ * is ready to be handed over directly to the customer at the store. This
316
+ * type streamlines the process by bypassing traditional shipping stages
317
+ * and facilitating a quicker transition to the final handover stage.
318
+ *
319
+ * @property {string} [groupEntity] - Defines the grouping criterion for
320
+ * retrieving shipments or orders. It specifies whether the results should be
321
+ * organized based on shipment groups or order groups. For example, using
322
+ * 'shipments' groups results by shipment, while an invalid value like 'abcd'
323
+ * may not be recognized, leading to errors or default behavior.
292
324
  */
293
325
  /**
294
326
  * @typedef GetStateManagerConfigParam
@@ -312,8 +344,7 @@ export = OrderPlatformValidator;
312
344
  */
313
345
  /**
314
346
  * @typedef JobDetailsParam
315
- * @property {string} batchId - A unique identifier for the batch associated
316
- * with this bulk action.
347
+ * @property {string} batchId
317
348
  */
318
349
  /**
319
350
  * @typedef OrderUpdateParam
@@ -323,6 +354,10 @@ export = OrderPlatformValidator;
323
354
  * @typedef PostShipmentHistoryParam
324
355
  * @property {OrderPlatformModel.PostShipmentHistory} body
325
356
  */
357
+ /**
358
+ * @typedef ProcessManifestsParam
359
+ * @property {OrderPlatformModel.ProcessManifest} body
360
+ */
326
361
  /**
327
362
  * @typedef ReassignLocationParam
328
363
  * @property {OrderPlatformModel.StoreReassign} body
@@ -337,30 +372,24 @@ export = OrderPlatformValidator;
337
372
  */
338
373
  /**
339
374
  * @typedef TrackShipmentParam
340
- * @property {string} [shipmentId] - Unique identifier of a shipment on the platform.
375
+ * @property {string} [shipmentId] - Shipment ID
341
376
  * @property {string} [awb] - AWB number
342
- * @property {number} [pageNo] - Page number for pagination.
343
- * @property {number} [pageSize] - Number of records per page for pagination.
377
+ * @property {number} [pageNo] - Page number
378
+ * @property {number} [pageSize] - Page size
344
379
  */
345
380
  /**
346
381
  * @typedef UpdateAddressParam
347
- * @property {string} shipmentId
348
- * @property {string} [name]
349
- * @property {string} [address]
350
- * @property {string} [addressType]
351
- * @property {string} [pincode]
352
- * @property {string} [phone]
353
- * @property {string} [email]
354
- * @property {string} [landmark]
355
- * @property {string} addressCategory
356
- * @property {string} [city]
357
- * @property {string} [state]
358
- * @property {string} [country]
382
+ * @property {string} shipmentId - Unique shipment no. that is auto-generated
383
+ * @property {OrderPlatformModel.UpdateAddressRequestBody} body
359
384
  */
360
385
  /**
361
386
  * @typedef UpdatePackagingDimensionsParam
362
387
  * @property {OrderPlatformModel.UpdatePackagingDimensionsPayload} body
363
388
  */
389
+ /**
390
+ * @typedef UpdatePaymentInfoParam
391
+ * @property {OrderPlatformModel.UpdateShipmentPaymentMode} body
392
+ */
364
393
  /**
365
394
  * @typedef UpdateShipmentLockParam
366
395
  * @property {OrderPlatformModel.UpdateShipmentLockPayload} body
@@ -375,7 +404,8 @@ export = OrderPlatformValidator;
375
404
  */
376
405
  /**
377
406
  * @typedef UploadConsentsParam
378
- * @property {OrderPlatformModel.UploadManifestConsent} body
407
+ * @property {string} manifestId
408
+ * @property {OrderPlatformModel.UploadConsent} body
379
409
  */
380
410
  /**
381
411
  * @typedef VerifyMobileOTPParam
@@ -392,6 +422,8 @@ declare class OrderPlatformValidator {
392
422
  static bulkStateTransistion(): BulkStateTransistionParam;
393
423
  /** @returns {CheckOrderStatusParam} */
394
424
  static checkOrderStatus(): CheckOrderStatusParam;
425
+ /** @returns {CreateChannelConfigParam} */
426
+ static createChannelConfig(): CreateChannelConfigParam;
395
427
  /** @returns {CreateOrderParam} */
396
428
  static createOrder(): CreateOrderParam;
397
429
  /** @returns {DispatchManifestsParam} */
@@ -404,6 +436,8 @@ declare class OrderPlatformValidator {
404
436
  static eInvoiceRetry(): EInvoiceRetryParam;
405
437
  /** @returns {FailedOrderLogDetailsParam} */
406
438
  static failedOrderLogDetails(): FailedOrderLogDetailsParam;
439
+ /** @returns {FetchCreditBalanceDetailParam} */
440
+ static fetchCreditBalanceDetail(): FetchCreditBalanceDetailParam;
407
441
  /** @returns {FetchRefundModeConfigParam} */
408
442
  static fetchRefundModeConfig(): FetchRefundModeConfigParam;
409
443
  /** @returns {GenerateInvoiceIDParam} */
@@ -426,6 +460,8 @@ declare class OrderPlatformValidator {
426
460
  static getBulkActionTemplate(): any;
427
461
  /** @returns {GetBulkShipmentExcelFileParam} */
428
462
  static getBulkShipmentExcelFile(): GetBulkShipmentExcelFileParam;
463
+ /** @returns {GetChannelConfigParam} */
464
+ static getChannelConfig(): any;
429
465
  /** @returns {GetFileByStatusParam} */
430
466
  static getFileByStatus(): GetFileByStatusParam;
431
467
  /** @returns {GetLaneConfigParam} */
@@ -468,6 +504,8 @@ declare class OrderPlatformValidator {
468
504
  static orderUpdate(): OrderUpdateParam;
469
505
  /** @returns {PostShipmentHistoryParam} */
470
506
  static postShipmentHistory(): PostShipmentHistoryParam;
507
+ /** @returns {ProcessManifestsParam} */
508
+ static processManifests(): ProcessManifestsParam;
471
509
  /** @returns {ReassignLocationParam} */
472
510
  static reassignLocation(): ReassignLocationParam;
473
511
  /** @returns {SendSmsNinjaParam} */
@@ -480,6 +518,8 @@ declare class OrderPlatformValidator {
480
518
  static updateAddress(): UpdateAddressParam;
481
519
  /** @returns {UpdatePackagingDimensionsParam} */
482
520
  static updatePackagingDimensions(): UpdatePackagingDimensionsParam;
521
+ /** @returns {UpdatePaymentInfoParam} */
522
+ static updatePaymentInfo(): UpdatePaymentInfoParam;
483
523
  /** @returns {UpdateShipmentLockParam} */
484
524
  static updateShipmentLock(): UpdateShipmentLockParam;
485
525
  /** @returns {UpdateShipmentStatusParam} */
@@ -492,7 +532,7 @@ declare class OrderPlatformValidator {
492
532
  static verifyMobileOTP(): VerifyMobileOTPParam;
493
533
  }
494
534
  declare namespace OrderPlatformValidator {
495
- export { AddStateManagerConfigParam, AttachOrderUserParam, BulkListingParam, BulkStateTransistionParam, CheckOrderStatusParam, CreateOrderParam, DispatchManifestsParam, DownloadBulkActionTemplateParam, DownloadLanesReportParam, EInvoiceRetryParam, FailedOrderLogDetailsParam, FetchRefundModeConfigParam, GenerateInvoiceIDParam, GeneratePOSReceiptByOrderIdParam, GenerateProcessManifestParam, GetAllowedStateTransitionParam, GetAllowedTemplatesForBulkParam, GetAnnouncementsParam, GetBagByIdParam, GetBagsParam, GetBulkActionTemplateParam, GetBulkShipmentExcelFileParam, GetFileByStatusParam, GetLaneConfigParam, GetManifestDetailsParam, GetManifestShipmentsParam, GetManifestfiltersParam, GetManifestsParam, GetOrderByIdParam, GetOrdersParam, GetRoleBasedActionsParam, GetShipmentByIdParam, GetShipmentHistoryParam, GetShipmentReasonsParam, GetShipmentsParam, GetStateManagerConfigParam, GetStateTransitionMapParam, GetTemplateParam, GetfiltersParam, InvalidateShipmentCacheParam, JobDetailsParam, OrderUpdateParam, PostShipmentHistoryParam, ReassignLocationParam, SendSmsNinjaParam, SendUserMobileOTPParam, TrackShipmentParam, UpdateAddressParam, UpdatePackagingDimensionsParam, UpdateShipmentLockParam, UpdateShipmentStatusParam, UpdateShipmentTrackingParam, UploadConsentsParam, VerifyMobileOTPParam };
535
+ export { AddStateManagerConfigParam, AttachOrderUserParam, BulkListingParam, BulkStateTransistionParam, CheckOrderStatusParam, CreateChannelConfigParam, CreateOrderParam, DispatchManifestsParam, DownloadBulkActionTemplateParam, DownloadLanesReportParam, EInvoiceRetryParam, FailedOrderLogDetailsParam, FetchCreditBalanceDetailParam, FetchRefundModeConfigParam, GenerateInvoiceIDParam, GeneratePOSReceiptByOrderIdParam, GenerateProcessManifestParam, GetAllowedStateTransitionParam, GetAllowedTemplatesForBulkParam, GetAnnouncementsParam, GetBagByIdParam, GetBagsParam, GetBulkActionTemplateParam, GetBulkShipmentExcelFileParam, GetChannelConfigParam, GetFileByStatusParam, GetLaneConfigParam, GetManifestDetailsParam, GetManifestShipmentsParam, GetManifestfiltersParam, GetManifestsParam, GetOrderByIdParam, GetOrdersParam, GetRoleBasedActionsParam, GetShipmentByIdParam, GetShipmentHistoryParam, GetShipmentReasonsParam, GetShipmentsParam, GetStateManagerConfigParam, GetStateTransitionMapParam, GetTemplateParam, GetfiltersParam, InvalidateShipmentCacheParam, JobDetailsParam, OrderUpdateParam, PostShipmentHistoryParam, ProcessManifestsParam, ReassignLocationParam, SendSmsNinjaParam, SendUserMobileOTPParam, TrackShipmentParam, UpdateAddressParam, UpdatePackagingDimensionsParam, UpdatePaymentInfoParam, UpdateShipmentLockParam, UpdateShipmentStatusParam, UpdateShipmentTrackingParam, UploadConsentsParam, VerifyMobileOTPParam };
496
536
  }
497
537
  type AddStateManagerConfigParam = {
498
538
  body: OrderPlatformModel.TransitionConfigPayload;
@@ -502,33 +542,31 @@ type AttachOrderUserParam = {
502
542
  };
503
543
  type BulkListingParam = {
504
544
  /**
505
- * - The number of records to return per page in the response.
545
+ * - Page size
506
546
  */
507
547
  pageSize: number;
508
548
  /**
509
- * - The page number to fetch from the paginated results.
549
+ * - Page number
510
550
  */
511
551
  pageNo: number;
512
552
  /**
513
- * - The start date for filtering the jobs,
514
- * expressed in UTC format
553
+ * - UTC start date in ISO format
515
554
  */
516
555
  startDate: string;
517
556
  /**
518
- * - The end date for filtering the jobs, expressed
519
- * in UTC format
557
+ * - UTC end date in ISO format
520
558
  */
521
559
  endDate: string;
522
560
  /**
523
- * - The status of the jobs to filter the results.
561
+ * - Status for which to fetch the jobs.
524
562
  */
525
563
  status?: string;
526
564
  /**
527
- * - Pecifies the type of job action being requested.
565
+ * - Job type.
528
566
  */
529
567
  bulkActionType?: string;
530
568
  /**
531
- * - A key or keyword used to search for specific jobs.
569
+ * - Search_key.
532
570
  */
533
571
  searchKey?: string;
534
572
  };
@@ -538,6 +576,9 @@ type BulkStateTransistionParam = {
538
576
  type CheckOrderStatusParam = {
539
577
  body: OrderPlatformModel.OrderStatus;
540
578
  };
579
+ type CreateChannelConfigParam = {
580
+ body: OrderPlatformModel.CreateChannelConfigData;
581
+ };
541
582
  type CreateOrderParam = {
542
583
  body: OrderPlatformModel.CreateOrderAPI;
543
584
  };
@@ -551,7 +592,7 @@ type DownloadBulkActionTemplateParam = {
551
592
  templateSlug?: string;
552
593
  };
553
594
  type DownloadLanesReportParam = {
554
- body: OrderPlatformModel.BulkReportsDownloadRequest;
595
+ body: OrderPlatformModel.BulkReportsDownloadRequestSchema;
555
596
  };
556
597
  type EInvoiceRetryParam = {
557
598
  body: OrderPlatformModel.EInvoiceRetry;
@@ -562,6 +603,9 @@ type FailedOrderLogDetailsParam = {
562
603
  */
563
604
  logId: string;
564
605
  };
606
+ type FetchCreditBalanceDetailParam = {
607
+ body: OrderPlatformModel.FetchCreditBalanceRequestPayload;
608
+ };
565
609
  type FetchRefundModeConfigParam = {
566
610
  body: OrderPlatformModel.RefundModeConfigRequestPayload;
567
611
  };
@@ -578,22 +622,22 @@ type GeneratePOSReceiptByOrderIdParam = {
578
622
  documentType?: string;
579
623
  };
580
624
  type GenerateProcessManifestParam = {
581
- body: OrderPlatformModel.ProcessManifestRequest;
625
+ body: OrderPlatformModel.ProcessManifestRequestSchema;
582
626
  };
583
627
  type GetAllowedStateTransitionParam = {
584
628
  /**
585
- * - The channel through which orders are placed.
629
+ * - Ordering channel
586
630
  */
587
631
  orderingChannel: string;
588
632
  /**
589
- * - The status key indicates the current status for
590
- * which the API will provide a list of possible next state transitions.
633
+ * - Current status of a shipment
591
634
  */
592
635
  status: string;
593
636
  };
594
637
  type GetAnnouncementsParam = {
595
638
  /**
596
- * - Date On which the announcement is Active.
639
+ * - Date On which the announcement is Active (Date
640
+ * should in ISO Datetime format IST Time)
597
641
  */
598
642
  date?: string;
599
643
  };
@@ -659,11 +703,11 @@ type GetBulkShipmentExcelFileParam = {
659
703
  */
660
704
  dpIds?: string;
661
705
  /**
662
- * - UTC start date in ISO format
706
+ * - Date time in UTC timezone as per ISO format.
663
707
  */
664
708
  startDate?: string;
665
709
  /**
666
- * - UTC end date in ISO format
710
+ * - Date time in UTC timezone as per ISO format.
667
711
  */
668
712
  endDate?: string;
669
713
  /**
@@ -694,21 +738,12 @@ type GetBulkShipmentExcelFileParam = {
694
738
  pageSize?: number;
695
739
  };
696
740
  type GetFileByStatusParam = {
697
- /**
698
- * - Batch Id to identify the bulk operation request.
699
- */
700
741
  batchId: string;
701
- /**
702
- * - The status of the jobs to filter the results.
703
- */
704
742
  status: string;
705
743
  /**
706
- * - The type of file to be downloaded.
744
+ * - It contains the type of file.
707
745
  */
708
746
  fileType: string;
709
- /**
710
- * - The type of report to be downloaded.
711
- */
712
747
  reportType?: string;
713
748
  };
714
749
  type GetLaneConfigParam = {
@@ -753,9 +788,16 @@ type GetLaneConfigParam = {
753
788
  * - Comma separated values of bag statuses
754
789
  */
755
790
  bagStatus?: string;
791
+ /**
792
+ * - Search_type refers to the field that will
793
+ * be used as the target for the search operation
794
+ */
756
795
  searchType?: string;
757
796
  searchValue?: string;
758
797
  tags?: string;
798
+ /**
799
+ * - Time_to_dispatch refers to estimated SLA time.
800
+ */
759
801
  timeToDispatch?: number;
760
802
  paymentMethods?: string;
761
803
  myOrders?: boolean;
@@ -764,34 +806,24 @@ type GetLaneConfigParam = {
764
806
  * company order
765
807
  */
766
808
  showCrossCompanyData?: boolean;
809
+ /**
810
+ * - Defines the specific journey a shipment will
811
+ * follow based on the application's operational needs and customer
812
+ * preferences. This field categorizes orders into distinct types, each
813
+ * associated with a unique processing flow. For example:
814
+ *
815
+ * - "HomeDelivery": The order undergoes all state transitions typical for a
816
+ * delivery, from processing the shipment to final delivery at the
817
+ * customer's address.
818
+ * - "PickAtStore": The order is prepared for pickup and moved to a state where it
819
+ * is ready to be handed over directly to the customer at the store. This
820
+ * type streamlines the process by bypassing traditional shipping stages
821
+ * and facilitating a quicker transition to the final handover stage.
822
+ */
767
823
  orderType?: string;
768
824
  };
769
825
  type GetManifestDetailsParam = {
770
- /**
771
- * - The unique identifier assigned to the manifest.
772
- */
773
826
  manifestId: string;
774
- /**
775
- * - Filter shipments with the specific Courier
776
- * partner Ids which is a combination of courier partner extension and scheme Ids.
777
- */
778
- dpIds?: string;
779
- /**
780
- * - End date for the shipment search range in manifest.
781
- */
782
- endDate?: string;
783
- /**
784
- * - Start date for the shipment search range in manifest.
785
- */
786
- startDate?: string;
787
- /**
788
- * - Page number for pagination.
789
- */
790
- pageNo?: number;
791
- /**
792
- * - Number of records per page for pagination.
793
- */
794
- pageSize?: number;
795
827
  };
796
828
  type GetManifestShipmentsParam = {
797
829
  /**
@@ -800,7 +832,7 @@ type GetManifestShipmentsParam = {
800
832
  */
801
833
  dpIds: string;
802
834
  /**
803
- * - Filter results based on specific store IDs.
835
+ * - Filter with the specific store.
804
836
  */
805
837
  stores: number;
806
838
  /**
@@ -812,20 +844,20 @@ type GetManifestShipmentsParam = {
812
844
  */
813
845
  fromDate: string;
814
846
  /**
815
- * - Filter results based on specific courier partner name.
847
+ * - Filter with the specific courier partner name.
816
848
  */
817
849
  dpName?: string;
818
850
  /**
819
- * - Filter results based on comma-separated
820
- * list of sales channels.
851
+ * - Comma-separated list of sales channels.
821
852
  */
822
853
  salesChannels?: string;
823
854
  /**
824
- * - Filter results based on search type.
855
+ * - Type of search (e.g., by shipment ID, order
856
+ * ID, AWB number).
825
857
  */
826
858
  searchType?: string;
827
859
  /**
828
- * - Filter results based on the search value.
860
+ * - Value to search for based on the search type.
829
861
  */
830
862
  searchValue?: string;
831
863
  /**
@@ -845,45 +877,35 @@ type GetManifestfiltersParam = {
845
877
  };
846
878
  type GetManifestsParam = {
847
879
  /**
848
- * - Filter for the status of manifests.
880
+ * - Possible Status [ active, closed ]
849
881
  */
850
882
  status?: string;
851
883
  /**
852
- * - The starting date for filtering manifests in
853
- * ISO format
884
+ * - UTC Start Date in ISO format
854
885
  */
855
886
  startDate?: string;
856
887
  /**
857
- * - The end date for filtering manifests in ISO format
888
+ * - UTC End Date in ISO format
858
889
  */
859
890
  endDate?: string;
860
891
  /**
861
- * - Specifies the type of search to perform.
892
+ * - Search type options [ fynd_order_id,
893
+ * shipment_id, manifest_id, dp_name, awb_no ]
862
894
  */
863
895
  searchType?: string;
864
896
  /**
865
- * - Filter to fetch manifests for a specific store
866
- * by its ID.
897
+ * - Fetch manifests for a Store.
867
898
  */
868
899
  storeId?: number;
869
900
  /**
870
- * - The value to search for based on the
871
- * selected search type.
901
+ * - Search value for selected search type
872
902
  */
873
903
  searchValue?: string;
874
904
  /**
875
- * - A comma-separated list of courier partner IDs
876
- * (DP IDs) to filter the manifests.
905
+ * - DP Ids separated by ',' (comma)
877
906
  */
878
907
  dpIds?: string;
879
- /**
880
- * - The number of the page to fetch data.
881
- */
882
908
  pageNo?: number;
883
- /**
884
- * - The number of records to return per page for
885
- * pagination.
886
- */
887
909
  pageSize?: number;
888
910
  };
889
911
  type GetOrderByIdParam = {
@@ -925,9 +947,21 @@ type GetOrdersParam = {
925
947
  * specified by the search_type
926
948
  */
927
949
  searchValue?: string;
950
+ /**
951
+ * - Date time in UTC timezone as per ISO format.
952
+ */
928
953
  fromDate?: string;
954
+ /**
955
+ * - Date time in UTC timezone as per ISO format.
956
+ */
929
957
  toDate?: string;
958
+ /**
959
+ * - Date time in UTC timezone as per ISO format.
960
+ */
930
961
  startDate?: string;
962
+ /**
963
+ * - Date time in UTC timezone as per ISO format.
964
+ */
931
965
  endDate?: string;
932
966
  /**
933
967
  * - Delivery Partner IDs to which shipments are assigned.
@@ -952,6 +986,14 @@ type GetOrdersParam = {
952
986
  * shipments are allowed
953
987
  */
954
988
  allowInactive?: boolean;
989
+ /**
990
+ * - Defines the grouping criterion for
991
+ * retrieving shipments or orders. It specifies whether the results should be
992
+ * organized based on shipment groups or order groups. For example, using
993
+ * 'shipments' groups results by shipment, while an invalid value like 'abcd'
994
+ * may not be recognized, leading to errors or default behavior.
995
+ */
996
+ groupEntity?: string;
955
997
  };
956
998
  type GetShipmentByIdParam = {
957
999
  /**
@@ -975,11 +1017,11 @@ type GetShipmentByIdParam = {
975
1017
  };
976
1018
  type GetShipmentHistoryParam = {
977
1019
  /**
978
- * - Identifier for the shipment
1020
+ * - Shipment Id
979
1021
  */
980
1022
  shipmentId?: string;
981
1023
  /**
982
- * - Identifier for a bag or product.
1024
+ * - Bag/Product Id
983
1025
  */
984
1026
  bagId?: number;
985
1027
  };
@@ -1014,9 +1056,13 @@ type GetShipmentsParam = {
1014
1056
  * bag_status and override lane
1015
1057
  */
1016
1058
  statusOverrideLane?: boolean;
1059
+ /**
1060
+ * - Time_to_dispatch refers to estimated SLA time.
1061
+ */
1017
1062
  timeToDispatch?: number;
1018
1063
  /**
1019
- * - Search type key
1064
+ * - Search_type refers to the field that will
1065
+ * be used as the target for the search operation
1020
1066
  */
1021
1067
  searchType?: string;
1022
1068
  /**
@@ -1102,7 +1148,29 @@ type GetShipmentsParam = {
1102
1148
  */
1103
1149
  tags?: string;
1104
1150
  customerId?: string;
1151
+ /**
1152
+ * - Defines the specific journey a shipment will
1153
+ * follow based on the application's operational needs and customer
1154
+ * preferences. This field categorizes orders into distinct types, each
1155
+ * associated with a unique processing flow. For example:
1156
+ *
1157
+ * - "HomeDelivery": The order undergoes all state transitions typical for a
1158
+ * delivery, from processing the shipment to final delivery at the
1159
+ * customer's address.
1160
+ * - "PickAtStore": The order is prepared for pickup and moved to a state where it
1161
+ * is ready to be handed over directly to the customer at the store. This
1162
+ * type streamlines the process by bypassing traditional shipping stages
1163
+ * and facilitating a quicker transition to the final handover stage.
1164
+ */
1105
1165
  orderType?: string;
1166
+ /**
1167
+ * - Defines the grouping criterion for
1168
+ * retrieving shipments or orders. It specifies whether the results should be
1169
+ * organized based on shipment groups or order groups. For example, using
1170
+ * 'shipments' groups results by shipment, while an invalid value like 'abcd'
1171
+ * may not be recognized, leading to errors or default behavior.
1172
+ */
1173
+ groupEntity?: string;
1106
1174
  };
1107
1175
  type GetStateManagerConfigParam = {
1108
1176
  /**
@@ -1135,10 +1203,6 @@ type InvalidateShipmentCacheParam = {
1135
1203
  body: OrderPlatformModel.InvalidateShipmentCachePayload;
1136
1204
  };
1137
1205
  type JobDetailsParam = {
1138
- /**
1139
- * - A unique identifier for the batch associated
1140
- * with this bulk action.
1141
- */
1142
1206
  batchId: string;
1143
1207
  };
1144
1208
  type OrderUpdateParam = {
@@ -1147,6 +1211,9 @@ type OrderUpdateParam = {
1147
1211
  type PostShipmentHistoryParam = {
1148
1212
  body: OrderPlatformModel.PostShipmentHistory;
1149
1213
  };
1214
+ type ProcessManifestsParam = {
1215
+ body: OrderPlatformModel.ProcessManifest;
1216
+ };
1150
1217
  type ReassignLocationParam = {
1151
1218
  body: OrderPlatformModel.StoreReassign;
1152
1219
  };
@@ -1158,7 +1225,7 @@ type SendUserMobileOTPParam = {
1158
1225
  };
1159
1226
  type TrackShipmentParam = {
1160
1227
  /**
1161
- * - Unique identifier of a shipment on the platform.
1228
+ * - Shipment ID
1162
1229
  */
1163
1230
  shipmentId?: string;
1164
1231
  /**
@@ -1166,31 +1233,27 @@ type TrackShipmentParam = {
1166
1233
  */
1167
1234
  awb?: string;
1168
1235
  /**
1169
- * - Page number for pagination.
1236
+ * - Page number
1170
1237
  */
1171
1238
  pageNo?: number;
1172
1239
  /**
1173
- * - Number of records per page for pagination.
1240
+ * - Page size
1174
1241
  */
1175
1242
  pageSize?: number;
1176
1243
  };
1177
1244
  type UpdateAddressParam = {
1245
+ /**
1246
+ * - Unique shipment no. that is auto-generated
1247
+ */
1178
1248
  shipmentId: string;
1179
- name?: string;
1180
- address?: string;
1181
- addressType?: string;
1182
- pincode?: string;
1183
- phone?: string;
1184
- email?: string;
1185
- landmark?: string;
1186
- addressCategory: string;
1187
- city?: string;
1188
- state?: string;
1189
- country?: string;
1249
+ body: OrderPlatformModel.UpdateAddressRequestBody;
1190
1250
  };
1191
1251
  type UpdatePackagingDimensionsParam = {
1192
1252
  body: OrderPlatformModel.UpdatePackagingDimensionsPayload;
1193
1253
  };
1254
+ type UpdatePaymentInfoParam = {
1255
+ body: OrderPlatformModel.UpdateShipmentPaymentMode;
1256
+ };
1194
1257
  type UpdateShipmentLockParam = {
1195
1258
  body: OrderPlatformModel.UpdateShipmentLockPayload;
1196
1259
  };
@@ -1201,13 +1264,15 @@ type UpdateShipmentTrackingParam = {
1201
1264
  body: OrderPlatformModel.CourierPartnerTrackingDetails;
1202
1265
  };
1203
1266
  type UploadConsentsParam = {
1204
- body: OrderPlatformModel.UploadManifestConsent;
1267
+ manifestId: string;
1268
+ body: OrderPlatformModel.UploadConsent;
1205
1269
  };
1206
1270
  type VerifyMobileOTPParam = {
1207
1271
  body: OrderPlatformModel.VerifyMobileOTP;
1208
1272
  };
1209
1273
  type GetAllowedTemplatesForBulkParam = any;
1210
1274
  type GetBulkActionTemplateParam = any;
1275
+ type GetChannelConfigParam = any;
1211
1276
  type GetRoleBasedActionsParam = any;
1212
1277
  type GetStateTransitionMapParam = any;
1213
1278
  import OrderPlatformModel = require("./OrderPlatformModel");