@finverse/sdk-typescript 0.0.110 → 0.0.111

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 +57 -45
  2. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -215,7 +215,7 @@ export declare const AccountTypeTypeEnum: {
215
215
  readonly Loan: "LOAN";
216
216
  readonly Unknown: "UNKNOWN";
217
217
  };
218
- export declare type AccountTypeTypeEnum = typeof AccountTypeTypeEnum[keyof typeof AccountTypeTypeEnum];
218
+ export declare type AccountTypeTypeEnum = (typeof AccountTypeTypeEnum)[keyof typeof AccountTypeTypeEnum];
219
219
  export declare const AccountTypeSubtypeEnum: {
220
220
  readonly Current: "CURRENT";
221
221
  readonly Savings: "SAVINGS";
@@ -232,7 +232,7 @@ export declare const AccountTypeSubtypeEnum: {
232
232
  readonly RevolvingLoan: "REVOLVING_LOAN";
233
233
  readonly Unknown: "UNKNOWN";
234
234
  };
235
- export declare type AccountTypeSubtypeEnum = typeof AccountTypeSubtypeEnum[keyof typeof AccountTypeSubtypeEnum];
235
+ export declare type AccountTypeSubtypeEnum = (typeof AccountTypeSubtypeEnum)[keyof typeof AccountTypeSubtypeEnum];
236
236
  /**
237
237
  *
238
238
  * @export
@@ -424,13 +424,13 @@ export declare const AuthChecklistFactorTypeEnum: {
424
424
  readonly EnduserConsent: "ENDUSER_CONSENT";
425
425
  readonly AccountholderAuthentication: "ACCOUNTHOLDER_AUTHENTICATION";
426
426
  };
427
- export declare type AuthChecklistFactorTypeEnum = typeof AuthChecklistFactorTypeEnum[keyof typeof AuthChecklistFactorTypeEnum];
427
+ export declare type AuthChecklistFactorTypeEnum = (typeof AuthChecklistFactorTypeEnum)[keyof typeof AuthChecklistFactorTypeEnum];
428
428
  export declare const AuthChecklistFactorRequiredEnum: {
429
429
  readonly Yes: "YES";
430
430
  readonly No: "NO";
431
431
  readonly Optional: "OPTIONAL";
432
432
  };
433
- export declare type AuthChecklistFactorRequiredEnum = typeof AuthChecklistFactorRequiredEnum[keyof typeof AuthChecklistFactorRequiredEnum];
433
+ export declare type AuthChecklistFactorRequiredEnum = (typeof AuthChecklistFactorRequiredEnum)[keyof typeof AuthChecklistFactorRequiredEnum];
434
434
  /**
435
435
  *
436
436
  * @export
@@ -460,12 +460,12 @@ export declare const AuthChecklistOptionsNameEnum: {
460
460
  readonly CredentialsLogin: "INSTITUTION_CREDENTIALS_LOGIN";
461
461
  readonly OauthLogin: "INSTITUTION_OAUTH_LOGIN";
462
462
  };
463
- export declare type AuthChecklistOptionsNameEnum = typeof AuthChecklistOptionsNameEnum[keyof typeof AuthChecklistOptionsNameEnum];
463
+ export declare type AuthChecklistOptionsNameEnum = (typeof AuthChecklistOptionsNameEnum)[keyof typeof AuthChecklistOptionsNameEnum];
464
464
  export declare const AuthChecklistOptionsSubmittedByEnum: {
465
465
  readonly CustomerApp: "CUSTOMER_APP";
466
466
  readonly FinverseLink: "FINVERSE_LINK";
467
467
  };
468
- export declare type AuthChecklistOptionsSubmittedByEnum = typeof AuthChecklistOptionsSubmittedByEnum[keyof typeof AuthChecklistOptionsSubmittedByEnum];
468
+ export declare type AuthChecklistOptionsSubmittedByEnum = (typeof AuthChecklistOptionsSubmittedByEnum)[keyof typeof AuthChecklistOptionsSubmittedByEnum];
469
469
  /**
470
470
  *
471
471
  * @export
@@ -570,7 +570,7 @@ export declare const BadRequestModelV2ErrorTypeEnum: {
570
570
  readonly LinkError: "LINK_ERROR";
571
571
  readonly ApiError: "API_ERROR";
572
572
  };
573
- export declare type BadRequestModelV2ErrorTypeEnum = typeof BadRequestModelV2ErrorTypeEnum[keyof typeof BadRequestModelV2ErrorTypeEnum];
573
+ export declare type BadRequestModelV2ErrorTypeEnum = (typeof BadRequestModelV2ErrorTypeEnum)[keyof typeof BadRequestModelV2ErrorTypeEnum];
574
574
  /**
575
575
  *
576
576
  * @export
@@ -751,7 +751,7 @@ export declare const CreateMandateResponseStatusEnum: {
751
751
  readonly Failed: "FAILED";
752
752
  readonly Revoked: "REVOKED";
753
753
  };
754
- export declare type CreateMandateResponseStatusEnum = typeof CreateMandateResponseStatusEnum[keyof typeof CreateMandateResponseStatusEnum];
754
+ export declare type CreateMandateResponseStatusEnum = (typeof CreateMandateResponseStatusEnum)[keyof typeof CreateMandateResponseStatusEnum];
755
755
  /**
756
756
  *
757
757
  * @export
@@ -799,7 +799,7 @@ export declare const CreateMandateSenderSenderTypeEnum: {
799
799
  readonly Individual: "INDIVIDUAL";
800
800
  readonly Business: "BUSINESS";
801
801
  };
802
- export declare type CreateMandateSenderSenderTypeEnum = typeof CreateMandateSenderSenderTypeEnum[keyof typeof CreateMandateSenderSenderTypeEnum];
802
+ export declare type CreateMandateSenderSenderTypeEnum = (typeof CreateMandateSenderSenderTypeEnum)[keyof typeof CreateMandateSenderSenderTypeEnum];
803
803
  /**
804
804
  *
805
805
  * @export
@@ -869,7 +869,7 @@ export declare const CreatePaymentRequestTypeEnum: {
869
869
  readonly Mandate: "MANDATE";
870
870
  readonly Single: "SINGLE";
871
871
  };
872
- export declare type CreatePaymentRequestTypeEnum = typeof CreatePaymentRequestTypeEnum[keyof typeof CreatePaymentRequestTypeEnum];
872
+ export declare type CreatePaymentRequestTypeEnum = (typeof CreatePaymentRequestTypeEnum)[keyof typeof CreatePaymentRequestTypeEnum];
873
873
  /**
874
874
  *
875
875
  * @export
@@ -949,7 +949,7 @@ export interface CreateRecipientAccount {
949
949
  export declare const CreateRecipientAccountAccountTypeEnum: {
950
950
  readonly ExternalAccount: "EXTERNAL_ACCOUNT";
951
951
  };
952
- export declare type CreateRecipientAccountAccountTypeEnum = typeof CreateRecipientAccountAccountTypeEnum[keyof typeof CreateRecipientAccountAccountTypeEnum];
952
+ export declare type CreateRecipientAccountAccountTypeEnum = (typeof CreateRecipientAccountAccountTypeEnum)[keyof typeof CreateRecipientAccountAccountTypeEnum];
953
953
  /**
954
954
  *
955
955
  * @export
@@ -1031,7 +1031,7 @@ export interface CreateSenderAccountRequest {
1031
1031
  export declare const CreateSenderAccountRequestAccountTypeEnum: {
1032
1032
  readonly ExternalAccount: "EXTERNAL_ACCOUNT";
1033
1033
  };
1034
- export declare type CreateSenderAccountRequestAccountTypeEnum = typeof CreateSenderAccountRequestAccountTypeEnum[keyof typeof CreateSenderAccountRequestAccountTypeEnum];
1034
+ export declare type CreateSenderAccountRequestAccountTypeEnum = (typeof CreateSenderAccountRequestAccountTypeEnum)[keyof typeof CreateSenderAccountRequestAccountTypeEnum];
1035
1035
  /**
1036
1036
  *
1037
1037
  * @export
@@ -1081,7 +1081,7 @@ export declare const CreateSenderRequestSenderTypeEnum: {
1081
1081
  readonly Individual: "INDIVIDUAL";
1082
1082
  readonly Business: "BUSINESS";
1083
1083
  };
1084
- export declare type CreateSenderRequestSenderTypeEnum = typeof CreateSenderRequestSenderTypeEnum[keyof typeof CreateSenderRequestSenderTypeEnum];
1084
+ export declare type CreateSenderRequestSenderTypeEnum = (typeof CreateSenderRequestSenderTypeEnum)[keyof typeof CreateSenderRequestSenderTypeEnum];
1085
1085
  /**
1086
1086
  *
1087
1087
  * @export
@@ -1189,7 +1189,7 @@ export interface CustomerPaymentInstruction {
1189
1189
  export declare const CustomerPaymentInstructionTypeEnum: {
1190
1190
  readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
1191
1191
  };
1192
- export declare type CustomerPaymentInstructionTypeEnum = typeof CustomerPaymentInstructionTypeEnum[keyof typeof CustomerPaymentInstructionTypeEnum];
1192
+ export declare type CustomerPaymentInstructionTypeEnum = (typeof CustomerPaymentInstructionTypeEnum)[keyof typeof CustomerPaymentInstructionTypeEnum];
1193
1193
  /**
1194
1194
  *
1195
1195
  * @export
@@ -1362,7 +1362,7 @@ export declare const FvErrorModelTypeEnum: {
1362
1362
  readonly LinkError: "LINK_ERROR";
1363
1363
  readonly ApiError: "API_ERROR";
1364
1364
  };
1365
- export declare type FvErrorModelTypeEnum = typeof FvErrorModelTypeEnum[keyof typeof FvErrorModelTypeEnum];
1365
+ export declare type FvErrorModelTypeEnum = (typeof FvErrorModelTypeEnum)[keyof typeof FvErrorModelTypeEnum];
1366
1366
  /**
1367
1367
  *
1368
1368
  * @export
@@ -1404,7 +1404,7 @@ export declare const FvErrorModelV2TypeEnum: {
1404
1404
  readonly LinkError: "LINK_ERROR";
1405
1405
  readonly ApiError: "API_ERROR";
1406
1406
  };
1407
- export declare type FvErrorModelV2TypeEnum = typeof FvErrorModelV2TypeEnum[keyof typeof FvErrorModelV2TypeEnum];
1407
+ export declare type FvErrorModelV2TypeEnum = (typeof FvErrorModelV2TypeEnum)[keyof typeof FvErrorModelV2TypeEnum];
1408
1408
  /**
1409
1409
  *
1410
1410
  * @export
@@ -1508,7 +1508,7 @@ export declare const GetBalanceHistoryResponseSourceEnum: {
1508
1508
  readonly Institution: "INSTITUTION";
1509
1509
  readonly Computed: "COMPUTED";
1510
1510
  };
1511
- export declare type GetBalanceHistoryResponseSourceEnum = typeof GetBalanceHistoryResponseSourceEnum[keyof typeof GetBalanceHistoryResponseSourceEnum];
1511
+ export declare type GetBalanceHistoryResponseSourceEnum = (typeof GetBalanceHistoryResponseSourceEnum)[keyof typeof GetBalanceHistoryResponseSourceEnum];
1512
1512
  /**
1513
1513
  *
1514
1514
  * @export
@@ -1638,7 +1638,7 @@ export interface GetMandateAuthLinkResponse {
1638
1638
  export declare const GetMandateAuthLinkResponseTokenTypeEnum: {
1639
1639
  readonly Bearer: "Bearer";
1640
1640
  };
1641
- export declare type GetMandateAuthLinkResponseTokenTypeEnum = typeof GetMandateAuthLinkResponseTokenTypeEnum[keyof typeof GetMandateAuthLinkResponseTokenTypeEnum];
1641
+ export declare type GetMandateAuthLinkResponseTokenTypeEnum = (typeof GetMandateAuthLinkResponseTokenTypeEnum)[keyof typeof GetMandateAuthLinkResponseTokenTypeEnum];
1642
1642
  /**
1643
1643
  *
1644
1644
  * @export
@@ -1706,12 +1706,12 @@ export declare const GetMandateAuthResponseMandateStatusEnum: {
1706
1706
  readonly Submitted: "SUBMITTED";
1707
1707
  readonly Error: "ERROR";
1708
1708
  };
1709
- export declare type GetMandateAuthResponseMandateStatusEnum = typeof GetMandateAuthResponseMandateStatusEnum[keyof typeof GetMandateAuthResponseMandateStatusEnum];
1709
+ export declare type GetMandateAuthResponseMandateStatusEnum = (typeof GetMandateAuthResponseMandateStatusEnum)[keyof typeof GetMandateAuthResponseMandateStatusEnum];
1710
1710
  export declare const GetMandateAuthResponseSenderTypeEnum: {
1711
1711
  readonly Individual: "INDIVIDUAL";
1712
1712
  readonly Business: "BUSINESS";
1713
1713
  };
1714
- export declare type GetMandateAuthResponseSenderTypeEnum = typeof GetMandateAuthResponseSenderTypeEnum[keyof typeof GetMandateAuthResponseSenderTypeEnum];
1714
+ export declare type GetMandateAuthResponseSenderTypeEnum = (typeof GetMandateAuthResponseSenderTypeEnum)[keyof typeof GetMandateAuthResponseSenderTypeEnum];
1715
1715
  /**
1716
1716
  *
1717
1717
  * @export
@@ -1784,7 +1784,7 @@ export declare const GetMandateResponseStatusEnum: {
1784
1784
  readonly Failed: "FAILED";
1785
1785
  readonly Revoked: "REVOKED";
1786
1786
  };
1787
- export declare type GetMandateResponseStatusEnum = typeof GetMandateResponseStatusEnum[keyof typeof GetMandateResponseStatusEnum];
1787
+ export declare type GetMandateResponseStatusEnum = (typeof GetMandateResponseStatusEnum)[keyof typeof GetMandateResponseStatusEnum];
1788
1788
  /**
1789
1789
  *
1790
1790
  * @export
@@ -1832,7 +1832,7 @@ export declare const GetMandateSenderSenderTypeEnum: {
1832
1832
  readonly Individual: "INDIVIDUAL";
1833
1833
  readonly Business: "BUSINESS";
1834
1834
  };
1835
- export declare type GetMandateSenderSenderTypeEnum = typeof GetMandateSenderSenderTypeEnum[keyof typeof GetMandateSenderSenderTypeEnum];
1835
+ export declare type GetMandateSenderSenderTypeEnum = (typeof GetMandateSenderSenderTypeEnum)[keyof typeof GetMandateSenderSenderTypeEnum];
1836
1836
  /**
1837
1837
  *
1838
1838
  * @export
@@ -2439,13 +2439,13 @@ export declare const InstitutionTagsEnum: {
2439
2439
  readonly Real: "real";
2440
2440
  readonly Test: "test";
2441
2441
  };
2442
- export declare type InstitutionTagsEnum = typeof InstitutionTagsEnum[keyof typeof InstitutionTagsEnum];
2442
+ export declare type InstitutionTagsEnum = (typeof InstitutionTagsEnum)[keyof typeof InstitutionTagsEnum];
2443
2443
  export declare const InstitutionInstitutionTypeEnum: {
2444
2444
  readonly Bank: "BANK";
2445
2445
  readonly Wallet: "WALLET";
2446
2446
  readonly Test: "TEST";
2447
2447
  };
2448
- export declare type InstitutionInstitutionTypeEnum = typeof InstitutionInstitutionTypeEnum[keyof typeof InstitutionInstitutionTypeEnum];
2448
+ export declare type InstitutionInstitutionTypeEnum = (typeof InstitutionInstitutionTypeEnum)[keyof typeof InstitutionInstitutionTypeEnum];
2449
2449
  export declare const InstitutionProductsSupportedEnum: {
2450
2450
  readonly Accounts: "ACCOUNTS";
2451
2451
  readonly Transactions: "TRANSACTIONS";
@@ -2453,19 +2453,19 @@ export declare const InstitutionProductsSupportedEnum: {
2453
2453
  readonly AccountNumbers: "ACCOUNT_NUMBERS";
2454
2454
  readonly Identity: "IDENTITY";
2455
2455
  };
2456
- export declare type InstitutionProductsSupportedEnum = typeof InstitutionProductsSupportedEnum[keyof typeof InstitutionProductsSupportedEnum];
2456
+ export declare type InstitutionProductsSupportedEnum = (typeof InstitutionProductsSupportedEnum)[keyof typeof InstitutionProductsSupportedEnum];
2457
2457
  export declare const InstitutionUserTypeEnum: {
2458
2458
  readonly Personal: "PERSONAL";
2459
2459
  readonly Individual: "INDIVIDUAL";
2460
2460
  readonly Business: "BUSINESS";
2461
2461
  };
2462
- export declare type InstitutionUserTypeEnum = typeof InstitutionUserTypeEnum[keyof typeof InstitutionUserTypeEnum];
2462
+ export declare type InstitutionUserTypeEnum = (typeof InstitutionUserTypeEnum)[keyof typeof InstitutionUserTypeEnum];
2463
2463
  export declare const InstitutionStatusEnum: {
2464
2464
  readonly Supported: "SUPPORTED";
2465
2465
  readonly Alpha: "ALPHA";
2466
2466
  readonly Beta: "BETA";
2467
2467
  };
2468
- export declare type InstitutionStatusEnum = typeof InstitutionStatusEnum[keyof typeof InstitutionStatusEnum];
2468
+ export declare type InstitutionStatusEnum = (typeof InstitutionStatusEnum)[keyof typeof InstitutionStatusEnum];
2469
2469
  /**
2470
2470
  *
2471
2471
  * @export
@@ -2834,13 +2834,13 @@ export declare const LinkTokenRequestUiModeEnum: {
2834
2834
  readonly AutoRedirect: "auto_redirect";
2835
2835
  readonly Standalone: "standalone";
2836
2836
  };
2837
- export declare type LinkTokenRequestUiModeEnum = typeof LinkTokenRequestUiModeEnum[keyof typeof LinkTokenRequestUiModeEnum];
2837
+ export declare type LinkTokenRequestUiModeEnum = (typeof LinkTokenRequestUiModeEnum)[keyof typeof LinkTokenRequestUiModeEnum];
2838
2838
  export declare const LinkTokenRequestAutomaticDataRefreshEnum: {
2839
2839
  readonly On: "ON";
2840
2840
  readonly Off: "OFF";
2841
2841
  readonly ForcedOn: "FORCED_ON";
2842
2842
  };
2843
- export declare type LinkTokenRequestAutomaticDataRefreshEnum = typeof LinkTokenRequestAutomaticDataRefreshEnum[keyof typeof LinkTokenRequestAutomaticDataRefreshEnum];
2843
+ export declare type LinkTokenRequestAutomaticDataRefreshEnum = (typeof LinkTokenRequestAutomaticDataRefreshEnum)[keyof typeof LinkTokenRequestAutomaticDataRefreshEnum];
2844
2844
  /**
2845
2845
  *
2846
2846
  * @export
@@ -3340,7 +3340,7 @@ export declare const LoginMethodStatusEnum: {
3340
3340
  readonly Alpha: "ALPHA";
3341
3341
  readonly Beta: "BETA";
3342
3342
  };
3343
- export declare type LoginMethodStatusEnum = typeof LoginMethodStatusEnum[keyof typeof LoginMethodStatusEnum];
3343
+ export declare type LoginMethodStatusEnum = (typeof LoginMethodStatusEnum)[keyof typeof LoginMethodStatusEnum];
3344
3344
  /**
3345
3345
  *
3346
3346
  * @export
@@ -3427,7 +3427,7 @@ export declare const MandateAuthLinkCustomizationsUiModeEnum: {
3427
3427
  readonly AutoRedirect: "auto_redirect";
3428
3428
  readonly Standalone: "standalone";
3429
3429
  };
3430
- export declare type MandateAuthLinkCustomizationsUiModeEnum = typeof MandateAuthLinkCustomizationsUiModeEnum[keyof typeof MandateAuthLinkCustomizationsUiModeEnum];
3430
+ export declare type MandateAuthLinkCustomizationsUiModeEnum = (typeof MandateAuthLinkCustomizationsUiModeEnum)[keyof typeof MandateAuthLinkCustomizationsUiModeEnum];
3431
3431
  /**
3432
3432
  *
3433
3433
  * @export
@@ -3557,7 +3557,7 @@ export interface MandateSenderAccount {
3557
3557
  export declare const MandateSenderAccountAccountTypeEnum: {
3558
3558
  readonly ExternalAccount: "EXTERNAL_ACCOUNT";
3559
3559
  };
3560
- export declare type MandateSenderAccountAccountTypeEnum = typeof MandateSenderAccountAccountTypeEnum[keyof typeof MandateSenderAccountAccountTypeEnum];
3560
+ export declare type MandateSenderAccountAccountTypeEnum = (typeof MandateSenderAccountAccountTypeEnum)[keyof typeof MandateSenderAccountAccountTypeEnum];
3561
3561
  /**
3562
3562
  *
3563
3563
  * @export
@@ -3737,7 +3737,7 @@ export declare const PaymentInfoPaymentsSupportedEnum: {
3737
3737
  readonly Mandate: "MANDATE";
3738
3738
  readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
3739
3739
  };
3740
- export declare type PaymentInfoPaymentsSupportedEnum = typeof PaymentInfoPaymentsSupportedEnum[keyof typeof PaymentInfoPaymentsSupportedEnum];
3740
+ export declare type PaymentInfoPaymentsSupportedEnum = (typeof PaymentInfoPaymentsSupportedEnum)[keyof typeof PaymentInfoPaymentsSupportedEnum];
3741
3741
  /**
3742
3742
  *
3743
3743
  * @export
@@ -3862,7 +3862,7 @@ export interface PaymentInstruction {
3862
3862
  export declare const PaymentInstructionTypeEnum: {
3863
3863
  readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
3864
3864
  };
3865
- export declare type PaymentInstructionTypeEnum = typeof PaymentInstructionTypeEnum[keyof typeof PaymentInstructionTypeEnum];
3865
+ export declare type PaymentInstructionTypeEnum = (typeof PaymentInstructionTypeEnum)[keyof typeof PaymentInstructionTypeEnum];
3866
3866
  /**
3867
3867
  *
3868
3868
  * @export
@@ -3948,7 +3948,7 @@ export declare const PaymentResponseTypeEnum: {
3948
3948
  readonly Mandate: "MANDATE";
3949
3949
  readonly Single: "SINGLE";
3950
3950
  };
3951
- export declare type PaymentResponseTypeEnum = typeof PaymentResponseTypeEnum[keyof typeof PaymentResponseTypeEnum];
3951
+ export declare type PaymentResponseTypeEnum = (typeof PaymentResponseTypeEnum)[keyof typeof PaymentResponseTypeEnum];
3952
3952
  export declare const PaymentResponseStatusEnum: {
3953
3953
  readonly AuthorizationRequired: "AUTHORIZATION_REQUIRED";
3954
3954
  readonly Authorizing: "AUTHORIZING";
@@ -3958,7 +3958,7 @@ export declare const PaymentResponseStatusEnum: {
3958
3958
  readonly Failed: "FAILED";
3959
3959
  readonly Revoked: "REVOKED";
3960
3960
  };
3961
- export declare type PaymentResponseStatusEnum = typeof PaymentResponseStatusEnum[keyof typeof PaymentResponseStatusEnum];
3961
+ export declare type PaymentResponseStatusEnum = (typeof PaymentResponseStatusEnum)[keyof typeof PaymentResponseStatusEnum];
3962
3962
  /**
3963
3963
  *
3964
3964
  * @export
@@ -3985,7 +3985,7 @@ export declare const PaymentScheduleFrequencyEnum: {
3985
3985
  readonly Quarterly: "QUARTERLY";
3986
3986
  readonly Yearly: "YEARLY";
3987
3987
  };
3988
- export declare type PaymentScheduleFrequencyEnum = typeof PaymentScheduleFrequencyEnum[keyof typeof PaymentScheduleFrequencyEnum];
3988
+ export declare type PaymentScheduleFrequencyEnum = (typeof PaymentScheduleFrequencyEnum)[keyof typeof PaymentScheduleFrequencyEnum];
3989
3989
  /**
3990
3990
  *
3991
3991
  * @export
@@ -4118,7 +4118,7 @@ export declare const PayoutInstructionResponseStatusEnum: {
4118
4118
  readonly Cancelled: "CANCELLED";
4119
4119
  readonly Failed: "FAILED";
4120
4120
  };
4121
- export declare type PayoutInstructionResponseStatusEnum = typeof PayoutInstructionResponseStatusEnum[keyof typeof PayoutInstructionResponseStatusEnum];
4121
+ export declare type PayoutInstructionResponseStatusEnum = (typeof PayoutInstructionResponseStatusEnum)[keyof typeof PayoutInstructionResponseStatusEnum];
4122
4122
  /**
4123
4123
  *
4124
4124
  * @export
@@ -4272,7 +4272,7 @@ export declare const RecipientAccountNumberTypeEnum: {
4272
4272
  readonly Local: "LOCAL";
4273
4273
  readonly Iban: "IBAN";
4274
4274
  };
4275
- export declare type RecipientAccountNumberTypeEnum = typeof RecipientAccountNumberTypeEnum[keyof typeof RecipientAccountNumberTypeEnum];
4275
+ export declare type RecipientAccountNumberTypeEnum = (typeof RecipientAccountNumberTypeEnum)[keyof typeof RecipientAccountNumberTypeEnum];
4276
4276
  /**
4277
4277
  *
4278
4278
  * @export
@@ -4315,12 +4315,24 @@ export interface RecipientAccountResponse {
4315
4315
  * @memberof RecipientAccountResponse
4316
4316
  */
4317
4317
  institution_id?: string;
4318
+ /**
4319
+ * 3-digit code associated with bank
4320
+ * @type {string}
4321
+ * @memberof RecipientAccountResponse
4322
+ */
4323
+ bank_code?: string;
4324
+ /**
4325
+ * 3-digit code used to identify specific bank branch
4326
+ * @type {string}
4327
+ * @memberof RecipientAccountResponse
4328
+ */
4329
+ branch_code?: string;
4318
4330
  }
