@develit-services/bank 1.1.8 → 1.1.9

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 +3 -3
  7. package/dist/export/worker.d.cts +48 -48
  8. package/dist/export/worker.d.mts +48 -48
  9. package/dist/export/worker.d.ts +48 -48
  10. package/dist/export/worker.mjs +3 -3
  11. package/dist/export/workflows.cjs +3 -3
  12. package/dist/export/workflows.mjs +3 -3
  13. package/dist/shared/{bank.DW4baqPr.mjs → bank.B0Pi8vgE.mjs} +1 -1
  14. package/dist/shared/{bank.B9kMhPfR.d.cts → bank.BNyVK3BY.d.cts} +1 -1
  15. package/dist/shared/{bank.B5s4U2l_.mjs → bank.CFhxDnI-.mjs} +39 -20
  16. package/dist/shared/{bank.Bv1uIGoZ.mjs → bank.D9aWMUlo.mjs} +1 -1
  17. package/dist/shared/{bank.BA7TdO2v.cjs → bank.DDkScKkA.cjs} +1 -1
  18. package/dist/shared/{bank.BgSk2k9D.cjs → bank.DR8QWDEl.cjs} +39 -20
  19. package/dist/shared/{bank.CKtCVDQI.cjs → bank.DWxuhw4n.cjs} +1 -1
  20. package/dist/shared/{bank.BC1_9f64.d.mts → bank.Dhad_uGG.d.mts} +1 -1
  21. package/dist/shared/{bank.C92qNguc.d.ts → bank.DlUMmkWj.d.ts} +1 -1
  22. package/dist/shared/{bank.DM5EnFq5.d.cts → bank.rXZSyAh9.d.cts} +106 -106
  23. package/dist/shared/{bank.DM5EnFq5.d.mts → bank.rXZSyAh9.d.mts} +106 -106
  24. package/dist/shared/{bank.DM5EnFq5.d.ts → bank.rXZSyAh9.d.ts} +106 -106
  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
@@ -952,14 +952,23 @@ type AccountCredentialsPatchType = z.infer<typeof accountCredentialsUpdateSchema
952
952
  type AccountCredentialsSelectType = z.infer<typeof accountCredentialsSelectSchema>;
953
953
 
954
954
  declare const accountInsertSchema: z.ZodObject<{
955
- batchSizeLimit: z.ZodOptional<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>;
956
- syncIntervalS: z.ZodOptional<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>;
957
955
  lastSyncAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
958
956
  lastSyncMetadata: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
959
957
  createdAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
960
958
  updatedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
961
959
  deletedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
962
- address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
960
+ createdBy: z.ZodOptional<z.ZodString>;
961
+ updatedBy: z.ZodOptional<z.ZodString>;
962
+ deletedBy: z.ZodOptional<z.ZodString>;
963
+ name: z.ZodOptional<z.ZodString>;
964
+ swiftBic: z.ZodOptional<z.ZodString>;
965
+ bicCor: z.ZodOptional<z.ZodString>;
966
+ routingNumber: z.ZodOptional<z.ZodString>;
967
+ sortCode: z.ZodOptional<z.ZodString>;
968
+ clabe: z.ZodOptional<z.ZodString>;
969
+ bsb: z.ZodOptional<z.ZodString>;
970
+ brBankNumber: z.ZodOptional<z.ZodString>;
971
+ address: z.ZodOptional<z.ZodObject<{
963
972
  streetName: z.ZodOptional<z.ZodString>;
964
973
  buildingNumber: z.ZodOptional<z.ZodString>;
965
974
  city: z.ZodOptional<z.ZodString>;
@@ -1177,14 +1186,10 @@ declare const accountInsertSchema: z.ZodObject<{
1177
1186
  ZM: "ZM";
1178
1187
  ZW: "ZW";
1179
1188
  }>>;
1180
- }, z.core.$strip>>>;
1189
+ }, z.core.$strip>>;
1181
1190
  id: z.ZodString;
1182
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1183
- updatedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1184
- deletedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1185
1191
  holderName: z.ZodString;
1186
1192
  number: z.ZodString;
1187
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1188
1193
  iban: z.ZodString;
