@finverse/sdk-typescript 0.0.387 → 0.0.389

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 (2) hide show
  1. package/dist/api.d.ts +53 -24
  2. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -267,6 +267,20 @@ export interface ActionRequest {
267
267
  */
268
268
  action_id: string;
269
269
  }
270
+ /**
271
+ * Raw Adyen /payments or /payments/details JSON response; passed directly to Drop-in actions.resolve()
272
+ * @export
273
+ * @interface AdyenCardSetupPaymentResponse
274
+ */
275
+ export interface AdyenCardSetupPaymentResponse {
276
+ [key: string]: any;
277
+ /**
278
+ *
279
+ * @type {FrontendFvErrorModel}
280
+ * @memberof AdyenCardSetupPaymentResponse
281
+ */
282
+ error?: FrontendFvErrorModel;
283
+ }
270
284
  /**
271
285
  *
272
286
  * @export
@@ -2797,6 +2811,31 @@ export interface FpsQrCodeResponse {
2797
2811
  */
2798
2812
  qr_code: string;
2799
2813
  }
2814
+ /**
2815
+ * Finverse error details surfaced to the frontend; absent on success and action-required outcomes
2816
+ * @export
2817
+ * @interface FrontendFvErrorModel
2818
+ */
2819
+ export interface FrontendFvErrorModel {
2820
+ /**
2821
+ * Finverse error code
2822
+ * @type {string}
2823
+ * @memberof FrontendFvErrorModel
2824
+ */
2825
+ error_code: string;
2826
+ /**
2827
+ * Short human-readable error message
2828
+ * @type {string}
2829
+ * @memberof FrontendFvErrorModel
2830
+ */
2831
+ message: string;
2832
+ /**
2833
+ * Human-readable error detail safe for display to the end user
2834
+ * @type {string}
2835
+ * @memberof FrontendFvErrorModel
2836
+ */
2837
+ display_details: string;
2838
+ }
2800
2839
  /**
2801
2840
  *
2802
2841
  * @export
@@ -8040,6 +8079,12 @@ export interface PayoutSnapshotDetails {
8040
8079
  * @memberof PayoutSnapshotDetails
8041
8080
  */
8042
8081
  transaction_reference_id?: string;
8082
+ /**
8083
+ *
8084
+ * @type {string}
8085
+ * @memberof PayoutSnapshotDetails
8086
+ */
8087
+ external_transaction_reference?: string;
8043
8088
  /**
8044
8089
  *
8045
8090
  * @type {string}
@@ -11563,9 +11608,7 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
11563
11608
  */
11564
11609
  submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
11565
11610
  [key: string]: any;
11566
- }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
11567
- [key: string]: any;
11568
- }>>;
11611
+ }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdyenCardSetupPaymentResponse>>;
11569
11612
  /**
11570
11613
  * Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
11571
11614
  * @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
@@ -11574,9 +11617,7 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
11574
11617
  */
11575
11618
  submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
11576
11619
  [key: string]: any;
11577
- }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
11578
- [key: string]: any;
11579
- }>>;
11620
+ }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdyenCardSetupPaymentResponse>>;
11580
11621
  /**
11581
11622
  * Submit authorization checklist items
11582
11623
  * @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
@@ -11934,9 +11975,7 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
11934
11975
  */
11935
11976
  submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
11936
11977
  [key: string]: any;
11937
- }, options?: RawAxiosRequestConfig): AxiosPromise<{
11938
- [key: string]: any;
11939
- }>;
11978
+ }, options?: RawAxiosRequestConfig): AxiosPromise<AdyenCardSetupPaymentResponse>;
11940
11979
  /**
11941
11980
  * Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
11942
11981
  * @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
@@ -11945,9 +11984,7 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
11945
11984
  */
11946
11985
  submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
11947
11986
  [key: string]: any;
11948
- }, options?: RawAxiosRequestConfig): AxiosPromise<{
11949
- [key: string]: any;
11950
- }>;
11987
+ }, options?: RawAxiosRequestConfig): AxiosPromise<AdyenCardSetupPaymentResponse>;
11951
11988
  /**
11952
11989
  * Submit authorization checklist items
11953
11990
  * @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
@@ -12343,9 +12380,7 @@ export interface PaymentApiInterface {
12343
12380
  */
12344
12381
  submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
12345
12382
  [key: string]: any;
12346
- }, options?: RawAxiosRequestConfig): AxiosPromise<{
12347
- [key: string]: any;
12348
- }>;
12383
+ }, options?: RawAxiosRequestConfig): AxiosPromise<AdyenCardSetupPaymentResponse>;
12349
12384
  /**
12350
12385
  * Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
12351
12386
  * @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
@@ -12355,9 +12390,7 @@ export interface PaymentApiInterface {
12355
12390
  */
12356
12391
  submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
12357
12392
  [key: string]: any;
12358
- }, options?: RawAxiosRequestConfig): AxiosPromise<{
12359
- [key: string]: any;
12360
- }>;
12393
+ }, options?: RawAxiosRequestConfig): AxiosPromise<AdyenCardSetupPaymentResponse>;
12361
12394
  /**
12362
12395
  * Submit authorization checklist items
12363
12396
  * @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
@@ -12758,9 +12791,7 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
12758
12791
  */
12759
12792
  submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
12760
12793
  [key: string]: any;
12761
- }, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
12762
- [key: string]: any;
12763
- }, any, {}>>;
12794
+ }, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdyenCardSetupPaymentResponse, any, {}>>;
12764
12795
  /**
12765
12796
  * Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
12766
12797
  * @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
@@ -12770,9 +12801,7 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
12770
12801
  */
12771
12802
  submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
12772
12803
  [key: string]: any;
12773
- }, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
12774
- [key: string]: any;
12775
- }, any, {}>>;
12804
+ }, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdyenCardSetupPaymentResponse, any, {}>>;
12776
12805
  /**
12777
12806
  * Submit authorization checklist items
12778
12807
  * @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.387",
3
+ "version": "0.0.389",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {