@gofynd/fdk-client-javascript 1.3.11-beta.6 → 1.3.11-beta.8

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 (229) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +1 -1
  4. package/sdk/application/Cart/CartApplicationClient.js +5 -3
  5. package/sdk/application/Cart/CartApplicationModel.d.ts +107 -1
  6. package/sdk/application/Cart/CartApplicationModel.js +74 -0
  7. package/sdk/application/Cart/CartApplicationValidator.d.ts +4 -0
  8. package/sdk/application/Cart/CartApplicationValidator.js +4 -0
  9. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +3 -6
  10. package/sdk/application/Catalog/CatalogApplicationClient.js +7 -20
  11. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2 -2
  12. package/sdk/application/Catalog/CatalogApplicationModel.js +2 -2
  13. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -14
  14. package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -6
  15. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +183 -49
  16. package/sdk/application/Configuration/ConfigurationApplicationModel.js +173 -31
  17. package/sdk/application/Content/ContentApplicationClient.d.ts +36 -0
  18. package/sdk/application/Content/ContentApplicationClient.js +246 -0
  19. package/sdk/application/Content/ContentApplicationModel.d.ts +208 -1
  20. package/sdk/application/Content/ContentApplicationModel.js +252 -0
  21. package/sdk/application/Content/ContentApplicationValidator.d.ts +40 -1
  22. package/sdk/application/Content/ContentApplicationValidator.js +41 -0
  23. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +67 -0
  24. package/sdk/application/Logistic/LogisticApplicationClient.js +547 -0
  25. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +456 -1
  26. package/sdk/application/Logistic/LogisticApplicationModel.js +488 -0
  27. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +211 -1
  28. package/sdk/application/Logistic/LogisticApplicationValidator.js +131 -0
  29. package/sdk/application/Order/OrderApplicationClient.d.ts +3 -3
  30. package/sdk/application/Order/OrderApplicationClient.js +32 -8
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +6 -0
  32. package/sdk/application/Order/OrderApplicationModel.js +6 -0
  33. package/sdk/application/Order/OrderApplicationValidator.d.ts +20 -0
  34. package/sdk/application/Order/OrderApplicationValidator.js +8 -0
  35. package/sdk/application/Payment/PaymentApplicationClient.d.ts +46 -2
  36. package/sdk/application/Payment/PaymentApplicationClient.js +341 -10
  37. package/sdk/application/Payment/PaymentApplicationModel.d.ts +493 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.js +341 -70
  39. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +59 -14
  40. package/sdk/application/Payment/PaymentApplicationValidator.js +64 -10
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +34 -1
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +24 -0
  43. package/sdk/application/Theme/ThemeApplicationClient.d.ts +1 -1
  44. package/sdk/application/Theme/ThemeApplicationClient.js +7 -3
  45. package/sdk/application/Theme/ThemeApplicationModel.d.ts +222 -36
  46. package/sdk/application/Theme/ThemeApplicationModel.js +322 -26
  47. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +10 -0
  48. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -0
  49. package/sdk/application/User/UserApplicationClient.d.ts +33 -0
  50. package/sdk/application/User/UserApplicationClient.js +239 -0
  51. package/sdk/application/User/UserApplicationModel.d.ts +28 -13
  52. package/sdk/application/User/UserApplicationModel.js +36 -12
  53. package/sdk/application/User/UserApplicationValidator.d.ts +34 -1
  54. package/sdk/application/User/UserApplicationValidator.js +36 -0
  55. package/sdk/partner/Lead/LeadPartnerClient.d.ts +125 -0
  56. package/sdk/partner/Lead/LeadPartnerClient.js +785 -0
  57. package/sdk/partner/Lead/LeadPartnerModel.d.ts +1127 -0
  58. package/sdk/partner/Lead/LeadPartnerModel.js +896 -0
  59. package/sdk/partner/Lead/LeadPartnerValidator.d.ts +12 -0
  60. package/sdk/partner/Lead/LeadPartnerValidator.js +67 -0
  61. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +155 -0
  62. package/sdk/partner/Logistics/LogisticsPartnerClient.js +1195 -0
  63. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +372 -0
  64. package/sdk/partner/Logistics/LogisticsPartnerModel.js +442 -0
  65. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +16 -0
  66. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +123 -0
  67. package/sdk/partner/PartnerClient.d.ts +6 -0
  68. package/sdk/partner/PartnerClient.js +9 -0
  69. package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -0
  70. package/sdk/partner/Theme/ThemePartnerClient.js +80 -0
  71. package/sdk/partner/Theme/ThemePartnerModel.d.ts +100 -43
  72. package/sdk/partner/Theme/ThemePartnerModel.js +74 -30
  73. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -0
  74. package/sdk/partner/Theme/ThemePartnerValidator.js +9 -0
  75. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +99 -0
  76. package/sdk/partner/Webhook/WebhookPartnerClient.js +753 -0
  77. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +566 -0
  78. package/sdk/partner/Webhook/WebhookPartnerModel.js +583 -0
  79. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +12 -0
  80. package/sdk/partner/Webhook/WebhookPartnerValidator.js +74 -0
  81. package/sdk/partner/index.d.ts +3 -0
  82. package/sdk/partner/index.js +6 -0
  83. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +2 -2
  84. package/sdk/platform/Billing/BillingPlatformClient.d.ts +11 -1
  85. package/sdk/platform/Billing/BillingPlatformClient.js +110 -3
  86. package/sdk/platform/Billing/BillingPlatformModel.d.ts +67 -1
  87. package/sdk/platform/Billing/BillingPlatformModel.js +78 -0
  88. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +43 -4
  89. package/sdk/platform/Billing/BillingPlatformValidator.js +29 -2
  90. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
  91. package/sdk/platform/Cart/CartPlatformApplicationClient.js +7 -1
  92. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +4 -0
  93. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +4 -0
  94. package/sdk/platform/Cart/CartPlatformModel.d.ts +100 -5
  95. package/sdk/platform/Cart/CartPlatformModel.js +71 -4
  96. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +15 -11
  97. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +52 -21
  98. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +27 -0
  99. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +11 -0
  100. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +26 -4
  101. package/sdk/platform/Catalog/CatalogPlatformClient.js +173 -7
  102. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +304 -1
  103. package/sdk/platform/Catalog/CatalogPlatformModel.js +335 -0
  104. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +31 -3
  105. package/sdk/platform/Catalog/CatalogPlatformValidator.js +27 -2
  106. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +138 -36
  107. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +739 -57
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +128 -3
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +111 -1
  110. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +150 -1
  111. package/sdk/platform/Communication/CommunicationPlatformModel.js +172 -0
  112. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +8 -2
  113. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -4
  114. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +38 -9
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +42 -8
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +14 -0
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +6 -0
  118. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +8 -8
  119. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +4 -4
  120. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +371 -132
  121. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +288 -77
  122. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +2 -2
  123. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +2 -2
  124. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +391 -0
  125. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3630 -1059
  126. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +342 -1
  127. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +401 -0
  128. package/sdk/platform/Content/ContentPlatformClient.d.ts +277 -0
  129. package/sdk/platform/Content/ContentPlatformClient.js +2000 -0
  130. package/sdk/platform/Content/ContentPlatformModel.d.ts +1094 -1
  131. package/sdk/platform/Content/ContentPlatformModel.js +1356 -46
  132. package/sdk/platform/Content/ContentPlatformValidator.d.ts +238 -0
  133. package/sdk/platform/Content/ContentPlatformValidator.js +310 -0
  134. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +2 -2
  135. package/sdk/platform/Discount/DiscountPlatformClient.js +2 -2
  136. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +96 -13
  137. package/sdk/platform/Discount/DiscountPlatformModel.js +104 -12
  138. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +16 -6
  139. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +117 -8
  140. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +55 -4
  141. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +39 -2
  142. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +16 -5
  143. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +18 -4
  144. package/sdk/platform/Finance/FinancePlatformClient.d.ts +33 -0
  145. package/sdk/platform/Finance/FinancePlatformClient.js +240 -0
  146. package/sdk/platform/Finance/FinancePlatformModel.d.ts +151 -5
  147. package/sdk/platform/Finance/FinancePlatformModel.js +190 -4
  148. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +38 -1
  149. package/sdk/platform/Finance/FinancePlatformValidator.js +38 -0
  150. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +38 -28
  151. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +137 -56
  152. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +41 -29
  153. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +33 -21
  154. package/sdk/platform/Lead/LeadPlatformModel.d.ts +12 -3
  155. package/sdk/platform/Lead/LeadPlatformModel.js +16 -2
  156. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +23 -1
  157. package/sdk/platform/Order/OrderPlatformApplicationClient.js +178 -1
  158. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +39 -1
  159. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -0
  160. package/sdk/platform/Order/OrderPlatformClient.d.ts +202 -31
  161. package/sdk/platform/Order/OrderPlatformClient.js +2010 -586
  162. package/sdk/platform/Order/OrderPlatformModel.d.ts +1030 -468
  163. package/sdk/platform/Order/OrderPlatformModel.js +1176 -523
  164. package/sdk/platform/Order/OrderPlatformValidator.d.ts +318 -35
  165. package/sdk/platform/Order/OrderPlatformValidator.js +292 -29
  166. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +119 -13
  167. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +749 -39
  168. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +143 -7
  169. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +133 -6
  170. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +1 -1
  171. package/sdk/platform/Payment/PaymentPlatformClient.js +1 -1
  172. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +996 -134
  173. package/sdk/platform/Payment/PaymentPlatformModel.js +721 -58
  174. package/sdk/platform/PlatformApplicationClient.d.ts +2 -2
  175. package/sdk/platform/PlatformApplicationClient.js +4 -4
  176. package/sdk/platform/PlatformClient.d.ts +4 -2
  177. package/sdk/platform/PlatformClient.js +8 -4
  178. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +142 -66
  179. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +645 -147
  180. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +131 -63
  181. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +126 -47
  182. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +217 -105
  183. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1136 -347
  184. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +912 -313
  185. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1071 -355
  186. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +382 -133
  187. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +266 -102
  188. package/sdk/platform/Theme/ThemePlatformClient.d.ts +11 -1
  189. package/sdk/platform/Theme/ThemePlatformClient.js +87 -3
  190. package/sdk/platform/Theme/ThemePlatformModel.d.ts +333 -47
  191. package/sdk/platform/Theme/ThemePlatformModel.js +395 -35
  192. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +28 -4
  193. package/sdk/platform/Theme/ThemePlatformValidator.js +21 -2
  194. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +116 -1
  195. package/sdk/platform/User/UserPlatformApplicationClient.js +931 -85
  196. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +224 -7
  197. package/sdk/platform/User/UserPlatformApplicationValidator.js +173 -5
  198. package/sdk/platform/User/UserPlatformModel.d.ts +344 -7
  199. package/sdk/platform/User/UserPlatformModel.js +256 -5
  200. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +47 -39
  201. package/sdk/platform/Webhook/WebhookPlatformClient.js +63 -61
  202. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +264 -156
  203. package/sdk/platform/Webhook/WebhookPlatformModel.js +276 -153
  204. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +7 -10
  205. package/sdk/platform/Webhook/WebhookPlatformValidator.js +6 -6
  206. package/sdk/platform/index.d.ts +1 -1
  207. package/sdk/platform/index.js +2 -2
  208. package/sdk/public/Billing/BillingPublicClient.d.ts +23 -0
  209. package/sdk/public/Billing/BillingPublicClient.js +116 -0
  210. package/sdk/public/Billing/BillingPublicModel.d.ts +92 -0
  211. package/sdk/public/Billing/BillingPublicModel.js +96 -0
  212. package/sdk/public/Billing/BillingPublicValidator.d.ts +18 -0
  213. package/sdk/public/Billing/BillingPublicValidator.js +19 -0
  214. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  215. package/sdk/public/Content/ContentPublicClient.js +114 -0
  216. package/sdk/public/Content/ContentPublicModel.d.ts +53 -0
  217. package/sdk/public/Content/ContentPublicModel.js +60 -0
  218. package/sdk/public/Content/ContentPublicValidator.d.ts +18 -0
  219. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  220. package/sdk/public/PublicClient.d.ts +4 -0
  221. package/sdk/public/PublicClient.js +8 -0
  222. package/sdk/public/Webhook/WebhookPublicClient.d.ts +33 -0
  223. package/sdk/public/Webhook/WebhookPublicClient.js +242 -0
  224. package/sdk/public/Webhook/WebhookPublicModel.d.ts +147 -1
  225. package/sdk/public/Webhook/WebhookPublicModel.js +177 -1
  226. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +23 -1
  227. package/sdk/public/Webhook/WebhookPublicValidator.js +31 -0
  228. package/sdk/public/index.d.ts +2 -0
  229. package/sdk/public/index.js +4 -0
