@gofynd/fdk-client-javascript 1.6.4 → 3.1.0-beta.1

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 (290) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +0 -2
  4. package/sdk/application/ApplicationClient.js +0 -2
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +100 -80
  6. package/sdk/application/Cart/CartApplicationClient.js +257 -126
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +3 -3
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +61 -21
  16. package/sdk/application/Content/ContentApplicationClient.js +250 -36
  17. package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
  18. package/sdk/application/Lead/LeadApplicationClient.js +3 -3
  19. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +106 -57
  20. package/sdk/application/Logistic/LogisticApplicationClient.js +326 -208
  21. package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
  22. package/sdk/application/Order/OrderApplicationClient.js +140 -21
  23. package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
  24. package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
  25. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  26. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  27. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  28. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  29. package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
  30. package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
  31. package/sdk/application/User/UserApplicationClient.d.ts +13 -23
  32. package/sdk/application/User/UserApplicationClient.js +9 -57
  33. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  34. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  35. package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
  36. package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
  37. package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
  38. package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
  39. package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
  40. package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
  41. package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
  42. package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
  43. package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
  44. package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
  45. package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
  46. package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
  47. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +0 -10
  48. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +0 -75
  49. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +1 -54
  50. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +0 -43
  51. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
  52. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +0 -6
  53. package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
  54. package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
  55. package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
  56. package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
  57. package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
  58. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
  59. package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
  60. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
  61. package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
  62. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
  63. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
  64. package/sdk/partner/PartnerClient.d.ts +6 -0
  65. package/sdk/partner/PartnerClient.js +9 -0
  66. package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
  67. package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
  68. package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
  69. package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
  70. package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
  71. package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
  72. package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
  73. package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
  74. package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
  75. package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
  76. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
  77. package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
  78. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
  79. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
  80. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
  81. package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
  82. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
  83. package/sdk/partner/index.d.ts +3 -0
  84. package/sdk/partner/index.js +6 -0
  85. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
  86. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  87. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
  88. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
  89. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  90. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  91. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
  92. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
  93. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  94. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  95. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  96. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  97. package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
  98. package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
  99. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
  100. package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
  101. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +251 -172
  102. package/sdk/platform/Cart/CartPlatformApplicationClient.js +639 -521
  103. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
  104. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
  105. package/sdk/platform/Cart/CartPlatformModel.d.ts +3150 -4468
  106. package/sdk/platform/Cart/CartPlatformModel.js +2858 -1867
  107. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +976 -380
  108. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6475 -2015
  109. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1083 -162
  110. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +884 -80
  111. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +325 -568
  112. package/sdk/platform/Catalog/CatalogPlatformClient.js +1162 -1562
  113. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6008 -7688
  114. package/sdk/platform/Catalog/CatalogPlatformModel.js +9522 -6892
  115. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +234 -227
  116. package/sdk/platform/Catalog/CatalogPlatformValidator.js +183 -177
  117. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
  118. package/sdk/platform/Common/CommonPlatformClient.js +5 -6
  119. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  120. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  121. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -238
  122. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +876 -588
  123. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
  124. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
  125. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
  126. package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
  127. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +506 -270
  128. package/sdk/platform/Communication/CommunicationPlatformModel.js +611 -313
  129. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
  130. package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
  131. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +78 -77
  132. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +97 -91
  133. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
  134. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
  135. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +31 -20
  136. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -20
  137. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
  138. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
  139. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
  140. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
  141. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
  142. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
  143. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1206 -459
  144. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1011 -320
  145. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
  146. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
  147. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +255 -140
  148. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1095 -464
  149. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
  150. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
  151. package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
  152. package/sdk/platform/Content/ContentPlatformClient.js +459 -379
  153. package/sdk/platform/Content/ContentPlatformModel.d.ts +871 -1315
  154. package/sdk/platform/Content/ContentPlatformModel.js +940 -599
  155. package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
  156. package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
  157. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
  158. package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
  159. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
  160. package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
  161. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  162. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  163. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
  164. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
  165. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
  166. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
  167. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
  168. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
  169. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
  170. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
  171. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  172. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  173. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  174. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  175. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
  176. package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
  177. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  178. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  179. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
  180. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
  181. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
  182. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
  183. package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
  184. package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
  185. package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
  186. package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
  187. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
  188. package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
  189. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
  190. package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
  191. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
  192. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
  193. package/sdk/platform/Order/OrderPlatformClient.d.ts +486 -277
  194. package/sdk/platform/Order/OrderPlatformClient.js +1491 -938
  195. package/sdk/platform/Order/OrderPlatformModel.d.ts +4560 -8636
  196. package/sdk/platform/Order/OrderPlatformModel.js +3604 -4056
  197. package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
  198. package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
  199. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  200. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  201. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  202. package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
  203. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
  204. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
  205. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
  206. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
  207. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
  208. package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
  209. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3531 -1292
  210. package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1504
  211. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
  212. package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
  213. package/sdk/platform/PlatformClient.d.ts +2 -0
  214. package/sdk/platform/PlatformClient.js +4 -0
  215. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  216. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  217. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  218. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  219. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
  220. package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
  221. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
  222. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2188 -302
  223. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +394 -54
  224. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +342 -37
  225. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +150 -212
  226. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +589 -1238
  227. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3581 -2960
  228. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3730 -1779
  229. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +230 -382
  230. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +164 -287
  231. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
  232. package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
  233. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
  234. package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
  235. package/sdk/platform/Share/SharePlatformModel.d.ts +11 -50
  236. package/sdk/platform/Share/SharePlatformModel.js +5 -43
  237. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +36 -16
  238. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +201 -58
  239. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +28 -17
  240. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +33 -16
  241. package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
  242. package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
  243. package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
  244. package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
  245. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
  246. package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
  251. package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
  252. package/sdk/platform/User/UserPlatformModel.js +209 -216
  253. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  254. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  255. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
  256. package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
  257. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  258. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  259. package/sdk/platform/index.d.ts +1 -0
  260. package/sdk/platform/index.js +2 -0
  261. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
  262. package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
  263. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
  264. package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
  265. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
  266. package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
  267. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  268. package/sdk/public/Content/ContentPublicClient.js +183 -0
  269. package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
  270. package/sdk/public/Content/ContentPublicModel.js +47 -1
  271. package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
  272. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  273. package/sdk/public/PublicClient.d.ts +0 -2
  274. package/sdk/public/PublicClient.js +0 -4
  275. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  276. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  277. package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
  278. package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
  279. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  280. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  281. package/sdk/public/index.d.ts +0 -1
  282. package/sdk/public/index.js +0 -2
  283. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  284. package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
  285. package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
  286. package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
  287. package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
  288. package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
  289. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
  290. package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