1189
1194
  bankCode: z.ZodEnum<{
1190
1195
  5051: "5051";
@@ -1249,25 +1254,6 @@ declare const accountInsertSchema: z.ZodObject<{
1249
1254
  8500: "8500";
1250
1255
  8610: "8610";
1251
1256
  }>;
1252
- connectorKey: z.ZodEnum<{
1253
- ERSTE: "ERSTE";
1254
- FINBRICKS: "FINBRICKS";
1255
- MOCK: "MOCK";
1256
- CREDITAS: "CREDITAS";
1257
- MOCK_COBS: "MOCK_COBS";
1258
- FIO: "FIO";
1259
- MONETA: "MONETA";
1260
- DBU: "DBU";
1261
- CSAS: "CSAS";
1262
- AIRBANK: "AIRBANK";
1263
- KB: "KB";
1264
- CSOB: "CSOB";
1265
- }>;
1266
- status: z.ZodEnum<{
1267
- AUTHORIZED: "AUTHORIZED";
1268
- DISABLED: "DISABLED";
1269
- EXPIRED: "EXPIRED";
1270
- }>;
1271
1257
  countryCode: z.ZodEnum<{
1272
1258
  AF: "AF";
1273
1259
  AL: "AL";
@@ -1536,27 +1522,50 @@ declare const accountInsertSchema: z.ZodObject<{
1536
1522
  MATIC: "MATIC";
1537
1523
  AVAX: "AVAX";
1538
1524
  }>;
1525
+ connectorKey: z.ZodEnum<{
1526
+ ERSTE: "ERSTE";
1527
+ FINBRICKS: "FINBRICKS";
1528
+ MOCK: "MOCK";
1529
+ CREDITAS: "CREDITAS";
1530
+ MOCK_COBS: "MOCK_COBS";
1531
+ FIO: "FIO";
1532
+ MONETA: "MONETA";
1533
+ DBU: "DBU";
1534
+ CSAS: "CSAS";
1535
+ AIRBANK: "AIRBANK";
1536
+ KB: "KB";
1537
+ CSOB: "CSOB";
1538
+ }>;
1539
+ status: z.ZodEnum<{
1540
+ AUTHORIZED: "AUTHORIZED";
1541
+ DISABLED: "DISABLED";
1542
+ EXPIRED: "EXPIRED";
1543
+ }>;
1539
1544
  bankRefId: z.ZodString;
1540
- swiftBic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1541
- bicCor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1542
- routingNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1543
- sortCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1544
- clabe: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1545
- bsb: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1546
- brBankNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1545
+ batchSizeLimit: z.ZodNumber;
1546
+ syncIntervalS: z.ZodNumber;
1547
1547
  }, {
1548
1548
  out: {};
1549
1549
  in: {};
1550
1550
  }>;
1551
1551
  declare const accountUpdateSchema: z.ZodObject<{
1552
- batchSizeLimit: z.ZodOptional<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>;
1553
- syncIntervalS: z.ZodOptional<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>;
1554
1552
  lastSyncAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1555
1553
  lastSyncMetadata: z.ZodOptional<z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>>;
1556
1554
  createdAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1557
1555
  updatedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1558
1556
  deletedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1559
- address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1557
+ createdBy: z.ZodOptional<z.ZodString>;
1558
+ updatedBy: z.ZodOptional<z.ZodString>;
1559
+ deletedBy: z.ZodOptional<z.ZodString>;
1560
+ name: z.ZodOptional<z.ZodString>;
1561
+ swiftBic: z.ZodOptional<z.ZodString>;
1562
+ bicCor: z.ZodOptional<z.ZodString>;
1563
+ routingNumber: z.ZodOptional<z.ZodString>;
1564
+ sortCode: z.ZodOptional<z.ZodString>;
1565
+ clabe: z.ZodOptional<z.ZodString>;
1566
+ bsb: z.ZodOptional<z.ZodString>;
1567
+ brBankNumber: z.ZodOptional<z.ZodString>;
1568
+ address: z.ZodOptional<z.ZodObject<{
1560
1569
  streetName: z.ZodOptional<z.ZodString>;
1561
1570
  buildingNumber: z.ZodOptional<z.ZodString>;
1562
1571
  city: z.ZodOptional<z.ZodString>;
@@ -1774,14 +1783,10 @@ declare const accountUpdateSchema: z.ZodObject<{
1774
1783
  ZM: "ZM";
1775
1784
  ZW: "ZW";
1776
1785
  }>>;
1777
- }, z.core.$strip>>>;
1786
+ }, z.core.$strip>>;
1778
1787
  id: z.ZodString;
1779
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1780
- updatedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1781
- deletedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1782
1788
  holderName: z.ZodString;
1783
1789
  number: z.ZodString;
1784
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1785
1790
  iban: z.ZodString;
1786
1791
  bankCode: z.ZodEnum<{
1787
1792
  5051: "5051";
@@ -1846,25 +1851,6 @@ declare const accountUpdateSchema: z.ZodObject<{
1846
1851
  8500: "8500";
1847
1852
  8610: "8610";
1848
1853
  }>;
1849
- connectorKey: z.ZodEnum<{
1850
- ERSTE: "ERSTE";
1851
- FINBRICKS: "FINBRICKS";
1852
- MOCK: "MOCK";
1853
- CREDITAS: "CREDITAS";
1854
- MOCK_COBS: "MOCK_COBS";
1855
- FIO: "FIO";
1856
- MONETA: "MONETA";
1857
- DBU: "DBU";
1858
- CSAS: "CSAS";
1859
- AIRBANK: "AIRBANK";
1860
- KB: "KB";
1861
- CSOB: "CSOB";
1862
- }>;
1863
- status: z.ZodEnum<{
1864
- AUTHORIZED: "AUTHORIZED";
1865
- DISABLED: "DISABLED";
1866
- EXPIRED: "EXPIRED";
1867
- }>;
1868
1854
  countryCode: z.ZodEnum<{
1869
1855
  AF: "AF";
1870
1856
  AL: "AL";
@@ -2133,26 +2119,49 @@ declare const accountUpdateSchema: z.ZodObject<{
2133
2119
  MATIC: "MATIC";
2134
2120
  AVAX: "AVAX";
2135
2121
  }>;
2122
+ connectorKey: z.ZodEnum<{
2123
+ ERSTE: "ERSTE";
2124
+ FINBRICKS: "FINBRICKS";
2125
+ MOCK: "MOCK";
2126
+ CREDITAS: "CREDITAS";
2127
+ MOCK_COBS: "MOCK_COBS";
2128
+ FIO: "FIO";
2129
+ MONETA: "MONETA";
2130
+ DBU: "DBU";
2131
+ CSAS: "CSAS";
2132
+ AIRBANK: "AIRBANK";
2133
+ KB: "KB";
2134
+ CSOB: "CSOB";
2135
+ }>;
2136
+ status: z.ZodEnum<{
2137
+ AUTHORIZED: "AUTHORIZED";
2138
+ DISABLED: "DISABLED";
2139
+ EXPIRED: "EXPIRED";
2140
+ }>;
2136
2141
  bankRefId: z.ZodString;
2137
- swiftBic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2138
- bicCor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2139
- routingNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2140
- sortCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2141
- clabe: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2142
- bsb: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2143
- brBankNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2142
+ batchSizeLimit: z.ZodNumber;
2143
+ syncIntervalS: z.ZodNumber;
2144
2144
  }, {
2145
2145
  out: {};
2146
2146
  in: {};
2147
2147
  }>;
2148
2148
  declare const accountSelectSchema: z.ZodObject<{
2149
- batchSizeLimit: z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>;
2150
- syncIntervalS: z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>;
2151
2149
  lastSyncAt: z.ZodNullable<z.ZodDate>;
2152
2150
  lastSyncMetadata: z.ZodNullable<z.ZodType<Buffer, unknown, z.core.$ZodTypeInternals<Buffer, unknown>>>;
2153
2151
  createdAt: z.ZodNullable<z.ZodDate>;
2154
2152
  updatedAt: z.ZodNullable<z.ZodDate>;
2155
2153
  deletedAt: z.ZodNullable<z.ZodDate>;
2154
+ createdBy: z.ZodNullable<z.ZodString>;
2155
+ updatedBy: z.ZodNullable<z.ZodString>;
2156
+ deletedBy: z.ZodNullable<z.ZodString>;
2157
+ name: z.ZodNullable<z.ZodString>;
2158
+ swiftBic: z.ZodNullable<z.ZodString>;
2159
+ bicCor: z.ZodNullable<z.ZodString>;
2160
+ routingNumber: z.ZodNullable<z.ZodString>;
2161
+ sortCode: z.ZodNullable<z.ZodString>;
2162
+ clabe: z.ZodNullable<z.ZodString>;
2163
+ bsb: z.ZodNullable<z.ZodString>;
2164
+ brBankNumber: z.ZodNullable<z.ZodString>;
2156
2165
  address: z.ZodNullable<z.ZodObject<{
2157
2166
  streetName: z.ZodOptional<z.ZodString>;
2158
2167
  buildingNumber: z.ZodOptional<z.ZodString>;
@@ -2373,12 +2382,8 @@ declare const accountSelectSchema: z.ZodObject<{
2373
2382
  }>>;
2374
2383
  }, z.core.$strip>>;
2375
2384
  id: z.ZodString;
2376
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2377
- updatedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2378
- deletedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2379
2385
  holderName: z.ZodString;
2380
2386
  number: z.ZodString;
2381
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2382
2387
  iban: z.ZodString;
2383
2388
  bankCode: z.ZodEnum<{
2384
2389
  5051: "5051";
@@ -2443,25 +2448,6 @@ declare const accountSelectSchema: z.ZodObject<{
2443
2448
  8500: "8500";
2444
2449
  8610: "8610";
2445
2450
  }>;
2446
- connectorKey: z.ZodEnum<{
2447
- ERSTE: "ERSTE";
2448
- FINBRICKS: "FINBRICKS";
2449
- MOCK: "MOCK";
2450
- CREDITAS: "CREDITAS";
2451
- MOCK_COBS: "MOCK_COBS";
2452
- FIO: "FIO";
2453
- MONETA: "MONETA";
2454
- DBU: "DBU";
2455
- CSAS: "CSAS";
2456
- AIRBANK: "AIRBANK";
2457
- KB: "KB";
2458
- CSOB: "CSOB";
2459
- }>;
2460
- status: z.ZodEnum<{
2461
- AUTHORIZED: "AUTHORIZED";
2462
- DISABLED: "DISABLED";
2463
- EXPIRED: "EXPIRED";
2464
- }>;
2465
2451
  countryCode: z.ZodEnum<{
2466
2452
  AF: "AF";
2467
2453
  AL: "AL";
@@ -2730,14 +2716,28 @@ declare const accountSelectSchema: z.ZodObject<{
2730
2716
  MATIC: "MATIC";
2731
2717
  AVAX: "AVAX";
2732
2718
  }>;
2719
+ connectorKey: z.ZodEnum<{
2720
+ ERSTE: "ERSTE";
2721
+ FINBRICKS: "FINBRICKS";
2722
+ MOCK: "MOCK";
2723
+ CREDITAS: "CREDITAS";
2724
+ MOCK_COBS: "MOCK_COBS";
2725
+ FIO: "FIO";
2726
+ MONETA: "MONETA";
2727
+ DBU: "DBU";
2728
+ CSAS: "CSAS";
2729
+ AIRBANK: "AIRBANK";
2730
+ KB: "KB";
2731
+ CSOB: "CSOB";
2732
+ }>;
2733
+ status: z.ZodEnum<{
2734
+ AUTHORIZED: "AUTHORIZED";
2735
+ DISABLED: "DISABLED";
2736
+ EXPIRED: "EXPIRED";
2737
+ }>;
2733
2738
  bankRefId: z.ZodString;
2734
- swiftBic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2735
- bicCor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2736
- routingNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2737
- sortCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2738
- clabe: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2739
- bsb: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2740
- brBankNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2739
+ batchSizeLimit: z.ZodNumber;
2740
+ syncIntervalS: z.ZodNumber;
2741
2741
  }, {
2742
2742
  out: {};
2743
2743
  in: {};
@@ -2814,7 +2814,7 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
2814
2814
  tableName: "batch";
2815
2815
  dataType: "string";
2816
2816
  columnType: "SQLiteText";
2817
- data: "AUTHORIZED" | "COMPLETED" | "PROCESSING" | "READY_TO_SIGN" | "FAILED";
2817
+ data: "AUTHORIZED" | "PROCESSING" | "READY_TO_SIGN" | "COMPLETED" | "FAILED";
2818
2818
  driverParam: string;
2819
2819
  notNull: false;
2820
2820
  hasDefault: false;
@@ -2827,7 +2827,7 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
2827
2827
  generated: undefined;
2828
2828
  }, {}, {
2829
2829
  length: number | undefined;
2830
- $type: "AUTHORIZED" | "COMPLETED" | "PROCESSING" | "READY_TO_SIGN" | "FAILED";
2830
+ $type: "AUTHORIZED" | "PROCESSING" | "READY_TO_SIGN" | "COMPLETED" | "FAILED";
2831
2831
  }>;
2832
2832
  statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
2833
2833
  name: "status_reason";
@@ -3258,7 +3258,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
3258
3258
  tableName: "payment";
3259
3259
  dataType: "string";
3260
3260
  columnType: "SQLiteText";
3261
- data: "BOOKED" | "REJECTED" | "PENDING" | "PROCESSING" | "CANCELLED" | "SCHEDULED" | "HOLD" | "INFO";
3261
+ data: "PROCESSING" | "PENDING" | "BOOKED" | "CANCELLED" | "REJECTED" | "SCHEDULED" | "HOLD" | "INFO";
3262
3262
  driverParam: string;
3263
3263
  notNull: true;
3264
3264
  hasDefault: false;
@@ -3271,7 +3271,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
3271
3271
  generated: undefined;
3272
3272
  }, {}, {
3273
3273
  length: number | undefined;
3274
- $type: "BOOKED" | "REJECTED" | "PENDING" | "PROCESSING" | "CANCELLED" | "SCHEDULED" | "HOLD" | "INFO";
3274
+ $type: "PROCESSING" | "PENDING" | "BOOKED" | "CANCELLED" | "REJECTED" | "SCHEDULED" | "HOLD" | "INFO";
3275
3275
  }>;
3276
3276
  statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
3277
3277
  name: "status_reason";
@@ -3852,7 +3852,7 @@ declare const paymentRequest: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
3852
3852
  tableName: "payment_request";
3853
3853
  dataType: "string";
3854
3854
  columnType: "SQLiteText";
3855
- data: "AUTHORIZED" | "OPENED" | "COMPLETED" | "BOOKED" | "SETTLED" | "REJECTED" | "CLOSED";
3855
+ data: "AUTHORIZED" | "COMPLETED" | "BOOKED" | "REJECTED" | "OPENED" | "SETTLED" | "CLOSED";
3856
3856
  driverParam: string;
3857
3857
  notNull: true;
3858
3858
  hasDefault: false;
@@ -3865,7 +3865,7 @@ declare const paymentRequest: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
3865
3865
  generated: undefined;
3866
3866
  }, {}, {
3867
3867
  length: number | undefined;
3868
- $type: "AUTHORIZED" | "OPENED" | "COMPLETED" | "BOOKED" | "SETTLED" | "REJECTED" | "CLOSED";
3868
+ $type: "AUTHORIZED" | "COMPLETED" | "BOOKED" | "REJECTED" | "OPENED" | "SETTLED" | "CLOSED";
3869
3869
  }>;
3870
3870
  statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
3871
3871
  name: "status_reason";
package/dist/types.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- const mock_connector = require('./shared/bank.CKtCVDQI.cjs');
4
- const database_schema = require('./shared/bank.BgSk2k9D.cjs');
3
+ const mock_connector = require('./shared/bank.DWxuhw4n.cjs');
4
+ const database_schema = require('./shared/bank.DR8QWDEl.cjs');
5
5
  const batchLifecycle = require('./shared/bank.NF8bZBy0.cjs');
6
6
  const generalCodes = require('@develit-io/general-codes');
7
7
  require('@develit-io/backend-sdk');
package/dist/types.d.cts CHANGED
@@ -1,7 +1,7 @@
1
- import { I as IBankConnector, b as ConnectorKey, f as ConnectedAccount, c as PaymentType, g as CredentialsResolver, h as AccountCredentialsInsertType, i as AccountInsertType, j as BatchedPayment, k as InitiatedBatch, l as IncomingPayment, m as InitiatedPayment, A as AccountSelectType, n as ParsedBankPayment, o as PaymentRequestStatus, p as AuthorizationCallbackResult, q as BatchMetadata, r as Currency, a as PaymentSelectType, P as PaymentRequestSelectType, s as AccountAssignedPayment, u as PreparedPayment, v as CompletedPayment, w as PaymentRequestInsertType } from './shared/bank.DM5EnFq5.cjs';
2
- export { x as ACCOUNT_STATUSES, y as AccountCredentialsPatchType, z as AccountCredentialsSelectType, D as AccountCredentialsUpdateType, E as AccountPatchType, F as AccountStatus, G as AccountUpdateType, J as AuthorizedBatch, K as BATCH_MODES, M as BATCH_STATUES, M as BATCH_STATUSES, N as BankAccountWithLastSync, O as BankCode, Q as BatchInsertType, R as BatchLifecycle, S as BatchMode, T as BatchPayment, B as BatchSelectType, U as BatchStatus, V as CHARGE_BEARERS, W as CONNECTOR_KEYS, X as COUNTRY_CODES, Y as CREDENTIALS_TYPES, Z as ChargeBearer, _ as CompletedBatch, C as ConfigEnvironmentBank, $ as CountryCode, a0 as CredentialsType, d as CurrencyCode, a1 as INSTRUCTION_PRIORITIES, a2 as InstructionPriority, L as LastSyncMetadata, a3 as PAYMENT_DIRECTIONS, a4 as PAYMENT_REQUEST_STATUSES, a5 as PAYMENT_STATUSES, a6 as PAYMENT_TYPES, a7 as PaymentDirection, a8 as PaymentFailedInsertType, a9 as PaymentInsertType, aa as PaymentLifecycle, ab as PaymentPreparedInsertType, ac as PaymentStatus, ad as ProcessingBatch, ae as ReadyToSignBatch, af as ResolvedCredentials, ag as TOKEN_TYPES, ah as TokenType, ai as accountCredentialsInsertSchema, aj as accountCredentialsSelectSchema, ak as accountCredentialsUpdateSchema, al as accountInsertSchema, am as accountSelectSchema, an as accountUpdateSchema, ao as hasPaymentAccountAssigned, ap as isBatchAuthorized, aq as isBatchCompleted, ar as isBatchFailed, as as isBatchInitiated, at as isBatchProcessing, au as isBatchReadyToSign, av as isPaymentCompleted, aw as isPendingStatus, ax as isProcessedStatus, ay as isTerminalStatus } from './shared/bank.DM5EnFq5.cjs';
3
- import { d as FinbricksAccount, R as ReferenceType, S as SendPaymentInput } from './shared/bank.B9kMhPfR.cjs';
4
- export { e as FinbricksAccountTransactionsResponse, f as FinbricksAccountsListResponse, g as FinbricksAuthTokenResponse, h as FinbricksBatchResponse, i as FinbricksConnectAccountResponse, j as FinbricksPaymentResponse, k as FinbricksSupportedBank, F as FinbricksSupportedBanksResponse, b as SendPaymentSyncInput } from './shared/bank.B9kMhPfR.cjs';
1
+ import { I as IBankConnector, b as ConnectorKey, f as ConnectedAccount, c as PaymentType, g as CredentialsResolver, h as AccountCredentialsInsertType, i as AccountInsertType, j as BatchedPayment, k as InitiatedBatch, l as IncomingPayment, m as InitiatedPayment, A as AccountSelectType, n as ParsedBankPayment, o as PaymentRequestStatus, p as AuthorizationCallbackResult, q as BatchMetadata, r as Currency, a as PaymentSelectType, P as PaymentRequestSelectType, s as AccountAssignedPayment, u as PreparedPayment, v as CompletedPayment, w as PaymentRequestInsertType } from './shared/bank.rXZSyAh9.cjs';
2
+ export { x as ACCOUNT_STATUSES, y as AccountCredentialsPatchType, z as AccountCredentialsSelectType, D as AccountCredentialsUpdateType, E as AccountPatchType, F as AccountStatus, G as AccountUpdateType, J as AuthorizedBatch, K as BATCH_MODES, M as BATCH_STATUES, M as BATCH_STATUSES, N as BankAccountWithLastSync, O as BankCode, Q as BatchInsertType, R as BatchLifecycle, S as BatchMode, T as BatchPayment, B as BatchSelectType, U as BatchStatus, V as CHARGE_BEARERS, W as CONNECTOR_KEYS, X as COUNTRY_CODES, Y as CREDENTIALS_TYPES, Z as ChargeBearer, _ as CompletedBatch, C as ConfigEnvironmentBank, $ as CountryCode, a0 as CredentialsType, d as CurrencyCode, a1 as INSTRUCTION_PRIORITIES, a2 as InstructionPriority, L as LastSyncMetadata, a3 as PAYMENT_DIRECTIONS, a4 as PAYMENT_REQUEST_STATUSES, a5 as PAYMENT_STATUSES, a6 as PAYMENT_TYPES, a7 as PaymentDirection, a8 as PaymentFailedInsertType, a9 as PaymentInsertType, aa as PaymentLifecycle, ab as PaymentPreparedInsertType, ac as PaymentStatus, ad as ProcessingBatch, ae as ReadyToSignBatch, af as ResolvedCredentials, ag as TOKEN_TYPES, ah as TokenType, ai as accountCredentialsInsertSchema, aj as accountCredentialsSelectSchema, ak as accountCredentialsUpdateSchema, al as accountInsertSchema, am as accountSelectSchema, an as accountUpdateSchema, ao as hasPaymentAccountAssigned, ap as isBatchAuthorized, aq as isBatchCompleted, ar as isBatchFailed, as as isBatchInitiated, at as isBatchProcessing, au as isBatchReadyToSign, av as isPaymentCompleted, aw as isPendingStatus, ax as isProcessedStatus, ay as isTerminalStatus } from './shared/bank.rXZSyAh9.cjs';
3
+ import { d as FinbricksAccount, R as ReferenceType, S as SendPaymentInput } from './shared/bank.BNyVK3BY.cjs';
4
+ export { e as FinbricksAccountTransactionsResponse, f as FinbricksAccountsListResponse, g as FinbricksAuthTokenResponse, h as FinbricksBatchResponse, i as FinbricksConnectAccountResponse, j as FinbricksPaymentResponse, k as FinbricksSupportedBank, F as FinbricksSupportedBanksResponse, b as SendPaymentSyncInput } from './shared/bank.BNyVK3BY.cjs';
5
5
  export { a as BankServiceEnv, b as BankServiceEnvironmentConfig, B as BankServiceWranglerConfig } from './shared/bank.CVJosema.cjs';
6
6
  import { BaseEvent } from '@develit-io/backend-sdk';
7
7
  import * as drizzle_zod from 'drizzle-zod';
package/dist/types.d.mts CHANGED
@@ -1,7 +1,7 @@
1
- import { I as IBankConnector, b as ConnectorKey, f as ConnectedAccount, c as PaymentType, g as CredentialsResolver, h as AccountCredentialsInsertType, i as AccountInsertType, j as BatchedPayment, k as InitiatedBatch, l as IncomingPayment, m as InitiatedPayment, A as AccountSelectType, n as ParsedBankPayment, o as PaymentRequestStatus, p as AuthorizationCallbackResult, q as BatchMetadata, r as Currency, a as PaymentSelectType, P as PaymentRequestSelectType, s as AccountAssignedPayment, u as PreparedPayment, v as CompletedPayment, w as PaymentRequestInsertType } from './shared/bank.DM5EnFq5.mjs';
2
- export { x as ACCOUNT_STATUSES, y as AccountCredentialsPatchType, z as AccountCredentialsSelectType, D as AccountCredentialsUpdateType, E as AccountPatchType, F as AccountStatus, G as AccountUpdateType, J as AuthorizedBatch, K as BATCH_MODES, M as BATCH_STATUES, M as BATCH_STATUSES, N as BankAccountWithLastSync, O as BankCode, Q as BatchInsertType, R as BatchLifecycle, S as BatchMode, T as BatchPayment, B as BatchSelectType, U as BatchStatus, V as CHARGE_BEARERS, W as CONNECTOR_KEYS, X as COUNTRY_CODES, Y as CREDENTIALS_TYPES, Z as ChargeBearer, _ as CompletedBatch, C as ConfigEnvironmentBank, $ as CountryCode, a0 as CredentialsType, d as CurrencyCode, a1 as INSTRUCTION_PRIORITIES, a2 as InstructionPriority, L as LastSyncMetadata, a3 as PAYMENT_DIRECTIONS, a4 as PAYMENT_REQUEST_STATUSES, a5 as PAYMENT_STATUSES, a6 as PAYMENT_TYPES, a7 as PaymentDirection, a8 as PaymentFailedInsertType, a9 as PaymentInsertType, aa as PaymentLifecycle, ab as PaymentPreparedInsertType, ac as PaymentStatus, ad as ProcessingBatch, ae as ReadyToSignBatch, af as ResolvedCredentials, ag as TOKEN_TYPES, ah as TokenType, ai as accountCredentialsInsertSchema, aj as accountCredentialsSelectSchema, ak as accountCredentialsUpdateSchema, al as accountInsertSchema, am as accountSelectSchema, an as accountUpdateSchema, ao as hasPaymentAccountAssigned, ap as isBatchAuthorized, aq as isBatchCompleted, ar as isBatchFailed, as as isBatchInitiated, at as isBatchProcessing, au as isBatchReadyToSign, av as isPaymentCompleted, aw as isPendingStatus, ax as isProcessedStatus, ay as isTerminalStatus } from './shared/bank.DM5EnFq5.mjs';
3
- import { d as FinbricksAccount, R as ReferenceType, S as SendPaymentInput } from './shared/bank.BC1_9f64.mjs';
4
- export { e as FinbricksAccountTransactionsResponse, f as FinbricksAccountsListResponse, g as FinbricksAuthTokenResponse, h as FinbricksBatchResponse, i as FinbricksConnectAccountResponse, j as FinbricksPaymentResponse, k as FinbricksSupportedBank, F as FinbricksSupportedBanksResponse, b as SendPaymentSyncInput } from './shared/bank.BC1_9f64.mjs';
1
+ import { I as IBankConnector, b as ConnectorKey, f as ConnectedAccount, c as PaymentType, g as CredentialsResolver, h as AccountCredentialsInsertType, i as AccountInsertType, j as BatchedPayment, k as InitiatedBatch, l as IncomingPayment, m as InitiatedPayment, A as AccountSelectType, n as ParsedBankPayment, o as PaymentRequestStatus, p as AuthorizationCallbackResult, q as BatchMetadata, r as Currency, a as PaymentSelectType, P as PaymentRequestSelectType, s as AccountAssignedPayment, u as PreparedPayment, v as CompletedPayment, w as PaymentRequestInsertType } from './shared/bank.rXZSyAh9.mjs';
2
+ export { x as ACCOUNT_STATUSES, y as AccountCredentialsPatchType, z as AccountCredentialsSelectType, D as AccountCredentialsUpdateType, E as AccountPatchType, F as AccountStatus, G as AccountUpdateType, J as AuthorizedBatch, K as BATCH_MODES, M as BATCH_STATUES, M as BATCH_STATUSES, N as BankAccountWithLastSync, O as BankCode, Q as BatchInsertType, R as BatchLifecycle, S as BatchMode, T as BatchPayment, B as BatchSelectType, U as BatchStatus, V as CHARGE_BEARERS, W as CONNECTOR_KEYS, X as COUNTRY_CODES, Y as CREDENTIALS_TYPES, Z as ChargeBearer, _ as CompletedBatch, C as ConfigEnvironmentBank, $ as CountryCode, a0 as CredentialsType, d as CurrencyCode, a1 as INSTRUCTION_PRIORITIES, a2 as InstructionPriority, L as LastSyncMetadata, a3 as PAYMENT_DIRECTIONS, a4 as PAYMENT_REQUEST_STATUSES, a5 as PAYMENT_STATUSES, a6 as PAYMENT_TYPES, a7 as PaymentDirection, a8 as PaymentFailedInsertType, a9 as PaymentInsertType, aa as PaymentLifecycle, ab as PaymentPreparedInsertType, ac as PaymentStatus, ad as ProcessingBatch, ae as ReadyToSignBatch, af as ResolvedCredentials, ag as TOKEN_TYPES, ah as TokenType, ai as accountCredentialsInsertSchema, aj as accountCredentialsSelectSchema, ak as accountCredentialsUpdateSchema, al as accountInsertSchema, am as accountSelectSchema, an as accountUpdateSchema, ao as hasPaymentAccountAssigned, ap as isBatchAuthorized, aq as isBatchCompleted, ar as isBatchFailed, as as isBatchInitiated, at as isBatchProcessing, au as isBatchReadyToSign, av as isPaymentCompleted, aw as isPendingStatus, ax as isProcessedStatus, ay as isTerminalStatus } from './shared/bank.rXZSyAh9.mjs';
3
+ import { d as FinbricksAccount, R as ReferenceType, S as SendPaymentInput } from './shared/bank.Dhad_uGG.mjs';
4
+ export { e as FinbricksAccountTransactionsResponse, f as FinbricksAccountsListResponse, g as FinbricksAuthTokenResponse, h as FinbricksBatchResponse, i as FinbricksConnectAccountResponse, j as FinbricksPaymentResponse, k as FinbricksSupportedBank, F as FinbricksSupportedBanksResponse, b as SendPaymentSyncInput } from './shared/bank.Dhad_uGG.mjs';
5
5
  export { a as BankServiceEnv, b as BankServiceEnvironmentConfig, B as BankServiceWranglerConfig } from './shared/bank.CVJosema.mjs';
6
6
  import { BaseEvent } from '@develit-io/backend-sdk';
7
7
  import * as drizzle_zod from 'drizzle-zod';
package/dist/types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import { I as IBankConnector, b as ConnectorKey, f as ConnectedAccount, c as PaymentType, g as CredentialsResolver, h as AccountCredentialsInsertType, i as AccountInsertType, j as BatchedPayment, k as InitiatedBatch, l as IncomingPayment, m as InitiatedPayment, A as AccountSelectType, n as ParsedBankPayment, o as PaymentRequestStatus, p as AuthorizationCallbackResult, q as BatchMetadata, r as Currency, a as PaymentSelectType, P as PaymentRequestSelectType, s as AccountAssignedPayment, u as PreparedPayment, v as CompletedPayment, w as PaymentRequestInsertType } from './shared/bank.DM5EnFq5.js';
2
- export { x as ACCOUNT_STATUSES, y as AccountCredentialsPatchType, z as AccountCredentialsSelectType, D as AccountCredentialsUpdateType, E as AccountPatchType, F as AccountStatus, G as AccountUpdateType, J as AuthorizedBatch, K as BATCH_MODES, M as BATCH_STATUES, M as BATCH_STATUSES, N as BankAccountWithLastSync, O as BankCode, Q as BatchInsertType, R as BatchLifecycle, S as BatchMode, T as BatchPayment, B as BatchSelectType, U as BatchStatus, V as CHARGE_BEARERS, W as CONNECTOR_KEYS, X as COUNTRY_CODES, Y as CREDENTIALS_TYPES, Z as ChargeBearer, _ as CompletedBatch, C as ConfigEnvironmentBank, $ as CountryCode, a0 as CredentialsType, d as CurrencyCode, a1 as INSTRUCTION_PRIORITIES, a2 as InstructionPriority, L as LastSyncMetadata, a3 as PAYMENT_DIRECTIONS, a4 as PAYMENT_REQUEST_STATUSES, a5 as PAYMENT_STATUSES, a6 as PAYMENT_TYPES, a7 as PaymentDirection, a8 as PaymentFailedInsertType, a9 as PaymentInsertType, aa as PaymentLifecycle, ab as PaymentPreparedInsertType, ac as PaymentStatus, ad as ProcessingBatch, ae as ReadyToSignBatch, af as ResolvedCredentials, ag as TOKEN_TYPES, ah as TokenType, ai as accountCredentialsInsertSchema, aj as accountCredentialsSelectSchema, ak as accountCredentialsUpdateSchema, al as accountInsertSchema, am as accountSelectSchema, an as accountUpdateSchema, ao as hasPaymentAccountAssigned, ap as isBatchAuthorized, aq as isBatchCompleted, ar as isBatchFailed, as as isBatchInitiated, at as isBatchProcessing, au as isBatchReadyToSign, av as isPaymentCompleted, aw as isPendingStatus, ax as isProcessedStatus, ay as isTerminalStatus } from './shared/bank.DM5EnFq5.js';
3
- import { d as FinbricksAccount, R as ReferenceType, S as SendPaymentInput } from './shared/bank.C92qNguc.js';
4
- export { e as FinbricksAccountTransactionsResponse, f as FinbricksAccountsListResponse, g as FinbricksAuthTokenResponse, h as FinbricksBatchResponse, i as FinbricksConnectAccountResponse, j as FinbricksPaymentResponse, k as FinbricksSupportedBank, F as FinbricksSupportedBanksResponse, b as SendPaymentSyncInput } from './shared/bank.C92qNguc.js';
1
+ import { I as IBankConnector, b as ConnectorKey, f as ConnectedAccount, c as PaymentType, g as CredentialsResolver, h as AccountCredentialsInsertType, i as AccountInsertType, j as BatchedPayment, k as InitiatedBatch, l as IncomingPayment, m as InitiatedPayment, A as AccountSelectType, n as ParsedBankPayment, o as PaymentRequestStatus, p as AuthorizationCallbackResult, q as BatchMetadata, r as Currency, a as PaymentSelectType, P as PaymentRequestSelectType, s as AccountAssignedPayment, u as PreparedPayment, v as CompletedPayment, w as PaymentRequestInsertType } from './shared/bank.rXZSyAh9.js';
2
+ export { x as ACCOUNT_STATUSES, y as AccountCredentialsPatchType, z as AccountCredentialsSelectType, D as AccountCredentialsUpdateType, E as AccountPatchType, F as AccountStatus, G as AccountUpdateType, J as AuthorizedBatch, K as BATCH_MODES, M as BATCH_STATUES, M as BATCH_STATUSES, N as BankAccountWithLastSync, O as BankCode, Q as BatchInsertType, R as BatchLifecycle, S as BatchMode, T as BatchPayment, B as BatchSelectType, U as BatchStatus, V as CHARGE_BEARERS, W as CONNECTOR_KEYS, X as COUNTRY_CODES, Y as CREDENTIALS_TYPES, Z as ChargeBearer, _ as CompletedBatch, C as ConfigEnvironmentBank, $ as CountryCode, a0 as CredentialsType, d as CurrencyCode, a1 as INSTRUCTION_PRIORITIES, a2 as InstructionPriority, L as LastSyncMetadata, a3 as PAYMENT_DIRECTIONS, a4 as PAYMENT_REQUEST_STATUSES, a5 as PAYMENT_STATUSES, a6 as PAYMENT_TYPES, a7 as PaymentDirection, a8 as PaymentFailedInsertType, a9 as PaymentInsertType, aa as PaymentLifecycle, ab as PaymentPreparedInsertType, ac as PaymentStatus, ad as ProcessingBatch, ae as ReadyToSignBatch, af as ResolvedCredentials, ag as TOKEN_TYPES, ah as TokenType, ai as accountCredentialsInsertSchema, aj as accountCredentialsSelectSchema, ak as accountCredentialsUpdateSchema, al as accountInsertSchema, am as accountSelectSchema, an as accountUpdateSchema, ao as hasPaymentAccountAssigned, ap as isBatchAuthorized, aq as isBatchCompleted, ar as isBatchFailed, as as isBatchInitiated, at as isBatchProcessing, au as isBatchReadyToSign, av as isPaymentCompleted, aw as isPendingStatus, ax as isProcessedStatus, ay as isTerminalStatus } from './shared/bank.rXZSyAh9.js';
3
+ import { d as FinbricksAccount, R as ReferenceType, S as SendPaymentInput } from './shared/bank.DlUMmkWj.js';
4
+ export { e as FinbricksAccountTransactionsResponse, f as FinbricksAccountsListResponse, g as FinbricksAuthTokenResponse, h as FinbricksBatchResponse, i as FinbricksConnectAccountResponse, j as FinbricksPaymentResponse, k as FinbricksSupportedBank, F as FinbricksSupportedBanksResponse, b as SendPaymentSyncInput } from './shared/bank.DlUMmkWj.js';
5
5
  export { a as BankServiceEnv, b as BankServiceEnvironmentConfig, B as BankServiceWranglerConfig } from './shared/bank.CVJosema.js';
6
6
  import { BaseEvent } from '@develit-io/backend-sdk';
7
7
  import * as drizzle_zod from 'drizzle-zod';
package/dist/types.mjs CHANGED
@@ -1,5 +1,5 @@
1
- export { C as CsobConnector, D as DbuConnector, E as ErsteConnector, F as FINBRICKS_ENDPOINTS, a as FinbricksClient, b as FinbricksConnector, I as IBankConnector, K as KBConnector, M as MockCobsConnector, c as MockConnector, d as assignAccount, s as signFinbricksJws, t as toBatchedPayment, e as toBatchedPaymentFromPaymentRequest, f as toCompletedPayment, g as toIncomingPayment, h as toPaymentRequestInsert, i as toPreparedPayment, u as useFinbricksFetch } from './shared/bank.DW4baqPr.mjs';
2
- export { A as ACCOUNT_STATUSES, B as BATCH_MODES, a as BATCH_STATUES, a as BATCH_STATUSES, C as CHARGE_BEARERS, b as CONNECTOR_KEYS, c as COUNTRY_CODES, d as CREDENTIALS_TYPES, I as INSTRUCTION_PRIORITIES, P as PAYMENT_DIRECTIONS, e as PAYMENT_REQUEST_STATUSES, f as PAYMENT_STATUSES, g as PAYMENT_TYPES, T as TOKEN_TYPES, h as accountCredentialsInsertSchema, i as accountCredentialsSelectSchema, j as accountCredentialsUpdateSchema, k as accountInsertSchema, l as accountSelectSchema, m as accountUpdateSchema, n as hasPaymentAccountAssigned, o as isPaymentCompleted, p as isPendingStatus, q as isProcessedStatus, r as isTerminalStatus, s as ottInsertSchema, t as ottSelectSchema, u as ottUpdateSchema } from './shared/bank.B5s4U2l_.mjs';
1
+ export { C as CsobConnector, D as DbuConnector, E as ErsteConnector, F as FINBRICKS_ENDPOINTS, a as FinbricksClient, b as FinbricksConnector, I as IBankConnector, K as KBConnector, M as MockCobsConnector, c as MockConnector, d as assignAccount, s as signFinbricksJws, t as toBatchedPayment, e as toBatchedPaymentFromPaymentRequest, f as toCompletedPayment, g as toIncomingPayment, h as toPaymentRequestInsert, i as toPreparedPayment, u as useFinbricksFetch } from './shared/bank.B0Pi8vgE.mjs';
2
+ export { A as ACCOUNT_STATUSES, B as BATCH_MODES, a as BATCH_STATUES, a as BATCH_STATUSES, C as CHARGE_BEARERS, b as CONNECTOR_KEYS, c as COUNTRY_CODES, d as CREDENTIALS_TYPES, I as INSTRUCTION_PRIORITIES, P as PAYMENT_DIRECTIONS, e as PAYMENT_REQUEST_STATUSES, f as PAYMENT_STATUSES, g as PAYMENT_TYPES, T as TOKEN_TYPES, h as accountCredentialsInsertSchema, i as accountCredentialsSelectSchema, j as accountCredentialsUpdateSchema, k as accountInsertSchema, l as accountSelectSchema, m as accountUpdateSchema, n as hasPaymentAccountAssigned, o as isPaymentCompleted, p as isPendingStatus, q as isProcessedStatus, r as isTerminalStatus, s as ottInsertSchema, t as ottSelectSchema, u as ottUpdateSchema } from './shared/bank.CFhxDnI-.mjs';
3
3
  export { i as isBatchAuthorized, a as isBatchCompleted, b as isBatchFailed, c as isBatchInitiated, d as isBatchProcessing, e as isBatchReadyToSign } from './shared/bank.XqSw509X.mjs';
4
4
  export { BANK_CODES, CURRENCY_CODES } from '@develit-io/general-codes';
5
5
  import '@develit-io/backend-sdk';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@develit-services/bank",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "author": "Develit.io s.r.o.",
5
5
  "type": "module",
6
6
  "exports": {