@@ -3,6 +3,20 @@ export = OrderPlatformValidator;
3
3
  * @typedef AttachOrderUserParam
4
4
  * @property {OrderPlatformModel.AttachOrderUser} body
5
5
  */
6
+ /**
7
+ * @typedef BulkListingParam
8
+ * @property {number} pageSize - Page size
9
+ * @property {number} pageNo - Page number
10
+ * @property {string} startDate - UTC start date in ISO format
11
+ * @property {string} endDate - UTC end date in ISO format
12
+ * @property {string} [status] - Status for which to fetch the jobs.
13
+ * @property {string} [bulkActionType] - Job type.
14
+ * @property {string} [searchKey] - Search_key.
15
+ */
16
+ /**
17
+ * @typedef BulkStateTransistionParam
18
+ * @property {OrderPlatformModel.BulkStateTransistionRequest} body
19
+ */
6
20
  /**
7
21
  * @typedef CheckOrderStatusParam
8
22
  * @property {OrderPlatformModel.OrderStatus} body
@@ -24,7 +38,8 @@ export = OrderPlatformValidator;
24
38
  * @property {OrderPlatformModel.CreateOrderAPI} body
25
39
  */
26
40
  /**
27
- * @typedef DispatchManifestParam
41
+ * @typedef DispatchManifestsParam
42
+ * @property {string} manifestId
28
43
  * @property {OrderPlatformModel.DispatchManifest} body
29
44
  */
30
45
  /**
@@ -39,6 +54,10 @@ export = OrderPlatformValidator;
39
54
  * @typedef EInvoiceRetryParam
40
55
  * @property {OrderPlatformModel.EInvoiceRetry} body
41
56
  */
57
+ /**
58
+ * @typedef FailedOrderLogDetailsParam
59
+ * @property {string} logId - Log Error ID
60
+ */
42
61
  /**
43
62
  * @typedef FetchCreditBalanceDetailParam
44
63
  * @property {OrderPlatformModel.FetchCreditBalanceRequestPayload} body
@@ -47,11 +66,6 @@ export = OrderPlatformValidator;
47
66
  * @typedef FetchRefundModeConfigParam
48
67
  * @property {OrderPlatformModel.RefundModeConfigRequestPayload} body
49
68
  */
50
- /**
51
- * @typedef GenerateInvoiceIDParam
52
- * @property {string} invoiceType - Mention the type of invoice id to generate
53
- * @property {OrderPlatformModel.GenerateInvoiceIDRequest} body
54
- */
55
69
  /**
56
70
  * @typedef GeneratePOSReceiptByOrderIdParam
57
71
  * @property {string} orderId
@@ -63,6 +77,7 @@ export = OrderPlatformValidator;
63
77
  * @property {string} orderingChannel - Ordering channel
64
78
  * @property {string} status - Current status of a shipment
65
79
  */
80
+ /** @typedef GetAllowedTemplatesForBulkParam */
66
81
  /**
67
82
  * @typedef GetAnnouncementsParam
68
83
  * @property {string} [date] - Date On which the announcement is Active (Date
@@ -91,8 +106,8 @@ export = OrderPlatformValidator;
91
106
  * @typedef GetBulkShipmentExcelFileParam
92
107
  * @property {string} [salesChannels] - Comma separated values of sales channel ids
93
108
  * @property {string} [dpIds] - Comma separated values of delivery partner ids
94
- * @property {string} [fromDate] - Start Date in DD-MM-YYYY format
95
- * @property {string} [toDate] - End Date in DD-MM-YYYY format
109
+ * @property {string} [startDate] - UTC start date in ISO format
110
+ * @property {string} [endDate] - UTC end date in ISO format
96
111
  * @property {string} [stores] - Comma separated values of store ids
97
112
  * @property {string} [tags] - Comma separated values of tags
98
113
  * @property {string} [bagStatus] - Comma separated values of bag statuses
@@ -103,12 +118,21 @@ export = OrderPlatformValidator;
103
118
  * @property {number} [pageSize]
104
119
  */