@@ -1,18 +1,64 @@
1
1
  export = ServiceabilityPlatformApplicationValidator;
2
+ /**
3
+ * @typedef CreateBulkExportParam
4
+ * @property {ServiceabilityPlatformModel.BulkCreateZoneExport} body
5
+ */
6
+ /**
7
+ * @typedef CreateBulkGeoAreaParam
8
+ * @property {ServiceabilityPlatformModel.BulkGeoAreaDetails} body
9
+ */
10
+ /**
11
+ * @typedef CreateBulkZoneParam
12
+ * @property {ServiceabilityPlatformModel.CreateBulkZoneData} body
13
+ */
2
14
  /**
3
15
  * @typedef CreateCourierPartnerRuleParam
4
16
  * @property {ServiceabilityPlatformModel.CourierPartnerRule} body
5
17
  */
18
+ /**
19
+ * @typedef CreateGeoAreaParam
20
+ * @property {ServiceabilityPlatformModel.GeoAreaRequestBody} body
21
+ */
22
+ /**
23
+ * @typedef CreateGeoAreaExportJobParam
24
+ * @property {string} geoareaId - The unique identifier of the Geoarea.
25
+ */
6
26
  /**
7
27
  * @typedef CreateStoreRulesParam
8
- * @property {ServiceabilityPlatformModel.CreateStoreRuleDetailsSchema} body
28
+ * @property {ServiceabilityPlatformModel.CreateStoreRuleRequestSchema} body
29
+ */
30
+ /**
31
+ * @typedef CreateZoneParam
32
+ * @property {ServiceabilityPlatformModel.CreateZoneV2Data} body
33
+ */
34
+ /**
35
+ * @typedef DeleteZoneParam
36
+ * @property {string} zoneId - Unique identifier for a particular zone
37
+ */
38
+ /** @typedef DownloadGeoareaSampleFileParam */
39
+ /**
40
+ * @typedef DownloadZoneSampleFileParam
41
+ * @property {string} productType - It denotes the attribute of the product
9
42
  */
10
43
  /** @typedef GetApplicationConfigParam */
11
44
  /** @typedef GetApplicationConfigurationParam */
12
- /** @typedef GetApplicationServiceabilitySelfShipmentParam */
45
+ /**
46
+ * @typedef GetBulkExportParam
47
+ * @property {string} batchId - A `batch_id` is a unique identifier for a particular zone.
48
+ */
49
+ /**
50
+ * @typedef GetBulkGeoAreaParam
51
+ * @property {string} geoareaId - A unique identifier for the GeoArea.
52
+ */
53
+ /** @typedef GetBulkZoneParam */
13
54
  /**
14
55
  * @typedef GetCourierPartnerRuleParam
15
- * @property {string} ruleId - Unique identifier of the courier partner rule
56
+ * @property {string} ruleUid - A `rule_uid` is a unique identifier for a particular Dp.
57
+ */
58
+ /**
59
+ * @typedef GetCourierPartnerRuleDetailsParam
60
+ * @property {string} ruleUid - A `rule_uid` is a unique identifier for a
61
+ * courier partner rule.
16
62
  */
