@gofynd/fdk-client-javascript 3.1.0-beta.1 → 3.2.0
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 +2 -2
- package/sdk/application/ApplicationClient.d.ts +2 -0
- package/sdk/application/ApplicationClient.js +2 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +81 -101
- package/sdk/application/Cart/CartApplicationClient.js +173 -511
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +214 -447
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -19
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -43
- package/sdk/application/Communication/CommunicationApplicationClient.js +4 -214
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +41 -54
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +39 -192
- package/sdk/application/Content/ContentApplicationClient.d.ts +61 -61
- package/sdk/application/Content/ContentApplicationClient.js +183 -366
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +2 -2
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +11 -30
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +6 -6
- package/sdk/application/Lead/LeadApplicationClient.js +24 -55
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +28 -117
- package/sdk/application/Logistic/LogisticApplicationClient.js +99 -492
- package/sdk/application/Order/OrderApplicationClient.d.ts +31 -51
- package/sdk/application/Order/OrderApplicationClient.js +89 -293
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +108 -218
- package/sdk/application/Payment/PaymentApplicationClient.js +100 -1081
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationClient.js +13 -66
- package/sdk/application/Share/ShareApplicationClient.d.ts +11 -11
- package/sdk/application/Share/ShareApplicationClient.js +35 -89
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +5 -25
- package/sdk/application/Theme/ThemeApplicationClient.js +24 -150
- package/sdk/application/User/UserApplicationClient.d.ts +23 -13
- package/sdk/application/User/UserApplicationClient.js +49 -407
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +4 -11
- package/sdk/common/Utility.d.ts +1 -1
- package/sdk/common/Utility.js +10 -7
- package/sdk/common/Validator.d.ts +1 -0
- package/sdk/common/Validator.js +20 -0
- package/sdk/common/utils.d.ts +0 -1
- package/sdk/common/utils.js +0 -14
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +10 -54
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +32 -364
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +54 -1
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +43 -0
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -5
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -35
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +52 -98
- package/sdk/partner/Lead/LeadPartnerModel.js +76 -100
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +172 -41
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +1222 -85
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +1921 -297
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +973 -258
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +13 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +148 -16
- package/sdk/partner/PartnerClient.d.ts +0 -6
- package/sdk/partner/PartnerClient.js +0 -9
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +21 -63
- package/sdk/partner/Theme/ThemePartnerClient.js +67 -392
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +72 -104
- package/sdk/partner/Theme/ThemePartnerModel.js +75 -101
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -5
- package/sdk/partner/Theme/ThemePartnerValidator.js +12 -42
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +673 -189
- package/sdk/partner/Webhook/WebhookPartnerModel.js +270 -159
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +0 -3
- package/sdk/partner/index.js +0 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +3 -3
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +172 -251
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +577 -648
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +270 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +192 -108
- package/sdk/platform/Cart/CartPlatformModel.d.ts +4554 -3154
- package/sdk/platform/Cart/CartPlatformModel.js +1935 -2854
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +380 -976
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2004 -6464
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +161 -1082
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +80 -884
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +568 -325
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1560 -1162
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9772 -7871
- package/sdk/platform/Catalog/CatalogPlatformModel.js +6978 -9516
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +231 -240
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +180 -188
- package/sdk/platform/Common/CommonPlatformClient.d.ts +6 -5
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +19 -25
- package/sdk/platform/Common/CommonPlatformModel.js +11 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +240 -376
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +589 -874
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +139 -170
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +126 -145
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +3 -56
- package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -307
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +330 -502
- package/sdk/platform/Communication/CommunicationPlatformModel.js +376 -610
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +3 -62
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +2 -48
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +72 -100
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +88 -146
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +270 -241
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +248 -226
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -31
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -25
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +117 -332
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +409 -1470
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +55 -158
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +41 -163
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +65 -142
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +103 -568
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +562 -1289
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +368 -1037
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +34 -80
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +24 -79
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +302 -248
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1292 -773
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +330 -218
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +325 -208
- package/sdk/platform/Content/ContentPlatformClient.d.ts +279 -118
- package/sdk/platform/Content/ContentPlatformClient.js +1617 -492
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2391 -924
- package/sdk/platform/Content/ContentPlatformModel.js +1314 -970
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +272 -134
- package/sdk/platform/Content/ContentPlatformValidator.js +295 -118
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +53 -43
- package/sdk/platform/Discount/DiscountPlatformClient.js +53 -43
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +383 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +117 -108
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +4 -163
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +4 -1078
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -141
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -177
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +30 -1123
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +24 -1135
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- 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 +24 -4
- package/sdk/platform/Lead/LeadPlatformClient.js +160 -4
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +60 -140
- package/sdk/platform/Lead/LeadPlatformModel.js +81 -162
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +29 -3
- package/sdk/platform/Lead/LeadPlatformValidator.js +28 -2
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +19 -98
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +27 -662
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +91 -118
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -127
- package/sdk/platform/Order/OrderPlatformClient.d.ts +406 -403
- package/sdk/platform/Order/OrderPlatformClient.js +1200 -1343
- package/sdk/platform/Order/OrderPlatformModel.d.ts +8665 -4505
- package/sdk/platform/Order/OrderPlatformModel.js +4088 -3601
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +666 -442
- package/sdk/platform/Order/OrderPlatformValidator.js +353 -312
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +67 -19
- package/sdk/platform/Partner/PartnerPlatformModel.js +26 -17
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +135 -382
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +937 -2452
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +100 -306
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +74 -305
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +56 -66
- package/sdk/platform/Payment/PaymentPlatformClient.js +124 -269
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +1307 -3536
- package/sdk/platform/Payment/PaymentPlatformModel.js +1389 -3692
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +35 -64
- package/sdk/platform/Payment/PaymentPlatformValidator.js +34 -60
- package/sdk/platform/PlatformClient.d.ts +0 -2
- package/sdk/platform/PlatformClient.js +0 -4
- 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 +12 -12
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -10
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +64 -136
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +111 -521
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +75 -117
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +50 -105
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +160 -149
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +766 -545
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +6196 -3978
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3181 -3895
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +294 -220
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +205 -149
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +86 -8
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +23 -6
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +16 -3
- package/sdk/platform/Share/SharePlatformModel.d.ts +53 -9
- package/sdk/platform/Share/SharePlatformModel.js +45 -5
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +17 -37
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +66 -204
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +25 -26
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +20 -31
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +8 -18
- package/sdk/platform/Theme/ThemePlatformClient.js +8 -85
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +17 -425
- package/sdk/platform/Theme/ThemePlatformModel.js +23 -329
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +3 -7
- package/sdk/platform/Theme/ThemePlatformValidator.js +2 -9
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +81 -18
- package/sdk/platform/User/UserPlatformApplicationClient.js +491 -27
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +126 -10
- package/sdk/platform/User/UserPlatformApplicationValidator.js +92 -7
- package/sdk/platform/User/UserPlatformModel.d.ts +317 -218
- package/sdk/platform/User/UserPlatformModel.js +253 -210
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +813 -426
- package/sdk/platform/Webhook/WebhookPlatformModel.js +446 -395
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -1
- package/sdk/platform/index.js +0 -2
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
- package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
- package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
- package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +4 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -113
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +46 -114
- package/sdk/public/Configuration/ConfigurationPublicModel.js +32 -117
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -11
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +0 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +36 -25
- package/sdk/public/Content/ContentPublicClient.js +254 -280
- package/sdk/public/Content/ContentPublicModel.d.ts +151 -38
- package/sdk/public/Content/ContentPublicModel.js +98 -44
- package/sdk/public/Content/ContentPublicValidator.d.ts +18 -17
- package/sdk/public/Content/ContentPublicValidator.js +26 -19
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +6 -11
- package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
- package/sdk/public/Partner/PartnerPublicModel.js +81 -71
- package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
- package/sdk/public/PublicClient.d.ts +2 -0
- package/sdk/public/PublicClient.js +4 -0
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +9 -48
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +215 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +66 -61
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -0
- package/sdk/public/index.js +2 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +0 -66
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +0 -431
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +0 -231
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +0 -152
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +0 -8
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +0 -39
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +0 -26
- package/sdk/partner/Catalog/CatalogPartnerClient.js +0 -173
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +0 -238
- package/sdk/partner/Catalog/CatalogPartnerModel.js +0 -248
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +0 -5
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +0 -19
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +0 -116
- package/sdk/partner/Payment/PaymentPartnerClient.js +0 -857
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +0 -388
- package/sdk/partner/Payment/PaymentPartnerModel.js +0 -442
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +0 -14
- package/sdk/partner/Payment/PaymentPartnerValidator.js +0 -74
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2895
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2150
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
|
@@ -18,7 +18,7 @@ class Payment {
|
|
|
18
18
|
* @param {PaymentPlatformValidator.ActivateAndDectivatePayoutParam} arg - Arg object
|
|
19
19
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
20
20
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
21
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
21
|
+
* @returns {Promise<PaymentPlatformModel.UpdatePayoutDetails>} - Success response
|
|
22
22
|
* @name activateAndDectivatePayout
|
|
23
23
|
* @summary: Activate/Deactivate payout
|
|
24
24
|
* @description: Enable or disable payout functionality. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/activateAndDectivatePayout/).
|
|
@@ -78,7 +78,7 @@ class Payment {
|
|
|
78
78
|
|
|
79
79
|
const {
|
|
80
80
|
error: res_error,
|
|
81
|
-
} = PaymentPlatformModel.
|
|
81
|
+
} = PaymentPlatformModel.UpdatePayoutDetails().validate(responseData, {
|
|
82
82
|
abortEarly: false,
|
|
83
83
|
allowUnknown: true,
|
|
84
84
|
});
|
|
@@ -97,95 +97,14 @@ class Payment {
|
|
|
97
97
|
return response;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
/**
|
|
101
|
-
* @param {PaymentPlatformValidator.ActivateAndDectivatePayoutsParam} arg - Arg object
|
|
102
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
103
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
104
|
-
* @returns {Promise<PaymentPlatformModel.UpdatePayoutResponse>} - Success response
|
|
105
|
-
* @name activateAndDectivatePayouts
|
|
106
|
-
* @summary: Activate/Deactivate payout.
|
|
107
|
-
* @description: Enable or disable payout functionality. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/activateAndDectivatePayouts/).
|
|
108
|
-
*/
|
|
109
|
-
async activateAndDectivatePayouts(
|
|
110
|
-
{ body, requestHeaders } = { requestHeaders: {} },
|
|
111
|
-
{ responseHeaders } = { responseHeaders: false }
|
|
112
|
-
) {
|
|
113
|
-
const {
|
|
114
|
-
error,
|
|
115
|
-
} = PaymentPlatformValidator.activateAndDectivatePayouts().validate(
|
|
116
|
-
{
|
|
117
|
-
body,
|
|
118
|
-
},
|
|
119
|
-
{ abortEarly: false, allowUnknown: true }
|
|
120
|
-
);
|
|
121
|
-
if (error) {
|
|
122
|
-
return Promise.reject(new FDKClientValidationError(error));
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// Showing warrnings if extra unknown parameters are found
|
|
126
|
-
const {
|
|
127
|
-
error: warrning,
|
|
128
|
-
} = PaymentPlatformValidator.activateAndDectivatePayouts().validate(
|
|
129
|
-
{
|
|
130
|
-
body,
|
|
131
|
-
},
|
|
132
|
-
{ abortEarly: false, allowUnknown: false }
|
|
133
|
-
);
|
|
134
|
-
if (warrning) {
|
|
135
|
-
Logger({
|
|
136
|
-
level: "WARN",
|
|
137
|
-
message: `Parameter Validation warrnings for platform > Payment > activateAndDectivatePayouts \n ${warrning}`,
|
|
138
|
-
});
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
const query_params = {};
|
|
142
|
-
|
|
143
|
-
const xHeaders = {};
|
|
144
|
-
|
|
145
|
-
const response = await PlatformAPIClient.execute(
|
|
146
|
-
this.config,
|
|
147
|
-
"patch",
|
|
148
|
-
`/service/platform/payment/v1.0/company/${this.config.companyId}/payouts`,
|
|
149
|
-
query_params,
|
|
150
|
-
body,
|
|
151
|
-
{ ...xHeaders, ...requestHeaders },
|
|
152
|
-
{ responseHeaders }
|
|
153
|
-
);
|
|
154
|
-
|
|
155
|
-
let responseData = response;
|
|
156
|
-
if (responseHeaders) {
|
|
157
|
-
responseData = response[0];
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
const {
|
|
161
|
-
error: res_error,
|
|
162
|
-
} = PaymentPlatformModel.UpdatePayoutResponse().validate(responseData, {
|
|
163
|
-
abortEarly: false,
|
|
164
|
-
allowUnknown: true,
|
|
165
|
-
});
|
|
166
|
-
|
|
167
|
-
if (res_error) {
|
|
168
|
-
if (this.config.options.strictResponseCheck === true) {
|
|
169
|
-
return Promise.reject(new FDKResponseValidationError(res_error));
|
|
170
|
-
} else {
|
|
171
|
-
Logger({
|
|
172
|
-
level: "WARN",
|
|
173
|
-
message: `Response Validation Warnings for platform > Payment > activateAndDectivatePayouts \n ${res_error}`,
|
|
174
|
-
});
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
return response;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
100
|
/**
|
|
182
101
|
* @param {PaymentPlatformValidator.DeletePayoutParam} arg - Arg object
|
|
183
102
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
184
103
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
185
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
104
|
+
* @returns {Promise<PaymentPlatformModel.DeletePayoutDetails>} - Success response
|
|
186
105
|
* @name deletePayout
|
|
187
|
-
* @summary: Delete
|
|
188
|
-
* @description:
|
|
106
|
+
* @summary: Delete payout
|
|
107
|
+
* @description: Remove a payout transaction from the system. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/deletePayout/).
|
|
189
108
|
*/
|
|
190
109
|
async deletePayout(
|
|
191
110
|
{ uniqueTransferNo, requestHeaders } = { requestHeaders: {} },
|
|
@@ -238,7 +157,7 @@ class Payment {
|
|
|
238
157
|
|
|
239
158
|
const {
|
|
240
159
|
error: res_error,
|
|
241
|
-
} = PaymentPlatformModel.
|
|
160
|
+
} = PaymentPlatformModel.DeletePayoutDetails().validate(responseData, {
|
|
242
161
|
abortEarly: false,
|
|
243
162
|
allowUnknown: true,
|
|
244
163
|
});
|
|
@@ -258,21 +177,30 @@ class Payment {
|
|
|
258
177
|
}
|
|
259
178
|
|
|
260
179
|
/**
|
|
261
|
-
* @param {PaymentPlatformValidator.
|
|
180
|
+
* @param {PaymentPlatformValidator.DeleteSubscriptionPaymentMethodParam} arg
|
|
181
|
+
* - Arg object
|
|
182
|
+
*
|
|
262
183
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
263
184
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
264
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
265
|
-
*
|
|
266
|
-
*
|
|
267
|
-
* @
|
|
185
|
+
* @returns {Promise<PaymentPlatformModel.DeleteSubscriptionPaymentMethodDetails>}
|
|
186
|
+
* - Success response
|
|
187
|
+
*
|
|
188
|
+
* @name deleteSubscriptionPaymentMethod
|
|
189
|
+
* @summary: Delete subscription payment method
|
|
190
|
+
* @description: Remove a payment method from subscription options. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/deleteSubscriptionPaymentMethod/).
|
|
268
191
|
*/
|
|
269
|
-
async
|
|
270
|
-
{
|
|
192
|
+
async deleteSubscriptionPaymentMethod(
|
|
193
|
+
{ uniqueExternalId, paymentMethodId, requestHeaders } = {
|
|
194
|
+
requestHeaders: {},
|
|
195
|
+
},
|
|
271
196
|
{ responseHeaders } = { responseHeaders: false }
|
|
272
197
|
) {
|
|
273
|
-
const {
|
|
198
|
+
const {
|
|
199
|
+
error,
|
|
200
|
+
} = PaymentPlatformValidator.deleteSubscriptionPaymentMethod().validate(
|
|
274
201
|
{
|
|
275
|
-
|
|
202
|
+
uniqueExternalId,
|
|
203
|
+
paymentMethodId,
|
|
276
204
|
},
|
|
277
205
|
{ abortEarly: false, allowUnknown: true }
|
|
278
206
|
);
|
|
@@ -283,28 +211,30 @@ class Payment {
|
|
|
283
211
|
// Showing warrnings if extra unknown parameters are found
|
|
284
212
|
const {
|
|
285
213
|
error: warrning,
|
|
286
|
-
} = PaymentPlatformValidator.
|
|
214
|
+
} = PaymentPlatformValidator.deleteSubscriptionPaymentMethod().validate(
|
|
287
215
|
{
|
|
288
|
-
|
|
216
|
+
uniqueExternalId,
|
|
217
|
+
paymentMethodId,
|
|
289
218
|
},
|
|
290
219
|
{ abortEarly: false, allowUnknown: false }
|
|
291
220
|
);
|
|
292
221
|
if (warrning) {
|
|
293
222
|
Logger({
|
|
294
223
|
level: "WARN",
|
|
295
|
-
message: `Parameter Validation warrnings for platform > Payment >
|
|
224
|
+
message: `Parameter Validation warrnings for platform > Payment > deleteSubscriptionPaymentMethod \n ${warrning}`,
|
|
296
225
|
});
|
|
297
226
|
}
|
|
298
227
|
|
|
299
228
|
const query_params = {};
|
|
300
|
-
query_params["
|
|
229
|
+
query_params["unique_external_id"] = uniqueExternalId;
|
|
230
|
+
query_params["payment_method_id"] = paymentMethodId;
|
|
301
231
|
|
|
302
232
|
const xHeaders = {};
|
|
303
233
|
|
|
304
234
|
const response = await PlatformAPIClient.execute(
|
|
305
235
|
this.config,
|
|
306
236
|
"delete",
|
|
307
|
-
`/service/platform/payment/v1.0/company/${this.config.companyId}/
|
|
237
|
+
`/service/platform/payment/v1.0/company/${this.config.companyId}/subscription/methods`,
|
|
308
238
|
query_params,
|
|
309
239
|
undefined,
|
|
310
240
|
{ ...xHeaders, ...requestHeaders },
|
|
@@ -318,10 +248,10 @@ class Payment {
|
|
|
318
248
|
|
|
319
249
|
const {
|
|
320
250
|
error: res_error,
|
|
321
|
-
} = PaymentPlatformModel.
|
|
322
|
-
|
|
323
|
-
allowUnknown: true
|
|
324
|
-
|
|
251
|
+
} = PaymentPlatformModel.DeleteSubscriptionPaymentMethodDetails().validate(
|
|
252
|
+
responseData,
|
|
253
|
+
{ abortEarly: false, allowUnknown: true }
|
|
254
|
+
);
|
|
325
255
|
|
|
326
256
|
if (res_error) {
|
|
327
257
|
if (this.config.options.strictResponseCheck === true) {
|
|
@@ -329,7 +259,7 @@ class Payment {
|
|
|
329
259
|
} else {
|
|
330
260
|
Logger({
|
|
331
261
|
level: "WARN",
|
|
332
|
-
message: `Response Validation Warnings for platform > Payment >
|
|
262
|
+
message: `Response Validation Warnings for platform > Payment > deleteSubscriptionPaymentMethod \n ${res_error}`,
|
|
333
263
|
});
|
|
334
264
|
}
|
|
335
265
|
}
|
|
@@ -338,23 +268,20 @@ class Payment {
|
|
|
338
268
|
}
|
|
339
269
|
|
|
340
270
|
/**
|
|
341
|
-
* @param {PaymentPlatformValidator.
|
|
271
|
+
* @param {PaymentPlatformValidator.GetAllPayoutsParam} arg - Arg object
|
|
342
272
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
343
273
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
344
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
345
|
-
* @name
|
|
346
|
-
* @summary:
|
|
347
|
-
* @description:
|
|
274
|
+
* @returns {Promise<PaymentPlatformModel.PayoutsDetails>} - Success response
|
|
275
|
+
* @name getAllPayouts
|
|
276
|
+
* @summary: List payouts
|
|
277
|
+
* @description: Retrieve a list of all payout transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getAllPayouts/).
|
|
348
278
|
*/
|
|
349
|
-
async
|
|
350
|
-
{
|
|
351
|
-
requestHeaders: {},
|
|
352
|
-
},
|
|
279
|
+
async getAllPayouts(
|
|
280
|
+
{ uniqueExternalId, requestHeaders } = { requestHeaders: {} },
|
|
353
281
|
{ responseHeaders } = { responseHeaders: false }
|
|
354
282
|
) {
|
|
355
|
-
const { error } = PaymentPlatformValidator.
|
|
283
|
+
const { error } = PaymentPlatformValidator.getAllPayouts().validate(
|
|
356
284
|
{
|
|
357
|
-
uniqueTransferNo,
|
|
358
285
|
uniqueExternalId,
|
|
359
286
|
},
|
|
360
287
|
{ abortEarly: false, allowUnknown: true }
|
|
@@ -366,9 +293,8 @@ class Payment {
|
|
|
366
293
|
// Showing warrnings if extra unknown parameters are found
|
|
367
294
|
const {
|
|
368
295
|
error: warrning,
|
|
369
|
-
} = PaymentPlatformValidator.
|
|
296
|
+
} = PaymentPlatformValidator.getAllPayouts().validate(
|
|
370
297
|
{
|
|
371
|
-
uniqueTransferNo,
|
|
372
298
|
uniqueExternalId,
|
|
373
299
|
},
|
|
374
300
|
{ abortEarly: false, allowUnknown: false }
|
|
@@ -376,7 +302,7 @@ class Payment {
|
|
|
376
302
|
if (warrning) {
|
|
377
303
|
Logger({
|
|
378
304
|
level: "WARN",
|
|
379
|
-
message: `Parameter Validation warrnings for platform > Payment >
|
|
305
|
+
message: `Parameter Validation warrnings for platform > Payment > getAllPayouts \n ${warrning}`,
|
|
380
306
|
});
|
|
381
307
|
}
|
|
382
308
|
|
|
@@ -388,7 +314,7 @@ class Payment {
|
|
|
388
314
|
const response = await PlatformAPIClient.execute(
|
|
389
315
|
this.config,
|
|
390
316
|
"get",
|
|
391
|
-
`/service/platform/payment/v1.0/company/${this.config.companyId}/payouts
|
|
317
|
+
`/service/platform/payment/v1.0/company/${this.config.companyId}/payouts`,
|
|
392
318
|
query_params,
|
|
393
319
|
undefined,
|
|
394
320
|
{ ...xHeaders, ...requestHeaders },
|
|
@@ -402,7 +328,7 @@ class Payment {
|
|
|
402
328
|
|
|
403
329
|
const {
|
|
404
330
|
error: res_error,
|
|
405
|
-
} = PaymentPlatformModel.
|
|
331
|
+
} = PaymentPlatformModel.PayoutsDetails().validate(responseData, {
|
|
406
332
|
abortEarly: false,
|
|
407
333
|
allowUnknown: true,
|
|
408
334
|
});
|
|
@@ -413,7 +339,7 @@ class Payment {
|
|
|
413
339
|
} else {
|
|
414
340
|
Logger({
|
|
415
341
|
level: "WARN",
|
|
416
|
-
message: `Response Validation Warnings for platform > Payment >
|
|
342
|
+
message: `Response Validation Warnings for platform > Payment > getAllPayouts \n ${res_error}`,
|
|
417
343
|
});
|
|
418
344
|
}
|
|
419
345
|
}
|
|
@@ -422,22 +348,21 @@ class Payment {
|
|
|
422
348
|
}
|
|
423
349
|
|
|
424
350
|
/**
|
|
425
|
-
* @param {PaymentPlatformValidator.
|
|
351
|
+
* @param {PaymentPlatformValidator.GetSubscriptionConfigParam} arg - Arg object
|
|
426
352
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
427
353
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
428
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
429
|
-
*
|
|
430
|
-
* @
|
|
431
|
-
* @
|
|
354
|
+
* @returns {Promise<PaymentPlatformModel.SubscriptionConfigDetails>} -
|
|
355
|
+
* Success response
|
|
356
|
+
* @name getSubscriptionConfig
|
|
357
|
+
* @summary: Get subscription config
|
|
358
|
+
* @description: Retrieve configuration settings for subscriptions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getSubscriptionConfig/).
|
|
432
359
|
*/
|
|
433
|
-
async
|
|
434
|
-
{
|
|
360
|
+
async getSubscriptionConfig(
|
|
361
|
+
{ requestHeaders } = { requestHeaders: {} },
|
|
435
362
|
{ responseHeaders } = { responseHeaders: false }
|
|
436
363
|
) {
|
|
437
|
-
const { error } = PaymentPlatformValidator.
|
|
438
|
-
{
|
|
439
|
-
uniqueExternalId,
|
|
440
|
-
},
|
|
364
|
+
const { error } = PaymentPlatformValidator.getSubscriptionConfig().validate(
|
|
365
|
+
{},
|
|
441
366
|
{ abortEarly: false, allowUnknown: true }
|
|
442
367
|
);
|
|
443
368
|
if (error) {
|
|
@@ -447,28 +372,25 @@ class Payment {
|
|
|
447
372
|
// Showing warrnings if extra unknown parameters are found
|
|
448
373
|
const {
|
|
449
374
|
error: warrning,
|
|
450
|
-
} = PaymentPlatformValidator.
|
|
451
|
-
{
|
|
452
|
-
uniqueExternalId,
|
|
453
|
-
},
|
|
375
|
+
} = PaymentPlatformValidator.getSubscriptionConfig().validate(
|
|
376
|
+
{},
|
|
454
377
|
{ abortEarly: false, allowUnknown: false }
|
|
455
378
|
);
|
|
456
379
|
if (warrning) {
|
|
457
380
|
Logger({
|
|
458
381
|
level: "WARN",
|
|
459
|
-
message: `Parameter Validation warrnings for platform > Payment >
|
|
382
|
+
message: `Parameter Validation warrnings for platform > Payment > getSubscriptionConfig \n ${warrning}`,
|
|
460
383
|
});
|
|
461
384
|
}
|
|
462
385
|
|
|
463
386
|
const query_params = {};
|
|
464
|
-
query_params["unique_external_id"] = uniqueExternalId;
|
|
465
387
|
|
|
466
388
|
const xHeaders = {};
|
|
467
389
|
|
|
468
390
|
const response = await PlatformAPIClient.execute(
|
|
469
391
|
this.config,
|
|
470
392
|
"get",
|
|
471
|
-
`/service/platform/payment/v1.0/company/${this.config.companyId}/
|
|
393
|
+
`/service/platform/payment/v1.0/company/${this.config.companyId}/subscription/configs`,
|
|
472
394
|
query_params,
|
|
473
395
|
undefined,
|
|
474
396
|
{ ...xHeaders, ...requestHeaders },
|
|
@@ -482,10 +404,10 @@ class Payment {
|
|
|
482
404
|
|
|
483
405
|
const {
|
|
484
406
|
error: res_error,
|
|
485
|
-
} = PaymentPlatformModel.
|
|
486
|
-
|
|
487
|
-
allowUnknown: true
|
|
488
|
-
|
|
407
|
+
} = PaymentPlatformModel.SubscriptionConfigDetails().validate(
|
|
408
|
+
responseData,
|
|
409
|
+
{ abortEarly: false, allowUnknown: true }
|
|
410
|
+
);
|
|
489
411
|
|
|
490
412
|
if (res_error) {
|
|
491
413
|
if (this.config.options.strictResponseCheck === true) {
|
|
@@ -493,7 +415,7 @@ class Payment {
|
|
|
493
415
|
} else {
|
|
494
416
|
Logger({
|
|
495
417
|
level: "WARN",
|
|
496
|
-
message: `Response Validation Warnings for platform > Payment >
|
|
418
|
+
message: `Response Validation Warnings for platform > Payment > getSubscriptionConfig \n ${res_error}`,
|
|
497
419
|
});
|
|
498
420
|
}
|
|
499
421
|
}
|
|
@@ -502,23 +424,28 @@ class Payment {
|
|
|
502
424
|
}
|
|
503
425
|
|
|
504
426
|
/**
|
|
505
|
-
* @param {PaymentPlatformValidator.
|
|
427
|
+
* @param {PaymentPlatformValidator.GetSubscriptionPaymentMethodParam} arg
|
|
428
|
+
* - Arg object
|
|
429
|
+
*
|
|
506
430
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
507
431
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
508
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
509
|
-
* Success response
|
|
510
|
-
*
|
|
511
|
-
* @
|
|
512
|
-
* @
|
|
432
|
+
* @returns {Promise<PaymentPlatformModel.SubscriptionPaymentMethodDetails>}
|
|
433
|
+
* - Success response
|
|
434
|
+
*
|
|
435
|
+
* @name getSubscriptionPaymentMethod
|
|
436
|
+
* @summary: Get subscription payment method
|
|
437
|
+
* @description: Retrieve payment methods for subscriptions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getSubscriptionPaymentMethod/).
|
|
513
438
|
*/
|
|
514
|
-
async
|
|
515
|
-
{ requestHeaders } = { requestHeaders: {} },
|
|
439
|
+
async getSubscriptionPaymentMethod(
|
|
440
|
+
{ uniqueExternalId, requestHeaders } = { requestHeaders: {} },
|
|
516
441
|
{ responseHeaders } = { responseHeaders: false }
|
|
517
442
|
) {
|
|
518
443
|
const {
|
|
519
444
|
error,
|
|
520
|
-
} = PaymentPlatformValidator.
|
|
521
|
-
{
|
|
445
|
+
} = PaymentPlatformValidator.getSubscriptionPaymentMethod().validate(
|
|
446
|
+
{
|
|
447
|
+
uniqueExternalId,
|
|
448
|
+
},
|
|
522
449
|
{ abortEarly: false, allowUnknown: true }
|
|
523
450
|
);
|
|
524
451
|
if (error) {
|
|
@@ -528,25 +455,28 @@ class Payment {
|
|
|
528
455
|
// Showing warrnings if extra unknown parameters are found
|
|
529
456
|
const {
|
|
530
457
|
error: warrning,
|
|
531
|
-
} = PaymentPlatformValidator.
|
|
532
|
-
{
|
|
458
|
+
} = PaymentPlatformValidator.getSubscriptionPaymentMethod().validate(
|
|
459
|
+
{
|
|
460
|
+
uniqueExternalId,
|
|
461
|
+
},
|
|
533
462
|
{ abortEarly: false, allowUnknown: false }
|
|
534
463
|
);
|
|
535
464
|
if (warrning) {
|
|
536
465
|
Logger({
|
|
537
466
|
level: "WARN",
|
|
538
|
-
message: `Parameter Validation warrnings for platform > Payment >
|
|
467
|
+
message: `Parameter Validation warrnings for platform > Payment > getSubscriptionPaymentMethod \n ${warrning}`,
|
|
539
468
|
});
|
|
540
469
|
}
|
|
541
470
|
|
|
542
471
|
const query_params = {};
|
|
472
|
+
query_params["unique_external_id"] = uniqueExternalId;
|
|
543
473
|
|
|
544
474
|
const xHeaders = {};
|
|
545
475
|
|
|
546
476
|
const response = await PlatformAPIClient.execute(
|
|
547
477
|
this.config,
|
|
548
478
|
"get",
|
|
549
|
-
`/service/platform/payment/v1.0/company/${this.config.companyId}/
|
|
479
|
+
`/service/platform/payment/v1.0/company/${this.config.companyId}/subscription/methods`,
|
|
550
480
|
query_params,
|
|
551
481
|
undefined,
|
|
552
482
|
{ ...xHeaders, ...requestHeaders },
|
|
@@ -560,7 +490,7 @@ class Payment {
|
|
|
560
490
|
|
|
561
491
|
const {
|
|
562
492
|
error: res_error,
|
|
563
|
-
} = PaymentPlatformModel.
|
|
493
|
+
} = PaymentPlatformModel.SubscriptionPaymentMethodDetails().validate(
|
|
564
494
|
responseData,
|
|
565
495
|
{ abortEarly: false, allowUnknown: true }
|
|
566
496
|
);
|
|
@@ -571,7 +501,7 @@ class Payment {
|
|
|
571
501
|
} else {
|
|
572
502
|
Logger({
|
|
573
503
|
level: "WARN",
|
|
574
|
-
message: `Response Validation Warnings for platform > Payment >
|
|
504
|
+
message: `Response Validation Warnings for platform > Payment > getSubscriptionPaymentMethod \n ${res_error}`,
|
|
575
505
|
});
|
|
576
506
|
}
|
|
577
507
|
}
|
|
@@ -583,9 +513,9 @@ class Payment {
|
|
|
583
513
|
* @param {PaymentPlatformValidator.SavePayoutParam} arg - Arg object
|
|
584
514
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
585
515
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
586
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
516
|
+
* @returns {Promise<PaymentPlatformModel.PayoutDetails>} - Success response
|
|
587
517
|
* @name savePayout
|
|
588
|
-
* @summary: Save payout
|
|
518
|
+
* @summary: Save payout
|
|
589
519
|
* @description: Store and process a payout transaction. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/savePayout/).
|
|
590
520
|
*/
|
|
591
521
|
async savePayout(
|
|
@@ -637,7 +567,7 @@ class Payment {
|
|
|
637
567
|
|
|
638
568
|
const {
|
|
639
569
|
error: res_error,
|
|
640
|
-
} = PaymentPlatformModel.
|
|
570
|
+
} = PaymentPlatformModel.PayoutDetails().validate(responseData, {
|
|
641
571
|
abortEarly: false,
|
|
642
572
|
allowUnknown: true,
|
|
643
573
|
});
|
|
@@ -657,21 +587,24 @@ class Payment {
|
|
|
657
587
|
}
|
|
658
588
|
|
|
659
589
|
/**
|
|
660
|
-
* @param {PaymentPlatformValidator.
|
|
590
|
+
* @param {PaymentPlatformValidator.SaveSubscriptionSetupIntentParam} arg - Arg object
|
|
661
591
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
662
592
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
663
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
664
|
-
*
|
|
665
|
-
*
|
|
666
|
-
* @
|
|
593
|
+
* @returns {Promise<PaymentPlatformModel.SaveSubscriptionSetupIntentDetails>}
|
|
594
|
+
* - Success response
|
|
595
|
+
*
|
|
596
|
+
* @name saveSubscriptionSetupIntent
|
|
597
|
+
* @summary: Save subscription setup intent
|
|
598
|
+
* @description: Store and process setup intent for subscriptions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/saveSubscriptionSetupIntent/).
|
|
667
599
|
*/
|
|
668
|
-
async
|
|
669
|
-
{
|
|
600
|
+
async saveSubscriptionSetupIntent(
|
|
601
|
+
{ body, requestHeaders } = { requestHeaders: {} },
|
|
670
602
|
{ responseHeaders } = { responseHeaders: false }
|
|
671
603
|
) {
|
|
672
|
-
const {
|
|
604
|
+
const {
|
|
605
|
+
error,
|
|
606
|
+
} = PaymentPlatformValidator.saveSubscriptionSetupIntent().validate(
|
|
673
607
|
{
|
|
674
|
-
uniqueTransferNo,
|
|
675
608
|
body,
|
|
676
609
|
},
|
|
677
610
|
{ abortEarly: false, allowUnknown: true }
|
|
@@ -681,9 +614,10 @@ class Payment {
|
|
|
681
614
|
}
|
|
682
615
|
|
|
683
616
|
// Showing warrnings if extra unknown parameters are found
|
|
684
|
-
const {
|
|
617
|
+
const {
|
|
618
|
+
error: warrning,
|
|
619
|
+
} = PaymentPlatformValidator.saveSubscriptionSetupIntent().validate(
|
|
685
620
|
{
|
|
686
|
-
uniqueTransferNo,
|
|
687
621
|
body,
|
|
688
622
|
},
|
|
689
623
|
{ abortEarly: false, allowUnknown: false }
|
|
@@ -691,7 +625,7 @@ class Payment {
|
|
|
691
625
|
if (warrning) {
|
|
692
626
|
Logger({
|
|
693
627
|
level: "WARN",
|
|
694
|
-
message: `Parameter Validation warrnings for platform > Payment >
|
|
628
|
+
message: `Parameter Validation warrnings for platform > Payment > saveSubscriptionSetupIntent \n ${warrning}`,
|
|
695
629
|
});
|
|
696
630
|
}
|
|
697
631
|
|
|
@@ -702,7 +636,7 @@ class Payment {
|
|
|
702
636
|
const response = await PlatformAPIClient.execute(
|
|
703
637
|
this.config,
|
|
704
638
|
"post",
|
|
705
|
-
`/service/platform/payment/v1.0/company/${this.config.companyId}/
|
|
639
|
+
`/service/platform/payment/v1.0/company/${this.config.companyId}/subscription/setup/intent`,
|
|
706
640
|
query_params,
|
|
707
641
|
body,
|
|
708
642
|
{ ...xHeaders, ...requestHeaders },
|
|
@@ -716,10 +650,10 @@ class Payment {
|
|
|
716
650
|
|
|
717
651
|
const {
|
|
718
652
|
error: res_error,
|
|
719
|
-
} = PaymentPlatformModel.
|
|
720
|
-
|
|
721
|
-
allowUnknown: true
|
|
722
|
-
|
|
653
|
+
} = PaymentPlatformModel.SaveSubscriptionSetupIntentDetails().validate(
|
|
654
|
+
responseData,
|
|
655
|
+
{ abortEarly: false, allowUnknown: true }
|
|
656
|
+
);
|
|
723
657
|
|
|
724
658
|
if (res_error) {
|
|
725
659
|
if (this.config.options.strictResponseCheck === true) {
|
|
@@ -727,7 +661,7 @@ class Payment {
|
|
|
727
661
|
} else {
|
|
728
662
|
Logger({
|
|
729
663
|
level: "WARN",
|
|
730
|
-
message: `Response Validation Warnings for platform > Payment >
|
|
664
|
+
message: `Response Validation Warnings for platform > Payment > saveSubscriptionSetupIntent \n ${res_error}`,
|
|
731
665
|
});
|
|
732
666
|
}
|
|
733
667
|
}
|
|
@@ -739,10 +673,10 @@ class Payment {
|
|
|
739
673
|
* @param {PaymentPlatformValidator.UpdatePayoutParam} arg - Arg object
|
|
740
674
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
741
675
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
742
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
676
|
+
* @returns {Promise<PaymentPlatformModel.UpdatePayoutDetails>} - Success response
|
|
743
677
|
* @name updatePayout
|
|
744
|
-
* @summary: Update
|
|
745
|
-
* @description:
|
|
678
|
+
* @summary: Update payout
|
|
679
|
+
* @description: Modify the details of a payout transaction. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/updatePayout/).
|
|
746
680
|
*/
|
|
747
681
|
async updatePayout(
|
|
748
682
|
{ uniqueTransferNo, body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -797,7 +731,7 @@ class Payment {
|
|
|
797
731
|
|
|
798
732
|
const {
|
|
799
733
|
error: res_error,
|
|
800
|
-
} = PaymentPlatformModel.
|
|
734
|
+
} = PaymentPlatformModel.UpdatePayoutDetails().validate(responseData, {
|
|
801
735
|
abortEarly: false,
|
|
802
736
|
allowUnknown: true,
|
|
803
737
|
});
|
|
@@ -816,92 +750,13 @@ class Payment {
|
|
|
816
750
|
return response;
|
|
817
751
|
}
|
|
818
752
|
|
|
819
|
-
/**
|
|
820
|
-
* @param {PaymentPlatformValidator.UpdatePayoutsParam} arg - Arg object
|
|
821
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
822
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
823
|
-
* @returns {Promise<PaymentPlatformModel.UpdatePayoutResponse>} - Success response
|
|
824
|
-
* @name updatePayouts
|
|
825
|
-
* @summary: Update payout.
|
|
826
|
-
* @description: Modify the details of a payout transaction. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/updatePayouts/).
|
|
827
|
-
*/
|
|
828
|
-
async updatePayouts(
|
|
829
|
-
{ body, requestHeaders } = { requestHeaders: {} },
|
|
830
|
-
{ responseHeaders } = { responseHeaders: false }
|
|
831
|
-
) {
|
|
832
|
-
const { error } = PaymentPlatformValidator.updatePayouts().validate(
|
|
833
|
-
{
|
|
834
|
-
body,
|
|
835
|
-
},
|
|
836
|
-
{ abortEarly: false, allowUnknown: true }
|
|
837
|
-
);
|
|
838
|
-
if (error) {
|
|
839
|
-
return Promise.reject(new FDKClientValidationError(error));
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
// Showing warrnings if extra unknown parameters are found
|
|
843
|
-
const {
|
|
844
|
-
error: warrning,
|
|
845
|
-
} = PaymentPlatformValidator.updatePayouts().validate(
|
|
846
|
-
{
|
|
847
|
-
body,
|
|
848
|
-
},
|
|
849
|
-
{ abortEarly: false, allowUnknown: false }
|
|
850
|
-
);
|
|
851
|
-
if (warrning) {
|
|
852
|
-
Logger({
|
|
853
|
-
level: "WARN",
|
|
854
|
-
message: `Parameter Validation warrnings for platform > Payment > updatePayouts \n ${warrning}`,
|
|
855
|
-
});
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
const query_params = {};
|
|
859
|
-
|
|
860
|
-
const xHeaders = {};
|
|
861
|
-
|
|
862
|
-
const response = await PlatformAPIClient.execute(
|
|
863
|
-
this.config,
|
|
864
|
-
"put",
|
|
865
|
-
`/service/platform/payment/v1.0/company/${this.config.companyId}/payouts`,
|
|
866
|
-
query_params,
|
|
867
|
-
body,
|
|
868
|
-
{ ...xHeaders, ...requestHeaders },
|
|
869
|
-
{ responseHeaders }
|
|
870
|
-
);
|
|
871
|
-
|
|
872
|
-
let responseData = response;
|
|
873
|
-
if (responseHeaders) {
|
|
874
|
-
responseData = response[0];
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
const {
|
|
878
|
-
error: res_error,
|
|
879
|
-
} = PaymentPlatformModel.UpdatePayoutResponse().validate(responseData, {
|
|
880
|
-
abortEarly: false,
|
|
881
|
-
allowUnknown: true,
|
|
882
|
-
});
|
|
883
|
-
|
|
884
|
-
if (res_error) {
|
|
885
|
-
if (this.config.options.strictResponseCheck === true) {
|
|
886
|
-
return Promise.reject(new FDKResponseValidationError(res_error));
|
|
887
|
-
} else {
|
|
888
|
-
Logger({
|
|
889
|
-
level: "WARN",
|
|
890
|
-
message: `Response Validation Warnings for platform > Payment > updatePayouts \n ${res_error}`,
|
|
891
|
-
});
|
|
892
|
-
}
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
return response;
|
|
896
|
-
}
|
|
897
|
-
|
|
898
753
|
/**
|
|
899
754
|
* @param {PaymentPlatformValidator.VerifyIfscCodeParam} arg - Arg object
|
|
900
755
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
901
756
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
902
|
-
* @returns {Promise<PaymentPlatformModel.
|
|
757
|
+
* @returns {Promise<PaymentPlatformModel.IfscCodeDetails>} - Success response
|
|
903
758
|
* @name verifyIfscCode
|
|
904
|
-
* @summary: Verify IFSC code
|
|
759
|
+
* @summary: Verify IFSC code
|
|
905
760
|
* @description: Checks the validity of the provided IFSC code and returns bank details if valid. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/verifyIfscCode/).
|
|
906
761
|
*/
|
|
907
762
|
async verifyIfscCode(
|
|
@@ -956,7 +811,7 @@ class Payment {
|
|
|
956
811
|
|
|
957
812
|
const {
|
|
958
813
|
error: res_error,
|
|
959
|
-
} = PaymentPlatformModel.
|
|
814
|
+
} = PaymentPlatformModel.IfscCodeDetails().validate(responseData, {
|
|
960
815
|
abortEarly: false,
|
|
961
816
|
allowUnknown: true,
|
|
962
817
|
});
|