105
120
  /** @typedef GetChannelConfigParam */
121
+ /**
122
+ * @typedef GetFileByStatusParam
123
+ * @property {string} batchId
124
+ * @property {string} status
125
+ * @property {string} fileType
126
+ * @property {string} [reportType]
127
+ */
106
128
  /**
107
129
  * @typedef GetLaneConfigParam
108
130
  * @property {string} [superLane] - Name of lane for which data is to be fetched
109
131
  * @property {string} [groupEntity] - Name of group entity
110
132
  * @property {string} [fromDate] - Start Date in DD-MM-YYYY format
111
133
  * @property {string} [toDate] - End Date in DD-MM-YYYY format
134
+ * @property {string} [startDate] - UTC Start Date in ISO format
135
+ * @property {string} [endDate] - UTC End Date in ISO format
112
136
  * @property {string} [dpIds] - Comma separated values of delivery partner ids
113
137
  * @property {string} [stores] - Comma separated values of store ids
114
138
  * @property {string} [salesChannels]
@@ -124,10 +148,45 @@ export = OrderPlatformValidator;
124
148
  * company order
125
149
  * @property {string} [orderType]
126
150
  */
151
+ /**
152
+ * @typedef GetManifestDetailsParam
153
+ * @property {string} manifestId
154
+ */
155
+ /**
156
+ * @typedef GetManifestShipmentsParam
157
+ * @property {number} dpIds
158
+ * @property {string} stores
159
+ * @property {string} toDate
160
+ * @property {string} fromDate
161
+ * @property {string} [dpName]
162
+ * @property {string} [salesChannels]
163
+ * @property {string} [searchType]
164
+ * @property {string} [searchValue]
165
+ * @property {string} [pageNo]
166
+ * @property {string} [pageSize]
167
+ */
168
+ /**
169
+ * @typedef GetManifestfiltersParam
170
+ * @property {string} view - Name of View
171
+ */
172
+ /**
173
+ * @typedef GetManifestsParam
174
+ * @property {string} [status] - Possible Status [ active, closed ]
175
+ * @property {string} [startDate] - UTC Start Date in ISO format
176
+ * @property {string} [endDate] - UTC End Date in ISO format
177
+ * @property {string} [searchType] - Search type options [ fynd_order_id,
178
+ * shipment_id, manifest_id, dp_name, awb_no ]
179
+ * @property {number} [storeId] - Fetch manifests for a Store.
180
+ * @property {string} [searchValue] - Search value for selected search type
181
+ * @property {string} [dpIds] - DP Ids separated by ',' (comma)
182
+ * @property {number} [pageNo]
183
+ * @property {number} [pageSize]
184
+ */
127
185
  /**
128
186
  * @typedef GetOrderByIdParam
129
187
  * @property {string} orderId
130
188
  * @property {boolean} [myOrders]
189
+ * @property {boolean} [allowInactive] - Flag to allow inactive shipments
131
190
  */
132
191
  /**
133
192
  * @typedef GetOrdersParam
@@ -145,6 +204,8 @@ export = OrderPlatformValidator;
145
204
  * specified by the search_type
146
205
  * @property {string} [fromDate]
147
206
  * @property {string} [toDate]
207
+ * @property {string} [startDate]
208
+ * @property {string} [endDate]
148
209
  * @property {string} [dpIds] - Delivery Partner IDs to which shipments are assigned.
149
210
  * @property {string} [stores]
150
211
  * @property {string} [salesChannels]
@@ -189,6 +250,8 @@ export = OrderPlatformValidator;
189
250
  * @property {string} [searchValue] - Search type value
190
251
  * @property {string} [fromDate] - Start Date in DD-MM-YYYY format
191
252
  * @property {string} [toDate] - End Date in DD-MM-YYYY format
253
+ * @property {string} [startDate] - UTC Start Date in ISO format
254
+ * @property {string} [endDate] - UTC End Date in ISO format
192
255
  * @property {string} [dpIds] - Comma separated values of delivery partner ids
193
256
  * @property {string} [stores] - Comma separated values of store ids
194
257
  * @property {string} [salesChannels] - Comma separated values of sales channel ids
@@ -212,7 +275,39 @@ export = OrderPlatformValidator;
212
275
  * @property {string} [customerId]
213
276
  * @property {string} [orderType]
214
277
  */
278
+ /**
279
+ * @typedef GetStateManagerTaskByIdParam
280
+ * @property {number} taskId
281
+ */
282
+ /**
283
+ * @typedef GetStateManagerTasksParam
284
+ * @property {number} [pageNo]
285
+ * @property {number} [pageSize]
286
+ */
287
+ /**
288
+ * @typedef GetStateTransitionFiltersParam
289
+ * @property {number} [pageNo]
290
+ * @property {number} [pageSize]
291
+ */
292
+ /**
293
+ * @typedef GetStateTransitionFiltersByIdParam
294
+ * @property {number} filterId
295
+ */
296
+ /**
297
+ * @typedef GetStateTransitionFlagsParam
298
+ * @property {number} [pageNo] - The page number for pagination.
299
+ * @property {number} [pageSize] - The number of items to be returned per page
300
+ * for pagination.
301
+ */
302
+ /**
303
+ * @typedef GetStateTransitionFlagsByIdParam
304
+ * @property {number} flagId
305
+ */
215
306
  /** @typedef GetStateTransitionMapParam */