17
63
  /**
18
64
  * @typedef GetCourierPartnerRulesParam
@@ -21,46 +67,102 @@ export = ServiceabilityPlatformApplicationValidator;
21
67
  * @property {string} [status] - Filter rules based on rule status
22
68
  */
23
69
  /**
24
- * @typedef GetCourierPartnersParam
25
- * @property {ServiceabilityPlatformModel.ShipmentCourierPartnerDetails} body
70
+ * @typedef GetGeoAreaParam
71
+ * @property {string} geoareaId - A unique identifier for the GeoArea.
72
+ */
73
+ /**
74
+ * @typedef GetGeoAreaExportJobStatusParam
75
+ * @property {string} geoareaId - The unique identifier of the Geoarea.
76
+ */
77
+ /**
78
+ * @typedef GetGeoAreasParam
79
+ * @property {number} [pageSize] - Determines the items to be displayed in a page
80
+ * @property {boolean} [isActive] - Status of GeoAreas (either active or inactive)
81
+ * @property {number} [pageNo] - Current page number
82
+ * @property {string} [type] - To fetch the type of a specific geoarea.
83
+ * @property {string} [q] - Search with name as a free text
84
+ * @property {string} [countryIsoCode] - ISO2 code of the country
85
+ * @property {string} [state] - State name
86
+ * @property {string} [city] - City name
87
+ * @property {string} [pincode] - Pincode value to search geoareas
88
+ * @property {string} [sector] - Sector value to search geoareas
26
89
  */
27
90
  /**
28
91
  * @typedef GetStoreRuleParam
29
92
  * @property {string} ruleUid - A `rule_uid` is a unique identifier for a
30
93
  * particular rule object.
31
94
  */
95
+ /**
96
+ * @typedef GetStoreRuleDetailsParam
97
+ * @property {string} ruleUid - A `rule_uid` is a unique identifier for a order
98
+ * routing rule.
99
+ */
32
100
  /**
33
101
  * @typedef GetStoreRulesParam
34
102
  * @property {number} [pageNo]
35
103
  * @property {number} [pageSize]
36
104
  * @property {string} [status]
37
105
  */
106
+ /**
107
+ * @typedef GetZoneParam
108
+ * @property {string} zoneId - Unique identifier for a particular zone
109
+ */
110
+ /**
111
+ * @typedef GetZoneDetailsParam
112
+ * @property {string} zoneId - Unique identifier of a particular zone
113
+ */
114
+ /**
115
+ * @typedef GetZonesParam
116
+ * @property {string} [stage] - Identifies the specific stage of zone bing requested.
117
+ * @property {string} [type] - Using type, you can filter custom or default zones
118
+ * @property {string} [accessLevel] - Using access level, you can filter public
119
+ * and private zones as marketplace owner
120
+ * @property {string} [status] - Using status zones listing can be filttered for
121
+ * marketplace owner and 3p sellers
122
+ * @property {number} [pageSize] - Defines the number of items displayed per page.
123
+ * @property {number} [pageNo] - Current page number.
124
+ * @property {boolean} [isActive] - Status of Zone (either active or inactive)
125
+ * @property {string} [q] - Search with name as a free text.
126
+ * @property {string} [countryIsoCode] - ISO2 code of the country.
127
+ * @property {string} [pincode] - PIN Code of the country.
128
+ * @property {string} [state] - State of the country.
129
+ * @property {string} [city] - City of the country.
130
+ * @property {string} [sector] - Sector name of mentioned address.
131
+ */
38
132
  /**
39
133
  * @typedef InsertApplicationConfigParam
40
134
  * @property {ServiceabilityPlatformModel.StoreRuleConfigData} body
41
135
  */
42
136
  /**
43
- * @typedef PatchApplicationServiceabilitySelfShipmentParam
44
- * @property {ServiceabilityPlatformModel.SelfShipResult} body
137
+ * @typedef PatchApplicationConfigurationParam
138
+ * @property {ServiceabilityPlatformModel.ApplicationConfigPatchRequest} body
45
139
  */
46
140
  /**
47
141
  * @typedef UpdateApplicationConfigurationParam
48
- * @property {ServiceabilityPlatformModel.ApplicationConfig} body
142
+ * @property {ServiceabilityPlatformModel.ApplicationConfigPutRequest} body
143
+ */
144
+ /**
145
+ * @typedef UpdateBulkGeoAreaParam
146
+ * @property {string} geoareaId - A unique identifier for the GeoArea.
147
+ * @property {ServiceabilityPlatformModel.BulkGeoAreaDetails} body
49
148
  */
