@finverse/sdk-typescript 0.0.311 → 0.0.312
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.
- package/dist/api.d.ts +79 -3
- package/dist/api.js +2 -0
- package/dist/base.js +1 -1
- package/dist/test/responses/statement.js +1 -1
- package/package.json +3 -3
package/dist/api.d.ts
CHANGED
|
@@ -1965,7 +1965,7 @@ export interface DisputeResponse {
|
|
|
1965
1965
|
* @type {boolean}
|
|
1966
1966
|
* @memberof DisputeResponse
|
|
1967
1967
|
*/
|
|
1968
|
-
is_defendable?: boolean;
|
|
1968
|
+
is_defendable?: boolean | null;
|
|
1969
1969
|
/**
|
|
1970
1970
|
* The status of the dispute
|
|
1971
1971
|
* @type {string}
|
|
@@ -1983,13 +1983,13 @@ export interface DisputeResponse {
|
|
|
1983
1983
|
* @type {boolean}
|
|
1984
1984
|
* @memberof DisputeResponse
|
|
1985
1985
|
*/
|
|
1986
|
-
is_auto_defended?: boolean;
|
|
1986
|
+
is_auto_defended?: boolean | null;
|
|
1987
1987
|
/**
|
|
1988
1988
|
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
1989
1989
|
* @type {string}
|
|
1990
1990
|
* @memberof DisputeResponse
|
|
1991
1991
|
*/
|
|
1992
|
-
defense_period_deadline?: string;
|
|
1992
|
+
defense_period_deadline?: string | null;
|
|
1993
1993
|
/**
|
|
1994
1994
|
*
|
|
1995
1995
|
* @type {{ [key: string]: string; }}
|
|
@@ -6737,6 +6737,12 @@ export interface PaymentSetupOptions {
|
|
|
6737
6737
|
* @memberof PaymentSetupOptions
|
|
6738
6738
|
*/
|
|
6739
6739
|
autopay_enrollment_configuration?: AutopayEnrollmentConfiguration;
|
|
6740
|
+
/**
|
|
6741
|
+
* The recurring payment mode
|
|
6742
|
+
* @type {string}
|
|
6743
|
+
* @memberof PaymentSetupOptions
|
|
6744
|
+
*/
|
|
6745
|
+
recurring_payment_mode?: string;
|
|
6740
6746
|
}
|
|
6741
6747
|
export declare const PaymentSetupOptionsFuturePaymentsEnum: {
|
|
6742
6748
|
readonly Autopay: "AUTOPAY";
|
|
@@ -6973,6 +6979,38 @@ export interface PayoutDetails {
|
|
|
6973
6979
|
*/
|
|
6974
6980
|
scheduled_date: string;
|
|
6975
6981
|
}
|
|
6982
|
+
/**
|
|
6983
|
+
*
|
|
6984
|
+
* @export
|
|
6985
|
+
* @interface PayoutProcessorDetails
|
|
6986
|
+
*/
|
|
6987
|
+
export interface PayoutProcessorDetails {
|
|
6988
|
+
/**
|
|
6989
|
+
*
|
|
6990
|
+
* @type {string}
|
|
6991
|
+
* @memberof PayoutProcessorDetails
|
|
6992
|
+
*/
|
|
6993
|
+
processor_id?: string;
|
|
6994
|
+
/**
|
|
6995
|
+
*
|
|
6996
|
+
* @type {string}
|
|
6997
|
+
* @memberof PayoutProcessorDetails
|
|
6998
|
+
*/
|
|
6999
|
+
processor_reference?: string;
|
|
7000
|
+
}
|
|
7001
|
+
/**
|
|
7002
|
+
*
|
|
7003
|
+
* @export
|
|
7004
|
+
* @interface PayoutReferences
|
|
7005
|
+
*/
|
|
7006
|
+
export interface PayoutReferences {
|
|
7007
|
+
/**
|
|
7008
|
+
*
|
|
7009
|
+
* @type {string}
|
|
7010
|
+
* @memberof PayoutReferences
|
|
7011
|
+
*/
|
|
7012
|
+
recipient_reference?: string;
|
|
7013
|
+
}
|
|
6976
7014
|
/**
|
|
6977
7015
|
*
|
|
6978
7016
|
* @export
|
|
@@ -7003,6 +7041,24 @@ export interface PayoutSnapshotDetails {
|
|
|
7003
7041
|
* @memberof PayoutSnapshotDetails
|
|
7004
7042
|
*/
|
|
7005
7043
|
scheduled_date?: string;
|
|
7044
|
+
/**
|
|
7045
|
+
*
|
|
7046
|
+
* @type {string}
|
|
7047
|
+
* @memberof PayoutSnapshotDetails
|
|
7048
|
+
*/
|
|
7049
|
+
estimated_arrival_time?: string | null;
|
|
7050
|
+
/**
|
|
7051
|
+
*
|
|
7052
|
+
* @type {PayoutProcessorDetails}
|
|
7053
|
+
* @memberof PayoutSnapshotDetails
|
|
7054
|
+
*/
|
|
7055
|
+
processor_details?: PayoutProcessorDetails;
|
|
7056
|
+
/**
|
|
7057
|
+
*
|
|
7058
|
+
* @type {PayoutReferences}
|
|
7059
|
+
* @memberof PayoutSnapshotDetails
|
|
7060
|
+
*/
|
|
7061
|
+
references?: PayoutReferences;
|
|
7006
7062
|
}
|
|
7007
7063
|
/**
|
|
7008
7064
|
*
|
|
@@ -7046,6 +7102,12 @@ export interface PayoutSnapshotResponse {
|
|
|
7046
7102
|
* @memberof PayoutSnapshotResponse
|
|
7047
7103
|
*/
|
|
7048
7104
|
transaction_date?: string;
|
|
7105
|
+
/**
|
|
7106
|
+
*
|
|
7107
|
+
* @type {string}
|
|
7108
|
+
* @memberof PayoutSnapshotResponse
|
|
7109
|
+
*/
|
|
7110
|
+
transaction_time?: string | null;
|
|
7049
7111
|
/**
|
|
7050
7112
|
*
|
|
7051
7113
|
* @type {PayoutSnapshotDetails}
|
|
@@ -7129,6 +7191,7 @@ export type PayoutSnapshotResponseStatusEnum = (typeof PayoutSnapshotResponseSta
|
|
|
7129
7191
|
export declare const PayoutSnapshotResponseTypeEnum: {
|
|
7130
7192
|
readonly Manual: "MANUAL";
|
|
7131
7193
|
readonly Scheduled: "SCHEDULED";
|
|
7194
|
+
readonly Settlement: "SETTLEMENT";
|
|
7132
7195
|
};
|
|
7133
7196
|
export type PayoutSnapshotResponseTypeEnum = (typeof PayoutSnapshotResponseTypeEnum)[keyof typeof PayoutSnapshotResponseTypeEnum];
|
|
7134
7197
|
/**
|
|
@@ -7343,6 +7406,12 @@ export interface RapidstorMetadataRequest {
|
|
|
7343
7406
|
* @memberof RapidstorMetadataRequest
|
|
7344
7407
|
*/
|
|
7345
7408
|
account_token: string;
|
|
7409
|
+
/**
|
|
7410
|
+
*
|
|
7411
|
+
* @type {string}
|
|
7412
|
+
* @memberof RapidstorMetadataRequest
|
|
7413
|
+
*/
|
|
7414
|
+
unit_type_id?: string;
|
|
7346
7415
|
}
|
|
7347
7416
|
/**
|
|
7348
7417
|
*
|
|
@@ -7386,6 +7455,12 @@ export interface RapidstorMetadataResponse {
|
|
|
7386
7455
|
* @memberof RapidstorMetadataResponse
|
|
7387
7456
|
*/
|
|
7388
7457
|
account_token?: string;
|
|
7458
|
+
/**
|
|
7459
|
+
*
|
|
7460
|
+
* @type {string}
|
|
7461
|
+
* @memberof RapidstorMetadataResponse
|
|
7462
|
+
*/
|
|
7463
|
+
unit_type_id?: string;
|
|
7389
7464
|
}
|
|
7390
7465
|
/**
|
|
7391
7466
|
*
|
|
@@ -10922,6 +10997,7 @@ export type ListPayoutsStatusesEnum = (typeof ListPayoutsStatusesEnum)[keyof typ
|
|
|
10922
10997
|
export declare const ListPayoutsPayoutTypesEnum: {
|
|
10923
10998
|
readonly Manual: "MANUAL";
|
|
10924
10999
|
readonly Scheduled: "SCHEDULED";
|
|
11000
|
+
readonly Settlement: "SETTLEMENT";
|
|
10925
11001
|
};
|
|
10926
11002
|
export type ListPayoutsPayoutTypesEnum = (typeof ListPayoutsPayoutTypesEnum)[keyof typeof ListPayoutsPayoutTypesEnum];
|
|
10927
11003
|
/**
|
package/dist/api.js
CHANGED
|
@@ -404,6 +404,7 @@ exports.PayoutSnapshotResponseStatusEnum = {
|
|
|
404
404
|
exports.PayoutSnapshotResponseTypeEnum = {
|
|
405
405
|
Manual: 'MANUAL',
|
|
406
406
|
Scheduled: 'SCHEDULED',
|
|
407
|
+
Settlement: 'SETTLEMENT',
|
|
407
408
|
};
|
|
408
409
|
exports.RecipientAccountNumberTypeEnum = {
|
|
409
410
|
Local: 'LOCAL',
|
|
@@ -4873,6 +4874,7 @@ exports.ListPayoutsStatusesEnum = {
|
|
|
4873
4874
|
exports.ListPayoutsPayoutTypesEnum = {
|
|
4874
4875
|
Manual: 'MANUAL',
|
|
4875
4876
|
Scheduled: 'SCHEDULED',
|
|
4877
|
+
Settlement: 'SETTLEMENT',
|
|
4876
4878
|
};
|
|
4877
4879
|
/**
|
|
4878
4880
|
* LinkApi - axios parameter creator
|
package/dist/base.js
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
|
|
17
17
|
const axios_1 = require("axios");
|
|
18
|
-
exports.BASE_PATH = 'https://api.
|
|
18
|
+
exports.BASE_PATH = 'https://api.prod.finverse.net'.replace(/\/+$/, '');
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
21
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.312",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
@@ -31,8 +31,8 @@
|
|
|
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
|
-
"chai": "^
|
|
35
|
-
"mocha": "^11.7.
|
|
34
|
+
"chai": "^6.0.1",
|
|
35
|
+
"mocha": "^11.7.2",
|
|
36
36
|
"ts-node": "^10.9.2",
|
|
37
37
|
"typescript": "^4.0 || ^5.0"
|
|
38
38
|
},
|