307
+ /**
308
+ * @typedef GetTemplateParam
309
+ * @property {string} templateName
310
+ */
216
311
  /**
217
312
  * @typedef GetfiltersParam
218
313
  * @property {string} view - Name of view
@@ -222,6 +317,10 @@ export = OrderPlatformValidator;
222
317
  * @typedef InvalidateShipmentCacheParam
223
318
  * @property {OrderPlatformModel.InvalidateShipmentCachePayload} body
224
319
  */
320
+ /**
321
+ * @typedef JobDetailsParam
322
+ * @property {string} batchId
323
+ */
225
324
  /**
226
325
  * @typedef OrderUpdateParam
227
326
  * @property {OrderPlatformModel.PlatformOrderUpdate} body
@@ -231,8 +330,8 @@ export = OrderPlatformValidator;
231
330
  * @property {OrderPlatformModel.PostShipmentHistory} body
232
331
  */
233
332
  /**
234
- * @typedef ProcessManifestParam
235
- * @property {OrderPlatformModel.CreateOrderPayload} body
333
+ * @typedef ProcessManifestsParam
334
+ * @property {OrderPlatformModel.ProcessManifest} body
236
335
  */
237
336
  /**
238
337
  * @typedef ReassignLocationParam
@@ -285,7 +384,8 @@ export = OrderPlatformValidator;
285
384
  * @property {OrderPlatformModel.CourierPartnerTrackingDetails} body
286
385
  */
287
386
  /**
288
- * @typedef UploadConsentParam
387
+ * @typedef UploadConsentsParam
388
+ * @property {string} manifestId
289
389
  * @property {OrderPlatformModel.UploadConsent} body
290
390
  */
291
391
  /**
@@ -295,6 +395,10 @@ export = OrderPlatformValidator;
295
395
  declare class OrderPlatformValidator {
296
396
  /** @returns {AttachOrderUserParam} */
297
397
  static attachOrderUser(): AttachOrderUserParam;
398
+ /** @returns {BulkListingParam} */
399
+ static bulkListing(): BulkListingParam;
400
+ /** @returns {BulkStateTransistionParam} */
401
+ static bulkStateTransistion(): BulkStateTransistionParam;
298
402
  /** @returns {CheckOrderStatusParam} */
299
403
  static checkOrderStatus(): CheckOrderStatusParam;
300
404
  /** @returns {Click2CallParam} */
