@gofynd/fdk-client-javascript 1.6.4 → 3.0.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 (298) 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 +113 -93
  6. package/sdk/application/Cart/CartApplicationClient.js +270 -139
  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 +51 -21
  16. package/sdk/application/Content/ContentApplicationClient.js +197 -36
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
  20. package/sdk/application/Lead/LeadApplicationClient.js +3 -3
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
  24. package/sdk/application/Order/OrderApplicationClient.js +140 -21
  25. package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
  26. package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
  27. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  28. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  29. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  30. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  31. package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
  32. package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
  33. package/sdk/application/User/UserApplicationClient.d.ts +13 -23
  34. package/sdk/application/User/UserApplicationClient.js +9 -57
  35. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  36. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  37. package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
  38. package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
  39. package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
  40. package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
  41. package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
  42. package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
  43. package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
  44. package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
  45. package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
  46. package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
  47. package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
  48. package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
  49. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -22
  50. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
  51. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
  52. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
  53. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
  54. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
  55. package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
  56. package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
  57. package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
  58. package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
  59. package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
  60. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
  61. package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
  62. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
  63. package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
  64. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
  65. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
  66. package/sdk/partner/PartnerClient.d.ts +6 -0
  67. package/sdk/partner/PartnerClient.js +9 -0
  68. package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
  69. package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
  70. package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
  71. package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
  72. package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
  73. package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
  74. package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
  75. package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
  76. package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
  77. package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
  78. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
  79. package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
  80. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
  81. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
  82. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
  83. package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
  84. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
  85. package/sdk/partner/index.d.ts +3 -0
  86. package/sdk/partner/index.js +6 -0
  87. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
  88. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  89. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
  90. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
  91. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  92. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  93. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
  94. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
  95. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  96. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  97. package/sdk/platform/Billing/BillingPlatformClient.d.ts +406 -15
  98. package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
  99. package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
  100. package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
  101. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
  102. package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
  103. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
  104. package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
  105. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
  106. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
  107. package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
  108. package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
  109. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
  110. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
  111. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
  112. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
  113. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
  114. package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
  115. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
  116. package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
  117. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
  118. package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
  119. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
  120. package/sdk/platform/Common/CommonPlatformClient.js +5 -6
  121. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  122. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  123. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -234
  124. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
  125. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
  126. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
  127. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
  128. package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
  129. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +424 -252
  130. package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
  131. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
  132. package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
  133. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
  134. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
  135. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
  136. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
  137. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
  138. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -20
  139. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
  140. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
  141. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
  142. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
  143. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
  144. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
  145. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1199 -462
  146. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
  147. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
  148. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
  149. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
  150. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
  151. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
  152. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
  153. package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
  154. package/sdk/platform/Content/ContentPlatformClient.js +459 -379
  155. package/sdk/platform/Content/ContentPlatformModel.d.ts +833 -1307
  156. package/sdk/platform/Content/ContentPlatformModel.js +893 -582
  157. package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
  158. package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
  159. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
  160. package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
  161. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
  162. package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
  163. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  164. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  165. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
  166. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
  167. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
  168. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
  169. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
  170. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
  171. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
  172. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
  173. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  174. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  175. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  176. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  177. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
  178. package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
  179. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  180. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  181. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
  182. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
  183. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
  184. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
  185. package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
  186. package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
  187. package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
  188. package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
  189. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
  190. package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
  191. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
  192. package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
  193. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
  194. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
  195. package/sdk/platform/Order/OrderPlatformClient.d.ts +502 -293
  196. package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
  197. package/sdk/platform/Order/OrderPlatformModel.d.ts +4103 -9109
  198. package/sdk/platform/Order/OrderPlatformModel.js +3198 -4245
  199. package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
  200. package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
  201. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  202. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  203. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  204. package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
  205. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
  206. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
  207. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
  208. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
  209. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
  210. package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
  211. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3525 -1313
  212. package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
  213. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
  214. package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
  215. package/sdk/platform/PlatformClient.d.ts +2 -0
  216. package/sdk/platform/PlatformClient.js +4 -0
  217. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  218. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  219. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  220. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  221. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
  222. package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
  223. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
  224. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2180 -302
  225. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
  226. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
  227. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
  228. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
  229. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
  230. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
  231. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
  232. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
  233. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
  234. package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
  235. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
  236. package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
  237. package/sdk/platform/Share/SharePlatformModel.d.ts +6 -50
  238. package/sdk/platform/Share/SharePlatformModel.js +3 -43
  239. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
  240. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
  241. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
  242. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
  243. package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
  244. package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
  246. package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
  247. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
  248. package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
  249. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
  250. package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
  251. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
  252. package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
  253. package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
  254. package/sdk/platform/User/UserPlatformModel.js +209 -216
  255. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  256. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  257. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
  258. package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
  259. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  260. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  261. package/sdk/platform/index.d.ts +1 -0
  262. package/sdk/platform/index.js +2 -0
  263. package/sdk/public/Billing/BillingPublicClient.d.ts +56 -0
  264. package/sdk/public/Billing/BillingPublicClient.js +397 -0
  265. package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
  266. package/sdk/public/Billing/BillingPublicModel.js +560 -0
  267. package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
  268. package/sdk/public/Billing/BillingPublicValidator.js +50 -0
  269. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
  270. package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
  271. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
  272. package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
  273. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
  274. package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
  275. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  276. package/sdk/public/Content/ContentPublicClient.js +183 -0
  277. package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
  278. package/sdk/public/Content/ContentPublicModel.js +47 -1
  279. package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
  280. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  281. package/sdk/public/PublicClient.d.ts +2 -2
  282. package/sdk/public/PublicClient.js +2 -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 +67 -215
  286. package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
  287. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  288. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  289. package/sdk/public/index.d.ts +1 -1
  290. package/sdk/public/index.js +1 -1
  291. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  292. package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
  293. package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
  294. package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
  295. package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
  296. package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
  297. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
  298. package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
