@gofynd/fdk-client-javascript 1.4.15-beta.14 → 1.4.15-beta.15
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 +23 -26
- package/package.json +5 -1
- package/sdk/application/ApplicationClient.d.ts +5 -6
- package/sdk/application/ApplicationClient.js +24 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
- package/sdk/application/Cart/CartApplicationClient.js +444 -76
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
- package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
- package/sdk/application/Content/ContentApplicationClient.js +274 -111
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
- package/sdk/application/Lead/LeadApplicationClient.js +6 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
- package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
- package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
- package/sdk/application/Order/OrderApplicationClient.js +217 -17
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
- package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
- package/sdk/application/User/UserApplicationClient.d.ts +103 -53
- package/sdk/application/User/UserApplicationClient.js +308 -49
- package/sdk/common/AxiosHelper.js +11 -4
- package/sdk/common/Constant.d.ts +27 -4
- package/sdk/common/Constant.js +33 -6
- package/sdk/common/utils.d.ts +10 -0
- package/sdk/common/utils.js +24 -3
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
- package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
- package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
- package/sdk/partner/PartnerClient.d.ts +5 -2
- package/sdk/partner/PartnerClient.js +21 -7
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
- package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
- package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
- package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
- package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +15 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +266 -203
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
- package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
- package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9573 -2678
- package/sdk/platform/Catalog/CatalogPlatformModel.js +5033 -1973
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
- package/sdk/platform/Common/CommonPlatformModel.js +25 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
- package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
- package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
- package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
- package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
- package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
- package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
- package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
- package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
- package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
- package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
- package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
- package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
- package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
- package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
- package/sdk/platform/PlatformApplicationClient.js +0 -4
- package/sdk/platform/PlatformClient.d.ts +5 -4
- package/sdk/platform/PlatformClient.js +32 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
- package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
- package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
- package/sdk/platform/Share/SharePlatformModel.js +31 -6
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
- package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
- package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
- package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
- package/sdk/platform/User/UserPlatformModel.js +607 -46
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
- package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
- package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -2
- package/sdk/platform/index.js +0 -4
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
- package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
- package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
- package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +5 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
- package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
- package/sdk/public/Content/ContentPublicClient.js +1067 -17
- package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
- package/sdk/public/Content/ContentPublicModel.js +751 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
- package/sdk/public/Content/ContentPublicValidator.js +119 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +1 -1
- package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
- package/sdk/public/Partner/PartnerPublicModel.js +81 -71
- package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
- package/sdk/public/PublicClient.d.ts +5 -2
- package/sdk/public/PublicClient.js +16 -6
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +81 -61
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -0
- package/sdk/public/index.js +2 -0
- package/utility.d.ts +3 -0
- package/utility.js +7 -0
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
- package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
- package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
- package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
|
@@ -6,111 +6,103 @@ declare class Serviceability {
|
|
|
6
6
|
* @param {ServiceabilityPlatformValidator.BulkServiceabilityParam} arg - Arg object
|
|
7
7
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
8
8
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
9
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
9
|
+
* @returns {Promise<ServiceabilityPlatformModel.BulkRegionResultItemData>}
|
|
10
10
|
* - Success response
|
|
11
11
|
*
|
|
12
12
|
* @name bulkServiceability
|
|
13
13
|
* @summary: Bulk update serviceability of localities
|
|
14
|
-
* @description: Bulk operations involve either new serviceability settings or updating existing ones in large quantities. - Check out [method documentation](https://
|
|
14
|
+
* @description: Bulk operations involve either new serviceability settings or updating existing ones in large quantities. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/bulkServiceability/).
|
|
15
15
|
*/
|
|
16
|
-
bulkServiceability({ extensionId, schemeId, body, requestHeaders }?: ServiceabilityPlatformValidator.BulkServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
16
|
+
bulkServiceability({ extensionId, schemeId, body, requestHeaders }?: ServiceabilityPlatformValidator.BulkServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionResultItemData>;
|
|
17
17
|
/**
|
|
18
18
|
* @param {ServiceabilityPlatformValidator.BulkTatParam} arg - Arg object
|
|
19
19
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
20
20
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
21
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
21
|
+
* @returns {Promise<ServiceabilityPlatformModel.BulkRegionResultItemData>}
|
|
22
22
|
* - Success response
|
|
23
23
|
*
|
|
24
24
|
* @name bulkTat
|
|
25
25
|
* @summary: Locality TAT import or export
|
|
26
26
|
* @description: Updates locality wise TAT(Turn Around Time) for particular courier scheme using CSV file.
|
|
27
|
-
* Export locality wise CSV files. - Check out [method documentation](https://
|
|
27
|
+
* Export locality wise CSV files. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/bulkTat/).
|
|
28
28
|
*/
|
|
29
|
-
bulkTat({ extensionId, schemeId, body, requestHeaders }?: ServiceabilityPlatformValidator.BulkTatParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
29
|
+
bulkTat({ extensionId, schemeId, body, requestHeaders }?: ServiceabilityPlatformValidator.BulkTatParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionResultItemData>;
|
|
30
30
|
/**
|
|
31
31
|
* @param {ServiceabilityPlatformValidator.CreateCourierPartnerAccountParam} arg
|
|
32
32
|
* - Arg object
|
|
33
33
|
*
|
|
34
34
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
35
35
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
36
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
36
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierAccountDetailsBody>}
|
|
37
|
+
* - Success response
|
|
38
|
+
*
|
|
37
39
|
* @name createCourierPartnerAccount
|
|
38
40
|
* @summary: Create courier account
|
|
39
|
-
* @description:
|
|
41
|
+
* @description: Retrieves a list of courier partner accounts. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/createCourierPartnerAccount/).
|
|
40
42
|
*/
|
|
41
|
-
createCourierPartnerAccount({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
43
|
+
createCourierPartnerAccount({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierAccountDetailsBody>;
|
|
42
44
|
/**
|
|
43
|
-
* @param {ServiceabilityPlatformValidator.
|
|
45
|
+
* @param {ServiceabilityPlatformValidator.CreateCourierPartnerSchemeParam} arg
|
|
44
46
|
* - Arg object
|
|
45
47
|
*
|
|
46
48
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
47
49
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
48
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
50
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierPartnerSchemeModelSchema>}
|
|
49
51
|
* - Success response
|
|
50
52
|
*
|
|
51
|
-
* @name
|
|
52
|
-
* @summary: Create
|
|
53
|
-
* @description:
|
|
53
|
+
* @name createCourierPartnerScheme
|
|
54
|
+
* @summary: Create Scheme for courier partner extension
|
|
55
|
+
* @description: Create Scheme for courier partner extension - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/createCourierPartnerScheme/).
|
|
54
56
|
*/
|
|
55
|
-
|
|
57
|
+
createCourierPartnerScheme({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreateCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerSchemeModelSchema>;
|
|
56
58
|
/**
|
|
57
|
-
* @param {ServiceabilityPlatformValidator.
|
|
59
|
+
* @param {ServiceabilityPlatformValidator.CreatePackageMaterialParam} arg
|
|
58
60
|
* - Arg object
|
|
59
61
|
*
|
|
60
62
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
61
63
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
62
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
64
|
+
* @returns {Promise<ServiceabilityPlatformModel.PackageMaterialResult>} -
|
|
63
65
|
* Success response
|
|
64
|
-
* @name
|
|
65
|
-
* @summary: Create packaging
|
|
66
|
-
* @description: Creates a packaging
|
|
67
|
-
*/
|
|
68
|
-
createPackageMaterialRule({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreatePackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageRuleResponse>;
|
|
69
|
-
/**
|
|
70
|
-
* @param {ServiceabilityPlatformValidator.CreateZoneParam} arg - Arg object
|
|
71
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
72
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
73
|
-
* @returns {Promise<ServiceabilityPlatformModel.ZoneResponse>} - Success response
|
|
74
|
-
* @name createZone
|
|
75
|
-
* @summary: Create zone
|
|
76
|
-
* @description: Creates a delivery zone. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createZone/).
|
|
66
|
+
* @name createPackageMaterial
|
|
67
|
+
* @summary: Create packaging material
|
|
68
|
+
* @description: Creates a packaging material - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/createPackageMaterial/).
|
|
77
69
|
*/
|
|
78
|
-
|
|
70
|
+
createPackageMaterial({ body, pageNo, requestHeaders }?: ServiceabilityPlatformValidator.CreatePackageMaterialParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialResult>;
|
|
79
71
|
/**
|
|
80
|
-
* @param {ServiceabilityPlatformValidator.
|
|
72
|
+
* @param {ServiceabilityPlatformValidator.CreatePackageMaterialRuleParam} arg
|
|
73
|
+
* - Arg object
|
|
74
|
+
*
|
|
81
75
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
82
76
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
83
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
77
|
+
* @returns {Promise<ServiceabilityPlatformModel.PackageRuleResult>} -
|
|
84
78
|
* Success response
|
|
85
|
-
* @name
|
|
86
|
-
* @summary:
|
|
87
|
-
* @description:
|
|
79
|
+
* @name createPackageMaterialRule
|
|
80
|
+
* @summary: Create packaging rule
|
|
81
|
+
* @description: Creates a packaging rule - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/createPackageMaterialRule/).
|
|
88
82
|
*/
|
|
89
|
-
|
|
83
|
+
createPackageMaterialRule({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreatePackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageRuleResult>;
|
|
90
84
|
/**
|
|
91
85
|
* @param {ServiceabilityPlatformValidator.GetBulkServiceabilityParam} arg
|
|
92
86
|
* - Arg object
|
|
93
87
|
*
|
|
94
88
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
95
89
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
96
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
97
|
-
* Success response
|
|
90
|
+
* @returns {Promise<ServiceabilityPlatformModel.BulkRegionResult>} - Success response
|
|
98
91
|
* @name getBulkServiceability
|
|
99
92
|
* @summary: Bulk update history
|
|
100
|
-
* @description: Retrieves the history of changes made to serviceability settings for a scheme. - Check out [method documentation](https://
|
|
93
|
+
* @description: Retrieves the history of changes made to serviceability settings for a scheme. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getBulkServiceability/).
|
|
101
94
|
*/
|
|
102
|
-
getBulkServiceability({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: ServiceabilityPlatformValidator.GetBulkServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
95
|
+
getBulkServiceability({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: ServiceabilityPlatformValidator.GetBulkServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionResult>;
|
|
103
96
|
/**
|
|
104
97
|
* @param {ServiceabilityPlatformValidator.GetBulkTatParam} arg - Arg object
|
|
105
98
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
106
99
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
107
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
108
|
-
* Success response
|
|
100
|
+
* @returns {Promise<ServiceabilityPlatformModel.BulkRegionResult>} - Success response
|
|
109
101
|
* @name getBulkTat
|
|
110
102
|
* @summary: Locality TAT change history
|
|
111
|
-
* @description: Retrieves the history of changes made to TAT(Turn Around Time) for scheme. - Check out [method documentation](https://
|
|
103
|
+
* @description: Retrieves the history of changes made to TAT(Turn Around Time) for scheme. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getBulkTat/).
|
|
112
104
|
*/
|
|
113
|
-
getBulkTat({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: ServiceabilityPlatformValidator.GetBulkTatParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
105
|
+
getBulkTat({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: ServiceabilityPlatformValidator.GetBulkTatParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionResult>;
|
|
114
106
|
/**
|
|
115
107
|
* @param {ServiceabilityPlatformValidator.GetCompanyConfigurationParam} arg
|
|
116
108
|
* - Arg object
|
|
@@ -120,132 +112,187 @@ declare class Serviceability {
|
|
|
120
112
|
* @returns {Promise<ServiceabilityPlatformModel.CompanyConfig>} - Success response
|
|
121
113
|
* @name getCompanyConfiguration
|
|
122
114
|
* @summary: Get delivery configuration
|
|
123
|
-
* @description: Retrieves information about the delivery setup for a company - Check out [method documentation](https://
|
|
115
|
+
* @description: Retrieves information about the delivery setup for a company - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getCompanyConfiguration/).
|
|
124
116
|
*/
|
|
125
117
|
getCompanyConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyConfig>;
|
|
118
|
+
/**
|
|
119
|
+
* @param {ServiceabilityPlatformValidator.GetCompanyCourierPartnersListParam} arg
|
|
120
|
+
* - Arg object
|
|
121
|
+
*
|
|
122
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
123
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
124
|
+
* @returns {Promise<ServiceabilityPlatformModel.GenerateShipmentsAndCourierPartnerResult>}
|
|
125
|
+
* - Success response
|
|
126
|
+
*
|
|
127
|
+
* @name getCompanyCourierPartnersList
|
|
128
|
+
* @summary: Get available company courier partners
|
|
129
|
+
* @description: Retrieves a list of courier partners available for shipping based on serviceability criteria, shipment details. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getCompanyCourierPartnersList/).
|
|
130
|
+
*/
|
|
131
|
+
getCompanyCourierPartnersList({ body, requestHeaders }?: ServiceabilityPlatformValidator.GetCompanyCourierPartnersListParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GenerateShipmentsAndCourierPartnerResult>;
|
|
132
|
+
/**
|
|
133
|
+
* @param {ServiceabilityPlatformValidator.GetCountriesParam} arg - Arg object
|
|
134
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
135
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
136
|
+
* @returns {Promise<ServiceabilityPlatformModel.GetCountries>} - Success response
|
|
137
|
+
* @name getCountries
|
|
138
|
+
* @summary: Get all countries and associated data
|
|
139
|
+
* @description: Retrieve a list of countries for logistical purposes. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getCountries/).
|
|
140
|
+
*/
|
|
141
|
+
getCountries({ onboard, pageNo, pageSize, q, hierarchy, requestHeaders }?: ServiceabilityPlatformValidator.GetCountriesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetCountries>;
|
|
126
142
|
/**
|
|
127
143
|
* @param {ServiceabilityPlatformValidator.GetCourierPartnerAccountParam} arg
|
|
128
144
|
* - Arg object
|
|
129
145
|
*
|
|
130
146
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
131
147
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
132
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
148
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierAccountResult>} -
|
|
133
149
|
* Success response
|
|
134
150
|
* @name getCourierPartnerAccount
|
|
135
151
|
* @summary: Get courier account
|
|
136
|
-
* @description: Retrieves a single courier partner account. - Check out [method documentation](https://
|
|
152
|
+
* @description: Retrieves a single courier partner account. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getCourierPartnerAccount/).
|
|
137
153
|
*/
|
|
138
|
-
getCourierPartnerAccount({ accountId, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
154
|
+
getCourierPartnerAccount({ accountId, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierAccountResult>;
|
|
139
155
|
/**
|
|
140
156
|
* @param {ServiceabilityPlatformValidator.GetCourierPartnerAccountsParam} arg
|
|
141
157
|
* - Arg object
|
|
142
158
|
*
|
|
143
159
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
144
160
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
145
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
161
|
+
* @returns {Promise<ServiceabilityPlatformModel.CompanyCourierPartnerAccountListResult>}
|
|
146
162
|
* - Success response
|
|
147
163
|
*
|
|
148
164
|
* @name getCourierPartnerAccounts
|
|
149
165
|
* @summary: List courier accounts
|
|
150
|
-
* @description: Retrieves a list of courier partner accounts. - Check out [method documentation](https://
|
|
166
|
+
* @description: Retrieves a list of courier partner accounts. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getCourierPartnerAccounts/).
|
|
151
167
|
*/
|
|
152
|
-
getCourierPartnerAccounts({ pageNo, pageSize, stage, paymentMode, transportType, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerAccountsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
168
|
+
getCourierPartnerAccounts({ pageNo, pageSize, stage, paymentMode, transportType, accountIds, selfShip, ownAccount, q, requestHeaders, }?: ServiceabilityPlatformValidator.GetCourierPartnerAccountsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyCourierPartnerAccountListResult>;
|
|
153
169
|
/**
|
|
154
|
-
* @param {ServiceabilityPlatformValidator.
|
|
170
|
+
* @param {ServiceabilityPlatformValidator.GetCourierPartnerSchemeParam} arg
|
|
171
|
+
* - Arg object
|
|
172
|
+
*
|
|
155
173
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
156
174
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
157
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
175
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierPartnerSchemeModelSchema>}
|
|
158
176
|
* - Success response
|
|
159
177
|
*
|
|
178
|
+
* @name getCourierPartnerScheme
|
|
179
|
+
* @summary: Get Scheme for courier partner extension by Id
|
|
180
|
+
* @description: Update Scheme for courier partner extension by Id - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getCourierPartnerScheme/).
|
|
181
|
+
*/
|
|
182
|
+
getCourierPartnerScheme({ schemeId, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerSchemeModelSchema>;
|
|
183
|
+
/**
|
|
184
|
+
* @param {ServiceabilityPlatformValidator.GetCourierPartnerSchemesParam} arg
|
|
185
|
+
* - Arg object
|
|
186
|
+
*
|
|
187
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
188
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
189
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierPartnerSchemeList>}
|
|
190
|
+
* - Success response
|
|
191
|
+
*
|
|
192
|
+
* @name getCourierPartnerSchemes
|
|
193
|
+
* @summary: Get created Schemes for courier partner
|
|
194
|
+
* @description: Get created Schemes for courier partner - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getCourierPartnerSchemes/).
|
|
195
|
+
*/
|
|
196
|
+
getCourierPartnerSchemes({ extensionId, schemeType, paymentMode, capabilities, schemeIds, q, requestHeaders, }?: ServiceabilityPlatformValidator.GetCourierPartnerSchemesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerSchemeList>;
|
|
197
|
+
/**
|
|
198
|
+
* @param {ServiceabilityPlatformValidator.GetInstalledCourierPartnerExtensionsParam} arg
|
|
199
|
+
* - Arg object
|
|
200
|
+
*
|
|
201
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
202
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
203
|
+
* @returns {Promise<ServiceabilityPlatformModel.InstallCourierPartnerResponseSchema>}
|
|
204
|
+
* - Success response
|
|
205
|
+
*
|
|
206
|
+
* @name getInstalledCourierPartnerExtensions
|
|
207
|
+
* @summary: Fetching of Package Material Rules from database.
|
|
208
|
+
* @description: This API returns response of Package Materials Rules. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getInstalledCourierPartnerExtensions/).
|
|
209
|
+
*/
|
|
210
|
+
getInstalledCourierPartnerExtensions({ pageNo, pageSize, isInstalled, requestHeaders }?: ServiceabilityPlatformValidator.GetInstalledCourierPartnerExtensionsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.InstallCourierPartnerResponseSchema>;
|
|
211
|
+
/**
|
|
212
|
+
* @param {ServiceabilityPlatformValidator.GetOptimalLocationsParam} arg - Arg object
|
|
213
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
214
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
215
|
+
* @returns {Promise<ServiceabilityPlatformModel.OptimalLocationsResult>} -
|
|
216
|
+
* Success response
|
|
160
217
|
* @name getOptimalLocations
|
|
161
218
|
* @summary: Get selling locations
|
|
162
|
-
* @description: Retrieves a list selling locations which are best suited to fullfil an order for a customer. - Check out [method documentation](https://
|
|
219
|
+
* @description: Retrieves a list selling locations which are best suited to fullfil an order for a customer. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getOptimalLocations/).
|
|
163
220
|
*/
|
|
164
|
-
getOptimalLocations({ body, requestHeaders }?: ServiceabilityPlatformValidator.GetOptimalLocationsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
221
|
+
getOptimalLocations({ body, requestHeaders }?: ServiceabilityPlatformValidator.GetOptimalLocationsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.OptimalLocationsResult>;
|
|
165
222
|
/**
|
|
166
223
|
* @param {ServiceabilityPlatformValidator.GetPackageMaterialListParam} arg
|
|
167
224
|
* - Arg object
|
|
168
225
|
*
|
|
169
226
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
170
227
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
171
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
228
|
+
* @returns {Promise<ServiceabilityPlatformModel.PackagesListResult>} -
|
|
172
229
|
* Success response
|
|
173
230
|
* @name getPackageMaterialList
|
|
174
231
|
* @summary: Get packaging materials
|
|
175
|
-
* @description: Retrieves a list of packaging materials - Check out [method documentation](https://
|
|
232
|
+
* @description: Retrieves a list of packaging materials - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getPackageMaterialList/).
|
|
176
233
|
*/
|
|
177
|
-
getPackageMaterialList({ pageNo, pageSize, q, size, packageType, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialListParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
234
|
+
getPackageMaterialList({ pageNo, pageSize, q, size, packageType, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialListParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackagesListResult>;
|
|
178
235
|
/**
|
|
179
236
|
* @param {ServiceabilityPlatformValidator.GetPackageMaterialRuleParam} arg
|
|
180
237
|
* - Arg object
|
|
181
238
|
*
|
|
182
239
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
183
240
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
184
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
241
|
+
* @returns {Promise<ServiceabilityPlatformModel.PackageRuleResult>} -
|
|
185
242
|
* Success response
|
|
186
243
|
* @name getPackageMaterialRule
|
|
187
244
|
* @summary: Get packaging material rule
|
|
188
|
-
* @description: Retrieve packaging rule details. - Check out [method documentation](https://
|
|
245
|
+
* @description: Retrieve packaging rule details. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getPackageMaterialRule/).
|
|
189
246
|
*/
|
|
190
|
-
getPackageMaterialRule({ ruleId, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
191
|
-
/**
|
|
192
|
-
* @param {ServiceabilityPlatformValidator.GetPackageMaterialRulesParam} arg
|
|
193
|
-
* - Arg object
|
|
194
|
-
*
|
|
195
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
196
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
197
|
-
* @returns {Promise<ServiceabilityPlatformModel.PackageMaterialRuleList>}
|
|
198
|
-
* - Success response
|
|
199
|
-
*
|
|
200
|
-
* @name getPackageMaterialRules
|
|
201
|
-
* @summary: Get packaging rules
|
|
202
|
-
* @description: Retrieve packaging rules - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getPackageMaterialRules/).
|
|
203
|
-
*/
|
|
204
|
-
getPackageMaterialRules({ pageNo, pageSize, isActive, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialRulesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialRuleList>;
|
|
247
|
+
getPackageMaterialRule({ ruleId, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageRuleResult>;
|
|
205
248
|
/**
|
|
206
249
|
* @param {ServiceabilityPlatformValidator.GetPackageMaterialsParam} arg - Arg object
|
|
207
250
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
208
251
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
209
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
210
|
-
* - Success response
|
|
211
|
-
*
|
|
252
|
+
* @returns {Promise<ServiceabilityPlatformModel.PackageItem>} - Success response
|
|
212
253
|
* @name getPackageMaterials
|
|
213
254
|
* @summary: Get packaging material
|
|
214
|
-
* @description: Retrieve a single packaging material - Check out [method documentation](https://
|
|
255
|
+
* @description: Retrieve a single packaging material - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getPackageMaterials/).
|
|
215
256
|
*/
|
|
216
|
-
getPackageMaterials({ packageMaterialId, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
257
|
+
getPackageMaterials({ packageMaterialId, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageItem>;
|
|
217
258
|
/**
|
|
218
|
-
* @param {ServiceabilityPlatformValidator.
|
|
259
|
+
* @param {ServiceabilityPlatformValidator.GetSampleFileServiceabilityStatusParam} arg
|
|
260
|
+
* - Arg object
|
|
261
|
+
*
|
|
219
262
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
220
263
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
221
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
222
|
-
* Success response
|
|
223
|
-
*
|
|
224
|
-
* @
|
|
225
|
-
* @
|
|
264
|
+
* @returns {Promise<ServiceabilityPlatformModel.BulkRegionServiceabilityTatResult>}
|
|
265
|
+
* - Success response
|
|
266
|
+
*
|
|
267
|
+
* @name getSampleFileServiceabilityStatus
|
|
268
|
+
* @summary: Get Serviceability TAT sample files generator status
|
|
269
|
+
* @description: Get Serviceability TAT sample file generator status - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getSampleFileServiceabilityStatus/).
|
|
226
270
|
*/
|
|
227
|
-
|
|
271
|
+
getSampleFileServiceabilityStatus({ pageNo, pageSize, batchId, requestHeaders }?: ServiceabilityPlatformValidator.GetSampleFileServiceabilityStatusParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionServiceabilityTatResult>;
|
|
228
272
|
/**
|
|
229
|
-
* @param {ServiceabilityPlatformValidator.
|
|
273
|
+
* @param {ServiceabilityPlatformValidator.GetSelfShipDetailsParam} arg - Arg object
|
|
230
274
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
231
275
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
232
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
233
|
-
*
|
|
234
|
-
* @
|
|
235
|
-
* @
|
|
236
|
-
* @description: Retrieves a single delivery zone. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZoneById/).
|
|
276
|
+
* @returns {Promise<ServiceabilityPlatformModel.SelfshipSchema>} - Success response
|
|
277
|
+
* @name getSelfShipDetails
|
|
278
|
+
* @summary: Get self-ship details
|
|
279
|
+
* @description: Get the self-ship details such as TAT, activation status, and unit for a specified company. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/getSelfShipDetails/).
|
|
237
280
|
*/
|
|
238
|
-
|
|
281
|
+
getSelfShipDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.SelfshipSchema>;
|
|
239
282
|
/**
|
|
240
|
-
* @param {ServiceabilityPlatformValidator.
|
|
283
|
+
* @param {ServiceabilityPlatformValidator.SampleFileServiceabilityParam} arg
|
|
284
|
+
* - Arg object
|
|
285
|
+
*
|
|
241
286
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
242
287
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
243
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
244
|
-
*
|
|
245
|
-
*
|
|
246
|
-
* @
|
|
288
|
+
* @returns {Promise<ServiceabilityPlatformModel.BulkRegionServiceabilityTatResultItemData>}
|
|
289
|
+
* - Success response
|
|
290
|
+
*
|
|
291
|
+
* @name sampleFileServiceability
|
|
292
|
+
* @summary: Sample File Download
|
|
293
|
+
* @description: Sample File Download - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/sampleFileServiceability/).
|
|
247
294
|
*/
|
|
248
|
-
|
|
295
|
+
sampleFileServiceability({ body, requestHeaders }?: ServiceabilityPlatformValidator.SampleFileServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionServiceabilityTatResultItemData>;
|
|
249
296
|
/**
|
|
250
297
|
* @param {ServiceabilityPlatformValidator.UpdateCompanyConfigurationParam} arg
|
|
251
298
|
* - Arg object
|
|
@@ -255,71 +302,75 @@ declare class Serviceability {
|
|
|
255
302
|
* @returns {Promise<ServiceabilityPlatformModel.CompanyConfig>} - Success response
|
|
256
303
|
* @name updateCompanyConfiguration
|
|
257
304
|
* @summary: Update delivery configuration
|
|
258
|
-
* @description: Updates an existing delivery setup for a company, including the ability to adjust self-shipping preferences. - Check out [method documentation](https://
|
|
305
|
+
* @description: Updates an existing delivery setup for a company, including the ability to adjust self-shipping preferences. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/updateCompanyConfiguration/).
|
|
259
306
|
*/
|
|
260
|
-
updateCompanyConfiguration({ body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCompanyConfigurationParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyConfig>;
|
|
307
|
+
updateCompanyConfiguration({ fulfillmentOptionSlug, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCompanyConfigurationParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyConfig>;
|
|
261
308
|
/**
|
|
262
309
|
* @param {ServiceabilityPlatformValidator.UpdateCourierPartnerAccountParam} arg
|
|
263
310
|
* - Arg object
|
|
264
311
|
*
|
|
265
312
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
266
313
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
267
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
268
|
-
* Success response
|
|
314
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierAccountDetailsBody>}
|
|
315
|
+
* - Success response
|
|
316
|
+
*
|
|
269
317
|
* @name updateCourierPartnerAccount
|
|
270
318
|
* @summary: Update courier account
|
|
271
|
-
* @description: Updates an existing courier partner account. - Check out [method documentation](https://
|
|
319
|
+
* @description: Updates an existing courier partner account. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/updateCourierPartnerAccount/).
|
|
272
320
|
*/
|
|
273
|
-
updateCourierPartnerAccount({ accountId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
321
|
+
updateCourierPartnerAccount({ accountId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierAccountDetailsBody>;
|
|
322
|
+
/**
|
|
323
|
+
* @param {ServiceabilityPlatformValidator.UpdateCourierPartnerSchemeParam} arg
|
|
324
|
+
* - Arg object
|
|
325
|
+
*
|
|
326
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
327
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
328
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierPartnerSchemeModelSchema>}
|
|
329
|
+
* - Success response
|
|
330
|
+
*
|
|
331
|
+
* @name updateCourierPartnerScheme
|
|
332
|
+
* @summary: Update Scheme for courier partner extension
|
|
333
|
+
* @description: Update Scheme for courier partner extension - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/updateCourierPartnerScheme/).
|
|
334
|
+
*/
|
|
335
|
+
updateCourierPartnerScheme({ schemeId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerSchemeModelSchema>;
|
|
274
336
|
/**
|
|
275
337
|
* @param {ServiceabilityPlatformValidator.UpdatePackageMaterialRuleParam} arg
|
|
276
338
|
* - Arg object
|
|
277
339
|
*
|
|
278
340
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
279
341
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
280
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
342
|
+
* @returns {Promise<ServiceabilityPlatformModel.PackageRuleResult>} -
|
|
281
343
|
* Success response
|
|
282
344
|
* @name updatePackageMaterialRule
|
|
283
345
|
* @summary: Update packaging rule
|
|
284
|
-
* @description: Update an existing packaging rule - Check out [method documentation](https://
|
|
346
|
+
* @description: Update an existing packaging rule - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/updatePackageMaterialRule/).
|
|
285
347
|
*/
|
|
286
|
-
updatePackageMaterialRule({ ruleId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdatePackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.
|
|
348
|
+
updatePackageMaterialRule({ ruleId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdatePackageMaterialRuleParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageRuleResult>;
|
|
287
349
|
/**
|
|
288
350
|
* @param {ServiceabilityPlatformValidator.UpdatePackageMaterialsParam} arg
|
|
289
351
|
* - Arg object
|
|
290
352
|
*
|
|
291
353
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
292
354
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
293
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
294
|
-
*
|
|
295
|
-
*
|
|
355
|
+
* @returns {Promise<ServiceabilityPlatformModel.PackageMaterialResult>} -
|
|
356
|
+
* Success response
|
|
296
357
|
* @name updatePackageMaterials
|
|
297
358
|
* @summary: Update packaging material
|
|
298
|
-
* @description: Update an existing packaging material - Check out [method documentation](https://
|
|
299
|
-
*/
|
|
300
|
-
updatePackageMaterials({ packageMaterialId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdatePackageMaterialsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialResponse>;
|
|
301
|
-
/**
|
|
302
|
-
* @param {ServiceabilityPlatformValidator.UpdateServiceabilityParam} arg - Arg object
|
|
303
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
304
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
305
|
-
* @returns {Promise<ServiceabilityPlatformModel.ServiceabilityModel>} -
|
|
306
|
-
* Success response
|
|
307
|
-
* @name updateServiceability
|
|
308
|
-
* @summary: Update Serviceability of a locality
|
|
309
|
-
* @description: Updates serviceability settings of a single courier scheme for a given locality - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateServiceability/).
|
|
359
|
+
* @description: Update an existing packaging material - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/updatePackageMaterials/).
|
|
310
360
|
*/
|
|
311
|
-
|
|
361
|
+
updatePackageMaterials({ packageMaterialId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdatePackageMaterialsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialResult>;
|
|
312
362
|
/**
|
|
313
|
-
* @param {ServiceabilityPlatformValidator.
|
|
363
|
+
* @param {ServiceabilityPlatformValidator.UpdateSelfShipDetailsParam} arg
|
|
364
|
+
* - Arg object
|
|
365
|
+
*
|
|
314
366
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
315
367
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
316
|
-
* @returns {Promise<ServiceabilityPlatformModel.
|
|
317
|
-
*
|
|
318
|
-
* @
|
|
319
|
-
* @
|
|
320
|
-
* @description: Update an existing delivery zone . - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateZoneById/).
|
|
368
|
+
* @returns {Promise<ServiceabilityPlatformModel.SelfshipSchema>} - Success response
|
|
369
|
+
* @name updateSelfShipDetails
|
|
370
|
+
* @summary: Update self-ship details
|
|
371
|
+
* @description: Updates the self-ship details such as TAT, activation status, and unit for a specified company. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/serviceability/updateSelfShipDetails/).
|
|
321
372
|
*/
|
|
322
|
-
|
|
373
|
+
updateSelfShipDetails({ body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateSelfShipDetailsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.SelfshipSchema>;
|
|
323
374
|
}
|
|
324
375
|
import ServiceabilityPlatformValidator = require("./ServiceabilityPlatformValidator");
|
|
325
376
|
import ServiceabilityPlatformModel = require("./ServiceabilityPlatformModel");
|