@@ -303,24 +407,26 @@ declare class OrderPlatformValidator {
303
407
  static createChannelConfig(): CreateChannelConfigParam;
304
408
  /** @returns {CreateOrderParam} */
305
409
  static createOrder(): CreateOrderParam;
306
- /** @returns {DispatchManifestParam} */
307
- static dispatchManifest(): DispatchManifestParam;
410
+ /** @returns {DispatchManifestsParam} */
411
+ static dispatchManifests(): DispatchManifestsParam;
308
412
  /** @returns {DownloadBulkActionTemplateParam} */
309
413
  static downloadBulkActionTemplate(): DownloadBulkActionTemplateParam;
310
414
  /** @returns {DownloadLanesReportParam} */
311
415
  static downloadLanesReport(): DownloadLanesReportParam;
312
416
  /** @returns {EInvoiceRetryParam} */
313
417
  static eInvoiceRetry(): EInvoiceRetryParam;
418
+ /** @returns {FailedOrderLogDetailsParam} */
419
+ static failedOrderLogDetails(): FailedOrderLogDetailsParam;
314
420
  /** @returns {FetchCreditBalanceDetailParam} */
315
421
  static fetchCreditBalanceDetail(): FetchCreditBalanceDetailParam;
316
422
  /** @returns {FetchRefundModeConfigParam} */
317
423
  static fetchRefundModeConfig(): FetchRefundModeConfigParam;
318
- /** @returns {GenerateInvoiceIDParam} */
319
- static generateInvoiceID(): GenerateInvoiceIDParam;
320
424
  /** @returns {GeneratePOSReceiptByOrderIdParam} */
321
425
  static generatePOSReceiptByOrderId(): GeneratePOSReceiptByOrderIdParam;
322
426
  /** @returns {GetAllowedStateTransitionParam} */
323
427
  static getAllowedStateTransition(): GetAllowedStateTransitionParam;
428
+ /** @returns {GetAllowedTemplatesForBulkParam} */
429
+ static getAllowedTemplatesForBulk(): any;
324
430
  /** @returns {GetAnnouncementsParam} */
325
431
  static getAnnouncements(): GetAnnouncementsParam;
326
432
  /** @returns {GetBagByIdParam} */
@@ -333,8 +439,18 @@ declare class OrderPlatformValidator {
333
439
  static getBulkShipmentExcelFile(): GetBulkShipmentExcelFileParam;
334
440
  /** @returns {GetChannelConfigParam} */
335
441
  static getChannelConfig(): any;
442
+ /** @returns {GetFileByStatusParam} */
443
+ static getFileByStatus(): GetFileByStatusParam;
336
444
  /** @returns {GetLaneConfigParam} */
337
445
  static getLaneConfig(): GetLaneConfigParam;
446
+ /** @returns {GetManifestDetailsParam} */
447
+ static getManifestDetails(): GetManifestDetailsParam;
448
+ /** @returns {GetManifestShipmentsParam} */
449
+ static getManifestShipments(): GetManifestShipmentsParam;
450
+ /** @returns {GetManifestfiltersParam} */
451
+ static getManifestfilters(): GetManifestfiltersParam;
452
+ /** @returns {GetManifestsParam} */
453
+ static getManifests(): GetManifestsParam;
338
454
  /** @returns {GetOrderByIdParam} */
339
455
  static getOrderById(): GetOrderByIdParam;
340
456
  /** @returns {GetOrdersParam} */
@@ -349,18 +465,34 @@ declare class OrderPlatformValidator {
349
465
  static getShipmentReasons(): GetShipmentReasonsParam;
350
466
  /** @returns {GetShipmentsParam} */
351
467
  static getShipments(): GetShipmentsParam;
468
+ /** @returns {GetStateManagerTaskByIdParam} */
469
+ static getStateManagerTaskById(): GetStateManagerTaskByIdParam;
470
+ /** @returns {GetStateManagerTasksParam} */
471
+ static getStateManagerTasks(): GetStateManagerTasksParam;
472
+ /** @returns {GetStateTransitionFiltersParam} */
473
+ static getStateTransitionFilters(): GetStateTransitionFiltersParam;
474
+ /** @returns {GetStateTransitionFiltersByIdParam} */
475
+ static getStateTransitionFiltersById(): GetStateTransitionFiltersByIdParam;
476
+ /** @returns {GetStateTransitionFlagsParam} */
477
+ static getStateTransitionFlags(): GetStateTransitionFlagsParam;
478
+ /** @returns {GetStateTransitionFlagsByIdParam} */
479
+ static getStateTransitionFlagsById(): GetStateTransitionFlagsByIdParam;
352
480
  /** @returns {GetStateTransitionMapParam} */
353
481
  static getStateTransitionMap(): any;
482
+ /** @returns {GetTemplateParam} */
483
+ static getTemplate(): GetTemplateParam;
354
484
  /** @returns {GetfiltersParam} */
355
485
  static getfilters(): GetfiltersParam;
356
486
  /** @returns {InvalidateShipmentCacheParam} */
357
487
  static invalidateShipmentCache(): InvalidateShipmentCacheParam;
488
+ /** @returns {JobDetailsParam} */
489
+ static jobDetails(): JobDetailsParam;
358
490
  /** @returns {OrderUpdateParam} */
359
491
  static orderUpdate(): OrderUpdateParam;
360
492
  /** @returns {PostShipmentHistoryParam} */
361
493
  static postShipmentHistory(): PostShipmentHistoryParam;
362
- /** @returns {ProcessManifestParam} */
363
- static processManifest(): ProcessManifestParam;
494
+ /** @returns {ProcessManifestsParam} */
495
+ static processManifests(): ProcessManifestsParam;
364
496
  /** @returns {ReassignLocationParam} */
365
497
  static reassignLocation(): ReassignLocationParam;
366
498
  /** @returns {SendSmsNinjaParam} */
@@ -379,17 +511,50 @@ declare class OrderPlatformValidator {
379
511
  static updateShipmentStatus(): UpdateShipmentStatusParam;
380
512
  /** @returns {UpdateShipmentTrackingParam} */
381
513
  static updateShipmentTracking(): UpdateShipmentTrackingParam;
382
- /** @returns {UploadConsentParam} */
383
- static uploadConsent(): UploadConsentParam;
514
+ /** @returns {UploadConsentsParam} */
515
+ static uploadConsents(): UploadConsentsParam;
384
516
  /** @returns {VerifyMobileOTPParam} */
385
517
  static verifyMobileOTP(): VerifyMobileOTPParam;
386
518
  }
387
519
  declare namespace OrderPlatformValidator {
388
- export { AttachOrderUserParam, CheckOrderStatusParam, Click2CallParam, CreateChannelConfigParam, CreateOrderParam, DispatchManifestParam, DownloadBulkActionTemplateParam, DownloadLanesReportParam, EInvoiceRetryParam, FetchCreditBalanceDetailParam, FetchRefundModeConfigParam, GenerateInvoiceIDParam, GeneratePOSReceiptByOrderIdParam, GetAllowedStateTransitionParam, GetAnnouncementsParam, GetBagByIdParam, GetBagsParam, GetBulkActionTemplateParam, GetBulkShipmentExcelFileParam, GetChannelConfigParam, GetLaneConfigParam, GetOrderByIdParam, GetOrdersParam, GetRoleBasedActionsParam, GetShipmentByIdParam, GetShipmentHistoryParam, GetShipmentReasonsParam, GetShipmentsParam, GetStateTransitionMapParam, GetfiltersParam, InvalidateShipmentCacheParam, OrderUpdateParam, PostShipmentHistoryParam, ProcessManifestParam, ReassignLocationParam, SendSmsNinjaParam, SendUserMobileOTPParam, TrackShipmentParam, UpdateAddressParam, UpdatePackagingDimensionsParam, UpdateShipmentLockParam, UpdateShipmentStatusParam, UpdateShipmentTrackingParam, UploadConsentParam, VerifyMobileOTPParam };
520
+ export { AttachOrderUserParam, BulkListingParam, BulkStateTransistionParam, CheckOrderStatusParam, Click2CallParam, CreateChannelConfigParam, CreateOrderParam, DispatchManifestsParam, DownloadBulkActionTemplateParam, DownloadLanesReportParam, EInvoiceRetryParam, FailedOrderLogDetailsParam, FetchCreditBalanceDetailParam, FetchRefundModeConfigParam, GeneratePOSReceiptByOrderIdParam, GetAllowedStateTransitionParam, GetAllowedTemplatesForBulkParam, GetAnnouncementsParam, GetBagByIdParam, GetBagsParam, GetBulkActionTemplateParam, GetBulkShipmentExcelFileParam, GetChannelConfigParam, GetFileByStatusParam, GetLaneConfigParam, GetManifestDetailsParam, GetManifestShipmentsParam, GetManifestfiltersParam, GetManifestsParam, GetOrderByIdParam, GetOrdersParam, GetRoleBasedActionsParam, GetShipmentByIdParam, GetShipmentHistoryParam, GetShipmentReasonsParam, GetShipmentsParam, GetStateManagerTaskByIdParam, GetStateManagerTasksParam, GetStateTransitionFiltersParam, GetStateTransitionFiltersByIdParam, GetStateTransitionFlagsParam, GetStateTransitionFlagsByIdParam, GetStateTransitionMapParam, GetTemplateParam, GetfiltersParam, InvalidateShipmentCacheParam, JobDetailsParam, OrderUpdateParam, PostShipmentHistoryParam, ProcessManifestsParam, ReassignLocationParam, SendSmsNinjaParam, SendUserMobileOTPParam, TrackShipmentParam, UpdateAddressParam, UpdatePackagingDimensionsParam, UpdateShipmentLockParam, UpdateShipmentStatusParam, UpdateShipmentTrackingParam, UploadConsentsParam, VerifyMobileOTPParam };
389
521
  }
390
522
  type AttachOrderUserParam = {
391
523
  body: OrderPlatformModel.AttachOrderUser;
392
524
  };
525
+ type BulkListingParam = {
526
+ /**
527
+ * - Page size
528
+ */
529
+ pageSize: number;
530
+ /**
531
+ * - Page number
532
+ */
533
+ pageNo: number;
534
+ /**
535
+ * - UTC start date in ISO format
536
+ */
537
+ startDate: string;
538
+ /**
539
+ * - UTC end date in ISO format
540
+ */
541
+ endDate: string;
542
+ /**
543
+ * - Status for which to fetch the jobs.
544
+ */
545
+ status?: string;
546
+ /**
547
+ * - Job type.
548
+ */
549
+ bulkActionType?: string;
550
+ /**
551
+ * - Search_key.
552
+ */
553
+ searchKey?: string;
554
+ };
555
+ type BulkStateTransistionParam = {
556
+ body: OrderPlatformModel.BulkStateTransistionRequest;
557
+ };
393
558
  type CheckOrderStatusParam = {
394
559
  body: OrderPlatformModel.OrderStatus;
395
560
  };
@@ -421,7 +586,8 @@ type CreateChannelConfigParam = {
421
586
  type CreateOrderParam = {
422
587
  body: OrderPlatformModel.CreateOrderAPI;
423
588
  };
424
- type DispatchManifestParam = {
589
+ type DispatchManifestsParam = {
590
+ manifestId: string;
425
591
  body: OrderPlatformModel.DispatchManifest;
426
592
  };
427
593
  type DownloadBulkActionTemplateParam = {
@@ -436,19 +602,18 @@ type DownloadLanesReportParam = {
436
602
  type EInvoiceRetryParam = {
437
603
  body: OrderPlatformModel.EInvoiceRetry;
438
604
  };
605
+ type FailedOrderLogDetailsParam = {
606
+ /**
607
+ * - Log Error ID
608
+ */
609
+ logId: string;
610
+ };
439
611
  type FetchCreditBalanceDetailParam = {
440
612
  body: OrderPlatformModel.FetchCreditBalanceRequestPayload;
441
613
  };
442
614
  type FetchRefundModeConfigParam = {
443
615
  body: OrderPlatformModel.RefundModeConfigRequestPayload;
444
616
  };
445
- type GenerateInvoiceIDParam = {
446
- /**
447
- * - Mention the type of invoice id to generate
448
- */
449
- invoiceType: string;
450
- body: OrderPlatformModel.GenerateInvoiceIDRequest;
451
- };
452
617
  type GeneratePOSReceiptByOrderIdParam = {
453
618
  orderId: string;
454
619
  shipmentId?: string;
@@ -533,13 +698,13 @@ type GetBulkShipmentExcelFileParam = {
533
698
  */
534
699
  dpIds?: string;
535
700
  /**
536
- * - Start Date in DD-MM-YYYY format
701
+ * - UTC start date in ISO format
537
702
  */
538
- fromDate?: string;
703
+ startDate?: string;
539
704
  /**
540
- * - End Date in DD-MM-YYYY format
705
+ * - UTC end date in ISO format
541
706
  */
542
- toDate?: string;
707
+ endDate?: string;
543
708
  /**
544
709
  * - Comma separated values of store ids
545
710
  */
@@ -567,6 +732,12 @@ type GetBulkShipmentExcelFileParam = {
567
732
  pageNo?: number;
568
733
  pageSize?: number;
569
734
  };
735
+ type GetFileByStatusParam = {
736
+ batchId: string;
737
+ status: string;
738
+ fileType: string;
739
+ reportType?: string;
740
+ };
570
741
  type GetLaneConfigParam = {
571
742
  /**
572
743
  * - Name of lane for which data is to be fetched
@@ -584,6 +755,14 @@ type GetLaneConfigParam = {
584
755
  * - End Date in DD-MM-YYYY format
585
756
  */
586
757
  toDate?: string;
758
+ /**
759
+ * - UTC Start Date in ISO format
760
+ */
761
+ startDate?: string;
762
+ /**
763
+ * - UTC End Date in ISO format
764
+ */
765
+ endDate?: string;
587
766
  /**
588
767
  * - Comma separated values of delivery partner ids
589
768
  */
@@ -614,9 +793,67 @@ type GetLaneConfigParam = {
614
793
  showCrossCompanyData?: boolean;
615
794
  orderType?: string;
616
795
  };
796
+ type GetManifestDetailsParam = {
797
+ manifestId: string;
798
+ };
799
+ type GetManifestShipmentsParam = {
800
+ dpIds: number;
801
+ stores: string;
802
+ toDate: string;
803
+ fromDate: string;
804
+ dpName?: string;
805
+ salesChannels?: string;
806
+ searchType?: string;
807
+ searchValue?: string;
808
+ pageNo?: string;
809
+ pageSize?: string;
810
+ };
811
+ type GetManifestfiltersParam = {
812
+ /**
813
+ * - Name of View
814
+ */
815
+ view: string;
816
+ };
817
+ type GetManifestsParam = {
818
+ /**
819
+ * - Possible Status [ active, closed ]
820
+ */
821
+ status?: string;
822
+ /**
823
+ * - UTC Start Date in ISO format
824
+ */
825
+ startDate?: string;
826
+ /**
827
+ * - UTC End Date in ISO format
828
+ */
829
+ endDate?: string;
830
+ /**
831
+ * - Search type options [ fynd_order_id,
832
+ * shipment_id, manifest_id, dp_name, awb_no ]
833
+ */
834
+ searchType?: string;
835
+ /**
836
+ * - Fetch manifests for a Store.
837
+ */
838
+ storeId?: number;
839
+ /**
840
+ * - Search value for selected search type
841
+ */
842
+ searchValue?: string;
843
+ /**
844
+ * - DP Ids separated by ',' (comma)
845
+ */
846
+ dpIds?: string;
847
+ pageNo?: number;
848
+ pageSize?: number;
849
+ };
617
850
  type GetOrderByIdParam = {
618
851
  orderId: string;
619
852
  myOrders?: boolean;
853
+ /**
854
+ * - Flag to allow inactive shipments
855
+ */
856
+ allowInactive?: boolean;
620
857
  };
621
858
  type GetOrdersParam = {
622
859
  /**
@@ -651,6 +888,8 @@ type GetOrdersParam = {
651
888
  searchValue?: string;
652
889
  fromDate?: string;
653
890
  toDate?: string;
891
+ startDate?: string;
892
+ endDate?: string;
654
893
  /**
655
894
  * - Delivery Partner IDs to which shipments are assigned.
656
895
  */
@@ -738,6 +977,14 @@ type GetShipmentsParam = {
738
977
  * - End Date in DD-MM-YYYY format
739
978
  */
740
979
  toDate?: string;
980
+ /**
981
+ * - UTC Start Date in ISO format
982
+ */
983
+ startDate?: string;
984
+ /**
985
+ * - UTC End Date in ISO format
986
+ */
987
+ endDate?: string;
741
988
  /**
742
989
  * - Comma separated values of delivery partner ids
743
990
  */
@@ -803,6 +1050,37 @@ type GetShipmentsParam = {
803
1050
  customerId?: string;
804
1051
  orderType?: string;
805
1052
  };
1053
+ type GetStateManagerTaskByIdParam = {
1054
+ taskId: number;
1055
+ };
1056
+ type GetStateManagerTasksParam = {
1057
+ pageNo?: number;
1058
+ pageSize?: number;
1059
+ };
1060
+ type GetStateTransitionFiltersParam = {
1061
+ pageNo?: number;
1062
+ pageSize?: number;
1063
+ };
1064
+ type GetStateTransitionFiltersByIdParam = {
1065
+ filterId: number;
1066
+ };
1067
+ type GetStateTransitionFlagsParam = {
1068
+ /**
1069
+ * - The page number for pagination.
1070
+ */
1071
+ pageNo?: number;
1072
+ /**
1073
+ * - The number of items to be returned per page
1074
+ * for pagination.
1075
+ */
1076
+ pageSize?: number;
1077
+ };
1078
+ type GetStateTransitionFlagsByIdParam = {
1079
+ flagId: number;
1080
+ };
1081
+ type GetTemplateParam = {
1082
+ templateName: string;
1083
+ };
806
1084
  type GetfiltersParam = {
807
1085
  /**
808
1086
  * - Name of view
@@ -816,14 +1094,17 @@ type GetfiltersParam = {
816
1094
  type InvalidateShipmentCacheParam = {
817
1095
  body: OrderPlatformModel.InvalidateShipmentCachePayload;
818
1096
  };
1097
+ type JobDetailsParam = {
1098
+ batchId: string;
1099
+ };
819
1100
  type OrderUpdateParam = {
820
1101
  body: OrderPlatformModel.PlatformOrderUpdate;
821
1102
  };
822
1103
  type PostShipmentHistoryParam = {
823
1104
  body: OrderPlatformModel.PostShipmentHistory;
824
1105
  };
825
- type ProcessManifestParam = {
826
- body: OrderPlatformModel.CreateOrderPayload;
1106
+ type ProcessManifestsParam = {
1107
+ body: OrderPlatformModel.ProcessManifest;
827
1108
  };
828
1109
  type ReassignLocationParam = {
829
1110
  body: OrderPlatformModel.StoreReassign;
@@ -878,12 +1159,14 @@ type UpdateShipmentStatusParam = {
878
1159
  type UpdateShipmentTrackingParam = {
879
1160
  body: OrderPlatformModel.CourierPartnerTrackingDetails;
880
1161
  };
881
- type UploadConsentParam = {
1162
+ type UploadConsentsParam = {
1163
+ manifestId: string;
882
1164
  body: OrderPlatformModel.UploadConsent;
883
1165
  };
884
1166
  type VerifyMobileOTPParam = {
885
1167
  body: OrderPlatformModel.VerifyMobileOTP;
886
1168
  };
1169
+ type GetAllowedTemplatesForBulkParam = any;
887
1170
  type GetBulkActionTemplateParam = any;
888
1171
  type GetChannelConfigParam = any;
889
1172
  type GetRoleBasedActionsParam = any;