@finverse/sdk-typescript 0.0.302 → 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 +49 -0
  2. package/package.json +3 -3
package/dist/api.d.ts CHANGED
@@ -2106,6 +2106,24 @@ export interface FVCardDetails {
2106
2106
  * @memberof FVCardDetails
2107
2107
  */
2108
2108
  funding?: FVCardDetailsFundingEnum;
2109
+ /**
2110
+ *
2111
+ * @type {string}
2112
+ * @memberof FVCardDetails
2113
+ */
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;
2109
2127
  }
2110
2128
  export declare const FVCardDetailsFundingEnum: {
2111
2129
  readonly Unknown: "UNKNOWN";
@@ -2114,6 +2132,37 @@ export declare const FVCardDetailsFundingEnum: {
2114
2132
  readonly Prepaid: "PREPAID";
2115
2133
  };
2116
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
+ }
2117
2166
  /**
2118
2167
  *
2119
2168
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.302",
3
+ "version": "0.0.304",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -27,12 +27,12 @@
27
27
  "axios": "1.8.2"
28
28
  },
29
29
  "devDependencies": {
30
- "@types/chai": "^5.2.1",
30
+ "@types/chai": "^5.2.2",
31
31
  "@types/mocha": "^10.0.10",
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.1.0",
35
+ "mocha": "^11.5.0",
36
36
  "ts-node": "^10.9.2",
37
37
  "typescript": "^4.0 || ^5.0"
38
38
  },