@gofynd/fdk-client-javascript 1.3.11-beta.7 → 1.4.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 (231) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +1 -1
  4. package/sdk/application/Cart/CartApplicationClient.js +5 -3
  5. package/sdk/application/Cart/CartApplicationModel.d.ts +107 -1
  6. package/sdk/application/Cart/CartApplicationModel.js +74 -0
  7. package/sdk/application/Cart/CartApplicationValidator.d.ts +4 -0
  8. package/sdk/application/Cart/CartApplicationValidator.js +4 -0
  9. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +3 -6
  10. package/sdk/application/Catalog/CatalogApplicationClient.js +7 -20
  11. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2 -2
  12. package/sdk/application/Catalog/CatalogApplicationModel.js +2 -2
  13. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -14
  14. package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -6
  15. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +183 -49
  16. package/sdk/application/Configuration/ConfigurationApplicationModel.js +173 -31
  17. package/sdk/application/Content/ContentApplicationClient.d.ts +36 -0
  18. package/sdk/application/Content/ContentApplicationClient.js +246 -0
  19. package/sdk/application/Content/ContentApplicationModel.d.ts +208 -1
  20. package/sdk/application/Content/ContentApplicationModel.js +252 -0
  21. package/sdk/application/Content/ContentApplicationValidator.d.ts +40 -1
  22. package/sdk/application/Content/ContentApplicationValidator.js +41 -0
  23. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +67 -0
  24. package/sdk/application/Logistic/LogisticApplicationClient.js +547 -0
  25. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +456 -1
  26. package/sdk/application/Logistic/LogisticApplicationModel.js +488 -0
  27. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +211 -1
  28. package/sdk/application/Logistic/LogisticApplicationValidator.js +131 -0
  29. package/sdk/application/Order/OrderApplicationClient.d.ts +3 -3
  30. package/sdk/application/Order/OrderApplicationClient.js +32 -8
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +6 -0
  32. package/sdk/application/Order/OrderApplicationModel.js +6 -0
  33. package/sdk/application/Order/OrderApplicationValidator.d.ts +20 -0
  34. package/sdk/application/Order/OrderApplicationValidator.js +8 -0
  35. package/sdk/application/Payment/PaymentApplicationClient.d.ts +46 -2
  36. package/sdk/application/Payment/PaymentApplicationClient.js +341 -10
  37. package/sdk/application/Payment/PaymentApplicationModel.d.ts +493 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.js +341 -70
  39. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +59 -14
  40. package/sdk/application/Payment/PaymentApplicationValidator.js +64 -10
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +34 -1
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +24 -0
  43. package/sdk/application/Theme/ThemeApplicationClient.d.ts +1 -1
  44. package/sdk/application/Theme/ThemeApplicationClient.js +7 -3
  45. package/sdk/application/Theme/ThemeApplicationModel.d.ts +222 -36
  46. package/sdk/application/Theme/ThemeApplicationModel.js +322 -26
  47. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +10 -0
  48. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -0
  49. package/sdk/application/User/UserApplicationClient.d.ts +33 -0
  50. package/sdk/application/User/UserApplicationClient.js +239 -0
  51. package/sdk/application/User/UserApplicationModel.d.ts +28 -13
  52. package/sdk/application/User/UserApplicationModel.js +36 -12
  53. package/sdk/application/User/UserApplicationValidator.d.ts +34 -1
  54. package/sdk/application/User/UserApplicationValidator.js +36 -0
  55. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +3 -15
  56. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +2 -14
  57. package/sdk/partner/Lead/LeadPartnerClient.d.ts +125 -0
  58. package/sdk/partner/Lead/LeadPartnerClient.js +785 -0
  59. package/sdk/partner/Lead/LeadPartnerModel.d.ts +1127 -0
  60. package/sdk/partner/Lead/LeadPartnerModel.js +896 -0
  61. package/sdk/partner/Lead/LeadPartnerValidator.d.ts +12 -0
  62. package/sdk/partner/Lead/LeadPartnerValidator.js +67 -0
  63. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +155 -0
  64. package/sdk/partner/Logistics/LogisticsPartnerClient.js +1195 -0
  65. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +372 -0
  66. package/sdk/partner/Logistics/LogisticsPartnerModel.js +442 -0
  67. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +16 -0
  68. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +123 -0
  69. package/sdk/partner/PartnerClient.d.ts +6 -0
  70. package/sdk/partner/PartnerClient.js +9 -0
  71. package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -0
  72. package/sdk/partner/Theme/ThemePartnerClient.js +80 -0
  73. package/sdk/partner/Theme/ThemePartnerModel.d.ts +100 -43
  74. package/sdk/partner/Theme/ThemePartnerModel.js +74 -30
  75. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -0
  76. package/sdk/partner/Theme/ThemePartnerValidator.js +9 -0
  77. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +99 -0
  78. package/sdk/partner/Webhook/WebhookPartnerClient.js +753 -0
  79. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +566 -0
  80. package/sdk/partner/Webhook/WebhookPartnerModel.js +583 -0
  81. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +12 -0
  82. package/sdk/partner/Webhook/WebhookPartnerValidator.js +74 -0
  83. package/sdk/partner/index.d.ts +3 -0
  84. package/sdk/partner/index.js +6 -0
  85. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +2 -2
  86. package/sdk/platform/Billing/BillingPlatformClient.d.ts +11 -1
  87. package/sdk/platform/Billing/BillingPlatformClient.js +110 -3
  88. package/sdk/platform/Billing/BillingPlatformModel.d.ts +67 -1
  89. package/sdk/platform/Billing/BillingPlatformModel.js +78 -0
  90. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +43 -4
  91. package/sdk/platform/Billing/BillingPlatformValidator.js +29 -2
  92. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
  93. package/sdk/platform/Cart/CartPlatformApplicationClient.js +7 -1
  94. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +4 -0
  95. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +4 -0
  96. package/sdk/platform/Cart/CartPlatformModel.d.ts +100 -5
  97. package/sdk/platform/Cart/CartPlatformModel.js +71 -4
  98. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +15 -11
  99. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +52 -21
  100. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +27 -0
  101. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +11 -0
  102. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +26 -4
  103. package/sdk/platform/Catalog/CatalogPlatformClient.js +173 -7
  104. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +304 -1
  105. package/sdk/platform/Catalog/CatalogPlatformModel.js +335 -0
  106. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +31 -3
  107. package/sdk/platform/Catalog/CatalogPlatformValidator.js +27 -2
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +138 -36
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +739 -57
  110. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +128 -3
  111. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +111 -1
  112. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +150 -1
  113. package/sdk/platform/Communication/CommunicationPlatformModel.js +172 -0
  114. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +8 -2
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -4
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +38 -9
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +42 -8
  118. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +14 -0
  119. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +6 -0
  120. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +8 -8
  121. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +4 -4
  122. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +371 -132
  123. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +288 -77
  124. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +2 -2
  125. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +2 -2
  126. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +391 -0
  127. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3641 -1059
  128. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +351 -1
  129. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +410 -0
  130. package/sdk/platform/Content/ContentPlatformClient.d.ts +277 -0
  131. package/sdk/platform/Content/ContentPlatformClient.js +2011 -0
  132. package/sdk/platform/Content/ContentPlatformModel.d.ts +1100 -1
  133. package/sdk/platform/Content/ContentPlatformModel.js +1362 -46
  134. package/sdk/platform/Content/ContentPlatformValidator.d.ts +247 -0
  135. package/sdk/platform/Content/ContentPlatformValidator.js +319 -0
  136. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +2 -2
  137. package/sdk/platform/Discount/DiscountPlatformClient.js +2 -2
  138. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +96 -13
  139. package/sdk/platform/Discount/DiscountPlatformModel.js +104 -12
  140. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +16 -6
  141. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +117 -8
  142. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +55 -4
  143. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +39 -2
  144. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +18 -19
  145. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +20 -18
  146. package/sdk/platform/Finance/FinancePlatformClient.d.ts +33 -0
  147. package/sdk/platform/Finance/FinancePlatformClient.js +240 -0
  148. package/sdk/platform/Finance/FinancePlatformModel.d.ts +151 -5
  149. package/sdk/platform/Finance/FinancePlatformModel.js +190 -4
  150. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +38 -1
  151. package/sdk/platform/Finance/FinancePlatformValidator.js +38 -0
  152. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +38 -28
  153. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +137 -56
  154. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +41 -29
  155. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +33 -21
  156. package/sdk/platform/Lead/LeadPlatformModel.d.ts +12 -3
  157. package/sdk/platform/Lead/LeadPlatformModel.js +16 -2
  158. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +23 -1
  159. package/sdk/platform/Order/OrderPlatformApplicationClient.js +178 -1
  160. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +39 -1
  161. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -0
  162. package/sdk/platform/Order/OrderPlatformClient.d.ts +202 -31
  163. package/sdk/platform/Order/OrderPlatformClient.js +2010 -586
  164. package/sdk/platform/Order/OrderPlatformModel.d.ts +1032 -470
  165. package/sdk/platform/Order/OrderPlatformModel.js +1187 -534
  166. package/sdk/platform/Order/OrderPlatformValidator.d.ts +318 -35
  167. package/sdk/platform/Order/OrderPlatformValidator.js +292 -29
  168. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +119 -13
  169. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +749 -39
  170. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +143 -7
  171. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +133 -6
  172. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +1 -1
  173. package/sdk/platform/Payment/PaymentPlatformClient.js +1 -1
  174. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +996 -134
  175. package/sdk/platform/Payment/PaymentPlatformModel.js +721 -58
  176. package/sdk/platform/PlatformApplicationClient.d.ts +2 -2
  177. package/sdk/platform/PlatformApplicationClient.js +4 -4
  178. package/sdk/platform/PlatformClient.d.ts +4 -2
  179. package/sdk/platform/PlatformClient.js +8 -4
  180. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +142 -66
  181. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +645 -147
  182. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +131 -63
  183. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +126 -47
  184. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +217 -105
  185. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1136 -347
  186. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +912 -313
  187. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1071 -355
  188. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +382 -133
  189. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +266 -102
  190. package/sdk/platform/Theme/ThemePlatformClient.d.ts +11 -1
  191. package/sdk/platform/Theme/ThemePlatformClient.js +87 -3
  192. package/sdk/platform/Theme/ThemePlatformModel.d.ts +333 -47
  193. package/sdk/platform/Theme/ThemePlatformModel.js +395 -35
  194. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +28 -4
  195. package/sdk/platform/Theme/ThemePlatformValidator.js +21 -2
  196. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +116 -1
  197. package/sdk/platform/User/UserPlatformApplicationClient.js +931 -85
  198. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +224 -7
  199. package/sdk/platform/User/UserPlatformApplicationValidator.js +173 -5
  200. package/sdk/platform/User/UserPlatformModel.d.ts +344 -7
  201. package/sdk/platform/User/UserPlatformModel.js +256 -5
  202. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +47 -39
  203. package/sdk/platform/Webhook/WebhookPlatformClient.js +63 -61
  204. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +264 -156
  205. package/sdk/platform/Webhook/WebhookPlatformModel.js +276 -153
  206. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +7 -10
  207. package/sdk/platform/Webhook/WebhookPlatformValidator.js +6 -6
  208. package/sdk/platform/index.d.ts +1 -1
  209. package/sdk/platform/index.js +2 -2
  210. package/sdk/public/Billing/BillingPublicClient.d.ts +23 -0
  211. package/sdk/public/Billing/BillingPublicClient.js +116 -0
  212. package/sdk/public/Billing/BillingPublicModel.d.ts +92 -0
  213. package/sdk/public/Billing/BillingPublicModel.js +96 -0
  214. package/sdk/public/Billing/BillingPublicValidator.d.ts +18 -0
  215. package/sdk/public/Billing/BillingPublicValidator.js +19 -0
  216. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  217. package/sdk/public/Content/ContentPublicClient.js +114 -0
  218. package/sdk/public/Content/ContentPublicModel.d.ts +53 -0
  219. package/sdk/public/Content/ContentPublicModel.js +60 -0
  220. package/sdk/public/Content/ContentPublicValidator.d.ts +18 -0
  221. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  222. package/sdk/public/PublicClient.d.ts +4 -0
  223. package/sdk/public/PublicClient.js +8 -0
  224. package/sdk/public/Webhook/WebhookPublicClient.d.ts +33 -0
  225. package/sdk/public/Webhook/WebhookPublicClient.js +242 -0
  226. package/sdk/public/Webhook/WebhookPublicModel.d.ts +147 -1
  227. package/sdk/public/Webhook/WebhookPublicModel.js +177 -1
  228. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +23 -1
  229. package/sdk/public/Webhook/WebhookPublicValidator.js +31 -0
  230. package/sdk/public/index.d.ts +2 -0
  231. package/sdk/public/index.js +4 -0
