@finverse/sdk-typescript 0.0.312 → 0.0.313
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 +150 -19
- package/dist/api.js +20 -3
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1500,10 +1500,10 @@ export interface CreatePaymentLinkRequest {
|
|
|
1500
1500
|
unique_reference_id: string;
|
|
1501
1501
|
/**
|
|
1502
1502
|
*
|
|
1503
|
-
* @type {
|
|
1503
|
+
* @type {PaymentSetupOptionsRequest}
|
|
1504
1504
|
* @memberof CreatePaymentLinkRequest
|
|
1505
1505
|
*/
|
|
1506
|
-
payment_setup_options?:
|
|
1506
|
+
payment_setup_options?: PaymentSetupOptionsRequest;
|
|
1507
1507
|
/**
|
|
1508
1508
|
*
|
|
1509
1509
|
* @type {{ [key: string]: string; }}
|
|
@@ -4867,10 +4867,10 @@ export interface MandateDetailsForPaymentLink {
|
|
|
4867
4867
|
end_date?: string | null;
|
|
4868
4868
|
/**
|
|
4869
4869
|
*
|
|
4870
|
-
* @type {
|
|
4870
|
+
* @type {TransactionLimitsResponse}
|
|
4871
4871
|
* @memberof MandateDetailsForPaymentLink
|
|
4872
4872
|
*/
|
|
4873
|
-
transaction_limits?:
|
|
4873
|
+
transaction_limits?: TransactionLimitsResponse;
|
|
4874
4874
|
/**
|
|
4875
4875
|
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4876
4876
|
* @type {string}
|
|
@@ -4878,6 +4878,37 @@ export interface MandateDetailsForPaymentLink {
|
|
|
4878
4878
|
*/
|
|
4879
4879
|
description?: string;
|
|
4880
4880
|
}
|
|
4881
|
+
/**
|
|
4882
|
+
*
|
|
4883
|
+
* @export
|
|
4884
|
+
* @interface MandateDetailsForPaymentLinkRequest
|
|
4885
|
+
*/
|
|
4886
|
+
export interface MandateDetailsForPaymentLinkRequest {
|
|
4887
|
+
/**
|
|
4888
|
+
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4889
|
+
* @type {string}
|
|
4890
|
+
* @memberof MandateDetailsForPaymentLinkRequest
|
|
4891
|
+
*/
|
|
4892
|
+
start_date?: string | null;
|
|
4893
|
+
/**
|
|
4894
|
+
* YYYY-MM-DD, must be later than the date of creation.
|
|
4895
|
+
* @type {string}
|
|
4896
|
+
* @memberof MandateDetailsForPaymentLinkRequest
|
|
4897
|
+
*/
|
|
4898
|
+
end_date?: string | null;
|
|
4899
|
+
/**
|
|
4900
|
+
*
|
|
4901
|
+
* @type {TransactionLimitsRequest}
|
|
4902
|
+
* @memberof MandateDetailsForPaymentLinkRequest
|
|
4903
|
+
*/
|
|
4904
|
+
transaction_limits?: TransactionLimitsRequest;
|
|
4905
|
+
/**
|
|
4906
|
+
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4907
|
+
* @type {string}
|
|
4908
|
+
* @memberof MandateDetailsForPaymentLinkRequest
|
|
4909
|
+
*/
|
|
4910
|
+
description?: string;
|
|
4911
|
+
}
|
|
4881
4912
|
/**
|
|
4882
4913
|
*
|
|
4883
4914
|
* @export
|
|
@@ -4910,10 +4941,10 @@ export interface MandateDetailsRequest {
|
|
|
4910
4941
|
payment_schedule?: PaymentSchedule;
|
|
4911
4942
|
/**
|
|
4912
4943
|
*
|
|
4913
|
-
* @type {
|
|
4944
|
+
* @type {TransactionLimitsRequest}
|
|
4914
4945
|
* @memberof MandateDetailsRequest
|
|
4915
4946
|
*/
|
|
4916
|
-
transaction_limits?:
|
|
4947
|
+
transaction_limits?: TransactionLimitsRequest;
|
|
4917
4948
|
/**
|
|
4918
4949
|
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4919
4950
|
* @type {string}
|
|
@@ -4959,10 +4990,10 @@ export interface MandateDetailsRequestWithDdaReference {
|
|
|
4959
4990
|
end_date?: string | null;
|
|
4960
4991
|
/**
|
|
4961
4992
|
*
|
|
4962
|
-
* @type {
|
|
4993
|
+
* @type {TransactionLimitsRequest}
|
|
4963
4994
|
* @memberof MandateDetailsRequestWithDdaReference
|
|
4964
4995
|
*/
|
|
4965
|
-
transaction_limits?:
|
|
4996
|
+
transaction_limits?: TransactionLimitsRequest;
|
|
4966
4997
|
/**
|
|
4967
4998
|
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4968
4999
|
* @type {string}
|
|
@@ -5008,10 +5039,10 @@ export interface MandateDetailsResponse {
|
|
|
5008
5039
|
payment_schedule?: PaymentSchedule;
|
|
5009
5040
|
/**
|
|
5010
5041
|
*
|
|
5011
|
-
* @type {
|
|
5042
|
+
* @type {TransactionLimitsResponse}
|
|
5012
5043
|
* @memberof MandateDetailsResponse
|
|
5013
5044
|
*/
|
|
5014
|
-
transaction_limits?:
|
|
5045
|
+
transaction_limits?: TransactionLimitsResponse;
|
|
5015
5046
|
/**
|
|
5016
5047
|
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
5017
5048
|
* @type {string}
|
|
@@ -6756,6 +6787,61 @@ export declare const PaymentSetupOptionsPaymentMethodTypesEnum: {
|
|
|
6756
6787
|
readonly Manual: "MANUAL";
|
|
6757
6788
|
};
|
|
6758
6789
|
export type PaymentSetupOptionsPaymentMethodTypesEnum = (typeof PaymentSetupOptionsPaymentMethodTypesEnum)[keyof typeof PaymentSetupOptionsPaymentMethodTypesEnum];
|
|
6790
|
+
/**
|
|
6791
|
+
*
|
|
6792
|
+
* @export
|
|
6793
|
+
* @interface PaymentSetupOptionsRequest
|
|
6794
|
+
*/
|
|
6795
|
+
export interface PaymentSetupOptionsRequest {
|
|
6796
|
+
/**
|
|
6797
|
+
* The type of future_payments that customer want to use. Possible values: AUTOPAY or CLICK_TO_PAY
|
|
6798
|
+
* @type {string}
|
|
6799
|
+
* @memberof PaymentSetupOptionsRequest
|
|
6800
|
+
*/
|
|
6801
|
+
future_payments?: PaymentSetupOptionsRequestFuturePaymentsEnum;
|
|
6802
|
+
/**
|
|
6803
|
+
*
|
|
6804
|
+
* @type {MandateDetailsForPaymentLinkRequest}
|
|
6805
|
+
* @memberof PaymentSetupOptionsRequest
|
|
6806
|
+
*/
|
|
6807
|
+
mandate_details?: MandateDetailsForPaymentLinkRequest;
|
|
6808
|
+
/**
|
|
6809
|
+
*
|
|
6810
|
+
* @type {Array<string>}
|
|
6811
|
+
* @memberof PaymentSetupOptionsRequest
|
|
6812
|
+
*/
|
|
6813
|
+
payment_method_types?: Array<PaymentSetupOptionsRequestPaymentMethodTypesEnum>;
|
|
6814
|
+
/**
|
|
6815
|
+
*
|
|
6816
|
+
* @type {RecipientAccountFilters}
|
|
6817
|
+
* @memberof PaymentSetupOptionsRequest
|
|
6818
|
+
*/
|
|
6819
|
+
recipient_account_filters?: RecipientAccountFilters;
|
|
6820
|
+
/**
|
|
6821
|
+
*
|
|
6822
|
+
* @type {AutopayEnrollmentConfiguration}
|
|
6823
|
+
* @memberof PaymentSetupOptionsRequest
|
|
6824
|
+
*/
|
|
6825
|
+
autopay_enrollment_configuration?: AutopayEnrollmentConfiguration;
|
|
6826
|
+
/**
|
|
6827
|
+
* The recurring payment mode
|
|
6828
|
+
* @type {string}
|
|
6829
|
+
* @memberof PaymentSetupOptionsRequest
|
|
6830
|
+
*/
|
|
6831
|
+
recurring_payment_mode?: string;
|
|
6832
|
+
}
|
|
6833
|
+
export declare const PaymentSetupOptionsRequestFuturePaymentsEnum: {
|
|
6834
|
+
readonly Autopay: "AUTOPAY";
|
|
6835
|
+
readonly ClickToPay: "CLICK_TO_PAY";
|
|
6836
|
+
};
|
|
6837
|
+
export type PaymentSetupOptionsRequestFuturePaymentsEnum = (typeof PaymentSetupOptionsRequestFuturePaymentsEnum)[keyof typeof PaymentSetupOptionsRequestFuturePaymentsEnum];
|
|
6838
|
+
export declare const PaymentSetupOptionsRequestPaymentMethodTypesEnum: {
|
|
6839
|
+
readonly Mandate: "MANDATE";
|
|
6840
|
+
readonly Single: "SINGLE";
|
|
6841
|
+
readonly Card: "CARD";
|
|
6842
|
+
readonly Manual: "MANUAL";
|
|
6843
|
+
};
|
|
6844
|
+
export type PaymentSetupOptionsRequestPaymentMethodTypesEnum = (typeof PaymentSetupOptionsRequestPaymentMethodTypesEnum)[keyof typeof PaymentSetupOptionsRequestPaymentMethodTypesEnum];
|
|
6759
6845
|
/**
|
|
6760
6846
|
*
|
|
6761
6847
|
* @export
|
|
@@ -8217,42 +8303,87 @@ export interface Transaction {
|
|
|
8217
8303
|
/**
|
|
8218
8304
|
*
|
|
8219
8305
|
* @export
|
|
8220
|
-
* @interface
|
|
8306
|
+
* @interface TransactionLimitsRequest
|
|
8307
|
+
*/
|
|
8308
|
+
export interface TransactionLimitsRequest {
|
|
8309
|
+
/**
|
|
8310
|
+
* Maximum amount of money that can be paid during the reference period (across any number of transactions). Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
|
|
8311
|
+
* @type {number}
|
|
8312
|
+
* @memberof TransactionLimitsRequest
|
|
8313
|
+
*/
|
|
8314
|
+
max_period_amount?: number;
|
|
8315
|
+
/**
|
|
8316
|
+
* Maximum number of transactions (of any amount) that can be executed during the reference period.
|
|
8317
|
+
* @type {number}
|
|
8318
|
+
* @memberof TransactionLimitsRequest
|
|
8319
|
+
*/
|
|
8320
|
+
max_period_count?: number;
|
|
8321
|
+
/**
|
|
8322
|
+
* The maximum amount of money that can be transferred in a single transaction under this mandate. Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
|
|
8323
|
+
* @type {number}
|
|
8324
|
+
* @memberof TransactionLimitsRequest
|
|
8325
|
+
*/
|
|
8326
|
+
max_transaction_amount: number;
|
|
8327
|
+
/**
|
|
8328
|
+
* Reference calendar periods for the payment limits. Possible values (DAILY, WEEKLY, MONTHLY, QUARTERLY, YEARLY)
|
|
8329
|
+
* @type {string}
|
|
8330
|
+
* @memberof TransactionLimitsRequest
|
|
8331
|
+
*/
|
|
8332
|
+
period?: TransactionLimitsRequestPeriodEnum | null;
|
|
8333
|
+
}
|
|
8334
|
+
export declare const TransactionLimitsRequestPeriodEnum: {
|
|
8335
|
+
readonly Daily: "DAILY";
|
|
8336
|
+
readonly Weekly: "WEEKLY";
|
|
8337
|
+
readonly Monthly: "MONTHLY";
|
|
8338
|
+
readonly Quarterly: "QUARTERLY";
|
|
8339
|
+
readonly Yearly: "YEARLY";
|
|
8340
|
+
};
|
|
8341
|
+
export type TransactionLimitsRequestPeriodEnum = (typeof TransactionLimitsRequestPeriodEnum)[keyof typeof TransactionLimitsRequestPeriodEnum];
|
|
8342
|
+
/**
|
|
8343
|
+
*
|
|
8344
|
+
* @export
|
|
8345
|
+
* @interface TransactionLimitsResponse
|
|
8221
8346
|
*/
|
|
8222
|
-
export interface
|
|
8347
|
+
export interface TransactionLimitsResponse {
|
|
8223
8348
|
/**
|
|
8224
8349
|
* Maximum amount of money that can be paid during the reference period (across any number of transactions). Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
|
|
8225
8350
|
* @type {number}
|
|
8226
|
-
* @memberof
|
|
8351
|
+
* @memberof TransactionLimitsResponse
|
|
8227
8352
|
*/
|
|
8228
8353
|
max_period_amount?: number;
|
|
8229
8354
|
/**
|
|
8230
8355
|
* Maximum number of transactions (of any amount) that can be executed during the reference period.
|
|
8231
8356
|
* @type {number}
|
|
8232
|
-
* @memberof
|
|
8357
|
+
* @memberof TransactionLimitsResponse
|
|
8233
8358
|
*/
|
|
8234
8359
|
max_period_count?: number;
|
|
8235
8360
|
/**
|
|
8236
8361
|
* The maximum amount of money that can be transferred in a single transaction under this mandate. Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
|
|
8237
8362
|
* @type {number}
|
|
8238
|
-
* @memberof
|
|
8363
|
+
* @memberof TransactionLimitsResponse
|
|
8239
8364
|
*/
|
|
8240
8365
|
max_transaction_amount: number;
|
|
8366
|
+
/**
|
|
8367
|
+
* The maximum amount of money that can be transferred in a single transaction under this mandate set by the payer. Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
|
|
8368
|
+
* @type {number}
|
|
8369
|
+
* @memberof TransactionLimitsResponse
|
|
8370
|
+
*/
|
|
8371
|
+
max_transaction_amount_set_by_payer_initial?: number | null;
|
|
8241
8372
|
/**
|
|
8242
8373
|
* Reference calendar periods for the payment limits. Possible values (DAILY, WEEKLY, MONTHLY, QUARTERLY, YEARLY)
|
|
8243
8374
|
* @type {string}
|
|
8244
|
-
* @memberof
|
|
8375
|
+
* @memberof TransactionLimitsResponse
|
|
8245
8376
|
*/
|
|
8246
|
-
period?:
|
|
8377
|
+
period?: TransactionLimitsResponsePeriodEnum | null;
|
|
8247
8378
|
}
|
|
8248
|
-
export declare const
|
|
8379
|
+
export declare const TransactionLimitsResponsePeriodEnum: {
|
|
8249
8380
|
readonly Daily: "DAILY";
|
|
8250
8381
|
readonly Weekly: "WEEKLY";
|
|
8251
8382
|
readonly Monthly: "MONTHLY";
|
|
8252
8383
|
readonly Quarterly: "QUARTERLY";
|
|
8253
8384
|
readonly Yearly: "YEARLY";
|
|
8254
8385
|
};
|
|
8255
|
-
export type
|
|
8386
|
+
export type TransactionLimitsResponsePeriodEnum = (typeof TransactionLimitsResponsePeriodEnum)[keyof typeof TransactionLimitsResponsePeriodEnum];
|
|
8256
8387
|
/**
|
|
8257
8388
|
*
|
|
8258
8389
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -23,8 +23,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
exports.ManualPaymentConfirmationResponseStatusEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.MandateAuthLinkCustomizationsLanguageEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestLanguageEnum = 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.FvEmbeddedErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardDetailsFundingEnum = exports.FVCardStatusEnum = exports.DisputeResponseDisputeStatusEnum = 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.AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
|
|
26
|
-
exports.
|
|
27
|
-
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = void 0;
|
|
26
|
+
exports.ListPaymentsStatusesEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = exports.ListDetokenizedMandatesSenderTypeEnum = exports.ListDetokenizedMandatesStatusesEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ListPaymentAccountsWithEnrichedDataAccountTypeEnum = exports.ListInstitutionsInstitutionTypeEnum = exports.GetLineItemsForDisplayPaymentTypeEnum = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsResponsePeriodEnum = exports.TransactionLimitsRequestPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PayoutSnapshotResponseTypeEnum = exports.PayoutSnapshotResponseStatusEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsRequestPaymentMethodTypesEnum = exports.PaymentSetupOptionsRequestFuturePaymentsEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsWithEnrichedDataAccountTypeEnum = exports.PaymentAccountDetailsAccountTypeEnum = void 0;
|
|
27
|
+
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = void 0;
|
|
28
28
|
const axios_1 = require("axios");
|
|
29
29
|
// Some imports not used depending on template conditions
|
|
30
30
|
// @ts-ignore
|
|
@@ -383,6 +383,16 @@ exports.PaymentSetupOptionsPaymentMethodTypesEnum = {
|
|
|
383
383
|
Card: 'CARD',
|
|
384
384
|
Manual: 'MANUAL',
|
|
385
385
|
};
|
|
386
|
+
exports.PaymentSetupOptionsRequestFuturePaymentsEnum = {
|
|
387
|
+
Autopay: 'AUTOPAY',
|
|
388
|
+
ClickToPay: 'CLICK_TO_PAY',
|
|
389
|
+
};
|
|
390
|
+
exports.PaymentSetupOptionsRequestPaymentMethodTypesEnum = {
|
|
391
|
+
Mandate: 'MANDATE',
|
|
392
|
+
Single: 'SINGLE',
|
|
393
|
+
Card: 'CARD',
|
|
394
|
+
Manual: 'MANUAL',
|
|
395
|
+
};
|
|
386
396
|
exports.PaymentUserUserTypeEnum = {
|
|
387
397
|
Individual: 'INDIVIDUAL',
|
|
388
398
|
Business: 'BUSINESS',
|
|
@@ -437,7 +447,14 @@ exports.SubmitAuthChecklistResponseMandateStatusEnum = {
|
|
|
437
447
|
Submitted: 'SUBMITTED',
|
|
438
448
|
Error: 'ERROR',
|
|
439
449
|
};
|
|
440
|
-
exports.
|
|
450
|
+
exports.TransactionLimitsRequestPeriodEnum = {
|
|
451
|
+
Daily: 'DAILY',
|
|
452
|
+
Weekly: 'WEEKLY',
|
|
453
|
+
Monthly: 'MONTHLY',
|
|
454
|
+
Quarterly: 'QUARTERLY',
|
|
455
|
+
Yearly: 'YEARLY',
|
|
456
|
+
};
|
|
457
|
+
exports.TransactionLimitsResponsePeriodEnum = {
|
|
441
458
|
Daily: 'DAILY',
|
|
442
459
|
Weekly: 'WEEKLY',
|
|
443
460
|
Monthly: 'MONTHLY',
|