@@ -3,33 +3,149 @@ declare class Serviceability {
3
3
  constructor(config: any, applicationId: any);
4
4
  config: any;
5
5
  applicationId: any;
6
+ /**
7
+ * @param {ServiceabilityPlatformApplicationValidator.CreateBulkExportParam} arg
8
+ * - Arg object
9
+ *
10
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
11
+ * @param {import("../PlatformAPIClient").Options} - Options
12
+ * @returns {Promise<ServiceabilityPlatformModel.ZoneBulkExport>} - Success response
13
+ * @name createBulkExport
14
+ * @summary: Create Bulk Export of Zones
15
+ * @description: Export zones defined at the application level. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createBulkExport/).
16
+ */
17
+ createBulkExport({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateBulkExportParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ZoneBulkExport>;
18
+ /**
19
+ * @param {ServiceabilityPlatformApplicationValidator.CreateBulkGeoAreaParam} arg
20
+ * - Arg object
21
+ *
22
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
23
+ * @param {import("../PlatformAPIClient").Options} - Options
24
+ * @returns {Promise<ServiceabilityPlatformModel.BulkGeoAreaResult>} -
25
+ * Success response
26
+ * @name createBulkGeoArea
27
+ * @summary: Bulk Creation of GeoArea Regions
28
+ * @description: Allows to create and manage GeoAreas, representing groups of geographic regions in bulk. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createBulkGeoArea/).
29
+ */
30
+ createBulkGeoArea({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateBulkGeoAreaParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkGeoAreaResult>;
31
+ /**
32
+ * @param {ServiceabilityPlatformApplicationValidator.CreateBulkZoneParam} arg
33
+ * - Arg object
34
+ *
35
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
36
+ * @param {import("../PlatformAPIClient").Options} - Options
37
+ * @returns {Promise<ServiceabilityPlatformModel.CreateBulkZoneResponse>} -
38
+ * Success response
39
+ * @name createBulkZone
40
+ * @summary: Create bulk zones.
41
+ * @description: Creates bulk zones defined at the application level. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createBulkZone/).
42
+ */
43
+ createBulkZone({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateBulkZoneParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CreateBulkZoneResponse>;
6
44
  /**
7
45
  * @param {ServiceabilityPlatformApplicationValidator.CreateCourierPartnerRuleParam} arg
8
46
  * - Arg object
9
47
  *
10
48
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
11
49
  * @param {import("../PlatformAPIClient").Options} - Options
12
- * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRuleResult>}
50
+ * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseSchema>}
13
51
  * - Success response
14
52
  *
15
53
  * @name createCourierPartnerRule
16
54
  * @summary: Create courier rule
17
55
  * @description: Creates a rule within the delivery configuration. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createCourierPartnerRule/).
18
56
  */
19
- createCourierPartnerRule({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateCourierPartnerRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRuleResult>;
57
+ createCourierPartnerRule({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateCourierPartnerRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseSchema>;
20
58
  /**
21
- * @param {ServiceabilityPlatformApplicationValidator.CreateStoreRulesParam} arg
59
+ * @param {ServiceabilityPlatformApplicationValidator.CreateGeoAreaParam} arg
22
60
  * - Arg object
23
61
  *
24
62
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
25
63
  * @param {import("../PlatformAPIClient").Options} - Options
26
- * @returns {Promise<ServiceabilityPlatformModel.StoreRuleResultSchema>} -
64
+ * @returns {Promise<ServiceabilityPlatformModel.GeoAreaResponseBody>} -
27
65
  * Success response
66
+ * @name createGeoArea
67
+ * @summary: Creation of GeoArea
68
+ * @description: Allows to create and manage GeoAreas, representing groups of geographic regions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createGeoArea/).
69
+ */
70
+ createGeoArea({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateGeoAreaParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GeoAreaResponseBody>;
71
+ /**
72
+ * @param {ServiceabilityPlatformApplicationValidator.CreateGeoAreaExportJobParam} arg
73
+ * - Arg object
74
+ *
75
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
76
+ * @param {import("../PlatformAPIClient").Options} - Options
77
+ * @returns {Promise<ServiceabilityPlatformModel.GeoAreaBulkCreationResult>}
78
+ * - Success response
79
+ *
80
+ * @name createGeoAreaExportJob
81
+ * @summary: Create job for exporting Geoarea regions
82
+ * @description: Create the job for exporting the regions in Geoarea in CSV format. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createGeoAreaExportJob/).
83
+ */
84
+ createGeoAreaExportJob({ geoareaId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateGeoAreaExportJobParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GeoAreaBulkCreationResult>;
85
+ /**
86
+ * @param {ServiceabilityPlatformApplicationValidator.CreateStoreRulesParam} arg
87
+ * - Arg object
88
+ *
89
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
90
+ * @param {import("../PlatformAPIClient").Options} - Options
91
+ * @returns {Promise<ServiceabilityPlatformModel.StoreRuleResponseSchema>}
92
+ * - Success response
93
+ *
28
94
  * @name createStoreRules
29
95
  * @summary: Create store rule
30
96
  * @description: Create a rule within the order routing rules - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createStoreRules/).
31
97
  */
32
- createStoreRules({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateStoreRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.StoreRuleResultSchema>;
98
+ createStoreRules({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateStoreRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.StoreRuleResponseSchema>;
99
+ /**
100
+ * @param {ServiceabilityPlatformApplicationValidator.CreateZoneParam} arg
101
+ * - Arg object
102
+ *
103
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
104
+ * @param {import("../PlatformAPIClient").Options} - Options
105
+ * @returns {Promise<ServiceabilityPlatformModel.ZoneResponseV2>} - Success response
106
+ * @name createZone
107
+ * @summary: Create zone
108
+ * @description: Creates a delivery zone. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createZone/).
109
+ */
110
+ createZone({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateZoneParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ZoneResponseV2>;
111
+ /**
112
+ * @param {ServiceabilityPlatformApplicationValidator.DeleteZoneParam} arg
113
+ * - Arg object
114
+ *
115
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
116
+ * @param {import("../PlatformAPIClient").Options} - Options
117
+ * @returns {Promise<ServiceabilityPlatformModel.ZoneDeleteSuccessResponse>}
118
+ * - Success response
119
+ *
120
+ * @name deleteZone
121
+ * @summary: Delete a Specific Zone
122
+ * @description: Delete a Zone under that application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/deleteZone/).
123
+ */
124
+ deleteZone({ zoneId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.DeleteZoneParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ZoneDeleteSuccessResponse>;
125
+ /**
126
+ * @param {ServiceabilityPlatformApplicationValidator.DownloadGeoareaSampleFileParam} arg
127
+ * - Arg object
128
+ *
129
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
130
+ * @param {import("../PlatformAPIClient").Options} - Options
131
+ * @returns {Promise<string>} - Success response
132
+ * @name downloadGeoareaSampleFile
133
+ * @summary: Download geoarea sample file.
134
+ * @description: Download a sample file for geoarea data. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/downloadGeoareaSampleFile/).
135
+ */
136
+ downloadGeoareaSampleFile({ requestHeaders }?: any, { responseHeaders }?: object): Promise<string>;
137
+ /**
138
+ * @param {ServiceabilityPlatformApplicationValidator.DownloadZoneSampleFileParam} arg
139
+ * - Arg object
140
+ *
141
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
142
+ * @param {import("../PlatformAPIClient").Options} - Options
143
+ * @returns {Promise<string>} - Success response
144
+ * @name downloadZoneSampleFile
145
+ * @summary: Download Sample Delivery Zone Product Type file.
146
+ * @description: Download a sample file for Delivery Zone with specified product type column (i.e. category, department, Item IDs or tags). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/downloadZoneSampleFile/).
147
+ */
148
+ downloadZoneSampleFile({ productType, requestHeaders }?: ServiceabilityPlatformApplicationValidator.DownloadZoneSampleFileParam, { responseHeaders }?: object): Promise<string>;
33
149
  /**
34
150
  * @param {ServiceabilityPlatformApplicationValidator.GetApplicationConfigParam} arg
35
151
  * - Arg object
@@ -49,69 +165,134 @@ declare class Serviceability {
49
165
  *
50
166
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
51
167
  * @param {import("../PlatformAPIClient").Options} - Options
52
- * @returns {Promise<ServiceabilityPlatformModel.ApplicationConfig>} -
53
- * Success response
168
+ * @returns {Promise<ServiceabilityPlatformModel.ApplicationConfigGetResponse>}
169
+ * - Success response
170
+ *
54
171
  * @name getApplicationConfiguration
55
172
  * @summary: Get delivery configuration
56
- * @description: Retrieves information about the delivery setup for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getApplicationConfiguration/).
173
+ * @description: This API returns all the Application config that has been applied to the given company and application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getApplicationConfiguration/).
57
174
  */
58
- getApplicationConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ApplicationConfig>;
175
+ getApplicationConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ApplicationConfigGetResponse>;
59
176
  /**
60
- * @param {ServiceabilityPlatformApplicationValidator.GetApplicationServiceabilitySelfShipmentParam} arg
177
+ * @param {ServiceabilityPlatformApplicationValidator.GetBulkExportParam} arg
61
178
  * - Arg object
62
179
  *
63
180
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
64
181
  * @param {import("../PlatformAPIClient").Options} - Options
65
- * @returns {Promise<ServiceabilityPlatformModel.ApplicationSelfShipConfigResult>}
66
- * - Success response
182
+ * @returns {Promise<ServiceabilityPlatformModel.GetZoneBulkExport>} -
183
+ * Success response
184
+ * @name getBulkExport
185
+ * @summary: Get Bulk Export of Zones
186
+ * @description: Get specific zone which is exported at the application level. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getBulkExport/).
187
+ */
188
+ getBulkExport({ batchId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetBulkExportParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetZoneBulkExport>;
189
+ /**
190
+ * @param {ServiceabilityPlatformApplicationValidator.GetBulkGeoAreaParam} arg
191
+ * - Arg object
67
192
  *
68
- * @name getApplicationServiceabilitySelfShipment
69
- * @summary: Get self ship configuration
70
- * @description: Retrieves the self ship setup for a single application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getApplicationServiceabilitySelfShipment/).
193
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
194
+ * @param {import("../PlatformAPIClient").Options} - Options
195
+ * @returns {Promise<ServiceabilityPlatformModel.BulkGeoAreaGetResponse>} -
196
+ * Success response
197
+ * @name getBulkGeoArea
198
+ * @summary: Get status of GeoAreas created in bulk
199
+ * @description: Allows to Get GeoArea status which is created, representing groups of geographic regions in bulk. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getBulkGeoArea/).
71
200
  */
72
- getApplicationServiceabilitySelfShipment({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ApplicationSelfShipConfigResult>;
201
+ getBulkGeoArea({ geoareaId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetBulkGeoAreaParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkGeoAreaGetResponse>;
202
+ /**
203
+ * @param {ServiceabilityPlatformApplicationValidator.GetBulkZoneParam} arg
204
+ * - Arg object
205
+ *
206
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
207
+ * @param {import("../PlatformAPIClient").Options} - Options
208
+ * @returns {Promise<ServiceabilityPlatformModel.GetBulkZoneHistory>} -
209
+ * Success response
210
+ * @name getBulkZone
211
+ * @summary: Get bulk zones.
212
+ * @description: Fetch bulk zones created at the application level. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getBulkZone/).
213
+ */
214
+ getBulkZone({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetBulkZoneHistory>;
73
215
  /**
74
216
  * @param {ServiceabilityPlatformApplicationValidator.GetCourierPartnerRuleParam} arg
75
217
  * - Arg object
76
218
  *
77
219
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
78
220
  * @param {import("../PlatformAPIClient").Options} - Options
79
- * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRuleResult>}
221
+ * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseSchema>}
80
222
  * - Success response
81
223
  *
82
224
  * @name getCourierPartnerRule
83
225
  * @summary: Get courier rule
84
226
  * @description: Retrieves a single rule within the delivery configuration. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartnerRule/).
85
227
  */
86
- getCourierPartnerRule({ ruleId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetCourierPartnerRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRuleResult>;
228
+ getCourierPartnerRule({ ruleUid, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetCourierPartnerRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseSchema>;
229
+ /**
230
+ * @param {ServiceabilityPlatformApplicationValidator.GetCourierPartnerRuleDetailsParam} arg
231
+ * - Arg object
232
+ *
233
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
234
+ * @param {import("../PlatformAPIClient").Options} - Options
235
+ * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseDetailSchema>}
236
+ * - Success response
237
+ *
238
+ * @name getCourierPartnerRuleDetails
239
+ * @summary: Get courier rule
240
+ * @description: Retrieves details for a courier partner rule. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartnerRuleDetails/).
241
+ */
242
+ getCourierPartnerRuleDetails({ ruleUid, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetCourierPartnerRuleDetailsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseDetailSchema>;
87
243
  /**
88
244
  * @param {ServiceabilityPlatformApplicationValidator.GetCourierPartnerRulesParam} arg
89
245
  * - Arg object
90
246
  *
91
247
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
92
248
  * @param {import("../PlatformAPIClient").Options} - Options
93
- * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRulesListResult>}
249
+ * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRulesListResponse>}
94
250
  * - Success response
95
251
  *
96
252
  * @name getCourierPartnerRules
97
253
  * @summary: Get courier rules
98
254
  * @description: Retrieve a list of rules within the delivery configuration. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartnerRules/).
99
255
  */
100
- getCourierPartnerRules({ pageNo, pageSize, status, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetCourierPartnerRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRulesListResult>;
256
+ getCourierPartnerRules({ pageNo, pageSize, status, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetCourierPartnerRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRulesListResponse>;
101
257
  /**
102
- * @param {ServiceabilityPlatformApplicationValidator.GetCourierPartnersParam} arg
258
+ * @param {ServiceabilityPlatformApplicationValidator.GetGeoAreaParam} arg
103
259
  * - Arg object
104
260
  *
105
261
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
106
262
  * @param {import("../PlatformAPIClient").Options} - Options
107
- * @returns {Promise<ServiceabilityPlatformModel.ShipmentCourierPartnerResult>}
263
+ * @returns {Promise<ServiceabilityPlatformModel.GeoAreaResponse>} - Success response
264
+ * @name getGeoArea
265
+ * @summary: Get details of the specific geoarea
266
+ * @description: This API Returns the data of the specific GeoArea which exists on the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getGeoArea/).
267
+ */
268
+ getGeoArea({ geoareaId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetGeoAreaParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GeoAreaResponse>;
269
+ /**
270
+ * @param {ServiceabilityPlatformApplicationValidator.GetGeoAreaExportJobStatusParam} arg
271
+ * - Arg object
272
+ *
273
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
274
+ * @param {import("../PlatformAPIClient").Options} - Options
275
+ * @returns {Promise<ServiceabilityPlatformModel.GeoAreaBulkExportResult>}
108
276
  * - Success response
109
277
  *
110
- * @name getCourierPartners
111
- * @summary: Serviceable Courier Partners.
112
- * @description: Get all the serviceable courier partners of a destination and the shipments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartners/).
278
+ * @name getGeoAreaExportJobStatus
279
+ * @summary: Get status of Geoarea export job
280
+ * @description: Get the status and details of the Geoarea bulk export process. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getGeoAreaExportJobStatus/).
281
+ */
282
+ getGeoAreaExportJobStatus({ geoareaId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetGeoAreaExportJobStatusParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GeoAreaBulkExportResult>;
283
+ /**
284
+ * @param {ServiceabilityPlatformApplicationValidator.GetGeoAreasParam} arg
285
+ * - Arg object
286
+ *
287
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
288
+ * @param {import("../PlatformAPIClient").Options} - Options
289
+ * @returns {Promise<ServiceabilityPlatformModel.GeoAreaGetResponseBody>} -
290
+ * Success response
291
+ * @name getGeoAreas
292
+ * @summary: Get all geoareas in the current application.
293
+ * @description: Retrieves a listing view of created GeoAreas. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getGeoAreas/).
113
294
  */
114
- getCourierPartners({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetCourierPartnersParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ShipmentCourierPartnerResult>;
295
+ getGeoAreas({ pageSize, isActive, pageNo, type, q, countryIsoCode, state, city, pincode, sector, requestHeaders, }?: ServiceabilityPlatformApplicationValidator.GetGeoAreasParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GeoAreaGetResponseBody>;
115
296
  /**
116
297
  * @param {ServiceabilityPlatformApplicationValidator.GetStoreRuleParam} arg
117
298
  * - Arg object
@@ -125,19 +306,70 @@ declare class Serviceability {
125
306
  * @description: Retrieves a single rule within the order routing rules - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getStoreRule/).
126
307
  */
127
308
  getStoreRule({ ruleUid, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetStoreRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.StoreRuleDataSchema>;
309
+ /**
310
+ * @param {ServiceabilityPlatformApplicationValidator.GetStoreRuleDetailsParam} arg
311
+ * - Arg object
312
+ *
313
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
314
+ * @param {import("../PlatformAPIClient").Options} - Options
315
+ * @returns {Promise<ServiceabilityPlatformModel.StoreRuleDataDetailsSchema>}
316
+ * - Success response
317
+ *
318
+ * @name getStoreRuleDetails
319
+ * @summary: Get store rule Details
320
+ * @description: Retrieves details of a order routing rule. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getStoreRuleDetails/).
321
+ */
322
+ getStoreRuleDetails({ ruleUid, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetStoreRuleDetailsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.StoreRuleDataDetailsSchema>;
128
323
  /**
129
324
  * @param {ServiceabilityPlatformApplicationValidator.GetStoreRulesParam} arg
130
325
  * - Arg object
131
326
  *
132
327
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
133
328
  * @param {import("../PlatformAPIClient").Options} - Options
134
- * @returns {Promise<ServiceabilityPlatformModel.GetStoreRulesApiResult>} -
135
- * Success response
329
+ * @returns {Promise<ServiceabilityPlatformModel.GetStoreRulesApiResponse>}
330
+ * - Success response
331
+ *
136
332
  * @name getStoreRules
137
333
  * @summary: Get store rules
138
334
  * @description: Retrieves an existing order routing setup for a single application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getStoreRules/).
139
335
  */
140
- getStoreRules({ pageNo, pageSize, status, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetStoreRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetStoreRulesApiResult>;
336
+ getStoreRules({ pageNo, pageSize, status, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetStoreRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetStoreRulesApiResponse>;
337
+ /**
338
+ * @param {ServiceabilityPlatformApplicationValidator.GetZoneParam} arg - Arg object
339
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
340
+ * @param {import("../PlatformAPIClient").Options} - Options
341
+ * @returns {Promise<ServiceabilityPlatformModel.GetZoneByIdSchema>} -
342
+ * Success response
343
+ * @name getZone
344
+ * @summary: Get zone details
345
+ * @description: Retrieves a single delivery zone - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZone/).
346
+ */
347
+ getZone({ zoneId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetZoneParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetZoneByIdSchema>;
348
+ /**
349
+ * @param {ServiceabilityPlatformApplicationValidator.GetZoneDetailsParam} arg
350
+ * - Arg object
351
+ *
352
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
353
+ * @param {import("../PlatformAPIClient").Options} - Options
354
+ * @returns {Promise<ServiceabilityPlatformModel.GetZoneByIdDetailsSchema>}
355
+ * - Success response
356
+ *
357
+ * @name getZoneDetails
358
+ * @summary: Get details of a delivery zone
359
+ * @description: Get details of a single delivery zone along with product, store and region details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZoneDetails/).
360
+ */
361
+ getZoneDetails({ zoneId, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetZoneDetailsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetZoneByIdDetailsSchema>;
362
+ /**
363
+ * @param {ServiceabilityPlatformApplicationValidator.GetZonesParam} arg - Arg object
364
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
365
+ * @param {import("../PlatformAPIClient").Options} - Options
366
+ * @returns {Promise<ServiceabilityPlatformModel.ListViewResponseV2>} -
367
+ * Success response
368
+ * @name getZones
369
+ * @summary: Get zones
370
+ * @description: Retrieves a list of delivery zones. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZones/).
371
+ */
372
+ getZones({ stage, type, pageSize, pageNo, isActive, q, countryIsoCode, pincode, state, city, sector, requestHeaders, }?: ServiceabilityPlatformApplicationValidator.GetZonesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ListViewResponseV2>;
141
373
  /**
142
374
  * @param {ServiceabilityPlatformApplicationValidator.InsertApplicationConfigParam} arg
143
375
  * - Arg object
@@ -152,126 +384,168 @@ declare class Serviceability {
152
384
  */
153
385
  insertApplicationConfig({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.InsertApplicationConfigParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.StoreRuleConfigData>;
154
386
  /**
155
- * @param {ServiceabilityPlatformApplicationValidator.PatchApplicationServiceabilitySelfShipmentParam} arg
387
+ * @param {ServiceabilityPlatformApplicationValidator.PatchApplicationConfigurationParam} arg
156
388
  * - Arg object
157
389
  *
158
390
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
159
391
  * @param {import("../PlatformAPIClient").Options} - Options
160
- * @returns {Promise<ServiceabilityPlatformModel.ApplicationSelfShipConfigResult>}
392
+ * @returns {Promise<ServiceabilityPlatformModel.ApplicationConfigPatchResponse>}
161
393
  * - Success response
162
394
  *
163
- * @name patchApplicationServiceabilitySelfShipment
164
- * @summary: Update self ship configuration
165
- * @description: Updates self ship setup for an existing application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/patchApplicationServiceabilitySelfShipment/).
395
+ * @name patchApplicationConfiguration
396
+ * @summary: To patch any config which can be applied to application.
397
+ * @description: Apply configs to application. Supports patching for buybox rule config and promise config. For reference, refer to examples - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/patchApplicationConfiguration/).
166
398
  */
167
- patchApplicationServiceabilitySelfShipment({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.PatchApplicationServiceabilitySelfShipmentParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ApplicationSelfShipConfigResult>;
399
+ patchApplicationConfiguration({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.PatchApplicationConfigurationParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ApplicationConfigPatchResponse>;
168
400
  /**
169
401
  * @param {ServiceabilityPlatformApplicationValidator.UpdateApplicationConfigurationParam} arg
170
402
  * - Arg object
171
403
  *
172
404
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
173
405
  * @param {import("../PlatformAPIClient").Options} - Options
174
- * @returns {Promise<ServiceabilityPlatformModel.ApplicationConfig>} -
175
- * Success response
406
+ * @returns {Promise<ServiceabilityPlatformModel.ApplicationConfigPutResponse>}
407
+ * - Success response
408
+ *
176
409
  * @name updateApplicationConfiguration
177
- * @summary: Update delivery configuration
178
- * @description: Updates an existing delivery setup for an application, which involves updating sorting settings or rule priorities. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateApplicationConfiguration/).
410
+ * @summary: Apply configuration to an application
411
+ * @description: Apply configuration to application to set DP rules and Zone configuration - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateApplicationConfiguration/).
179
412
  */
180
- updateApplicationConfiguration({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateApplicationConfigurationParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ApplicationConfig>;
413
+ updateApplicationConfiguration({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateApplicationConfigurationParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ApplicationConfigPutResponse>;
414
+ /**
415
+ * @param {ServiceabilityPlatformApplicationValidator.UpdateBulkGeoAreaParam} arg
416
+ * - Arg object
417
+ *
418
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
419
+ * @param {import("../PlatformAPIClient").Options} - Options
420
+ * @returns {Promise<ServiceabilityPlatformModel.BulkGeoAreaResult>} -
421
+ * Success response
422
+ * @name updateBulkGeoArea
423
+ * @summary: Update geoareas and their associated regions in bulk.
424
+ * @description: Update geoarea details and their associated regions through a CSV file in bulk. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateBulkGeoArea/).
425
+ */
426
+ updateBulkGeoArea({ geoareaId, body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateBulkGeoAreaParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkGeoAreaResult>;
181
427
  /**
182
428
  * @param {ServiceabilityPlatformApplicationValidator.UpdateCourierPartnerRulePriorityParam} arg
183
429
  * - Arg object
184
430
  *
185
431
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
186
432
  * @param {import("../PlatformAPIClient").Options} - Options
187
- * @returns {Promise<ServiceabilityPlatformModel.RulePriorityResult>} -
433
+ * @returns {Promise<ServiceabilityPlatformModel.RulePriorityResponse>} -
188
434
  * Success response
189
435
  * @name updateCourierPartnerRulePriority
190
436
  * @summary: Update courier partner rule priority
191
437
  * @description: Updates a courier partner rule priority for a single application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateCourierPartnerRulePriority/).
192
438
  */
193
- updateCourierPartnerRulePriority({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateCourierPartnerRulePriorityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.RulePriorityResult>;
439
+ updateCourierPartnerRulePriority({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateCourierPartnerRulePriorityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.RulePriorityResponse>;
194
440
  /**
195
441
  * @param {ServiceabilityPlatformApplicationValidator.UpdateCourierRuleParam} arg
196
442
  * - Arg object
197
443
  *
198
444
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
199
445
  * @param {import("../PlatformAPIClient").Options} - Options
200
- * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRuleResult>}
446
+ * @returns {Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseSchema>}
201
447
  * - Success response
202
448
  *
203
449
  * @name updateCourierRule
204
450
  * @summary: Update courier rule
205
- * @description: Updates an existing rule within the delivery configuration. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateCourierRule/).
451
+ * @description: Updates an existing rule within the delivery configuration - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateCourierRule/).
452
+ */
453
+ updateCourierRule({ ruleUid, body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateCourierRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseSchema>;
454
+ /**
455
+ * @param {ServiceabilityPlatformApplicationValidator.UpdateGeoAreaParam} arg
456
+ * - Arg object
457
+ *
458
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
459
+ * @param {import("../PlatformAPIClient").Options} - Options
460
+ * @returns {Promise<ServiceabilityPlatformModel.GeoAreaPutResponseBody>} -
461
+ * Success response
462
+ * @name updateGeoArea
463
+ * @summary: Update the details of existing GeoArea
464
+ * @description: Updates the GeoArea with a new name, regions, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateGeoArea/).
206
465
  */
207
- updateCourierRule({ ruleId, body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateCourierRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRuleResult>;
466
+ updateGeoArea({ geoareaId, body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateGeoAreaParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GeoAreaPutResponseBody>;
208
467
  /**
209
468
  * @param {ServiceabilityPlatformApplicationValidator.UpdatePincodeAuditHistoryParam} arg
210
469
  * - Arg object
211
470
  *
212
471
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
213
472
  * @param {import("../PlatformAPIClient").Options} - Options
214
- * @returns {Promise<ServiceabilityPlatformModel.PincodeMopUpdateAuditHistoryResultData>}
473
+ * @returns {Promise<ServiceabilityPlatformModel.PincodeMopUpdateAuditHistoryResponseData>}
215
474
  * - Success response
216
475
  *
217
476
  * @name updatePincodeAuditHistory
218
477
  * @summary: Get audit trail
219
478
  * @description: Retrieves the history of changes made to cash on delivery settings for pincodes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updatePincodeAuditHistory/).
220
479
  */
221
- updatePincodeAuditHistory({ body, pageNumber, pageSize, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdatePincodeAuditHistoryParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PincodeMopUpdateAuditHistoryResultData>;
480
+ updatePincodeAuditHistory({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdatePincodeAuditHistoryParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PincodeMopUpdateAuditHistoryResponseData>;
222
481
  /**
223
482
  * @param {ServiceabilityPlatformApplicationValidator.UpdatePincodeBulkViewParam} arg
224
483
  * - Arg object
225
484
  *
226
485
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
227
486
  * @param {import("../PlatformAPIClient").Options} - Options
228
- * @returns {Promise<ServiceabilityPlatformModel.PincodeBulkViewResult>} -
229
- * Success response
487
+ * @returns {Promise<ServiceabilityPlatformModel.PincodeBulkViewResponse>}
488
+ * - Success response
489
+ *
230
490
  * @name updatePincodeBulkView
231
491
  * @summary: Bulk update pincode COD support
232
492
  * @description: Updates the cash on delivery settings for multiple specified pin codes simultaneously. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updatePincodeBulkView/).
233
493
  */
234
- updatePincodeBulkView({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdatePincodeBulkViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PincodeBulkViewResult>;
494
+ updatePincodeBulkView({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdatePincodeBulkViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PincodeBulkViewResponse>;
235
495
  /**
236
496
  * @param {ServiceabilityPlatformApplicationValidator.UpdatePincodeCoDListingParam} arg
237
497
  * - Arg object
238
498
  *
239
499
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
240
500
  * @param {import("../PlatformAPIClient").Options} - Options
241
- * @returns {Promise<ServiceabilityPlatformModel.PincodeCodStatusListingResult>}
501
+ * @returns {Promise<ServiceabilityPlatformModel.PincodeCodStatusListingResponse>}
242
502
  * - Success response
243
503
  *
244
504
  * @name updatePincodeCoDListing
245
505
  * @summary: Get COD enabled pincodes
246
506
  * @description: Retrieves a list of pincodes along with the count based on whether cash on delivery settings. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updatePincodeCoDListing/).
247
507
  */
248
- updatePincodeCoDListing({ body, pageNumber, pageSize, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdatePincodeCoDListingParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PincodeCodStatusListingResult>;
508
+ updatePincodeCoDListing({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdatePincodeCoDListingParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PincodeCodStatusListingResponse>;
249
509
  /**
250
510
  * @param {ServiceabilityPlatformApplicationValidator.UpdatePincodeMopViewParam} arg
251
511
  * - Arg object
252
512
  *
253
513
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
254
514
  * @param {import("../PlatformAPIClient").Options} - Options
255
- * @returns {Promise<ServiceabilityPlatformModel.PincodeMOPResult>} - Success response
515
+ * @returns {Promise<ServiceabilityPlatformModel.PincodeMOPresponse>} -
516
+ * Success response
256
517
  * @name updatePincodeMopView
257
518
  * @summary: Update pincode COD support
258
519
  * @description: Modify and update views related to pincode MOP (Mode of Payment). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updatePincodeMopView/).
259
520
  */
260
- updatePincodeMopView({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdatePincodeMopViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PincodeMOPResult>;
521
+ updatePincodeMopView({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdatePincodeMopViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PincodeMOPresponse>;
522
+ /**
523
+ * @param {ServiceabilityPlatformApplicationValidator.UpdateStoreRulePriorityParam} arg
524
+ * - Arg object
525
+ *
526
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
527
+ * @param {import("../PlatformAPIClient").Options} - Options
528
+ * @returns {Promise<ServiceabilityPlatformModel.RulePriorityResponse>} -
529
+ * Success response
530
+ * @name updateStoreRulePriority
531
+ * @summary: Update Store Rule priority
532
+ * @description: Update Store Rule priority - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateStoreRulePriority/).
533
+ */
534
+ updateStoreRulePriority({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateStoreRulePriorityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.RulePriorityResponse>;
261
535
  /**
262
536
  * @param {ServiceabilityPlatformApplicationValidator.UpdateStoreRulesParam} arg
263
537
  * - Arg object
264
538
  *
265
539
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
266
540
  * @param {import("../PlatformAPIClient").Options} - Options
267
- * @returns {Promise<ServiceabilityPlatformModel.StoreRuleUpdateResultSchema>}
541
+ * @returns {Promise<ServiceabilityPlatformModel.StoreRuleUpdateResponseSchema>}
268
542
  * - Success response
269
543
  *
270
544
  * @name updateStoreRules
271
545
  * @summary: Update store rule
272
546
  * @description: Updates an existing rule within the order routing rules. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateStoreRules/).
273
547
  */
274
- updateStoreRules({ ruleUid, body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateStoreRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.StoreRuleUpdateResultSchema>;
548
+ updateStoreRules({ ruleUid, body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateStoreRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.StoreRuleUpdateResponseSchema>;
275
549
  /**
276
550
  * @param {ServiceabilityPlatformApplicationValidator.UpdateStoreRulesConfigParam} arg
277
551
  * - Arg object
@@ -285,6 +559,20 @@ declare class Serviceability {
285
559
  * @description: Updates an existing order routing setup for a single application, which involves updating sorting settings or rule priorities. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateStoreRulesConfig/).
286
560
  */
287
561
  updateStoreRulesConfig({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateStoreRulesConfigParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.StoreRuleConfigData>;
562
+ /**
563
+ * @param {ServiceabilityPlatformApplicationValidator.UpdateZoneParam} arg
564
+ * - Arg object
565
+ *
566
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
567
+ * @param {import("../PlatformAPIClient").Options} - Options
568
+ * @returns {Promise<ServiceabilityPlatformModel.ZoneUpdateSuccessResponse>}
569
+ * - Success response
570
+ *
571
+ * @name updateZone
572
+ * @summary: Update details of a Zone to enable or disable.
573
+ * @description: Enable or Disable a Zone under that application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateZone/).
574
+ */
575
+ updateZone({ zoneId, body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.UpdateZoneParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ZoneUpdateSuccessResponse>;
288
576
  }
289
577
  import ServiceabilityPlatformApplicationValidator = require("./ServiceabilityPlatformApplicationValidator");
290
578
  import ServiceabilityPlatformModel = require("./ServiceabilityPlatformModel");