@finverse/sdk-typescript 0.0.303 → 0.0.304

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 +43 -0
  2. package/package.json +2 -2
package/dist/api.d.ts CHANGED
@@ -2112,6 +2112,18 @@ export interface FVCardDetails {
2112
2112
  * @memberof FVCardDetails
2113
2113
  */
2114
2114
  finverse_authorization_reference?: string;
2115
+ /**
2116
+ *
2117
+ * @type {FVCardProcessorDetails}
2118
+ * @memberof FVCardDetails
2119
+ */
2120
+ processor_details?: FVCardProcessorDetails;
2121
+ /**
2122
+ * The recurring payment mode
2123
+ * @type {string}
2124
+ * @memberof FVCardDetails
2125
+ */
2126
+ recurring_payment_mode?: string;
2115
2127
  }
2116
2128
  export declare const FVCardDetailsFundingEnum: {
2117
2129
  readonly Unknown: "UNKNOWN";
@@ -2120,6 +2132,37 @@ export declare const FVCardDetailsFundingEnum: {
2120
2132
  readonly Prepaid: "PREPAID";
2121
2133
  };
2122
2134
  export type FVCardDetailsFundingEnum = (typeof FVCardDetailsFundingEnum)[keyof typeof FVCardDetailsFundingEnum];
2135
+ /**
2136
+ *
2137
+ * @export
2138
+ * @interface FVCardProcessorDetails
2139
+ */
2140
+ export interface FVCardProcessorDetails {
2141
+ /**
2142
+ *
2143
+ * @type {string}
2144
+ * @memberof FVCardProcessorDetails
2145
+ */
2146
+ auth_code?: string;
2147
+ /**
2148
+ *
2149
+ * @type {string}
2150
+ * @memberof FVCardProcessorDetails
2151
+ */
2152
+ processor_id?: string;
2153
+ /**
2154
+ *
2155
+ * @type {string}
2156
+ * @memberof FVCardProcessorDetails
2157
+ */
2158
+ processor_reference?: string;
2159
+ /**
2160
+ *
2161
+ * @type {string}
2162
+ * @memberof FVCardProcessorDetails
2163
+ */
2164
+ token_id?: string;
2165
+ }
2123
2166
  /**
2124
2167
  *
2125
2168
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.303",
3
+ "version": "0.0.304",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -32,7 +32,7 @@
32
32
  "@types/node": "12.11.5 - 12.20.42",
33
33
  "axios-mock-adapter": "^1.21.2",
34
34
  "chai": "^5.2.0",
35
- "mocha": "^11.4.0",
35
+ "mocha": "^11.5.0",
36
36
  "ts-node": "^10.9.2",
37
37
  "typescript": "^4.0 || ^5.0"
38
38
  },