4319
4331
  export declare const RecipientAccountResponseAccountTypeEnum: {
4320
4332
  readonly ExternalAccount: "EXTERNAL_ACCOUNT";
4321
4333
  readonly SettlementAccount: "SETTLEMENT_ACCOUNT";
4322
4334
  };
4323
- export declare type RecipientAccountResponseAccountTypeEnum = typeof RecipientAccountResponseAccountTypeEnum[keyof typeof RecipientAccountResponseAccountTypeEnum];
4335
+ export declare type RecipientAccountResponseAccountTypeEnum = (typeof RecipientAccountResponseAccountTypeEnum)[keyof typeof RecipientAccountResponseAccountTypeEnum];
4324
4336
  /**
4325
4337
  *
4326
4338
  * @export
@@ -4494,7 +4506,7 @@ export interface SenderAccountResponse {
4494
4506
  export declare const SenderAccountResponseAccountTypeEnum: {
4495
4507
  readonly ExternalAccount: "EXTERNAL_ACCOUNT";
4496
4508
  };
4497
- export declare type SenderAccountResponseAccountTypeEnum = typeof SenderAccountResponseAccountTypeEnum[keyof typeof SenderAccountResponseAccountTypeEnum];
4509
+ export declare type SenderAccountResponseAccountTypeEnum = (typeof SenderAccountResponseAccountTypeEnum)[keyof typeof SenderAccountResponseAccountTypeEnum];
4498
4510
  /**
4499
4511
  *
4500
4512
  * @export
@@ -4533,7 +4545,7 @@ export declare const SenderDetailDetailsTypeEnum: {
4533
4545
  readonly HkBusinessRegistration: "HK_BUSINESS_REGISTRATION";
4534
4546
  readonly HkCertificateOfIncorporation: "HK_CERTIFICATE_OF_INCORPORATION";
4535
4547
  };
4536
- export declare type SenderDetailDetailsTypeEnum = typeof SenderDetailDetailsTypeEnum[keyof typeof SenderDetailDetailsTypeEnum];
4548
+ export declare type SenderDetailDetailsTypeEnum = (typeof SenderDetailDetailsTypeEnum)[keyof typeof SenderDetailDetailsTypeEnum];
4537
4549
  /**
4538
4550
  *
4539
4551
  * @export
@@ -4601,7 +4613,7 @@ export declare const SenderResponseSenderTypeEnum: {
4601
4613
  readonly Individual: "INDIVIDUAL";
4602
4614
  readonly Business: "BUSINESS";
4603
4615
  };
4604
- export declare type SenderResponseSenderTypeEnum = typeof SenderResponseSenderTypeEnum[keyof typeof SenderResponseSenderTypeEnum];
4616
+ export declare type SenderResponseSenderTypeEnum = (typeof SenderResponseSenderTypeEnum)[keyof typeof SenderResponseSenderTypeEnum];
4605
4617
  /**
4606
4618
  *
4607
4619
  * @export
@@ -4789,7 +4801,7 @@ export declare const SubmitAuthChecklistResponseMandateStatusEnum: {
4789
4801
  readonly Submitted: "SUBMITTED";
4790
4802
  readonly Error: "ERROR";
4791
4803
  };
4792
- export declare type SubmitAuthChecklistResponseMandateStatusEnum = typeof SubmitAuthChecklistResponseMandateStatusEnum[keyof typeof SubmitAuthChecklistResponseMandateStatusEnum];
4804
+ export declare type SubmitAuthChecklistResponseMandateStatusEnum = (typeof SubmitAuthChecklistResponseMandateStatusEnum)[keyof typeof SubmitAuthChecklistResponseMandateStatusEnum];
4793
4805
  /**
4794
4806
  *
4795
4807
  * @export
@@ -5024,7 +5036,7 @@ export declare const TransactionLimitsPeriodEnum: {
5024
5036
  readonly Quarterly: "QUARTERLY";
5025
5037
  readonly Yearly: "YEARLY";
5026
5038
  };
5027
- export declare type TransactionLimitsPeriodEnum = typeof TransactionLimitsPeriodEnum[keyof typeof TransactionLimitsPeriodEnum];
5039
+ export declare type TransactionLimitsPeriodEnum = (typeof TransactionLimitsPeriodEnum)[keyof typeof TransactionLimitsPeriodEnum];
5028
5040
  /**
5029
5041
  *
5030
5042
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.110",
3
+ "version": "0.0.111",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [