@finverse/sdk-typescript 0.0.249 → 0.0.250
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 +130 -81
- package/dist/api.js +4 -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; }}
|
|
@@ -1057,10 +1111,10 @@ export interface CreateMandateResponse {
|
|
|
1057
1111
|
sender_account?: MandateSenderAccount;
|
|
1058
1112
|
/**
|
|
1059
1113
|
*
|
|
1060
|
-
* @type {
|
|
1114
|
+
* @type {MandateDetailsResponse}
|
|
1061
1115
|
* @memberof CreateMandateResponse
|
|
1062
1116
|
*/
|
|
1063
|
-
mandate_details:
|
|
1117
|
+
mandate_details: MandateDetailsResponse;
|
|
1064
1118
|
/**
|
|
1065
1119
|
*
|
|
1066
1120
|
* @type {Array<Fee>}
|
|
@@ -1148,10 +1202,10 @@ export interface CreateMandateWithSenderAccountRequest {
|
|
|
1148
1202
|
sender_account: MandateSenderAccountRequest;
|
|
1149
1203
|
/**
|
|
1150
1204
|
*
|
|
1151
|
-
* @type {
|
|
1205
|
+
* @type {MandateDetailsRequest}
|
|
1152
1206
|
* @memberof CreateMandateWithSenderAccountRequest
|
|
1153
1207
|
*/
|
|
1154
|
-
mandate_details:
|
|
1208
|
+
mandate_details: MandateDetailsRequest;
|
|
1155
1209
|
/**
|
|
1156
1210
|
* 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
1211
|
* @type {{ [key: string]: string; }}
|
|
@@ -1375,10 +1429,10 @@ export declare type CreatePaymentLinkRequestModeEnum = (typeof CreatePaymentLink
|
|
|
1375
1429
|
export interface CreatePaymentMethodRequest {
|
|
1376
1430
|
/**
|
|
1377
1431
|
*
|
|
1378
|
-
* @type {
|
|
1432
|
+
* @type {CreateCardRequest}
|
|
1379
1433
|
* @memberof CreatePaymentMethodRequest
|
|
1380
1434
|
*/
|
|
1381
|
-
card:
|
|
1435
|
+
card: CreateCardRequest;
|
|
1382
1436
|
/**
|
|
1383
1437
|
*
|
|
1384
1438
|
* @type {PaymentMethodIntegrationMetadata}
|
|
@@ -1396,60 +1450,6 @@ export declare const CreatePaymentMethodRequestPaymentMethodTypeEnum: {
|
|
|
1396
1450
|
readonly Card: "CARD";
|
|
1397
1451
|
};
|
|
1398
1452
|
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
1453
|
/**
|
|
1454
1454
|
*
|
|
1455
1455
|
* @export
|
|
@@ -2393,10 +2393,10 @@ export interface GetMandateAuthResponse {
|
|
|
2393
2393
|
error?: FvErrorModelV2;
|
|
2394
2394
|
/**
|
|
2395
2395
|
*
|
|
2396
|
-
* @type {
|
|
2396
|
+
* @type {MandateDetailsResponse}
|
|
2397
2397
|
* @memberof GetMandateAuthResponse
|
|
2398
2398
|
*/
|
|
2399
|
-
mandate_details?:
|
|
2399
|
+
mandate_details?: MandateDetailsResponse;
|
|
2400
2400
|
/**
|
|
2401
2401
|
*
|
|
2402
2402
|
* @type {MandateRecipient}
|
|
@@ -2478,10 +2478,10 @@ export interface GetMandateResponse {
|
|
|
2478
2478
|
sender_account?: MandateSenderAccount;
|
|
2479
2479
|
/**
|
|
2480
2480
|
*
|
|
2481
|
-
* @type {
|
|
2481
|
+
* @type {MandateDetailsResponse}
|
|
2482
2482
|
* @memberof GetMandateResponse
|
|
2483
2483
|
*/
|
|
2484
|
-
mandate_details:
|
|
2484
|
+
mandate_details: MandateDetailsResponse;
|
|
2485
2485
|
/**
|
|
2486
2486
|
*
|
|
2487
2487
|
* @type {Array<Fee>}
|
|
@@ -4318,82 +4318,131 @@ export declare type MandateAuthLinkCustomizationsUiModeEnum = (typeof MandateAut
|
|
|
4318
4318
|
/**
|
|
4319
4319
|
*
|
|
4320
4320
|
* @export
|
|
4321
|
-
* @interface
|
|
4321
|
+
* @interface MandateDetailsForPaymentLink
|
|
4322
4322
|
*/
|
|
4323
|
-
export interface
|
|
4323
|
+
export interface MandateDetailsForPaymentLink {
|
|
4324
|
+
/**
|
|
4325
|
+
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4326
|
+
* @type {string}
|
|
4327
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4328
|
+
*/
|
|
4329
|
+
start_date?: string | null;
|
|
4330
|
+
/**
|
|
4331
|
+
* YYYY-MM-DD, must be later than the date of creation.
|
|
4332
|
+
* @type {string}
|
|
4333
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4334
|
+
*/
|
|
4335
|
+
end_date?: string | null;
|
|
4336
|
+
/**
|
|
4337
|
+
*
|
|
4338
|
+
* @type {TransactionLimits}
|
|
4339
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4340
|
+
*/
|
|
4341
|
+
transaction_limits?: TransactionLimits;
|
|
4342
|
+
/**
|
|
4343
|
+
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4344
|
+
* @type {string}
|
|
4345
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4346
|
+
*/
|
|
4347
|
+
description?: string;
|
|
4348
|
+
}
|
|
4349
|
+
/**
|
|
4350
|
+
*
|
|
4351
|
+
* @export
|
|
4352
|
+
* @interface MandateDetailsRequest
|
|
4353
|
+
*/
|
|
4354
|
+
export interface MandateDetailsRequest {
|
|
4324
4355
|
/**
|
|
4325
4356
|
* ISO currency code
|
|
4326
4357
|
* @type {string}
|
|
4327
|
-
* @memberof
|
|
4358
|
+
* @memberof MandateDetailsRequest
|
|
4328
4359
|
*/
|
|
4329
4360
|
currency: string;
|
|
4330
4361
|
/**
|
|
4331
4362
|
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4332
4363
|
* @type {string}
|
|
4333
|
-
* @memberof
|
|
4364
|
+
* @memberof MandateDetailsRequest
|
|
4334
4365
|
*/
|
|
4335
4366
|
start_date?: string | null;
|
|
4336
4367
|
/**
|
|
4337
4368
|
* YYYY-MM-DD, must be later than the date of creation.
|
|
4338
4369
|
* @type {string}
|
|
4339
|
-
* @memberof
|
|
4370
|
+
* @memberof MandateDetailsRequest
|
|
4340
4371
|
*/
|
|
4341
4372
|
end_date?: string | null;
|
|
4342
4373
|
/**
|
|
4343
4374
|
*
|
|
4344
4375
|
* @type {PaymentSchedule}
|
|
4345
|
-
* @memberof
|
|
4376
|
+
* @memberof MandateDetailsRequest
|
|
4346
4377
|
*/
|
|
4347
4378
|
payment_schedule?: PaymentSchedule;
|
|
4348
4379
|
/**
|
|
4349
4380
|
*
|
|
4350
4381
|
* @type {TransactionLimits}
|
|
4351
|
-
* @memberof
|
|
4382
|
+
* @memberof MandateDetailsRequest
|
|
4352
4383
|
*/
|
|
4353
4384
|
transaction_limits?: TransactionLimits;
|
|
4354
4385
|
/**
|
|
4355
4386
|
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4356
4387
|
* @type {string}
|
|
4357
|
-
* @memberof
|
|
4388
|
+
* @memberof MandateDetailsRequest
|
|
4358
4389
|
*/
|
|
4359
4390
|
description?: string;
|
|
4360
4391
|
/**
|
|
4361
4392
|
* A bank specific reference, what the end user may see
|
|
4362
4393
|
* @type {string}
|
|
4363
|
-
* @memberof
|
|
4394
|
+
* @memberof MandateDetailsRequest
|
|
4364
4395
|
*/
|
|
4365
4396
|
mandate_bank_reference?: string;
|
|
4366
4397
|
}
|
|
4367
4398
|
/**
|
|
4368
4399
|
*
|
|
4369
4400
|
* @export
|
|
4370
|
-
* @interface
|
|
4401
|
+
* @interface MandateDetailsResponse
|
|
4371
4402
|
*/
|
|
4372
|
-
export interface
|
|
4403
|
+
export interface MandateDetailsResponse {
|
|
4404
|
+
/**
|
|
4405
|
+
* ISO currency code
|
|
4406
|
+
* @type {string}
|
|
4407
|
+
* @memberof MandateDetailsResponse
|
|
4408
|
+
*/
|
|
4409
|
+
currency: string;
|
|
4373
4410
|
/**
|
|
4374
4411
|
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4375
4412
|
* @type {string}
|
|
4376
|
-
* @memberof
|
|
4413
|
+
* @memberof MandateDetailsResponse
|
|
4377
4414
|
*/
|
|
4378
4415
|
start_date?: string | null;
|
|
4379
4416
|
/**
|
|
4380
4417
|
* YYYY-MM-DD, must be later than the date of creation.
|
|
4381
4418
|
* @type {string}
|
|
4382
|
-
* @memberof
|
|
4419
|
+
* @memberof MandateDetailsResponse
|
|
4383
4420
|
*/
|
|
4384
4421
|
end_date?: string | null;
|
|
4422
|
+
/**
|
|
4423
|
+
*
|
|
4424
|
+
* @type {PaymentSchedule}
|
|
4425
|
+
* @memberof MandateDetailsResponse
|
|
4426
|
+
*/
|
|
4427
|
+
payment_schedule?: PaymentSchedule;
|
|
4385
4428
|
/**
|
|
4386
4429
|
*
|
|
4387
4430
|
* @type {TransactionLimits}
|
|
4388
|
-
* @memberof
|
|
4431
|
+
* @memberof MandateDetailsResponse
|
|
4389
4432
|
*/
|
|
4390
4433
|
transaction_limits?: TransactionLimits;
|
|
4391
4434
|
/**
|
|
4392
4435
|
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4393
4436
|
* @type {string}
|
|
4394
|
-
* @memberof
|
|
4437
|
+
* @memberof MandateDetailsResponse
|
|
4395
4438
|
*/
|
|
4396
4439
|
description?: string;
|
|
4440
|
+
/**
|
|
4441
|
+
* A bank specific reference, what the end user may see
|
|
4442
|
+
* @type {string}
|
|
4443
|
+
* @memberof MandateDetailsResponse
|
|
4444
|
+
*/
|
|
4445
|
+
mandate_bank_reference?: string;
|
|
4397
4446
|
}
|
|
4398
4447
|
/**
|
|
4399
4448
|
*
|
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.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,9 @@ exports.CardFvLinkResponseStatusEnum = {
|
|
|
80
80
|
Processing: 'PROCESSING',
|
|
81
81
|
Succeeded: 'SUCCEEDED',
|
|
82
82
|
};
|
|
83
|
+
exports.CreateCardRequestStatusEnum = {
|
|
84
|
+
Succeeded: 'SUCCEEDED',
|
|
85
|
+
};
|
|
83
86
|
exports.CreateMandateResponseStatusEnum = {
|
|
84
87
|
AuthorizationRequired: 'AUTHORIZATION_REQUIRED',
|
|
85
88
|
Authorizing: 'AUTHORIZING',
|
|
@@ -107,9 +110,6 @@ exports.CreatePaymentLinkRequestModeEnum = {
|
|
|
107
110
|
exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = {
|
|
108
111
|
Card: 'CARD',
|
|
109
112
|
};
|
|
110
|
-
exports.CreatePaymentMethodRequestCardStatusEnum = {
|
|
111
|
-
Succeeded: 'SUCCEEDED',
|
|
112
|
-
};
|
|
113
113
|
exports.CreatePaymentUserRequestUserTypeEnum = {
|
|
114
114
|
Individual: 'INDIVIDUAL',
|
|
115
115
|
Business: 'BUSINESS',
|