@@ -2,14 +2,77 @@ export = Serviceability;
2
2
  declare class Serviceability {
3
3
  constructor(config: any);
4
4
  config: any;
5
+ /**
6
+ * @param {ServiceabilityPlatformValidator.BulkServiceabilityParam} arg - Arg object
7
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
8
+ * @param {import("../PlatformAPIClient").Options} - Options
9
+ * @returns {Promise<ServiceabilityPlatformModel.BulkRegionResponseItemData>}
10
+ * - Success response
11
+ *
12
+ * @name bulkServiceability
13
+ * @summary: Serviceability Import or Export
14
+ * @description: Serviceability Import or Export - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/bulkServiceability/).
15
+ */
16
+ bulkServiceability({ extensionId, schemeId, body, requestHeaders }?: ServiceabilityPlatformValidator.BulkServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionResponseItemData>;
17
+ /**
18
+ * @param {ServiceabilityPlatformValidator.BulkTatParam} arg - Arg object
19
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
20
+ * @param {import("../PlatformAPIClient").Options} - Options
21
+ * @returns {Promise<ServiceabilityPlatformModel.BulkRegionResponseItemData>}
22
+ * - Success response
23
+ *
24
+ * @name bulkTat
25
+ * @summary: Region TAT Import or Export
26
+ * @description: Region TAT Import or Export - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/bulkTat/).
27
+ */
28
+ bulkTat({ extensionId, schemeId, body, requestHeaders }?: ServiceabilityPlatformValidator.BulkTatParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionResponseItemData>;
29
+ /**
30
+ * @param {ServiceabilityPlatformValidator.CreateCourierPartnerAccountParam} arg
31
+ * - Arg object
32
+ *
33
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
34
+ * @param {import("../PlatformAPIClient").Options} - Options
35
+ * @returns {Promise<ServiceabilityPlatformModel.CourierAccount>} - Success response
36
+ * @name createCourierPartnerAccount
37
+ * @summary: Creation of Courier Account
38
+ * @description: This API Creates a new Courier Account - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createCourierPartnerAccount/).
39
+ */
40
+ createCourierPartnerAccount({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierAccount>;
41
+ /**
42
+ * @param {ServiceabilityPlatformValidator.CreatePackageMaterialParam} arg
43
+ * - Arg object
44
+ *
45
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
46
+ * @param {import("../PlatformAPIClient").Options} - Options
47
+ * @returns {Promise<ServiceabilityPlatformModel.PackageMaterialResponse>}
48
+ * - Success response
49
+ *
50
+ * @name createPackageMaterial
51
+ * @summary: Upsert of PackageMaterial in database.
52
+ * @description: This API returns response of upsert of PackageMaterial in mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createPackageMaterial/).
53
+ */
54
+ createPackageMaterial({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreatePackageMaterialParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialResponse>;
55
+ /**
56
+ * @param {ServiceabilityPlatformValidator.CreatePackageMaterialRuleParam} arg
57
+ * - Arg object
58
+ *
59
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
60
+ * @param {import("../PlatformAPIClient").Options} - Options
61
+ * @returns {Promise<ServiceabilityPlatformModel.PackageRuleResponse>} -
62
+ * Success response
63
+ * @name createPackageMaterialRule
64
+ * @summary: Upsert of Package Material Rule in database.
65
+ * @description: This API returns response of upsert of Package Material Rule in mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createPackageMaterialRule/).
66
+ */
67
+ createPackageMaterialRule({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreatePackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageRuleResponse>;
5
68
  /**
6
69
  * @param {ServiceabilityPlatformValidator.CreateZoneParam} arg - Arg object
7
70
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
8
71
  * @param {import("../PlatformAPIClient").Options} - Options
9
72
  * @returns {Promise<ServiceabilityPlatformModel.ZoneResponse>} - Success response
10
73
  * @name createZone
11
- * @summary: Creation of a new zone
12
- * @description: This API allows you to create a new zone with the specified information. A zone enables serviceability based on given pincodes or regions. By creating a zone and including specific pincodes or regions, you can ensure that the stores associated with the zone are serviceable for those added pincodes or regions. This functionality is particularly useful when you need to ensure serviceability for multiple pincodes or regions by grouping them into a single zone. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createZone/).
74
+ * @summary: Creates a new Zone
75
+ * @description: Creates a new zone with the specified mapping. A zone enables serviceability based on given regions. By creating a zone and including specific regions, you can ensure that the stores associated with the zone are serviceable for those added regions. This functionality is particularly useful when you need to ensure serviceability for multiple regions by grouping them into a single zone. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createZone/).
13
76
  */
14
77
  createZone({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreateZoneParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ZoneResponse>;
15
78
  /**
@@ -24,85 +87,68 @@ declare class Serviceability {
24
87
  */
25
88
  getAllStores({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetStoresViewResponse>;
26
89
  /**
27
- * @param {ServiceabilityPlatformValidator.GetCompanyStoreViewParam} arg - Arg object
28
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
29
- * @param {import("../PlatformAPIClient").Options} - Options
30
- * @returns {Promise<ServiceabilityPlatformModel.CompanyStoreView_Response>}
31
- * - Success response
90
+ * @param {ServiceabilityPlatformValidator.GetBulkServiceabilityParam} arg
91
+ * - Arg object
32
92
  *
33
- * @name getCompanyStoreView
34
- * @summary: Company Store View of application.
35
- * @description: This API returns Company Store View of the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCompanyStoreView/).
36
- */
37
- getCompanyStoreView({ pageNumber, pageSize, requestHeaders }?: ServiceabilityPlatformValidator.GetCompanyStoreViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyStoreView_Response>;
38
- /**
39
- * @param {ServiceabilityPlatformValidator.GetDpAccountParam} arg - Arg object
40
93
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
41
94
  * @param {import("../PlatformAPIClient").Options} - Options
42
- * @returns {Promise<ServiceabilityPlatformModel.CompanyDpAccountListResponse>}
43
- * - Success response
44
- *
45
- * @name getDpAccount
46
- * @summary: Getting DpAccount of a company from database.
47
- * @description: This API returns response DpAccount of a company from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getDpAccount/).
95
+ * @returns {Promise<ServiceabilityPlatformModel.BulkRegionResponse>} -
96
+ * Success response
97
+ * @name getBulkServiceability
98
+ * @summary: Get Region Serviceability Bulk History
99
+ * @description: Get Region Serviceability Bulk History - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getBulkServiceability/).
48
100
  */
49
- getDpAccount({ pageNumber, pageSize, stage, paymentMode, transportType, requestHeaders, }?: ServiceabilityPlatformValidator.GetDpAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyDpAccountListResponse>;
101
+ getBulkServiceability({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: ServiceabilityPlatformValidator.GetBulkServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionResponse>;
50
102
  /**
51
- * @param {ServiceabilityPlatformValidator.GetDpCompanyRulesParam} arg - Arg object
103
+ * @param {ServiceabilityPlatformValidator.GetBulkTatParam} arg - Arg object
52
104
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
53
105
  * @param {import("../PlatformAPIClient").Options} - Options
54
- * @returns {Promise<ServiceabilityPlatformModel.DPCompanyRuleResponse>} -
106
+ * @returns {Promise<ServiceabilityPlatformModel.BulkRegionResponse>} -
55
107
  * Success response
56
- * @name getDpCompanyRules
57
- * @summary: Get All DpCompanyRules applied to company from database.
58
- * @description: This API returns response of all DpCompanyRules from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getDpCompanyRules/).
108
+ * @name getBulkTat
109
+ * @summary: Get region tat bulk history
110
+ * @description: Get region tat bulk history - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getBulkTat/).
59
111
  */
60
- getDpCompanyRules({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.DPCompanyRuleResponse>;
112
+ getBulkTat({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: ServiceabilityPlatformValidator.GetBulkTatParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionResponse>;
61
113
  /**
62
- * @param {ServiceabilityPlatformValidator.GetDpRuleInsertParam} arg - Arg object
114
+ * @param {ServiceabilityPlatformValidator.GetCompanyConfigurationParam} arg
115
+ * - Arg object
116
+ *
63
117
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
64
118
  * @param {import("../PlatformAPIClient").Options} - Options
65
- * @returns {Promise<ServiceabilityPlatformModel.DpMultipleRuleSuccessResponse>}
66
- * - Success response
67
- *
68
- * @name getDpRuleInsert
69
- * @summary: Fetching of DpRules from database.
70
- * @description: This API returns response of DpRules from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getDpRuleInsert/).
119
+ * @returns {Promise<ServiceabilityPlatformModel.CompanyConfig>} - Success response
120
+ * @name getCompanyConfiguration
121
+ * @summary: Get All Courier Rules applied to company.
122
+ * @description: This API returns all Courier Rules applied for company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCompanyConfiguration/).
71
123
  */
72
- getDpRuleInsert({ pageNumber, pageSize, requestHeaders }?: ServiceabilityPlatformValidator.GetDpRuleInsertParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.DpMultipleRuleSuccessResponse>;
124
+ getCompanyConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyConfig>;
73
125
  /**
74
- * @param {ServiceabilityPlatformValidator.GetDpRulesParam} arg - Arg object
126
+ * @param {ServiceabilityPlatformValidator.GetCourierPartnerAccountParam} arg
127
+ * - Arg object
128
+ *
75
129
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
76
130
  * @param {import("../PlatformAPIClient").Options} - Options
77
- * @returns {Promise<ServiceabilityPlatformModel.DpRuleSuccessResponse>} -
131
+ * @returns {Promise<ServiceabilityPlatformModel.CourierAccountResponse>} -
78
132
  * Success response
79
- * @name getDpRules
80
- * @summary: Fetching of DpRules from database.
81
- * @description: This API returns response of DpRules from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getDpRules/).
133
+ * @name getCourierPartnerAccount
134
+ * @summary: Getting Courier Account of a company from database.
135
+ * @description: This API returns response DpAccount of a company from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartnerAccount/).
82
136
  */
83
- getDpRules({ ruleUid, requestHeaders }?: ServiceabilityPlatformValidator.GetDpRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.DpRuleSuccessResponse>;
137
+ getCourierPartnerAccount({ accountId, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierAccountResponse>;
84
138
  /**
85
- * @param {ServiceabilityPlatformValidator.GetEntityRegionViewParam} arg - Arg object
139
+ * @param {ServiceabilityPlatformValidator.GetCourierPartnerAccountsParam} arg
140
+ * - Arg object
141
+ *
86
142
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
87
143
  * @param {import("../PlatformAPIClient").Options} - Options
88
- * @returns {Promise<ServiceabilityPlatformModel.EntityRegionView_Response>}
144
+ * @returns {Promise<ServiceabilityPlatformModel.CompanyCourierPartnerAccountListResponse>}
89
145
  * - Success response
90
146
  *
91
- * @name getEntityRegionView
92
- * @summary: Get country and state list
93
- * @description: This API returns response for Entity Region View. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getEntityRegionView/).
94
- */
95
- getEntityRegionView({ body, requestHeaders }?: ServiceabilityPlatformValidator.GetEntityRegionViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.EntityRegionView_Response>;
96
- /**
97
- * @param {ServiceabilityPlatformValidator.GetListViewParam} arg - Arg object
98
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
99
- * @param {import("../PlatformAPIClient").Options} - Options
100
- * @returns {Promise<ServiceabilityPlatformModel.ListViewResponse>} - Success response
101
- * @name getListView
102
- * @summary: Zone List of application.
103
- * @description: This API returns Zone List View of the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getListView/).
147
+ * @name getCourierPartnerAccounts
148
+ * @summary: Getting Courier Account list of a company.
149
+ * @description: This API returns Courier Account of a company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartnerAccounts/).
104
150
  */
105
- getListView({ pageNumber, pageSize, name, isActive, channelIds, q, requestHeaders }?: ServiceabilityPlatformValidator.GetListViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ListViewResponse>;
151
+ getCourierPartnerAccounts({ pageNo, pageSize, stage, paymentMode, transportType, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerAccountsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyCourierPartnerAccountListResponse>;
106
152
  /**
107
153
  * @param {ServiceabilityPlatformValidator.GetOptimalLocationsParam} arg - Arg object
108
154
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -115,97 +161,163 @@ declare class Serviceability {
115
161
  */
116
162
  getOptimalLocations({ body, requestHeaders }?: ServiceabilityPlatformValidator.GetOptimalLocationsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ReAssignStoreResponse>;
117
163
  /**
118
- * @param {ServiceabilityPlatformValidator.GetStoreParam} arg - Arg object
164
+ * @param {ServiceabilityPlatformValidator.GetPackageMaterialListParam} arg
165
+ * - Arg object
166
+ *
119
167
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
120
168
  * @param {import("../PlatformAPIClient").Options} - Options
121
- * @returns {Promise<ServiceabilityPlatformModel.GetStoresViewResponse>} -
169
+ * @returns {Promise<ServiceabilityPlatformModel.PackageMaterialList>} -
122
170
  * Success response
123
- * @name getStore
124
- * @summary: GET stores data
125
- * @description: This API returns stores data. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getStore/).
171
+ * @name getPackageMaterialList
172
+ * @summary: Fetching of PackageMaterials from database.
173
+ * @description: This API returns response of PackageMaterials from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getPackageMaterialList/).
174
+ */
175
+ getPackageMaterialList({ pageNo, pageSize, q, size, packageType, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialListParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialList>;
176
+ /**
177
+ * @param {ServiceabilityPlatformValidator.GetPackageMaterialRuleParam} arg
178
+ * - Arg object
179
+ *
180
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
181
+ * @param {import("../PlatformAPIClient").Options} - Options
182
+ * @returns {Promise<ServiceabilityPlatformModel.PackageRuleResponse>} -
183
+ * Success response
184
+ * @name getPackageMaterialRule
185
+ * @summary: Fetching of Package Material from database.
186
+ * @description: This API returns response of Package Material from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getPackageMaterialRule/).
187
+ */
188
+ getPackageMaterialRule({ ruleId, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageRuleResponse>;
189
+ /**
190
+ * @param {ServiceabilityPlatformValidator.GetPackageMaterialRulesParam} arg
191
+ * - Arg object
192
+ *
193
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
194
+ * @param {import("../PlatformAPIClient").Options} - Options
195
+ * @returns {Promise<ServiceabilityPlatformModel.PackageMaterialRuleList>}
196
+ * - Success response
197
+ *
198
+ * @name getPackageMaterialRules
199
+ * @summary: Fetching of Package Material Rules from database.
200
+ * @description: This API returns response of Package Materials Rules from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getPackageMaterialRules/).
126
201
  */
127
- getStore({ storeUid, requestHeaders }?: ServiceabilityPlatformValidator.GetStoreParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetStoresViewResponse>;
202
+ getPackageMaterialRules({ pageNo, pageSize, isActive, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialRuleList>;
128
203
  /**
129
- * @param {ServiceabilityPlatformValidator.GetZoneDataViewParam} arg - Arg object
204
+ * @param {ServiceabilityPlatformValidator.GetPackageMaterialsParam} arg - Arg object
130
205
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
131
206
  * @param {import("../PlatformAPIClient").Options} - Options
132
- * @returns {Promise<ServiceabilityPlatformModel.GetSingleZoneDataViewResponse>}
207
+ * @returns {Promise<ServiceabilityPlatformModel.PackageMaterialResponse>}
133
208
  * - Success response
134
209
  *
135
- * @name getZoneDataView
136
- * @summary: Zone Data View of application.
137
- * @description: This API returns Zone Data View of the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZoneDataView/).
210
+ * @name getPackageMaterials
211
+ * @summary: Fetching of Package Material from database.
212
+ * @description: This API returns response of Package Material from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getPackageMaterials/).
213
+ */
214
+ getPackageMaterials({ packageMaterialId, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialResponse>;
215
+ /**
216
+ * @param {ServiceabilityPlatformValidator.GetServiceabilityParam} arg - Arg object
217
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
218
+ * @param {import("../PlatformAPIClient").Options} - Options
219
+ * @returns {Promise<ServiceabilityPlatformModel.ServiceabilityModel>} -
220
+ * Success response
221
+ * @name getServiceability
222
+ * @summary: Get Serviceability of a region
223
+ * @description: Get Serviceability of a region - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getServiceability/).
138
224
  */
139
- getZoneDataView({ zoneId, requestHeaders }?: ServiceabilityPlatformValidator.GetZoneDataViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetSingleZoneDataViewResponse>;
225
+ getServiceability({ extensionId, schemeId, regionId, requestHeaders }?: ServiceabilityPlatformValidator.GetServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ServiceabilityModel>;
140
226
  /**
141
- * @param {ServiceabilityPlatformValidator.GetZoneListViewParam} arg - Arg object
227
+ * @param {ServiceabilityPlatformValidator.GetZoneByIdParam} arg - Arg object
228
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
229
+ * @param {import("../PlatformAPIClient").Options} - Options
230
+ * @returns {Promise<ServiceabilityPlatformModel.GetZoneByIdSchema>} -
231
+ * Success response
232
+ * @name getZoneById
233
+ * @summary: Get details of the Zone
234
+ * @description: Returns the region, application, store mapping and other details in the Zone. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZoneById/).
235
+ */
236
+ getZoneById({ zoneId, requestHeaders }?: ServiceabilityPlatformValidator.GetZoneByIdParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetZoneByIdSchema>;
237
+ /**
238
+ * @param {ServiceabilityPlatformValidator.GetZonesParam} arg - Arg object
142
239
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
143
240
  * @param {import("../PlatformAPIClient").Options} - Options
144
241
  * @returns {Promise<ServiceabilityPlatformModel.ListViewResponse>} - Success response
145
- * @name getZoneListView
146
- * @summary: Zone List of application.
147
- * @description: This API returns Zone List View of the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZoneListView/).
242
+ * @name getZones
243
+ * @summary: Shows zones defined at the company level
244
+ * @description: Return the list of zones that are defined at the company level. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZones/).
148
245
  */
149
- getZoneListView({ pageNumber, pageNo, pageSize, name, isActive, channelIds, q, zoneId, requestHeaders, }?: ServiceabilityPlatformValidator.GetZoneListViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ListViewResponse>;
246
+ getZones({ pageNo, pageSize, isActive, channelId, q, country, state, city, pincode, sector, requestHeaders, }?: ServiceabilityPlatformValidator.GetZonesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ListViewResponse>;
150
247
  /**
151
- * @param {ServiceabilityPlatformValidator.UpdateDpRuleParam} arg - Arg object
248
+ * @param {ServiceabilityPlatformValidator.UpdateCompanyConfigurationParam} arg
249
+ * - Arg object
250
+ *
152
251
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
153
252
  * @param {import("../PlatformAPIClient").Options} - Options
154
- * @returns {Promise<ServiceabilityPlatformModel.DpRuleUpdateSuccessResponse>}
155
- * - Success response
253
+ * @returns {Promise<ServiceabilityPlatformModel.CompanyConfig>} - Success response
254
+ * @name updateCompanyConfiguration
255
+ * @summary: Apply Courier Rule to company.
256
+ * @description: Apply Courier Rule to company with rules priority - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateCompanyConfiguration/).
257
+ */
258
+ updateCompanyConfiguration({ body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCompanyConfigurationParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyConfig>;
259
+ /**
260
+ * @param {ServiceabilityPlatformValidator.UpdateCourierPartnerAccountParam} arg
261
+ * - Arg object
156
262
  *
157
- * @name updateDpRule
158
- * @summary: Updating of DpRules from database.
159
- * @description: This API updates and returns response of DpRules from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateDpRule/).
263
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
264
+ * @param {import("../PlatformAPIClient").Options} - Options
265
+ * @returns {Promise<ServiceabilityPlatformModel.CourierAccountResponse>} -
266
+ * Success response
267
+ * @name updateCourierPartnerAccount
268
+ * @summary: Update Courier Account in database.
269
+ * @description: Updates Courier Account - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateCourierPartnerAccount/).
160
270
  */
161
- updateDpRule({ ruleUid, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateDpRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.DpRuleUpdateSuccessResponse>;
271
+ updateCourierPartnerAccount({ accountId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierAccountResponse>;
162
272
  /**
163
- * @param {ServiceabilityPlatformValidator.UpdateZoneControllerViewParam} arg
273
+ * @param {ServiceabilityPlatformValidator.UpdatePackageMaterialRuleParam} arg
164
274
  * - Arg object
165
275
  *
166
276
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
167
277
  * @param {import("../PlatformAPIClient").Options} - Options
168
- * @returns {Promise<ServiceabilityPlatformModel.ZoneSuccessResponse>} -
278
+ * @returns {Promise<ServiceabilityPlatformModel.PackageRuleResponse>} -
169
279
  * Success response
170
- * @name updateZoneControllerView
171
- * @summary: Updation of zone collections in database.
172
- * @description: This API returns response of updation of zone in mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateZoneControllerView/).
280
+ * @name updatePackageMaterialRule
281
+ * @summary: Fetching of Package Material Rules into database.
282
+ * @description: This API updates Package Material Rules into mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updatePackageMaterialRule/).
173
283
  */
174
- updateZoneControllerView({ zoneId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateZoneControllerViewParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ZoneSuccessResponse>;
284
+ updatePackageMaterialRule({ ruleId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdatePackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageRuleResponse>;
175
285
  /**
176
- * @param {ServiceabilityPlatformValidator.UpsertDpAccountParam} arg - Arg object
286
+ * @param {ServiceabilityPlatformValidator.UpdatePackageMaterialsParam} arg
287
+ * - Arg object
288
+ *
177
289
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
178
290
  * @param {import("../PlatformAPIClient").Options} - Options
179
- * @returns {Promise<ServiceabilityPlatformModel.CompanyDpAccountResponse>}
291
+ * @returns {Promise<ServiceabilityPlatformModel.PackageMaterialResponse>}
180
292
  * - Success response
181
293
  *
182
- * @name upsertDpAccount
183
- * @summary: Upsertion of DpAccount in database.
184
- * @description: This API returns response of upsertion of DpAccount in mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/upsertDpAccount/).
294
+ * @name updatePackageMaterials
295
+ * @summary: Update Package Material to database.
296
+ * @description: This API updates Package Materials from into mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updatePackageMaterials/).
185
297
  */
186
- upsertDpAccount({ body, requestHeaders }?: ServiceabilityPlatformValidator.UpsertDpAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyDpAccountResponse>;
298
+ updatePackageMaterials({ packageMaterialId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdatePackageMaterialsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialResponse>;
187
299
  /**
188
- * @param {ServiceabilityPlatformValidator.UpsertDpCompanyRulesParam} arg - Arg object
300
+ * @param {ServiceabilityPlatformValidator.UpdateServiceabilityParam} arg - Arg object
189
301
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
190
302
  * @param {import("../PlatformAPIClient").Options} - Options
191
- * @returns {Promise<ServiceabilityPlatformModel.DPCompanyRuleResponse>} -
303
+ * @returns {Promise<ServiceabilityPlatformModel.ServiceabilityModel>} -
192
304
  * Success response
193
- * @name upsertDpCompanyRules
194
- * @summary: Upsert of DpCompanyRules in database.
195
- * @description: This API returns response of upsert of DpCompanyRules in mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/upsertDpCompanyRules/).
305
+ * @name updateServiceability
306
+ * @summary: Serviceability Update for a region
307
+ * @description: Serviceability Update for a region - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateServiceability/).
196
308
  */
197
- upsertDpCompanyRules({ body, requestHeaders }?: ServiceabilityPlatformValidator.UpsertDpCompanyRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.DPCompanyRuleResponse>;
309
+ updateServiceability({ extensionId, schemeId, regionId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ServiceabilityModel>;
198
310
  /**
199
- * @param {ServiceabilityPlatformValidator.UpsertDpRulesParam} arg - Arg object
311
+ * @param {ServiceabilityPlatformValidator.UpdateZoneByIdParam} arg - Arg object
200
312
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
201
313
  * @param {import("../PlatformAPIClient").Options} - Options
202
- * @returns {Promise<ServiceabilityPlatformModel.DpRuleSuccessResponse>} -
314
+ * @returns {Promise<ServiceabilityPlatformModel.ZoneSuccessResponse>} -
203
315
  * Success response
204
- * @name upsertDpRules
205
- * @summary: Upsert of DpRules in database.
206
- * @description: This API returns response of upsert of DpRules in mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/upsertDpRules/).
316
+ * @name updateZoneById
317
+ * @summary: Update details of a Zone
318
+ * @description: Updates the region, application, store mapping and other details in the Zone. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateZoneById/).
207
319
  */
208
- upsertDpRules({ body, requestHeaders }?: ServiceabilityPlatformValidator.UpsertDpRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.DpRuleSuccessResponse>;
320
+ updateZoneById({ zoneId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateZoneByIdParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ZoneSuccessResponse>;
209
321
  }
210
322
  import ServiceabilityPlatformValidator = require("./ServiceabilityPlatformValidator");
211
323
  import ServiceabilityPlatformModel = require("./ServiceabilityPlatformModel");