@gofynd/fdk-client-javascript 1.4.15-beta.13 → 1.4.15-beta.15

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.
Files changed (278) hide show
  1. package/README.md +23 -26
  2. package/package.json +5 -1
  3. package/sdk/application/ApplicationClient.d.ts +5 -6
  4. package/sdk/application/ApplicationClient.js +24 -20
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
  6. package/sdk/application/Cart/CartApplicationClient.js +444 -76
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +4 -4
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
  16. package/sdk/application/Content/ContentApplicationClient.js +274 -111
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
  19. package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
  20. package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
  21. package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
  22. package/sdk/application/Lead/LeadApplicationClient.js +6 -6
  23. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
  24. package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
  25. package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
  26. package/sdk/application/Order/OrderApplicationClient.js +217 -17
  27. package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
  28. package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
  29. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  30. package/sdk/application/Share/ShareApplicationClient.js +7 -7
  31. package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
  32. package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
  33. package/sdk/application/User/UserApplicationClient.d.ts +103 -53
  34. package/sdk/application/User/UserApplicationClient.js +308 -49
  35. package/sdk/common/AxiosHelper.js +11 -4
  36. package/sdk/common/Constant.d.ts +27 -4
  37. package/sdk/common/Constant.js +33 -6
  38. package/sdk/common/utils.d.ts +10 -0
  39. package/sdk/common/utils.js +24 -3
  40. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
  41. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
  42. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
  43. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
  44. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
  45. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
  46. package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
  47. package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
  48. package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
  49. package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
  50. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
  51. package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
  52. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
  53. package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
  54. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
  55. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
  56. package/sdk/partner/PartnerClient.d.ts +5 -2
  57. package/sdk/partner/PartnerClient.js +21 -7
  58. package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
  59. package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
  60. package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
  61. package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
  62. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  63. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
  64. package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
  65. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
  66. package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
  67. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
  68. package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
  69. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
  70. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
  71. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
  72. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  73. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
  74. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
  75. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
  76. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
  77. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
  78. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
  79. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  80. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  81. package/sdk/platform/Billing/BillingPlatformClient.d.ts +15 -15
  82. package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
  83. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  84. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  85. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  86. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  87. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +266 -203
  88. package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
  89. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
  90. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
  91. package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
  92. package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
  93. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
  94. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
  95. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
  96. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
  97. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
  98. package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
  99. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9571 -2674
  100. package/sdk/platform/Catalog/CatalogPlatformModel.js +5081 -2019
  101. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
  102. package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
  103. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
  104. package/sdk/platform/Common/CommonPlatformClient.js +6 -5
  105. package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
  106. package/sdk/platform/Common/CommonPlatformModel.js +25 -14
  107. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
  110. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
  111. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
  112. package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
  113. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
  114. package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
  118. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
  119. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  120. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  121. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
  122. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
  123. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
  124. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
  125. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
  126. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
  127. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
  128. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
  129. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  130. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  131. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
  132. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
  133. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
  134. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
  135. package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
  136. package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
  137. package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
  138. package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
  139. package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
  140. package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
  141. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
  142. package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
  143. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
  144. package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
  145. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
  146. package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
  147. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
  148. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
  149. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
  150. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
  151. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
  152. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
  153. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
  154. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
  155. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  156. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  157. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
  158. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
  159. package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
  160. package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
  161. package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
  162. package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
  163. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
  164. package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
  165. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
  166. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
  167. package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
  168. package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
  169. package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
  170. package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
  171. package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
  172. package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
  173. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
  174. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
  175. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
  176. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
  177. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
  178. package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
  179. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
  180. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
  181. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
  182. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
  183. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
  184. package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
  185. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
  186. package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
  187. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  188. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  189. package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
  190. package/sdk/platform/PlatformApplicationClient.js +0 -4
  191. package/sdk/platform/PlatformClient.d.ts +5 -4
  192. package/sdk/platform/PlatformClient.js +32 -22
  193. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
  194. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
  195. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
  196. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
  197. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
  198. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
  199. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
  200. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
  201. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
  202. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
  203. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
  204. package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
  205. package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
  206. package/sdk/platform/Share/SharePlatformModel.js +31 -6
  207. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
  208. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
  209. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
  210. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
  211. package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
  212. package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
  213. package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
  214. package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
  215. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
  216. package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
  217. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
  218. package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
  219. package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
  220. package/sdk/platform/User/UserPlatformModel.js +607 -46
  221. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
  222. package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
  223. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
  224. package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
  225. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  226. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  227. package/sdk/platform/index.d.ts +0 -2
  228. package/sdk/platform/index.js +0 -4
  229. package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
  230. package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
  231. package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
  232. package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
  233. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
  234. package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
  235. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +5 -4
  236. package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
  237. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
  238. package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
  239. package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
  240. package/sdk/public/Content/ContentPublicClient.js +1067 -17
  241. package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
  242. package/sdk/public/Content/ContentPublicModel.js +751 -3
  243. package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
  244. package/sdk/public/Content/ContentPublicValidator.js +119 -2
  245. package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
  246. package/sdk/public/Partner/PartnerPublicClient.js +1 -1
  247. package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
  248. package/sdk/public/Partner/PartnerPublicModel.js +81 -71
  249. package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
  250. package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
  251. package/sdk/public/PublicClient.d.ts +5 -2
  252. package/sdk/public/PublicClient.js +16 -6
  253. package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
  254. package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
  255. package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
  256. package/sdk/public/Webhook/WebhookPublicModel.js +81 -61
  257. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  258. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  259. package/sdk/public/index.d.ts +1 -0
  260. package/sdk/public/index.js +2 -0
  261. package/utility.d.ts +3 -0
  262. package/utility.js +7 -0
  263. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
  264. package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
  265. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
  266. package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
  267. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  268. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  269. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  270. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  271. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  272. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
  273. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
  274. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
  275. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
  276. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
  277. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
  278. package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
@@ -3,8 +3,10 @@ declare class Payment {
3
3
  constructor(_conf: any);
4
4
  _conf: any;
5
5
  _relativeUrls: {
6
+ addBeneficiary: string;
6
7
  addBeneficiaryDetails: string;
7
8
  addRefundBankAccountUsingOTP: string;
9
+ addRefundBeneficiaryUsingOTPSession: string;
8
10
  attachCardToCustomer: string;
9
11
  cancelPaymentLink: string;
10
12
  cardDetails: string;
@@ -16,6 +18,7 @@ declare class Payment {
16
18
  createPaymentOrder: string;
17
19
  customerCreditSummary: string;
18
20
  customerOnboard: string;
21
+ deleteBeneficiary: string;
19
22
  deleteUserCard: string;
20
23
  delinkWallet: string;
21
24
  enableOrDisableRefundTransferMode: string;
@@ -23,18 +26,17 @@ declare class Payment {
23
26
  getActiveRefundTransferModes: string;
24
27
  getActiveUserCards: string;
25
28
  getAggregatorsConfig: string;
26
- getEpaylaterBannerDetails: string;
27
29
  getOrderBeneficiariesDetail: string;
28
30
  getPaymentLink: string;
29
31
  getPaymentModeRoutes: string;
30
32
  getPaymentModeRoutesPaymentLink: string;
31
33
  getPosPaymentModeRoutes: string;
32
- getRupifiBannerDetails: string;
34
+ getRefundBeneficiaries: string;
35
+ getRefundBeneficiariesUsingOTPSession: string;
33
36
  getUserBeneficiariesDetail: string;
34
37
  initialisePayment: string;
35
38
  initialisePaymentPaymentLink: string;
36
39
  linkWallet: string;
37
- outstandingOrderDetails: string;
38
40
  paidOrderDetails: string;
39
41
  pollingPaymentLink: string;
40
42
  redirectToAggregator: string;
@@ -42,6 +44,7 @@ declare class Payment {
42
44
  resendOrCancelPayment: string;
43
45
  resendPaymentLink: string;
44
46
  updateDefaultBeneficiary: string;
47
+ validateCustomerAndCreditSummary: string;
45
48
  validateVPA: string;
46
49
  verifyAndChargePayment: string;
47
50
  verifyCustomerForPayment: string;
@@ -55,415 +58,442 @@ declare class Payment {
55
58
  /**
56
59
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
57
60
  * @param {import("../ApplicationAPIClient").Options} - Options
58
- * @returns {Promise<RefundAccountResponse>} - Success response
61
+ * @returns {Promise<AddBeneficiaryResponseDetails>} - Success response
62
+ * @name addBeneficiary
63
+ * @summary: Add a beneficiary for refunds
64
+ * @description: Adds a bank or UPI beneficiary to the user account for processing refunds. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/addBeneficiary/).
65
+ */
66
+ addBeneficiary({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AddBeneficiaryResponseDetails>;
67
+ /**
68
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
69
+ * @param {import("../ApplicationAPIClient").Options} - Options
70
+ * @returns {Promise<RefundAccountDetails>} - Success response
59
71
  * @name addBeneficiaryDetails
60
72
  * @summary: Add beneficiary for refund
61
- * @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/).
73
+ * @description: Add beneficiary details specifically for refund transactions, including account holder name, account number and bank details. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/addBeneficiaryDetails/).
62
74
  */
63
- addBeneficiaryDetails({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RefundAccountResponse>;
75
+ addBeneficiaryDetails({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RefundAccountDetails>;
64
76
  /**
65
77
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
66
78
  * @param {import("../ApplicationAPIClient").Options} - Options
67
- * @returns {Promise<RefundAccountResponse>} - Success response
79
+ * @returns {Promise<RefundAccountDetails>} - Success response
68
80
  * @name addRefundBankAccountUsingOTP
69
81
  * @summary: Add refund account using OTP verification
70
- * @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/).
82
+ * @description: Add bank account specifically for refunds, employing OTP verification for security. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/addRefundBankAccountUsingOTP/).
83
+ */
84
+ addRefundBankAccountUsingOTP({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RefundAccountDetails>;
85
+ /**
86
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
87
+ * @param {import("../ApplicationAPIClient").Options} - Options
88
+ * @returns {Promise<AddBeneficiaryResponseDetails>} - Success response
89
+ * @name addRefundBeneficiaryUsingOTPSession
90
+ * @summary: Add a beneficiary for refunds using OTP session
91
+ * @description: Adds a bank or UPI beneficiary to the user account after completing an OTP verification session. The beneficiary details are securely linked with the user's refund preferences and will be used for processing refunds against specific orders and shipments. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/addRefundBeneficiaryUsingOTPSession/).
71
92
  */
72
- addRefundBankAccountUsingOTP({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RefundAccountResponse>;
93
+ addRefundBeneficiaryUsingOTPSession({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AddBeneficiaryResponseDetails>;
73
94
  /**
74
95
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
75
96
  * @param {import("../ApplicationAPIClient").Options} - Options
76
- * @returns {Promise<AttachCardsResponse>} - Success response
97
+ * @returns {Promise<AttachCardsDetails>} - Success response
77
98
  * @name attachCardToCustomer
78
99
  * @summary: Link payment card to customer
79
- * @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/).
100
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/attachCardToCustomer/).
80
101
  */
81
- attachCardToCustomer({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AttachCardsResponse>;
102
+ attachCardToCustomer({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AttachCardsDetails>;
82
103
  /**
83
104
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
84
105
  * @param {import("../ApplicationAPIClient").Options} - Options
85
- * @returns {Promise<CancelPaymentLinkResponse>} - Success response
106
+ * @returns {Promise<CancelPaymentLinkDetails>} - Success response
86
107
  * @name cancelPaymentLink
87
108
  * @summary: Cancel payment link
88
- * @description: Cancel previously generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cancelPaymentLink/).
109
+ * @description: Cancel previously generated payment link. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/cancelPaymentLink/).
89
110
  */
90
- cancelPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CancelPaymentLinkResponse>;
111
+ cancelPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CancelPaymentLinkDetails>;
91
112
  /**
92
113
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
93
114
  * @param {import("../ApplicationAPIClient").Options} - Options
94
- * @returns {Promise<CardDetailsResponse>} - Success response
115
+ * @returns {Promise<CardDetailsFetchedDetails>} - Success response
95
116
  * @name cardDetails
96
117
  * @summary: Get card details
97
- * @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/).
118
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/cardDetails/).
98
119
  */
99
- cardDetails({ cardInfo, aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options, ...args: any[]): Promise<CardDetailsResponse>;
120
+ cardDetails({ cardInfo, aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options, ...args: any[]): Promise<CardDetailsFetchedDetails>;
100
121
  /**
101
122
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
102
123
  * @param {import("../ApplicationAPIClient").Options} - Options
103
- * @returns {Promise<PaymentStatusUpdateResponse>} - Success response
124
+ * @returns {Promise<PaymentStatusUpdateDetails>} - Success response
104
125
  * @name checkAndUpdatePaymentStatus
105
126
  * @summary: Update payment status
106
- * @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/).
127
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/checkAndUpdatePaymentStatus/).
107
128
  */
108
- checkAndUpdatePaymentStatus({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentStatusUpdateResponse>;
129
+ checkAndUpdatePaymentStatus({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentStatusUpdateDetails>;
109
130
  /**
110
131
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
111
132
  * @param {import("../ApplicationAPIClient").Options} - Options
112
- * @returns {Promise<PaymentStatusUpdateResponse>} - Success response
133
+ * @returns {Promise<PaymentStatusUpdateDetails>} - Success response
113
134
  * @name checkAndUpdatePaymentStatusPaymentLink
114
135
  * @summary: Update payment link status
115
- * @description: Verify and update status of a payment made through a link.Upon successful verification and update, the response includes details about the aggregator name, payment status, and whether retrying the process is required. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatusPaymentLink/).
136
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/checkAndUpdatePaymentStatusPaymentLink/).
116
137
  */
117
- checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentStatusUpdateResponse>;
138
+ checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentStatusUpdateDetails>;
118
139
  /**
119
140
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
120
141
  * @param {import("../ApplicationAPIClient").Options} - Options
121
- * @returns {Promise<CheckCreditResponse>} - Success response
142
+ * @returns {Promise<CheckCreditDetails>} - Success response
122
143
  * @name checkCredit
123
144
  * @summary: Verify credit availability and status
124
- * @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/).
145
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/checkCredit/).
125
146
  */
126
- checkCredit({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CheckCreditResponse>;
147
+ checkCredit({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CheckCreditDetails>;
127
148
  /**
128
149
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
129
150
  * @param {import("../ApplicationAPIClient").Options} - Options
130
- * @returns {Promise<CreateOrderUserResponse>} - Success response
151
+ * @returns {Promise<CreateOrderUserDetails>} - Success response
131
152
  * @name createOrderHandlerPaymentLink
132
153
  * @summary: Create order for payment via link
133
- * @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/).
154
+ * @description: Initiate the creation of an order handler for processing payments through a link. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/createOrderHandlerPaymentLink/).
134
155
  */
135
- createOrderHandlerPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CreateOrderUserResponse>;
156
+ createOrderHandlerPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CreateOrderUserDetails>;
136
157
  /**
137
158
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
138
159
  * @param {import("../ApplicationAPIClient").Options} - Options
139
- * @returns {Promise<CreatePaymentLinkResponse>} - Success response
160
+ * @returns {Promise<CreatePaymentLinkDetails>} - Success response
140
161
  * @name createPaymentLink
141
162
  * @summary: Create payment link
142
- * @description: Create new payment link for transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentLink/).
163
+ * @description: Create new payment link for transactions. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/createPaymentLink/).
143
164
  */
144
- createPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CreatePaymentLinkResponse>;
165
+ createPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CreatePaymentLinkDetails>;
145
166
  /**
146
167
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
147
168
  * @param {import("../ApplicationAPIClient").Options} - Options
148
- * @returns {Promise<PaymentOrderResponse>} - Success response
169
+ * @returns {Promise<PaymentOrderDetails>} - Success response
149
170
  * @name createPaymentOrder
150
171
  * @summary: Create Order
151
- * @description: Create an order and payment on the aggregator side. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentOrder/).
172
+ * @description: Create an order and payment on the aggregator side. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/createPaymentOrder/).
152
173
  */
153
- createPaymentOrder({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentOrderResponse>;
174
+ createPaymentOrder({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentOrderDetails>;
154
175
  /**
155
176
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
156
177
  * @param {import("../ApplicationAPIClient").Options} - Options
157
- * @returns {Promise<CustomerCreditSummaryResponse>} - Success response
178
+ * @returns {Promise<CustomerCreditSummaryDetails>} - Success response
158
179
  * @name customerCreditSummary
159
180
  * @summary: Credit summary
160
- * @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/).
181
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/customerCreditSummary/).
161
182
  */
162
- customerCreditSummary({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CustomerCreditSummaryResponse>;
183
+ customerCreditSummary({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CustomerCreditSummaryDetails>;
163
184
  /**
164
185
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
165
186
  * @param {import("../ApplicationAPIClient").Options} - Options
166
- * @returns {Promise<CustomerOnboardingResponse>} - Success response
187
+ * @returns {Promise<CustomerOnboardingDetails>} - Success response
167
188
  * @name customerOnboard
168
189
  * @summary: Onboard customer for payment
169
- * @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/).
190
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/customerOnboard/).
170
191
  */
171
- customerOnboard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CustomerOnboardingResponse>;
192
+ customerOnboard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<CustomerOnboardingDetails>;
172
193
  /**
173
194
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
174
195
  * @param {import("../ApplicationAPIClient").Options} - Options
175
- * @returns {Promise<DeleteCardsResponse>} - Success response
196
+ * @returns {Promise<DeleteBeneficiaryDetails>} - Success response
197
+ * @name deleteBeneficiary
198
+ * @summary: Delete a refund beneficiary
199
+ * @description: This API endpoint is used to delete a refund beneficiary using their beneficiary ID. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/deleteBeneficiary/).
200
+ */
201
+ deleteBeneficiary({ id, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options, ...args: any[]): Promise<DeleteBeneficiaryDetails>;
202
+ /**
203
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
204
+ * @param {import("../ApplicationAPIClient").Options} - Options
205
+ * @returns {Promise<DeleteCardsDetails>} - Success response
176
206
  * @name deleteUserCard
177
207
  * @summary: Delete customer card
178
- * @description: Delete payment card from the user's account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/deleteUserCard/).
208
+ * @description: Delete payment card from the user's account. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/deleteUserCard/).
179
209
  */
180
- deleteUserCard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<DeleteCardsResponse>;
210
+ deleteUserCard({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<DeleteCardsDetails>;
181
211
  /**
182
212
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
183
213
  * @param {import("../ApplicationAPIClient").Options} - Options
184
214
  * @returns {Promise<WalletResponseSchema>} - Success response
185
215
  * @name delinkWallet
186
216
  * @summary: Delink the wallet
187
- * @description: Delink the wallet. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/delinkWallet/).
217
+ * @description: Delink the wallet. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/delinkWallet/).
188
218
  */
189
219
  delinkWallet({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<WalletResponseSchema>;
190
220
  /**
191
221
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
192
222
  * @param {import("../ApplicationAPIClient").Options} - Options
193
- * @returns {Promise<UpdateRefundTransferModeResponse>} - Success response
223
+ * @returns {Promise<RefundTransferModeUpdateDetails>} - Success response
194
224
  * @name enableOrDisableRefundTransferMode
195
225
  * @summary: Toggle refund mode
196
- * @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/).
226
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/enableOrDisableRefundTransferMode/).
197
227
  */
198
- enableOrDisableRefundTransferMode({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<UpdateRefundTransferModeResponse>;
228
+ enableOrDisableRefundTransferMode({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RefundTransferModeUpdateDetails>;
199
229
  /**
200
230
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
201
231
  * @param {import("../ApplicationAPIClient").Options} - Options
202
- * @returns {Promise<ActiveCardPaymentGatewayResponse>} - Success response
232
+ * @returns {Promise<ActiveCardPaymentGatewayDetails>} - Success response
203
233
  * @name getActiveCardAggregator
204
234
  * @summary: Retrieve active card aggregator
205
- * @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/).
235
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/getActiveCardAggregator/).
206
236
  */
207
- getActiveCardAggregator({ refresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ActiveCardPaymentGatewayResponse>;
237
+ getActiveCardAggregator({ refresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ActiveCardPaymentGatewayDetails>;
208
238
  /**
209
239
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
210
240
  * @param {import("../ApplicationAPIClient").Options} - Options
211
- * @returns {Promise<TransferModeResponse>} - Success response
241
+ * @returns {Promise<TransferModeFetchDetails>} - Success response
212
242
  * @name getActiveRefundTransferModes
213
243
  * @summary: Get refund transfer modes
214
- * @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/).
244
+ * @description: Lists available refund modes, such as UPI, providing details like display name, logo, and ID for each mode. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/getActiveRefundTransferModes/).
215
245
  */
216
- getActiveRefundTransferModes({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<TransferModeResponse>;
246
+ getActiveRefundTransferModes({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<TransferModeFetchDetails>;
217
247
  /**
218
248
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
219
249
  * @param {import("../ApplicationAPIClient").Options} - Options
220
- * @returns {Promise<ListCardsResponse>} - Success response
250
+ * @returns {Promise<ListCardsDetails>} - Success response
221
251
  * @name getActiveUserCards
222
252
  * @summary: Get customer cards
223
- * @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/).
253
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/getActiveUserCards/).
224
254
  */
225
- getActiveUserCards({ forceRefresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ListCardsResponse>;
255
+ getActiveUserCards({ forceRefresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ListCardsDetails>;
226
256
  /**
227
257
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
228
258
  * @param {import("../ApplicationAPIClient").Options} - Options
229
- * @returns {Promise<AggregatorsConfigDetailResponse>} - Success response
259
+ * @returns {Promise<AggregatorsConfigDetail>} - Success response
230
260
  * @name getAggregatorsConfig
231
261
  * @summary: Get payment aggregators
232
- * @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/).
233
- */
234
- getAggregatorsConfig({ xApiToken, refresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AggregatorsConfigDetailResponse>;
235
- /**
236
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
237
- * @param {import("../ApplicationAPIClient").Options} - Options
238
- * @returns {Promise<EpaylaterBannerResponse>} - Success response
239
- * @name getEpaylaterBannerDetails
240
- * @summary: Epaylater banner info
241
- * @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/).
262
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/getAggregatorsConfig/).
242
263
  */
243
- getEpaylaterBannerDetails({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<EpaylaterBannerResponse>;
264
+ getAggregatorsConfig({ refresh, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AggregatorsConfigDetail>;
244
265
  /**
245
266
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
246
267
  * @param {import("../ApplicationAPIClient").Options} - Options
247
- * @returns {Promise<OrderBeneficiaryResponse>} - Success response
268
+ * @returns {Promise<OrderBeneficiaryFetchDetails>} - Success response
248
269
  * @name getOrderBeneficiariesDetail
249
270
  * @summary: Retrieve beneficiary details
250
- * @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/).
271
+ * @description: Get beneficiary details like bank name , ifsc code , branch name associated with a specific order for refund processing. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/getOrderBeneficiariesDetail/).
251
272
  */
252
- getOrderBeneficiariesDetail({ orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OrderBeneficiaryResponse>;
273
+ getOrderBeneficiariesDetail({ orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OrderBeneficiaryFetchDetails>;
253
274
  /**
254
275
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
255
276
  * @param {import("../ApplicationAPIClient").Options} - Options
256
- * @returns {Promise<GetPaymentLinkResponse>} - Success response
277
+ * @returns {Promise<GetPaymentLinkDetails>} - Success response
257
278
  * @name getPaymentLink
258
279
  * @summary: Get payment link
259
- * @description: Get a generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentLink/).
280
+ * @description: Get a generated payment link. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/getPaymentLink/).
260
281
  */
261
- getPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<GetPaymentLinkResponse>;
282
+ getPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<GetPaymentLinkDetails>;
262
283
  /**
263
284
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
264
285
  * @param {import("../ApplicationAPIClient").Options} - Options
265
- * @returns {Promise<PaymentModeRouteResponse>} - Success response
286
+ * @returns {Promise<PaymentModeRouteDetails>} - Success response
266
287
  * @name getPaymentModeRoutes
267
288
  * @summary: Get payment modes
268
- * @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/).
289
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/getPaymentModeRoutes/).
269
290
  */
270
- getPaymentModeRoutes({ amount, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, requestHeaders, }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteResponse>;
291
+ getPaymentModeRoutes({ amount, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, fulfillmentOption, requestHeaders, }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteDetails>;
271
292
  /**
272
293
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
273
294
  * @param {import("../ApplicationAPIClient").Options} - Options
274
- * @returns {Promise<PaymentModeRouteResponse>} - Success response
295
+ * @returns {Promise<PaymentModeRouteDetails>} - Success response
275
296
  * @name getPaymentModeRoutesPaymentLink
276
297
  * @summary: Payment modes for payment link
277
- * @description: List payment modes available for a given payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutesPaymentLink/).
298
+ * @description: List payment modes available for a given payment link. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/getPaymentModeRoutesPaymentLink/).
278
299
  */
279
- getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteResponse>;
300
+ getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteDetails>;
280
301
  /**
281
302
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
282
303
  * @param {import("../ApplicationAPIClient").Options} - Options
283
- * @returns {Promise<PaymentModeRouteResponse>} - Success response
304
+ * @returns {Promise<PaymentModeRouteDetails>} - Success response
284
305
  * @name getPosPaymentModeRoutes
285
306
  * @summary: POS payment modes
286
- * @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/).
307
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/getPosPaymentModeRoutes/).
287
308
  */
288
- getPosPaymentModeRoutes({ amount, pincode, orderType, cartId, checkoutMode, refresh, cardReference, userDetails, requestHeaders, }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteResponse>;
309
+ getPosPaymentModeRoutes({ amount, cartId, pincode, orderType, checkoutMode, refresh, cardReference, fulfillmentOption, userDetails, requestHeaders, }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentModeRouteDetails>;
289
310
  /**
290
311
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
291
312
  * @param {import("../ApplicationAPIClient").Options} - Options
292
- * @returns {Promise<RupifiBannerResponse>} - Success response
293
- * @name getRupifiBannerDetails
294
- * @summary: Rupifi banner info
295
- * @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/).
313
+ * @returns {Promise<GetRefundBeneficiary>} - Success response
314
+ * @name getRefundBeneficiaries
315
+ * @summary: Get Refund Beneficiaries
316
+ * @description: Returns a list of UPI and Bank refund beneficiaries associated with a user. Both `order_id` and `shipment_id` are optional query parameters. Use the optional filter_by enum parameter to refine the response. When the value of filter_by is order, the API returns only beneficiaries associated with the order. When the value of filter_by is shipment, it returns only beneficiaries associated with the shipment. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/getRefundBeneficiaries/).
296
317
  */
297
- getRupifiBannerDetails({ requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RupifiBannerResponse>;
318
+ getRefundBeneficiaries({ orderId, shipmentId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<GetRefundBeneficiary>;
298
319
  /**
299
320
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
300
321
  * @param {import("../ApplicationAPIClient").Options} - Options
301
- * @returns {Promise<OrderBeneficiaryResponse>} - Success response
322
+ * @returns {Promise<GetRefundBeneficiary>} - Success response
323
+ * @name getRefundBeneficiariesUsingOTPSession
324
+ * @summary: Get Refund Beneficiaries using OTP session
325
+ * @description: Returns a list of UPI and Bank refund beneficiaries associated with a user for a given order and shipment. Use the optional filter_by enum parameter to refine the response. When the value of filter_by is order, the API returns only beneficiaries associated with the order. When the value of filter_by is shipment, it returns only beneficiaries associated with the shipment. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/getRefundBeneficiariesUsingOTPSession/).
326
+ */
327
+ getRefundBeneficiariesUsingOTPSession({ orderId, shipmentId, filterBy, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<GetRefundBeneficiary>;
328
+ /**
329
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
330
+ * @param {import("../ApplicationAPIClient").Options} - Options
331
+ * @returns {Promise<OrderBeneficiaryFetchDetails>} - Success response
302
332
  * @name getUserBeneficiariesDetail
303
333
  * @summary: Retrieve beneficiary details
304
- * @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/).
334
+ * @description: Get beneficiaries associated with the user for processing refunds, based on the provided order ID. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/getUserBeneficiariesDetail/).
305
335
  */
306
- getUserBeneficiariesDetail({ orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OrderBeneficiaryResponse>;
336
+ getUserBeneficiariesDetail({ orderId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OrderBeneficiaryFetchDetails>;
307
337
  /**
308
338
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
309
339
  * @param {import("../ApplicationAPIClient").Options} - Options
310
- * @returns {Promise<PaymentInitializationResponse>} - Success response
340
+ * @returns {Promise<PaymentInitializationDetails>} - Success response
311
341
  * @name initialisePayment
312
342
  * @summary: Start payment process
313
- * @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/).
343
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/initialisePayment/).
314
344
  */
315
- initialisePayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentInitializationResponse>;
345
+ initialisePayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentInitializationDetails>;
316
346
  /**
317
347
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
318
348
  * @param {import("../ApplicationAPIClient").Options} - Options
319
- * @returns {Promise<PaymentInitializationResponse>} - Success response
349
+ * @returns {Promise<PaymentInitializationDetails>} - Success response
320
350
  * @name initialisePaymentPaymentLink
321
351
  * @summary: Initialize payment link
322
- * @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/).
352
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/initialisePaymentPaymentLink/).
323
353
  */
324
- initialisePaymentPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentInitializationResponse>;
354
+ initialisePaymentPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaymentInitializationDetails>;
325
355
  /**
326
356
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
327
357
  * @param {import("../ApplicationAPIClient").Options} - Options
328
358
  * @returns {Promise<WalletResponseSchema>} - Success response
329
359
  * @name linkWallet
330
360
  * @summary: OTP verification
331
- * @description: Verify the linking of wallet using OTP for further processing of payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/linkWallet/).
361
+ * @description: Verify the linking of wallet using OTP for further processing of payment. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/linkWallet/).
332
362
  */
333
363
  linkWallet({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<WalletResponseSchema>;
334
364
  /**
335
365
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
336
366
  * @param {import("../ApplicationAPIClient").Options} - Options
337
- * @returns {Promise<OutstandingOrderDetailsResponse>} - Success response
338
- * @name outstandingOrderDetails
339
- * @summary: Outstanding orders
340
- * @description: Get details of orders with outstanding payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/outstandingOrderDetails/).
341
- */
342
- outstandingOrderDetails({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<OutstandingOrderDetailsResponse>;
343
- /**
344
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
345
- * @param {import("../ApplicationAPIClient").Options} - Options
346
- * @returns {Promise<PaidOrderDetailsResponse>} - Success response
367
+ * @returns {Promise<PaidOrderDetails>} - Success response
347
368
  * @name paidOrderDetails
348
369
  * @summary: Retrieve details of paid orders
349
- * @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/).
370
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/paidOrderDetails/).
350
371
  */
351
- paidOrderDetails({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaidOrderDetailsResponse>;
372
+ paidOrderDetails({ aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PaidOrderDetails>;
352
373
  /**
353
374
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
354
375
  * @param {import("../ApplicationAPIClient").Options} - Options
355
- * @returns {Promise<PollingPaymentLinkResponse>} - Success response
376
+ * @returns {Promise<PollingPaymentLinkDetails>} - Success response
356
377
  * @name pollingPaymentLink
357
378
  * @summary: Poll status of payment link
358
- * @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/).
379
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/pollingPaymentLink/).
359
380
  */
360
- pollingPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PollingPaymentLinkResponse>;
381
+ pollingPaymentLink({ paymentLinkId, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<PollingPaymentLinkDetails>;
361
382
  /**
362
383
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
363
384
  * @param {import("../ApplicationAPIClient").Options} - Options
364
- * @returns {Promise<RedirectToAggregatorResponse>} - Success response
385
+ * @returns {Promise<RedirectToAggregatorDetails>} - Success response
365
386
  * @name redirectToAggregator
366
387
  * @summary: Redirects users to the payment aggregator's interface
367
- * @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/).
388
+ * @description: This endpoint is used to redirect users to the payment aggregator's platform where they can complete the payment process. The request may include necessary details for initiating the payment on the aggregator’s side, and the user is transferred seamlessly to their interface. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/redirectToAggregator/).
368
389
  */
369
- redirectToAggregator({ source, aggregator, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RedirectToAggregatorResponse>;
390
+ redirectToAggregator({ aggregator, source, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RedirectToAggregatorDetails>;
370
391
  /**
371
392
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
372
393
  * @param {import("../ApplicationAPIClient").Options} - Options
373
- * @returns {Promise<renderHTMLResponse>} - Success response
394
+ * @returns {Promise<RenderHTMLDetails>} - Success response
374
395
  * @name renderHTML
375
396
  * @summary: Render HTML
376
- * @description: Render HTML for a payment aggregator page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/renderHTML/).
397
+ * @description: Render HTML for a payment aggregator page. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/renderHTML/).
377
398
  */
378
- renderHTML({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<renderHTMLResponse>;
399
+ renderHTML({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<RenderHTMLDetails>;
379
400
  /**
380
401
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
381
402
  * @param {import("../ApplicationAPIClient").Options} - Options
382
- * @returns {Promise<ResendOrCancelPaymentResponse>} - Success response
403
+ * @returns {Promise<ResendOrCancelPaymentDetails>} - Success response
383
404
  * @name resendOrCancelPayment
384
405
  * @summary: Resend or cancel a pending payment transaction
385
- * @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/).
406
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/resendOrCancelPayment/).
386
407
  */
387
- resendOrCancelPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ResendOrCancelPaymentResponse>;
408
+ resendOrCancelPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ResendOrCancelPaymentDetails>;
388
409
  /**
389
410
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
390
411
  * @param {import("../ApplicationAPIClient").Options} - Options
391
- * @returns {Promise<ResendPaymentLinkResponse>} - Success response
412
+ * @returns {Promise<ResendPaymentLinkDetails>} - Success response
392
413
  * @name resendPaymentLink
393
414
  * @summary: Resend payment link
394
- * @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/).
415
+ * @description: Resend an existing payment link to the user to complete the payment. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/resendPaymentLink/).
395
416
  */
396
- resendPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ResendPaymentLinkResponse>;
417
+ resendPaymentLink({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ResendPaymentLinkDetails>;
397
418
  /**
398
419
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
399
420
  * @param {import("../ApplicationAPIClient").Options} - Options
400
- * @returns {Promise<SetDefaultBeneficiaryResponse>} - Success response
421
+ * @returns {Promise<SetDefaultBeneficiaryDetails>} - Success response
401
422
  * @name updateDefaultBeneficiary
402
423
  * @summary: Set default beneficiary for refund
403
- * @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/).
424
+ * @description: Update default beneficiary for the order refund of the user. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/updateDefaultBeneficiary/).
425
+ */
426
+ updateDefaultBeneficiary({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<SetDefaultBeneficiaryDetails>;
427
+ /**
428
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
429
+ * @param {import("../ApplicationAPIClient").Options} - Options
430
+ * @returns {Promise<ValidateCustomerCreditSchema>} - Success response
431
+ * @name validateCustomerAndCreditSummary
432
+ * @summary: Verify payment customer and show credit summary
433
+ * @description: Verify if the user is eligible for payment and also show credit summary if activated. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/validateCustomerAndCreditSummary/).
404
434
  */
405
- updateDefaultBeneficiary({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<SetDefaultBeneficiaryResponse>;
435
+ validateCustomerAndCreditSummary({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ValidateCustomerCreditSchema>;
406
436
  /**
407
437
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
408
438
  * @param {import("../ApplicationAPIClient").Options} - Options
409
- * @returns {Promise<ValidateVPAResponse>} - Success response
439
+ * @returns {Promise<ValidateVPADetails>} - Success response
410
440
  * @name validateVPA
411
441
  * @summary: Validate VPA
412
- * @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/).
442
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/validateVPA/).
413
443
  */
414
- validateVPA({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ValidateVPAResponse>;
444
+ validateVPA({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ValidateVPADetails>;
415
445
  /**
416
446
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
417
447
  * @param {import("../ApplicationAPIClient").Options} - Options
418
- * @returns {Promise<ChargeCustomerResponse>} - Success response
448
+ * @returns {Promise<ChargeCustomerDetails>} - Success response
419
449
  * @name verifyAndChargePayment
420
450
  * @summary: Verify order confirmation and charge
421
- * @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/).
451
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/verifyAndChargePayment/).
422
452
  */
423
- verifyAndChargePayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ChargeCustomerResponse>;
453
+ verifyAndChargePayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ChargeCustomerDetails>;
424
454
  /**
425
455
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
426
456
  * @param {import("../ApplicationAPIClient").Options} - Options
427
- * @returns {Promise<ValidateCustomerResponse>} - Success response
457
+ * @returns {Promise<ValidateCustomerDetails>} - Success response
428
458
  * @name verifyCustomerForPayment
429
459
  * @summary: Verify payment customer
430
- * @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/).
460
+ * @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://docs.fynd.com/partners/commerce/sdk/application/payment/verifyCustomerForPayment/).
431
461
  */
432
- verifyCustomerForPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ValidateCustomerResponse>;
462
+ verifyCustomerForPayment({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<ValidateCustomerDetails>;
433
463
  /**
434
464
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
435
465
  * @param {import("../ApplicationAPIClient").Options} - Options
436
- * @returns {Promise<IfscCodeResponse>} - Success response
466
+ * @returns {Promise<IfscCodeDetails>} - Success response
437
467
  * @name verifyIfscCode
438
468
  * @summary: Verify IFSC
439
- * @description: Validate IFSC code and returns bank details if valid. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyIfscCode/).
469
+ * @description: Validate IFSC code and returns bank details if valid. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/verifyIfscCode/).
440
470
  */
441
- verifyIfscCode({ ifscCode, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<IfscCodeResponse>;
471
+ verifyIfscCode({ ifscCode, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<IfscCodeDetails>;
442
472
  /**
443
473
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
444
474
  * @param {import("../ApplicationAPIClient").Options} - Options
445
- * @returns {Promise<AddBeneficiaryViaOtpVerificationResponse>} - Success response
475
+ * @returns {Promise<AddBeneficiaryViaOtpVerificationDetails>} - Success response
446
476
  * @name verifyOtpAndAddBeneficiaryForBank
447
477
  * @summary: Verify OTP for bank and add beneficiary
448
- * @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/).
478
+ * @description: Verify the OTP provided by the user and adds a bank beneficiary for refund processing. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/verifyOtpAndAddBeneficiaryForBank/).
449
479
  */
450
- verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AddBeneficiaryViaOtpVerificationResponse>;
480
+ verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<AddBeneficiaryViaOtpVerificationDetails>;
451
481
  /**
452
482
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
453
483
  * @param {import("../ApplicationAPIClient").Options} - Options
454
- * @returns {Promise<WalletOtpResponse>} - Success response
484
+ * @returns {Promise<WalletOtpDetails>} - Success response
455
485
  * @name verifyOtpAndAddBeneficiaryForWallet
456
486
  * @summary: Verify OTP for wallet
457
- * @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/).
487
+ * @description: Verify OTP provided by the user and adds a wallet beneficiary. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/verifyOtpAndAddBeneficiaryForWallet/).
458
488
  */
459
- verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<WalletOtpResponse>;
489
+ verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<WalletOtpDetails>;
460
490
  /**
461
491
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
462
492
  * @param {import("../ApplicationAPIClient").Options} - Options
463
493
  * @returns {Promise<WalletResponseSchema>} - Success response
464
494
  * @name walletLinkInitiate
465
495
  * @summary: Initiate linking of wallet
466
- * @description: Link wallet for the aggregator for processing of payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/walletLinkInitiate/).
496
+ * @description: Link wallet for the aggregator for processing of payment. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/application/payment/walletLinkInitiate/).
467
497
  */
468
498
  walletLinkInitiate({ body, requestHeaders }?: object, { responseHeaders }?: import("../ApplicationAPIClient").Options): Promise<WalletResponseSchema>;
469
499
  }