@develit-services/bank 1.1.9 → 1.1.11

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 (30) hide show
  1. package/dist/database/schema.cjs +1 -2
  2. package/dist/database/schema.d.cts +2 -1
  3. package/dist/database/schema.d.mts +2 -1
  4. package/dist/database/schema.d.ts +2 -1
  5. package/dist/database/schema.mjs +1 -2
  6. package/dist/export/worker.cjs +5 -4
  7. package/dist/export/worker.d.cts +551 -383
  8. package/dist/export/worker.d.mts +551 -383
  9. package/dist/export/worker.d.ts +551 -383
  10. package/dist/export/worker.mjs +5 -4
  11. package/dist/export/workflows.cjs +3 -4
  12. package/dist/export/workflows.mjs +3 -4
  13. package/dist/shared/{bank.BNyVK3BY.d.cts → bank.0qMwPptW.d.mts} +1 -1
  14. package/dist/shared/{bank.DDkScKkA.cjs → bank.B0EWZbAs.cjs} +1 -1
  15. package/dist/shared/{bank.rXZSyAh9.d.cts → bank.BdPwLsVN.d.cts} +1646 -1143
  16. package/dist/shared/{bank.rXZSyAh9.d.mts → bank.BdPwLsVN.d.mts} +1646 -1143
  17. package/dist/shared/{bank.rXZSyAh9.d.ts → bank.BdPwLsVN.d.ts} +1646 -1143
  18. package/dist/shared/{bank.B0Pi8vgE.mjs → bank.BsKwYyaC.mjs} +1 -1
  19. package/dist/shared/{bank.CFhxDnI-.mjs → bank.C7MA33AX.mjs} +7 -53
  20. package/dist/shared/{bank.DR8QWDEl.cjs → bank.CIWYI18z.cjs} +6 -52
  21. package/dist/shared/{bank.DWxuhw4n.cjs → bank.CpEGzmAr.cjs} +1 -1
  22. package/dist/shared/{bank.Dhad_uGG.d.mts → bank.DC_KeizP.d.cts} +1 -1
  23. package/dist/shared/{bank.D9aWMUlo.mjs → bank.UBWdag5k.mjs} +1 -1
  24. package/dist/shared/{bank.DlUMmkWj.d.ts → bank.pwjbFn6Q.d.ts} +1 -1
  25. package/dist/types.cjs +2 -3
  26. package/dist/types.d.cts +5 -4
  27. package/dist/types.d.mts +5 -4
  28. package/dist/types.d.ts +5 -4
  29. package/dist/types.mjs +2 -3
  30. package/package.json +1 -1
@@ -1,14 +1,15 @@
1
- import { B as BatchSelectType, P as PaymentRequestSelectType, A as AccountSelectType, a as PaymentSelectType, C as ConfigEnvironmentBank, t as tables, b as ConnectorKey, L as LastSyncMetadata, I as IBankConnector, c as PaymentType, d as CurrencyCode, H as HandleAuthorizationCallbackInput, e as HandleAuthorizationCallbackOutput } from '../shared/bank.rXZSyAh9.mjs';
2
- import { S as SendPaymentInput, a as SendPaymentOutput, b as SendPaymentSyncInput, c as SendPaymentSyncOutput, F as FinbricksSupportedBanksResponse } from '../shared/bank.Dhad_uGG.mjs';
1
+ import { B as BatchSelectType, P as PaymentRequestSelectType, A as AccountSelectType, a as PaymentSelectType, L as LastSyncMetadata, C as ConfigEnvironmentBank, t as tables, b as ConnectorKey, I as IBankConnector, c as PaymentType, d as CurrencyCode, H as HandleAuthorizationCallbackInput, e as HandleAuthorizationCallbackOutput } from '../shared/bank.BdPwLsVN.mjs';
2
+ import { S as SendPaymentInput, a as SendPaymentOutput, b as SendPaymentSyncInput, c as SendPaymentSyncOutput, F as FinbricksSupportedBanksResponse } from '../shared/bank.0qMwPptW.mjs';
3
3
  import * as _develit_io_backend_sdk from '@develit-io/backend-sdk';
4
4
  import { WorkflowInstanceStatus, IRPCResponse } from '@develit-io/backend-sdk';
5
5
  import { WorkerEntrypoint } from 'cloudflare:workers';
6
6
  import { DrizzleD1Database } from 'drizzle-orm/d1';
7
7
  import { z } from 'zod';
8
- import 'drizzle-orm/sqlite-core';
8
+ import * as drizzle_zod from 'drizzle-zod';
9
+ import * as drizzle_orm_sqlite_core from 'drizzle-orm/sqlite-core';
9
10
  import 'drizzle-orm';
10
11
  import '@develit-io/general-codes';
11
- import 'drizzle-zod';
12
+ import 'zod/v4/core';
12
13
 
