@gofynd/fdk-client-javascript 1.6.4 → 3.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationClient.d.ts +0 -2
- package/sdk/application/ApplicationClient.js +0 -2
- package/sdk/application/Cart/CartApplicationClient.d.ts +113 -93
- package/sdk/application/Cart/CartApplicationClient.js +270 -139
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +51 -21
- package/sdk/application/Content/ContentApplicationClient.js +197 -36
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
- package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
- package/sdk/application/Lead/LeadApplicationClient.js +3 -3
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
- package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
- package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
- package/sdk/application/Order/OrderApplicationClient.js +140 -21
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
- package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
- package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
- package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
- package/sdk/application/User/UserApplicationClient.d.ts +13 -23
- package/sdk/application/User/UserApplicationClient.js +9 -57
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -22
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
- package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
- package/sdk/partner/PartnerClient.d.ts +6 -0
- package/sdk/partner/PartnerClient.js +9 -0
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
- package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
- package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
- package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
- package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
- package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
- package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +3 -0
- package/sdk/partner/index.js +6 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +406 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
- package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
- package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
- package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
- package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
- package/sdk/platform/Common/CommonPlatformClient.js +5 -6
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -234
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
- package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +424 -252
- package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1199 -462
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
- package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
- package/sdk/platform/Content/ContentPlatformClient.js +459 -379
- package/sdk/platform/Content/ContentPlatformModel.d.ts +833 -1307
- package/sdk/platform/Content/ContentPlatformModel.js +893 -582
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
- package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
- package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
- package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
- package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
- package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
- package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
- package/sdk/platform/Order/OrderPlatformClient.d.ts +502 -293
- package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4103 -9109
- package/sdk/platform/Order/OrderPlatformModel.js +3198 -4245
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
- package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
- package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3525 -1313
- package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
- package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
- package/sdk/platform/PlatformClient.d.ts +2 -0
- package/sdk/platform/PlatformClient.js +4 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2180 -302
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
- package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
- package/sdk/platform/Share/SharePlatformModel.d.ts +6 -50
- package/sdk/platform/Share/SharePlatformModel.js +3 -43
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
- package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
- package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
- package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
- package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
- package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
- package/sdk/platform/User/UserPlatformModel.js +209 -216
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
- package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/Billing/BillingPublicClient.d.ts +56 -0
- package/sdk/public/Billing/BillingPublicClient.js +397 -0
- package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
- package/sdk/public/Billing/BillingPublicModel.js +560 -0
- package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
- package/sdk/public/Billing/BillingPublicValidator.js +50 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
- package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
- package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
- package/sdk/public/Content/ContentPublicClient.js +183 -0
- package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
- package/sdk/public/Content/ContentPublicModel.js +47 -1
- package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
- package/sdk/public/Content/ContentPublicValidator.js +19 -0
- package/sdk/public/PublicClient.d.ts +2 -2
- package/sdk/public/PublicClient.js +2 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
- package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -1
- package/sdk/public/index.js +1 -1
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
- package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
- package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
- package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
- package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
|
@@ -11,11 +11,13 @@ declare class Payment {
|
|
|
11
11
|
checkAndUpdatePaymentStatus: string;
|
|
12
12
|
checkAndUpdatePaymentStatusPaymentLink: string;
|
|
13
13
|
checkCredit: string;
|
|
14
|
+
confirmPayment: string;
|
|
14
15
|
createOrderHandlerPaymentLink: string;
|
|
15
16
|
createPaymentLink: string;
|
|
16
17
|
createPaymentOrder: string;
|
|
17
18
|
customerCreditSummary: string;
|
|
18
19
|
customerOnboard: string;
|
|
20
|
+
deleteBeneficiaryDetails: string;
|
|
19
21
|
deleteUserCard: string;
|
|
20
22
|
delinkWallet: string;
|
|
21
23
|
enableOrDisableRefundTransferMode: string;
|
|
@@ -23,14 +25,19 @@ declare class Payment {
|
|
|
23
25
|
getActiveRefundTransferModes: string;
|
|
24
26
|
getActiveUserCards: string;
|
|
25
27
|
getAggregatorsConfig: string;
|
|
28
|
+
getBenficiaryOrder: string;
|
|
26
29
|
getEpaylaterBannerDetails: string;
|
|
27
30
|
getOrderBeneficiariesDetail: string;
|
|
28
31
|
getPaymentLink: string;
|
|
32
|
+
getPaymentLinkId: string;
|
|
29
33
|
getPaymentModeRoutes: string;
|
|
30
34
|
getPaymentModeRoutesPaymentLink: string;
|
|
31
35
|
getPosPaymentModeRoutes: string;
|
|
32
36
|
getRupifiBannerDetails: string;
|
|
37
|
+
getSelectedRefundOption: string;
|
|
33
38
|
getUserBeneficiariesDetail: string;
|
|
39
|
+
getUserBeneficiariesDetailV2: string;
|
|
40
|
+
getotpOrderBeneficiariesDetail: string;
|
|
34
41
|
initialisePayment: string;
|
|
35
42
|
initialisePaymentPaymentLink: string;
|
|
36
43
|
linkWallet: string;
|
|
@@ -41,8 +48,11 @@ declare class Payment {
|
|
|
41
48
|
renderHTML: string;
|
|
42
49
|
resendOrCancelPayment: string;
|
|
43
50
|
resendPaymentLink: string;
|
|
51
|
+
setRefundOptionforShipment: string;
|
|
52
|
+
updateActiveCards: string;
|
|
44
53
|
updateDefaultBeneficiary: string;
|
|
45
|
-
|
|
54
|
+
updateUserCard: string;
|
|
55
|
+
validateBeneficiaryAddress: string;
|
|
46
56
|
validateVPA: string;
|
|
47
57
|
verifyAndChargePayment: string;
|
|
48
58
|
verifyCustomerForPayment: string;
|
|
@@ -56,129 +66,147 @@ declare class Payment {
|
|
|
56
66
|
/**
|
|
57
67
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
58
68
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
59
|
-
* @returns {Promise<
|
|
69
|
+
* @returns {Promise<RefundAccountResponse>} - Success response
|
|
60
70
|
* @name addBeneficiaryDetails
|
|
61
71
|
* @summary: Add beneficiary for refund
|
|
62
72
|
* @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/).
|
|
63
73
|
*/
|
|
64
|
-
addBeneficiaryDetails({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
74
|
+
addBeneficiaryDetails({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RefundAccountResponse>;
|
|
65
75
|
/**
|
|
66
76
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
67
77
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
68
|
-
* @returns {Promise<
|
|
78
|
+
* @returns {Promise<PostAddBeneficiaryDetailsOTPResponse>} - Success response
|
|
69
79
|
* @name addRefundBankAccountUsingOTP
|
|
70
|
-
* @summary:
|
|
80
|
+
* @summary: Save bank details for cancelled/returned order
|
|
71
81
|
* @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/).
|
|
72
82
|
*/
|
|
73
|
-
addRefundBankAccountUsingOTP({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
83
|
+
addRefundBankAccountUsingOTP({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PostAddBeneficiaryDetailsOTPResponse>;
|
|
74
84
|
/**
|
|
75
85
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
76
86
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
77
|
-
* @returns {Promise<
|
|
87
|
+
* @returns {Promise<AttachCardsResponse>} - Success response
|
|
78
88
|
* @name attachCardToCustomer
|
|
79
89
|
* @summary: Link payment card to customer
|
|
80
90
|
* @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/).
|
|
81
91
|
*/
|
|
82
|
-
attachCardToCustomer({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
92
|
+
attachCardToCustomer({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AttachCardsResponse>;
|
|
83
93
|
/**
|
|
84
94
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
85
95
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
86
|
-
* @returns {Promise<
|
|
96
|
+
* @returns {Promise<CancelPaymentLinkResponse>} - Success response
|
|
87
97
|
* @name cancelPaymentLink
|
|
88
98
|
* @summary: Cancel payment link
|
|
89
99
|
* @description: Cancel previously generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cancelPaymentLink/).
|
|
90
100
|
*/
|
|
91
|
-
cancelPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
101
|
+
cancelPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CancelPaymentLinkResponse>;
|
|
92
102
|
/**
|
|
93
103
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
94
104
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
95
|
-
* @returns {Promise<
|
|
105
|
+
* @returns {Promise<CardDetailsResponse>} - Success response
|
|
96
106
|
* @name cardDetails
|
|
97
107
|
* @summary: Get card details
|
|
98
108
|
* @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/).
|
|
99
109
|
*/
|
|
100
|
-
cardDetails({ cardInfo, aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
110
|
+
cardDetails({ cardInfo, aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CardDetailsResponse>;
|
|
101
111
|
/**
|
|
102
112
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
103
113
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
104
|
-
* @returns {Promise<
|
|
114
|
+
* @returns {Promise<PaymentStatusUpdateResponse>} - Success response
|
|
105
115
|
* @name checkAndUpdatePaymentStatus
|
|
106
116
|
* @summary: Update payment status
|
|
107
117
|
* @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/).
|
|
108
118
|
*/
|
|
109
|
-
checkAndUpdatePaymentStatus({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
119
|
+
checkAndUpdatePaymentStatus({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentStatusUpdateResponse>;
|
|
110
120
|
/**
|
|
111
121
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
112
122
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
113
|
-
* @returns {Promise<
|
|
123
|
+
* @returns {Promise<PaymentStatusUpdateResponse>} - Success response
|
|
114
124
|
* @name checkAndUpdatePaymentStatusPaymentLink
|
|
115
|
-
* @summary:
|
|
125
|
+
* @summary: Performs continuous polling to check status of payment on the server
|
|
116
126
|
* @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/).
|
|
117
127
|
*/
|
|
118
|
-
checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
128
|
+
checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentStatusUpdateResponse>;
|
|
119
129
|
/**
|
|
120
130
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
121
131
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
122
|
-
* @returns {Promise<
|
|
132
|
+
* @returns {Promise<CheckCreditResponse>} - Success response
|
|
123
133
|
* @name checkCredit
|
|
124
134
|
* @summary: Verify credit availability and status
|
|
125
135
|
* @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/).
|
|
126
136
|
*/
|
|
127
|
-
checkCredit({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
137
|
+
checkCredit({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CheckCreditResponse>;
|
|
128
138
|
/**
|
|
129
139
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
130
140
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
131
|
-
* @returns {Promise<
|
|
141
|
+
* @returns {Promise<PaymentConfirmationResponse>} - Success response
|
|
142
|
+
* @name confirmPayment
|
|
143
|
+
* @summary: Confirm payment after successful payment from payment gateway
|
|
144
|
+
* @description: confirm payment after payment gateway accepted payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/confirmPayment/).
|
|
145
|
+
*/
|
|
146
|
+
confirmPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentConfirmationResponse>;
|
|
147
|
+
/**
|
|
148
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
149
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
150
|
+
* @returns {Promise<CreateOrderUserResponse>} - Success response
|
|
132
151
|
* @name createOrderHandlerPaymentLink
|
|
133
|
-
* @summary:
|
|
152
|
+
* @summary: Order via link.
|
|
134
153
|
* @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/).
|
|
135
154
|
*/
|
|
136
|
-
createOrderHandlerPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
155
|
+
createOrderHandlerPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CreateOrderUserResponse>;
|
|
137
156
|
/**
|
|
138
157
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
139
158
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
140
|
-
* @returns {Promise<
|
|
159
|
+
* @returns {Promise<CreatePaymentLinkResponse>} - Success response
|
|
141
160
|
* @name createPaymentLink
|
|
142
|
-
* @summary: Create payment link
|
|
161
|
+
* @summary: Create payment link.
|
|
143
162
|
* @description: Create new payment link for transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentLink/).
|
|
144
163
|
*/
|
|
145
|
-
createPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
164
|
+
createPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CreatePaymentLinkResponse>;
|
|
146
165
|
/**
|
|
147
166
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
148
167
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
149
|
-
* @returns {Promise<
|
|
168
|
+
* @returns {Promise<PaymentOrderResponse>} - Success response
|
|
150
169
|
* @name createPaymentOrder
|
|
151
170
|
* @summary: Create Order
|
|
152
171
|
* @description: Create an order and payment on the aggregator side. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentOrder/).
|
|
153
172
|
*/
|
|
154
|
-
createPaymentOrder({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
173
|
+
createPaymentOrder({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentOrderResponse>;
|
|
155
174
|
/**
|
|
156
175
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
157
176
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
158
|
-
* @returns {Promise<
|
|
177
|
+
* @returns {Promise<CustomerCreditSummaryResponse>} - Success response
|
|
159
178
|
* @name customerCreditSummary
|
|
160
|
-
* @summary: Credit summary
|
|
179
|
+
* @summary: Credit summary.
|
|
161
180
|
* @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/).
|
|
162
181
|
*/
|
|
163
|
-
customerCreditSummary({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
182
|
+
customerCreditSummary({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CustomerCreditSummaryResponse>;
|
|
164
183
|
/**
|
|
165
184
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
166
185
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
167
|
-
* @returns {Promise<
|
|
186
|
+
* @returns {Promise<CustomerOnboardingResponse>} - Success response
|
|
168
187
|
* @name customerOnboard
|
|
169
188
|
* @summary: Onboard customer for payment
|
|
170
189
|
* @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/).
|
|
171
190
|
*/
|
|
172
|
-
customerOnboard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
191
|
+
customerOnboard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CustomerOnboardingResponse>;
|
|
173
192
|
/**
|
|
174
193
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
175
194
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
176
|
-
* @returns {Promise<
|
|
195
|
+
* @returns {Promise<DeleteRefundAccountResponse>} - Success response
|
|
196
|
+
* @name deleteBeneficiaryDetails
|
|
197
|
+
* @summary: Delete saved beneficiary details of customers
|
|
198
|
+
* @description: Use this API to delete the saved beneficiary details provided beneficiary Id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/deleteBeneficiaryDetails/).
|
|
199
|
+
*/
|
|
200
|
+
deleteBeneficiaryDetails({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<DeleteRefundAccountResponse>;
|
|
201
|
+
/**
|
|
202
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
203
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
204
|
+
* @returns {Promise<DeleteCardsResponse>} - Success response
|
|
177
205
|
* @name deleteUserCard
|
|
178
206
|
* @summary: Delete customer card
|
|
179
207
|
* @description: Delete payment card from the user's account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/deleteUserCard/).
|
|
180
208
|
*/
|
|
181
|
-
deleteUserCard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
209
|
+
deleteUserCard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<DeleteCardsResponse>;
|
|
182
210
|
/**
|
|
183
211
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
184
212
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
@@ -191,138 +219,183 @@ declare class Payment {
|
|
|
191
219
|
/**
|
|
192
220
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
193
221
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
194
|
-
* @returns {Promise<
|
|
222
|
+
* @returns {Promise<UpdateRefundTransferModeResponse>} - Success response
|
|
195
223
|
* @name enableOrDisableRefundTransferMode
|
|
196
224
|
* @summary: Toggle refund mode
|
|
197
225
|
* @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/).
|
|
198
226
|
*/
|
|
199
|
-
enableOrDisableRefundTransferMode({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
227
|
+
enableOrDisableRefundTransferMode({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<UpdateRefundTransferModeResponse>;
|
|
200
228
|
/**
|
|
201
229
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
202
230
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
203
|
-
* @returns {Promise<
|
|
231
|
+
* @returns {Promise<ActiveCardPaymentGatewayResponse>} - Success response
|
|
204
232
|
* @name getActiveCardAggregator
|
|
205
233
|
* @summary: Retrieve active card aggregator
|
|
206
234
|
* @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/).
|
|
207
235
|
*/
|
|
208
|
-
getActiveCardAggregator({ refresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
236
|
+
getActiveCardAggregator({ refresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ActiveCardPaymentGatewayResponse>;
|
|
209
237
|
/**
|
|
210
238
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
211
239
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
212
|
-
* @returns {Promise<
|
|
240
|
+
* @returns {Promise<TransferModeResponse>} - Success response
|
|
213
241
|
* @name getActiveRefundTransferModes
|
|
214
242
|
* @summary: Get refund transfer modes
|
|
215
243
|
* @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/).
|
|
216
244
|
*/
|
|
217
|
-
getActiveRefundTransferModes({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
245
|
+
getActiveRefundTransferModes({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<TransferModeResponse>;
|
|
218
246
|
/**
|
|
219
247
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
220
248
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
221
|
-
* @returns {Promise<
|
|
249
|
+
* @returns {Promise<ListCardsResponse>} - Success response
|
|
222
250
|
* @name getActiveUserCards
|
|
223
|
-
* @summary:
|
|
251
|
+
* @summary: List user's cards.
|
|
224
252
|
* @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/).
|
|
225
253
|
*/
|
|
226
|
-
getActiveUserCards({ forceRefresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
254
|
+
getActiveUserCards({ forceRefresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ListCardsResponse>;
|
|
227
255
|
/**
|
|
228
256
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
229
257
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
230
|
-
* @returns {Promise<
|
|
258
|
+
* @returns {Promise<AggregatorsConfigDetailResponse>} - Success response
|
|
231
259
|
* @name getAggregatorsConfig
|
|
232
260
|
* @summary: Get payment aggregators
|
|
233
261
|
* @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/).
|
|
234
262
|
*/
|
|
235
|
-
getAggregatorsConfig({ xApiToken, refresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
263
|
+
getAggregatorsConfig({ xApiToken, refresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AggregatorsConfigDetailResponse>;
|
|
264
|
+
/**
|
|
265
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
266
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
267
|
+
* @returns {Promise<RefundOrderBenResponse>} - Success response
|
|
268
|
+
* @name getBenficiaryOrder
|
|
269
|
+
* @summary: Get Payment status and information for a list of order_ids
|
|
270
|
+
* @description: Use this API to get Payment status and information for a list of order_ids. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getBenficiaryOrder/).
|
|
271
|
+
*/
|
|
272
|
+
getBenficiaryOrder({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RefundOrderBenResponse>;
|
|
236
273
|
/**
|
|
237
274
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
238
275
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
239
|
-
* @returns {Promise<
|
|
276
|
+
* @returns {Promise<EpaylaterBannerResponse>} - Success response
|
|
240
277
|
* @name getEpaylaterBannerDetails
|
|
241
278
|
* @summary: Epaylater banner info
|
|
242
279
|
* @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/).
|
|
243
280
|
*/
|
|
244
|
-
getEpaylaterBannerDetails({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
281
|
+
getEpaylaterBannerDetails({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<EpaylaterBannerResponse>;
|
|
245
282
|
/**
|
|
246
283
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
247
284
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
248
|
-
* @returns {Promise<
|
|
285
|
+
* @returns {Promise<OrderBeneficiaryResponse>} - Success response
|
|
249
286
|
* @name getOrderBeneficiariesDetail
|
|
250
287
|
* @summary: Retrieve beneficiary details
|
|
251
288
|
* @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/).
|
|
252
289
|
*/
|
|
253
|
-
getOrderBeneficiariesDetail({ orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
290
|
+
getOrderBeneficiariesDetail({ orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OrderBeneficiaryResponse>;
|
|
254
291
|
/**
|
|
255
292
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
256
293
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
257
|
-
* @returns {Promise<
|
|
294
|
+
* @returns {Promise<GetPaymentLinkResponse>} - Success response
|
|
258
295
|
* @name getPaymentLink
|
|
259
|
-
* @summary:
|
|
296
|
+
* @summary: Fetch payment link.
|
|
260
297
|
* @description: Get a generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentLink/).
|
|
261
298
|
*/
|
|
262
|
-
getPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
299
|
+
getPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<GetPaymentLinkResponse>;
|
|
263
300
|
/**
|
|
264
301
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
265
302
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
266
|
-
* @returns {Promise<
|
|
303
|
+
* @returns {Promise<GetPaymentLinkResponse>} - Success response
|
|
304
|
+
* @name getPaymentLinkId
|
|
305
|
+
* @summary: Get payment link
|
|
306
|
+
* @description: get a payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentLinkId/).
|
|
307
|
+
*/
|
|
308
|
+
getPaymentLinkId({ id, paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<GetPaymentLinkResponse>;
|
|
309
|
+
/**
|
|
310
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
311
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
312
|
+
* @returns {Promise<PaymentModeRouteResponse>} - Success response
|
|
267
313
|
* @name getPaymentModeRoutes
|
|
268
314
|
* @summary: Get payment modes
|
|
269
315
|
* @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/).
|
|
270
316
|
*/
|
|
271
|
-
getPaymentModeRoutes({ amount, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, requestHeaders, }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
317
|
+
getPaymentModeRoutes({ amount, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, requestHeaders, }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteResponse>;
|
|
272
318
|
/**
|
|
273
319
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
274
320
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
275
|
-
* @returns {Promise<
|
|
321
|
+
* @returns {Promise<PaymentModeRouteResponse>} - Success response
|
|
276
322
|
* @name getPaymentModeRoutesPaymentLink
|
|
277
|
-
* @summary: Payment modes
|
|
323
|
+
* @summary: Payment link modes.
|
|
278
324
|
* @description: List payment modes available for a given payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutesPaymentLink/).
|
|
279
325
|
*/
|
|
280
|
-
getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
326
|
+
getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteResponse>;
|
|
281
327
|
/**
|
|
282
328
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
283
329
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
284
|
-
* @returns {Promise<
|
|
330
|
+
* @returns {Promise<PaymentModeRouteResponse>} - Success response
|
|
285
331
|
* @name getPosPaymentModeRoutes
|
|
286
332
|
* @summary: POS payment modes
|
|
287
333
|
* @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/).
|
|
288
334
|
*/
|
|
289
|
-
getPosPaymentModeRoutes({ amount,
|
|
335
|
+
getPosPaymentModeRoutes({ amount, pincode, orderType, cartId, checkoutMode, refresh, cardReference, userDetails, requestHeaders, }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteResponse>;
|
|
290
336
|
/**
|
|
291
337
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
292
338
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
293
|
-
* @returns {Promise<
|
|
339
|
+
* @returns {Promise<RupifiBannerResponse>} - Success response
|
|
294
340
|
* @name getRupifiBannerDetails
|
|
295
|
-
* @summary: Rupifi banner info
|
|
341
|
+
* @summary: Rupifi banner info.
|
|
296
342
|
* @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/).
|
|
297
343
|
*/
|
|
298
|
-
getRupifiBannerDetails({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
344
|
+
getRupifiBannerDetails({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RupifiBannerResponse>;
|
|
345
|
+
/**
|
|
346
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
347
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
348
|
+
* @returns {Promise<SelectedRefundOptionResponse>} - Success response
|
|
349
|
+
* @name getSelectedRefundOption
|
|
350
|
+
* @summary: get the selected refund options for shipment id
|
|
351
|
+
* @description: get the selected refund options for shipment id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getSelectedRefundOption/).
|
|
352
|
+
*/
|
|
353
|
+
getSelectedRefundOption({ shipmentId, orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<SelectedRefundOptionResponse>;
|
|
299
354
|
/**
|
|
300
355
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
301
356
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
302
|
-
* @returns {Promise<
|
|
357
|
+
* @returns {Promise<OrderBeneficiaryResponse>} - Success response
|
|
303
358
|
* @name getUserBeneficiariesDetail
|
|
304
359
|
* @summary: Retrieve beneficiary details
|
|
305
360
|
* @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/).
|
|
306
361
|
*/
|
|
307
|
-
getUserBeneficiariesDetail({ orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
362
|
+
getUserBeneficiariesDetail({ orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OrderBeneficiaryResponse>;
|
|
308
363
|
/**
|
|
309
364
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
310
365
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
311
|
-
* @returns {Promise<
|
|
366
|
+
* @returns {Promise<OrderBeneficiaryResponseSchemaV2>} - Success response
|
|
367
|
+
* @name getUserBeneficiariesDetailV2
|
|
368
|
+
* @summary: Retrieve beneficiary details
|
|
369
|
+
* @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/getUserBeneficiariesDetailV2/).
|
|
370
|
+
*/
|
|
371
|
+
getUserBeneficiariesDetailV2({ orderId, shipmentId, mop, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OrderBeneficiaryResponseSchemaV2>;
|
|
372
|
+
/**
|
|
373
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
374
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
375
|
+
* @returns {Promise<AddBeneficiaryDetailsOTPResponse>} - Success response
|
|
376
|
+
* @name getotpOrderBeneficiariesDetail
|
|
377
|
+
* @summary: Lists the beneficiary of a refund
|
|
378
|
+
* @description: Get the details of all active beneficiary added by a user for refund. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getotpOrderBeneficiariesDetail/).
|
|
379
|
+
*/
|
|
380
|
+
getotpOrderBeneficiariesDetail({ orderId, requestHash, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AddBeneficiaryDetailsOTPResponse>;
|
|
381
|
+
/**
|
|
382
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
383
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
384
|
+
* @returns {Promise<PaymentInitializationResponse>} - Success response
|
|
312
385
|
* @name initialisePayment
|
|
313
|
-
* @summary: Start payment process
|
|
386
|
+
* @summary: Start payment process.
|
|
314
387
|
* @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/).
|
|
315
388
|
*/
|
|
316
|
-
initialisePayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
389
|
+
initialisePayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentInitializationResponse>;
|
|
317
390
|
/**
|
|
318
391
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
319
392
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
320
|
-
* @returns {Promise<
|
|
393
|
+
* @returns {Promise<PaymentInitializationResponse>} - Success response
|
|
321
394
|
* @name initialisePaymentPaymentLink
|
|
322
|
-
* @summary:
|
|
395
|
+
* @summary: Initialise link payment.
|
|
323
396
|
* @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/).
|
|
324
397
|
*/
|
|
325
|
-
initialisePaymentPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
398
|
+
initialisePaymentPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentInitializationResponse>;
|
|
326
399
|
/**
|
|
327
400
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
328
401
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
@@ -335,138 +408,165 @@ declare class Payment {
|
|
|
335
408
|
/**
|
|
336
409
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
337
410
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
338
|
-
* @returns {Promise<
|
|
411
|
+
* @returns {Promise<OutstandingOrderDetailsResponse>} - Success response
|
|
339
412
|
* @name outstandingOrderDetails
|
|
340
|
-
* @summary: Outstanding orders
|
|
413
|
+
* @summary: Outstanding orders.
|
|
341
414
|
* @description: Get details of orders with outstanding payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/outstandingOrderDetails/).
|
|
342
415
|
*/
|
|
343
|
-
outstandingOrderDetails({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
416
|
+
outstandingOrderDetails({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OutstandingOrderDetailsResponse>;
|
|
344
417
|
/**
|
|
345
418
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
346
419
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
347
|
-
* @returns {Promise<
|
|
420
|
+
* @returns {Promise<PaidOrderDetailsResponse>} - Success response
|
|
348
421
|
* @name paidOrderDetails
|
|
349
422
|
* @summary: Retrieve details of paid orders
|
|
350
423
|
* @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/).
|
|
351
424
|
*/
|
|
352
|
-
paidOrderDetails({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
425
|
+
paidOrderDetails({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaidOrderDetailsResponse>;
|
|
353
426
|
/**
|
|
354
427
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
355
428
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
356
|
-
* @returns {Promise<
|
|
429
|
+
* @returns {Promise<PollingPaymentLinkResponse>} - Success response
|
|
357
430
|
* @name pollingPaymentLink
|
|
358
|
-
* @summary: Poll
|
|
431
|
+
* @summary: Poll payment link.
|
|
359
432
|
* @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/).
|
|
360
433
|
*/
|
|
361
|
-
pollingPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
434
|
+
pollingPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PollingPaymentLinkResponse>;
|
|
362
435
|
/**
|
|
363
436
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
364
437
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
365
|
-
* @returns {Promise<
|
|
438
|
+
* @returns {Promise<RedirectToAggregatorResponse>} - Success response
|
|
366
439
|
* @name redirectToAggregator
|
|
367
440
|
* @summary: Redirects users to the payment aggregator's interface
|
|
368
|
-
* @description:
|
|
441
|
+
* @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/).
|
|
369
442
|
*/
|
|
370
|
-
redirectToAggregator({
|
|
443
|
+
redirectToAggregator({ source, aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RedirectToAggregatorResponse>;
|
|
371
444
|
/**
|
|
372
445
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
373
446
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
374
|
-
* @returns {Promise<
|
|
447
|
+
* @returns {Promise<renderHTMLResponse>} - Success response
|
|
375
448
|
* @name renderHTML
|
|
376
|
-
* @summary: Render HTML
|
|
449
|
+
* @summary: Render HTML.
|
|
377
450
|
* @description: Render HTML for a payment aggregator page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/renderHTML/).
|
|
378
451
|
*/
|
|
379
|
-
renderHTML({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
452
|
+
renderHTML({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<renderHTMLResponse>;
|
|
380
453
|
/**
|
|
381
454
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
382
455
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
383
|
-
* @returns {Promise<
|
|
456
|
+
* @returns {Promise<ResendOrCancelPaymentResponse>} - Success response
|
|
384
457
|
* @name resendOrCancelPayment
|
|
385
458
|
* @summary: Resend or cancel a pending payment transaction
|
|
386
459
|
* @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/).
|
|
387
460
|
*/
|
|
388
|
-
resendOrCancelPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
461
|
+
resendOrCancelPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ResendOrCancelPaymentResponse>;
|
|
389
462
|
/**
|
|
390
463
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
391
464
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
392
|
-
* @returns {Promise<
|
|
465
|
+
* @returns {Promise<ResendPaymentLinkResponse>} - Success response
|
|
393
466
|
* @name resendPaymentLink
|
|
394
467
|
* @summary: Resend payment link
|
|
395
468
|
* @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/).
|
|
396
469
|
*/
|
|
397
|
-
resendPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
470
|
+
resendPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ResendPaymentLinkResponse>;
|
|
398
471
|
/**
|
|
399
472
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
400
473
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
401
|
-
* @returns {Promise<
|
|
474
|
+
* @returns {Promise<ShipmentRefundResponse>} - Success response
|
|
475
|
+
* @name setRefundOptionforShipment
|
|
476
|
+
* @summary: Save refund source against shipment and order
|
|
477
|
+
* @description: Save refund source against shipment and order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/setRefundOptionforShipment/).
|
|
478
|
+
*/
|
|
479
|
+
setRefundOptionforShipment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ShipmentRefundResponse>;
|
|
480
|
+
/**
|
|
481
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
482
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
483
|
+
* @returns {Promise<UpdateCardResponse>} - Success response
|
|
484
|
+
* @name updateActiveCards
|
|
485
|
+
* @summary: update a card
|
|
486
|
+
* @description: Use this API to update a card list added by a user on the payment gateway. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/updateActiveCards/).
|
|
487
|
+
*/
|
|
488
|
+
updateActiveCards({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<UpdateCardResponse>;
|
|
489
|
+
/**
|
|
490
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
491
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
492
|
+
* @returns {Promise<SetDefaultBeneficiaryResponse>} - Success response
|
|
402
493
|
* @name updateDefaultBeneficiary
|
|
403
494
|
* @summary: Set default beneficiary for refund
|
|
404
495
|
* @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/).
|
|
405
496
|
*/
|
|
406
|
-
updateDefaultBeneficiary({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
497
|
+
updateDefaultBeneficiary({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<SetDefaultBeneficiaryResponse>;
|
|
498
|
+
/**
|
|
499
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
500
|
+
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
501
|
+
* @returns {Promise<UpdateAggregatorCardResponse>} - Success response
|
|
502
|
+
* @name updateUserCard
|
|
503
|
+
* @summary: card aggregator
|
|
504
|
+
* @description: Use this API to get card of user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/updateUserCard/).
|
|
505
|
+
*/
|
|
506
|
+
updateUserCard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<UpdateAggregatorCardResponse>;
|
|
407
507
|
/**
|
|
408
508
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
409
509
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
410
|
-
* @returns {Promise<
|
|
411
|
-
* @name
|
|
412
|
-
* @summary:
|
|
413
|
-
* @description:
|
|
510
|
+
* @returns {Promise<ValidateValidateAddressResponse>} - Success response
|
|
511
|
+
* @name validateBeneficiaryAddress
|
|
512
|
+
* @summary: Validate UPI ID and IFSC code
|
|
513
|
+
* @description: Validate UPI ID and IFSC code. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/validateBeneficiaryAddress/).
|
|
414
514
|
*/
|
|
415
|
-
|
|
515
|
+
validateBeneficiaryAddress({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ValidateValidateAddressResponse>;
|
|
416
516
|
/**
|
|
417
517
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
418
518
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
419
|
-
* @returns {Promise<
|
|
519
|
+
* @returns {Promise<ValidateVPAResponse>} - Success response
|
|
420
520
|
* @name validateVPA
|
|
421
|
-
* @summary: Validate VPA
|
|
521
|
+
* @summary: Validate VPA.
|
|
422
522
|
* @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/).
|
|
423
523
|
*/
|
|
424
|
-
validateVPA({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
524
|
+
validateVPA({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ValidateVPAResponse>;
|
|
425
525
|
/**
|
|
426
526
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
427
527
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
428
|
-
* @returns {Promise<
|
|
528
|
+
* @returns {Promise<ChargeCustomerResponse>} - Success response
|
|
429
529
|
* @name verifyAndChargePayment
|
|
430
530
|
* @summary: Verify order confirmation and charge
|
|
431
531
|
* @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/).
|
|
432
532
|
*/
|
|
433
|
-
verifyAndChargePayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
533
|
+
verifyAndChargePayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ChargeCustomerResponse>;
|
|
434
534
|
/**
|
|
435
535
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
436
536
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
437
|
-
* @returns {Promise<
|
|
537
|
+
* @returns {Promise<ValidateCustomerResponse>} - Success response
|
|
438
538
|
* @name verifyCustomerForPayment
|
|
439
|
-
* @summary: Verify payment customer
|
|
539
|
+
* @summary: Verify payment customer.
|
|
440
540
|
* @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/).
|
|
441
541
|
*/
|
|
442
|
-
verifyCustomerForPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
542
|
+
verifyCustomerForPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ValidateCustomerResponse>;
|
|
443
543
|
/**
|
|
444
544
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
445
545
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
446
|
-
* @returns {Promise<
|
|
546
|
+
* @returns {Promise<IfscCodeResponse>} - Success response
|
|
447
547
|
* @name verifyIfscCode
|
|
448
548
|
* @summary: Verify IFSC
|
|
449
549
|
* @description: Validate IFSC code and returns bank details if valid. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyIfscCode/).
|
|
450
550
|
*/
|
|
451
|
-
verifyIfscCode({ ifscCode, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
551
|
+
verifyIfscCode({ ifscCode, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<IfscCodeResponse>;
|
|
452
552
|
/**
|
|
453
553
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
454
554
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
455
|
-
* @returns {Promise<
|
|
555
|
+
* @returns {Promise<AddBeneficiaryViaOtpVerificationResponse>} - Success response
|
|
456
556
|
* @name verifyOtpAndAddBeneficiaryForBank
|
|
457
|
-
* @summary: Verify OTP for bank
|
|
557
|
+
* @summary: Verify OTP for bank.
|
|
458
558
|
* @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/).
|
|
459
559
|
*/
|
|
460
|
-
verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
560
|
+
verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AddBeneficiaryViaOtpVerificationResponse>;
|
|
461
561
|
/**
|
|
462
562
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
463
563
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
464
|
-
* @returns {Promise<
|
|
564
|
+
* @returns {Promise<WalletOtpResponse>} - Success response
|
|
465
565
|
* @name verifyOtpAndAddBeneficiaryForWallet
|
|
466
|
-
* @summary: Verify OTP for wallet
|
|
566
|
+
* @summary: Verify OTP for wallet.
|
|
467
567
|
* @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/).
|
|
468
568
|
*/
|
|
469
|
-
verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<
|
|
569
|
+
verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<WalletOtpResponse>;
|
|
470
570
|
/**
|
|
471
571
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
472
572
|
* @param {import("../ApplicationAPIClient").Options} - Options
|