@gofynd/fdk-client-javascript 1.4.2-beta.4 → 1.4.2-beta.6
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 +3 -2
- package/sdk/application/ApplicationClient.js +20 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +62 -62
- package/sdk/application/Cart/CartApplicationClient.js +82 -71
- package/sdk/application/Cart/CartApplicationValidator.d.ts +189 -34
- package/sdk/application/Cart/CartApplicationValidator.js +59 -34
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +78 -78
- package/sdk/application/Catalog/CatalogApplicationClient.js +78 -78
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -6
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -6
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -67
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +32 -106
- package/sdk/application/Content/ContentApplicationClient.d.ts +34 -64
- package/sdk/application/Content/ContentApplicationClient.js +34 -115
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -42
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -42
- package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -14
- package/sdk/application/Lead/LeadApplicationClient.js +14 -14
- package/sdk/application/Lead/LeadApplicationModel.js +1 -1
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +12 -12
- package/sdk/application/Logistic/LogisticApplicationClient.js +12 -12
- package/sdk/application/Order/OrderApplicationClient.d.ts +24 -24
- package/sdk/application/Order/OrderApplicationClient.js +24 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +23 -1
- package/sdk/application/Order/OrderApplicationModel.js +28 -0
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +89 -89
- package/sdk/application/Payment/PaymentApplicationClient.js +94 -94
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +498 -3
- package/sdk/application/Payment/PaymentApplicationModel.js +316 -2
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +5 -5
- package/sdk/application/Payment/PaymentApplicationValidator.js +3 -3
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +54 -54
- package/sdk/application/PosCart/PosCartApplicationClient.js +54 -54
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -25
- package/sdk/application/Rewards/RewardsApplicationClient.js +14 -41
- package/sdk/application/Share/ShareApplicationClient.d.ts +14 -14
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Share/ShareApplicationModel.d.ts +0 -4
- package/sdk/application/Share/ShareApplicationModel.js +0 -4
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
- package/sdk/application/Theme/ThemeApplicationClient.js +8 -8
- package/sdk/application/User/UserApplicationClient.d.ts +64 -64
- package/sdk/application/User/UserApplicationClient.js +64 -64
- package/sdk/common/Clickstream.d.ts +1 -0
- package/sdk/common/Clickstream.js +246 -0
- package/sdk/common/Utility.js +1 -4
- package/sdk/partner/Lead/LeadPartnerModel.js +1 -1
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +38 -38
- package/sdk/partner/Theme/ThemePartnerClient.js +38 -38
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +8 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +34 -36
- package/sdk/platform/Billing/BillingPlatformClient.js +34 -36
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +98 -175
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +98 -254
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +92 -18
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +28 -18
- package/sdk/platform/Cart/CartPlatformModel.d.ts +12 -0
- package/sdk/platform/Cart/CartPlatformModel.js +12 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +195 -108
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +278 -113
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +335 -136
- package/sdk/platform/Catalog/CatalogPlatformClient.js +551 -136
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +5 -5
- package/sdk/platform/Catalog/CatalogPlatformModel.js +3 -3
- package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -3
- package/sdk/platform/Common/CommonPlatformClient.js +3 -3
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +115 -290
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +115 -510
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -13
- package/sdk/platform/Communication/CommunicationPlatformClient.js +2 -29
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +32 -32
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -32
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +52 -127
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +52 -204
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +35 -111
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +35 -212
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +142 -1
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +96 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +130 -218
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +136 -314
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +4 -4
- package/sdk/platform/Content/ContentPlatformClient.d.ts +1 -1
- package/sdk/platform/Content/ContentPlatformClient.js +7 -7
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +4 -4
- package/sdk/platform/Content/ContentPlatformValidator.js +4 -4
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +22 -48
- package/sdk/platform/Discount/DiscountPlatformClient.js +22 -73
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +20 -56
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +20 -59
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +0 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +0 -2
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +14 -50
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +16 -55
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -14
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +12 -16
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +44 -44
- package/sdk/platform/Finance/FinancePlatformClient.js +44 -44
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +12 -12
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -48
- package/sdk/platform/Lead/LeadPlatformClient.js +22 -72
- package/sdk/platform/Lead/LeadPlatformModel.js +1 -1
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
- package/sdk/platform/Order/OrderPlatformClient.d.ts +79 -208
- package/sdk/platform/Order/OrderPlatformClient.js +79 -294
- package/sdk/platform/Order/OrderPlatformModel.d.ts +32 -3
- package/sdk/platform/Order/OrderPlatformModel.js +34 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +81 -81
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +81 -81
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +23 -40
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +23 -61
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +5 -5
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +4 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5 -1
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +2 -2
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Share/SharePlatformApplicationClient.js +10 -10
- package/sdk/platform/Share/SharePlatformModel.d.ts +0 -4
- package/sdk/platform/Share/SharePlatformModel.js +0 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +56 -56
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +56 -56
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +6 -6
- package/sdk/platform/Theme/ThemePlatformClient.js +6 -6
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +33 -33
- package/sdk/platform/User/UserPlatformApplicationClient.js +33 -33
- package/sdk/platform/User/UserPlatformModel.d.ts +4 -4
- package/sdk/platform/User/UserPlatformModel.js +4 -4
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +32 -45
- package/sdk/platform/Webhook/WebhookPlatformClient.js +32 -45
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +58 -1
- package/sdk/platform/Webhook/WebhookPlatformModel.js +66 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicClient.js +2 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicClient.js +4 -4
|
@@ -48,7 +48,7 @@ declare class Payment {
|
|
|
48
48
|
verifyIfscCode: string;
|
|
49
49
|
verifyOtpAndAddBeneficiaryForBank: string;
|
|
50
50
|
verifyOtpAndAddBeneficiaryForWallet: string;
|
|
51
|
-
|
|
51
|
+
walletLinkInitate: string;
|
|
52
52
|
};
|
|
53
53
|
_urls: {};
|
|
54
54
|
updateUrls(urls: any): void;
|
|
@@ -59,8 +59,8 @@ declare class Payment {
|
|
|
59
59
|
* @returns {Promise<PaymentApplicationModel.RefundAccountResponse>} -
|
|
60
60
|
* Success response
|
|
61
61
|
* @name addBeneficiaryDetails
|
|
62
|
-
* @summary:
|
|
63
|
-
* @description:
|
|
62
|
+
* @summary: Add beneficiary.
|
|
63
|
+
* @description: Adds beneficiary details for future transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/addBeneficiaryDetails/).
|
|
64
64
|
*/
|
|
65
65
|
addBeneficiaryDetails({ body, requestHeaders }?: PaymentApplicationValidator.AddBeneficiaryDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundAccountResponse>;
|
|
66
66
|
/**
|
|
@@ -72,8 +72,8 @@ declare class Payment {
|
|
|
72
72
|
* @returns {Promise<PaymentApplicationModel.RefundAccountResponse>} -
|
|
73
73
|
* Success response
|
|
74
74
|
* @name addRefundBankAccountUsingOTP
|
|
75
|
-
* @summary:
|
|
76
|
-
* @description:
|
|
75
|
+
* @summary: Add refund account.
|
|
76
|
+
* @description: Adds a bank account for refunds using OTP verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/addRefundBankAccountUsingOTP/).
|
|
77
77
|
*/
|
|
78
78
|
addRefundBankAccountUsingOTP({ body, requestHeaders }?: PaymentApplicationValidator.AddRefundBankAccountUsingOTPParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundAccountResponse>;
|
|
79
79
|
/**
|
|
@@ -82,8 +82,8 @@ declare class Payment {
|
|
|
82
82
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
83
83
|
* @returns {Promise<PaymentApplicationModel.AttachCardsResponse>} - Success response
|
|
84
84
|
* @name attachCardToCustomer
|
|
85
|
-
* @summary: Attach
|
|
86
|
-
* @description:
|
|
85
|
+
* @summary: Attach card to user.
|
|
86
|
+
* @description: Links a payment card to a customer's account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/attachCardToCustomer/).
|
|
87
87
|
*/
|
|
88
88
|
attachCardToCustomer({ body, requestHeaders }?: PaymentApplicationValidator.AttachCardToCustomerParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AttachCardsResponse>;
|
|
89
89
|
/**
|
|
@@ -93,8 +93,8 @@ declare class Payment {
|
|
|
93
93
|
* @returns {Promise<PaymentApplicationModel.CancelPaymentLinkResponse>} -
|
|
94
94
|
* Success response
|
|
95
95
|
* @name cancelPaymentLink
|
|
96
|
-
* @summary: Cancel
|
|
97
|
-
* @description:
|
|
96
|
+
* @summary: Cancel link.
|
|
97
|
+
* @description: Cancels a previously generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cancelPaymentLink/).
|
|
98
98
|
*/
|
|
99
99
|
cancelPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CancelPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CancelPaymentLinkResponse>;
|
|
100
100
|
/**
|
|
@@ -103,8 +103,8 @@ declare class Payment {
|
|
|
103
103
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
104
104
|
* @returns {Promise<PaymentApplicationModel.CardDetailsResponse>} - Success response
|
|
105
105
|
* @name cardDetails
|
|
106
|
-
* @summary:
|
|
107
|
-
* @description:
|
|
106
|
+
* @summary: Fetch card details.
|
|
107
|
+
* @description: Gets the details of a specified payment card. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cardDetails/).
|
|
108
108
|
*/
|
|
109
109
|
cardDetails({ cardInfo, aggregator, requestHeaders }?: PaymentApplicationValidator.CardDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CardDetailsResponse>;
|
|
110
110
|
/**
|
|
@@ -117,8 +117,8 @@ declare class Payment {
|
|
|
117
117
|
* - Success response
|
|
118
118
|
*
|
|
119
119
|
* @name checkAndUpdatePaymentStatus
|
|
120
|
-
* @summary:
|
|
121
|
-
* @description:
|
|
120
|
+
* @summary: Update payment status.
|
|
121
|
+
* @description: Checks and updates the current status of a payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatus/).
|
|
122
122
|
*/
|
|
123
123
|
checkAndUpdatePaymentStatus({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>;
|
|
124
124
|
/**
|
|
@@ -131,8 +131,8 @@ declare class Payment {
|
|
|
131
131
|
* - Success response
|
|
132
132
|
*
|
|
133
133
|
* @name checkAndUpdatePaymentStatusPaymentLink
|
|
134
|
-
* @summary:
|
|
135
|
-
* @description:
|
|
134
|
+
* @summary: Update link status.
|
|
135
|
+
* @description: Checks and updates the status of payment via a link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatusPaymentLink/).
|
|
136
136
|
*/
|
|
137
137
|
checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>;
|
|
138
138
|
/**
|
|
@@ -141,8 +141,8 @@ declare class Payment {
|
|
|
141
141
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
142
142
|
* @returns {Promise<PaymentApplicationModel.CheckCreditResponse>} - Success response
|
|
143
143
|
* @name checkCredit
|
|
144
|
-
* @summary:
|
|
145
|
-
* @description:
|
|
144
|
+
* @summary: Verify credit.
|
|
145
|
+
* @description: Checks the availability and status of customer credit. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkCredit/).
|
|
146
146
|
*/
|
|
147
147
|
checkCredit({ aggregator, requestHeaders }?: PaymentApplicationValidator.CheckCreditParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CheckCreditResponse>;
|
|
148
148
|
/**
|
|
@@ -154,8 +154,8 @@ declare class Payment {
|
|
|
154
154
|
* @returns {Promise<PaymentApplicationModel.CreateOrderUserResponse>} -
|
|
155
155
|
* Success response
|
|
156
156
|
* @name createOrderHandlerPaymentLink
|
|
157
|
-
* @summary:
|
|
158
|
-
* @description:
|
|
157
|
+
* @summary: Order via link.
|
|
158
|
+
* @description: Creates an order handler for payment through a link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createOrderHandlerPaymentLink/).
|
|
159
159
|
*/
|
|
160
160
|
createOrderHandlerPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreateOrderHandlerPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CreateOrderUserResponse>;
|
|
161
161
|
/**
|
|
@@ -165,8 +165,8 @@ declare class Payment {
|
|
|
165
165
|
* @returns {Promise<PaymentApplicationModel.CreatePaymentLinkResponse>} -
|
|
166
166
|
* Success response
|
|
167
167
|
* @name createPaymentLink
|
|
168
|
-
* @summary: Create payment link
|
|
169
|
-
* @description:
|
|
168
|
+
* @summary: Create payment link.
|
|
169
|
+
* @description: Generates a new payment link for transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentLink/).
|
|
170
170
|
*/
|
|
171
171
|
createPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreatePaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CreatePaymentLinkResponse>;
|
|
172
172
|
/**
|
|
@@ -187,8 +187,8 @@ declare class Payment {
|
|
|
187
187
|
* - Success response
|
|
188
188
|
*
|
|
189
189
|
* @name customerCreditSummary
|
|
190
|
-
* @summary:
|
|
191
|
-
* @description:
|
|
190
|
+
* @summary: Credit summary.
|
|
191
|
+
* @description: Retrieves a summary of the customer's credit details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerCreditSummary/).
|
|
192
192
|
*/
|
|
193
193
|
customerCreditSummary({ aggregator, requestHeaders }?: PaymentApplicationValidator.CustomerCreditSummaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CustomerCreditSummaryResponse>;
|
|
194
194
|
/**
|
|
@@ -198,8 +198,8 @@ declare class Payment {
|
|
|
198
198
|
* @returns {Promise<PaymentApplicationModel.CustomerOnboardingResponse>} -
|
|
199
199
|
* Success response
|
|
200
200
|
* @name customerOnboard
|
|
201
|
-
* @summary:
|
|
202
|
-
* @description:
|
|
201
|
+
* @summary: Onboard customer.
|
|
202
|
+
* @description: Initiates the onboarding process for payment services. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerOnboard/).
|
|
203
203
|
*/
|
|
204
204
|
customerOnboard({ body, requestHeaders }?: PaymentApplicationValidator.CustomerOnboardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CustomerOnboardingResponse>;
|
|
205
205
|
/**
|
|
@@ -208,8 +208,8 @@ declare class Payment {
|
|
|
208
208
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
209
209
|
* @returns {Promise<PaymentApplicationModel.DeleteCardsResponse>} - Success response
|
|
210
210
|
* @name deleteUserCard
|
|
211
|
-
* @summary:
|
|
212
|
-
* @description:
|
|
211
|
+
* @summary: Remove user's card.
|
|
212
|
+
* @description: Deletes a payment card from the user's account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/deleteUserCard/).
|
|
213
213
|
*/
|
|
214
214
|
deleteUserCard({ body, requestHeaders }?: PaymentApplicationValidator.DeleteUserCardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.DeleteCardsResponse>;
|
|
215
215
|
/**
|
|
@@ -232,8 +232,8 @@ declare class Payment {
|
|
|
232
232
|
* - Success response
|
|
233
233
|
*
|
|
234
234
|
* @name enableOrDisableRefundTransferMode
|
|
235
|
-
* @summary:
|
|
236
|
-
* @description:
|
|
235
|
+
* @summary: Toggle refund mode.
|
|
236
|
+
* @description: Enables or disables a particular refund transfer mode. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/enableOrDisableRefundTransferMode/).
|
|
237
237
|
*/
|
|
238
238
|
enableOrDisableRefundTransferMode({ body, requestHeaders }?: PaymentApplicationValidator.EnableOrDisableRefundTransferModeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.UpdateRefundTransferModeResponse>;
|
|
239
239
|
/**
|
|
@@ -244,8 +244,8 @@ declare class Payment {
|
|
|
244
244
|
* - Success response
|
|
245
245
|
*
|
|
246
246
|
* @name getActiveCardAggregator
|
|
247
|
-
* @summary:
|
|
248
|
-
* @description:
|
|
247
|
+
* @summary: Active card info.
|
|
248
|
+
* @description: Gets the active card aggregator for the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveCardAggregator/).
|
|
249
249
|
*/
|
|
250
250
|
getActiveCardAggregator({ refresh, requestHeaders }?: PaymentApplicationValidator.GetActiveCardAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ActiveCardPaymentGatewayResponse>;
|
|
251
251
|
/**
|
|
@@ -256,8 +256,8 @@ declare class Payment {
|
|
|
256
256
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
257
257
|
* @returns {Promise<PaymentApplicationModel.TransferModeResponse>} - Success response
|
|
258
258
|
* @name getActiveRefundTransferModes
|
|
259
|
-
* @summary:
|
|
260
|
-
* @description:
|
|
259
|
+
* @summary: Refund modes.
|
|
260
|
+
* @description: Lists the active transfer modes for refunds. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveRefundTransferModes/).
|
|
261
261
|
*/
|
|
262
262
|
getActiveRefundTransferModes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.TransferModeResponse>;
|
|
263
263
|
/**
|
|
@@ -266,8 +266,8 @@ declare class Payment {
|
|
|
266
266
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
267
267
|
* @returns {Promise<PaymentApplicationModel.ListCardsResponse>} - Success response
|
|
268
268
|
* @name getActiveUserCards
|
|
269
|
-
* @summary:
|
|
270
|
-
* @description:
|
|
269
|
+
* @summary: List user's cards.
|
|
270
|
+
* @description: Retrieves all active cards linked to a user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveUserCards/).
|
|
271
271
|
*/
|
|
272
272
|
getActiveUserCards({ forceRefresh, requestHeaders }?: PaymentApplicationValidator.GetActiveUserCardsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ListCardsResponse>;
|
|
273
273
|
/**
|
|
@@ -278,8 +278,8 @@ declare class Payment {
|
|
|
278
278
|
* - Success response
|
|
279
279
|
*
|
|
280
280
|
* @name getAggregatorsConfig
|
|
281
|
-
* @summary:
|
|
282
|
-
* @description:
|
|
281
|
+
* @summary: Fetch payment aggregators.
|
|
282
|
+
* @description: Retrieves configuration details for available payment aggregators. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getAggregatorsConfig/).
|
|
283
283
|
*/
|
|
284
284
|
getAggregatorsConfig({ xApiToken, refresh, requestHeaders }?: PaymentApplicationValidator.GetAggregatorsConfigParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AggregatorsConfigDetailResponse>;
|
|
285
285
|
/**
|
|
@@ -291,8 +291,8 @@ declare class Payment {
|
|
|
291
291
|
* @returns {Promise<PaymentApplicationModel.EpaylaterBannerResponse>} -
|
|
292
292
|
* Success response
|
|
293
293
|
* @name getEpaylaterBannerDetails
|
|
294
|
-
* @summary:
|
|
295
|
-
* @description:
|
|
294
|
+
* @summary: Epay banner info.
|
|
295
|
+
* @description: Gets details for displaying the Epaylater payment banner. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getEpaylaterBannerDetails/).
|
|
296
296
|
*/
|
|
297
297
|
getEpaylaterBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.EpaylaterBannerResponse>;
|
|
298
298
|
/**
|
|
@@ -304,8 +304,8 @@ declare class Payment {
|
|
|
304
304
|
* @returns {Promise<PaymentApplicationModel.OrderBeneficiaryResponse>} -
|
|
305
305
|
* Success response
|
|
306
306
|
* @name getOrderBeneficiariesDetail
|
|
307
|
-
* @summary:
|
|
308
|
-
* @description:
|
|
307
|
+
* @summary: Order beneficiaries.
|
|
308
|
+
* @description: Retrieve the beneficiary details related to an order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getOrderBeneficiariesDetail/).
|
|
309
309
|
*/
|
|
310
310
|
getOrderBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetOrderBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OrderBeneficiaryResponse>;
|
|
311
311
|
/**
|
|
@@ -315,8 +315,8 @@ declare class Payment {
|
|
|
315
315
|
* @returns {Promise<PaymentApplicationModel.GetPaymentLinkResponse>} -
|
|
316
316
|
* Success response
|
|
317
317
|
* @name getPaymentLink
|
|
318
|
-
* @summary:
|
|
319
|
-
* @description:
|
|
318
|
+
* @summary: Fetch payment link.
|
|
319
|
+
* @description: Retrieves a generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentLink/).
|
|
320
320
|
*/
|
|
321
321
|
getPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.GetPaymentLinkResponse>;
|
|
322
322
|
/**
|
|
@@ -326,8 +326,8 @@ declare class Payment {
|
|
|
326
326
|
* @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
|
|
327
327
|
* Success response
|
|
328
328
|
* @name getPaymentModeRoutes
|
|
329
|
-
* @summary: Get
|
|
330
|
-
* @description:
|
|
329
|
+
* @summary: Get payment modes.
|
|
330
|
+
* @description: Lists the payment mode options and their routing details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutes/).
|
|
331
331
|
*/
|
|
332
332
|
getPaymentModeRoutes({ amount, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, requestHeaders, }?: PaymentApplicationValidator.GetPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
|
|
333
333
|
/**
|
|
@@ -339,8 +339,8 @@ declare class Payment {
|
|
|
339
339
|
* @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
|
|
340
340
|
* Success response
|
|
341
341
|
* @name getPaymentModeRoutesPaymentLink
|
|
342
|
-
* @summary:
|
|
343
|
-
* @description:
|
|
342
|
+
* @summary: Payment link modes.
|
|
343
|
+
* @description: Lists payment modes available for a given payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutesPaymentLink/).
|
|
344
344
|
*/
|
|
345
345
|
getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentModeRoutesPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
|
|
346
346
|
/**
|
|
@@ -350,8 +350,8 @@ declare class Payment {
|
|
|
350
350
|
* @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
|
|
351
351
|
* Success response
|
|
352
352
|
* @name getPosPaymentModeRoutes
|
|
353
|
-
* @summary:
|
|
354
|
-
* @description:
|
|
353
|
+
* @summary: POS payment modes.
|
|
354
|
+
* @description: Lists payment modes available for Point-of-Sale (POS). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPosPaymentModeRoutes/).
|
|
355
355
|
*/
|
|
356
356
|
getPosPaymentModeRoutes({ amount, pincode, orderType, cartId, checkoutMode, refresh, cardReference, userDetails, requestHeaders, }?: PaymentApplicationValidator.GetPosPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
|
|
357
357
|
/**
|
|
@@ -360,8 +360,8 @@ declare class Payment {
|
|
|
360
360
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
361
361
|
* @returns {Promise<PaymentApplicationModel.RupifiBannerResponse>} - Success response
|
|
362
362
|
* @name getRupifiBannerDetails
|
|
363
|
-
* @summary:
|
|
364
|
-
* @description:
|
|
363
|
+
* @summary: Rupifi banner info.
|
|
364
|
+
* @description: Retrieve details for displaying the Rupifi payment banner. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getRupifiBannerDetails/).
|
|
365
365
|
*/
|
|
366
366
|
getRupifiBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.RupifiBannerResponse>;
|
|
367
367
|
/**
|
|
@@ -373,8 +373,8 @@ declare class Payment {
|
|
|
373
373
|
* @returns {Promise<PaymentApplicationModel.OrderBeneficiaryResponse>} -
|
|
374
374
|
* Success response
|
|
375
375
|
* @name getUserBeneficiariesDetail
|
|
376
|
-
* @summary:
|
|
377
|
-
* @description:
|
|
376
|
+
* @summary: Beneficiary info.
|
|
377
|
+
* @description: Retrieves details of beneficiaries linked to the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getUserBeneficiariesDetail/).
|
|
378
378
|
*/
|
|
379
379
|
getUserBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetUserBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OrderBeneficiaryResponse>;
|
|
380
380
|
/**
|
|
@@ -385,8 +385,8 @@ declare class Payment {
|
|
|
385
385
|
* - Success response
|
|
386
386
|
*
|
|
387
387
|
* @name initialisePayment
|
|
388
|
-
* @summary:
|
|
389
|
-
* @description:
|
|
388
|
+
* @summary: Start payment process.
|
|
389
|
+
* @description: Initializes the payment procedure for an order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/initialisePayment/).
|
|
390
390
|
*/
|
|
391
391
|
initialisePayment({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentInitializationResponse>;
|
|
392
392
|
/**
|
|
@@ -399,8 +399,8 @@ declare class Payment {
|
|
|
399
399
|
* - Success response
|
|
400
400
|
*
|
|
401
401
|
* @name initialisePaymentPaymentLink
|
|
402
|
-
* @summary:
|
|
403
|
-
* @description:
|
|
402
|
+
* @summary: Initialise link payment.
|
|
403
|
+
* @description: Initializes payment for an order via a payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/initialisePaymentPaymentLink/).
|
|
404
404
|
*/
|
|
405
405
|
initialisePaymentPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentInitializationResponse>;
|
|
406
406
|
/**
|
|
@@ -421,8 +421,8 @@ declare class Payment {
|
|
|
421
421
|
* - Success response
|
|
422
422
|
*
|
|
423
423
|
* @name outstandingOrderDetails
|
|
424
|
-
* @summary:
|
|
425
|
-
* @description:
|
|
424
|
+
* @summary: Outstanding orders.
|
|
425
|
+
* @description: Lists details of orders with outstanding payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/outstandingOrderDetails/).
|
|
426
426
|
*/
|
|
427
427
|
outstandingOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.OutstandingOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OutstandingOrderDetailsResponse>;
|
|
428
428
|
/**
|
|
@@ -432,8 +432,8 @@ declare class Payment {
|
|
|
432
432
|
* @returns {Promise<PaymentApplicationModel.PaidOrderDetailsResponse>} -
|
|
433
433
|
* Success response
|
|
434
434
|
* @name paidOrderDetails
|
|
435
|
-
* @summary:
|
|
436
|
-
* @description:
|
|
435
|
+
* @summary: Paid orders.
|
|
436
|
+
* @description: Retrieves details of orders that have been paid for. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/paidOrderDetails/).
|
|
437
437
|
*/
|
|
438
438
|
paidOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.PaidOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaidOrderDetailsResponse>;
|
|
439
439
|
/**
|
|
@@ -443,8 +443,8 @@ declare class Payment {
|
|
|
443
443
|
* @returns {Promise<PaymentApplicationModel.PollingPaymentLinkResponse>} -
|
|
444
444
|
* Success response
|
|
445
445
|
* @name pollingPaymentLink
|
|
446
|
-
* @summary:
|
|
447
|
-
* @description:
|
|
446
|
+
* @summary: Poll payment link.
|
|
447
|
+
* @description: Polls the status of a payment link for updates. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/pollingPaymentLink/).
|
|
448
448
|
*/
|
|
449
449
|
pollingPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.PollingPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PollingPaymentLinkResponse>;
|
|
450
450
|
/**
|
|
@@ -455,8 +455,8 @@ declare class Payment {
|
|
|
455
455
|
* - Success response
|
|
456
456
|
*
|
|
457
457
|
* @name redirectToAggregator
|
|
458
|
-
* @summary:
|
|
459
|
-
* @description:
|
|
458
|
+
* @summary: Redirect for payment.
|
|
459
|
+
* @description: Redirects the user to the payment aggregator's interface. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/redirectToAggregator/).
|
|
460
460
|
*/
|
|
461
461
|
redirectToAggregator({ source, aggregator, requestHeaders }?: PaymentApplicationValidator.RedirectToAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RedirectToAggregatorResponse>;
|
|
462
462
|
/**
|
|
@@ -465,8 +465,8 @@ declare class Payment {
|
|
|
465
465
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
466
466
|
* @returns {Promise<PaymentApplicationModel.renderHTMLResponse>} - Success response
|
|
467
467
|
* @name renderHTML
|
|
468
|
-
* @summary:
|
|
469
|
-
* @description:
|
|
468
|
+
* @summary: Render HTML.
|
|
469
|
+
* @description: Generates HTML for payment-related interfaces. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/renderHTML/).
|
|
470
470
|
*/
|
|
471
471
|
renderHTML({ body, requestHeaders }?: PaymentApplicationValidator.RenderHTMLParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.renderHTMLResponse>;
|
|
472
472
|
/**
|
|
@@ -477,8 +477,8 @@ declare class Payment {
|
|
|
477
477
|
* - Success response
|
|
478
478
|
*
|
|
479
479
|
* @name resendOrCancelPayment
|
|
480
|
-
* @summary:
|
|
481
|
-
* @description:
|
|
480
|
+
* @summary: Manage payment.
|
|
481
|
+
* @description: Resends or cancels a pending payment transaction. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/resendOrCancelPayment/).
|
|
482
482
|
*/
|
|
483
483
|
resendOrCancelPayment({ body, requestHeaders }?: PaymentApplicationValidator.ResendOrCancelPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ResendOrCancelPaymentResponse>;
|
|
484
484
|
/**
|
|
@@ -488,8 +488,8 @@ declare class Payment {
|
|
|
488
488
|
* @returns {Promise<PaymentApplicationModel.ResendPaymentLinkResponse>} -
|
|
489
489
|
* Success response
|
|
490
490
|
* @name resendPaymentLink
|
|
491
|
-
* @summary: Resend
|
|
492
|
-
* @description:
|
|
491
|
+
* @summary: Resend link.
|
|
492
|
+
* @description: Resends an existing payment link to the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/resendPaymentLink/).
|
|
493
493
|
*/
|
|
494
494
|
resendPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.ResendPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ResendPaymentLinkResponse>;
|
|
495
495
|
/**
|
|
@@ -501,8 +501,8 @@ declare class Payment {
|
|
|
501
501
|
* - Success response
|
|
502
502
|
*
|
|
503
503
|
* @name updateDefaultBeneficiary
|
|
504
|
-
* @summary: Set
|
|
505
|
-
* @description:
|
|
504
|
+
* @summary: Set default beneficiary.
|
|
505
|
+
* @description: Updates the default beneficiary for the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/updateDefaultBeneficiary/).
|
|
506
506
|
*/
|
|
507
507
|
updateDefaultBeneficiary({ body, requestHeaders }?: PaymentApplicationValidator.UpdateDefaultBeneficiaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.SetDefaultBeneficiaryResponse>;
|
|
508
508
|
/**
|
|
@@ -511,8 +511,8 @@ declare class Payment {
|
|
|
511
511
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
512
512
|
* @returns {Promise<PaymentApplicationModel.ValidateVPAResponse>} - Success response
|
|
513
513
|
* @name validateVPA
|
|
514
|
-
* @summary:
|
|
515
|
-
* @description:
|
|
514
|
+
* @summary: Validate VPA.
|
|
515
|
+
* @description: Checks the validity of a Virtual Payment Address (VPA). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/validateVPA/).
|
|
516
516
|
*/
|
|
517
517
|
validateVPA({ body, requestHeaders }?: PaymentApplicationValidator.ValidateVPAParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ValidateVPAResponse>;
|
|
518
518
|
/**
|
|
@@ -522,8 +522,8 @@ declare class Payment {
|
|
|
522
522
|
* @returns {Promise<PaymentApplicationModel.ChargeCustomerResponse>} -
|
|
523
523
|
* Success response
|
|
524
524
|
* @name verifyAndChargePayment
|
|
525
|
-
* @summary: Verify and charge
|
|
526
|
-
* @description:
|
|
525
|
+
* @summary: Verify and charge.
|
|
526
|
+
* @description: Validates and processes a payment transaction. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyAndChargePayment/).
|
|
527
527
|
*/
|
|
528
528
|
verifyAndChargePayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyAndChargePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ChargeCustomerResponse>;
|
|
529
529
|
/**
|
|
@@ -534,8 +534,8 @@ declare class Payment {
|
|
|
534
534
|
* @returns {Promise<PaymentApplicationModel.ValidateCustomerResponse>} -
|
|
535
535
|
* Success response
|
|
536
536
|
* @name verifyCustomerForPayment
|
|
537
|
-
* @summary:
|
|
538
|
-
* @description:
|
|
537
|
+
* @summary: Verify payment customer.
|
|
538
|
+
* @description: Checks the user's validity for proceeding with payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyCustomerForPayment/).
|
|
539
539
|
*/
|
|
540
540
|
verifyCustomerForPayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyCustomerForPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ValidateCustomerResponse>;
|
|
541
541
|
/**
|
|
@@ -544,8 +544,8 @@ declare class Payment {
|
|
|
544
544
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
545
545
|
* @returns {Promise<PaymentApplicationModel.IfscCodeResponse>} - Success response
|
|
546
546
|
* @name verifyIfscCode
|
|
547
|
-
* @summary: Verify IFSC
|
|
548
|
-
* @description:
|
|
547
|
+
* @summary: Verify IFSC.
|
|
548
|
+
* @description: Checks the validity of an IFSC code for bank transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyIfscCode/).
|
|
549
549
|
*/
|
|
550
550
|
verifyIfscCode({ ifscCode, requestHeaders }?: PaymentApplicationValidator.VerifyIfscCodeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.IfscCodeResponse>;
|
|
551
551
|
/**
|
|
@@ -558,8 +558,8 @@ declare class Payment {
|
|
|
558
558
|
* - Success response
|
|
559
559
|
*
|
|
560
560
|
* @name verifyOtpAndAddBeneficiaryForBank
|
|
561
|
-
* @summary: Verify
|
|
562
|
-
* @description:
|
|
561
|
+
* @summary: Verify OTP for bank.
|
|
562
|
+
* @description: Confirms OTP and adds a bank beneficiary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyOtpAndAddBeneficiaryForBank/).
|
|
563
563
|
*/
|
|
564
564
|
verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForBankParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AddBeneficiaryViaOtpVerificationResponse>;
|
|
565
565
|
/**
|
|
@@ -570,20 +570,20 @@ declare class Payment {
|
|
|
570
570
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
571
571
|
* @returns {Promise<PaymentApplicationModel.WalletOtpResponse>} - Success response
|
|
572
572
|
* @name verifyOtpAndAddBeneficiaryForWallet
|
|
573
|
-
* @summary:
|
|
574
|
-
* @description:
|
|
573
|
+
* @summary: Verify OTP for wallet.
|
|
574
|
+
* @description: Confirms OTP and adds a wallet beneficiary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyOtpAndAddBeneficiaryForWallet/).
|
|
575
575
|
*/
|
|
576
576
|
verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForWalletParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.WalletOtpResponse>;
|
|
577
577
|
/**
|
|
578
|
-
* @param {PaymentApplicationValidator.
|
|
578
|
+
* @param {PaymentApplicationValidator.WalletLinkInitateParam} arg - Arg object.
|
|
579
579
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
580
580
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
581
581
|
* @returns {Promise<PaymentApplicationModel.WalletResponseSchema>} - Success response
|
|
582
|
-
* @name
|
|
582
|
+
* @name walletLinkInitate
|
|
583
583
|
* @summary: Initiate linking of wallet
|
|
584
|
-
* @description: It will initiate linking of wallet for the aggregator. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/
|
|
584
|
+
* @description: It will initiate linking of wallet for the aggregator. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/walletLinkInitate/).
|
|
585
585
|
*/
|
|
586
|
-
|
|
586
|
+
walletLinkInitate({ body, requestHeaders }?: PaymentApplicationValidator.WalletLinkInitateParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.WalletResponseSchema>;
|
|
587
587
|
}
|
|
588
588
|
import PaymentApplicationValidator = require("./PaymentApplicationValidator");
|
|
589
589
|
import PaymentApplicationModel = require("./PaymentApplicationModel");
|