13
14
  declare const sendBatchInputSchema: z.ZodObject<{
14
15
  payments: z.ZodArray<z.ZodObject<{
@@ -3088,24 +3089,551 @@ interface SyncAccountTerminateInput extends z.infer<typeof syncAccountTerminateI
3088
3089
  type SyncAccountTerminateOutput = z.infer<typeof syncAccountTerminateOutputSchema>;
3089
3090
 
3090
3091
  declare const updateAccountInputSchema: z.ZodObject<{
3091
- account: z.ZodObject<{
3092
- lastSyncAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3093
- lastSyncMetadata: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3094
- createdAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3095
- updatedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3096
- deletedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3097
- createdBy: z.ZodOptional<z.ZodString>;
3098
- updatedBy: z.ZodOptional<z.ZodString>;
3099
- deletedBy: z.ZodOptional<z.ZodString>;
3100
- name: z.ZodOptional<z.ZodString>;
3101
- swiftBic: z.ZodOptional<z.ZodString>;
3102
- bicCor: z.ZodOptional<z.ZodString>;
3103
- routingNumber: z.ZodOptional<z.ZodString>;
3104
- sortCode: z.ZodOptional<z.ZodString>;
3105
- clabe: z.ZodOptional<z.ZodString>;
3106
- bsb: z.ZodOptional<z.ZodString>;
3107
- brBankNumber: z.ZodOptional<z.ZodString>;
3108
- address: z.ZodOptional<z.ZodObject<{
3092
+ account: drizzle_zod.BuildSchema<"insert", {
3093
+ countryCode: drizzle_orm_sqlite_core.SQLiteColumn<{
3094
+ name: "country_code";
3095
+ tableName: "account";
3096
+ dataType: "string";
3097
+ columnType: "SQLiteText";
3098
+ data: "AF" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BO" | "BQ" | "BA" | "BW" | "BR" | "IO" | "VG" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "CF" | "TD" | "CL" | "CN" | "CO" | "KM" | "CK" | "CR" | "HR" | "CW" | "CY" | "CZ" | "CD" | "DK" | "DJ" | "DM" | "DO" | "TL" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GR" | "GD" | "GP" | "GU" | "GT" | "GN" | "GW" | "GY" | "HT" | "HN" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "CI" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "XK" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LI" | "LT" | "LU" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MQ" | "MR" | "MU" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "NA" | "NP" | "NL" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "KP" | "NO" | "OM" | "PK" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "CG" | "RE" | "RO" | "RU" | "RW" | "BL" | "KN" | "LC" | "MF" | "VC" | "WS" | "SM" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SO" | "ZA" | "KR" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "TW" | "TJ" | "TZ" | "TH" | "TG" | "TO" | "TT" | "TN" | "TR" | "TM" | "UM" | "VI" | "UG" | "UA" | "AE" | "GB" | "US" | "UZ" | "VU" | "VE" | "VN" | "WF" | "EH" | "YE" | "ZM" | "ZW";
3099
+ driverParam: string;
3100
+ notNull: true;
3101
+ hasDefault: false;
3102
+ isPrimaryKey: false;
3103
+ isAutoincrement: false;
3104
+ hasRuntimeDefault: false;
3105
+ enumValues: ["AF" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BO" | "BQ" | "BA" | "BW" | "BR" | "IO" | "VG" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "CF" | "TD" | "CL" | "CN" | "CO" | "KM" | "CK" | "CR" | "HR" | "CW" | "CY" | "CZ" | "CD" | "DK" | "DJ" | "DM" | "DO" | "TL" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GR" | "GD" | "GP" | "GU" | "GT" | "GN" | "GW" | "GY" | "HT" | "HN" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "CI" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "XK" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LI" | "LT" | "LU" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MQ" | "MR" | "MU" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "NA" | "NP" | "NL" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "KP" | "NO" | "OM" | "PK" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "CG" | "RE" | "RO" | "RU" | "RW" | "BL" | "KN" | "LC" | "MF" | "VC" | "WS" | "SM" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SO" | "ZA" | "KR" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "TW" | "TJ" | "TZ" | "TH" | "TG" | "TO" | "TT" | "TN" | "TR" | "TM" | "UM" | "VI" | "UG" | "UA" | "AE" | "GB" | "US" | "UZ" | "VU" | "VE" | "VN" | "WF" | "EH" | "YE" | "ZM" | "ZW", ...("AF" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BO" | "BQ" | "BA" | "BW" | "BR" | "IO" | "VG" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "CF" | "TD" | "CL" | "CN" | "CO" | "KM" | "CK" | "CR" | "HR" | "CW" | "CY" | "CZ" | "CD" | "DK" | "DJ" | "DM" | "DO" | "TL" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GR" | "GD" | "GP" | "GU" | "GT" | "GN" | "GW" | "GY" | "HT" | "HN" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "CI" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "XK" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LI" | "LT" | "LU" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MQ" | "MR" | "MU" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "NA" | "NP" | "NL" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "KP" | "NO" | "OM" | "PK" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "CG" | "RE" | "RO" | "RU" | "RW" | "BL" | "KN" | "LC" | "MF" | "VC" | "WS" | "SM" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SO" | "ZA" | "KR" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "TW" | "TJ" | "TZ" | "TH" | "TG" | "TO" | "TT" | "TN" | "TR" | "TM" | "UM" | "VI" | "UG" | "UA" | "AE" | "GB" | "US" | "UZ" | "VU" | "VE" | "VN" | "WF" | "EH" | "YE" | "ZM" | "ZW")[]];
3106
+ baseColumn: never;
3107
+ identity: undefined;
3108
+ generated: undefined;
3109
+ }, {}, {
3110
+ length: number | undefined;
3111
+ $type: "AF" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BO" | "BQ" | "BA" | "BW" | "BR" | "IO" | "VG" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "CF" | "TD" | "CL" | "CN" | "CO" | "KM" | "CK" | "CR" | "HR" | "CW" | "CY" | "CZ" | "CD" | "DK" | "DJ" | "DM" | "DO" | "TL" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GR" | "GD" | "GP" | "GU" | "GT" | "GN" | "GW" | "GY" | "HT" | "HN" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "CI" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "XK" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LI" | "LT" | "LU" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MQ" | "MR" | "MU" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "NA" | "NP" | "NL" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "KP" | "NO" | "OM" | "PK" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "CG" | "RE" | "RO" | "RU" | "RW" | "BL" | "KN" | "LC" | "MF" | "VC" | "WS" | "SM" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SO" | "ZA" | "KR" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "TW" | "TJ" | "TZ" | "TH" | "TG" | "TO" | "TT" | "TN" | "TR" | "TM" | "UM" | "VI" | "UG" | "UA" | "AE" | "GB" | "US" | "UZ" | "VU" | "VE" | "VN" | "WF" | "EH" | "YE" | "ZM" | "ZW";
3112
+ }>;
3113
+ number: drizzle_orm_sqlite_core.SQLiteColumn<{
3114
+ name: "number";
3115
+ tableName: "account";
3116
+ dataType: "string";
3117
+ columnType: "SQLiteText";
3118
+ data: string;
3119
+ driverParam: string;
3120
+ notNull: true;
3121
+ hasDefault: false;
3122
+ isPrimaryKey: false;
3123
+ isAutoincrement: false;
3124
+ hasRuntimeDefault: false;
3125
+ enumValues: [string, ...string[]];
3126
+ baseColumn: never;
3127
+ identity: undefined;
3128
+ generated: undefined;
3129
+ }, {}, {
3130
+ length: number | undefined;
3131
+ }>;
3132
+ name: drizzle_orm_sqlite_core.SQLiteColumn<{
3133
+ name: "name";
3134
+ tableName: "account";
3135
+ dataType: "string";
3136
+ columnType: "SQLiteText";
3137
+ data: string;
3138
+ driverParam: string;
3139
+ notNull: false;
3140
+ hasDefault: false;
3141
+ isPrimaryKey: false;
3142
+ isAutoincrement: false;
3143
+ hasRuntimeDefault: false;
3144
+ enumValues: [string, ...string[]];
3145
+ baseColumn: never;
3146
+ identity: undefined;
3147
+ generated: undefined;
3148
+ }, {}, {
3149
+ length: number | undefined;
3150
+ }>;
3151
+ iban: drizzle_orm_sqlite_core.SQLiteColumn<{
3152
+ name: "iban";
3153
+ tableName: "account";
3154
+ dataType: "string";
3155
+ columnType: "SQLiteText";
3156
+ data: string;
3157
+ driverParam: string;
3158
+ notNull: true;
3159
+ hasDefault: false;
3160
+ isPrimaryKey: false;
3161
+ isAutoincrement: false;
3162
+ hasRuntimeDefault: false;
3163
+ enumValues: [string, ...string[]];
3164
+ baseColumn: never;
3165
+ identity: undefined;
3166
+ generated: undefined;
3167
+ }, {}, {
3168
+ length: number | undefined;
3169
+ }>;
3170
+ bankCode: drizzle_orm_sqlite_core.SQLiteColumn<{
3171
+ name: "bank_code";
3172
+ tableName: "account";
3173
+ dataType: "string";
3174
+ columnType: "SQLiteText";
3175
+ data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610";
3176
+ driverParam: string;
3177
+ notNull: true;
3178
+ hasDefault: false;
3179
+ isPrimaryKey: false;
3180
+ isAutoincrement: false;
3181
+ hasRuntimeDefault: false;
3182
+ enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610")[]];
3183
+ baseColumn: never;
3184
+ identity: undefined;
3185
+ generated: undefined;
3186
+ }, {}, {
3187
+ length: number | undefined;
3188
+ }>;
3189
+ connectorKey: drizzle_orm_sqlite_core.SQLiteColumn<{
3190
+ name: "connector_key";
3191
+ tableName: "account";
3192
+ dataType: "string";
3193
+ columnType: "SQLiteText";
3194
+ data: "ERSTE" | "FINBRICKS" | "MOCK" | "CREDITAS" | "MOCK_COBS" | "FIO" | "MONETA" | "DBU" | "CSAS" | "AIRBANK" | "KB" | "CSOB";
3195
+ driverParam: string;
3196
+ notNull: true;
3197
+ hasDefault: false;
3198
+ isPrimaryKey: false;
3199
+ isAutoincrement: false;
3200
+ hasRuntimeDefault: false;
3201
+ enumValues: ["ERSTE", "FINBRICKS", "MOCK", "CREDITAS", "MOCK_COBS", "FIO", "MONETA", "DBU", "CSAS", "AIRBANK", "KB", "CSOB"];
3202
+ baseColumn: never;
3203
+ identity: undefined;
3204
+ generated: undefined;
3205
+ }, {}, {
3206
+ length: number | undefined;
3207
+ $type: "ERSTE" | "FINBRICKS" | "MOCK" | "CREDITAS" | "MOCK_COBS" | "FIO" | "MONETA" | "DBU" | "CSAS" | "AIRBANK" | "KB" | "CSOB";
3208
+ }>;
3209
+ status: drizzle_orm_sqlite_core.SQLiteColumn<{
3210
+ name: "status";
3211
+ tableName: "account";
3212
+ dataType: "string";
3213
+ columnType: "SQLiteText";
3214
+ data: "AUTHORIZED" | "DISABLED" | "EXPIRED";
3215
+ driverParam: string;
3216
+ notNull: true;
3217
+ hasDefault: false;
3218
+ isPrimaryKey: false;
3219
+ isAutoincrement: false;
3220
+ hasRuntimeDefault: false;
3221
+ enumValues: ["AUTHORIZED", "DISABLED", "EXPIRED"];
3222
+ baseColumn: never;
3223
+ identity: undefined;
3224
+ generated: undefined;
3225
+ }, {}, {
3226
+ length: number | undefined;
3227
+ $type: "AUTHORIZED" | "DISABLED" | "EXPIRED";
3228
+ }>;
3229
+ bankRefId: drizzle_orm_sqlite_core.SQLiteColumn<{
3230
+ name: "bank_ref_id";
3231
+ tableName: "account";
3232
+ dataType: "string";
3233
+ columnType: "SQLiteText";
3234
+ data: string;
3235
+ driverParam: string;
3236
+ notNull: true;
3237
+ hasDefault: false;
3238
+ isPrimaryKey: false;
3239
+ isAutoincrement: false;
3240
+ hasRuntimeDefault: false;
3241
+ enumValues: [string, ...string[]];
3242
+ baseColumn: never;
3243
+ identity: undefined;
3244
+ generated: undefined;
3245
+ }, {}, {
3246
+ length: number | undefined;
3247
+ }>;
3248
+ batchSizeLimit: drizzle_orm_sqlite_core.SQLiteColumn<{
3249
+ name: "batch_size_limit";
3250
+ tableName: "account";
3251
+ dataType: "number";
3252
+ columnType: "SQLiteInteger";
3253
+ data: number;
3254
+ driverParam: number;
3255
+ notNull: true;
3256
+ hasDefault: true;
3257
+ isPrimaryKey: false;
3258
+ isAutoincrement: false;
3259
+ hasRuntimeDefault: false;
3260
+ enumValues: undefined;
3261
+ baseColumn: never;
3262
+ identity: undefined;
3263
+ generated: undefined;
3264
+ }, {}, {}>;
3265
+ syncIntervalS: drizzle_orm_sqlite_core.SQLiteColumn<{
3266
+ name: "sync_interval_s";
3267
+ tableName: "account";
3268
+ dataType: "number";
3269
+ columnType: "SQLiteInteger";
3270
+ data: number;
3271
+ driverParam: number;
3272
+ notNull: true;
3273
+ hasDefault: true;
3274
+ isPrimaryKey: false;
3275
+ isAutoincrement: false;
3276
+ hasRuntimeDefault: false;
3277
+ enumValues: undefined;
3278
+ baseColumn: never;
3279
+ identity: undefined;
3280
+ generated: undefined;
3281
+ }, {}, {}>;
3282
+ lastSyncAt: drizzle_orm_sqlite_core.SQLiteColumn<{
3283
+ name: "last_sync_at";
3284
+ tableName: "account";
3285
+ dataType: "date";
3286
+ columnType: "SQLiteTimestamp";
3287
+ data: Date;
3288
+ driverParam: number;
3289
+ notNull: false;
3290
+ hasDefault: false;
3291
+ isPrimaryKey: false;
3292
+ isAutoincrement: false;
3293
+ hasRuntimeDefault: false;
3294
+ enumValues: undefined;
3295
+ baseColumn: never;
3296
+ identity: undefined;
3297
+ generated: undefined;
3298
+ }, {}, {}>;
3299
+ lastSyncMetadata: drizzle_orm_sqlite_core.SQLiteColumn<{
3300
+ name: "last_sync_metadata";
3301
+ tableName: "account";
3302
+ dataType: "json";
3303
+ columnType: "SQLiteTextJson";
3304
+ data: LastSyncMetadata;
3305
+ driverParam: string;
3306
+ notNull: false;
3307
+ hasDefault: false;
3308
+ isPrimaryKey: false;
3309
+ isAutoincrement: false;
3310
+ hasRuntimeDefault: false;
3311
+ enumValues: undefined;
3312
+ baseColumn: never;
3313
+ identity: undefined;
3314
+ generated: undefined;
3315
+ }, {}, {
3316
+ $type: LastSyncMetadata;
3317
+ }>;
3318
+ holderName: drizzle_orm_sqlite_core.SQLiteColumn<{
3319
+ name: "holder_name";
3320
+ tableName: "account";
3321
+ dataType: "string";
3322
+ columnType: "SQLiteText";
3323
+ data: string;
3324
+ driverParam: string;
3325
+ notNull: true;
3326
+ hasDefault: false;
3327
+ isPrimaryKey: false;
3328
+ isAutoincrement: false;
3329
+ hasRuntimeDefault: false;
3330
+ enumValues: [string, ...string[]];
3331
+ baseColumn: never;
3332
+ identity: undefined;
3333
+ generated: undefined;
3334
+ }, {}, {
3335
+ length: number | undefined;
3336
+ }>;
3337
+ address: drizzle_orm_sqlite_core.SQLiteColumn<{
3338
+ name: "address";
3339
+ tableName: "account";
3340
+ dataType: "json";
3341
+ columnType: "SQLiteTextJson";
3342
+ data: _develit_io_backend_sdk.StructuredAddress | null;
3343
+ driverParam: string;
3344
+ notNull: false;
3345
+ hasDefault: false;
3346
+ isPrimaryKey: false;
3347
+ isAutoincrement: false;
3348
+ hasRuntimeDefault: false;
3349
+ enumValues: undefined;
3350
+ baseColumn: never;
3351
+ identity: undefined;
3352
+ generated: undefined;
3353
+ }, {}, {
3354
+ $type: _develit_io_backend_sdk.StructuredAddress | null;
3355
+ }>;
3356
+ swiftBic: drizzle_orm_sqlite_core.SQLiteColumn<{
3357
+ name: "swift_bic";
3358
+ tableName: "account";
3359
+ dataType: "string";
3360
+ columnType: "SQLiteText";
3361
+ data: string;
3362
+ driverParam: string;
3363
+ notNull: false;
3364
+ hasDefault: false;
3365
+ isPrimaryKey: false;
3366
+ isAutoincrement: false;
3367
+ hasRuntimeDefault: false;
3368
+ enumValues: [string, ...string[]];
3369
+ baseColumn: never;
3370
+ identity: undefined;
3371
+ generated: undefined;
3372
+ }, {}, {
3373
+ length: number | undefined;
3374
+ }>;
3375
+ bicCor: drizzle_orm_sqlite_core.SQLiteColumn<{
3376
+ name: "bic_cor";
3377
+ tableName: "account";
3378
+ dataType: "string";
3379
+ columnType: "SQLiteText";
3380
+ data: string;
3381
+ driverParam: string;
3382
+ notNull: false;
3383
+ hasDefault: false;
3384
+ isPrimaryKey: false;
3385
+ isAutoincrement: false;
3386
+ hasRuntimeDefault: false;
3387
+ enumValues: [string, ...string[]];
3388
+ baseColumn: never;
3389
+ identity: undefined;
3390
+ generated: undefined;
3391
+ }, {}, {
3392
+ length: number | undefined;
3393
+ }>;
3394
+ currency: drizzle_orm_sqlite_core.SQLiteColumn<{
3395
+ name: "currency";
3396
+ tableName: "account";
3397
+ dataType: "string";
3398
+ columnType: "SQLiteText";
3399
+ data: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
3400
+ driverParam: string;
3401
+ notNull: true;
3402
+ hasDefault: false;
3403
+ isPrimaryKey: false;
3404
+ isAutoincrement: false;
3405
+ hasRuntimeDefault: false;
3406
+ enumValues: ["CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX", ...("CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX")[]];
3407
+ baseColumn: never;
3408
+ identity: undefined;
3409
+ generated: undefined;
3410
+ }, {}, {
3411
+ length: number | undefined;
3412
+ }>;
3413
+ routingNumber: drizzle_orm_sqlite_core.SQLiteColumn<{
3414
+ name: "routing_number";
3415
+ tableName: "account";
3416
+ dataType: "string";
3417
+ columnType: "SQLiteText";
3418
+ data: string;
3419
+ driverParam: string;
3420
+ notNull: false;
3421
+ hasDefault: false;
3422
+ isPrimaryKey: false;
3423
+ isAutoincrement: false;
3424
+ hasRuntimeDefault: false;
3425
+ enumValues: [string, ...string[]];
3426
+ baseColumn: never;
3427
+ identity: undefined;
3428
+ generated: undefined;
3429
+ }, {}, {
3430
+ length: number | undefined;
3431
+ }>;
3432
+ sortCode: drizzle_orm_sqlite_core.SQLiteColumn<{
3433
+ name: "sort_code";
3434
+ tableName: "account";
3435
+ dataType: "string";
3436
+ columnType: "SQLiteText";
3437
+ data: string;
3438
+ driverParam: string;
3439
+ notNull: false;
3440
+ hasDefault: false;
3441
+ isPrimaryKey: false;
3442
+ isAutoincrement: false;
3443
+ hasRuntimeDefault: false;
3444
+ enumValues: [string, ...string[]];
3445
+ baseColumn: never;
3446
+ identity: undefined;
3447
+ generated: undefined;
3448
+ }, {}, {
3449
+ length: number | undefined;
3450
+ }>;
3451
+ clabe: drizzle_orm_sqlite_core.SQLiteColumn<{
3452
+ name: "clabe";
3453
+ tableName: "account";
3454
+ dataType: "string";
3455
+ columnType: "SQLiteText";
3456
+ data: string;
3457
+ driverParam: string;
3458
+ notNull: false;
3459
+ hasDefault: false;
3460
+ isPrimaryKey: false;
3461
+ isAutoincrement: false;
3462
+ hasRuntimeDefault: false;
3463
+ enumValues: [string, ...string[]];
3464
+ baseColumn: never;
3465
+ identity: undefined;
3466
+ generated: undefined;
3467
+ }, {}, {
3468
+ length: number | undefined;
3469
+ }>;
3470
+ bsb: drizzle_orm_sqlite_core.SQLiteColumn<{
3471
+ name: "bsb";
3472
+ tableName: "account";
3473
+ dataType: "string";
3474
+ columnType: "SQLiteText";
3475
+ data: string;
3476
+ driverParam: string;
3477
+ notNull: false;
3478
+ hasDefault: false;
3479
+ isPrimaryKey: false;
3480
+ isAutoincrement: false;
3481
+ hasRuntimeDefault: false;
3482
+ enumValues: [string, ...string[]];
3483
+ baseColumn: never;
3484
+ identity: undefined;
3485
+ generated: undefined;
3486
+ }, {}, {
3487
+ length: number | undefined;
3488
+ }>;
3489
+ brBankNumber: drizzle_orm_sqlite_core.SQLiteColumn<{
3490
+ name: "br_bank_number";
3491
+ tableName: "account";
3492
+ dataType: "string";
3493
+ columnType: "SQLiteText";
3494
+ data: string;
3495
+ driverParam: string;
3496
+ notNull: false;
3497
+ hasDefault: false;
3498
+ isPrimaryKey: false;
3499
+ isAutoincrement: false;
3500
+ hasRuntimeDefault: false;
3501
+ enumValues: [string, ...string[]];
3502
+ baseColumn: never;
3503
+ identity: undefined;
3504
+ generated: undefined;
3505
+ }, {}, {
3506
+ length: number | undefined;
3507
+ }>;
3508
+ id: drizzle_orm_sqlite_core.SQLiteColumn<{
3509
+ name: "id";
3510
+ tableName: "account";
3511
+ dataType: "string";
3512
+ columnType: "SQLiteText";
3513
+ data: string;
3514
+ driverParam: string;
3515
+ notNull: true;
3516
+ hasDefault: false;
3517
+ isPrimaryKey: true;
3518
+ isAutoincrement: false;
3519
+ hasRuntimeDefault: false;
3520
+ enumValues: [string, ...string[]];
3521
+ baseColumn: never;
3522
+ identity: undefined;
3523
+ generated: undefined;
3524
+ }, {}, {
3525
+ length: number | undefined;
3526
+ }>;
3527
+ createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
3528
+ name: "created_at";
3529
+ tableName: "account";
3530
+ dataType: "date";
3531
+ columnType: "SQLiteTimestamp";
3532
+ data: Date;
3533
+ driverParam: number;
3534
+ notNull: false;
3535
+ hasDefault: true;
3536
+ isPrimaryKey: false;
3537
+ isAutoincrement: false;
3538
+ hasRuntimeDefault: false;
3539
+ enumValues: undefined;
3540
+ baseColumn: never;
3541
+ identity: undefined;
3542
+ generated: undefined;
3543
+ }, {}, {}>;
3544
+ createdBy: drizzle_orm_sqlite_core.SQLiteColumn<{
3545
+ name: "created_by";
3546
+ tableName: "account";
3547
+ dataType: "string";
3548
+ columnType: "SQLiteText";
3549
+ data: string;
3550
+ driverParam: string;
3551
+ notNull: false;
3552
+ hasDefault: true;
3553
+ isPrimaryKey: false;
3554
+ isAutoincrement: false;
3555
+ hasRuntimeDefault: false;
3556
+ enumValues: [string, ...string[]];
3557
+ baseColumn: never;
3558
+ identity: undefined;
3559
+ generated: undefined;
3560
+ }, {}, {
3561
+ length: number | undefined;
3562
+ }>;
3563
+ updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
3564
+ name: "updated_at";
3565
+ tableName: "account";
3566
+ dataType: "date";
3567
+ columnType: "SQLiteTimestamp";
3568
+ data: Date;
3569
+ driverParam: number;
3570
+ notNull: false;
3571
+ hasDefault: true;
3572
+ isPrimaryKey: false;
3573
+ isAutoincrement: false;
3574
+ hasRuntimeDefault: false;
3575
+ enumValues: undefined;
3576
+ baseColumn: never;
3577
+ identity: undefined;
3578
+ generated: undefined;
3579
+ }, {}, {}>;
3580
+ updatedBy: drizzle_orm_sqlite_core.SQLiteColumn<{
3581
+ name: "updated_by";
3582
+ tableName: "account";
3583
+ dataType: "string";
3584
+ columnType: "SQLiteText";
3585
+ data: string;
3586
+ driverParam: string;
3587
+ notNull: false;
3588
+ hasDefault: true;
3589
+ isPrimaryKey: false;
3590
+ isAutoincrement: false;
3591
+ hasRuntimeDefault: false;
3592
+ enumValues: [string, ...string[]];
3593
+ baseColumn: never;
3594
+ identity: undefined;
3595
+ generated: undefined;
3596
+ }, {}, {
3597
+ length: number | undefined;
3598
+ }>;
3599
+ deletedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
3600
+ name: "deleted_at";
3601
+ tableName: "account";
3602
+ dataType: "date";
3603
+ columnType: "SQLiteTimestamp";
3604
+ data: Date;
3605
+ driverParam: number;
3606
+ notNull: false;
3607
+ hasDefault: true;
3608
+ isPrimaryKey: false;
3609
+ isAutoincrement: false;
3610
+ hasRuntimeDefault: false;
3611
+ enumValues: undefined;
3612
+ baseColumn: never;
3613
+ identity: undefined;
3614
+ generated: undefined;
3615
+ }, {}, {}>;
3616
+ deletedBy: drizzle_orm_sqlite_core.SQLiteColumn<{
3617
+ name: "deleted_by";
3618
+ tableName: "account";
3619
+ dataType: "string";
3620
+ columnType: "SQLiteText";
3621
+ data: string;
3622
+ driverParam: string;
3623
+ notNull: false;
3624
+ hasDefault: true;
3625
+ isPrimaryKey: false;
3626
+ isAutoincrement: false;
3627
+ hasRuntimeDefault: false;
3628
+ enumValues: [string, ...string[]];
3629
+ baseColumn: never;
3630
+ identity: undefined;
3631
+ generated: undefined;
3632
+ }, {}, {
3633
+ length: number | undefined;
3634
+ }>;
3635
+ }, {
3636
+ address: () => z.ZodOptional<z.ZodObject<{
3109
3637
  streetName: z.ZodOptional<z.ZodString>;
3110
3638
  buildingNumber: z.ZodOptional<z.ZodString>;
3111
3639
  city: z.ZodOptional<z.ZodString>;
@@ -3324,367 +3852,7 @@ declare const updateAccountInputSchema: z.ZodObject<{
3324
3852
  ZW: "ZW";
3325
3853
  }>>;
3326
3854
  }, z.core.$strip>>;
3327
- id: z.ZodString;
3328
- holderName: z.ZodString;
3329
- number: z.ZodString;
3330
- iban: z.ZodString;
3331
- bankCode: z.ZodEnum<{
3332
- 5051: "5051";
3333
- "0100": "0100";
3334
- "0300": "0300";
3335
- "0600": "0600";
3336
- "0710": "0710";
3337
- "0800": "0800";
3338
- 2010: "2010";
3339
- 2020: "2020";
3340
- 2030: "2030";
3341
- 2060: "2060";
3342
- 2070: "2070";
3343
- 2100: "2100";
3344
- 2200: "2200";
3345
- 2210: "2210";
3346
- 2220: "2220";
3347
- 2240: "2240";
3348
- 2250: "2250";
3349
- 2260: "2260";
3350
- 2310: "2310";
3351
- 2600: "2600";
3352
- 2700: "2700";
3353
- 3030: "3030";
3354
- 3050: "3050";
3355
- 3060: "3060";
3356
- 3500: "3500";
3357
- 4000: "4000";
3358
- 4300: "4300";
3359
- 5500: "5500";
3360
- 5400: "5400";
3361
- 5800: "5800";
3362
- 6000: "6000";
3363
- 6100: "6100";
3364
- 6200: "6200";
3365
- 6210: "6210";
3366
- 6300: "6300";
3367
- 6363: "6363";
3368
- 6700: "6700";
3369
- 6800: "6800";
3370
- 7940: "7940";
3371
- 7910: "7910";
3372
- 7950: "7950";
3373
- 7960: "7960";
3374
- 7980: "7980";
3375
- 7970: "7970";
3376
- 7990: "7990";
3377
- 8030: "8030";
3378
- 8040: "8040";
3379
- 8060: "8060";
3380
- 8090: "8090";
3381
- 8150: "8150";
3382
- 8190: "8190";
3383
- 8198: "8198";
3384
- 8200: "8200";
3385
- 8220: "8220";
3386
- 8230: "8230";
3387
- 8240: "8240";
3388
- 8250: "8250";
3389
- 8255: "8255";
3390
- 8265: "8265";
3391
- 8500: "8500";
3392
- 8610: "8610";
3393
- }>;
3394
- countryCode: z.ZodEnum<{
3395
- AF: "AF";
3396
- AL: "AL";
3397
- DZ: "DZ";
3398
- AS: "AS";
3399
- AD: "AD";
3400
- AO: "AO";
3401
- AG: "AG";
3402
- AR: "AR";
3403
- AM: "AM";
3404
- AW: "AW";
3405
- AU: "AU";
3406
- AT: "AT";
3407
- AZ: "AZ";
3408
- BS: "BS";
3409
- BH: "BH";
3410
- BD: "BD";
3411
- BB: "BB";
3412
- BY: "BY";
3413
- BE: "BE";
3414
- BZ: "BZ";
3415
- BJ: "BJ";
3416
- BO: "BO";
3417
- BQ: "BQ";
3418
- BA: "BA";
3419
- BW: "BW";
3420
- BR: "BR";
3421
- IO: "IO";
3422
- VG: "VG";
3423
- BG: "BG";
3424
- BF: "BF";
3425
- BI: "BI";
3426
- KH: "KH";
3427
- CM: "CM";
3428
- CA: "CA";
3429
- CV: "CV";
3430
- CF: "CF";
3431
- TD: "TD";
3432
- CL: "CL";
3433
- CN: "CN";
3434
- CO: "CO";
3435
- KM: "KM";
3436
- CK: "CK";
3437
- CR: "CR";
3438
- HR: "HR";
3439
- CW: "CW";
3440
- CY: "CY";
3441
- CZ: "CZ";
3442
- CD: "CD";
3443
- DK: "DK";
3444
- DJ: "DJ";
3445
- DM: "DM";
3446
- DO: "DO";
3447
- TL: "TL";
3448
- EC: "EC";
3449
- EG: "EG";
3450
- SV: "SV";
3451
- GQ: "GQ";
3452
- ER: "ER";
3453
- EE: "EE";
3454
- ET: "ET";
3455
- FO: "FO";
3456
- FJ: "FJ";
3457
- FI: "FI";
3458
- FR: "FR";
3459
- GF: "GF";
3460
- PF: "PF";
3461
- GA: "GA";
3462
- GM: "GM";
3463
- GE: "GE";
3464
- DE: "DE";
3465
- GH: "GH";
3466
- GR: "GR";
3467
- GD: "GD";
3468
- GP: "GP";
3469
- GU: "GU";
3470
- GT: "GT";
3471
- GN: "GN";
3472
- GW: "GW";
3473
- GY: "GY";
3474
- HT: "HT";
3475
- HN: "HN";
3476
- HU: "HU";
3477
- IS: "IS";
3478
- IN: "IN";
3479
- ID: "ID";
3480
- IR: "IR";
3481
- IQ: "IQ";
3482
- IE: "IE";
3483
- IM: "IM";
3484
- IL: "IL";
3485
- IT: "IT";
3486
- CI: "CI";
3487
- JM: "JM";
3488
- JP: "JP";
3489
- JE: "JE";
3490
- JO: "JO";
3491
- KZ: "KZ";
3492
- KE: "KE";
3493
- KI: "KI";
3494
- XK: "XK";
3495
- KW: "KW";
3496
- KG: "KG";
3497
- LA: "LA";
3498
- LV: "LV";
3499
- LB: "LB";
3500
- LS: "LS";
3501
- LR: "LR";
3502
- LI: "LI";
3503
- LT: "LT";
3504
- LU: "LU";
3505
- MK: "MK";
3506
- MG: "MG";
3507
- MW: "MW";
3508
- MY: "MY";
3509
- MV: "MV";
3510
- ML: "ML";
3511
- MT: "MT";
3512
- MQ: "MQ";
3513
- MR: "MR";
3514
- MU: "MU";
3515
- MX: "MX";
3516
- FM: "FM";
3517
- MD: "MD";
3518
- MC: "MC";
3519
- MN: "MN";
3520
- ME: "ME";
3521
- MS: "MS";
3522
- MA: "MA";
3523
- MZ: "MZ";
3524
- NA: "NA";
3525
- NP: "NP";
3526
- NL: "NL";
3527
- NZ: "NZ";
3528
- NI: "NI";
3529
- NE: "NE";
3530
- NG: "NG";
3531
- NU: "NU";
3532
- NF: "NF";
3533
- KP: "KP";
3534
- NO: "NO";
3535
- OM: "OM";
3536
- PK: "PK";
3537
- PS: "PS";
3538
- PA: "PA";
3539
- PG: "PG";
3540
- PY: "PY";
3541
- PE: "PE";
3542
- PH: "PH";
3543
- PL: "PL";
3544
- PT: "PT";
3545
- PR: "PR";
3546
- QA: "QA";
3547
- CG: "CG";
3548
- RE: "RE";
3549
- RO: "RO";
3550
- RU: "RU";
3551
- RW: "RW";
3552
- BL: "BL";
3553
- KN: "KN";
3554
- LC: "LC";
3555
- MF: "MF";
3556
- VC: "VC";
3557
- WS: "WS";
3558
- SM: "SM";
3559
- SA: "SA";
3560
- SN: "SN";
3561
- RS: "RS";
3562
- SC: "SC";
3563
- SL: "SL";
3564
- SG: "SG";
3565
- SX: "SX";
3566
- SK: "SK";
3567
- SI: "SI";
3568
- SO: "SO";
3569
- ZA: "ZA";
3570
- KR: "KR";
3571
- SS: "SS";
3572
- ES: "ES";
3573
- LK: "LK";
3574
- SD: "SD";
3575
- SR: "SR";
3576
- SJ: "SJ";
3577
- SZ: "SZ";
3578
- SE: "SE";
3579
- CH: "CH";
3580
- TW: "TW";
3581
- TJ: "TJ";
3582
- TZ: "TZ";
3583
- TH: "TH";
3584
- TG: "TG";
3585
- TO: "TO";
3586
- TT: "TT";
3587
- TN: "TN";
3588
- TR: "TR";
3589
- TM: "TM";
3590
- UM: "UM";
3591
- VI: "VI";
3592
- UG: "UG";
3593
- UA: "UA";
3594
- AE: "AE";
3595
- GB: "GB";
3596
- US: "US";
3597
- UZ: "UZ";
3598
- VU: "VU";
3599
- VE: "VE";
3600
- VN: "VN";
3601
- WF: "WF";
3602
- EH: "EH";
3603
- YE: "YE";
3604
- ZM: "ZM";
3605
- ZW: "ZW";
3606
- }>;
3607
- currency: z.ZodEnum<{
3608
- CZK: "CZK";
3609
- EUR: "EUR";
3610
- USD: "USD";
3611
- PLN: "PLN";
3612
- RON: "RON";
3613
- GBP: "GBP";
3614
- RUB: "RUB";
3615
- HUF: "HUF";
3616
- CHF: "CHF";
3617
- DKK: "DKK";
3618
- SEK: "SEK";
3619
- HRK: "HRK";
3620
- NOK: "NOK";
3621
- BGN: "BGN";
3622
- TRY: "TRY";
3623
- AUD: "AUD";
3624
- CAD: "CAD";
3625
- JPY: "JPY";
3626
- CNY: "CNY";
3627
- INR: "INR";
3628
- BRL: "BRL";
3629
- MXN: "MXN";
3630
- ZAR: "ZAR";
3631
- SGD: "SGD";
3632
- HKD: "HKD";
3633
- KRW: "KRW";
3634
- MYR: "MYR";
3635
- THB: "THB";
3636
- IDR: "IDR";
3637
- PHP: "PHP";
3638
- AED: "AED";
3639
- SAR: "SAR";
3640
- ILS: "ILS";
3641
- EGP: "EGP";
3642
- NGN: "NGN";
3643
- PKR: "PKR";
3644
- COP: "COP";
3645
- CLP: "CLP";
3646
- PEN: "PEN";
3647
- VND: "VND";
3648
- KZT: "KZT";
3649
- UAH: "UAH";
3650
- BTC: "BTC";
3651
- ETH: "ETH";
3652
- ADA: "ADA";
3653
- DOT: "DOT";
3654
- ATOM: "ATOM";
3655
- XRP: "XRP";
3656
- LTC: "LTC";
3657
- SOL: "SOL";
3658
- DOGE: "DOGE";
3659
- MATIC: "MATIC";
3660
- AVAX: "AVAX";
3661
- }>;
3662
- connectorKey: z.ZodEnum<{
3663
- ERSTE: "ERSTE";
3664
- FINBRICKS: "FINBRICKS";
3665
- MOCK: "MOCK";
3666
- CREDITAS: "CREDITAS";
3667
- MOCK_COBS: "MOCK_COBS";
3668
- FIO: "FIO";
3669
- MONETA: "MONETA";
3670
- DBU: "DBU";
3671
- CSAS: "CSAS";
3672
- AIRBANK: "AIRBANK";
3673
- KB: "KB";
3674
- CSOB: "CSOB";
3675
- }>;
3676
- status: z.ZodEnum<{
3677
- AUTHORIZED: "AUTHORIZED";
3678
- DISABLED: "DISABLED";
3679
- EXPIRED: "EXPIRED";
3680
- }>;
3681
- bankRefId: z.ZodString;
3682
- batchSizeLimit: z.ZodNumber;
3683
- syncIntervalS: z.ZodNumber;
3684
- }, {
3685
- out: {};
3686
- in: {};
3687
- }>;
3855
+ }, undefined>;
3688
3856
  }, z.core.$strip>;
3689
3857
  type UpdateAccountInput = z.infer<typeof updateAccountInputSchema>;
3690
3858
  type UpdateAccountOutput = AccountSelectType;