@gofynd/fdk-client-javascript 1.6.4 → 3.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 -670
- package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +3 -0
- package/sdk/partner/index.js +6 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +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 +4103 -9109
- package/sdk/platform/Order/OrderPlatformModel.js +3198 -4245
- 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 +18 -71
- package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
- package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
- package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
- package/sdk/platform/User/UserPlatformModel.js +209 -216
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
- package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/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
|
@@ -2,58 +2,449 @@ export = Billing;
|
|
|
2
2
|
declare class Billing {
|
|
3
3
|
constructor(config: any);
|
|
4
4
|
config: any;
|
|
5
|
+
/**
|
|
6
|
+
* @param {BillingPlatformValidator.ActivateSubscriptionPlanParam} arg - Arg object
|
|
7
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
8
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
9
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionActivateRes>} - Success response
|
|
10
|
+
* @name activateSubscriptionPlan
|
|
11
|
+
* @summary: Activate a subscription plan.
|
|
12
|
+
* @description: Activate a specific subscription plan for a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/activateSubscriptionPlan/).
|
|
13
|
+
*/
|
|
14
|
+
activateSubscriptionPlan({ body, requestHeaders }?: BillingPlatformValidator.ActivateSubscriptionPlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionActivateRes>;
|
|
5
15
|
/**
|
|
6
16
|
* @param {BillingPlatformValidator.CancelSubscriptionChargeParam} arg - Arg object
|
|
7
17
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
8
18
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
9
19
|
* @returns {Promise<BillingPlatformModel.SubscriptionChargeRes>} - Success response
|
|
10
20
|
* @name cancelSubscriptionCharge
|
|
11
|
-
* @summary: Cancel
|
|
12
|
-
* @description: Cancel an ongoing
|
|
21
|
+
* @summary: Cancel a subscription charge.
|
|
22
|
+
* @description: Cancel an ongoing subscription charge for a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionCharge/).
|
|
13
23
|
*/
|
|
14
24
|
cancelSubscriptionCharge({ extensionId, subscriptionId, requestHeaders }?: BillingPlatformValidator.CancelSubscriptionChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionChargeRes>;
|
|
25
|
+
/**
|
|
26
|
+
* @param {BillingPlatformValidator.CancelSubscriptionPlanParam} arg - Arg object
|
|
27
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
28
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
29
|
+
* @returns {Promise<BillingPlatformModel.CancelSubscriptionRes>} - Success response
|
|
30
|
+
* @name cancelSubscriptionPlan
|
|
31
|
+
* @summary: Cancel a subscription plan.
|
|
32
|
+
* @description: Cancel an active subscription plan for a customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionPlan/).
|
|
33
|
+
*/
|
|
34
|
+
cancelSubscriptionPlan({ body, requestHeaders }?: BillingPlatformValidator.CancelSubscriptionPlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CancelSubscriptionRes>;
|
|
35
|
+
/**
|
|
36
|
+
* @param {BillingPlatformValidator.ChangePlanParam} arg - Arg object
|
|
37
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
38
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
39
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionActivateRes>} - Success response
|
|
40
|
+
* @name changePlan
|
|
41
|
+
* @summary: Upgrade plan.
|
|
42
|
+
* @description: Admin user can modify the subscription plan for an seller account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/changePlan/).
|
|
43
|
+
*/
|
|
44
|
+
changePlan({ body, requestHeaders }?: BillingPlatformValidator.ChangePlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionActivateRes>;
|
|
45
|
+
/**
|
|
46
|
+
* @param {BillingPlatformValidator.CheckCouponValidityParam} arg - Arg object
|
|
47
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
48
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
49
|
+
* @returns {Promise<BillingPlatformModel.CheckValidityResponse>} - Success response
|
|
50
|
+
* @name checkCouponValidity
|
|
51
|
+
* @summary: Verify coupon validity.
|
|
52
|
+
* @description: Checks whether a coupon code is valid for discounts while billing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/checkCouponValidity/).
|
|
53
|
+
*/
|
|
54
|
+
checkCouponValidity({ plan, couponCode, requestHeaders }?: BillingPlatformValidator.CheckCouponValidityParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CheckValidityResponse>;
|
|
15
55
|
/**
|
|
16
56
|
* @param {BillingPlatformValidator.CreateOneTimeChargeParam} arg - Arg object
|
|
17
57
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
18
58
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
19
|
-
* @returns {Promise<BillingPlatformModel.
|
|
20
|
-
*
|
|
21
|
-
*
|
|
59
|
+
* @returns {Promise<BillingPlatformModel.CreateOneTimeChargeResponse>} -
|
|
60
|
+
* Success response
|
|
22
61
|
* @name createOneTimeCharge
|
|
23
|
-
* @summary: Generate a one-time charge
|
|
62
|
+
* @summary: Generate a one-time charge.
|
|
24
63
|
* @description: Generate a one-time charge for specific services or products. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/createOneTimeCharge/).
|
|
25
64
|
*/
|
|
26
|
-
createOneTimeCharge({ extensionId, body, requestHeaders }?: BillingPlatformValidator.CreateOneTimeChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.
|
|
65
|
+
createOneTimeCharge({ extensionId, body, requestHeaders }?: BillingPlatformValidator.CreateOneTimeChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CreateOneTimeChargeResponse>;
|
|
66
|
+
/**
|
|
67
|
+
* @param {BillingPlatformValidator.CreditTransactionParam} arg - Arg object
|
|
68
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
69
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
70
|
+
* @returns {Promise<BillingPlatformModel.CreditTransactionResponse>} -
|
|
71
|
+
* Success response
|
|
72
|
+
* @name creditTransaction
|
|
73
|
+
* @summary: Credit Transaction
|
|
74
|
+
* @description: Credit Transaction - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/creditTransaction/).
|
|
75
|
+
*/
|
|
76
|
+
creditTransaction({ uniqueId, productSuite, type, pageSize, pageNo, startDate, endDate, searchType, searchValue, requestHeaders, }?: BillingPlatformValidator.CreditTransactionParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CreditTransactionResponse>;
|
|
27
77
|
/**
|
|
28
|
-
* @param {BillingPlatformValidator.
|
|
78
|
+
* @param {BillingPlatformValidator.CurrentAppLimitParam} arg - Arg object
|
|
29
79
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
30
80
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
31
|
-
* @returns {Promise<BillingPlatformModel.
|
|
32
|
-
* @name
|
|
33
|
-
* @summary:
|
|
34
|
-
* @description:
|
|
81
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionLimit>} - Success response
|
|
82
|
+
* @name currentAppLimit
|
|
83
|
+
* @summary: Obtain feature limit configurations.
|
|
84
|
+
* @description: Retrieve configuration settings for feature limits in subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/currentAppLimit/).
|
|
35
85
|
*/
|
|
36
|
-
|
|
86
|
+
currentAppLimit({ productSuite, type, requestHeaders }?: BillingPlatformValidator.CurrentAppLimitParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionLimit>;
|
|
87
|
+
/**
|
|
88
|
+
* @param {BillingPlatformValidator.GetBankListParam} arg - Arg object
|
|
89
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
90
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
91
|
+
* @returns {Promise<string>} - Success response
|
|
92
|
+
* @name getBankList
|
|
93
|
+
* @summary: Get Bank List
|
|
94
|
+
* @description: Get Bank List - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getBankList/).
|
|
95
|
+
*/
|
|
96
|
+
getBankList({ requestHeaders }?: any, { responseHeaders }?: object): Promise<string>;
|
|
37
97
|
/**
|
|
38
98
|
* @param {BillingPlatformValidator.GetChargeDetailsParam} arg - Arg object
|
|
39
99
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
40
100
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
41
101
|
* @returns {Promise<BillingPlatformModel.ChargeDetails>} - Success response
|
|
42
102
|
* @name getChargeDetails
|
|
43
|
-
* @summary: Obtain charge details
|
|
103
|
+
* @summary: Obtain charge details.
|
|
44
104
|
* @description: Retrieve comprehensive details about a specific billing charge. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getChargeDetails/).
|
|
45
105
|
*/
|
|
46
106
|
getChargeDetails({ extensionId, chargeId, requestHeaders }?: BillingPlatformValidator.GetChargeDetailsParam, { responseHeaders }?: object): Promise<BillingPlatformModel.ChargeDetails>;
|
|
107
|
+
/**
|
|
108
|
+
* @param {BillingPlatformValidator.GetCustomerDetailParam} arg - Arg object
|
|
109
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
110
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
111
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionCustomer>} - Success response
|
|
112
|
+
* @name getCustomerDetail
|
|
113
|
+
* @summary: Fetch customer details.
|
|
114
|
+
* @description: Obtain customer-related billing information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getCustomerDetail/).
|
|
115
|
+
*/
|
|
116
|
+
getCustomerDetail({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionCustomer>;
|
|
117
|
+
/**
|
|
118
|
+
* @param {BillingPlatformValidator.GetEnterprisePlansParam} arg - Arg object
|
|
119
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
120
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
121
|
+
* @returns {Promise<BillingPlatformModel.Plan[]>} - Success response
|
|
122
|
+
* @name getEnterprisePlans
|
|
123
|
+
* @summary: Retrieve enterprise-level plans.
|
|
124
|
+
* @description: Retrieve available enterprise-level subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getEnterprisePlans/).
|
|
125
|
+
*/
|
|
126
|
+
getEnterprisePlans({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.Plan[]>;
|
|
127
|
+
/**
|
|
128
|
+
* @param {BillingPlatformValidator.GetFeatureLimitConfigParam} arg - Arg object
|
|
129
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
130
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
131
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionLimit>} - Success response
|
|
132
|
+
* @name getFeatureLimitConfig
|
|
133
|
+
* @summary: Obtain feature limit configurations.
|
|
134
|
+
* @description: Retrieve configuration settings for feature limits in subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getFeatureLimitConfig/).
|
|
135
|
+
*/
|
|
136
|
+
getFeatureLimitConfig({ productSuite, type, requestHeaders }?: BillingPlatformValidator.GetFeatureLimitConfigParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionLimit>;
|
|
137
|
+
/**
|
|
138
|
+
* @param {BillingPlatformValidator.GetInvoiceByIdParam} arg - Arg object
|
|
139
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
140
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
141
|
+
* @returns {Promise<BillingPlatformModel.InvoiceData>} - Success response
|
|
142
|
+
* @name getInvoiceById
|
|
143
|
+
* @summary: Get a specific invoice.
|
|
144
|
+
* @description: Retrieve a particular invoice's details by providing its unique ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoiceById/).
|
|
145
|
+
*/
|
|
146
|
+
getInvoiceById({ invoiceId, requestHeaders }?: BillingPlatformValidator.GetInvoiceByIdParam, { responseHeaders }?: object): Promise<BillingPlatformModel.InvoiceData>;
|
|
147
|
+
/**
|
|
148
|
+
* @param {BillingPlatformValidator.GetInvoicesParam} arg - Arg object
|
|
149
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
150
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
151
|
+
* @returns {Promise<BillingPlatformModel.Invoices>} - Success response
|
|
152
|
+
* @name getInvoices
|
|
153
|
+
* @summary: Retrieve invoices.
|
|
154
|
+
* @description: Retrieve invoices for billing and payment tracking. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoices/).
|
|
155
|
+
*/
|
|
156
|
+
getInvoices({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.Invoices>;
|
|
157
|
+
/**
|
|
158
|
+
* @param {BillingPlatformValidator.GetPaymentOptionsParam} arg - Arg object
|
|
159
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
160
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
161
|
+
* @returns {Promise<BillingPlatformModel.GetPaymentOptions>} - Success response
|
|
162
|
+
* @name getPaymentOptions
|
|
163
|
+
* @summary: API to get payment options
|
|
164
|
+
* @description: API to get payment options. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getPaymentOptions/).
|
|
165
|
+
*/
|
|
166
|
+
getPaymentOptions({ transactionId, requestHeaders }?: BillingPlatformValidator.GetPaymentOptionsParam, { responseHeaders }?: object): Promise<BillingPlatformModel.GetPaymentOptions>;
|
|
167
|
+
/**
|
|
168
|
+
* @param {BillingPlatformValidator.GetPaymentTransactionParam} arg - Arg object
|
|
169
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
170
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
171
|
+
* @returns {Promise<BillingPlatformModel.PaymentTransactionDetails>} -
|
|
172
|
+
* Success response
|
|
173
|
+
* @name getPaymentTransaction
|
|
174
|
+
* @summary: API to get payment transaction details
|
|
175
|
+
* @description: API to get payment transaction details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getPaymentTransaction/).
|
|
176
|
+
*/
|
|
177
|
+
getPaymentTransaction({ transactionId, requestHeaders }?: BillingPlatformValidator.GetPaymentTransactionParam, { responseHeaders }?: object): Promise<BillingPlatformModel.PaymentTransactionDetails>;
|
|
178
|
+
/**
|
|
179
|
+
* @param {BillingPlatformValidator.GetSubscriptionParam} arg - Arg object
|
|
180
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
181
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
182
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionStatus>} - Success response
|
|
183
|
+
* @name getSubscription
|
|
184
|
+
* @summary: Retrieve subscription details.
|
|
185
|
+
* @description: Retrieve details of a customer's subscription information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscription/).
|
|
186
|
+
*/
|
|
187
|
+
getSubscription({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionStatus>;
|
|
47
188
|
/**
|
|
48
189
|
* @param {BillingPlatformValidator.GetSubscriptionChargeParam} arg - Arg object
|
|
49
190
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
50
191
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
51
192
|
* @returns {Promise<BillingPlatformModel.SubscriptionChargeRes>} - Success response
|
|
52
193
|
* @name getSubscriptionCharge
|
|
53
|
-
* @summary: Retrieve subscription charge details
|
|
194
|
+
* @summary: Retrieve subscription charge details.
|
|
54
195
|
* @description: Retrieve detailed information about subscription charges using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscriptionCharge/).
|
|
55
196
|
*/
|
|
56
197
|
getSubscriptionCharge({ extensionId, subscriptionId, requestHeaders }?: BillingPlatformValidator.GetSubscriptionChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionChargeRes>;
|
|
198
|
+
/**
|
|
199
|
+
* @param {BillingPlatformValidator.GetentityDetailParam} arg - Arg object
|
|
200
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
201
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
202
|
+
* @returns {Promise<BillingPlatformModel.EntityDetail[]>} - Success response
|
|
203
|
+
* @name getentityDetail
|
|
204
|
+
* @summary: Generic api to get the entity detail
|
|
205
|
+
* @description: Generic api to get the entity detail - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getentityDetail/).
|
|
206
|
+
*/
|
|
207
|
+
getentityDetail({ entityName, channel, entityId, component, componentName, requestHeaders, }?: BillingPlatformValidator.GetentityDetailParam, { responseHeaders }?: object): Promise<BillingPlatformModel.EntityDetail[]>;
|
|
208
|
+
/**
|
|
209
|
+
* @param {BillingPlatformValidator.GlobalSettingsParam} arg - Arg object
|
|
210
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
211
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
212
|
+
* @returns {Promise<BillingPlatformModel.GlobalSettings>} - Success response
|
|
213
|
+
* @name globalSettings
|
|
214
|
+
* @summary: API to get global settings details
|
|
215
|
+
* @description: API to get global settings details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/globalSettings/).
|
|
216
|
+
*/
|
|
217
|
+
globalSettings({ pageNo, pageSize, query, requestHeaders }?: BillingPlatformValidator.GlobalSettingsParam, { responseHeaders }?: object): Promise<BillingPlatformModel.GlobalSettings>;
|
|
218
|
+
/**
|
|
219
|
+
* @param {BillingPlatformValidator.MethodDefaultParam} arg - Arg object
|
|
220
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
221
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
222
|
+
* @returns {Promise<BillingPlatformModel.Message>} - Success response
|
|
223
|
+
* @name methodDefault
|
|
224
|
+
* @summary: Method Default
|
|
225
|
+
* @description: Method Default - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/methodDefault/).
|
|
226
|
+
*/
|
|
227
|
+
methodDefault({ body, requestHeaders }?: BillingPlatformValidator.MethodDefaultParam, { responseHeaders }?: object): Promise<BillingPlatformModel.Message>;
|
|
228
|
+
/**
|
|
229
|
+
* @param {BillingPlatformValidator.PaymentCollectParam} arg - Arg object
|
|
230
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
231
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
232
|
+
* @returns {Promise<BillingPlatformModel.PaymentCollectRes>} - Success response
|
|
233
|
+
* @name paymentCollect
|
|
234
|
+
* @summary: Payment Collect
|
|
235
|
+
* @description: Payment Collect - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/paymentCollect/).
|
|
236
|
+
*/
|
|
237
|
+
paymentCollect({ body, requestHeaders }?: BillingPlatformValidator.PaymentCollectParam, { responseHeaders }?: object): Promise<BillingPlatformModel.PaymentCollectRes>;
|
|
238
|
+
/**
|
|
239
|
+
* @param {BillingPlatformValidator.PaymentInitiateParam} arg - Arg object
|
|
240
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
241
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
242
|
+
* @returns {Promise<BillingPlatformModel.SubscribePlanRes>} - Success response
|
|
243
|
+
* @name paymentInitiate
|
|
244
|
+
* @summary: Initiate Payment
|
|
245
|
+
* @description: Initiate Payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/paymentInitiate/).
|
|
246
|
+
*/
|
|
247
|
+
paymentInitiate({ body, requestHeaders }?: BillingPlatformValidator.PaymentInitiateParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscribePlanRes>;
|
|
248
|
+
/**
|
|
249
|
+
* @param {BillingPlatformValidator.PaymentOptionsParam} arg - Arg object
|
|
250
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
251
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
252
|
+
* @returns {Promise<BillingPlatformModel.PaymentOptions>} - Success response
|
|
253
|
+
* @name paymentOptions
|
|
254
|
+
* @summary: API to get payment details of requested payment options
|
|
255
|
+
* @description: API to get payment details of requested payment options. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/paymentOptions/).
|
|
256
|
+
*/
|
|
257
|
+
paymentOptions({ code, requestHeaders }?: BillingPlatformValidator.PaymentOptionsParam, { responseHeaders }?: object): Promise<BillingPlatformModel.PaymentOptions>;
|
|
258
|
+
/**
|
|
259
|
+
* @param {BillingPlatformValidator.PaymentStatusParam} arg - Arg object
|
|
260
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
261
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
262
|
+
* @returns {Promise<BillingPlatformModel.PaymentStatusResponse>} - Success response
|
|
263
|
+
* @name paymentStatus
|
|
264
|
+
* @summary: Credit Transaction
|
|
265
|
+
* @description: Credit Transaction - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/paymentStatus/).
|
|
266
|
+
*/
|
|
267
|
+
paymentStatus({ orderId, requestHeaders }?: BillingPlatformValidator.PaymentStatusParam, { responseHeaders }?: object): Promise<BillingPlatformModel.PaymentStatusResponse>;
|
|
268
|
+
/**
|
|
269
|
+
* @param {BillingPlatformValidator.PlanDowngradeParam} arg - Arg object
|
|
270
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
271
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
272
|
+
* @returns {Promise<BillingPlatformModel.PostDowngradeRes>} - Success response
|
|
273
|
+
* @name planDowngrade
|
|
274
|
+
* @summary: Plan change downgrade
|
|
275
|
+
* @description: Plan change downgrade - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/planDowngrade/).
|
|
276
|
+
*/
|
|
277
|
+
planDowngrade({ body, requestHeaders }?: BillingPlatformValidator.PlanDowngradeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.PostDowngradeRes>;
|
|
278
|
+
/**
|
|
279
|
+
* @param {BillingPlatformValidator.PlanDowngradeGetParam} arg - Arg object
|
|
280
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
281
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
282
|
+
* @returns {Promise<BillingPlatformModel.DowngradeRes>} - Success response
|
|
283
|
+
* @name planDowngradeGet
|
|
284
|
+
* @summary: Get plan change downgrade
|
|
285
|
+
* @description: Get plan change downgrade - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/planDowngradeGet/).
|
|
286
|
+
*/
|
|
287
|
+
planDowngradeGet({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.DowngradeRes>;
|
|
288
|
+
/**
|
|
289
|
+
* @param {BillingPlatformValidator.PlanStatusUpdateParam} arg - Arg object
|
|
290
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
291
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
292
|
+
* @returns {Promise<BillingPlatformModel.Plan>} - Success response
|
|
293
|
+
* @name planStatusUpdate
|
|
294
|
+
* @summary: Update subscription plan status.
|
|
295
|
+
* @description: Modify the status of a subscription plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/planStatusUpdate/).
|
|
296
|
+
*/
|
|
297
|
+
planStatusUpdate({ body, requestHeaders }?: BillingPlatformValidator.PlanStatusUpdateParam, { responseHeaders }?: object): Promise<BillingPlatformModel.Plan>;
|
|
298
|
+
/**
|
|
299
|
+
* @param {BillingPlatformValidator.SetupIntentParam} arg - Arg object
|
|
300
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
301
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
302
|
+
* @returns {Promise<BillingPlatformModel.SetupIntentRes>} - Success response
|
|
303
|
+
* @name setupIntent
|
|
304
|
+
* @summary: Setup Intent
|
|
305
|
+
* @description: Setup Intent - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/setupIntent/).
|
|
306
|
+
*/
|
|
307
|
+
setupIntent({ body, requestHeaders }?: BillingPlatformValidator.SetupIntentParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SetupIntentRes>;
|
|
308
|
+
/**
|
|
309
|
+
* @param {BillingPlatformValidator.SetupMandateParam} arg - Arg object
|
|
310
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
311
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
312
|
+
* @returns {Promise<BillingPlatformModel.Message>} - Success response
|
|
313
|
+
* @name setupMandate
|
|
314
|
+
* @summary: Setup Mandate
|
|
315
|
+
* @description: Setup Mandate - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/setupMandate/).
|
|
316
|
+
*/
|
|
317
|
+
setupMandate({ body, requestHeaders }?: BillingPlatformValidator.SetupMandateParam, { responseHeaders }?: object): Promise<BillingPlatformModel.Message>;
|
|
318
|
+
/**
|
|
319
|
+
* @param {BillingPlatformValidator.SetupPaymentParam} arg - Arg object
|
|
320
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
321
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
322
|
+
* @returns {Promise<BillingPlatformModel.SetupPayment>} - Success response
|
|
323
|
+
* @name setupPayment
|
|
324
|
+
* @summary: Setup Payment
|
|
325
|
+
* @description: Setup Payment - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/setupPayment/).
|
|
326
|
+
*/
|
|
327
|
+
setupPayment({ body, requestHeaders }?: BillingPlatformValidator.SetupPaymentParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SetupPayment>;
|
|
328
|
+
/**
|
|
329
|
+
* @param {BillingPlatformValidator.SubscriptionConfigsParam} arg - Arg object
|
|
330
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
331
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
332
|
+
* @returns {Promise<BillingPlatformModel.ConfigRes>} - Success response
|
|
333
|
+
* @name subscriptionConfigs
|
|
334
|
+
* @summary: API to get subscription config details
|
|
335
|
+
* @description: API to get subscription config details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscriptionConfigs/).
|
|
336
|
+
*/
|
|
337
|
+
subscriptionConfigs({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.ConfigRes>;
|
|
338
|
+
/**
|
|
339
|
+
* @param {BillingPlatformValidator.SubscriptionMethodsParam} arg - Arg object
|
|
340
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
341
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
342
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionMethods>} - Success response
|
|
343
|
+
* @name subscriptionMethods
|
|
344
|
+
* @summary: API to get subscription methods
|
|
345
|
+
* @description: API to get subscription methods. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscriptionMethods/).
|
|
346
|
+
*/
|
|
347
|
+
subscriptionMethods({ uniqueExternalId, requestHeaders }?: BillingPlatformValidator.SubscriptionMethodsParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionMethods>;
|
|
348
|
+
/**
|
|
349
|
+
* @param {BillingPlatformValidator.SubscriptionMethodsDeleteParam} arg - Arg object
|
|
350
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
351
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
352
|
+
* @returns {Promise<BillingPlatformModel.ResourceNotFound>} - Success response
|
|
353
|
+
* @name subscriptionMethodsDelete
|
|
354
|
+
* @summary: API to get subscription methods
|
|
355
|
+
* @description: API to get subscription methods. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscriptionMethodsDelete/).
|
|
356
|
+
*/
|
|
357
|
+
subscriptionMethodsDelete({ uniqueExternalId, paymentMethodId, requestHeaders }?: BillingPlatformValidator.SubscriptionMethodsDeleteParam, { responseHeaders }?: object): Promise<BillingPlatformModel.ResourceNotFound>;
|
|
358
|
+
/**
|
|
359
|
+
* @param {BillingPlatformValidator.SubscriptionPlanChangeParam} arg - Arg object
|
|
360
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
361
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
362
|
+
* @returns {Promise<BillingPlatformModel.PlanChangeDetails>} - Success response
|
|
363
|
+
* @name subscriptionPlanChange
|
|
364
|
+
* @summary: API to get plan change details of subscription
|
|
365
|
+
* @description: API to get plan change details of subscription. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscriptionPlanChange/).
|
|
366
|
+
*/
|
|
367
|
+
subscriptionPlanChange({ productSuite, coupon, uniqueId, platform, planId, requestHeaders }?: BillingPlatformValidator.SubscriptionPlanChangeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.PlanChangeDetails>;
|
|
368
|
+
/**
|
|
369
|
+
* @param {BillingPlatformValidator.SubscriptionRenewParam} arg - Arg object
|
|
370
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
371
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
372
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionRenewRes>} - Success response
|
|
373
|
+
* @name subscriptionRenew
|
|
374
|
+
* @summary: Subscription Renew
|
|
375
|
+
* @description: Subscription Renew - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscriptionRenew/).
|
|
376
|
+
*/
|
|
377
|
+
subscriptionRenew({ body, requestHeaders }?: BillingPlatformValidator.SubscriptionRenewParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionRenewRes>;
|
|
378
|
+
/**
|
|
379
|
+
* @param {BillingPlatformValidator.TopupCancelCreditParam} arg - Arg object
|
|
380
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
381
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
382
|
+
* @returns {Promise<BillingPlatformModel.CancelTopupRes>} - Success response
|
|
383
|
+
* @name topupCancelCredit
|
|
384
|
+
* @summary: Cancel Topup
|
|
385
|
+
* @description: Cancel Topup - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/topupCancelCredit/).
|
|
386
|
+
*/
|
|
387
|
+
topupCancelCredit({ body, requestHeaders }?: BillingPlatformValidator.TopupCancelCreditParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CancelTopupRes>;
|
|
388
|
+
/**
|
|
389
|
+
* @param {BillingPlatformValidator.TopupCreditParam} arg - Arg object
|
|
390
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
391
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
392
|
+
* @returns {Promise<BillingPlatformModel.TopupRes>} - Success response
|
|
393
|
+
* @name topupCredit
|
|
394
|
+
* @summary: Topup
|
|
395
|
+
* @description: Topup - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/topupCredit/).
|
|
396
|
+
*/
|
|
397
|
+
topupCredit({ body, requestHeaders }?: BillingPlatformValidator.TopupCreditParam, { responseHeaders }?: object): Promise<BillingPlatformModel.TopupRes>;
|
|
398
|
+
/**
|
|
399
|
+
* @param {BillingPlatformValidator.UpdateConsentParam} arg - Arg object
|
|
400
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
401
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
402
|
+
* @returns {Promise<BillingPlatformModel.StatusMessage>} - Success response
|
|
403
|
+
* @name updateConsent
|
|
404
|
+
* @summary: Update Consent
|
|
405
|
+
* @description: Update Consent - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/updateConsent/).
|
|
406
|
+
*/
|
|
407
|
+
updateConsent({ subscriberId, requestHeaders }?: BillingPlatformValidator.UpdateConsentParam, { responseHeaders }?: object): Promise<BillingPlatformModel.StatusMessage>;
|
|
408
|
+
/**
|
|
409
|
+
* @param {BillingPlatformValidator.UpdateSetupIntentParam} arg - Arg object
|
|
410
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
411
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
412
|
+
* @returns {Promise<BillingPlatformModel.StatusMessage>} - Success response
|
|
413
|
+
* @name updateSetupIntent
|
|
414
|
+
* @summary: Setup Intent
|
|
415
|
+
* @description: Setup Intent - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/updateSetupIntent/).
|
|
416
|
+
*/
|
|
417
|
+
updateSetupIntent({ body, requestHeaders }?: BillingPlatformValidator.UpdateSetupIntentParam, { responseHeaders }?: object): Promise<BillingPlatformModel.StatusMessage>;
|
|
418
|
+
/**
|
|
419
|
+
* @param {BillingPlatformValidator.UpgradePlanParam} arg - Arg object
|
|
420
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
421
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
422
|
+
* @returns {Promise<BillingPlatformModel.ResourceNotFound>} - Success response
|
|
423
|
+
* @name upgradePlan
|
|
424
|
+
* @summary: Post Methods
|
|
425
|
+
* @description: Admin user can modify the subscription plan for an seller account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/upgradePlan/).
|
|
426
|
+
*/
|
|
427
|
+
upgradePlan({ body, requestHeaders }?: BillingPlatformValidator.UpgradePlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.ResourceNotFound>;
|
|
428
|
+
/**
|
|
429
|
+
* @param {BillingPlatformValidator.UpsertCustomerDetailParam} arg - Arg object
|
|
430
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
431
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
432
|
+
* @returns {Promise<BillingPlatformModel.SubscriptionCustomer>} - Success response
|
|
433
|
+
* @name upsertCustomerDetail
|
|
434
|
+
* @summary: Update or insert customer details.
|
|
435
|
+
* @description: Allows you to modify or insert customer information in the billing system. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/upsertCustomerDetail/).
|
|
436
|
+
*/
|
|
437
|
+
upsertCustomerDetail({ body, requestHeaders }?: BillingPlatformValidator.UpsertCustomerDetailParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionCustomer>;
|
|
438
|
+
/**
|
|
439
|
+
* @param {BillingPlatformValidator.VerifyPaymentParam} arg - Arg object
|
|
440
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
441
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
442
|
+
* @returns {Promise<BillingPlatformModel.VerifyPaymentRes>} - Success response
|
|
443
|
+
* @name verifyPayment
|
|
444
|
+
* @summary: API to verify subscription payment
|
|
445
|
+
* @description: API to verify subscription payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/verifyPayment/).
|
|
446
|
+
*/
|
|
447
|
+
verifyPayment({ body, requestHeaders }?: BillingPlatformValidator.VerifyPaymentParam, { responseHeaders }?: object): Promise<BillingPlatformModel.VerifyPaymentRes>;
|
|
57
448
|
}
|
|
58
449
|
import BillingPlatformValidator = require("./BillingPlatformValidator");
|
|
59
450
|
import BillingPlatformModel = require("./BillingPlatformModel");
|