@gofynd/fdk-client-javascript 1.6.3 → 3.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +113 -93
- package/sdk/application/Cart/CartApplicationClient.js +270 -139
- 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 +51 -21
- package/sdk/application/Content/ContentApplicationClient.js +197 -36
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
- package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
- package/sdk/application/Lead/LeadApplicationClient.js +3 -3
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
- package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
- 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 +12 -22
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
- 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 -612
- package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -234
- 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 +406 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
- package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
- package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
- package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
- package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
- 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 -234
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
- 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 +424 -252
- package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -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 +1199 -462
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
- 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 +833 -1307
- package/sdk/platform/Content/ContentPlatformModel.js +893 -582
- 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 +502 -293
- package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4111 -9093
- package/sdk/platform/Order/OrderPlatformModel.js +3202 -4230
- 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 +3525 -1313
- package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
- 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 +2180 -302
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
- 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 +6 -50
- package/sdk/platform/Share/SharePlatformModel.js +3 -43
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
- 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 +22 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +91 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +14 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +223 -59
- package/sdk/platform/User/UserPlatformModel.js +204 -65
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +434 -758
- package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -410
- 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/Billing/BillingPublicClient.d.ts +56 -0
- package/sdk/public/Billing/BillingPublicClient.js +397 -0
- package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
- package/sdk/public/Billing/BillingPublicModel.js +560 -0
- package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
- package/sdk/public/Billing/BillingPublicValidator.js +50 -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 +2 -2
- package/sdk/public/PublicClient.js +2 -2
- 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 +1 -1
- package/sdk/public/index.js +1 -1
- 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
|
@@ -6,176 +6,70 @@ declare class Logistics {
|
|
|
6
6
|
* @param {LogisticsPartnerValidator.SampleFileServiceabilityParam} arg - Arg object.
|
|
7
7
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
8
8
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
9
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
9
|
+
* @returns {Promise<LogisticsPartnerModel.BulkRegionServiceabilityTatResponseItemData>}
|
|
10
10
|
* - Success response
|
|
11
11
|
*
|
|
12
12
|
* @name sampleFileServiceability
|
|
13
13
|
* @summary: Sample File Download
|
|
14
14
|
* @description: Sample File Download - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/sampleFileServiceability/).
|
|
15
15
|
*/
|
|
16
|
-
sampleFileServiceability({ body, requestHeaders }?: LogisticsPartnerValidator.SampleFileServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
16
|
+
sampleFileServiceability({ body, requestHeaders }?: LogisticsPartnerValidator.SampleFileServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.BulkRegionServiceabilityTatResponseItemData>;
|
|
17
17
|
/**
|
|
18
18
|
* @param {LogisticsPartnerValidator.GetSampleFileServiceabilityStatusParam} arg
|
|
19
19
|
* - Arg object.
|
|
20
20
|
*
|
|
21
21
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
22
22
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
23
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
23
|
+
* @returns {Promise<LogisticsPartnerModel.BulkRegionServiceabilityTatResponse>}
|
|
24
24
|
* - Success response
|
|
25
25
|
*
|
|
26
26
|
* @name getSampleFileServiceabilityStatus
|
|
27
27
|
* @summary: Get Serviceability TAT sample files generator status
|
|
28
28
|
* @description: Get Serviceability TAT sample file generator status - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getSampleFileServiceabilityStatus/).
|
|
29
29
|
*/
|
|
30
|
-
getSampleFileServiceabilityStatus({ pageNo, pageSize, batchId, requestHeaders }?: LogisticsPartnerValidator.GetSampleFileServiceabilityStatusParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
30
|
+
getSampleFileServiceabilityStatus({ pageNo, pageSize, batchId, requestHeaders }?: LogisticsPartnerValidator.GetSampleFileServiceabilityStatusParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.BulkRegionServiceabilityTatResponse>;
|
|
31
31
|
/**
|
|
32
32
|
* @param {LogisticsPartnerValidator.BulkTatParam} arg - Arg object.
|
|
33
33
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
34
34
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
35
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
35
|
+
* @returns {Promise<LogisticsPartnerModel.BulkRegionResponseItemData>} -
|
|
36
36
|
* Success response
|
|
37
37
|
* @name bulkTat
|
|
38
38
|
* @summary: Region TAT Import or Export
|
|
39
39
|
* @description: Region TAT Import or Export - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/bulkTat/).
|
|
40
40
|
*/
|
|
41
|
-
bulkTat({ extensionId, schemeId, body, requestHeaders }?: LogisticsPartnerValidator.BulkTatParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
41
|
+
bulkTat({ extensionId, schemeId, body, requestHeaders }?: LogisticsPartnerValidator.BulkTatParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.BulkRegionResponseItemData>;
|
|
42
42
|
/**
|
|
43
43
|
* @param {LogisticsPartnerValidator.GetBulkTatParam} arg - Arg object.
|
|
44
44
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
45
45
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
46
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
46
|
+
* @returns {Promise<LogisticsPartnerModel.BulkRegionResponse>} - Success response
|
|
47
47
|
* @name getBulkTat
|
|
48
48
|
* @summary: Get region tat bulk history
|
|
49
49
|
* @description: Get region tat bulk history - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getBulkTat/).
|
|
50
50
|
*/
|
|
51
|
-
getBulkTat({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: LogisticsPartnerValidator.GetBulkTatParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
52
|
-
/**
|
|
53
|
-
* @param {LogisticsPartnerValidator.CreateDeliveryTimeParam} arg - Arg object.
|
|
54
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
55
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
56
|
-
* @returns {Promise<LogisticsPartnerModel.RegionTatResult>} - Success response
|
|
57
|
-
* @name createDeliveryTime
|
|
58
|
-
* @summary: Region based delivery time insert
|
|
59
|
-
* @description: Insert the region based delivery time for a specific region within a courier partner scheme. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/createDeliveryTime/).
|
|
60
|
-
*/
|
|
61
|
-
createDeliveryTime({ partnerOrgId, courierPartnerExtensionId, schemeId, body, requestHeaders, }?: LogisticsPartnerValidator.CreateDeliveryTimeParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionTatResult>;
|
|
62
|
-
/**
|
|
63
|
-
* @param {LogisticsPartnerValidator.GetDeliveryTimesParam} arg - Arg object.
|
|
64
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
65
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
66
|
-
* @returns {Promise<LogisticsPartnerModel.RegionTatItemResult>} - Success response
|
|
67
|
-
* @name getDeliveryTimes
|
|
68
|
-
* @summary: Get region based delivery time list
|
|
69
|
-
* @description: Retrieve a list of delivery time for specific regions within a courier partner scheme. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getDeliveryTimes/).
|
|
70
|
-
*/
|
|
71
|
-
getDeliveryTimes({ partnerOrgId, courierPartnerExtensionId, schemeId, pageNo, pageSize, fromCountryCode, fromStateCode, fromCityCode, fromSectorCode, fromPincode, toCountryCode, toStateCode, toCityCode, toSectorCode, toPincode, requestHeaders, }?: LogisticsPartnerValidator.GetDeliveryTimesParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionTatItemResult>;
|
|
72
|
-
/**
|
|
73
|
-
* @param {LogisticsPartnerValidator.GetDeliveryTimeParam} arg - Arg object.
|
|
74
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
75
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
76
|
-
* @returns {Promise<LogisticsPartnerModel.RegionTatResult>} - Success response
|
|
77
|
-
* @name getDeliveryTime
|
|
78
|
-
* @summary: Get region based delivery time for a given identifier
|
|
79
|
-
* @description: Retrieve the delivery time details for a specific region within a courier partner scheme using the unique delivery time record identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getDeliveryTime/).
|
|
80
|
-
*/
|
|
81
|
-
getDeliveryTime({ partnerOrgId, courierPartnerExtensionId, schemeId, id, requestHeaders, }?: LogisticsPartnerValidator.GetDeliveryTimeParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionTatResult>;
|
|
82
|
-
/**
|
|
83
|
-
* @param {LogisticsPartnerValidator.UpdateDeliveryTimeParam} arg - Arg object.
|
|
84
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
85
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
86
|
-
* @returns {Promise<LogisticsPartnerModel.RegionTatResult>} - Success response
|
|
87
|
-
* @name updateDeliveryTime
|
|
88
|
-
* @summary: Region based delivery time update
|
|
89
|
-
* @description: Update the delivery time details for a specific region within a courier partner scheme using the unique delivery time record identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/updateDeliveryTime/).
|
|
90
|
-
*/
|
|
91
|
-
updateDeliveryTime({ partnerOrgId, courierPartnerExtensionId, schemeId, id, body, requestHeaders, }?: LogisticsPartnerValidator.UpdateDeliveryTimeParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionTatResult>;
|
|
92
|
-
/**
|
|
93
|
-
* @param {LogisticsPartnerValidator.DeleteDeliveryTimeParam} arg - Arg object.
|
|
94
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
95
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
96
|
-
* @returns {Promise<LogisticsPartnerModel.RegionTatResult>} - Success response
|
|
97
|
-
* @name deleteDeliveryTime
|
|
98
|
-
* @summary: Region based delivery time delete
|
|
99
|
-
* @description: Delete the delivery time record for a specific region within a courier partner scheme using the unique delivery time record identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/deleteDeliveryTime/).
|
|
100
|
-
*/
|
|
101
|
-
deleteDeliveryTime({ partnerOrgId, courierPartnerExtensionId, schemeId, id, requestHeaders, }?: LogisticsPartnerValidator.DeleteDeliveryTimeParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionTatResult>;
|
|
102
|
-
/**
|
|
103
|
-
* @param {LogisticsPartnerValidator.CreateServiceabilityParam} arg - Arg object.
|
|
104
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
105
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
106
|
-
* @returns {Promise<LogisticsPartnerModel.RegionServiceabilityResult>} -
|
|
107
|
-
* Success response
|
|
108
|
-
* @name createServiceability
|
|
109
|
-
* @summary: Serviceability insert
|
|
110
|
-
* @description: Insert the serviceability for a specific region within a courier partner scheme. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/createServiceability/).
|
|
111
|
-
*/
|
|
112
|
-
createServiceability({ partnerOrgId, courierPartnerExtensionId, schemeId, body, requestHeaders, }?: LogisticsPartnerValidator.CreateServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionServiceabilityResult>;
|
|
113
|
-
/**
|
|
114
|
-
* @param {LogisticsPartnerValidator.GetServiceabilitiesParam} arg - Arg object.
|
|
115
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
116
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
117
|
-
* @returns {Promise<LogisticsPartnerModel.RegionServiceabilityItemResult>}
|
|
118
|
-
* - Success response
|
|
119
|
-
*
|
|
120
|
-
* @name getServiceabilities
|
|
121
|
-
* @summary: Get region serviceability list
|
|
122
|
-
* @description: Retrieve a list of serviceability for specific regions within a courier partner scheme. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getServiceabilities/).
|
|
123
|
-
*/
|
|
124
|
-
getServiceabilities({ partnerOrgId, courierPartnerExtensionId, schemeId, pageNo, pageSize, countryCode, stateCode, cityCode, sectorCode, pincode, firstMile, lastMile, doorstepReturn, doorstepQc, installation, requestHeaders, }?: LogisticsPartnerValidator.GetServiceabilitiesParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionServiceabilityItemResult>;
|
|
125
|
-
/**
|
|
126
|
-
* @param {LogisticsPartnerValidator.GetServiceabilityParam} arg - Arg object.
|
|
127
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
128
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
129
|
-
* @returns {Promise<LogisticsPartnerModel.RegionServiceabilityResult>} -
|
|
130
|
-
* Success response
|
|
131
|
-
* @name getServiceability
|
|
132
|
-
* @summary: Get region serviceability
|
|
133
|
-
* @description: Retrieve serviceability for specific region within a courier partner scheme for a given identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getServiceability/).
|
|
134
|
-
*/
|
|
135
|
-
getServiceability({ partnerOrgId, courierPartnerExtensionId, schemeId, id, requestHeaders, }?: LogisticsPartnerValidator.GetServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionServiceabilityResult>;
|
|
136
|
-
/**
|
|
137
|
-
* @param {LogisticsPartnerValidator.UpdateServiceabilityParam} arg - Arg object.
|
|
138
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
139
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
140
|
-
* @returns {Promise<LogisticsPartnerModel.ServiceabilityDetailsResult>} -
|
|
141
|
-
* Success response
|
|
142
|
-
* @name updateServiceability
|
|
143
|
-
* @summary: Serviceability update
|
|
144
|
-
* @description: Update the serviceability for a specific region within a courier partner scheme based on unique identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/updateServiceability/).
|
|
145
|
-
*/
|
|
146
|
-
updateServiceability({ partnerOrgId, courierPartnerExtensionId, schemeId, id, body, requestHeaders, }?: LogisticsPartnerValidator.UpdateServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.ServiceabilityDetailsResult>;
|
|
147
|
-
/**
|
|
148
|
-
* @param {LogisticsPartnerValidator.DeleteServiceabilityParam} arg - Arg object.
|
|
149
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
150
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
151
|
-
* @returns {Promise<LogisticsPartnerModel.RegionServiceabilityResult>} -
|
|
152
|
-
* Success response
|
|
153
|
-
* @name deleteServiceability
|
|
154
|
-
* @summary: Serviceability delete
|
|
155
|
-
* @description: Delete the serviceability for a specific region within a courier partner scheme based on a unique identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/deleteServiceability/).
|
|
156
|
-
*/
|
|
157
|
-
deleteServiceability({ partnerOrgId, courierPartnerExtensionId, schemeId, id, requestHeaders, }?: LogisticsPartnerValidator.DeleteServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.RegionServiceabilityResult>;
|
|
51
|
+
getBulkTat({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: LogisticsPartnerValidator.GetBulkTatParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.BulkRegionResponse>;
|
|
158
52
|
/**
|
|
159
53
|
* @param {LogisticsPartnerValidator.BulkServiceabilityParam} arg - Arg object.
|
|
160
54
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
161
55
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
162
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
56
|
+
* @returns {Promise<LogisticsPartnerModel.BulkRegionResponseItemData>} -
|
|
163
57
|
* Success response
|
|
164
58
|
* @name bulkServiceability
|
|
165
59
|
* @summary: Serviceability Import or Export
|
|
166
60
|
* @description: Serviceability Import or Export - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/bulkServiceability/).
|
|
167
61
|
*/
|
|
168
|
-
bulkServiceability({ extensionId, schemeId, body, requestHeaders }?: LogisticsPartnerValidator.BulkServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
62
|
+
bulkServiceability({ extensionId, schemeId, body, requestHeaders }?: LogisticsPartnerValidator.BulkServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.BulkRegionResponseItemData>;
|
|
169
63
|
/**
|
|
170
64
|
* @param {LogisticsPartnerValidator.GetBulkServiceabilityParam} arg - Arg object.
|
|
171
65
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
172
66
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
173
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
67
|
+
* @returns {Promise<LogisticsPartnerModel.BulkRegionResponse>} - Success response
|
|
174
68
|
* @name getBulkServiceability
|
|
175
69
|
* @summary: Get Region Serviceability Bulk History
|
|
176
70
|
* @description: Get Region Serviceability Bulk History - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getBulkServiceability/).
|
|
177
71
|
*/
|
|
178
|
-
getBulkServiceability({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: LogisticsPartnerValidator.GetBulkServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
72
|
+
getBulkServiceability({ extensionId, schemeId, pageNo, pageSize, batchId, action, status, country, region, startDate, endDate, requestHeaders, }?: LogisticsPartnerValidator.GetBulkServiceabilityParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.BulkRegionResponse>;
|
|
179
73
|
/**
|
|
180
74
|
* @param {LogisticsPartnerValidator.CreateCourierPartnerAccountParam} arg
|
|
181
75
|
* - Arg object.
|
|
@@ -192,91 +86,70 @@ declare class Logistics {
|
|
|
192
86
|
* @param {LogisticsPartnerValidator.GetCourierPartnerAccountsParam} arg - Arg object.
|
|
193
87
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
194
88
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
195
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
89
|
+
* @returns {Promise<LogisticsPartnerModel.CompanyCourierPartnerAccountListResponse>}
|
|
196
90
|
* - Success response
|
|
197
91
|
*
|
|
198
92
|
* @name getCourierPartnerAccounts
|
|
199
|
-
* @summary: Getting Courier Account list of a company
|
|
93
|
+
* @summary: Getting Courier Account list of a company.
|
|
200
94
|
* @description: This API returns Courier Account of a company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getCourierPartnerAccounts/).
|
|
201
95
|
*/
|
|
202
|
-
getCourierPartnerAccounts({ companyId, pageNo, pageSize, stage, paymentMode, transportType, requestHeaders, }?: LogisticsPartnerValidator.GetCourierPartnerAccountsParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
96
|
+
getCourierPartnerAccounts({ companyId, pageNo, pageSize, stage, paymentMode, transportType, accountIds, requestHeaders, }?: LogisticsPartnerValidator.GetCourierPartnerAccountsParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.CompanyCourierPartnerAccountListResponse>;
|
|
203
97
|
/**
|
|
204
98
|
* @param {LogisticsPartnerValidator.UpdateCourierPartnerAccountParam} arg
|
|
205
99
|
* - Arg object.
|
|
206
100
|
*
|
|
207
101
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
208
102
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
209
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
103
|
+
* @returns {Promise<LogisticsPartnerModel.CourierAccount>} - Success response
|
|
210
104
|
* @name updateCourierPartnerAccount
|
|
211
|
-
* @summary: Update Courier Account in database
|
|
105
|
+
* @summary: Update Courier Account in database.
|
|
212
106
|
* @description: Updates Courier Account - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/updateCourierPartnerAccount/).
|
|
213
107
|
*/
|
|
214
|
-
updateCourierPartnerAccount({ companyId, accountId, body, requestHeaders }?: LogisticsPartnerValidator.UpdateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
108
|
+
updateCourierPartnerAccount({ companyId, accountId, body, requestHeaders }?: LogisticsPartnerValidator.UpdateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.CourierAccount>;
|
|
215
109
|
/**
|
|
216
110
|
* @param {LogisticsPartnerValidator.GetCourierPartnerAccountParam} arg - Arg object.
|
|
217
111
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
218
112
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
219
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
113
|
+
* @returns {Promise<LogisticsPartnerModel.CourierAccountResponse>} - Success response
|
|
220
114
|
* @name getCourierPartnerAccount
|
|
221
|
-
* @summary: Getting Courier Account of a company from database
|
|
115
|
+
* @summary: Getting Courier Account of a company from database.
|
|
222
116
|
* @description: This API returns response DpAccount of a company from mongo database. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getCourierPartnerAccount/).
|
|
223
117
|
*/
|
|
224
|
-
getCourierPartnerAccount({ companyId, accountId, requestHeaders }?: LogisticsPartnerValidator.GetCourierPartnerAccountParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
225
|
-
/**
|
|
226
|
-
* @param {LogisticsPartnerValidator.GetCountriesParam} arg - Arg object.
|
|
227
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
228
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
229
|
-
* @returns {Promise<LogisticsPartnerModel.GetCountries>} - Success response
|
|
230
|
-
* @name getCountries
|
|
231
|
-
* @summary: Get all countries and associated data
|
|
232
|
-
* @description: Retrieve of all countries. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getCountries/).
|
|
233
|
-
*/
|
|
234
|
-
getCountries({ onboarding, pageNo, pageSize, q, requestHeaders }?: LogisticsPartnerValidator.GetCountriesParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.GetCountries>;
|
|
118
|
+
getCourierPartnerAccount({ companyId, accountId, requestHeaders }?: LogisticsPartnerValidator.GetCourierPartnerAccountParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.CourierAccountResponse>;
|
|
235
119
|
/**
|
|
236
120
|
* @param {LogisticsPartnerValidator.CreateCourierPartnerSchemeParam} arg -
|
|
237
121
|
* Arg object.
|
|
238
122
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
239
123
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
240
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
124
|
+
* @returns {Promise<LogisticsPartnerModel.CourierPartnerSchemeModel>} -
|
|
241
125
|
* Success response
|
|
242
126
|
* @name createCourierPartnerScheme
|
|
243
127
|
* @summary: Create Scheme for courier partner extension
|
|
244
128
|
* @description: Create Scheme for courier partner extension - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/createCourierPartnerScheme/).
|
|
245
129
|
*/
|
|
246
|
-
createCourierPartnerScheme({ body, requestHeaders }?: LogisticsPartnerValidator.CreateCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
247
|
-
/**
|
|
248
|
-
* @param {LogisticsPartnerValidator.GetCourierPartnerSchemesParam} arg - Arg object.
|
|
249
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
250
|
-
* @param {import("../PartnerAPIClient").Options} - Options
|
|
251
|
-
* @returns {Promise<LogisticsPartnerModel.courierPartnerSchemeV2List>} -
|
|
252
|
-
* Success response
|
|
253
|
-
* @name getCourierPartnerSchemes
|
|
254
|
-
* @summary: Get created Schemes for courier partner
|
|
255
|
-
* @description: Get created Schemes for courier partner - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getCourierPartnerSchemes/).
|
|
256
|
-
*/
|
|
257
|
-
getCourierPartnerSchemes({ schemeType, paymentMode, capabilities, schemeIds, requestHeaders }?: LogisticsPartnerValidator.GetCourierPartnerSchemesParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.courierPartnerSchemeV2List>;
|
|
130
|
+
createCourierPartnerScheme({ body, requestHeaders }?: LogisticsPartnerValidator.CreateCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.CourierPartnerSchemeModel>;
|
|
258
131
|
/**
|
|
259
132
|
* @param {LogisticsPartnerValidator.UpdateCourierPartnerSchemeParam} arg -
|
|
260
133
|
* Arg object.
|
|
261
134
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
262
135
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
263
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
264
|
-
* Success response
|
|
136
|
+
* @returns {Promise<LogisticsPartnerModel.CourierPartnerSchemeUpdateRequest>}
|
|
137
|
+
* - Success response
|
|
138
|
+
*
|
|
265
139
|
* @name updateCourierPartnerScheme
|
|
266
140
|
* @summary: Update Scheme for courier partner extension
|
|
267
141
|
* @description: Update Scheme for courier partner extension - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/updateCourierPartnerScheme/).
|
|
268
142
|
*/
|
|
269
|
-
updateCourierPartnerScheme({ schemeId, body, requestHeaders }?: LogisticsPartnerValidator.UpdateCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.
|
|
143
|
+
updateCourierPartnerScheme({ schemeId, body, requestHeaders }?: LogisticsPartnerValidator.UpdateCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.CourierPartnerSchemeUpdateRequest>;
|
|
270
144
|
/**
|
|
271
|
-
* @param {LogisticsPartnerValidator.
|
|
145
|
+
* @param {LogisticsPartnerValidator.GetCountriesParam} arg - Arg object.
|
|
272
146
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
273
147
|
* @param {import("../PartnerAPIClient").Options} - Options
|
|
274
|
-
* @returns {Promise<LogisticsPartnerModel.
|
|
275
|
-
*
|
|
276
|
-
* @
|
|
277
|
-
* @
|
|
278
|
-
* @description: Update Scheme for courier partner extension by Id - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getCourierPartnerScheme/).
|
|
148
|
+
* @returns {Promise<LogisticsPartnerModel.GetCountries>} - Success response
|
|
149
|
+
* @name getCountries
|
|
150
|
+
* @summary: Get all countries and associated data.
|
|
151
|
+
* @description: Retrieve a list of countries for logistical purposes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/logistics/getCountries/).
|
|
279
152
|
*/
|
|
280
|
-
|
|
153
|
+
getCountries({ onboard, pageNo, pageSize, q, hierarchy, requestHeaders }?: LogisticsPartnerValidator.GetCountriesParam, { responseHeaders }?: object): Promise<LogisticsPartnerModel.GetCountries>;
|
|
281
154
|
}
|
|
282
155
|
import LogisticsPartnerModel = require("./LogisticsPartnerModel");
|