@finverse/sdk-typescript 0.0.249 → 0.0.251
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 +230 -82
- package/dist/api.js +8 -4
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -949,6 +949,60 @@ export interface ConfirmPaymentResponse {
|
|
|
949
949
|
*/
|
|
950
950
|
skip_autopay_consent: boolean;
|
|
951
951
|
}
|
|
952
|
+
/**
|
|
953
|
+
*
|
|
954
|
+
* @export
|
|
955
|
+
* @interface CreateCardRequest
|
|
956
|
+
*/
|
|
957
|
+
export interface CreateCardRequest {
|
|
958
|
+
/**
|
|
959
|
+
*
|
|
960
|
+
* @type {CreateCardRequestCardDetails}
|
|
961
|
+
* @memberof CreateCardRequest
|
|
962
|
+
*/
|
|
963
|
+
card_details: CreateCardRequestCardDetails;
|
|
964
|
+
/**
|
|
965
|
+
*
|
|
966
|
+
* @type {MandateRecipientRequest}
|
|
967
|
+
* @memberof CreateCardRequest
|
|
968
|
+
*/
|
|
969
|
+
recipient_account: MandateRecipientRequest;
|
|
970
|
+
/**
|
|
971
|
+
*
|
|
972
|
+
* @type {string}
|
|
973
|
+
* @memberof CreateCardRequest
|
|
974
|
+
*/
|
|
975
|
+
status: CreateCardRequestStatusEnum;
|
|
976
|
+
}
|
|
977
|
+
export declare const CreateCardRequestStatusEnum: {
|
|
978
|
+
readonly Succeeded: "SUCCEEDED";
|
|
979
|
+
};
|
|
980
|
+
export declare type CreateCardRequestStatusEnum = (typeof CreateCardRequestStatusEnum)[keyof typeof CreateCardRequestStatusEnum];
|
|
981
|
+
/**
|
|
982
|
+
*
|
|
983
|
+
* @export
|
|
984
|
+
* @interface CreateCardRequestCardDetails
|
|
985
|
+
*/
|
|
986
|
+
export interface CreateCardRequestCardDetails {
|
|
987
|
+
/**
|
|
988
|
+
*
|
|
989
|
+
* @type {string}
|
|
990
|
+
* @memberof CreateCardRequestCardDetails
|
|
991
|
+
*/
|
|
992
|
+
brand: string;
|
|
993
|
+
/**
|
|
994
|
+
*
|
|
995
|
+
* @type {string}
|
|
996
|
+
* @memberof CreateCardRequestCardDetails
|
|
997
|
+
*/
|
|
998
|
+
last4: string;
|
|
999
|
+
/**
|
|
1000
|
+
*
|
|
1001
|
+
* @type {string}
|
|
1002
|
+
* @memberof CreateCardRequestCardDetails
|
|
1003
|
+
*/
|
|
1004
|
+
currency: string;
|
|
1005
|
+
}
|
|
952
1006
|
/**
|
|
953
1007
|
*
|
|
954
1008
|
* @export
|
|
@@ -982,10 +1036,10 @@ export interface CreateMandateRequest {
|
|
|
982
1036
|
sender: CreateMandateSender;
|
|
983
1037
|
/**
|
|
984
1038
|
*
|
|
985
|
-
* @type {
|
|
1039
|
+
* @type {MandateDetailsRequest}
|
|
986
1040
|
* @memberof CreateMandateRequest
|
|
987
1041
|
*/
|
|
988
|
-
mandate_details:
|
|
1042
|
+
mandate_details: MandateDetailsRequest;
|
|
989
1043
|
/**
|
|
990
1044
|
* Additional attributes of the mandate in key:value format (e.g. mandate_internal_id: 1234). It supports up to 10 key:value pairs, whereas the key and value supports up to 50 and 500 characters respectively.
|
|
991
1045
|
* @type {{ [key: string]: string; }}
|
|
@@ -995,6 +1049,49 @@ export interface CreateMandateRequest {
|
|
|
995
1049
|
[key: string]: string;
|
|
996
1050
|
};
|
|
997
1051
|
}
|
|
1052
|
+
/**
|
|
1053
|
+
*
|
|
1054
|
+
* @export
|
|
1055
|
+
* @interface CreateMandateRequestWithDdaReference
|
|
1056
|
+
*/
|
|
1057
|
+
export interface CreateMandateRequestWithDdaReference {
|
|
1058
|
+
/**
|
|
1059
|
+
*
|
|
1060
|
+
* @type {MandateRecipientRequest}
|
|
1061
|
+
* @memberof CreateMandateRequestWithDdaReference
|
|
1062
|
+
*/
|
|
1063
|
+
recipient_account: MandateRecipientRequest;
|
|
1064
|
+
/**
|
|
1065
|
+
*
|
|
1066
|
+
* @type {MandateSenderAccountRequest}
|
|
1067
|
+
* @memberof CreateMandateRequestWithDdaReference
|
|
1068
|
+
*/
|
|
1069
|
+
sender_account: MandateSenderAccountRequest;
|
|
1070
|
+
/**
|
|
1071
|
+
*
|
|
1072
|
+
* @type {MandateDetailsRequestWithDdaReference}
|
|
1073
|
+
* @memberof CreateMandateRequestWithDdaReference
|
|
1074
|
+
*/
|
|
1075
|
+
mandate_details: MandateDetailsRequestWithDdaReference;
|
|
1076
|
+
/**
|
|
1077
|
+
* Additional attributes of the mandate in key:value format (e.g. mandate_internal_id: 1234). It supports up to 10 key:value pairs, whereas the key and value supports up to 50 and 500 characters respectively.
|
|
1078
|
+
* @type {{ [key: string]: string; }}
|
|
1079
|
+
* @memberof CreateMandateRequestWithDdaReference
|
|
1080
|
+
*/
|
|
1081
|
+
metadata?: {
|
|
1082
|
+
[key: string]: string;
|
|
1083
|
+
};
|
|
1084
|
+
/**
|
|
1085
|
+
* The mandate status
|
|
1086
|
+
* @type {string}
|
|
1087
|
+
* @memberof CreateMandateRequestWithDdaReference
|
|
1088
|
+
*/
|
|
1089
|
+
status: CreateMandateRequestWithDdaReferenceStatusEnum;
|
|
1090
|
+
}
|
|
1091
|
+
export declare const CreateMandateRequestWithDdaReferenceStatusEnum: {
|
|
1092
|
+
readonly Succeeded: "SUCCEEDED";
|
|
1093
|
+
};
|
|
1094
|
+
export declare type CreateMandateRequestWithDdaReferenceStatusEnum = (typeof CreateMandateRequestWithDdaReferenceStatusEnum)[keyof typeof CreateMandateRequestWithDdaReferenceStatusEnum];
|
|
998
1095
|
/**
|
|
999
1096
|
*
|
|
1000
1097
|
* @export
|
|
@@ -1057,10 +1154,10 @@ export interface CreateMandateResponse {
|
|
|
1057
1154
|
sender_account?: MandateSenderAccount;
|
|
1058
1155
|
/**
|
|
1059
1156
|
*
|
|
1060
|
-
* @type {
|
|
1157
|
+
* @type {MandateDetailsResponse}
|
|
1061
1158
|
* @memberof CreateMandateResponse
|
|
1062
1159
|
*/
|
|
1063
|
-
mandate_details:
|
|
1160
|
+
mandate_details: MandateDetailsResponse;
|
|
1064
1161
|
/**
|
|
1065
1162
|
*
|
|
1066
1163
|
* @type {Array<Fee>}
|
|
@@ -1148,10 +1245,10 @@ export interface CreateMandateWithSenderAccountRequest {
|
|
|
1148
1245
|
sender_account: MandateSenderAccountRequest;
|
|
1149
1246
|
/**
|
|
1150
1247
|
*
|
|
1151
|
-
* @type {
|
|
1248
|
+
* @type {MandateDetailsRequest}
|
|
1152
1249
|
* @memberof CreateMandateWithSenderAccountRequest
|
|
1153
1250
|
*/
|
|
1154
|
-
mandate_details:
|
|
1251
|
+
mandate_details: MandateDetailsRequest;
|
|
1155
1252
|
/**
|
|
1156
1253
|
* Additional attributes of the mandate in key:value format (e.g. mandate_internal_id: 1234). It supports up to 10 key:value pairs, whereas the key and value supports up to 50 and 500 characters respectively.
|
|
1157
1254
|
* @type {{ [key: string]: string; }}
|
|
@@ -1375,16 +1472,22 @@ export declare type CreatePaymentLinkRequestModeEnum = (typeof CreatePaymentLink
|
|
|
1375
1472
|
export interface CreatePaymentMethodRequest {
|
|
1376
1473
|
/**
|
|
1377
1474
|
*
|
|
1378
|
-
* @type {
|
|
1475
|
+
* @type {CreateCardRequest}
|
|
1476
|
+
* @memberof CreatePaymentMethodRequest
|
|
1477
|
+
*/
|
|
1478
|
+
card?: CreateCardRequest;
|
|
1479
|
+
/**
|
|
1480
|
+
*
|
|
1481
|
+
* @type {CreateMandateRequestWithDdaReference}
|
|
1379
1482
|
* @memberof CreatePaymentMethodRequest
|
|
1380
1483
|
*/
|
|
1381
|
-
|
|
1484
|
+
mandate?: CreateMandateRequestWithDdaReference;
|
|
1382
1485
|
/**
|
|
1383
1486
|
*
|
|
1384
1487
|
* @type {PaymentMethodIntegrationMetadata}
|
|
1385
1488
|
* @memberof CreatePaymentMethodRequest
|
|
1386
1489
|
*/
|
|
1387
|
-
integration_metadata
|
|
1490
|
+
integration_metadata?: PaymentMethodIntegrationMetadata;
|
|
1388
1491
|
/**
|
|
1389
1492
|
*
|
|
1390
1493
|
* @type {string}
|
|
@@ -1394,62 +1497,9 @@ export interface CreatePaymentMethodRequest {
|
|
|
1394
1497
|
}
|
|
1395
1498
|
export declare const CreatePaymentMethodRequestPaymentMethodTypeEnum: {
|
|
1396
1499
|
readonly Card: "CARD";
|
|
1500
|
+
readonly Mandate: "MANDATE";
|
|
1397
1501
|
};
|
|
1398
1502
|
export declare type CreatePaymentMethodRequestPaymentMethodTypeEnum = (typeof CreatePaymentMethodRequestPaymentMethodTypeEnum)[keyof typeof CreatePaymentMethodRequestPaymentMethodTypeEnum];
|
|
1399
|
-
/**
|
|
1400
|
-
*
|
|
1401
|
-
* @export
|
|
1402
|
-
* @interface CreatePaymentMethodRequestCard
|
|
1403
|
-
*/
|
|
1404
|
-
export interface CreatePaymentMethodRequestCard {
|
|
1405
|
-
/**
|
|
1406
|
-
*
|
|
1407
|
-
* @type {CreatePaymentMethodRequestCardCardDetails}
|
|
1408
|
-
* @memberof CreatePaymentMethodRequestCard
|
|
1409
|
-
*/
|
|
1410
|
-
card_details: CreatePaymentMethodRequestCardCardDetails;
|
|
1411
|
-
/**
|
|
1412
|
-
*
|
|
1413
|
-
* @type {MandateRecipientRequest}
|
|
1414
|
-
* @memberof CreatePaymentMethodRequestCard
|
|
1415
|
-
*/
|
|
1416
|
-
recipient_account: MandateRecipientRequest;
|
|
1417
|
-
/**
|
|
1418
|
-
*
|
|
1419
|
-
* @type {string}
|
|
1420
|
-
* @memberof CreatePaymentMethodRequestCard
|
|
1421
|
-
*/
|
|
1422
|
-
status: CreatePaymentMethodRequestCardStatusEnum;
|
|
1423
|
-
}
|
|
1424
|
-
export declare const CreatePaymentMethodRequestCardStatusEnum: {
|
|
1425
|
-
readonly Succeeded: "SUCCEEDED";
|
|
1426
|
-
};
|
|
1427
|
-
export declare type CreatePaymentMethodRequestCardStatusEnum = (typeof CreatePaymentMethodRequestCardStatusEnum)[keyof typeof CreatePaymentMethodRequestCardStatusEnum];
|
|
1428
|
-
/**
|
|
1429
|
-
*
|
|
1430
|
-
* @export
|
|
1431
|
-
* @interface CreatePaymentMethodRequestCardCardDetails
|
|
1432
|
-
*/
|
|
1433
|
-
export interface CreatePaymentMethodRequestCardCardDetails {
|
|
1434
|
-
/**
|
|
1435
|
-
*
|
|
1436
|
-
* @type {string}
|
|
1437
|
-
* @memberof CreatePaymentMethodRequestCardCardDetails
|
|
1438
|
-
*/
|
|
1439
|
-
brand: string;
|
|
1440
|
-
/**
|
|
1441
|
-
*
|
|
1442
|
-
* @type {string}
|
|
1443
|
-
* @memberof CreatePaymentMethodRequestCardCardDetails
|
|
1444
|
-
*/
|
|
1445
|
-
last4: string;
|
|
1446
|
-
/**
|
|
1447
|
-
*
|
|
1448
|
-
* @type {string}
|
|
1449
|
-
* @memberof CreatePaymentMethodRequestCardCardDetails
|
|
1450
|
-
*/
|
|
1451
|
-
currency: string;
|
|
1452
|
-
}
|
|
1453
1503
|
/**
|
|
1454
1504
|
*
|
|
1455
1505
|
* @export
|
|
@@ -2393,10 +2443,10 @@ export interface GetMandateAuthResponse {
|
|
|
2393
2443
|
error?: FvErrorModelV2;
|
|
2394
2444
|
/**
|
|
2395
2445
|
*
|
|
2396
|
-
* @type {
|
|
2446
|
+
* @type {MandateDetailsResponse}
|
|
2397
2447
|
* @memberof GetMandateAuthResponse
|
|
2398
2448
|
*/
|
|
2399
|
-
mandate_details?:
|
|
2449
|
+
mandate_details?: MandateDetailsResponse;
|
|
2400
2450
|
/**
|
|
2401
2451
|
*
|
|
2402
2452
|
* @type {MandateRecipient}
|
|
@@ -2478,10 +2528,10 @@ export interface GetMandateResponse {
|
|
|
2478
2528
|
sender_account?: MandateSenderAccount;
|
|
2479
2529
|
/**
|
|
2480
2530
|
*
|
|
2481
|
-
* @type {
|
|
2531
|
+
* @type {MandateDetailsResponse}
|
|
2482
2532
|
* @memberof GetMandateResponse
|
|
2483
2533
|
*/
|
|
2484
|
-
mandate_details:
|
|
2534
|
+
mandate_details: MandateDetailsResponse;
|
|
2485
2535
|
/**
|
|
2486
2536
|
*
|
|
2487
2537
|
* @type {Array<Fee>}
|
|
@@ -4318,82 +4368,180 @@ export declare type MandateAuthLinkCustomizationsUiModeEnum = (typeof MandateAut
|
|
|
4318
4368
|
/**
|
|
4319
4369
|
*
|
|
4320
4370
|
* @export
|
|
4321
|
-
* @interface
|
|
4371
|
+
* @interface MandateDetailsForPaymentLink
|
|
4322
4372
|
*/
|
|
4323
|
-
export interface
|
|
4373
|
+
export interface MandateDetailsForPaymentLink {
|
|
4374
|
+
/**
|
|
4375
|
+
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4376
|
+
* @type {string}
|
|
4377
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4378
|
+
*/
|
|
4379
|
+
start_date?: string | null;
|
|
4380
|
+
/**
|
|
4381
|
+
* YYYY-MM-DD, must be later than the date of creation.
|
|
4382
|
+
* @type {string}
|
|
4383
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4384
|
+
*/
|
|
4385
|
+
end_date?: string | null;
|
|
4386
|
+
/**
|
|
4387
|
+
*
|
|
4388
|
+
* @type {TransactionLimits}
|
|
4389
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4390
|
+
*/
|
|
4391
|
+
transaction_limits?: TransactionLimits;
|
|
4392
|
+
/**
|
|
4393
|
+
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4394
|
+
* @type {string}
|
|
4395
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4396
|
+
*/
|
|
4397
|
+
description?: string;
|
|
4398
|
+
}
|
|
4399
|
+
/**
|
|
4400
|
+
*
|
|
4401
|
+
* @export
|
|
4402
|
+
* @interface MandateDetailsRequest
|
|
4403
|
+
*/
|
|
4404
|
+
export interface MandateDetailsRequest {
|
|
4324
4405
|
/**
|
|
4325
4406
|
* ISO currency code
|
|
4326
4407
|
* @type {string}
|
|
4327
|
-
* @memberof
|
|
4408
|
+
* @memberof MandateDetailsRequest
|
|
4328
4409
|
*/
|
|
4329
4410
|
currency: string;
|
|
4330
4411
|
/**
|
|
4331
4412
|
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4332
4413
|
* @type {string}
|
|
4333
|
-
* @memberof
|
|
4414
|
+
* @memberof MandateDetailsRequest
|
|
4334
4415
|
*/
|
|
4335
4416
|
start_date?: string | null;
|
|
4336
4417
|
/**
|
|
4337
4418
|
* YYYY-MM-DD, must be later than the date of creation.
|
|
4338
4419
|
* @type {string}
|
|
4339
|
-
* @memberof
|
|
4420
|
+
* @memberof MandateDetailsRequest
|
|
4340
4421
|
*/
|
|
4341
4422
|
end_date?: string | null;
|
|
4342
4423
|
/**
|
|
4343
4424
|
*
|
|
4344
4425
|
* @type {PaymentSchedule}
|
|
4345
|
-
* @memberof
|
|
4426
|
+
* @memberof MandateDetailsRequest
|
|
4346
4427
|
*/
|
|
4347
4428
|
payment_schedule?: PaymentSchedule;
|
|
4348
4429
|
/**
|
|
4349
4430
|
*
|
|
4350
4431
|
* @type {TransactionLimits}
|
|
4351
|
-
* @memberof
|
|
4432
|
+
* @memberof MandateDetailsRequest
|
|
4352
4433
|
*/
|
|
4353
4434
|
transaction_limits?: TransactionLimits;
|
|
4354
4435
|
/**
|
|
4355
4436
|
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4356
4437
|
* @type {string}
|
|
4357
|
-
* @memberof
|
|
4438
|
+
* @memberof MandateDetailsRequest
|
|
4358
4439
|
*/
|
|
4359
4440
|
description?: string;
|
|
4360
4441
|
/**
|
|
4361
4442
|
* A bank specific reference, what the end user may see
|
|
4362
4443
|
* @type {string}
|
|
4363
|
-
* @memberof
|
|
4444
|
+
* @memberof MandateDetailsRequest
|
|
4364
4445
|
*/
|
|
4365
4446
|
mandate_bank_reference?: string;
|
|
4366
4447
|
}
|
|
4367
4448
|
/**
|
|
4368
4449
|
*
|
|
4369
4450
|
* @export
|
|
4370
|
-
* @interface
|
|
4451
|
+
* @interface MandateDetailsRequestWithDdaReference
|
|
4371
4452
|
*/
|
|
4372
|
-
export interface
|
|
4453
|
+
export interface MandateDetailsRequestWithDdaReference {
|
|
4454
|
+
/**
|
|
4455
|
+
* The direct debit authorization reference
|
|
4456
|
+
* @type {string}
|
|
4457
|
+
* @memberof MandateDetailsRequestWithDdaReference
|
|
4458
|
+
*/
|
|
4459
|
+
dda_reference?: string;
|
|
4460
|
+
/**
|
|
4461
|
+
* ISO currency code
|
|
4462
|
+
* @type {string}
|
|
4463
|
+
* @memberof MandateDetailsRequestWithDdaReference
|
|
4464
|
+
*/
|
|
4465
|
+
currency: string;
|
|
4373
4466
|
/**
|
|
4374
4467
|
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4375
4468
|
* @type {string}
|
|
4376
|
-
* @memberof
|
|
4469
|
+
* @memberof MandateDetailsRequestWithDdaReference
|
|
4377
4470
|
*/
|
|
4378
4471
|
start_date?: string | null;
|
|
4379
4472
|
/**
|
|
4380
4473
|
* YYYY-MM-DD, must be later than the date of creation.
|
|
4381
4474
|
* @type {string}
|
|
4382
|
-
* @memberof
|
|
4475
|
+
* @memberof MandateDetailsRequestWithDdaReference
|
|
4383
4476
|
*/
|
|
4384
4477
|
end_date?: string | null;
|
|
4385
4478
|
/**
|
|
4386
4479
|
*
|
|
4387
4480
|
* @type {TransactionLimits}
|
|
4388
|
-
* @memberof
|
|
4481
|
+
* @memberof MandateDetailsRequestWithDdaReference
|
|
4389
4482
|
*/
|
|
4390
4483
|
transaction_limits?: TransactionLimits;
|
|
4391
4484
|
/**
|
|
4392
4485
|
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4393
4486
|
* @type {string}
|
|
4394
|
-
* @memberof
|
|
4487
|
+
* @memberof MandateDetailsRequestWithDdaReference
|
|
4488
|
+
*/
|
|
4489
|
+
description: string;
|
|
4490
|
+
}
|
|
4491
|
+
/**
|
|
4492
|
+
*
|
|
4493
|
+
* @export
|
|
4494
|
+
* @interface MandateDetailsResponse
|
|
4495
|
+
*/
|
|
4496
|
+
export interface MandateDetailsResponse {
|
|
4497
|
+
/**
|
|
4498
|
+
* The direct debit authorization reference, if empty this will be omitted from response
|
|
4499
|
+
* @type {string}
|
|
4500
|
+
* @memberof MandateDetailsResponse
|
|
4501
|
+
*/
|
|
4502
|
+
dda_reference?: string;
|
|
4503
|
+
/**
|
|
4504
|
+
* ISO currency code
|
|
4505
|
+
* @type {string}
|
|
4506
|
+
* @memberof MandateDetailsResponse
|
|
4507
|
+
*/
|
|
4508
|
+
currency: string;
|
|
4509
|
+
/**
|
|
4510
|
+
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4511
|
+
* @type {string}
|
|
4512
|
+
* @memberof MandateDetailsResponse
|
|
4513
|
+
*/
|
|
4514
|
+
start_date?: string | null;
|
|
4515
|
+
/**
|
|
4516
|
+
* YYYY-MM-DD, must be later than the date of creation.
|
|
4517
|
+
* @type {string}
|
|
4518
|
+
* @memberof MandateDetailsResponse
|
|
4519
|
+
*/
|
|
4520
|
+
end_date?: string | null;
|
|
4521
|
+
/**
|
|
4522
|
+
*
|
|
4523
|
+
* @type {PaymentSchedule}
|
|
4524
|
+
* @memberof MandateDetailsResponse
|
|
4525
|
+
*/
|
|
4526
|
+
payment_schedule?: PaymentSchedule;
|
|
4527
|
+
/**
|
|
4528
|
+
*
|
|
4529
|
+
* @type {TransactionLimits}
|
|
4530
|
+
* @memberof MandateDetailsResponse
|
|
4531
|
+
*/
|
|
4532
|
+
transaction_limits?: TransactionLimits;
|
|
4533
|
+
/**
|
|
4534
|
+
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4535
|
+
* @type {string}
|
|
4536
|
+
* @memberof MandateDetailsResponse
|
|
4395
4537
|
*/
|
|
4396
4538
|
description?: string;
|
|
4539
|
+
/**
|
|
4540
|
+
* A bank specific reference, what the end user may see
|
|
4541
|
+
* @type {string}
|
|
4542
|
+
* @memberof MandateDetailsResponse
|
|
4543
|
+
*/
|
|
4544
|
+
mandate_bank_reference?: string;
|
|
4397
4545
|
}
|
|
4398
4546
|
/**
|
|
4399
4547
|
*
|
package/dist/api.js
CHANGED
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.
|
|
25
|
+
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -80,6 +80,12 @@ exports.CardFvLinkResponseStatusEnum = {
|
|
|
80
80
|
Processing: 'PROCESSING',
|
|
81
81
|
Succeeded: 'SUCCEEDED',
|
|
82
82
|
};
|
|
83
|
+
exports.CreateCardRequestStatusEnum = {
|
|
84
|
+
Succeeded: 'SUCCEEDED',
|
|
85
|
+
};
|
|
86
|
+
exports.CreateMandateRequestWithDdaReferenceStatusEnum = {
|
|
87
|
+
Succeeded: 'SUCCEEDED',
|
|
88
|
+
};
|
|
83
89
|
exports.CreateMandateResponseStatusEnum = {
|
|
84
90
|
AuthorizationRequired: 'AUTHORIZATION_REQUIRED',
|
|
85
91
|
Authorizing: 'AUTHORIZING',
|
|
@@ -106,9 +112,7 @@ exports.CreatePaymentLinkRequestModeEnum = {
|
|
|
106
112
|
};
|
|
107
113
|
exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = {
|
|
108
114
|
Card: 'CARD',
|
|
109
|
-
|
|
110
|
-
exports.CreatePaymentMethodRequestCardStatusEnum = {
|
|
111
|
-
Succeeded: 'SUCCEEDED',
|
|
115
|
+
Mandate: 'MANDATE',
|
|
112
116
|
};
|
|
113
117
|
exports.CreatePaymentUserRequestUserTypeEnum = {
|
|
114
118
|
Individual: 'INDIVIDUAL',
|