@develit-services/bank 1.1.10 → 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 -1
  2. package/dist/database/schema.d.cts +1 -1
  3. package/dist/database/schema.d.mts +1 -1
  4. package/dist/database/schema.d.ts +1 -1
  5. package/dist/database/schema.mjs +1 -1
  6. package/dist/export/worker.cjs +4 -4
  7. package/dist/export/worker.d.cts +553 -386
  8. package/dist/export/worker.d.mts +553 -386
  9. package/dist/export/worker.d.ts +553 -386
  10. package/dist/export/worker.mjs +4 -4
  11. package/dist/export/workflows.cjs +3 -3
  12. package/dist/export/workflows.mjs +3 -3
  13. package/dist/shared/{bank.D-UVTx8r.d.mts → bank.0qMwPptW.d.mts} +1 -1
  14. package/dist/shared/{bank.DKhgxX0w.cjs → bank.B0EWZbAs.cjs} +1 -1
  15. package/dist/shared/{bank.C8ZtMWui.d.mts → bank.BdPwLsVN.d.cts} +1816 -1315
  16. package/dist/shared/{bank.C8ZtMWui.d.ts → bank.BdPwLsVN.d.mts} +1816 -1315
  17. package/dist/shared/{bank.C8ZtMWui.d.cts → bank.BdPwLsVN.d.ts} +1816 -1315
  18. package/dist/shared/{bank.ab5nxoKB.mjs → bank.BsKwYyaC.mjs} +1 -1
  19. package/dist/shared/{bank.B0AyRMDu.mjs → bank.C7MA33AX.mjs} +6 -6
  20. package/dist/shared/{bank.BsrwccTg.cjs → bank.CIWYI18z.cjs} +6 -6
  21. package/dist/shared/{bank.DR1M9uz_.cjs → bank.CpEGzmAr.cjs} +1 -1
  22. package/dist/shared/{bank.D9mKm0Ix.d.cts → bank.DC_KeizP.d.cts} +1 -1
  23. package/dist/shared/{bank.DPpxjTzG.mjs → bank.UBWdag5k.mjs} +1 -1
  24. package/dist/shared/{bank.BHHZnzlp.d.ts → bank.pwjbFn6Q.d.ts} +1 -1
  25. package/dist/types.cjs +2 -2
  26. package/dist/types.d.cts +4 -4
  27. package/dist/types.d.mts +4 -4
  28. package/dist/types.d.ts +4 -4
  29. package/dist/types.mjs +2 -2
  30. package/package.json +1 -1
@@ -1,14 +1,14 @@
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.C8ZtMWui.cjs';
2
- import { S as SendPaymentInput, a as SendPaymentOutput, b as SendPaymentSyncInput, c as SendPaymentSyncOutput, F as FinbricksSupportedBanksResponse } from '../shared/bank.D9mKm0Ix.cjs';
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.cjs';
2
+ import { S as SendPaymentInput, a as SendPaymentOutput, b as SendPaymentSyncInput, c as SendPaymentSyncOutput, F as FinbricksSupportedBanksResponse } from '../shared/bank.DC_KeizP.cjs';
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
12
  import 'zod/v4/core';
13
13
 
14
14
  declare const sendBatchInputSchema: z.ZodObject<{
@@ -2949,19 +2949,19 @@ declare const getPaymentsInputSchema: z.ZodObject<{
2949
2949
  filterPaymentDateTo: z.ZodOptional<z.ZodDate>;
2950
2950
  filterPaymentStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
2951
2951
  PROCESSING: "PROCESSING";
2952
- BOOKED: "BOOKED";
2953
- REJECTED: "REJECTED";
2954
2952
  PENDING: "PENDING";
2953
+ BOOKED: "BOOKED";
2955
2954
  CANCELLED: "CANCELLED";
2955
+ REJECTED: "REJECTED";
2956
2956
  SCHEDULED: "SCHEDULED";
2957
2957
  HOLD: "HOLD";
2958
2958
  INFO: "INFO";
2959
2959
  }>, z.ZodArray<z.ZodEnum<{
2960
2960
  PROCESSING: "PROCESSING";
2961
- BOOKED: "BOOKED";
2962
- REJECTED: "REJECTED";
2963
2961
  PENDING: "PENDING";
2962
+ BOOKED: "BOOKED";
2964
2963
  CANCELLED: "CANCELLED";
2964
+ REJECTED: "REJECTED";
2965
2965
  SCHEDULED: "SCHEDULED";
2966
2966
  HOLD: "HOLD";
2967
2967
  INFO: "INFO";
@@ -3089,381 +3089,551 @@ interface SyncAccountTerminateInput extends z.infer<typeof syncAccountTerminateI
3089
3089
  type SyncAccountTerminateOutput = z.infer<typeof syncAccountTerminateOutputSchema>;
3090
3090
 
3091
3091
  declare const updateAccountInputSchema: z.ZodObject<{
3092
- account: z.ZodObject<{
3093
- countryCode: z.ZodEnum<{
3094
- AF: "AF";
3095
- AL: "AL";
3096
- DZ: "DZ";
3097
- AS: "AS";
3098
- AD: "AD";
3099
- AO: "AO";
3100
- AG: "AG";
3101
- AR: "AR";
3102
- AM: "AM";
3103
- AW: "AW";
3104
- AU: "AU";
3105
- AT: "AT";
3106
- AZ: "AZ";
3107
- BS: "BS";
3108
- BH: "BH";
3109
- BD: "BD";
3110
- BB: "BB";
3111
- BY: "BY";
3112
- BE: "BE";
3113
- BZ: "BZ";
3114
- BJ: "BJ";
3115
- BO: "BO";
3116
- BQ: "BQ";
3117
- BA: "BA";
3118
- BW: "BW";
3119
- BR: "BR";
3120
- IO: "IO";
3121
- VG: "VG";
3122
- BG: "BG";
3123
- BF: "BF";
3124
- BI: "BI";
3125
- KH: "KH";
3126
- CM: "CM";
3127
- CA: "CA";
3128
- CV: "CV";
3129
- CF: "CF";
3130
- TD: "TD";
3131
- CL: "CL";
3132
- CN: "CN";
3133
- CO: "CO";
3134
- KM: "KM";
3135
- CK: "CK";
3136
- CR: "CR";
3137
- HR: "HR";
3138
- CW: "CW";
3139
- CY: "CY";
3140
- CZ: "CZ";
3141
- CD: "CD";
3142
- DK: "DK";
3143
- DJ: "DJ";
3144
- DM: "DM";
3145
- DO: "DO";
3146
- TL: "TL";
3147
- EC: "EC";
3148
- EG: "EG";
3149
- SV: "SV";
3150
- GQ: "GQ";
3151
- ER: "ER";
3152
- EE: "EE";
3153
- ET: "ET";
3154
- FO: "FO";
3155
- FJ: "FJ";
3156
- FI: "FI";
3157
- FR: "FR";
3158
- GF: "GF";
3159
- PF: "PF";
3160
- GA: "GA";
3161
- GM: "GM";
3162
- GE: "GE";
3163
- DE: "DE";
3164
- GH: "GH";
3165
- GR: "GR";
3166
- GD: "GD";
3167
- GP: "GP";
3168
- GU: "GU";
3169
- GT: "GT";
3170
- GN: "GN";
3171
- GW: "GW";
3172
- GY: "GY";
3173
- HT: "HT";
3174
- HN: "HN";
3175
- HU: "HU";
3176
- IS: "IS";
3177
- IN: "IN";
3178
- ID: "ID";
3179
- IR: "IR";
3180
- IQ: "IQ";
3181
- IE: "IE";
3182
- IM: "IM";
3183
- IL: "IL";
3184
- IT: "IT";
3185
- CI: "CI";
3186
- JM: "JM";
3187
- JP: "JP";
3188
- JE: "JE";
3189
- JO: "JO";
3190
- KZ: "KZ";
3191
- KE: "KE";
3192
- KI: "KI";
3193
- XK: "XK";
3194
- KW: "KW";
3195
- KG: "KG";
3196
- LA: "LA";
3197
- LV: "LV";
3198
- LB: "LB";
3199
- LS: "LS";
3200
- LR: "LR";
3201
- LI: "LI";
3202
- LT: "LT";
3203
- LU: "LU";
3204
- MK: "MK";
3205
- MG: "MG";
3206
- MW: "MW";
3207
- MY: "MY";
3208
- MV: "MV";
3209
- ML: "ML";
3210
- MT: "MT";
3211
- MQ: "MQ";
3212
- MR: "MR";
3213
- MU: "MU";
3214
- MX: "MX";
3215
- FM: "FM";
3216
- MD: "MD";
3217
- MC: "MC";
3218
- MN: "MN";
3219
- ME: "ME";
3220
- MS: "MS";
3221
- MA: "MA";
3222
- MZ: "MZ";
3223
- NA: "NA";
3224
- NP: "NP";
3225
- NL: "NL";
3226
- NZ: "NZ";
3227
- NI: "NI";
3228
- NE: "NE";
3229
- NG: "NG";
3230
- NU: "NU";
3231
- NF: "NF";
3232
- KP: "KP";
3233
- NO: "NO";
3234
- OM: "OM";
3235
- PK: "PK";
3236
- PS: "PS";
3237
- PA: "PA";
3238
- PG: "PG";
3239
- PY: "PY";
3240
- PE: "PE";
3241
- PH: "PH";
3242
- PL: "PL";
3243
- PT: "PT";
3244
- PR: "PR";
3245
- QA: "QA";
3246
- CG: "CG";
3247
- RE: "RE";
3248
- RO: "RO";
3249
- RU: "RU";
3250
- RW: "RW";
3251
- BL: "BL";
3252
- KN: "KN";
3253
- LC: "LC";
3254
- MF: "MF";
3255
- VC: "VC";
3256
- WS: "WS";
3257
- SM: "SM";
3258
- SA: "SA";
3259
- SN: "SN";
3260
- RS: "RS";
3261
- SC: "SC";
3262
- SL: "SL";
3263
- SG: "SG";
3264
- SX: "SX";
3265
- SK: "SK";
3266
- SI: "SI";
3267
- SO: "SO";
3268
- ZA: "ZA";
3269
- KR: "KR";
3270
- SS: "SS";
3271
- ES: "ES";
3272
- LK: "LK";
3273
- SD: "SD";
3274
- SR: "SR";
3275
- SJ: "SJ";
3276
- SZ: "SZ";
3277
- SE: "SE";
3278
- CH: "CH";
3279
- TW: "TW";
3280
- TJ: "TJ";
3281
- TZ: "TZ";
3282
- TH: "TH";
3283
- TG: "TG";
3284
- TO: "TO";
3285
- TT: "TT";
3286
- TN: "TN";
3287
- TR: "TR";
3288
- TM: "TM";
3289
- UM: "UM";
3290
- VI: "VI";
3291
- UG: "UG";
3292
- UA: "UA";
3293
- AE: "AE";
3294
- GB: "GB";
3295
- US: "US";
3296
- UZ: "UZ";
3297
- VU: "VU";
3298
- VE: "VE";
3299
- VN: "VN";
3300
- WF: "WF";
3301
- EH: "EH";
3302
- YE: "YE";
3303
- ZM: "ZM";
3304
- ZW: "ZW";
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";
3305
3112
  }>;
3306
- number: z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>;
3307
- name: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3308
- iban: z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>;
3309
- bankCode: z.ZodEnum<{
3310
- 5051: "5051";
3311
- "0100": "0100";
3312
- "0300": "0300";
3313
- "0600": "0600";
3314
- "0710": "0710";
3315
- "0800": "0800";
3316
- 2010: "2010";
3317
- 2020: "2020";
3318
- 2030: "2030";
3319
- 2060: "2060";
3320
- 2070: "2070";
3321
- 2100: "2100";
3322
- 2200: "2200";
3323
- 2210: "2210";
3324
- 2220: "2220";
3325
- 2240: "2240";
3326
- 2250: "2250";
3327
- 2260: "2260";
3328
- 2310: "2310";
3329
- 2600: "2600";
3330
- 2700: "2700";
3331
- 3030: "3030";
3332
- 3050: "3050";
3333
- 3060: "3060";
3334
- 3500: "3500";
3335
- 4000: "4000";
3336
- 4300: "4300";
3337
- 5500: "5500";
3338
- 5400: "5400";
3339
- 5800: "5800";
3340
- 6000: "6000";
3341
- 6100: "6100";
3342
- 6200: "6200";
3343
- 6210: "6210";
3344
- 6300: "6300";
3345
- 6363: "6363";
3346
- 6700: "6700";
3347
- 6800: "6800";
3348
- 7940: "7940";
3349
- 7910: "7910";
3350
- 7950: "7950";
3351
- 7960: "7960";
3352
- 7980: "7980";
3353
- 7970: "7970";
3354
- 7990: "7990";
3355
- 8030: "8030";
3356
- 8040: "8040";
3357
- 8060: "8060";
3358
- 8090: "8090";
3359
- 8150: "8150";
3360
- 8190: "8190";
3361
- 8198: "8198";
3362
- 8200: "8200";
3363
- 8220: "8220";
3364
- 8230: "8230";
3365
- 8240: "8240";
3366
- 8250: "8250";
3367
- 8255: "8255";
3368
- 8265: "8265";
3369
- 8500: "8500";
3370
- 8610: "8610";
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;
3371
3131
  }>;
3372
- connectorKey: z.ZodEnum<{
3373
- ERSTE: "ERSTE";
3374
- FINBRICKS: "FINBRICKS";
3375
- MOCK: "MOCK";
3376
- CREDITAS: "CREDITAS";
3377
- MOCK_COBS: "MOCK_COBS";
3378
- FIO: "FIO";
3379
- MONETA: "MONETA";
3380
- DBU: "DBU";
3381
- CSAS: "CSAS";
3382
- AIRBANK: "AIRBANK";
3383
- KB: "KB";
3384
- CSOB: "CSOB";
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;
3385
3150
  }>;
3386
- status: z.ZodEnum<{
3387
- AUTHORIZED: "AUTHORIZED";
3388
- DISABLED: "DISABLED";
3389
- EXPIRED: "EXPIRED";
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;
3390
3169
  }>;
3391
- bankRefId: z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>;
3392
- batchSizeLimit: z.ZodOptional<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>;
3393
- syncIntervalS: z.ZodOptional<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>;
3394
- lastSyncAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3395
- lastSyncMetadata: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3396
- holderName: z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>;
3397
- swiftBic: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3398
- bicCor: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3399
- currency: z.ZodEnum<{
3400
- CZK: "CZK";
3401
- EUR: "EUR";
3402
- USD: "USD";
3403
- PLN: "PLN";
3404
- RON: "RON";
3405
- GBP: "GBP";
3406
- RUB: "RUB";
3407
- HUF: "HUF";
3408
- CHF: "CHF";
3409
- DKK: "DKK";
3410
- SEK: "SEK";
3411
- HRK: "HRK";
3412
- NOK: "NOK";
3413
- BGN: "BGN";
3414
- TRY: "TRY";
3415
- AUD: "AUD";
3416
- CAD: "CAD";
3417
- JPY: "JPY";
3418
- CNY: "CNY";
3419
- INR: "INR";
3420
- BRL: "BRL";
3421
- MXN: "MXN";
3422
- ZAR: "ZAR";
3423
- SGD: "SGD";
3424
- HKD: "HKD";
3425
- KRW: "KRW";
3426
- MYR: "MYR";
3427
- THB: "THB";
3428
- IDR: "IDR";
3429
- PHP: "PHP";
3430
- AED: "AED";
3431
- SAR: "SAR";
3432
- ILS: "ILS";
3433
- EGP: "EGP";
3434
- NGN: "NGN";
3435
- PKR: "PKR";
3436
- COP: "COP";
3437
- CLP: "CLP";
3438
- PEN: "PEN";
3439
- VND: "VND";
3440
- KZT: "KZT";
3441
- UAH: "UAH";
3442
- BTC: "BTC";
3443
- ETH: "ETH";
3444
- ADA: "ADA";
3445
- DOT: "DOT";
3446
- ATOM: "ATOM";
3447
- XRP: "XRP";
3448
- LTC: "LTC";
3449
- SOL: "SOL";
3450
- DOGE: "DOGE";
3451
- MATIC: "MATIC";
3452
- AVAX: "AVAX";
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;
3453
3188
  }>;
3454
- routingNumber: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3455
- sortCode: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3456
- clabe: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3457
- bsb: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3458
- brBankNumber: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3459
- id: z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>;
3460
- createdAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3461
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3462
- updatedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3463
- updatedBy: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3464
- deletedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3465
- deletedBy: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
3466
- address: z.ZodOptional<z.ZodObject<{
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<{
3467
3637
  streetName: z.ZodOptional<z.ZodString>;
3468
3638
  buildingNumber: z.ZodOptional<z.ZodString>;
3469
3639
  city: z.ZodOptional<z.ZodString>;
@@ -3682,10 +3852,7 @@ declare const updateAccountInputSchema: z.ZodObject<{
3682
3852
  ZW: "ZW";
3683
3853
  }>>;
3684
3854
  }, z.core.$strip>>;
3685
- }, {
3686
- out: {};
3687
- in: {};
3688
- }>;
3855
+ }, undefined>;
3689
3856
  }, z.core.$strip>;
3690
3857
  type UpdateAccountInput = z.infer<typeof updateAccountInputSchema>;
3691
3858
  type UpdateAccountOutput = AccountSelectType;
@@ -3748,18 +3915,18 @@ declare const getPaymentRequestsInputSchema: z.ZodObject<{
3748
3915
  filterStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
3749
3916
  AUTHORIZED: "AUTHORIZED";
3750
3917
  COMPLETED: "COMPLETED";
3751
- OPENED: "OPENED";
3752
3918
  BOOKED: "BOOKED";
3753
- SETTLED: "SETTLED";
3754
3919
  REJECTED: "REJECTED";
3920
+ OPENED: "OPENED";
3921
+ SETTLED: "SETTLED";
3755
3922
  CLOSED: "CLOSED";
3756
3923
  }>, z.ZodArray<z.ZodEnum<{
3757
3924
  AUTHORIZED: "AUTHORIZED";
3758
3925
  COMPLETED: "COMPLETED";
3759
- OPENED: "OPENED";
3760
3926
  BOOKED: "BOOKED";
3761
- SETTLED: "SETTLED";
3762
3927
  REJECTED: "REJECTED";
3928
+ OPENED: "OPENED";
3929
+ SETTLED: "SETTLED";
3763
3930
  CLOSED: "CLOSED";
3764
3931
  }>>]>>;
3765
3932
  filterPaymentType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{