@gofynd/fdk-client-javascript 1.6.4 → 3.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationClient.d.ts +0 -2
- package/sdk/application/ApplicationClient.js +0 -2
- package/sdk/application/Cart/CartApplicationClient.d.ts +100 -80
- package/sdk/application/Cart/CartApplicationClient.js +257 -126
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +61 -21
- package/sdk/application/Content/ContentApplicationClient.js +250 -36
- package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
- package/sdk/application/Lead/LeadApplicationClient.js +3 -3
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +106 -57
- package/sdk/application/Logistic/LogisticApplicationClient.js +326 -208
- package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
- package/sdk/application/Order/OrderApplicationClient.js +140 -21
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
- package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
- package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
- package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
- package/sdk/application/User/UserApplicationClient.d.ts +13 -23
- package/sdk/application/User/UserApplicationClient.js +9 -57
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +0 -10
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +0 -75
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +1 -54
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +0 -43
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +0 -6
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
- package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
- package/sdk/partner/PartnerClient.d.ts +6 -0
- package/sdk/partner/PartnerClient.js +9 -0
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
- package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
- package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
- package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
- package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
- package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
- package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +3 -0
- package/sdk/partner/index.js +6 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
- package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
- package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +251 -172
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +639 -521
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3150 -4468
- package/sdk/platform/Cart/CartPlatformModel.js +2858 -1867
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +976 -380
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6475 -2015
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1083 -162
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +884 -80
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +325 -568
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1162 -1562
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6008 -7688
- package/sdk/platform/Catalog/CatalogPlatformModel.js +9522 -6892
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +234 -227
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +183 -177
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
- package/sdk/platform/Common/CommonPlatformClient.js +5 -6
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -238
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +876 -588
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
- package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +506 -270
- package/sdk/platform/Communication/CommunicationPlatformModel.js +611 -313
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +78 -77
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +97 -91
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +31 -20
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1206 -459
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1011 -320
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +255 -140
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1095 -464
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
- package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
- package/sdk/platform/Content/ContentPlatformClient.js +459 -379
- package/sdk/platform/Content/ContentPlatformModel.d.ts +871 -1315
- package/sdk/platform/Content/ContentPlatformModel.js +940 -599
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
- package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
- package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
- package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
- package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
- package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
- package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
- package/sdk/platform/Order/OrderPlatformClient.d.ts +486 -277
- package/sdk/platform/Order/OrderPlatformClient.js +1491 -938
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4560 -8636
- package/sdk/platform/Order/OrderPlatformModel.js +3604 -4056
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
- package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
- package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3531 -1292
- package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1504
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
- package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
- package/sdk/platform/PlatformClient.d.ts +2 -0
- package/sdk/platform/PlatformClient.js +4 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2188 -302
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +394 -54
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +342 -37
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +150 -212
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +589 -1238
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3581 -2960
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3730 -1779
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +230 -382
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +164 -287
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
- package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
- package/sdk/platform/Share/SharePlatformModel.d.ts +11 -50
- package/sdk/platform/Share/SharePlatformModel.js +5 -43
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +36 -16
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +201 -58
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +28 -17
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +33 -16
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
- package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
- package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
- package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
- package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
- package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
- package/sdk/platform/User/UserPlatformModel.js +209 -216
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
- package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
- package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
- package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
- package/sdk/public/Content/ContentPublicClient.js +183 -0
- package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
- package/sdk/public/Content/ContentPublicModel.js +47 -1
- package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
- package/sdk/public/Content/ContentPublicValidator.js +19 -0
- package/sdk/public/PublicClient.d.ts +0 -2
- package/sdk/public/PublicClient.js +0 -4
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
- package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +0 -1
- package/sdk/public/index.js +0 -2
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
- package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
- package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
- package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
- 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.
|
|
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.
|
|
57
|
+
createCourierPartnerRule({ body, requestHeaders }?: ServiceabilityPlatformApplicationValidator.CreateCourierPartnerRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRuleResponseSchema>;
|
|
20
58
|
/**
|
|
21
|
-
* @param {ServiceabilityPlatformApplicationValidator.
|
|
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.
|
|
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.
|
|
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.
|
|
53
|
-
* Success response
|
|
168
|
+
* @returns {Promise<ServiceabilityPlatformModel.ApplicationConfigGetResponse>}
|
|
169
|
+
* - Success response
|
|
170
|
+
*
|
|
54
171
|
* @name getApplicationConfiguration
|
|
55
172
|
* @summary: Get delivery configuration
|
|
56
|
-
* @description:
|
|
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.
|
|
175
|
+
getApplicationConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ApplicationConfigGetResponse>;
|
|
59
176
|
/**
|
|
60
|
-
* @param {ServiceabilityPlatformApplicationValidator.
|
|
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.
|
|
66
|
-
*
|
|
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
|
-
* @
|
|
69
|
-
* @
|
|
70
|
-
* @
|
|
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
|
-
|
|
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.
|
|
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({
|
|
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.
|
|
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.
|
|
256
|
+
getCourierPartnerRules({ pageNo, pageSize, status, requestHeaders }?: ServiceabilityPlatformApplicationValidator.GetCourierPartnerRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerRulesListResponse>;
|
|
101
257
|
/**
|
|
102
|
-
* @param {ServiceabilityPlatformApplicationValidator.
|
|
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.
|
|
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
|
|
111
|
-
* @summary:
|
|
112
|
-
* @description: Get
|
|
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
|
-
|
|
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.
|
|
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.
|
|
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, accessLevel, status, 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.
|
|
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.
|
|
392
|
+
* @returns {Promise<ServiceabilityPlatformModel.ApplicationConfigPatchResponse>}
|
|
161
393
|
* - Success response
|
|
162
394
|
*
|
|
163
|
-
* @name
|
|
164
|
-
* @summary:
|
|
165
|
-
* @description:
|
|
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
|
-
|
|
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.
|
|
175
|
-
* Success response
|
|
406
|
+
* @returns {Promise<ServiceabilityPlatformModel.ApplicationConfigPutResponse>}
|
|
407
|
+
* - Success response
|
|
408
|
+
*
|
|
176
409
|
* @name updateApplicationConfiguration
|
|
177
|
-
* @summary:
|
|
178
|
-
* @description:
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
|
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
|
-
|
|
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.
|
|
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,
|
|
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.
|
|
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.
|
|
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.
|
|
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,
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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");
|