@mbanq/core-sdk-js 0.46.0 → 0.46.2

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.
@@ -1,4 +1,4 @@
1
- import z$1, { z } from 'zod';
1
+ import { z } from 'zod';
2
2
 
3
3
  declare const PaymentRailSchema$1: z.ZodEnum<["ACH", "SAMEDAYACH"]>;
4
4
  declare const PaymentTypeSchema$1: z.ZodEnum<["CREDIT", "DEBIT"]>;
@@ -7332,6 +7332,48 @@ type GetAccountsOfClientResponse = z.infer<typeof GetAccountsOfClientResponseSch
7332
7332
  type GetAccountsOfClientRequest = z.infer<typeof GetAccountsRequestSchema>;
7333
7333
  type SavingAccount = z.infer<typeof SavingAccountSchema>;
7334
7334
  type UpdateAccountRequest = z.infer<typeof UpdateAccountRequestSchema>;
7335
+ declare const CreateAndActivateAccountRequestShape: {
7336
+ clientId: z.ZodNumber;
7337
+ productId: z.ZodNumber;
7338
+ locale: z.ZodString;
7339
+ dateFormat: z.ZodString;
7340
+ submittedOnDate: z.ZodString;
7341
+ monthDayFormat: z.ZodString;
7342
+ nominalAnnualInterestRate: z.ZodOptional<z.ZodNumber>;
7343
+ minRequiredOpeningBalance: z.ZodOptional<z.ZodString>;
7344
+ lockinPeriodFrequency: z.ZodOptional<z.ZodNumber>;
7345
+ withdrawalFeeForTransfers: z.ZodOptional<z.ZodBoolean>;
7346
+ allowOverdraft: z.ZodOptional<z.ZodBoolean>;
7347
+ overdraftLimit: z.ZodOptional<z.ZodNumber>;
7348
+ nominalAnnualInterestRateOverdraft: z.ZodOptional<z.ZodNumber>;
7349
+ minOverdraftForInterestCalculation: z.ZodOptional<z.ZodNumber>;
7350
+ enforceMinRequiredBalance: z.ZodOptional<z.ZodBoolean>;
7351
+ minRequiredBalance: z.ZodOptional<z.ZodNumber>;
7352
+ withHoldTax: z.ZodOptional<z.ZodBoolean>;
7353
+ interestCompoundingPeriodType: z.ZodOptional<z.ZodNumber>;
7354
+ interestPostingPeriodType: z.ZodOptional<z.ZodNumber>;
7355
+ interestCalculationType: z.ZodOptional<z.ZodNumber>;
7356
+ interestCalculationDaysInYearType: z.ZodOptional<z.ZodNumber>;
7357
+ externalId: z.ZodOptional<z.ZodString>;
7358
+ lockinPeriodFrequencyType: z.ZodOptional<z.ZodNumber>;
7359
+ nickname: z.ZodOptional<z.ZodString>;
7360
+ charges: z.ZodOptional<z.ZodArray<z.ZodObject<{
7361
+ chargeId: z.ZodNumber;
7362
+ amount: z.ZodOptional<z.ZodNumber>;
7363
+ dueDate: z.ZodOptional<z.ZodString>;
7364
+ feeInterval: z.ZodOptional<z.ZodNumber>;
7365
+ }, "strip", z.ZodTypeAny, {
7366
+ chargeId: number;
7367
+ amount?: number | undefined;
7368
+ dueDate?: string | undefined;
7369
+ feeInterval?: number | undefined;
7370
+ }, {
7371
+ chargeId: number;
7372
+ amount?: number | undefined;
7373
+ dueDate?: string | undefined;
7374
+ feeInterval?: number | undefined;
7375
+ }>, "many">>;
7376
+ };
7335
7377
  declare const CreateAndActivateAccountRequestSchema: z.ZodObject<{
7336
7378
  clientId: z.ZodNumber;
7337
7379
  productId: z.ZodNumber;
@@ -7436,6 +7478,28 @@ declare const CreateAndActivateAccountRequestSchema: z.ZodObject<{
7436
7478
  nominalAnnualInterestRateOverdraft?: number | undefined;
7437
7479
  nickname?: string | undefined;
7438
7480
  }>;
7481
+ declare const CreateAndActivateAccountResponseShape: {
7482
+ officeId: z.ZodNumber;
7483
+ clientId: z.ZodNumber;
7484
+ savingsId: z.ZodNumber;
7485
+ resourceId: z.ZodNumber;
7486
+ changes: z.ZodObject<{
7487
+ status: z.ZodString;
7488
+ locale: z.ZodString;
7489
+ dateFormat: z.ZodString;
7490
+ activatedOnDate: z.ZodString;
7491
+ }, "strip", z.ZodTypeAny, {
7492
+ status: string;
7493
+ dateFormat: string;
7494
+ locale: string;
7495
+ activatedOnDate: string;
7496
+ }, {
7497
+ status: string;
7498
+ dateFormat: string;
7499
+ locale: string;
7500
+ activatedOnDate: string;
7501
+ }>;
7502
+ };
7439
7503
  declare const CreateAndActivateAccountResponseSchema: z.ZodObject<{
7440
7504
  officeId: z.ZodNumber;
7441
7505
  clientId: z.ZodNumber;
@@ -7482,6 +7546,16 @@ declare const CreateAndActivateAccountResponseSchema: z.ZodObject<{
7482
7546
  }>;
7483
7547
  type CreateAndActivateAccountRequest = z.infer<typeof CreateAndActivateAccountRequestSchema>;
7484
7548
  type CreateAndActivateAccountResponse = z.infer<typeof CreateAndActivateAccountResponseSchema>;
7549
+ declare const CloseAccountRequestShape: {
7550
+ closedOnDate: z.ZodOptional<z.ZodString>;
7551
+ dateFormat: z.ZodOptional<z.ZodString>;
7552
+ locale: z.ZodOptional<z.ZodString>;
7553
+ withdrawBalance: z.ZodOptional<z.ZodBoolean>;
7554
+ postInterestValidationOnClosure: z.ZodOptional<z.ZodBoolean>;
7555
+ ignoreNegativeBalance: z.ZodOptional<z.ZodBoolean>;
7556
+ paymentTypeId: z.ZodOptional<z.ZodNumber>;
7557
+ closeReasonCodeId: z.ZodNumber;
7558
+ };
7485
7559
  declare const CloseAccountRequestSchema: z.ZodObject<{
7486
7560
  closedOnDate: z.ZodOptional<z.ZodString>;
7487
7561
  dateFormat: z.ZodOptional<z.ZodString>;
@@ -7510,6 +7584,51 @@ declare const CloseAccountRequestSchema: z.ZodObject<{
7510
7584
  ignoreNegativeBalance?: boolean | undefined;
7511
7585
  paymentTypeId?: number | undefined;
7512
7586
  }>;
7587
+ declare const CloseAccountResponseShape: {
7588
+ officeId: z.ZodNumber;
7589
+ clientId: z.ZodNumber;
7590
+ savingsId: z.ZodNumber;
7591
+ resourceId: z.ZodNumber;
7592
+ changes: z.ZodObject<{
7593
+ status: z.ZodString;
7594
+ locale: z.ZodString;
7595
+ dateFormat: z.ZodString;
7596
+ closedOnDate: z.ZodString;
7597
+ closeReason: z.ZodObject<{
7598
+ id: z.ZodNumber;
7599
+ name: z.ZodString;
7600
+ codeName: z.ZodString;
7601
+ }, "strip", z.ZodTypeAny, {
7602
+ name: string;
7603
+ id: number;
7604
+ codeName: string;
7605
+ }, {
7606
+ name: string;
7607
+ id: number;
7608
+ codeName: string;
7609
+ }>;
7610
+ }, "strip", z.ZodTypeAny, {
7611
+ status: string;
7612
+ dateFormat: string;
7613
+ locale: string;
7614
+ closedOnDate: string;
7615
+ closeReason: {
7616
+ name: string;
7617
+ id: number;
7618
+ codeName: string;
7619
+ };
7620
+ }, {
7621
+ status: string;
7622
+ dateFormat: string;
7623
+ locale: string;
7624
+ closedOnDate: string;
7625
+ closeReason: {
7626
+ name: string;
7627
+ id: number;
7628
+ codeName: string;
7629
+ };
7630
+ }>;
7631
+ };
7513
7632
  declare const CloseAccountResponseSchema: z.ZodObject<{
7514
7633
  officeId: z.ZodNumber;
7515
7634
  clientId: z.ZodNumber;
@@ -7589,6 +7708,9 @@ declare const CloseAccountResponseSchema: z.ZodObject<{
7589
7708
  }>;
7590
7709
  type CloseAccountRequest = z.infer<typeof CloseAccountRequestSchema>;
7591
7710
  type CloseAccountResponse = z.infer<typeof CloseAccountResponseSchema>;
7711
+ declare const BlockAccountRequestShape: {
7712
+ blockReasonCodeId: z.ZodNumber;
7713
+ };
7592
7714
  declare const BlockAccountRequestSchema: z.ZodObject<{
7593
7715
  blockReasonCodeId: z.ZodNumber;
7594
7716
  }, "strip", z.ZodTypeAny, {
@@ -7596,6 +7718,98 @@ declare const BlockAccountRequestSchema: z.ZodObject<{
7596
7718
  }, {
7597
7719
  blockReasonCodeId: number;
7598
7720
  }>;
7721
+ declare const BlockAccountResponseShape: {
7722
+ id: z.ZodNumber;
7723
+ clientId: z.ZodNumber;
7724
+ officeId: z.ZodNumber;
7725
+ savingsId: z.ZodNumber;
7726
+ resourceId: z.ZodNumber;
7727
+ changes: z.ZodObject<{
7728
+ subStatus: z.ZodObject<{
7729
+ id: z.ZodNumber;
7730
+ code: z.ZodString;
7731
+ value: z.ZodString;
7732
+ none: z.ZodBoolean;
7733
+ inactive: z.ZodBoolean;
7734
+ dormant: z.ZodBoolean;
7735
+ escheat: z.ZodBoolean;
7736
+ block: z.ZodBoolean;
7737
+ blockCredit: z.ZodBoolean;
7738
+ blockDebit: z.ZodBoolean;
7739
+ }, "strip", z.ZodTypeAny, {
7740
+ value: string;
7741
+ code: string;
7742
+ id: number;
7743
+ none: boolean;
7744
+ inactive: boolean;
7745
+ dormant: boolean;
7746
+ escheat: boolean;
7747
+ block: boolean;
7748
+ blockCredit: boolean;
7749
+ blockDebit: boolean;
7750
+ }, {
7751
+ value: string;
7752
+ code: string;
7753
+ id: number;
7754
+ none: boolean;
7755
+ inactive: boolean;
7756
+ dormant: boolean;
7757
+ escheat: boolean;
7758
+ block: boolean;
7759
+ blockCredit: boolean;
7760
+ blockDebit: boolean;
7761
+ }>;
7762
+ blockReason: z.ZodObject<{
7763
+ id: z.ZodNumber;
7764
+ name: z.ZodString;
7765
+ codeName: z.ZodString;
7766
+ }, "strip", z.ZodTypeAny, {
7767
+ name: string;
7768
+ id: number;
7769
+ codeName: string;
7770
+ }, {
7771
+ name: string;
7772
+ id: number;
7773
+ codeName: string;
7774
+ }>;
7775
+ }, "strip", z.ZodTypeAny, {
7776
+ subStatus: {
7777
+ value: string;
7778
+ code: string;
7779
+ id: number;
7780
+ none: boolean;
7781
+ inactive: boolean;
7782
+ dormant: boolean;
7783
+ escheat: boolean;
7784
+ block: boolean;
7785
+ blockCredit: boolean;
7786
+ blockDebit: boolean;
7787
+ };
7788
+ blockReason: {
7789
+ name: string;
7790
+ id: number;
7791
+ codeName: string;
7792
+ };
7793
+ }, {
7794
+ subStatus: {
7795
+ value: string;
7796
+ code: string;
7797
+ id: number;
7798
+ none: boolean;
7799
+ inactive: boolean;
7800
+ dormant: boolean;
7801
+ escheat: boolean;
7802
+ block: boolean;
7803
+ blockCredit: boolean;
7804
+ blockDebit: boolean;
7805
+ };
7806
+ blockReason: {
7807
+ name: string;
7808
+ id: number;
7809
+ codeName: string;
7810
+ };
7811
+ }>;
7812
+ };
7599
7813
  declare const BlockAccountResponseSchema: z.ZodObject<{
7600
7814
  id: z.ZodNumber;
7601
7815
  clientId: z.ZodNumber;
@@ -7740,6 +7954,10 @@ declare const BlockAccountResponseSchema: z.ZodObject<{
7740
7954
  }>;
7741
7955
  type BlockAccountRequest = z.infer<typeof BlockAccountRequestSchema>;
7742
7956
  type BlockAccountResponse = z.infer<typeof BlockAccountResponseSchema>;
7957
+ declare const HoldAmountRequestShape: {
7958
+ transactionAmount: z.ZodNumber;
7959
+ holdAmountReasonCodeId: z.ZodNumber;
7960
+ };
7743
7961
  declare const HoldAmountRequestSchema: z.ZodObject<{
7744
7962
  transactionAmount: z.ZodNumber;
7745
7963
  holdAmountReasonCodeId: z.ZodNumber;
@@ -7750,6 +7968,40 @@ declare const HoldAmountRequestSchema: z.ZodObject<{
7750
7968
  transactionAmount: number;
7751
7969
  holdAmountReasonCodeId: number;
7752
7970
  }>;
7971
+ declare const HoldAmountResponseShape: {
7972
+ id: z.ZodString;
7973
+ resourceId: z.ZodNumber;
7974
+ changes: z.ZodObject<{
7975
+ savingsAmountOnHold: z.ZodNumber;
7976
+ blockAmountReason: z.ZodObject<{
7977
+ id: z.ZodNumber;
7978
+ name: z.ZodString;
7979
+ codeName: z.ZodString;
7980
+ }, "strip", z.ZodTypeAny, {
7981
+ name: string;
7982
+ id: number;
7983
+ codeName: string;
7984
+ }, {
7985
+ name: string;
7986
+ id: number;
7987
+ codeName: string;
7988
+ }>;
7989
+ }, "strip", z.ZodTypeAny, {
7990
+ savingsAmountOnHold: number;
7991
+ blockAmountReason: {
7992
+ name: string;
7993
+ id: number;
7994
+ codeName: string;
7995
+ };
7996
+ }, {
7997
+ savingsAmountOnHold: number;
7998
+ blockAmountReason: {
7999
+ name: string;
8000
+ id: number;
8001
+ codeName: string;
8002
+ };
8003
+ }>;
8004
+ };
7753
8005
  declare const HoldAmountResponseSchema: z.ZodObject<{
7754
8006
  id: z.ZodString;
7755
8007
  resourceId: z.ZodNumber;
@@ -13060,982 +13312,6 @@ declare const GetChargeResponseSchema: z.ZodObject<{
13060
13312
  }>;
13061
13313
  type GetChargeResponse = z.infer<typeof GetChargeResponseSchema>;
13062
13314
 
13063
- declare const CreateCreditProductRequestSchema: z$1.ZodObject<{
13064
- currencyCode: z$1.ZodString;
13065
- digitsAfterDecimal: z$1.ZodNumber;
13066
- interestCompoundingPeriodType: z$1.ZodNumber;
13067
- interestPostingPeriodType: z$1.ZodNumber;
13068
- interestCalculationType: z$1.ZodNumber;
13069
- interestCalculationDaysInYearType: z$1.ZodNumber;
13070
- accountingRule: z$1.ZodNumber;
13071
- isSecuredCreditProduct: z$1.ZodBoolean;
13072
- name: z$1.ZodString;
13073
- shortName: z$1.ZodString;
13074
- description: z$1.ZodString;
13075
- inMultiplesOf: z$1.ZodNumber;
13076
- isLinkedToFloatingInterestRates: z$1.ZodBoolean;
13077
- nominalAnnualInterestRate: z$1.ZodNumber;
13078
- nominalAnnualPenaltyInterestRate: z$1.ZodNumber;
13079
- gracePeriod: z$1.ZodNumber;
13080
- nominalCashAdvanceInterestRate: z$1.ZodNumber;
13081
- minimumPayCalculationRate: z$1.ZodNumber;
13082
- minimumPayFixedAmount: z$1.ZodNumber;
13083
- statementDay: z$1.ZodNumber;
13084
- charges: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
13085
- id: z$1.ZodNumber;
13086
- isMandatory: z$1.ZodBoolean;
13087
- }, "strip", z$1.ZodTypeAny, {
13088
- id: number;
13089
- isMandatory: boolean;
13090
- }, {
13091
- id: number;
13092
- isMandatory: boolean;
13093
- }>, "many">>;
13094
- disputesInSuspenseAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13095
- graceForArrearsAging: z$1.ZodOptional<z$1.ZodNumber>;
13096
- fundSourceAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13097
- receivableInterestAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13098
- receivablePenaltyAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13099
- transfersInSuspenseAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13100
- creditPortfolioAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13101
- receivableFeeAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13102
- interestOnIncomeAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13103
- incomeFromPenaltyAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13104
- incomeFromFeeAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13105
- incomeFromRecoveryAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13106
- writeOffAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13107
- overpaymentLiabilityAccountId: z$1.ZodOptional<z$1.ZodNumber>;
13108
- paymentChannelToFundSourceMappings: z$1.ZodOptional<z$1.ZodString>;
13109
- penaltyToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodString>;
13110
- feeToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodString>;
13111
- locale: z$1.ZodOptional<z$1.ZodString>;
13112
- }, "strip", z$1.ZodTypeAny, {
13113
- name: string;
13114
- inMultiplesOf: number;
13115
- isLinkedToFloatingInterestRates: boolean;
13116
- nominalAnnualInterestRate: number;
13117
- interestCompoundingPeriodType: number;
13118
- interestPostingPeriodType: number;
13119
- interestCalculationType: number;
13120
- interestCalculationDaysInYearType: number;
13121
- description: string;
13122
- currencyCode: string;
13123
- shortName: string;
13124
- digitsAfterDecimal: number;
13125
- accountingRule: number;
13126
- nominalCashAdvanceInterestRate: number;
13127
- nominalAnnualPenaltyInterestRate: number;
13128
- isSecuredCreditProduct: boolean;
13129
- gracePeriod: number;
13130
- minimumPayCalculationRate: number;
13131
- minimumPayFixedAmount: number;
13132
- statementDay: number;
13133
- locale?: string | undefined;
13134
- charges?: {
13135
- id: number;
13136
- isMandatory: boolean;
13137
- }[] | undefined;
13138
- paymentChannelToFundSourceMappings?: string | undefined;
13139
- feeToIncomeAccountMappings?: string | undefined;
13140
- disputesInSuspenseAccountId?: number | undefined;
13141
- graceForArrearsAging?: number | undefined;
13142
- fundSourceAccountId?: number | undefined;
13143
- receivableInterestAccountId?: number | undefined;
13144
- receivablePenaltyAccountId?: number | undefined;
13145
- transfersInSuspenseAccountId?: number | undefined;
13146
- creditPortfolioAccountId?: number | undefined;
13147
- receivableFeeAccountId?: number | undefined;
13148
- interestOnIncomeAccountId?: number | undefined;
13149
- incomeFromPenaltyAccountId?: number | undefined;
13150
- incomeFromFeeAccountId?: number | undefined;
13151
- incomeFromRecoveryAccountId?: number | undefined;
13152
- writeOffAccountId?: number | undefined;
13153
- overpaymentLiabilityAccountId?: number | undefined;
13154
- penaltyToIncomeAccountMappings?: string | undefined;
13155
- }, {
13156
- name: string;
13157
- inMultiplesOf: number;
13158
- isLinkedToFloatingInterestRates: boolean;
13159
- nominalAnnualInterestRate: number;
13160
- interestCompoundingPeriodType: number;
13161
- interestPostingPeriodType: number;
13162
- interestCalculationType: number;
13163
- interestCalculationDaysInYearType: number;
13164
- description: string;
13165
- currencyCode: string;
13166
- shortName: string;
13167
- digitsAfterDecimal: number;
13168
- accountingRule: number;
13169
- nominalCashAdvanceInterestRate: number;
13170
- nominalAnnualPenaltyInterestRate: number;
13171
- isSecuredCreditProduct: boolean;
13172
- gracePeriod: number;
13173
- minimumPayCalculationRate: number;
13174
- minimumPayFixedAmount: number;
13175
- statementDay: number;
13176
- locale?: string | undefined;
13177
- charges?: {
13178
- id: number;
13179
- isMandatory: boolean;
13180
- }[] | undefined;
13181
- paymentChannelToFundSourceMappings?: string | undefined;
13182
- feeToIncomeAccountMappings?: string | undefined;
13183
- disputesInSuspenseAccountId?: number | undefined;
13184
- graceForArrearsAging?: number | undefined;
13185
- fundSourceAccountId?: number | undefined;
13186
- receivableInterestAccountId?: number | undefined;
13187
- receivablePenaltyAccountId?: number | undefined;
13188
- transfersInSuspenseAccountId?: number | undefined;
13189
- creditPortfolioAccountId?: number | undefined;
13190
- receivableFeeAccountId?: number | undefined;
13191
- interestOnIncomeAccountId?: number | undefined;
13192
- incomeFromPenaltyAccountId?: number | undefined;
13193
- incomeFromFeeAccountId?: number | undefined;
13194
- incomeFromRecoveryAccountId?: number | undefined;
13195
- writeOffAccountId?: number | undefined;
13196
- overpaymentLiabilityAccountId?: number | undefined;
13197
- penaltyToIncomeAccountMappings?: string | undefined;
13198
- }>;
13199
- type CreateCreditProductRequest = z$1.infer<typeof CreateCreditProductRequestSchema>;
13200
- declare const CreateCreditProductResponseSchema: z$1.ZodObject<{
13201
- resourceId: z$1.ZodNumber;
13202
- }, "strip", z$1.ZodTypeAny, {
13203
- resourceId: number;
13204
- }, {
13205
- resourceId: number;
13206
- }>;
13207
- declare const UpdateCreditProductResponseSchema: z$1.ZodObject<{
13208
- id: z$1.ZodString;
13209
- resourceId: z$1.ZodNumber;
13210
- changes: z$1.ZodOptional<z$1.ZodObject<{
13211
- name: z$1.ZodOptional<z$1.ZodString>;
13212
- shortName: z$1.ZodOptional<z$1.ZodString>;
13213
- inMultiplesOf: z$1.ZodOptional<z$1.ZodNumber>;
13214
- locale: z$1.ZodOptional<z$1.ZodString>;
13215
- nominalAnnualInterestRate: z$1.ZodOptional<z$1.ZodNumber>;
13216
- statementDay: z$1.ZodOptional<z$1.ZodNumber>;
13217
- minimumPayCalculationRate: z$1.ZodOptional<z$1.ZodNumber>;
13218
- minimumPayFixedAmount: z$1.ZodOptional<z$1.ZodNumber>;
13219
- charges: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
13220
- id: z$1.ZodNumber;
13221
- isMandatory: z$1.ZodBoolean;
13222
- }, "strip", z$1.ZodTypeAny, {
13223
- id: number;
13224
- isMandatory: boolean;
13225
- }, {
13226
- id: number;
13227
- isMandatory: boolean;
13228
- }>, "many">>;
13229
- paymentChannelToFundSourceMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13230
- penaltyToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13231
- feeToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13232
- }, "strip", z$1.ZodAny, z$1.objectOutputType<{
13233
- name: z$1.ZodOptional<z$1.ZodString>;
13234
- shortName: z$1.ZodOptional<z$1.ZodString>;
13235
- inMultiplesOf: z$1.ZodOptional<z$1.ZodNumber>;
13236
- locale: z$1.ZodOptional<z$1.ZodString>;
13237
- nominalAnnualInterestRate: z$1.ZodOptional<z$1.ZodNumber>;
13238
- statementDay: z$1.ZodOptional<z$1.ZodNumber>;
13239
- minimumPayCalculationRate: z$1.ZodOptional<z$1.ZodNumber>;
13240
- minimumPayFixedAmount: z$1.ZodOptional<z$1.ZodNumber>;
13241
- charges: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
13242
- id: z$1.ZodNumber;
13243
- isMandatory: z$1.ZodBoolean;
13244
- }, "strip", z$1.ZodTypeAny, {
13245
- id: number;
13246
- isMandatory: boolean;
13247
- }, {
13248
- id: number;
13249
- isMandatory: boolean;
13250
- }>, "many">>;
13251
- paymentChannelToFundSourceMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13252
- penaltyToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13253
- feeToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13254
- }, z$1.ZodAny, "strip">, z$1.objectInputType<{
13255
- name: z$1.ZodOptional<z$1.ZodString>;
13256
- shortName: z$1.ZodOptional<z$1.ZodString>;
13257
- inMultiplesOf: z$1.ZodOptional<z$1.ZodNumber>;
13258
- locale: z$1.ZodOptional<z$1.ZodString>;
13259
- nominalAnnualInterestRate: z$1.ZodOptional<z$1.ZodNumber>;
13260
- statementDay: z$1.ZodOptional<z$1.ZodNumber>;
13261
- minimumPayCalculationRate: z$1.ZodOptional<z$1.ZodNumber>;
13262
- minimumPayFixedAmount: z$1.ZodOptional<z$1.ZodNumber>;
13263
- charges: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
13264
- id: z$1.ZodNumber;
13265
- isMandatory: z$1.ZodBoolean;
13266
- }, "strip", z$1.ZodTypeAny, {
13267
- id: number;
13268
- isMandatory: boolean;
13269
- }, {
13270
- id: number;
13271
- isMandatory: boolean;
13272
- }>, "many">>;
13273
- paymentChannelToFundSourceMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13274
- penaltyToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13275
- feeToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13276
- }, z$1.ZodAny, "strip">>>;
13277
- }, "strip", z$1.ZodTypeAny, {
13278
- id: string;
13279
- resourceId: number;
13280
- changes?: z$1.objectOutputType<{
13281
- name: z$1.ZodOptional<z$1.ZodString>;
13282
- shortName: z$1.ZodOptional<z$1.ZodString>;
13283
- inMultiplesOf: z$1.ZodOptional<z$1.ZodNumber>;
13284
- locale: z$1.ZodOptional<z$1.ZodString>;
13285
- nominalAnnualInterestRate: z$1.ZodOptional<z$1.ZodNumber>;
13286
- statementDay: z$1.ZodOptional<z$1.ZodNumber>;
13287
- minimumPayCalculationRate: z$1.ZodOptional<z$1.ZodNumber>;
13288
- minimumPayFixedAmount: z$1.ZodOptional<z$1.ZodNumber>;
13289
- charges: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
13290
- id: z$1.ZodNumber;
13291
- isMandatory: z$1.ZodBoolean;
13292
- }, "strip", z$1.ZodTypeAny, {
13293
- id: number;
13294
- isMandatory: boolean;
13295
- }, {
13296
- id: number;
13297
- isMandatory: boolean;
13298
- }>, "many">>;
13299
- paymentChannelToFundSourceMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13300
- penaltyToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13301
- feeToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13302
- }, z$1.ZodAny, "strip"> | undefined;
13303
- }, {
13304
- id: string;
13305
- resourceId: number;
13306
- changes?: z$1.objectInputType<{
13307
- name: z$1.ZodOptional<z$1.ZodString>;
13308
- shortName: z$1.ZodOptional<z$1.ZodString>;
13309
- inMultiplesOf: z$1.ZodOptional<z$1.ZodNumber>;
13310
- locale: z$1.ZodOptional<z$1.ZodString>;
13311
- nominalAnnualInterestRate: z$1.ZodOptional<z$1.ZodNumber>;
13312
- statementDay: z$1.ZodOptional<z$1.ZodNumber>;
13313
- minimumPayCalculationRate: z$1.ZodOptional<z$1.ZodNumber>;
13314
- minimumPayFixedAmount: z$1.ZodOptional<z$1.ZodNumber>;
13315
- charges: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
13316
- id: z$1.ZodNumber;
13317
- isMandatory: z$1.ZodBoolean;
13318
- }, "strip", z$1.ZodTypeAny, {
13319
- id: number;
13320
- isMandatory: boolean;
13321
- }, {
13322
- id: number;
13323
- isMandatory: boolean;
13324
- }>, "many">>;
13325
- paymentChannelToFundSourceMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13326
- penaltyToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13327
- feeToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown, "many">>;
13328
- }, z$1.ZodAny, "strip"> | undefined;
13329
- }>;
13330
- declare const GetCreditProductResponseSchema: z$1.ZodObject<{
13331
- id: z$1.ZodNumber;
13332
- name: z$1.ZodString;
13333
- shortName: z$1.ZodString;
13334
- description: z$1.ZodString;
13335
- currency: z$1.ZodObject<{
13336
- code: z$1.ZodString;
13337
- name: z$1.ZodString;
13338
- decimalPlaces: z$1.ZodNumber;
13339
- inMultiplesOf: z$1.ZodNumber;
13340
- displaySymbol: z$1.ZodString;
13341
- nameCode: z$1.ZodString;
13342
- displayLabel: z$1.ZodString;
13343
- }, "strip", z$1.ZodTypeAny, {
13344
- code: string;
13345
- name: string;
13346
- decimalPlaces: number;
13347
- displaySymbol: string;
13348
- nameCode: string;
13349
- inMultiplesOf: number;
13350
- displayLabel: string;
13351
- }, {
13352
- code: string;
13353
- name: string;
13354
- decimalPlaces: number;
13355
- displaySymbol: string;
13356
- nameCode: string;
13357
- inMultiplesOf: number;
13358
- displayLabel: string;
13359
- }>;
13360
- nominalAnnualInterestRate: z$1.ZodNumber;
13361
- interestCompoundingPeriodType: z$1.ZodObject<{
13362
- id: z$1.ZodNumber;
13363
- code: z$1.ZodString;
13364
- value: z$1.ZodString;
13365
- }, "strip", z$1.ZodTypeAny, {
13366
- value: string;
13367
- code: string;
13368
- id: number;
13369
- }, {
13370
- value: string;
13371
- code: string;
13372
- id: number;
13373
- }>;
13374
- interestPostingPeriodType: z$1.ZodObject<{
13375
- id: z$1.ZodNumber;
13376
- code: z$1.ZodString;
13377
- value: z$1.ZodString;
13378
- }, "strip", z$1.ZodTypeAny, {
13379
- value: string;
13380
- code: string;
13381
- id: number;
13382
- }, {
13383
- value: string;
13384
- code: string;
13385
- id: number;
13386
- }>;
13387
- interestCalculationType: z$1.ZodObject<{
13388
- id: z$1.ZodNumber;
13389
- code: z$1.ZodString;
13390
- value: z$1.ZodString;
13391
- }, "strip", z$1.ZodTypeAny, {
13392
- value: string;
13393
- code: string;
13394
- id: number;
13395
- }, {
13396
- value: string;
13397
- code: string;
13398
- id: number;
13399
- }>;
13400
- interestCalculationDaysInYearType: z$1.ZodObject<{
13401
- id: z$1.ZodNumber;
13402
- code: z$1.ZodString;
13403
- value: z$1.ZodString;
13404
- }, "strip", z$1.ZodTypeAny, {
13405
- value: string;
13406
- code: string;
13407
- id: number;
13408
- }, {
13409
- value: string;
13410
- code: string;
13411
- id: number;
13412
- }>;
13413
- nominalCashAdvanceInterestRate: z$1.ZodNumber;
13414
- nominalAnnualPenaltyInterestRate: z$1.ZodNumber;
13415
- accountingRule: z$1.ZodObject<{
13416
- id: z$1.ZodNumber;
13417
- code: z$1.ZodString;
13418
- value: z$1.ZodString;
13419
- }, "strip", z$1.ZodTypeAny, {
13420
- value: string;
13421
- code: string;
13422
- id: number;
13423
- }, {
13424
- value: string;
13425
- code: string;
13426
- id: number;
13427
- }>;
13428
- charges: z$1.ZodArray<z$1.ZodObject<{
13429
- id: z$1.ZodNumber;
13430
- isMandatory: z$1.ZodBoolean;
13431
- }, "strip", z$1.ZodTypeAny, {
13432
- id: number;
13433
- isMandatory: boolean;
13434
- }, {
13435
- id: number;
13436
- isMandatory: boolean;
13437
- }>, "many">;
13438
- isLinkedToFloatingInterestRates: z$1.ZodBoolean;
13439
- isFloatingInterestRateCalculationAllowed: z$1.ZodBoolean;
13440
- isUsedForSuspenseAccounting: z$1.ZodBoolean;
13441
- isLinkedWithFundSourceAccount: z$1.ZodBoolean;
13442
- isSecuredCreditProduct: z$1.ZodBoolean;
13443
- reserveProduct: z$1.ZodOptional<z$1.ZodObject<{
13444
- id: z$1.ZodNumber;
13445
- withdrawalFeeForTransfers: z$1.ZodBoolean;
13446
- allowOverdraft: z$1.ZodBoolean;
13447
- enforceMinRequiredBalance: z$1.ZodBoolean;
13448
- withHoldTax: z$1.ZodBoolean;
13449
- isLinkedToFloatingInterestRates: z$1.ZodBoolean;
13450
- isFloatingInterestRateCalculationAllowed: z$1.ZodBoolean;
13451
- isUsedForSuspenseAccounting: z$1.ZodBoolean;
13452
- isLinkedWithFundSourceAccount: z$1.ZodBoolean;
13453
- isSkipCollectTransferCharge: z$1.ZodBoolean;
13454
- isReservedProduct: z$1.ZodBoolean;
13455
- }, "strip", z$1.ZodTypeAny, {
13456
- id: number;
13457
- withdrawalFeeForTransfers: boolean;
13458
- allowOverdraft: boolean;
13459
- enforceMinRequiredBalance: boolean;
13460
- withHoldTax: boolean;
13461
- isLinkedToFloatingInterestRates: boolean;
13462
- isFloatingInterestRateCalculationAllowed: boolean;
13463
- isLinkedWithFundSourceAccount: boolean;
13464
- isUsedForSuspenseAccounting: boolean;
13465
- isSkipCollectTransferCharge: boolean;
13466
- isReservedProduct: boolean;
13467
- }, {
13468
- id: number;
13469
- withdrawalFeeForTransfers: boolean;
13470
- allowOverdraft: boolean;
13471
- enforceMinRequiredBalance: boolean;
13472
- withHoldTax: boolean;
13473
- isLinkedToFloatingInterestRates: boolean;
13474
- isFloatingInterestRateCalculationAllowed: boolean;
13475
- isLinkedWithFundSourceAccount: boolean;
13476
- isUsedForSuspenseAccounting: boolean;
13477
- isSkipCollectTransferCharge: boolean;
13478
- isReservedProduct: boolean;
13479
- }>>;
13480
- gracePeriod: z$1.ZodNumber;
13481
- minimumPayCalculationRate: z$1.ZodNumber;
13482
- }, "strip", z$1.ZodTypeAny, {
13483
- name: string;
13484
- id: number;
13485
- currency: {
13486
- code: string;
13487
- name: string;
13488
- decimalPlaces: number;
13489
- displaySymbol: string;
13490
- nameCode: string;
13491
- inMultiplesOf: number;
13492
- displayLabel: string;
13493
- };
13494
- isLinkedToFloatingInterestRates: boolean;
13495
- nominalAnnualInterestRate: number;
13496
- interestCompoundingPeriodType: {
13497
- value: string;
13498
- code: string;
13499
- id: number;
13500
- };
13501
- interestPostingPeriodType: {
13502
- value: string;
13503
- code: string;
13504
- id: number;
13505
- };
13506
- interestCalculationType: {
13507
- value: string;
13508
- code: string;
13509
- id: number;
13510
- };
13511
- interestCalculationDaysInYearType: {
13512
- value: string;
13513
- code: string;
13514
- id: number;
13515
- };
13516
- isFloatingInterestRateCalculationAllowed: boolean;
13517
- charges: {
13518
- id: number;
13519
- isMandatory: boolean;
13520
- }[];
13521
- description: string;
13522
- isLinkedWithFundSourceAccount: boolean;
13523
- shortName: string;
13524
- accountingRule: {
13525
- value: string;
13526
- code: string;
13527
- id: number;
13528
- };
13529
- nominalCashAdvanceInterestRate: number;
13530
- nominalAnnualPenaltyInterestRate: number;
13531
- isSecuredCreditProduct: boolean;
13532
- gracePeriod: number;
13533
- minimumPayCalculationRate: number;
13534
- isUsedForSuspenseAccounting: boolean;
13535
- reserveProduct?: {
13536
- id: number;
13537
- withdrawalFeeForTransfers: boolean;
13538
- allowOverdraft: boolean;
13539
- enforceMinRequiredBalance: boolean;
13540
- withHoldTax: boolean;
13541
- isLinkedToFloatingInterestRates: boolean;
13542
- isFloatingInterestRateCalculationAllowed: boolean;
13543
- isLinkedWithFundSourceAccount: boolean;
13544
- isUsedForSuspenseAccounting: boolean;
13545
- isSkipCollectTransferCharge: boolean;
13546
- isReservedProduct: boolean;
13547
- } | undefined;
13548
- }, {
13549
- name: string;
13550
- id: number;
13551
- currency: {
13552
- code: string;
13553
- name: string;
13554
- decimalPlaces: number;
13555
- displaySymbol: string;
13556
- nameCode: string;
13557
- inMultiplesOf: number;
13558
- displayLabel: string;
13559
- };
13560
- isLinkedToFloatingInterestRates: boolean;
13561
- nominalAnnualInterestRate: number;
13562
- interestCompoundingPeriodType: {
13563
- value: string;
13564
- code: string;
13565
- id: number;
13566
- };
13567
- interestPostingPeriodType: {
13568
- value: string;
13569
- code: string;
13570
- id: number;
13571
- };
13572
- interestCalculationType: {
13573
- value: string;
13574
- code: string;
13575
- id: number;
13576
- };
13577
- interestCalculationDaysInYearType: {
13578
- value: string;
13579
- code: string;
13580
- id: number;
13581
- };
13582
- isFloatingInterestRateCalculationAllowed: boolean;
13583
- charges: {
13584
- id: number;
13585
- isMandatory: boolean;
13586
- }[];
13587
- description: string;
13588
- isLinkedWithFundSourceAccount: boolean;
13589
- shortName: string;
13590
- accountingRule: {
13591
- value: string;
13592
- code: string;
13593
- id: number;
13594
- };
13595
- nominalCashAdvanceInterestRate: number;
13596
- nominalAnnualPenaltyInterestRate: number;
13597
- isSecuredCreditProduct: boolean;
13598
- gracePeriod: number;
13599
- minimumPayCalculationRate: number;
13600
- isUsedForSuspenseAccounting: boolean;
13601
- reserveProduct?: {
13602
- id: number;
13603
- withdrawalFeeForTransfers: boolean;
13604
- allowOverdraft: boolean;
13605
- enforceMinRequiredBalance: boolean;
13606
- withHoldTax: boolean;
13607
- isLinkedToFloatingInterestRates: boolean;
13608
- isFloatingInterestRateCalculationAllowed: boolean;
13609
- isLinkedWithFundSourceAccount: boolean;
13610
- isUsedForSuspenseAccounting: boolean;
13611
- isSkipCollectTransferCharge: boolean;
13612
- isReservedProduct: boolean;
13613
- } | undefined;
13614
- }>;
13615
- declare const GetCreditProductsResponseSchema: z$1.ZodArray<z$1.ZodObject<{
13616
- id: z$1.ZodNumber;
13617
- name: z$1.ZodString;
13618
- shortName: z$1.ZodString;
13619
- description: z$1.ZodString;
13620
- currency: z$1.ZodObject<{
13621
- code: z$1.ZodString;
13622
- name: z$1.ZodString;
13623
- decimalPlaces: z$1.ZodNumber;
13624
- inMultiplesOf: z$1.ZodNumber;
13625
- displaySymbol: z$1.ZodString;
13626
- nameCode: z$1.ZodString;
13627
- displayLabel: z$1.ZodString;
13628
- }, "strip", z$1.ZodTypeAny, {
13629
- code: string;
13630
- name: string;
13631
- decimalPlaces: number;
13632
- displaySymbol: string;
13633
- nameCode: string;
13634
- inMultiplesOf: number;
13635
- displayLabel: string;
13636
- }, {
13637
- code: string;
13638
- name: string;
13639
- decimalPlaces: number;
13640
- displaySymbol: string;
13641
- nameCode: string;
13642
- inMultiplesOf: number;
13643
- displayLabel: string;
13644
- }>;
13645
- nominalAnnualInterestRate: z$1.ZodNumber;
13646
- interestCompoundingPeriodType: z$1.ZodObject<{
13647
- id: z$1.ZodNumber;
13648
- code: z$1.ZodString;
13649
- value: z$1.ZodString;
13650
- }, "strip", z$1.ZodTypeAny, {
13651
- value: string;
13652
- code: string;
13653
- id: number;
13654
- }, {
13655
- value: string;
13656
- code: string;
13657
- id: number;
13658
- }>;
13659
- interestPostingPeriodType: z$1.ZodObject<{
13660
- id: z$1.ZodNumber;
13661
- code: z$1.ZodString;
13662
- value: z$1.ZodString;
13663
- }, "strip", z$1.ZodTypeAny, {
13664
- value: string;
13665
- code: string;
13666
- id: number;
13667
- }, {
13668
- value: string;
13669
- code: string;
13670
- id: number;
13671
- }>;
13672
- interestCalculationType: z$1.ZodObject<{
13673
- id: z$1.ZodNumber;
13674
- code: z$1.ZodString;
13675
- value: z$1.ZodString;
13676
- }, "strip", z$1.ZodTypeAny, {
13677
- value: string;
13678
- code: string;
13679
- id: number;
13680
- }, {
13681
- value: string;
13682
- code: string;
13683
- id: number;
13684
- }>;
13685
- interestCalculationDaysInYearType: z$1.ZodObject<{
13686
- id: z$1.ZodNumber;
13687
- code: z$1.ZodString;
13688
- value: z$1.ZodString;
13689
- }, "strip", z$1.ZodTypeAny, {
13690
- value: string;
13691
- code: string;
13692
- id: number;
13693
- }, {
13694
- value: string;
13695
- code: string;
13696
- id: number;
13697
- }>;
13698
- nominalCashAdvanceInterestRate: z$1.ZodNumber;
13699
- nominalAnnualPenaltyInterestRate: z$1.ZodNumber;
13700
- accountingRule: z$1.ZodObject<{
13701
- id: z$1.ZodNumber;
13702
- code: z$1.ZodString;
13703
- value: z$1.ZodString;
13704
- }, "strip", z$1.ZodTypeAny, {
13705
- value: string;
13706
- code: string;
13707
- id: number;
13708
- }, {
13709
- value: string;
13710
- code: string;
13711
- id: number;
13712
- }>;
13713
- charges: z$1.ZodArray<z$1.ZodObject<{
13714
- id: z$1.ZodNumber;
13715
- isMandatory: z$1.ZodBoolean;
13716
- }, "strip", z$1.ZodTypeAny, {
13717
- id: number;
13718
- isMandatory: boolean;
13719
- }, {
13720
- id: number;
13721
- isMandatory: boolean;
13722
- }>, "many">;
13723
- isLinkedToFloatingInterestRates: z$1.ZodBoolean;
13724
- isFloatingInterestRateCalculationAllowed: z$1.ZodBoolean;
13725
- isUsedForSuspenseAccounting: z$1.ZodBoolean;
13726
- isLinkedWithFundSourceAccount: z$1.ZodBoolean;
13727
- isSecuredCreditProduct: z$1.ZodBoolean;
13728
- reserveProduct: z$1.ZodOptional<z$1.ZodObject<{
13729
- id: z$1.ZodNumber;
13730
- withdrawalFeeForTransfers: z$1.ZodBoolean;
13731
- allowOverdraft: z$1.ZodBoolean;
13732
- enforceMinRequiredBalance: z$1.ZodBoolean;
13733
- withHoldTax: z$1.ZodBoolean;
13734
- isLinkedToFloatingInterestRates: z$1.ZodBoolean;
13735
- isFloatingInterestRateCalculationAllowed: z$1.ZodBoolean;
13736
- isUsedForSuspenseAccounting: z$1.ZodBoolean;
13737
- isLinkedWithFundSourceAccount: z$1.ZodBoolean;
13738
- isSkipCollectTransferCharge: z$1.ZodBoolean;
13739
- isReservedProduct: z$1.ZodBoolean;
13740
- }, "strip", z$1.ZodTypeAny, {
13741
- id: number;
13742
- withdrawalFeeForTransfers: boolean;
13743
- allowOverdraft: boolean;
13744
- enforceMinRequiredBalance: boolean;
13745
- withHoldTax: boolean;
13746
- isLinkedToFloatingInterestRates: boolean;
13747
- isFloatingInterestRateCalculationAllowed: boolean;
13748
- isLinkedWithFundSourceAccount: boolean;
13749
- isUsedForSuspenseAccounting: boolean;
13750
- isSkipCollectTransferCharge: boolean;
13751
- isReservedProduct: boolean;
13752
- }, {
13753
- id: number;
13754
- withdrawalFeeForTransfers: boolean;
13755
- allowOverdraft: boolean;
13756
- enforceMinRequiredBalance: boolean;
13757
- withHoldTax: boolean;
13758
- isLinkedToFloatingInterestRates: boolean;
13759
- isFloatingInterestRateCalculationAllowed: boolean;
13760
- isLinkedWithFundSourceAccount: boolean;
13761
- isUsedForSuspenseAccounting: boolean;
13762
- isSkipCollectTransferCharge: boolean;
13763
- isReservedProduct: boolean;
13764
- }>>;
13765
- gracePeriod: z$1.ZodNumber;
13766
- minimumPayCalculationRate: z$1.ZodNumber;
13767
- }, "strip", z$1.ZodTypeAny, {
13768
- name: string;
13769
- id: number;
13770
- currency: {
13771
- code: string;
13772
- name: string;
13773
- decimalPlaces: number;
13774
- displaySymbol: string;
13775
- nameCode: string;
13776
- inMultiplesOf: number;
13777
- displayLabel: string;
13778
- };
13779
- isLinkedToFloatingInterestRates: boolean;
13780
- nominalAnnualInterestRate: number;
13781
- interestCompoundingPeriodType: {
13782
- value: string;
13783
- code: string;
13784
- id: number;
13785
- };
13786
- interestPostingPeriodType: {
13787
- value: string;
13788
- code: string;
13789
- id: number;
13790
- };
13791
- interestCalculationType: {
13792
- value: string;
13793
- code: string;
13794
- id: number;
13795
- };
13796
- interestCalculationDaysInYearType: {
13797
- value: string;
13798
- code: string;
13799
- id: number;
13800
- };
13801
- isFloatingInterestRateCalculationAllowed: boolean;
13802
- charges: {
13803
- id: number;
13804
- isMandatory: boolean;
13805
- }[];
13806
- description: string;
13807
- isLinkedWithFundSourceAccount: boolean;
13808
- shortName: string;
13809
- accountingRule: {
13810
- value: string;
13811
- code: string;
13812
- id: number;
13813
- };
13814
- nominalCashAdvanceInterestRate: number;
13815
- nominalAnnualPenaltyInterestRate: number;
13816
- isSecuredCreditProduct: boolean;
13817
- gracePeriod: number;
13818
- minimumPayCalculationRate: number;
13819
- isUsedForSuspenseAccounting: boolean;
13820
- reserveProduct?: {
13821
- id: number;
13822
- withdrawalFeeForTransfers: boolean;
13823
- allowOverdraft: boolean;
13824
- enforceMinRequiredBalance: boolean;
13825
- withHoldTax: boolean;
13826
- isLinkedToFloatingInterestRates: boolean;
13827
- isFloatingInterestRateCalculationAllowed: boolean;
13828
- isLinkedWithFundSourceAccount: boolean;
13829
- isUsedForSuspenseAccounting: boolean;
13830
- isSkipCollectTransferCharge: boolean;
13831
- isReservedProduct: boolean;
13832
- } | undefined;
13833
- }, {
13834
- name: string;
13835
- id: number;
13836
- currency: {
13837
- code: string;
13838
- name: string;
13839
- decimalPlaces: number;
13840
- displaySymbol: string;
13841
- nameCode: string;
13842
- inMultiplesOf: number;
13843
- displayLabel: string;
13844
- };
13845
- isLinkedToFloatingInterestRates: boolean;
13846
- nominalAnnualInterestRate: number;
13847
- interestCompoundingPeriodType: {
13848
- value: string;
13849
- code: string;
13850
- id: number;
13851
- };
13852
- interestPostingPeriodType: {
13853
- value: string;
13854
- code: string;
13855
- id: number;
13856
- };
13857
- interestCalculationType: {
13858
- value: string;
13859
- code: string;
13860
- id: number;
13861
- };
13862
- interestCalculationDaysInYearType: {
13863
- value: string;
13864
- code: string;
13865
- id: number;
13866
- };
13867
- isFloatingInterestRateCalculationAllowed: boolean;
13868
- charges: {
13869
- id: number;
13870
- isMandatory: boolean;
13871
- }[];
13872
- description: string;
13873
- isLinkedWithFundSourceAccount: boolean;
13874
- shortName: string;
13875
- accountingRule: {
13876
- value: string;
13877
- code: string;
13878
- id: number;
13879
- };
13880
- nominalCashAdvanceInterestRate: number;
13881
- nominalAnnualPenaltyInterestRate: number;
13882
- isSecuredCreditProduct: boolean;
13883
- gracePeriod: number;
13884
- minimumPayCalculationRate: number;
13885
- isUsedForSuspenseAccounting: boolean;
13886
- reserveProduct?: {
13887
- id: number;
13888
- withdrawalFeeForTransfers: boolean;
13889
- allowOverdraft: boolean;
13890
- enforceMinRequiredBalance: boolean;
13891
- withHoldTax: boolean;
13892
- isLinkedToFloatingInterestRates: boolean;
13893
- isFloatingInterestRateCalculationAllowed: boolean;
13894
- isLinkedWithFundSourceAccount: boolean;
13895
- isUsedForSuspenseAccounting: boolean;
13896
- isSkipCollectTransferCharge: boolean;
13897
- isReservedProduct: boolean;
13898
- } | undefined;
13899
- }>, "many">;
13900
- declare const UpdateCreditProductRequestSchema: z$1.ZodObject<{
13901
- currencyCode: z$1.ZodOptional<z$1.ZodString>;
13902
- digitsAfterDecimal: z$1.ZodOptional<z$1.ZodNumber>;
13903
- interestCompoundingPeriodType: z$1.ZodOptional<z$1.ZodNumber>;
13904
- interestPostingPeriodType: z$1.ZodOptional<z$1.ZodNumber>;
13905
- interestCalculationType: z$1.ZodOptional<z$1.ZodNumber>;
13906
- interestCalculationDaysInYearType: z$1.ZodOptional<z$1.ZodNumber>;
13907
- accountingRule: z$1.ZodOptional<z$1.ZodNumber>;
13908
- isSecuredCreditProduct: z$1.ZodOptional<z$1.ZodBoolean>;
13909
- name: z$1.ZodOptional<z$1.ZodString>;
13910
- shortName: z$1.ZodOptional<z$1.ZodString>;
13911
- description: z$1.ZodOptional<z$1.ZodString>;
13912
- inMultiplesOf: z$1.ZodOptional<z$1.ZodNumber>;
13913
- isLinkedToFloatingInterestRates: z$1.ZodOptional<z$1.ZodBoolean>;
13914
- nominalAnnualInterestRate: z$1.ZodOptional<z$1.ZodNumber>;
13915
- nominalAnnualPenaltyInterestRate: z$1.ZodOptional<z$1.ZodNumber>;
13916
- gracePeriod: z$1.ZodOptional<z$1.ZodNumber>;
13917
- nominalCashAdvanceInterestRate: z$1.ZodOptional<z$1.ZodNumber>;
13918
- minimumPayCalculationRate: z$1.ZodOptional<z$1.ZodNumber>;
13919
- minimumPayFixedAmount: z$1.ZodOptional<z$1.ZodNumber>;
13920
- statementDay: z$1.ZodOptional<z$1.ZodNumber>;
13921
- charges: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
13922
- id: z$1.ZodNumber;
13923
- isMandatory: z$1.ZodBoolean;
13924
- }, "strip", z$1.ZodTypeAny, {
13925
- id: number;
13926
- isMandatory: boolean;
13927
- }, {
13928
- id: number;
13929
- isMandatory: boolean;
13930
- }>, "many">>>;
13931
- disputesInSuspenseAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13932
- graceForArrearsAging: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13933
- fundSourceAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13934
- receivableInterestAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13935
- receivablePenaltyAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13936
- transfersInSuspenseAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13937
- creditPortfolioAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13938
- receivableFeeAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13939
- interestOnIncomeAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13940
- incomeFromPenaltyAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13941
- incomeFromFeeAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13942
- incomeFromRecoveryAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13943
- writeOffAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13944
- overpaymentLiabilityAccountId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNumber>>;
13945
- paymentChannelToFundSourceMappings: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
13946
- penaltyToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
13947
- feeToIncomeAccountMappings: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
13948
- locale: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
13949
- }, "strip", z$1.ZodTypeAny, {
13950
- name?: string | undefined;
13951
- locale?: string | undefined;
13952
- inMultiplesOf?: number | undefined;
13953
- isLinkedToFloatingInterestRates?: boolean | undefined;
13954
- nominalAnnualInterestRate?: number | undefined;
13955
- interestCompoundingPeriodType?: number | undefined;
13956
- interestPostingPeriodType?: number | undefined;
13957
- interestCalculationType?: number | undefined;
13958
- interestCalculationDaysInYearType?: number | undefined;
13959
- charges?: {
13960
- id: number;
13961
- isMandatory: boolean;
13962
- }[] | undefined;
13963
- description?: string | undefined;
13964
- currencyCode?: string | undefined;
13965
- shortName?: string | undefined;
13966
- digitsAfterDecimal?: number | undefined;
13967
- accountingRule?: number | undefined;
13968
- paymentChannelToFundSourceMappings?: string | undefined;
13969
- feeToIncomeAccountMappings?: string | undefined;
13970
- nominalCashAdvanceInterestRate?: number | undefined;
13971
- nominalAnnualPenaltyInterestRate?: number | undefined;
13972
- isSecuredCreditProduct?: boolean | undefined;
13973
- gracePeriod?: number | undefined;
13974
- minimumPayCalculationRate?: number | undefined;
13975
- minimumPayFixedAmount?: number | undefined;
13976
- statementDay?: number | undefined;
13977
- disputesInSuspenseAccountId?: number | undefined;
13978
- graceForArrearsAging?: number | undefined;
13979
- fundSourceAccountId?: number | undefined;
13980
- receivableInterestAccountId?: number | undefined;
13981
- receivablePenaltyAccountId?: number | undefined;
13982
- transfersInSuspenseAccountId?: number | undefined;
13983
- creditPortfolioAccountId?: number | undefined;
13984
- receivableFeeAccountId?: number | undefined;
13985
- interestOnIncomeAccountId?: number | undefined;
13986
- incomeFromPenaltyAccountId?: number | undefined;
13987
- incomeFromFeeAccountId?: number | undefined;
13988
- incomeFromRecoveryAccountId?: number | undefined;
13989
- writeOffAccountId?: number | undefined;
13990
- overpaymentLiabilityAccountId?: number | undefined;
13991
- penaltyToIncomeAccountMappings?: string | undefined;
13992
- }, {
13993
- name?: string | undefined;
13994
- locale?: string | undefined;
13995
- inMultiplesOf?: number | undefined;
13996
- isLinkedToFloatingInterestRates?: boolean | undefined;
13997
- nominalAnnualInterestRate?: number | undefined;
13998
- interestCompoundingPeriodType?: number | undefined;
13999
- interestPostingPeriodType?: number | undefined;
14000
- interestCalculationType?: number | undefined;
14001
- interestCalculationDaysInYearType?: number | undefined;
14002
- charges?: {
14003
- id: number;
14004
- isMandatory: boolean;
14005
- }[] | undefined;
14006
- description?: string | undefined;
14007
- currencyCode?: string | undefined;
14008
- shortName?: string | undefined;
14009
- digitsAfterDecimal?: number | undefined;
14010
- accountingRule?: number | undefined;
14011
- paymentChannelToFundSourceMappings?: string | undefined;
14012
- feeToIncomeAccountMappings?: string | undefined;
14013
- nominalCashAdvanceInterestRate?: number | undefined;
14014
- nominalAnnualPenaltyInterestRate?: number | undefined;
14015
- isSecuredCreditProduct?: boolean | undefined;
14016
- gracePeriod?: number | undefined;
14017
- minimumPayCalculationRate?: number | undefined;
14018
- minimumPayFixedAmount?: number | undefined;
14019
- statementDay?: number | undefined;
14020
- disputesInSuspenseAccountId?: number | undefined;
14021
- graceForArrearsAging?: number | undefined;
14022
- fundSourceAccountId?: number | undefined;
14023
- receivableInterestAccountId?: number | undefined;
14024
- receivablePenaltyAccountId?: number | undefined;
14025
- transfersInSuspenseAccountId?: number | undefined;
14026
- creditPortfolioAccountId?: number | undefined;
14027
- receivableFeeAccountId?: number | undefined;
14028
- interestOnIncomeAccountId?: number | undefined;
14029
- incomeFromPenaltyAccountId?: number | undefined;
14030
- incomeFromFeeAccountId?: number | undefined;
14031
- incomeFromRecoveryAccountId?: number | undefined;
14032
- writeOffAccountId?: number | undefined;
14033
- overpaymentLiabilityAccountId?: number | undefined;
14034
- penaltyToIncomeAccountMappings?: string | undefined;
14035
- }>;
14036
- type GetCreditProductsResponse = z$1.infer<typeof GetCreditProductsResponseSchema>;
14037
- type UpdateCreditProductRequest = z$1.infer<typeof UpdateCreditProductRequestSchema>;
14038
-
14039
13315
  declare const BankInformationSchema: z.ZodObject<{
14040
13316
  routingNumber: z.ZodString;
14041
13317
  swiftCode: z.ZodString;
@@ -14803,4 +14079,4 @@ type RecipientRequest = z.infer<typeof RecipientRequestSchema>;
14803
14079
  type CreateRecipientRequest = z.infer<typeof CreateRecipientRequestSchema>;
14804
14080
  type UpdateRecipientRequest = z.infer<typeof UpdateRecipientRequestSchema>;
14805
14081
 
14806
- export { MarkAsReturnInputSchema as $, UpdateAccountRequestSchema as A, UpdateAccountRequestShape as B, type CreatePaymentInput as C, type UserDetail as D, UserDetailSchema as E, UserDetailShape as F, type GetTransferInput as G, RecipientSchema as H, CreateRecipientRequestSchema as I, RecipientRequestSchema as J, RecipientFilterKeySchema as K, RecipientShape as L, type MarkAsReturnInput as M, CreateRecipientRequestShape as N, RecipientRequestShape as O, type Payment as P, BankInformationSchema as Q, type Recipient as R, SortOrderSchema as S, type Transfer as T, type UpdatePaymentInput as U, AccountDetailsDataSchema as V, AddressSchema as W, RecipientsSchema as X, TransferSchema as Y, CreateTransferInputSchema as Z, GetTransferInputSchema as _, type PaymentResponse as a, type UpdateSelfServiceUserResponse as a$, UpdateTraceNumbersInputSchema as a0, ProcessOutputSchema$1 as a1, TransferResponseSchema as a2, CreateTransferOutputSchema as a3, PaymentRailSchema$1 as a4, PaymentTypeSchema$1 as a5, AccountTypeSchema as a6, TransferShape as a7, CreateTransferInputShape as a8, GetTransferInputShape as a9, type GetChargeResponse as aA, GetChargesRequestSchema as aB, type GetChargesRequest as aC, UpdateChargeRequestSchema as aD, type UpdateChargeRequest as aE, UpdateChargeResponseSchema as aF, type UpdateChargeResponse as aG, type CreateTransferOutput as aH, type PaymentFilters as aI, type ProcessOutput as aJ, type GetAccountsOfClientRequest as aK, type GetAccountsOfClientResponse as aL, type CreateAndActivateAccountRequest as aM, type CreateAndActivateAccountResponse as aN, type CloseAccountRequest as aO, type CloseAccountResponse as aP, type BlockAccountRequest as aQ, type BlockAccountResponse as aR, type HoldAmountRequest as aS, type HoldAmountResponse as aT, type UpdateRecipientRequest as aU, type GetRecipientParams as aV, type DeleteRecipientRequest as aW, type Recipients as aX, type EnableSelfServiceAccessRequest as aY, type EnableSelfServiceAccessResponse as aZ, type UpdateSelfServiceUserRequest as a_, MarkAsReturnInputShape as aa, UpdateTraceNumbersInputShape as ab, ProcessOutputShape as ac, TransferResponseShape as ad, CreateTransferOutputShape as ae, ClientSchema as af, AgentSchema as ag, PartySchema as ah, CreateCreditProductRequestSchema as ai, CreateCreditProductResponseSchema as aj, GetCreditProductResponseSchema as ak, GetCreditProductsResponseSchema as al, UpdateCreditProductRequestSchema as am, UpdateCreditProductResponseSchema as an, CreateLoanProductRequestSchema as ao, CreateLoanProductResponseSchema as ap, CreateLoanProductRequestShape as aq, CreateLoanProductResponseShape as ar, GetLoanProductResponseShape as as, GetLoanProductResponseSchema as at, GetLoanProductsResponseSchema as au, UpdateLoanProductRequestSchema as av, CreateChargeRequestSchema as aw, CreateChargeResponseSchema as ax, CreateChargeResponseShape as ay, GetChargeResponseSchema as az, type CreateTransferInput as b, type DeleteSelfServiceUserResponse as b0, type CreateChargeRequest as b1, type CreateChargeResponse as b2, type CreateCreditProductRequest as b3, type GetCreditProductsResponse as b4, type UpdateCreditProductRequest as b5, type CreateLoanProductRequest as b6, type CreateLoanProductResponse as b7, type GetLoanProductResponse as b8, type GetLoanProductsResponse as b9, type UpdateLoanProductRequest as ba, type UpdateLoanProductResponse as bb, type TransferResponse as c, type UpdateTraceNumbersInput as d, type ProcessOutput$1 as e, type PaymentRail as f, type CreateRecipientRequest as g, type RecipientRequest as h, type RecipientFilterKey as i, PaymentStatusSchema as j, PaymentRailSchema as k, PaymentTypeSchema as l, CreatePaymentInputSchema as m, UpdatePaymentInputSchema as n, PaymentResponseSchema as o, PaymentShape as p, CreatePaymentInputShape as q, UpdatePaymentInputShape as r, SavingAccountSchema as s, SavingAccountShape as t, type SavingAccount as u, GetAccountsOfClientResponseShape as v, GetAccountsOfClientResponseSchema as w, GetAccountsRequestShape as x, GetAccountsRequestSchema as y, type UpdateAccountRequest as z };
14082
+ export { PaymentStatusSchema as $, type CreateLoanProductResponse as A, type BlockAccountRequest as B, type CreatePaymentInput as C, type GetLoanProductResponse as D, type GetLoanProductsResponse as E, type UpdateLoanProductRequest as F, type GetTransferInput as G, type HoldAmountRequest as H, type CreateTransferOutput as I, type PaymentFilters as J, type ProcessOutput as K, type UpdateRecipientRequest as L, type MarkAsReturnInput as M, type GetRecipientParams as N, type DeleteRecipientRequest as O, type Payment as P, type Recipients as Q, type Recipient as R, type SavingAccount as S, type Transfer as T, type UpdatePaymentInput as U, type EnableSelfServiceAccessRequest as V, type EnableSelfServiceAccessResponse as W, type UpdateSelfServiceUserRequest as X, type UpdateSelfServiceUserResponse as Y, type DeleteSelfServiceUserResponse as Z, type UpdateLoanProductResponse as _, type PaymentResponse as a, TransferResponseShape as a$, PaymentRailSchema as a0, PaymentTypeSchema as a1, SortOrderSchema as a2, CreatePaymentInputSchema as a3, UpdatePaymentInputSchema as a4, PaymentResponseSchema as a5, PaymentShape as a6, CreatePaymentInputShape as a7, UpdatePaymentInputShape as a8, SavingAccountSchema as a9, CreateRecipientRequestSchema as aA, RecipientRequestSchema as aB, RecipientFilterKeySchema as aC, RecipientShape as aD, CreateRecipientRequestShape as aE, RecipientRequestShape as aF, BankInformationSchema as aG, AccountDetailsDataSchema as aH, AddressSchema as aI, RecipientsSchema as aJ, TransferSchema as aK, CreateTransferInputSchema as aL, GetTransferInputSchema as aM, MarkAsReturnInputSchema as aN, UpdateTraceNumbersInputSchema as aO, ProcessOutputSchema$1 as aP, TransferResponseSchema as aQ, CreateTransferOutputSchema as aR, PaymentRailSchema$1 as aS, PaymentTypeSchema$1 as aT, AccountTypeSchema as aU, TransferShape as aV, CreateTransferInputShape as aW, GetTransferInputShape as aX, MarkAsReturnInputShape as aY, UpdateTraceNumbersInputShape as aZ, ProcessOutputShape as a_, SavingAccountShape as aa, GetAccountsOfClientResponseSchema as ab, GetAccountsOfClientResponseShape as ac, GetAccountsRequestSchema as ad, GetAccountsRequestShape as ae, UpdateAccountRequestSchema as af, UpdateAccountRequestShape as ag, CreateAndActivateAccountRequestSchema as ah, CreateAndActivateAccountRequestShape as ai, CreateAndActivateAccountResponseSchema as aj, CreateAndActivateAccountResponseShape as ak, CloseAccountRequestSchema as al, CloseAccountRequestShape as am, CloseAccountResponseSchema as an, CloseAccountResponseShape as ao, BlockAccountRequestSchema as ap, BlockAccountRequestShape as aq, BlockAccountResponseSchema as ar, BlockAccountResponseShape as as, HoldAmountRequestSchema as at, HoldAmountRequestShape as au, HoldAmountResponseSchema as av, HoldAmountResponseShape as aw, UserDetailSchema as ax, UserDetailShape as ay, RecipientSchema as az, type CreateTransferInput as b, CreateTransferOutputShape as b0, ClientSchema as b1, AgentSchema as b2, PartySchema as b3, CreateLoanProductRequestSchema as b4, CreateLoanProductResponseSchema as b5, CreateLoanProductRequestShape as b6, CreateLoanProductResponseShape as b7, GetLoanProductResponseShape as b8, GetLoanProductResponseSchema as b9, GetLoanProductsResponseSchema as ba, UpdateLoanProductRequestSchema as bb, CreateChargeRequestSchema as bc, CreateChargeResponseSchema as bd, CreateChargeResponseShape as be, GetChargeResponseSchema as bf, GetChargesRequestSchema as bg, UpdateChargeRequestSchema as bh, UpdateChargeResponseSchema as bi, type TransferResponse as c, type UpdateTraceNumbersInput as d, type ProcessOutput$1 as e, type PaymentRail as f, type CreateRecipientRequest as g, type RecipientRequest as h, type RecipientFilterKey as i, type GetAccountsOfClientResponse as j, type GetAccountsOfClientRequest as k, type UpdateAccountRequest as l, type CreateAndActivateAccountRequest as m, type CreateAndActivateAccountResponse as n, type CloseAccountRequest as o, type CloseAccountResponse as p, type BlockAccountResponse as q, type HoldAmountResponse as r, type UserDetail as s, type CreateChargeRequest as t, type CreateChargeResponse as u, type GetChargeResponse as v, type GetChargesRequest as w, type UpdateChargeRequest as x, type UpdateChargeResponse as y, type CreateLoanProductRequest as z };