@finverse/sdk-typescript 0.0.192 → 0.0.194

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 +67 -0
  2. package/package.json +3 -3
package/dist/api.d.ts CHANGED
@@ -4758,6 +4758,12 @@ export interface PaymentLinkResponse {
4758
4758
  * @memberof PaymentLinkResponse
4759
4759
  */
4760
4760
  sender?: PaymentLinkSenderResponse;
4761
+ /**
4762
+ *
4763
+ * @type {PaymentMethodResponse}
4764
+ * @memberof PaymentLinkResponse
4765
+ */
4766
+ payment_method?: PaymentMethodResponse;
4761
4767
  }
4762
4768
  export declare const PaymentLinkResponseModeEnum: {
4763
4769
  readonly Payment: "PAYMENT";
@@ -4866,6 +4872,61 @@ export declare const PaymentLinkTokenResponseTokenTypeEnum: {
4866
4872
  readonly Bearer: "Bearer";
4867
4873
  };
4868
4874
  export declare type PaymentLinkTokenResponseTokenTypeEnum = (typeof PaymentLinkTokenResponseTokenTypeEnum)[keyof typeof PaymentLinkTokenResponseTokenTypeEnum];
4875
+ /**
4876
+ *
4877
+ * @export
4878
+ * @interface PaymentMethodResponse
4879
+ */
4880
+ export interface PaymentMethodResponse {
4881
+ /**
4882
+ *
4883
+ * @type {string}
4884
+ * @memberof PaymentMethodResponse
4885
+ */
4886
+ payment_method_id?: string;
4887
+ /**
4888
+ *
4889
+ * @type {string}
4890
+ * @memberof PaymentMethodResponse
4891
+ */
4892
+ customer_app_id?: string;
4893
+ /**
4894
+ *
4895
+ * @type {string}
4896
+ * @memberof PaymentMethodResponse
4897
+ */
4898
+ payment_user_id?: string;
4899
+ /**
4900
+ *
4901
+ * @type {string}
4902
+ * @memberof PaymentMethodResponse
4903
+ */
4904
+ currency?: string;
4905
+ /**
4906
+ *
4907
+ * @type {string}
4908
+ * @memberof PaymentMethodResponse
4909
+ */
4910
+ payment_method_type?: string;
4911
+ /**
4912
+ *
4913
+ * @type {GetMandateResponse}
4914
+ * @memberof PaymentMethodResponse
4915
+ */
4916
+ mandate?: GetMandateResponse;
4917
+ /**
4918
+ *
4919
+ * @type {string}
4920
+ * @memberof PaymentMethodResponse
4921
+ */
4922
+ created_at?: string;
4923
+ /**
4924
+ *
4925
+ * @type {string}
4926
+ * @memberof PaymentMethodResponse
4927
+ */
4928
+ updated_at?: string;
4929
+ }
4869
4930
  /**
4870
4931
  *
4871
4932
  * @export
@@ -5087,6 +5148,12 @@ export interface PaymentUser {
5087
5148
  * @memberof PaymentUser
5088
5149
  */
5089
5150
  user_type?: PaymentUserUserTypeEnum;
5151
+ /**
5152
+ * Whether the user has given consent for autopay
5153
+ * @type {boolean}
5154
+ * @memberof PaymentUser
5155
+ */
5156
+ autopay_consent: boolean;
5090
5157
  }
5091
5158
  export declare const PaymentUserUserTypeEnum: {
5092
5159
  readonly Individual: "INDIVIDUAL";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.192",
3
+ "version": "0.0.194",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -21,8 +21,8 @@
21
21
  "axios": "^0.21.4"
22
22
  },
23
23
  "devDependencies": {
24
- "@types/chai": "^4.3.10",
25
- "@types/mocha": "^10.0.4",
24
+ "@types/chai": "^4.3.11",
25
+ "@types/mocha": "^10.0.6",
26
26
  "@types/node": "^12.11.5",
27
27
  "axios-mock-adapter": "^1.21.2",
28
28
  "chai": "^4.3.10",