50
149
  /**
51
150
  * @typedef UpdateCourierPartnerRulePriorityParam
52
- * @property {ServiceabilityPlatformModel.RulePriorityDetails} body
151
+ * @property {ServiceabilityPlatformModel.RulePriorityRequest} body
53
152
  */
54
153
  /**
55
154
  * @typedef UpdateCourierRuleParam
56
- * @property {string} ruleId - Unique identifier of the courier partner rule.
155
+ * @property {string} ruleUid - A `rule_uid` is a unique identifier for a particular Dp.
57
156
  * @property {ServiceabilityPlatformModel.CourierPartnerRule} body
58
157
  */
158
+ /**
159
+ * @typedef UpdateGeoAreaParam
160
+ * @property {string} geoareaId - A unique identifier for the GeoArea.
161
+ * @property {ServiceabilityPlatformModel.GeoAreaRequestBody} body
162
+ */
59
163
  /**
60
164
  * @typedef UpdatePincodeAuditHistoryParam
61
- * @property {number} [pageNumber] - Page number to be fetched.
62
- * @property {number} [pageSize] - Determines the items to be displayed in a page
63
- * @property {ServiceabilityPlatformModel.PincodeMopUpdateAuditHistoryDetails} body
165
+ * @property {ServiceabilityPlatformModel.PincodeMopUpdateAuditHistoryRequest} body
64
166
  */
65
167
  /**
66
168
  * @typedef UpdatePincodeBulkViewParam
@@ -68,55 +170,102 @@ export = ServiceabilityPlatformApplicationValidator;
68
170
  */
69
171
  /**
70
172
  * @typedef UpdatePincodeCoDListingParam
71
- * @property {number} [pageNumber] - Page number to be fetched.
72
- * @property {number} [pageSize] - Determines the items to be displayed in a page
73
- * @property {ServiceabilityPlatformModel.PincodeCodStatusListingDetails} body
173
+ * @property {ServiceabilityPlatformModel.PincodeCodStatusListingRequest} body
74
174
  */
75
175
  /**
76
176
  * @typedef UpdatePincodeMopViewParam
77
177
  * @property {ServiceabilityPlatformModel.PincodeMopData} body
78
178
  */
179
+ /**
180
+ * @typedef UpdateStoreRulePriorityParam
181
+ * @property {ServiceabilityPlatformModel.RulePriorityRequest} body
182
+ */
79
183
  /**
80
184
  * @typedef UpdateStoreRulesParam
81
185
  * @property {string} ruleUid - A `rule_uid` is a unique identifier for a
82
186
  * particular rule object.
83
- * @property {ServiceabilityPlatformModel.CreateStoreRuleDetailsSchema} body
187
+ * @property {ServiceabilityPlatformModel.CreateStoreRuleRequestSchema} body
84
188
  */
85
189
  /**
86
190
  * @typedef UpdateStoreRulesConfigParam
87
191
  * @property {ServiceabilityPlatformModel.StoreRuleConfigData} body
88
192
  */
193
+ /**
194
+ * @typedef UpdateZoneParam
195
+ * @property {string} zoneId - Unique identifier for a particular zone
196
+ * @property {ServiceabilityPlatformModel.UpdateZoneDataV2} body
197
+ */
89
198
  declare class ServiceabilityPlatformApplicationValidator {
199
+ /** @returns {CreateBulkExportParam} */
200
+ static createBulkExport(): CreateBulkExportParam;
201
+ /** @returns {CreateBulkGeoAreaParam} */
202
+ static createBulkGeoArea(): CreateBulkGeoAreaParam;
203
+ /** @returns {CreateBulkZoneParam} */
204
+ static createBulkZone(): CreateBulkZoneParam;
90
205
  /** @returns {CreateCourierPartnerRuleParam} */
91
206
  static createCourierPartnerRule(): CreateCourierPartnerRuleParam;
207
+ /** @returns {CreateGeoAreaParam} */
208
+ static createGeoArea(): CreateGeoAreaParam;
209
+ /** @returns {CreateGeoAreaExportJobParam} */
210
+ static createGeoAreaExportJob(): CreateGeoAreaExportJobParam;
92
211
  /** @returns {CreateStoreRulesParam} */
93
212
  static createStoreRules(): CreateStoreRulesParam;
213
+ /** @returns {CreateZoneParam} */
214
+ static createZone(): CreateZoneParam;
215
+ /** @returns {DeleteZoneParam} */
216
+ static deleteZone(): DeleteZoneParam;
217
+ /** @returns {DownloadGeoareaSampleFileParam} */
218
+ static downloadGeoareaSampleFile(): any;
219
+ /** @returns {DownloadZoneSampleFileParam} */
220
+ static downloadZoneSampleFile(): DownloadZoneSampleFileParam;
94
221
  /** @returns {GetApplicationConfigParam} */
95
222
  static getApplicationConfig(): any;
96
223
  /** @returns {GetApplicationConfigurationParam} */
97
224
  static getApplicationConfiguration(): any;
98
- /** @returns {GetApplicationServiceabilitySelfShipmentParam} */
99
- static getApplicationServiceabilitySelfShipment(): any;
225
+ /** @returns {GetBulkExportParam} */
226
+ static getBulkExport(): GetBulkExportParam;
227
+ /** @returns {GetBulkGeoAreaParam} */
228
+ static getBulkGeoArea(): GetBulkGeoAreaParam;
229
+ /** @returns {GetBulkZoneParam} */
230
+ static getBulkZone(): any;
100
231
  /** @returns {GetCourierPartnerRuleParam} */
101
232
  static getCourierPartnerRule(): GetCourierPartnerRuleParam;
233
+ /** @returns {GetCourierPartnerRuleDetailsParam} */
234
+ static getCourierPartnerRuleDetails(): GetCourierPartnerRuleDetailsParam;
102
235
  /** @returns {GetCourierPartnerRulesParam} */
103
236
  static getCourierPartnerRules(): GetCourierPartnerRulesParam;
104
- /** @returns {GetCourierPartnersParam} */
105
- static getCourierPartners(): GetCourierPartnersParam;
237
+ /** @returns {GetGeoAreaParam} */
238
+ static getGeoArea(): GetGeoAreaParam;
239
+ /** @returns {GetGeoAreaExportJobStatusParam} */
240
+ static getGeoAreaExportJobStatus(): GetGeoAreaExportJobStatusParam;
241
+ /** @returns {GetGeoAreasParam} */
242
+ static getGeoAreas(): GetGeoAreasParam;
106
243
  /** @returns {GetStoreRuleParam} */
107
244
  static getStoreRule(): GetStoreRuleParam;
245
+ /** @returns {GetStoreRuleDetailsParam} */
246
+ static getStoreRuleDetails(): GetStoreRuleDetailsParam;
108
247
  /** @returns {GetStoreRulesParam} */
109
248
  static getStoreRules(): GetStoreRulesParam;
249
+ /** @returns {GetZoneParam} */
250
+ static getZone(): GetZoneParam;
251
+ /** @returns {GetZoneDetailsParam} */
252
+ static getZoneDetails(): GetZoneDetailsParam;
253
+ /** @returns {GetZonesParam} */
254
+ static getZones(): GetZonesParam;
110
255
  /** @returns {InsertApplicationConfigParam} */
111
256
  static insertApplicationConfig(): InsertApplicationConfigParam;
112
- /** @returns {PatchApplicationServiceabilitySelfShipmentParam} */
113
- static patchApplicationServiceabilitySelfShipment(): PatchApplicationServiceabilitySelfShipmentParam;
257
+ /** @returns {PatchApplicationConfigurationParam} */
258
+ static patchApplicationConfiguration(): PatchApplicationConfigurationParam;
114
259
  /** @returns {UpdateApplicationConfigurationParam} */
115
260
  static updateApplicationConfiguration(): UpdateApplicationConfigurationParam;
261
+ /** @returns {UpdateBulkGeoAreaParam} */
262
+ static updateBulkGeoArea(): UpdateBulkGeoAreaParam;
116
263
  /** @returns {UpdateCourierPartnerRulePriorityParam} */
117
264
  static updateCourierPartnerRulePriority(): UpdateCourierPartnerRulePriorityParam;
118
265
  /** @returns {UpdateCourierRuleParam} */
119
266
  static updateCourierRule(): UpdateCourierRuleParam;
267
+ /** @returns {UpdateGeoAreaParam} */
268
+ static updateGeoArea(): UpdateGeoAreaParam;
120
269
  /** @returns {UpdatePincodeAuditHistoryParam} */
121
270
  static updatePincodeAuditHistory(): UpdatePincodeAuditHistoryParam;
122
271
  /** @returns {UpdatePincodeBulkViewParam} */
@@ -125,25 +274,81 @@ declare class ServiceabilityPlatformApplicationValidator {
125
274
  static updatePincodeCoDListing(): UpdatePincodeCoDListingParam;
126
275
  /** @returns {UpdatePincodeMopViewParam} */
127
276
  static updatePincodeMopView(): UpdatePincodeMopViewParam;
277
+ /** @returns {UpdateStoreRulePriorityParam} */
278
+ static updateStoreRulePriority(): UpdateStoreRulePriorityParam;
128
279
  /** @returns {UpdateStoreRulesParam} */
129
280
  static updateStoreRules(): UpdateStoreRulesParam;
130
281
  /** @returns {UpdateStoreRulesConfigParam} */
131
282
  static updateStoreRulesConfig(): UpdateStoreRulesConfigParam;
283
+ /** @returns {UpdateZoneParam} */
284
+ static updateZone(): UpdateZoneParam;
132
285
  }
133
286
  declare namespace ServiceabilityPlatformApplicationValidator {
134
- export { CreateCourierPartnerRuleParam, CreateStoreRulesParam, GetApplicationConfigParam, GetApplicationConfigurationParam, GetApplicationServiceabilitySelfShipmentParam, GetCourierPartnerRuleParam, GetCourierPartnerRulesParam, GetCourierPartnersParam, GetStoreRuleParam, GetStoreRulesParam, InsertApplicationConfigParam, PatchApplicationServiceabilitySelfShipmentParam, UpdateApplicationConfigurationParam, UpdateCourierPartnerRulePriorityParam, UpdateCourierRuleParam, UpdatePincodeAuditHistoryParam, UpdatePincodeBulkViewParam, UpdatePincodeCoDListingParam, UpdatePincodeMopViewParam, UpdateStoreRulesParam, UpdateStoreRulesConfigParam };
287
+ export { CreateBulkExportParam, CreateBulkGeoAreaParam, CreateBulkZoneParam, CreateCourierPartnerRuleParam, CreateGeoAreaParam, CreateGeoAreaExportJobParam, CreateStoreRulesParam, CreateZoneParam, DeleteZoneParam, DownloadGeoareaSampleFileParam, DownloadZoneSampleFileParam, GetApplicationConfigParam, GetApplicationConfigurationParam, GetBulkExportParam, GetBulkGeoAreaParam, GetBulkZoneParam, GetCourierPartnerRuleParam, GetCourierPartnerRuleDetailsParam, GetCourierPartnerRulesParam, GetGeoAreaParam, GetGeoAreaExportJobStatusParam, GetGeoAreasParam, GetStoreRuleParam, GetStoreRuleDetailsParam, GetStoreRulesParam, GetZoneParam, GetZoneDetailsParam, GetZonesParam, InsertApplicationConfigParam, PatchApplicationConfigurationParam, UpdateApplicationConfigurationParam, UpdateBulkGeoAreaParam, UpdateCourierPartnerRulePriorityParam, UpdateCourierRuleParam, UpdateGeoAreaParam, UpdatePincodeAuditHistoryParam, UpdatePincodeBulkViewParam, UpdatePincodeCoDListingParam, UpdatePincodeMopViewParam, UpdateStoreRulePriorityParam, UpdateStoreRulesParam, UpdateStoreRulesConfigParam, UpdateZoneParam };
135
288
  }
289
+ type CreateBulkExportParam = {
290
+ body: ServiceabilityPlatformModel.BulkCreateZoneExport;
291
+ };
292
+ type CreateBulkGeoAreaParam = {
293
+ body: ServiceabilityPlatformModel.BulkGeoAreaDetails;
294
+ };
295
+ type CreateBulkZoneParam = {
296
+ body: ServiceabilityPlatformModel.CreateBulkZoneData;
297
+ };
136
298
  type CreateCourierPartnerRuleParam = {
137
299
  body: ServiceabilityPlatformModel.CourierPartnerRule;
138
300
  };
301
+ type CreateGeoAreaParam = {
302
+ body: ServiceabilityPlatformModel.GeoAreaRequestBody;
303
+ };
304
+ type CreateGeoAreaExportJobParam = {
305
+ /**
306
+ * - The unique identifier of the Geoarea.
307
+ */
308
+ geoareaId: string;
309
+ };
139
310
  type CreateStoreRulesParam = {
140
- body: ServiceabilityPlatformModel.CreateStoreRuleDetailsSchema;
311
+ body: ServiceabilityPlatformModel.CreateStoreRuleRequestSchema;
312
+ };
313
+ type CreateZoneParam = {
314
+ body: ServiceabilityPlatformModel.CreateZoneV2Data;
315
+ };
316
+ type DeleteZoneParam = {
317
+ /**
318
+ * - Unique identifier for a particular zone
319
+ */
320
+ zoneId: string;
321
+ };
322
+ type DownloadZoneSampleFileParam = {
323
+ /**
324
+ * - It denotes the attribute of the product
325
+ */
326
+ productType: string;
327
+ };
328
+ type GetBulkExportParam = {
329
+ /**
330
+ * - A `batch_id` is a unique identifier for a particular zone.
331
+ */
332
+ batchId: string;
333
+ };
334
+ type GetBulkGeoAreaParam = {
335
+ /**
336
+ * - A unique identifier for the GeoArea.
337
+ */
338
+ geoareaId: string;
141
339
  };
142
340
  type GetCourierPartnerRuleParam = {
143
341
  /**
144
- * - Unique identifier of the courier partner rule
342
+ * - A `rule_uid` is a unique identifier for a particular Dp.
343
+ */
344
+ ruleUid: string;
345
+ };
346
+ type GetCourierPartnerRuleDetailsParam = {
347
+ /**
348
+ * - A `rule_uid` is a unique identifier for a
349
+ * courier partner rule.
145
350
  */
146
- ruleId: string;
351
+ ruleUid: string;
147
352
  };
148
353
  type GetCourierPartnerRulesParam = {
149
354
  /**
@@ -159,8 +364,59 @@ type GetCourierPartnerRulesParam = {
159
364
  */
160
365
  status?: string;
161
366
  };
162
- type GetCourierPartnersParam = {
163
- body: ServiceabilityPlatformModel.ShipmentCourierPartnerDetails;
367
+ type GetGeoAreaParam = {
368
+ /**
369
+ * - A unique identifier for the GeoArea.
370
+ */
371
+ geoareaId: string;
372
+ };
373
+ type GetGeoAreaExportJobStatusParam = {
374
+ /**
375
+ * - The unique identifier of the Geoarea.
376
+ */
377
+ geoareaId: string;
378
+ };
379
+ type GetGeoAreasParam = {
380
+ /**
381
+ * - Determines the items to be displayed in a page
382
+ */
383
+ pageSize?: number;
384
+ /**
385
+ * - Status of GeoAreas (either active or inactive)
386
+ */
387
+ isActive?: boolean;
388
+ /**
389
+ * - Current page number
390
+ */
391
+ pageNo?: number;
392
+ /**
393
+ * - To fetch the type of a specific geoarea.
394
+ */
395
+ type?: string;
396
+ /**
397
+ * - Search with name as a free text
398
+ */
399
+ q?: string;
400
+ /**
401
+ * - ISO2 code of the country
402
+ */
403
+ countryIsoCode?: string;
404
+ /**
405
+ * - State name
406
+ */
407
+ state?: string;
408
+ /**
409
+ * - City name
410
+ */
411
+ city?: string;
412
+ /**
413
+ * - Pincode value to search geoareas
414
+ */
415
+ pincode?: string;
416
+ /**
417
+ * - Sector value to search geoareas
418
+ */
419
+ sector?: string;
164
420
  };
165
421
  type GetStoreRuleParam = {
166
422
  /**
@@ -169,70 +425,154 @@ type GetStoreRuleParam = {
169
425
  */
170
426
  ruleUid: string;
171
427
  };
428
+ type GetStoreRuleDetailsParam = {
429
+ /**
430
+ * - A `rule_uid` is a unique identifier for a order
431
+ * routing rule.
432
+ */
433
+ ruleUid: string;
434
+ };
172
435
  type GetStoreRulesParam = {
173
436
  pageNo?: number;
174
437
  pageSize?: number;
175
438
  status?: string;
176
439
  };
440
+ type GetZoneParam = {
441
+ /**
442
+ * - Unique identifier for a particular zone
443
+ */
444
+ zoneId: string;
445
+ };
446
+ type GetZoneDetailsParam = {
447
+ /**
448
+ * - Unique identifier of a particular zone
449
+ */
450
+ zoneId: string;
451
+ };
452
+ type GetZonesParam = {
453
+ /**
454
+ * - Identifies the specific stage of zone bing requested.
455
+ */
456
+ stage?: string;
457
+ /**
458
+ * - Using type, you can filter custom or default zones
459
+ */
460
+ type?: string;
461
+ /**
462
+ * - Using access level, you can filter public
463
+ * and private zones as marketplace owner
464
+ */
465
+ accessLevel?: string;
466
+ /**
467
+ * - Using status zones listing can be filttered for
468
+ * marketplace owner and 3p sellers
469
+ */
470
+ status?: string;
471
+ /**
472
+ * - Defines the number of items displayed per page.
473
+ */
474
+ pageSize?: number;
475
+ /**
476
+ * - Current page number.
477
+ */
478
+ pageNo?: number;
479
+ /**
480
+ * - Status of Zone (either active or inactive)
481
+ */
482
+ isActive?: boolean;
483
+ /**
484
+ * - Search with name as a free text.
485
+ */
486
+ q?: string;
487
+ /**
488
+ * - ISO2 code of the country.
489
+ */
490
+ countryIsoCode?: string;
491
+ /**
492
+ * - PIN Code of the country.
493
+ */
494
+ pincode?: string;
495
+ /**
496
+ * - State of the country.
497
+ */
498
+ state?: string;
499
+ /**
500
+ * - City of the country.
501
+ */
502
+ city?: string;
503
+ /**
504
+ * - Sector name of mentioned address.
505
+ */
506
+ sector?: string;
507
+ };
177
508
  type InsertApplicationConfigParam = {
178
509
  body: ServiceabilityPlatformModel.StoreRuleConfigData;
179
510
  };
180
- type PatchApplicationServiceabilitySelfShipmentParam = {
181
- body: ServiceabilityPlatformModel.SelfShipResult;
511
+ type PatchApplicationConfigurationParam = {
512
+ body: ServiceabilityPlatformModel.ApplicationConfigPatchRequest;
182
513
  };
183
514
  type UpdateApplicationConfigurationParam = {
184
- body: ServiceabilityPlatformModel.ApplicationConfig;
515
+ body: ServiceabilityPlatformModel.ApplicationConfigPutRequest;
516
+ };
517
+ type UpdateBulkGeoAreaParam = {
518
+ /**
519
+ * - A unique identifier for the GeoArea.
520
+ */
521
+ geoareaId: string;
522
+ body: ServiceabilityPlatformModel.BulkGeoAreaDetails;
185
523
  };
186
524
  type UpdateCourierPartnerRulePriorityParam = {
187
- body: ServiceabilityPlatformModel.RulePriorityDetails;
525
+ body: ServiceabilityPlatformModel.RulePriorityRequest;
188
526
  };
189
527
  type UpdateCourierRuleParam = {
190
528
  /**
191
- * - Unique identifier of the courier partner rule.
529
+ * - A `rule_uid` is a unique identifier for a particular Dp.
192
530
  */
193
- ruleId: string;
531
+ ruleUid: string;
194
532
  body: ServiceabilityPlatformModel.CourierPartnerRule;
195
533
  };
196
- type UpdatePincodeAuditHistoryParam = {
197
- /**
198
- * - Page number to be fetched.
199
- */
200
- pageNumber?: number;
534
+ type UpdateGeoAreaParam = {
201
535
  /**
202
- * - Determines the items to be displayed in a page
536
+ * - A unique identifier for the GeoArea.
203
537
  */
204
- pageSize?: number;
205
- body: ServiceabilityPlatformModel.PincodeMopUpdateAuditHistoryDetails;
538
+ geoareaId: string;
539
+ body: ServiceabilityPlatformModel.GeoAreaRequestBody;
540
+ };
541
+ type UpdatePincodeAuditHistoryParam = {
542
+ body: ServiceabilityPlatformModel.PincodeMopUpdateAuditHistoryRequest;
206
543
  };
207
544
  type UpdatePincodeBulkViewParam = {
208
545
  body: ServiceabilityPlatformModel.PincodeMopBulkData;
209
546
  };
210
547
  type UpdatePincodeCoDListingParam = {
211
- /**
212
- * - Page number to be fetched.
213
- */
214
- pageNumber?: number;
215
- /**
216
- * - Determines the items to be displayed in a page
217
- */
218
- pageSize?: number;
219
- body: ServiceabilityPlatformModel.PincodeCodStatusListingDetails;
548
+ body: ServiceabilityPlatformModel.PincodeCodStatusListingRequest;
220
549
  };
221
550
  type UpdatePincodeMopViewParam = {
222
551
  body: ServiceabilityPlatformModel.PincodeMopData;
223
552
  };
553
+ type UpdateStoreRulePriorityParam = {
554
+ body: ServiceabilityPlatformModel.RulePriorityRequest;
555
+ };
224
556
  type UpdateStoreRulesParam = {
225
557
  /**
226
558
  * - A `rule_uid` is a unique identifier for a
227
559
  * particular rule object.
228
560
  */
229
561
  ruleUid: string;
230
- body: ServiceabilityPlatformModel.CreateStoreRuleDetailsSchema;
562
+ body: ServiceabilityPlatformModel.CreateStoreRuleRequestSchema;
231
563
  };
232
564
  type UpdateStoreRulesConfigParam = {
233
565
  body: ServiceabilityPlatformModel.StoreRuleConfigData;
234
566
  };
567
+ type UpdateZoneParam = {
568
+ /**
569
+ * - Unique identifier for a particular zone
570
+ */
571
+ zoneId: string;
572
+ body: ServiceabilityPlatformModel.UpdateZoneDataV2;
573
+ };
574
+ type DownloadGeoareaSampleFileParam = any;
235
575
  type GetApplicationConfigParam = any;
236
576
  type GetApplicationConfigurationParam = any;
237
- type GetApplicationServiceabilitySelfShipmentParam = any;
577
+ type GetBulkZoneParam = any;
238
578
  import ServiceabilityPlatformModel = require("./ServiceabilityPlatformModel");