@gofynd/fdk-client-javascript 1.4.12 → 1.4.14
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 +60 -53
- package/sdk/application/Cart/CartApplicationClient.js +130 -53
- package/sdk/application/Cart/CartApplicationModel.d.ts +489 -143
- package/sdk/application/Cart/CartApplicationModel.js +380 -159
- package/sdk/application/Cart/CartApplicationValidator.d.ts +38 -19
- package/sdk/application/Cart/CartApplicationValidator.js +34 -18
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +88 -68
- package/sdk/application/Catalog/CatalogApplicationClient.js +114 -94
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +194 -142
- package/sdk/application/Catalog/CatalogApplicationModel.js +171 -133
- package/sdk/application/Common/CommonApplicationClient.d.ts +3 -2
- package/sdk/application/Common/CommonApplicationClient.js +6 -5
- package/sdk/application/Common/CommonApplicationModel.d.ts +9 -9
- package/sdk/application/Common/CommonApplicationModel.js +6 -6
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +34 -27
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +34 -27
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +45 -57
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +35 -47
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +2 -2
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +2 -2
- package/sdk/application/Content/ContentApplicationClient.d.ts +23 -33
- package/sdk/application/Content/ContentApplicationClient.js +54 -75
- package/sdk/application/Content/ContentApplicationModel.d.ts +96 -39
- package/sdk/application/Content/ContentApplicationModel.js +88 -34
- package/sdk/application/Content/ContentApplicationValidator.d.ts +23 -17
- package/sdk/application/Content/ContentApplicationValidator.js +15 -10
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -8
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +14 -13
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +23 -25
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +16 -18
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +6 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +6 -6
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +36 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +202 -0
- package/sdk/application/Finance/FinanceApplicationModel.d.ts +289 -0
- package/sdk/application/Finance/FinanceApplicationModel.js +208 -0
- package/sdk/application/Finance/FinanceApplicationValidator.d.ts +25 -0
- package/sdk/application/Finance/FinanceApplicationValidator.js +31 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -3
- package/sdk/application/Lead/LeadApplicationClient.js +2 -3
- package/sdk/application/Lead/LeadApplicationModel.d.ts +11 -11
- package/sdk/application/Lead/LeadApplicationModel.js +19 -19
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +39 -16
- package/sdk/application/Logistic/LogisticApplicationClient.js +189 -21
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +532 -173
- package/sdk/application/Logistic/LogisticApplicationModel.js +409 -139
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +54 -9
- package/sdk/application/Logistic/LogisticApplicationValidator.js +42 -8
- package/sdk/application/Order/OrderApplicationClient.d.ts +24 -10
- package/sdk/application/Order/OrderApplicationClient.js +96 -13
- package/sdk/application/Order/OrderApplicationModel.d.ts +434 -102
- package/sdk/application/Order/OrderApplicationModel.js +278 -73
- package/sdk/application/Order/OrderApplicationValidator.d.ts +17 -3
- package/sdk/application/Order/OrderApplicationValidator.js +15 -2
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +96 -99
- package/sdk/application/Payment/PaymentApplicationClient.js +111 -114
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +293 -289
- package/sdk/application/Payment/PaymentApplicationModel.js +243 -241
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +46 -46
- package/sdk/application/Payment/PaymentApplicationValidator.js +46 -46
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -16
- package/sdk/application/Rewards/RewardsApplicationClient.js +19 -22
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +37 -37
- package/sdk/application/Rewards/RewardsApplicationModel.js +29 -29
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +6 -6
- package/sdk/application/Rewards/RewardsApplicationValidator.js +6 -6
- package/sdk/application/Share/ShareApplicationModel.js +1 -1
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
- package/sdk/application/Theme/ThemeApplicationClient.js +8 -6
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +51 -19
- package/sdk/application/Theme/ThemeApplicationModel.js +47 -24
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +16 -3
- package/sdk/application/Theme/ThemeApplicationValidator.js +9 -2
- package/sdk/application/User/UserApplicationClient.d.ts +10 -10
- package/sdk/application/User/UserApplicationClient.js +10 -10
- package/sdk/application/User/UserApplicationModel.d.ts +17 -17
- package/sdk/application/User/UserApplicationModel.js +16 -16
- package/sdk/application/User/UserApplicationValidator.d.ts +2 -2
- package/sdk/application/User/UserApplicationValidator.js +2 -2
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +4 -4
- package/sdk/application/Webhook/WebhookApplicationModel.d.ts +11 -9
- package/sdk/application/Webhook/WebhookApplicationModel.js +8 -6
- package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +2 -2
- package/sdk/application/Webhook/WebhookApplicationValidator.js +2 -2
- package/sdk/application/index.d.ts +1 -0
- package/sdk/application/index.js +2 -0
- package/sdk/common/Clickstream.js +12 -0
- package/sdk/common/Constant.d.ts +5 -0
- package/sdk/common/Constant.js +5 -0
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
- package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
- package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +99 -39
- package/sdk/partner/Theme/ThemePartnerModel.js +95 -38
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
- package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
- 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 +134 -103
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
- package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
- package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +192 -164
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +371 -343
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +99 -99
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +54 -54
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +139 -116
- package/sdk/platform/Catalog/CatalogPlatformClient.js +191 -168
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1374 -749
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1241 -830
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
- package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
- package/sdk/platform/Common/CommonPlatformClient.js +3 -2
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
- package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
- package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
- package/sdk/platform/Content/ContentPlatformClient.js +523 -336
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1244 -397
- package/sdk/platform/Content/ContentPlatformModel.js +526 -392
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
- package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
- package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
- package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
- package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
- package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
- package/sdk/platform/Order/OrderPlatformClient.d.ts +138 -101
- package/sdk/platform/Order/OrderPlatformClient.js +267 -203
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4497 -877
- package/sdk/platform/Order/OrderPlatformModel.js +2336 -812
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +147 -50
- package/sdk/platform/Order/OrderPlatformValidator.js +75 -46
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
- package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- 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 +9 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
- package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
- package/sdk/platform/Share/SharePlatformModel.js +27 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +40 -13
- package/sdk/platform/Theme/ThemePlatformModel.js +38 -17
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
- package/sdk/platform/User/UserPlatformModel.js +23 -23
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
- package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
- 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/Configuration/ConfigurationPublicClient.d.ts +3 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
- package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
- package/sdk/public/Content/ContentPublicClient.js +791 -5
- package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
- package/sdk/public/Content/ContentPublicModel.js +649 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
- package/sdk/public/Content/ContentPublicValidator.js +88 -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 +21 -21
- package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
|
@@ -56,162 +56,159 @@ declare class Payment {
|
|
|
56
56
|
* @param {PaymentApplicationValidator.AddBeneficiaryDetailsParam} arg - Arg object.
|
|
57
57
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
58
58
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
59
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
60
|
-
* Success response
|
|
59
|
+
* @returns {Promise<PaymentApplicationModel.RefundAccountDetails>} - Success response
|
|
61
60
|
* @name addBeneficiaryDetails
|
|
62
61
|
* @summary: Add beneficiary for refund
|
|
63
62
|
* @description: Add beneficiary details specifically for refund transactions, including account holder name, account number and bank details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/addBeneficiaryDetails/).
|
|
64
63
|
*/
|
|
65
|
-
addBeneficiaryDetails({ body, requestHeaders }?: PaymentApplicationValidator.AddBeneficiaryDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
64
|
+
addBeneficiaryDetails({ body, requestHeaders }?: PaymentApplicationValidator.AddBeneficiaryDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundAccountDetails>;
|
|
66
65
|
/**
|
|
67
66
|
* @param {PaymentApplicationValidator.AddRefundBankAccountUsingOTPParam} arg
|
|
68
67
|
* - Arg object.
|
|
69
68
|
*
|
|
70
69
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
71
70
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
72
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
73
|
-
* Success response
|
|
71
|
+
* @returns {Promise<PaymentApplicationModel.RefundAccountDetails>} - Success response
|
|
74
72
|
* @name addRefundBankAccountUsingOTP
|
|
75
73
|
* @summary: Add refund account using OTP verification
|
|
76
74
|
* @description: Add bank account specifically for refunds, employing OTP verification for security. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/addRefundBankAccountUsingOTP/).
|
|
77
75
|
*/
|
|
78
|
-
addRefundBankAccountUsingOTP({ body, requestHeaders }?: PaymentApplicationValidator.AddRefundBankAccountUsingOTPParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
76
|
+
addRefundBankAccountUsingOTP({ body, requestHeaders }?: PaymentApplicationValidator.AddRefundBankAccountUsingOTPParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundAccountDetails>;
|
|
79
77
|
/**
|
|
80
78
|
* @param {PaymentApplicationValidator.AttachCardToCustomerParam} arg - Arg object.
|
|
81
79
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
82
80
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
83
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
81
|
+
* @returns {Promise<PaymentApplicationModel.AttachCardsDetails>} - Success response
|
|
84
82
|
* @name attachCardToCustomer
|
|
85
83
|
* @summary: Link payment card to customer
|
|
86
84
|
* @description: Link payment card to a user account for seamless transactions. Upon successful linking, the card becomes associated with the user's profile, enabling secure and convenient payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/attachCardToCustomer/).
|
|
87
85
|
*/
|
|
88
|
-
attachCardToCustomer({ body, requestHeaders }?: PaymentApplicationValidator.AttachCardToCustomerParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
86
|
+
attachCardToCustomer({ body, requestHeaders }?: PaymentApplicationValidator.AttachCardToCustomerParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AttachCardsDetails>;
|
|
89
87
|
/**
|
|
90
88
|
* @param {PaymentApplicationValidator.CancelPaymentLinkParam} arg - Arg object.
|
|
91
89
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
92
90
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
93
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
91
|
+
* @returns {Promise<PaymentApplicationModel.CancelPaymentLinkDetails>} -
|
|
94
92
|
* Success response
|
|
95
93
|
* @name cancelPaymentLink
|
|
96
94
|
* @summary: Cancel payment link
|
|
97
95
|
* @description: Cancel previously generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cancelPaymentLink/).
|
|
98
96
|
*/
|
|
99
|
-
cancelPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CancelPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
97
|
+
cancelPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CancelPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CancelPaymentLinkDetails>;
|
|
100
98
|
/**
|
|
101
99
|
* @param {PaymentApplicationValidator.CardDetailsParam} arg - Arg object.
|
|
102
100
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
103
101
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
104
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
102
|
+
* @returns {Promise<PaymentApplicationModel.CardDetailsFetchedDetails>} -
|
|
103
|
+
* Success response
|
|
105
104
|
* @name cardDetails
|
|
106
105
|
* @summary: Get card details
|
|
107
106
|
* @description: Get details of a specified payment card, including information such as the card type, brand, country, and expiration date. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cardDetails/).
|
|
108
107
|
*/
|
|
109
|
-
cardDetails({ cardInfo, aggregator, requestHeaders }?: PaymentApplicationValidator.CardDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
108
|
+
cardDetails({ cardInfo, aggregator, requestHeaders }?: PaymentApplicationValidator.CardDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CardDetailsFetchedDetails>;
|
|
110
109
|
/**
|
|
111
110
|
* @param {PaymentApplicationValidator.CheckAndUpdatePaymentStatusParam} arg
|
|
112
111
|
* - Arg object.
|
|
113
112
|
*
|
|
114
113
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
115
114
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
116
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
117
|
-
*
|
|
118
|
-
*
|
|
115
|
+
* @returns {Promise<PaymentApplicationModel.PaymentStatusUpdateDetails>} -
|
|
116
|
+
* Success response
|
|
119
117
|
* @name checkAndUpdatePaymentStatus
|
|
120
118
|
* @summary: Update payment status
|
|
121
119
|
* @description: Polling process to confirm the payment status. It periodically checks and updates the current status of a payment, ensuring timely and accurate confirmation of payment transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatus/).
|
|
122
120
|
*/
|
|
123
|
-
checkAndUpdatePaymentStatus({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
121
|
+
checkAndUpdatePaymentStatus({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentStatusUpdateDetails>;
|
|
124
122
|
/**
|
|
125
123
|
* @param {PaymentApplicationValidator.CheckAndUpdatePaymentStatusPaymentLinkParam} arg
|
|
126
124
|
* - Arg object.
|
|
127
125
|
*
|
|
128
126
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
129
127
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
130
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
131
|
-
*
|
|
132
|
-
*
|
|
128
|
+
* @returns {Promise<PaymentApplicationModel.PaymentStatusUpdateDetails>} -
|
|
129
|
+
* Success response
|
|
133
130
|
* @name checkAndUpdatePaymentStatusPaymentLink
|
|
134
131
|
* @summary: Update payment link status
|
|
135
132
|
* @description: Verify and update status of a payment made through a link.Upon successful verification and update, the response includes details about the aggregator name, payment status, and whether retrying the process is required. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatusPaymentLink/).
|
|
136
133
|
*/
|
|
137
|
-
checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
134
|
+
checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentStatusUpdateDetails>;
|
|
138
135
|
/**
|
|
139
136
|
* @param {PaymentApplicationValidator.CheckCreditParam} arg - Arg object.
|
|
140
137
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
141
138
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
142
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
139
|
+
* @returns {Promise<PaymentApplicationModel.CheckCreditDetails>} - Success response
|
|
143
140
|
* @name checkCredit
|
|
144
141
|
* @summary: Verify credit availability and status
|
|
145
142
|
* @description: Check the availability and status of customer credit, providing the status of payment along with registration information and signup URL if the customer is not registered. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkCredit/).
|
|
146
143
|
*/
|
|
147
|
-
checkCredit({ aggregator, requestHeaders }?: PaymentApplicationValidator.CheckCreditParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
144
|
+
checkCredit({ aggregator, requestHeaders }?: PaymentApplicationValidator.CheckCreditParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CheckCreditDetails>;
|
|
148
145
|
/**
|
|
149
146
|
* @param {PaymentApplicationValidator.CreateOrderHandlerPaymentLinkParam} arg
|
|
150
147
|
* - Arg object.
|
|
151
148
|
*
|
|
152
149
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
153
150
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
154
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
151
|
+
* @returns {Promise<PaymentApplicationModel.CreateOrderUserDetails>} -
|
|
155
152
|
* Success response
|
|
156
153
|
* @name createOrderHandlerPaymentLink
|
|
157
154
|
* @summary: Create order for payment via link
|
|
158
155
|
* @description: Initiate the creation of an order handler for processing payments through a link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createOrderHandlerPaymentLink/).
|
|
159
156
|
*/
|
|
160
|
-
createOrderHandlerPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreateOrderHandlerPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
157
|
+
createOrderHandlerPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreateOrderHandlerPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CreateOrderUserDetails>;
|
|
161
158
|
/**
|
|
162
159
|
* @param {PaymentApplicationValidator.CreatePaymentLinkParam} arg - Arg object.
|
|
163
160
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
164
161
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
165
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
162
|
+
* @returns {Promise<PaymentApplicationModel.CreatePaymentLinkDetails>} -
|
|
166
163
|
* Success response
|
|
167
164
|
* @name createPaymentLink
|
|
168
165
|
* @summary: Create payment link
|
|
169
166
|
* @description: Create new payment link for transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentLink/).
|
|
170
167
|
*/
|
|
171
|
-
createPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreatePaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
168
|
+
createPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreatePaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CreatePaymentLinkDetails>;
|
|
172
169
|
/**
|
|
173
170
|
* @param {PaymentApplicationValidator.CreatePaymentOrderParam} arg - Arg object.
|
|
174
171
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
175
172
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
176
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
173
|
+
* @returns {Promise<PaymentApplicationModel.PaymentOrderDetails>} - Success response
|
|
177
174
|
* @name createPaymentOrder
|
|
178
175
|
* @summary: Create Order
|
|
179
176
|
* @description: Create an order and payment on the aggregator side. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentOrder/).
|
|
180
177
|
*/
|
|
181
|
-
createPaymentOrder({ body, requestHeaders }?: PaymentApplicationValidator.CreatePaymentOrderParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
178
|
+
createPaymentOrder({ body, requestHeaders }?: PaymentApplicationValidator.CreatePaymentOrderParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentOrderDetails>;
|
|
182
179
|
/**
|
|
183
180
|
* @param {PaymentApplicationValidator.CustomerCreditSummaryParam} arg - Arg object.
|
|
184
181
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
185
182
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
186
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
183
|
+
* @returns {Promise<PaymentApplicationModel.CustomerCreditSummaryDetails>}
|
|
187
184
|
* - Success response
|
|
188
185
|
*
|
|
189
186
|
* @name customerCreditSummary
|
|
190
187
|
* @summary: Credit summary
|
|
191
188
|
* @description: Get summary of the customer's credit information, including details such as merchant customer reference ID, status, balance, limit, due amount, used amount, due date, days overdue, total due amount, and a repayment URL. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerCreditSummary/).
|
|
192
189
|
*/
|
|
193
|
-
customerCreditSummary({ aggregator, requestHeaders }?: PaymentApplicationValidator.CustomerCreditSummaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
190
|
+
customerCreditSummary({ aggregator, requestHeaders }?: PaymentApplicationValidator.CustomerCreditSummaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CustomerCreditSummaryDetails>;
|
|
194
191
|
/**
|
|
195
192
|
* @param {PaymentApplicationValidator.CustomerOnboardParam} arg - Arg object.
|
|
196
193
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
197
194
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
198
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
195
|
+
* @returns {Promise<PaymentApplicationModel.CustomerOnboardingDetails>} -
|
|
199
196
|
* Success response
|
|
200
197
|
* @name customerOnboard
|
|
201
198
|
* @summary: Onboard customer for payment
|
|
202
199
|
* @description: Initiate the onboarding process for payment services, providing personal, business, and device information, along with marketplace details, to enable customer registration and credit availability. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerOnboard/).
|
|
203
200
|
*/
|
|
204
|
-
customerOnboard({ body, requestHeaders }?: PaymentApplicationValidator.CustomerOnboardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
201
|
+
customerOnboard({ body, requestHeaders }?: PaymentApplicationValidator.CustomerOnboardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CustomerOnboardingDetails>;
|
|
205
202
|
/**
|
|
206
203
|
* @param {PaymentApplicationValidator.DeleteUserCardParam} arg - Arg object.
|
|
207
204
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
208
205
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
209
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
206
|
+
* @returns {Promise<PaymentApplicationModel.DeleteCardsDetails>} - Success response
|
|
210
207
|
* @name deleteUserCard
|
|
211
208
|
* @summary: Delete customer card
|
|
212
209
|
* @description: Delete payment card from the user's account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/deleteUserCard/).
|
|
213
210
|
*/
|
|
214
|
-
deleteUserCard({ body, requestHeaders }?: PaymentApplicationValidator.DeleteUserCardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
211
|
+
deleteUserCard({ body, requestHeaders }?: PaymentApplicationValidator.DeleteUserCardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.DeleteCardsDetails>;
|
|
215
212
|
/**
|
|
216
213
|
* @param {PaymentApplicationValidator.DelinkWalletParam} arg - Arg object.
|
|
217
214
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -228,181 +225,183 @@ declare class Payment {
|
|
|
228
225
|
*
|
|
229
226
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
230
227
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
231
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
228
|
+
* @returns {Promise<PaymentApplicationModel.RefundTransferModeUpdateDetails>}
|
|
232
229
|
* - Success response
|
|
233
230
|
*
|
|
234
231
|
* @name enableOrDisableRefundTransferMode
|
|
235
232
|
* @summary: Toggle refund mode
|
|
236
233
|
* @description: Enable/Disable a particular refund transfer mode based on the request body parameters, indicating whether the mode should be enabled or disabled. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/enableOrDisableRefundTransferMode/).
|
|
237
234
|
*/
|
|
238
|
-
enableOrDisableRefundTransferMode({ body, requestHeaders }?: PaymentApplicationValidator.EnableOrDisableRefundTransferModeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
235
|
+
enableOrDisableRefundTransferMode({ body, requestHeaders }?: PaymentApplicationValidator.EnableOrDisableRefundTransferModeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundTransferModeUpdateDetails>;
|
|
239
236
|
/**
|
|
240
237
|
* @param {PaymentApplicationValidator.GetActiveCardAggregatorParam} arg - Arg object.
|
|
241
238
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
242
239
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
243
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
240
|
+
* @returns {Promise<PaymentApplicationModel.ActiveCardPaymentGatewayDetails>}
|
|
244
241
|
* - Success response
|
|
245
242
|
*
|
|
246
243
|
* @name getActiveCardAggregator
|
|
247
244
|
* @summary: Retrieve active card aggregator
|
|
248
245
|
* @description: Get details about the active card aggregator used by the user, including the aggregator name.You can refresh the data by setting the 'refresh' parameter to true if needed. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveCardAggregator/).
|
|
249
246
|
*/
|
|
250
|
-
getActiveCardAggregator({ refresh, requestHeaders }?: PaymentApplicationValidator.GetActiveCardAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
247
|
+
getActiveCardAggregator({ refresh, requestHeaders }?: PaymentApplicationValidator.GetActiveCardAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ActiveCardPaymentGatewayDetails>;
|
|
251
248
|
/**
|
|
252
249
|
* @param {PaymentApplicationValidator.GetActiveRefundTransferModesParam} arg
|
|
253
250
|
* - Arg object.
|
|
254
251
|
*
|
|
255
252
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
256
253
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
257
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
254
|
+
* @returns {Promise<PaymentApplicationModel.TransferModeFetchDetails>} -
|
|
255
|
+
* Success response
|
|
258
256
|
* @name getActiveRefundTransferModes
|
|
259
257
|
* @summary: Get refund transfer modes
|
|
260
258
|
* @description: Lists available refund modes, such as UPI, providing details like display name, logo, and ID for each mode. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveRefundTransferModes/).
|
|
261
259
|
*/
|
|
262
|
-
getActiveRefundTransferModes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
260
|
+
getActiveRefundTransferModes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.TransferModeFetchDetails>;
|
|
263
261
|
/**
|
|
264
262
|
* @param {PaymentApplicationValidator.GetActiveUserCardsParam} arg - Arg object.
|
|
265
263
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
266
264
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
267
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
265
|
+
* @returns {Promise<PaymentApplicationModel.ListCardsDetails>} - Success response
|
|
268
266
|
* @name getActiveUserCards
|
|
269
267
|
* @summary: Get customer cards
|
|
270
268
|
* @description: List all active cards saved by the user.Includes details such as the card's aggregator name, card ID, token, reference, number, expiration date, type, issuer, brand, nickname, and whether it has expired. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveUserCards/).
|
|
271
269
|
*/
|
|
272
|
-
getActiveUserCards({ forceRefresh, requestHeaders }?: PaymentApplicationValidator.GetActiveUserCardsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
270
|
+
getActiveUserCards({ forceRefresh, requestHeaders }?: PaymentApplicationValidator.GetActiveUserCardsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ListCardsDetails>;
|
|
273
271
|
/**
|
|
274
272
|
* @param {PaymentApplicationValidator.GetAggregatorsConfigParam} arg - Arg object.
|
|
275
273
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
276
274
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
277
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
278
|
-
*
|
|
279
|
-
*
|
|
275
|
+
* @returns {Promise<PaymentApplicationModel.AggregatorsConfigDetail>} -
|
|
276
|
+
* Success response
|
|
280
277
|
* @name getAggregatorsConfig
|
|
281
278
|
* @summary: Get payment aggregators
|
|
282
279
|
* @description: Get aggregator secret key of all payment gateways utilized for payments when using the SDK for the payment gateway. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getAggregatorsConfig/).
|
|
283
280
|
*/
|
|
284
|
-
getAggregatorsConfig({ xApiToken, refresh, requestHeaders }?: PaymentApplicationValidator.GetAggregatorsConfigParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
281
|
+
getAggregatorsConfig({ xApiToken, refresh, requestHeaders }?: PaymentApplicationValidator.GetAggregatorsConfigParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AggregatorsConfigDetail>;
|
|
285
282
|
/**
|
|
286
283
|
* @param {PaymentApplicationValidator.GetEpaylaterBannerDetailsParam} arg
|
|
287
284
|
* - Arg object.
|
|
288
285
|
*
|
|
289
286
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
290
287
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
291
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
288
|
+
* @returns {Promise<PaymentApplicationModel.EpaylaterBannerDetails>} -
|
|
292
289
|
* Success response
|
|
293
290
|
* @name getEpaylaterBannerDetails
|
|
294
291
|
* @summary: Epaylater banner info
|
|
295
292
|
* @description: Get Epaylater payment banner details. It provides information about the banner's display status, along with relevant messages and the user's registration status. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getEpaylaterBannerDetails/).
|
|
296
293
|
*/
|
|
297
|
-
getEpaylaterBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
294
|
+
getEpaylaterBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.EpaylaterBannerDetails>;
|
|
298
295
|
/**
|
|
299
296
|
* @param {PaymentApplicationValidator.GetOrderBeneficiariesDetailParam} arg
|
|
300
297
|
* - Arg object.
|
|
301
298
|
*
|
|
302
299
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
303
300
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
304
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
305
|
-
* Success response
|
|
301
|
+
* @returns {Promise<PaymentApplicationModel.OrderBeneficiaryFetchDetails>}
|
|
302
|
+
* - Success response
|
|
303
|
+
*
|
|
306
304
|
* @name getOrderBeneficiariesDetail
|
|
307
305
|
* @summary: Retrieve beneficiary details
|
|
308
306
|
* @description: Get beneficiary details like bank name , ifsc code , branch name associated with a specific order for refund processing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getOrderBeneficiariesDetail/).
|
|
309
307
|
*/
|
|
310
|
-
getOrderBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetOrderBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
308
|
+
getOrderBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetOrderBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OrderBeneficiaryFetchDetails>;
|
|
311
309
|
/**
|
|
312
310
|
* @param {PaymentApplicationValidator.GetPaymentLinkParam} arg - Arg object.
|
|
313
311
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
314
312
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
315
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
313
|
+
* @returns {Promise<PaymentApplicationModel.GetPaymentLinkDetails>} -
|
|
316
314
|
* Success response
|
|
317
315
|
* @name getPaymentLink
|
|
318
316
|
* @summary: Get payment link
|
|
319
317
|
* @description: Get a generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentLink/).
|
|
320
318
|
*/
|
|
321
|
-
getPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
319
|
+
getPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.GetPaymentLinkDetails>;
|
|
322
320
|
/**
|
|
323
321
|
* @param {PaymentApplicationValidator.GetPaymentModeRoutesParam} arg - Arg object.
|
|
324
322
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
325
323
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
326
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
324
|
+
* @returns {Promise<PaymentApplicationModel.PaymentModeRouteDetails>} -
|
|
327
325
|
* Success response
|
|
328
326
|
* @name getPaymentModeRoutes
|
|
329
327
|
* @summary: Get payment modes
|
|
330
328
|
* @description: Get available payment methods on the payment page, specifying the aggregator for each option, such as 'Netbanking powered by Juspay' and 'Card powered by Razorpay'. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutes/).
|
|
331
329
|
*/
|
|
332
|
-
getPaymentModeRoutes({ amount, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, requestHeaders, }?: PaymentApplicationValidator.GetPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
330
|
+
getPaymentModeRoutes({ amount, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, requestHeaders, }?: PaymentApplicationValidator.GetPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteDetails>;
|
|
333
331
|
/**
|
|
334
332
|
* @param {PaymentApplicationValidator.GetPaymentModeRoutesPaymentLinkParam} arg
|
|
335
333
|
* - Arg object.
|
|
336
334
|
*
|
|
337
335
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
338
336
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
339
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
337
|
+
* @returns {Promise<PaymentApplicationModel.PaymentModeRouteDetails>} -
|
|
340
338
|
* Success response
|
|
341
339
|
* @name getPaymentModeRoutesPaymentLink
|
|
342
340
|
* @summary: Payment modes for payment link
|
|
343
341
|
* @description: List payment modes available for a given payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutesPaymentLink/).
|
|
344
342
|
*/
|
|
345
|
-
getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentModeRoutesPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
343
|
+
getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentModeRoutesPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteDetails>;
|
|
346
344
|
/**
|
|
347
345
|
* @param {PaymentApplicationValidator.GetPosPaymentModeRoutesParam} arg - Arg object.
|
|
348
346
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
349
347
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
350
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
348
|
+
* @returns {Promise<PaymentApplicationModel.PaymentModeRouteDetails>} -
|
|
351
349
|
* Success response
|
|
352
350
|
* @name getPosPaymentModeRoutes
|
|
353
351
|
* @summary: POS payment modes
|
|
354
352
|
* @description: Get available payment methods on the payment page for POS, specifying the aggregator for each option, such as 'CARD powered by Juspay' and 'QR powered by Razorpay'. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPosPaymentModeRoutes/).
|
|
355
353
|
*/
|
|
356
|
-
getPosPaymentModeRoutes({ amount, pincode, orderType, cartId, checkoutMode, refresh, cardReference, userDetails, requestHeaders, }?: PaymentApplicationValidator.GetPosPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
354
|
+
getPosPaymentModeRoutes({ amount, pincode, orderType, cartId, checkoutMode, refresh, cardReference, userDetails, requestHeaders, }?: PaymentApplicationValidator.GetPosPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteDetails>;
|
|
357
355
|
/**
|
|
358
356
|
* @param {PaymentApplicationValidator.GetRupifiBannerDetailsParam} arg - Arg object.
|
|
359
357
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
360
358
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
361
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
359
|
+
* @returns {Promise<PaymentApplicationModel.RupifiBannerDetails>} - Success response
|
|
362
360
|
* @name getRupifiBannerDetails
|
|
363
361
|
* @summary: Rupifi banner info
|
|
364
362
|
* @description: Get Rupifi payment banner details. It provides information such as the KYC URL and the current status of the Rupifi payment banner. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getRupifiBannerDetails/).
|
|
365
363
|
*/
|
|
366
|
-
getRupifiBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
364
|
+
getRupifiBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.RupifiBannerDetails>;
|
|
367
365
|
/**
|
|
368
366
|
* @param {PaymentApplicationValidator.GetUserBeneficiariesDetailParam} arg
|
|
369
367
|
* - Arg object.
|
|
370
368
|
*
|
|
371
369
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
372
370
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
373
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
374
|
-
* Success response
|
|
371
|
+
* @returns {Promise<PaymentApplicationModel.OrderBeneficiaryFetchDetails>}
|
|
372
|
+
* - Success response
|
|
373
|
+
*
|
|
375
374
|
* @name getUserBeneficiariesDetail
|
|
376
375
|
* @summary: Retrieve beneficiary details
|
|
377
376
|
* @description: Get beneficiaries associated with the user for processing refunds, based on the provided order ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getUserBeneficiariesDetail/).
|
|
378
377
|
*/
|
|
379
|
-
getUserBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetUserBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
378
|
+
getUserBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetUserBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OrderBeneficiaryFetchDetails>;
|
|
380
379
|
/**
|
|
381
380
|
* @param {PaymentApplicationValidator.InitialisePaymentParam} arg - Arg object.
|
|
382
381
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
383
382
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
384
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
383
|
+
* @returns {Promise<PaymentApplicationModel.PaymentInitializationDetails>}
|
|
385
384
|
* - Success response
|
|
386
385
|
*
|
|
387
386
|
* @name initialisePayment
|
|
388
387
|
* @summary: Start payment process
|
|
389
388
|
* @description: Initiate the payment procedure for an order. Upon successful initiation, it returns a details including the success status, aggregator information, payment method, status, merchant order ID aggregator order , polling URL, timeout, virtual ID, Razorpay payment ID, customer ID, and device ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/initialisePayment/).
|
|
390
389
|
*/
|
|
391
|
-
initialisePayment({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
390
|
+
initialisePayment({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentInitializationDetails>;
|
|
392
391
|
/**
|
|
393
392
|
* @param {PaymentApplicationValidator.InitialisePaymentPaymentLinkParam} arg
|
|
394
393
|
* - Arg object.
|
|
395
394
|
*
|
|
396
395
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
397
396
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
398
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
397
|
+
* @returns {Promise<PaymentApplicationModel.PaymentInitializationDetails>}
|
|
399
398
|
* - Success response
|
|
400
399
|
*
|
|
401
400
|
* @name initialisePaymentPaymentLink
|
|
402
401
|
* @summary: Initialize payment link
|
|
403
402
|
* @description: Begin payment process for an order by initializing it through a payment link.Upon successful initialization, the response includes details about the payment status, aggregator details, order IDs, polling URL for status updates, and other relevant information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/initialisePaymentPaymentLink/).
|
|
404
403
|
*/
|
|
405
|
-
initialisePaymentPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
404
|
+
initialisePaymentPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentInitializationDetails>;
|
|
406
405
|
/**
|
|
407
406
|
* @param {PaymentApplicationValidator.LinkWalletParam} arg - Arg object.
|
|
408
407
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -417,163 +416,161 @@ declare class Payment {
|
|
|
417
416
|
* @param {PaymentApplicationValidator.OutstandingOrderDetailsParam} arg - Arg object.
|
|
418
417
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
419
418
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
420
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
421
|
-
*
|
|
422
|
-
*
|
|
419
|
+
* @returns {Promise<PaymentApplicationModel.OutstandingOrderDetails>} -
|
|
420
|
+
* Success response
|
|
423
421
|
* @name outstandingOrderDetails
|
|
424
422
|
* @summary: Outstanding orders
|
|
425
423
|
* @description: Get details of orders with outstanding payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/outstandingOrderDetails/).
|
|
426
424
|
*/
|
|
427
|
-
outstandingOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.OutstandingOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
425
|
+
outstandingOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.OutstandingOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OutstandingOrderDetails>;
|
|
428
426
|
/**
|
|
429
427
|
* @param {PaymentApplicationValidator.PaidOrderDetailsParam} arg - Arg object.
|
|
430
428
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
431
429
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
432
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
433
|
-
* Success response
|
|
430
|
+
* @returns {Promise<PaymentApplicationModel.PaidOrderDetails>} - Success response
|
|
434
431
|
* @name paidOrderDetails
|
|
435
432
|
* @summary: Retrieve details of paid orders
|
|
436
433
|
* @description: Get details of orders that have been paid for, including shipment ID, order ID, due date, payment date, amount, and transaction ID, based on the aggregator merchant user ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/paidOrderDetails/).
|
|
437
434
|
*/
|
|
438
|
-
paidOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.PaidOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
435
|
+
paidOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.PaidOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaidOrderDetails>;
|
|
439
436
|
/**
|
|
440
437
|
* @param {PaymentApplicationValidator.PollingPaymentLinkParam} arg - Arg object.
|
|
441
438
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
442
439
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
443
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
440
|
+
* @returns {Promise<PaymentApplicationModel.PollingPaymentLinkDetails>} -
|
|
444
441
|
* Success response
|
|
445
442
|
* @name pollingPaymentLink
|
|
446
443
|
* @summary: Poll status of payment link
|
|
447
444
|
* @description: Get real-time information about the payment link's current status, such as whether it has been processed, cancelled, or expired. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/pollingPaymentLink/).
|
|
448
445
|
*/
|
|
449
|
-
pollingPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.PollingPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
446
|
+
pollingPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.PollingPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PollingPaymentLinkDetails>;
|
|
450
447
|
/**
|
|
451
448
|
* @param {PaymentApplicationValidator.RedirectToAggregatorParam} arg - Arg object.
|
|
452
449
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
453
450
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
454
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
451
|
+
* @returns {Promise<PaymentApplicationModel.RedirectToAggregatorDetails>}
|
|
455
452
|
* - Success response
|
|
456
453
|
*
|
|
457
454
|
* @name redirectToAggregator
|
|
458
455
|
* @summary: Redirects users to the payment aggregator's interface
|
|
459
456
|
* @description: Get details about the active card aggregator used by the user, including the aggregator's name. You can refresh the data by setting the 'refresh' parameter to true if needed. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/redirectToAggregator/).
|
|
460
457
|
*/
|
|
461
|
-
redirectToAggregator({ source, aggregator, requestHeaders }?: PaymentApplicationValidator.RedirectToAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
458
|
+
redirectToAggregator({ source, aggregator, requestHeaders }?: PaymentApplicationValidator.RedirectToAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RedirectToAggregatorDetails>;
|
|
462
459
|
/**
|
|
463
460
|
* @param {PaymentApplicationValidator.RenderHTMLParam} arg - Arg object.
|
|
464
461
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
465
462
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
466
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
463
|
+
* @returns {Promise<PaymentApplicationModel.RenderHTMLDetails>} - Success response
|
|
467
464
|
* @name renderHTML
|
|
468
465
|
* @summary: Render HTML
|
|
469
466
|
* @description: Render HTML for a payment aggregator page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/renderHTML/).
|
|
470
467
|
*/
|
|
471
|
-
renderHTML({ body, requestHeaders }?: PaymentApplicationValidator.RenderHTMLParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
468
|
+
renderHTML({ body, requestHeaders }?: PaymentApplicationValidator.RenderHTMLParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RenderHTMLDetails>;
|
|
472
469
|
/**
|
|
473
470
|
* @param {PaymentApplicationValidator.ResendOrCancelPaymentParam} arg - Arg object.
|
|
474
471
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
475
472
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
476
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
473
|
+
* @returns {Promise<PaymentApplicationModel.ResendOrCancelPaymentDetails>}
|
|
477
474
|
* - Success response
|
|
478
475
|
*
|
|
479
476
|
* @name resendOrCancelPayment
|
|
480
477
|
* @summary: Resend or cancel a pending payment transaction
|
|
481
478
|
* @description: Resend or cancel payment link that have been initiated but may require modification or cancellation for various reasons, ensuring flexibility and control in payment processing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/resendOrCancelPayment/).
|
|
482
479
|
*/
|
|
483
|
-
resendOrCancelPayment({ body, requestHeaders }?: PaymentApplicationValidator.ResendOrCancelPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
480
|
+
resendOrCancelPayment({ body, requestHeaders }?: PaymentApplicationValidator.ResendOrCancelPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ResendOrCancelPaymentDetails>;
|
|
484
481
|
/**
|
|
485
482
|
* @param {PaymentApplicationValidator.ResendPaymentLinkParam} arg - Arg object.
|
|
486
483
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
487
484
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
488
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
485
|
+
* @returns {Promise<PaymentApplicationModel.ResendPaymentLinkDetails>} -
|
|
489
486
|
* Success response
|
|
490
487
|
* @name resendPaymentLink
|
|
491
488
|
* @summary: Resend payment link
|
|
492
489
|
* @description: Resend an existing payment link to the user to complete the payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/resendPaymentLink/).
|
|
493
490
|
*/
|
|
494
|
-
resendPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.ResendPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
491
|
+
resendPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.ResendPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ResendPaymentLinkDetails>;
|
|
495
492
|
/**
|
|
496
493
|
* @param {PaymentApplicationValidator.UpdateDefaultBeneficiaryParam} arg -
|
|
497
494
|
* Arg object.
|
|
498
495
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
499
496
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
500
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
497
|
+
* @returns {Promise<PaymentApplicationModel.SetDefaultBeneficiaryDetails>}
|
|
501
498
|
* - Success response
|
|
502
499
|
*
|
|
503
500
|
* @name updateDefaultBeneficiary
|
|
504
501
|
* @summary: Set default beneficiary for refund
|
|
505
502
|
* @description: Update default beneficiary for the order refund of the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/updateDefaultBeneficiary/).
|
|
506
503
|
*/
|
|
507
|
-
updateDefaultBeneficiary({ body, requestHeaders }?: PaymentApplicationValidator.UpdateDefaultBeneficiaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
504
|
+
updateDefaultBeneficiary({ body, requestHeaders }?: PaymentApplicationValidator.UpdateDefaultBeneficiaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.SetDefaultBeneficiaryDetails>;
|
|
508
505
|
/**
|
|
509
506
|
* @param {PaymentApplicationValidator.ValidateVPAParam} arg - Arg object.
|
|
510
507
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
511
508
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
512
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
509
|
+
* @returns {Promise<PaymentApplicationModel.ValidateVPADetails>} - Success response
|
|
513
510
|
* @name validateVPA
|
|
514
511
|
* @summary: Validate VPA
|
|
515
512
|
* @description: Validate if a Virtual Payment Address (VPA) is valid for processing payments and returns the validation result.is_valid boolean value indicating whether the VPA is valid for payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/validateVPA/).
|
|
516
513
|
*/
|
|
517
|
-
validateVPA({ body, requestHeaders }?: PaymentApplicationValidator.ValidateVPAParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
514
|
+
validateVPA({ body, requestHeaders }?: PaymentApplicationValidator.ValidateVPAParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ValidateVPADetails>;
|
|
518
515
|
/**
|
|
519
516
|
* @param {PaymentApplicationValidator.VerifyAndChargePaymentParam} arg - Arg object.
|
|
520
517
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
521
518
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
522
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
519
|
+
* @returns {Promise<PaymentApplicationModel.ChargeCustomerDetails>} -
|
|
523
520
|
* Success response
|
|
524
521
|
* @name verifyAndChargePayment
|
|
525
522
|
* @summary: Verify order confirmation and charge
|
|
526
523
|
* @description: Verify the payment status and charge from the customer's BNPL (Buy Now, Pay Later) account after order confirmation. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyAndChargePayment/).
|
|
527
524
|
*/
|
|
528
|
-
verifyAndChargePayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyAndChargePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
525
|
+
verifyAndChargePayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyAndChargePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ChargeCustomerDetails>;
|
|
529
526
|
/**
|
|
530
527
|
* @param {PaymentApplicationValidator.VerifyCustomerForPaymentParam} arg -
|
|
531
528
|
* Arg object.
|
|
532
529
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
533
530
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
534
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
531
|
+
* @returns {Promise<PaymentApplicationModel.ValidateCustomerDetails>} -
|
|
535
532
|
* Success response
|
|
536
533
|
* @name verifyCustomerForPayment
|
|
537
534
|
* @summary: Verify payment customer
|
|
538
535
|
* @description: Verify if the user is eligible for pay-later payment from the payment aggregator side using the customer's phone number. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyCustomerForPayment/).
|
|
539
536
|
*/
|
|
540
|
-
verifyCustomerForPayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyCustomerForPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
537
|
+
verifyCustomerForPayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyCustomerForPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ValidateCustomerDetails>;
|
|
541
538
|
/**
|
|
542
539
|
* @param {PaymentApplicationValidator.VerifyIfscCodeParam} arg - Arg object.
|
|
543
540
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
544
541
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
545
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
542
|
+
* @returns {Promise<PaymentApplicationModel.IfscCodeDetails>} - Success response
|
|
546
543
|
* @name verifyIfscCode
|
|
547
544
|
* @summary: Verify IFSC
|
|
548
545
|
* @description: Validate IFSC code and returns bank details if valid. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyIfscCode/).
|
|
549
546
|
*/
|
|
550
|
-
verifyIfscCode({ ifscCode, requestHeaders }?: PaymentApplicationValidator.VerifyIfscCodeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
547
|
+
verifyIfscCode({ ifscCode, requestHeaders }?: PaymentApplicationValidator.VerifyIfscCodeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.IfscCodeDetails>;
|
|
551
548
|
/**
|
|
552
549
|
* @param {PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForBankParam} arg
|
|
553
550
|
* - Arg object.
|
|
554
551
|
*
|
|
555
552
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
556
553
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
557
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
554
|
+
* @returns {Promise<PaymentApplicationModel.AddBeneficiaryViaOtpVerificationDetails>}
|
|
558
555
|
* - Success response
|
|
559
556
|
*
|
|
560
557
|
* @name verifyOtpAndAddBeneficiaryForBank
|
|
561
558
|
* @summary: Verify OTP for bank and add beneficiary
|
|
562
559
|
* @description: Verify the OTP provided by the user and adds a bank beneficiary for refund processing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyOtpAndAddBeneficiaryForBank/).
|
|
563
560
|
*/
|
|
564
|
-
verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForBankParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
561
|
+
verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForBankParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AddBeneficiaryViaOtpVerificationDetails>;
|
|
565
562
|
/**
|
|
566
563
|
* @param {PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForWalletParam} arg
|
|
567
564
|
* - Arg object.
|
|
568
565
|
*
|
|
569
566
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
570
567
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
571
|
-
* @returns {Promise<PaymentApplicationModel.
|
|
568
|
+
* @returns {Promise<PaymentApplicationModel.WalletOtpDetails>} - Success response
|
|
572
569
|
* @name verifyOtpAndAddBeneficiaryForWallet
|
|
573
570
|
* @summary: Verify OTP for wallet
|
|
574
571
|
* @description: Verify OTP provided by the user and adds a wallet beneficiary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyOtpAndAddBeneficiaryForWallet/).
|
|
575
572
|
*/
|
|
576
|
-
verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForWalletParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.
|
|
573
|
+
verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForWalletParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.WalletOtpDetails>;
|
|
577
574
|
/**
|
|
578
575
|
* @param {PaymentApplicationValidator.WalletLinkInitiateParam} arg - Arg object.
|
|
579
576
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|