@finverse/sdk-typescript 0.0.303 → 0.0.305

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 +111 -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
@@ -5507,6 +5550,18 @@ export interface PaymentDetails2 {
5507
5550
  * @memberof PaymentDetails2
5508
5551
  */
5509
5552
  collection_entity_name?: string;
5553
+ /**
5554
+ *
5555
+ * @type {PaymentProcessorDetails}
5556
+ * @memberof PaymentDetails2
5557
+ */
5558
+ processor_details?: PaymentProcessorDetails;
5559
+ /**
5560
+ * The recurring payment mode
5561
+ * @type {string}
5562
+ * @memberof PaymentDetails2
5563
+ */
5564
+ recurring_payment_mode?: string;
5510
5565
  }
5511
5566
  /**
5512
5567
  *
@@ -6238,6 +6293,62 @@ export interface PaymentMethodResponse {
6238
6293
  */
6239
6294
  integration_metadata?: PaymentMethodIntegrationMetadata;
6240
6295
  }
6296
+ /**
6297
+ *
6298
+ * @export
6299
+ * @interface PaymentProcessorDetails
6300
+ */
6301
+ export interface PaymentProcessorDetails {
6302
+ /**
6303
+ *
6304
+ * @type {string}
6305
+ * @memberof PaymentProcessorDetails
6306
+ */
6307
+ auth_code?: string;
6308
+ /**
6309
+ *
6310
+ * @type {string}
6311
+ * @memberof PaymentProcessorDetails
6312
+ */
6313
+ processor_id?: string;
6314
+ /**
6315
+ *
6316
+ * @type {string}
6317
+ * @memberof PaymentProcessorDetails
6318
+ */
6319
+ processor_reference?: string;
6320
+ /**
6321
+ *
6322
+ * @type {PaymentProcessorResult}
6323
+ * @memberof PaymentProcessorDetails
6324
+ */
6325
+ result?: PaymentProcessorResult;
6326
+ }
6327
+ /**
6328
+ *
6329
+ * @export
6330
+ * @interface PaymentProcessorResult
6331
+ */
6332
+ export interface PaymentProcessorResult {
6333
+ /**
6334
+ * Payment processor\'s decline code (e.g. \"2\")
6335
+ * @type {string}
6336
+ * @memberof PaymentProcessorResult
6337
+ */
6338
+ decline_code?: string;
6339
+ /**
6340
+ * Payment processor\'s decline explanation (e.g. \"Blocked card\")
6341
+ * @type {string}
6342
+ * @memberof PaymentProcessorResult
6343
+ */
6344
+ decline_reason?: string;
6345
+ /**
6346
+ * Payment processor\'s result code (e.g. \"Authorized\", \"Refused\").
6347
+ * @type {string}
6348
+ * @memberof PaymentProcessorResult
6349
+ */
6350
+ result_code?: string;
6351
+ }
6241
6352
  /**
6242
6353
  *
6243
6354
  * @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.305",
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
  },