@develit-services/bank 0.0.9 → 0.0.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.
@@ -786,435 +786,435 @@ __decorateClass([
786
786
  __decorateClass([
787
787
  action("getBatches")
788
788
  ], BankServiceBase.prototype, "getBatches");
789
- function defineBankService() {
789
+ function defineBankService({
790
+ configAccounts
791
+ }) {
790
792
  return class BankService extends BankServiceBase {
791
- constructor(ctx, env, configAccounts) {
792
- super(
793
- ctx,
794
- env,
795
- configAccounts || {
796
- stagingAccounts: [
797
- {
798
- connectorKey: "MOCK_COBS",
799
- id: "staging-czk",
800
- identification: {
801
- number: "1234567890",
802
- bankCode: "5051",
803
- iban: "CZ0350510000000000000449",
804
- holderName: "Devizov\xE1 Burza a.s."
805
- },
806
- fallbackLastSync: monthAgo,
807
- currency: "CZK",
808
- production: false
809
- },
810
- {
811
- connectorKey: "MOCK_COBS",
812
- id: "staging-eur",
813
- identification: {
814
- number: "2345678901",
815
- bankCode: "5051",
816
- iban: "CZ0750510000000000000668",
817
- holderName: "Devizov\xE1 Burza a.s."
818
- },
819
- fallbackLastSync: monthAgo,
820
- currency: "EUR",
821
- production: false
822
- },
823
- {
824
- connectorKey: "FIO",
825
- id: "kleinpetr-test",
826
- identification: {
827
- number: "2502130437",
828
- bankCode: "2010",
829
- iban: "CZ8520100000002502130437",
830
- holderName: "Petr Klein"
831
- },
832
- fallbackLastSync: monthAgo,
833
- currency: "CZK",
834
- production: true
835
- },
836
- {
837
- connectorKey: "MOCK",
838
- id: "id-test",
839
- identification: {
840
- number: "777777777",
841
- bankCode: "0800",
842
- iban: "PL0000000000002444430437",
843
- holderName: "Test Test"
844
- },
845
- fallbackLastSync: monthAgo,
846
- currency: "PLN",
847
- production: false
848
- }
849
- // {
850
- // connectorKey: 'MOCK_COBS',
851
- // id: 'staging-usd',
852
- // identification: {
853
- // iban: 'CZ3456789012345678901234',
854
- // accountNumberWithBankCode: '3456789012/3456',
855
- // },
856
- // currency: 'USD',
857
- // bankCode: '0800',
858
- // accountNumber: '3456789012',
859
- // production: false,
860
- // },
861
- ],
862
- productionAccounts: [
863
- // Banka CREDITAS (2250)
864
- {
865
- connectorKey: "CREDITAS",
866
- id: "2250-CZK",
867
- identification: {
868
- number: "100602391",
869
- bankCode: "2250",
870
- iban: "CZ5122500000000100602391",
871
- holderName: "Devizov\xE1 Burza a.s."
872
- },
873
- fallbackLastSync: monthAgo,
874
- currency: "CZK",
875
- production: true
876
- },
877
- {
878
- connectorKey: "CREDITAS",
879
- id: "2250-EUR",
880
- identification: {
881
- number: "100602404",
882
- bankCode: "2250",
883
- iban: "CZ8822500000000100602404",
884
- holderName: "Devizov\xE1 Burza a.s."
885
- },
886
- fallbackLastSync: monthAgo,
887
- currency: "EUR",
888
- production: true
889
- },
890
- {
891
- connectorKey: "CREDITAS",
892
- id: "2250-USD",
893
- identification: {
894
- number: "100602412",
895
- bankCode: "2250",
896
- iban: "CZ6622500000000100602412",
897
- holderName: "Devizov\xE1 Burza a.s."
898
- },
899
- fallbackLastSync: monthAgo,
900
- currency: "USD",
901
- production: true
902
- },
903
- {
904
- connectorKey: "CREDITAS",
905
- id: "2250-GBP",
906
- identification: {
907
- number: "100602420",
908
- bankCode: "2250",
909
- iban: "CZ4422500000000100602420",
910
- holderName: "Devizov\xE1 Burza a.s."
911
- },
912
- fallbackLastSync: monthAgo,
913
- currency: "GBP",
914
- production: true
915
- },
916
- {
917
- connectorKey: "CREDITAS",
918
- id: "2250-CHF",
919
- identification: {
920
- number: "100602439",
921
- bankCode: "2250",
922
- iban: "CZ1622500000000100602439",
923
- holderName: "Devizov\xE1 Burza a.s."
924
- },
925
- fallbackLastSync: monthAgo,
926
- currency: "CHF",
927
- production: true
928
- },
929
- {
930
- connectorKey: "CREDITAS",
931
- id: "2250-PLN",
932
- identification: {
933
- number: "100602447",
934
- bankCode: "2250",
935
- iban: "CZ9122500000000100602447",
936
- holderName: "Devizov\xE1 Burza a.s."
937
- },
938
- fallbackLastSync: monthAgo,
939
- currency: "PLN",
940
- production: true
941
- },
942
- // Fio banka (2010)
943
- {
944
- connectorKey: "FINBRICKS",
945
- id: "2010-CZK",
946
- identification: {
947
- number: "2500845869",
948
- bankCode: "2010",
949
- iban: "CZ0420100000002500845869",
950
- holderName: "Devizov\xE1 Burza a.s."
951
- },
952
- fallbackLastSync: monthAgo,
953
- currency: "CZK",
954
- production: true
955
- },
956
- {
957
- connectorKey: "FINBRICKS",
958
- id: "2010-EUR",
959
- identification: {
960
- number: "2600884128",
961
- bankCode: "2010",
962
- iban: "CZ0820100000002600884128",
963
- holderName: "Devizov\xE1 Burza a.s."
964
- },
965
- fallbackLastSync: monthAgo,
966
- currency: "EUR",
967
- production: true
968
- },
969
- {
970
- connectorKey: "FINBRICKS",
971
- id: "2010-USD",
972
- identification: {
973
- number: "2700884133",
974
- bankCode: "2010",
975
- iban: "CZ1420100000002700884133",
976
- holderName: "Devizov\xE1 Burza a.s."
977
- },
978
- fallbackLastSync: monthAgo,
979
- currency: "USD",
980
- production: true
981
- },
982
- {
983
- connectorKey: "FINBRICKS",
984
- id: "2010-CHF",
985
- identification: {
986
- number: "2401098351",
987
- bankCode: "2010",
988
- iban: "CZ0920100000002401098351",
989
- holderName: "Devizov\xE1 Burza a.s."
990
- },
991
- fallbackLastSync: monthAgo,
992
- currency: "CHF",
993
- production: true
994
- },
995
- {
996
- connectorKey: "FINBRICKS",
997
- id: "2010-GBP",
998
- identification: {
999
- number: "2400884131",
1000
- bankCode: "2010",
1001
- iban: "CZ3320100000002400884131",
1002
- holderName: "Devizov\xE1 Burza a.s."
1003
- },
1004
- fallbackLastSync: monthAgo,
1005
- currency: "GBP",
1006
- production: true
1007
- },
1008
- {
1009
- connectorKey: "FINBRICKS",
1010
- id: "2010-PLN",
1011
- identification: {
1012
- number: "2701098353",
1013
- bankCode: "2010",
1014
- iban: "CZ8720100000002701098353",
1015
- holderName: "Devizov\xE1 Burza a.s."
1016
- },
1017
- fallbackLastSync: monthAgo,
1018
- currency: "PLN",
1019
- production: true
1020
- },
1021
- {
1022
- connectorKey: "FINBRICKS",
1023
- id: "2010-CAD",
1024
- identification: {
1025
- number: "2701478102",
1026
- bankCode: "2010",
1027
- iban: "CZ5520100000002701478102",
1028
- holderName: "Devizov\xE1 Burza a.s."
1029
- },
1030
- fallbackLastSync: monthAgo,
1031
- currency: "CAD",
1032
- production: true
1033
- },
1034
- // Komerční banka (0100)
1035
- {
1036
- connectorKey: "FINBRICKS",
1037
- id: "0100-CZK",
1038
- identification: {
1039
- number: "115-1483630297",
1040
- bankCode: "0100",
1041
- iban: "CZ5901000001151483630297",
1042
- holderName: "Devizov\xE1 Burza a.s."
1043
- },
1044
- fallbackLastSync: monthAgo,
1045
- currency: "CZK",
1046
- production: true
1047
- },
1048
- {
1049
- connectorKey: "FINBRICKS",
1050
- id: "0100-EUR",
1051
- identification: {
1052
- number: "115-1484940297",
1053
- bankCode: "0100",
1054
- iban: "CZ4201000001151484940297",
1055
- holderName: "Devizov\xE1 Burza a.s."
1056
- },
1057
- fallbackLastSync: monthAgo,
1058
- currency: "EUR",
1059
- production: true
1060
- },
1061
- {
1062
- connectorKey: "FINBRICKS",
1063
- id: "0100-USD",
1064
- identification: {
1065
- number: "115-1483960237",
1066
- bankCode: "0100",
1067
- iban: "CZ6201000001151483960237",
1068
- holderName: "Devizov\xE1 Burza a.s."
1069
- },
1070
- fallbackLastSync: monthAgo,
1071
- currency: "USD",
1072
- production: true
1073
- },
1074
- {
1075
- connectorKey: "FINBRICKS",
1076
- id: "0100-PLN",
1077
- identification: {
1078
- number: "115-6674290267",
1079
- bankCode: "0100",
1080
- iban: "CZ3501000001156674290267",
1081
- holderName: "Devizov\xE1 Burza a.s."
1082
- },
1083
- fallbackLastSync: monthAgo,
1084
- currency: "PLN",
1085
- production: true
1086
- },
1087
- {
1088
- connectorKey: "FINBRICKS",
1089
- id: "0100-SEK",
1090
- identification: {
1091
- number: "115-9578110207",
1092
- bankCode: "0100",
1093
- iban: "CZ2401000001159578110207",
1094
- holderName: "Devizov\xE1 Burza a.s."
1095
- },
1096
- fallbackLastSync: monthAgo,
1097
- currency: "SEK",
1098
- production: true
1099
- },
1100
- // Česká spořitelna (0800)
1101
- {
1102
- connectorKey: "ERSTE",
1103
- id: "0800-CZK",
1104
- identification: {
1105
- number: "4413926379",
1106
- bankCode: "0800",
1107
- iban: "CZ7908000000004413926379",
1108
- holderName: "Devizov\xE1 Burza a.s."
1109
- },
1110
- fallbackLastSync: monthAgo,
1111
- currency: "CZK",
1112
- production: true
1113
- },
1114
- {
1115
- connectorKey: "ERSTE",
1116
- id: "0800-EUR",
1117
- identification: {
1118
- number: "1966646293",
1119
- bankCode: "0800",
1120
- iban: "CZ2308000000001966646293",
1121
- holderName: "Devizov\xE1 Burza a.s."
1122
- },
1123
- fallbackLastSync: monthAgo,
1124
- currency: "EUR",
1125
- production: true
1126
- },
1127
- {
1128
- connectorKey: "ERSTE",
1129
- id: "0800-USD",
1130
- identification: {
1131
- number: "1978982243",
1132
- bankCode: "0800",
1133
- iban: "CZ1908000000001978982243",
1134
- holderName: "Devizov\xE1 Burza a.s."
1135
- },
1136
- fallbackLastSync: monthAgo,
1137
- currency: "USD",
1138
- production: true
1139
- },
1140
- {
1141
- connectorKey: "ERSTE",
1142
- id: "0800-HUF",
1143
- identification: {
1144
- number: "13461252",
1145
- bankCode: "0800",
1146
- iban: "CZ1908000000000013461252",
1147
- holderName: "Devizov\xE1 Burza a.s."
1148
- },
1149
- fallbackLastSync: monthAgo,
1150
- currency: "HUF",
1151
- production: true
1152
- },
1153
- // MONETA Money Bank (0600)
1154
- {
1155
- connectorKey: "FINBRICKS",
1156
- id: "0600-CZK",
1157
- identification: {
1158
- number: "224252186",
1159
- bankCode: "0600",
1160
- iban: "CZ5906000000000224252186",
1161
- holderName: "Devizov\xE1 Burza a.s."
1162
- },
1163
- fallbackLastSync: monthAgo,
1164
- currency: "CZK",
1165
- production: true
1166
- },
1167
- {
1168
- connectorKey: "FINBRICKS",
1169
- id: "0600-EUR",
1170
- identification: {
1171
- number: "224252231",
1172
- bankCode: "0600",
1173
- iban: "CZ0806000000000224252231",
1174
- holderName: "Devizov\xE1 Burza a.s."
1175
- },
1176
- fallbackLastSync: monthAgo,
1177
- currency: "EUR",
1178
- production: true
1179
- },
1180
- {
1181
- connectorKey: "FINBRICKS",
1182
- id: "0600-USD",
1183
- identification: {
1184
- number: "224252290",
1185
- bankCode: "0600",
1186
- iban: "CZ6406000000000224252290",
1187
- holderName: "Devizov\xE1 Burza a.s."
1188
- },
1189
- fallbackLastSync: monthAgo,
1190
- currency: "USD",
1191
- production: true
1192
- },
1193
- // NEY spořitelní družstvo (2260)
1194
- {
1195
- connectorKey: "FINBRICKS",
1196
- id: "2260-CZK",
1197
- identification: {
1198
- number: "1702700014",
1199
- bankCode: "2260",
1200
- iban: "CZ7422600000001702700014",
1201
- holderName: "Devizov\xE1 Burza a.s."
1202
- },
1203
- fallbackLastSync: monthAgo,
1204
- currency: "CZK",
1205
- production: true
1206
- }
1207
- ]
1208
- }
1209
- );
793
+ constructor(ctx, env) {
794
+ super(ctx, env, configAccounts);
1210
795
  }
1211
796
  };
1212
797
  }
798
+
1213
799
  const monthAgo = new Date(
1214
800
  Date.now() - 30 * 24 * 60 * 60 * 1e3
1215
801
  // 30 days ago
1216
802
  );
1217
-
1218
- const BankService = defineBankService();
803
+ const BankService = defineBankService({
804
+ configAccounts: {
805
+ stagingAccounts: [
806
+ {
807
+ connectorKey: "MOCK_COBS",
808
+ id: "staging-czk",
809
+ identification: {
810
+ number: "1234567890",
811
+ bankCode: "5051",
812
+ iban: "CZ0350510000000000000449",
813
+ holderName: "Devizov\xE1 Burza a.s."
814
+ },
815
+ fallbackLastSync: monthAgo,
816
+ currency: "CZK",
817
+ production: false
818
+ },
819
+ {
820
+ connectorKey: "MOCK_COBS",
821
+ id: "staging-eur",
822
+ identification: {
823
+ number: "2345678901",
824
+ bankCode: "5051",
825
+ iban: "CZ0750510000000000000668",
826
+ holderName: "Devizov\xE1 Burza a.s."
827
+ },
828
+ fallbackLastSync: monthAgo,
829
+ currency: "EUR",
830
+ production: false
831
+ },
832
+ {
833
+ connectorKey: "FIO",
834
+ id: "kleinpetr-test",
835
+ identification: {
836
+ number: "2502130437",
837
+ bankCode: "2010",
838
+ iban: "CZ8520100000002502130437",
839
+ holderName: "Petr Klein"
840
+ },
841
+ fallbackLastSync: monthAgo,
842
+ currency: "CZK",
843
+ production: true
844
+ },
845
+ {
846
+ connectorKey: "MOCK",
847
+ id: "id-test",
848
+ identification: {
849
+ number: "777777777",
850
+ bankCode: "0800",
851
+ iban: "PL0000000000002444430437",
852
+ holderName: "Test Test"
853
+ },
854
+ fallbackLastSync: monthAgo,
855
+ currency: "PLN",
856
+ production: false
857
+ }
858
+ // {
859
+ // connectorKey: 'MOCK_COBS',
860
+ // id: 'staging-usd',
861
+ // identification: {
862
+ // iban: 'CZ3456789012345678901234',
863
+ // accountNumberWithBankCode: '3456789012/3456',
864
+ // },
865
+ // currency: 'USD',
866
+ // bankCode: '0800',
867
+ // accountNumber: '3456789012',
868
+ // production: false,
869
+ // },
870
+ ],
871
+ productionAccounts: [
872
+ // Banka CREDITAS (2250)
873
+ {
874
+ connectorKey: "CREDITAS",
875
+ id: "2250-CZK",
876
+ identification: {
877
+ number: "100602391",
878
+ bankCode: "2250",
879
+ iban: "CZ5122500000000100602391",
880
+ holderName: "Devizov\xE1 Burza a.s."
881
+ },
882
+ fallbackLastSync: monthAgo,
883
+ currency: "CZK",
884
+ production: true
885
+ },
886
+ {
887
+ connectorKey: "CREDITAS",
888
+ id: "2250-EUR",
889
+ identification: {
890
+ number: "100602404",
891
+ bankCode: "2250",
892
+ iban: "CZ8822500000000100602404",
893
+ holderName: "Devizov\xE1 Burza a.s."
894
+ },
895
+ fallbackLastSync: monthAgo,
896
+ currency: "EUR",
897
+ production: true
898
+ },
899
+ {
900
+ connectorKey: "CREDITAS",
901
+ id: "2250-USD",
902
+ identification: {
903
+ number: "100602412",
904
+ bankCode: "2250",
905
+ iban: "CZ6622500000000100602412",
906
+ holderName: "Devizov\xE1 Burza a.s."
907
+ },
908
+ fallbackLastSync: monthAgo,
909
+ currency: "USD",
910
+ production: true
911
+ },
912
+ {
913
+ connectorKey: "CREDITAS",
914
+ id: "2250-GBP",
915
+ identification: {
916
+ number: "100602420",
917
+ bankCode: "2250",
918
+ iban: "CZ4422500000000100602420",
919
+ holderName: "Devizov\xE1 Burza a.s."
920
+ },
921
+ fallbackLastSync: monthAgo,
922
+ currency: "GBP",
923
+ production: true
924
+ },
925
+ {
926
+ connectorKey: "CREDITAS",
927
+ id: "2250-CHF",
928
+ identification: {
929
+ number: "100602439",
930
+ bankCode: "2250",
931
+ iban: "CZ1622500000000100602439",
932
+ holderName: "Devizov\xE1 Burza a.s."
933
+ },
934
+ fallbackLastSync: monthAgo,
935
+ currency: "CHF",
936
+ production: true
937
+ },
938
+ {
939
+ connectorKey: "CREDITAS",
940
+ id: "2250-PLN",
941
+ identification: {
942
+ number: "100602447",
943
+ bankCode: "2250",
944
+ iban: "CZ9122500000000100602447",
945
+ holderName: "Devizov\xE1 Burza a.s."
946
+ },
947
+ fallbackLastSync: monthAgo,
948
+ currency: "PLN",
949
+ production: true
950
+ },
951
+ // Fio banka (2010)
952
+ {
953
+ connectorKey: "FINBRICKS",
954
+ id: "2010-CZK",
955
+ identification: {
956
+ number: "2500845869",
957
+ bankCode: "2010",
958
+ iban: "CZ0420100000002500845869",
959
+ holderName: "Devizov\xE1 Burza a.s."
960
+ },
961
+ fallbackLastSync: monthAgo,
962
+ currency: "CZK",
963
+ production: true
964
+ },
965
+ {
966
+ connectorKey: "FINBRICKS",
967
+ id: "2010-EUR",
968
+ identification: {
969
+ number: "2600884128",
970
+ bankCode: "2010",
971
+ iban: "CZ0820100000002600884128",
972
+ holderName: "Devizov\xE1 Burza a.s."
973
+ },
974
+ fallbackLastSync: monthAgo,
975
+ currency: "EUR",
976
+ production: true
977
+ },
978
+ {
979
+ connectorKey: "FINBRICKS",
980
+ id: "2010-USD",
981
+ identification: {
982
+ number: "2700884133",
983
+ bankCode: "2010",
984
+ iban: "CZ1420100000002700884133",
985
+ holderName: "Devizov\xE1 Burza a.s."
986
+ },
987
+ fallbackLastSync: monthAgo,
988
+ currency: "USD",
989
+ production: true
990
+ },
991
+ {
992
+ connectorKey: "FINBRICKS",
993
+ id: "2010-CHF",
994
+ identification: {
995
+ number: "2401098351",
996
+ bankCode: "2010",
997
+ iban: "CZ0920100000002401098351",
998
+ holderName: "Devizov\xE1 Burza a.s."
999
+ },
1000
+ fallbackLastSync: monthAgo,
1001
+ currency: "CHF",
1002
+ production: true
1003
+ },
1004
+ {
1005
+ connectorKey: "FINBRICKS",
1006
+ id: "2010-GBP",
1007
+ identification: {
1008
+ number: "2400884131",
1009
+ bankCode: "2010",
1010
+ iban: "CZ3320100000002400884131",
1011
+ holderName: "Devizov\xE1 Burza a.s."
1012
+ },
1013
+ fallbackLastSync: monthAgo,
1014
+ currency: "GBP",
1015
+ production: true
1016
+ },
1017
+ {
1018
+ connectorKey: "FINBRICKS",
1019
+ id: "2010-PLN",
1020
+ identification: {
1021
+ number: "2701098353",
1022
+ bankCode: "2010",
1023
+ iban: "CZ8720100000002701098353",
1024
+ holderName: "Devizov\xE1 Burza a.s."
1025
+ },
1026
+ fallbackLastSync: monthAgo,
1027
+ currency: "PLN",
1028
+ production: true
1029
+ },
1030
+ {
1031
+ connectorKey: "FINBRICKS",
1032
+ id: "2010-CAD",
1033
+ identification: {
1034
+ number: "2701478102",
1035
+ bankCode: "2010",
1036
+ iban: "CZ5520100000002701478102",
1037
+ holderName: "Devizov\xE1 Burza a.s."
1038
+ },
1039
+ fallbackLastSync: monthAgo,
1040
+ currency: "CAD",
1041
+ production: true
1042
+ },
1043
+ // Komerční banka (0100)
1044
+ {
1045
+ connectorKey: "FINBRICKS",
1046
+ id: "0100-CZK",
1047
+ identification: {
1048
+ number: "115-1483630297",
1049
+ bankCode: "0100",
1050
+ iban: "CZ5901000001151483630297",
1051
+ holderName: "Devizov\xE1 Burza a.s."
1052
+ },
1053
+ fallbackLastSync: monthAgo,
1054
+ currency: "CZK",
1055
+ production: true
1056
+ },
1057
+ {
1058
+ connectorKey: "FINBRICKS",
1059
+ id: "0100-EUR",
1060
+ identification: {
1061
+ number: "115-1484940297",
1062
+ bankCode: "0100",
1063
+ iban: "CZ4201000001151484940297",
1064
+ holderName: "Devizov\xE1 Burza a.s."
1065
+ },
1066
+ fallbackLastSync: monthAgo,
1067
+ currency: "EUR",
1068
+ production: true
1069
+ },
1070
+ {
1071
+ connectorKey: "FINBRICKS",
1072
+ id: "0100-USD",
1073
+ identification: {
1074
+ number: "115-1483960237",
1075
+ bankCode: "0100",
1076
+ iban: "CZ6201000001151483960237",
1077
+ holderName: "Devizov\xE1 Burza a.s."
1078
+ },
1079
+ fallbackLastSync: monthAgo,
1080
+ currency: "USD",
1081
+ production: true
1082
+ },
1083
+ {
1084
+ connectorKey: "FINBRICKS",
1085
+ id: "0100-PLN",
1086
+ identification: {
1087
+ number: "115-6674290267",
1088
+ bankCode: "0100",
1089
+ iban: "CZ3501000001156674290267",
1090
+ holderName: "Devizov\xE1 Burza a.s."
1091
+ },
1092
+ fallbackLastSync: monthAgo,
1093
+ currency: "PLN",
1094
+ production: true
1095
+ },
1096
+ {
1097
+ connectorKey: "FINBRICKS",
1098
+ id: "0100-SEK",
1099
+ identification: {
1100
+ number: "115-9578110207",
1101
+ bankCode: "0100",
1102
+ iban: "CZ2401000001159578110207",
1103
+ holderName: "Devizov\xE1 Burza a.s."
1104
+ },
1105
+ fallbackLastSync: monthAgo,
1106
+ currency: "SEK",
1107
+ production: true
1108
+ },
1109
+ // Česká spořitelna (0800)
1110
+ {
1111
+ connectorKey: "ERSTE",
1112
+ id: "0800-CZK",
1113
+ identification: {
1114
+ number: "4413926379",
1115
+ bankCode: "0800",
1116
+ iban: "CZ7908000000004413926379",
1117
+ holderName: "Devizov\xE1 Burza a.s."
1118
+ },
1119
+ fallbackLastSync: monthAgo,
1120
+ currency: "CZK",
1121
+ production: true
1122
+ },
1123
+ {
1124
+ connectorKey: "ERSTE",
1125
+ id: "0800-EUR",
1126
+ identification: {
1127
+ number: "1966646293",
1128
+ bankCode: "0800",
1129
+ iban: "CZ2308000000001966646293",
1130
+ holderName: "Devizov\xE1 Burza a.s."
1131
+ },
1132
+ fallbackLastSync: monthAgo,
1133
+ currency: "EUR",
1134
+ production: true
1135
+ },
1136
+ {
1137
+ connectorKey: "ERSTE",
1138
+ id: "0800-USD",
1139
+ identification: {
1140
+ number: "1978982243",
1141
+ bankCode: "0800",
1142
+ iban: "CZ1908000000001978982243",
1143
+ holderName: "Devizov\xE1 Burza a.s."
1144
+ },
1145
+ fallbackLastSync: monthAgo,
1146
+ currency: "USD",
1147
+ production: true
1148
+ },
1149
+ {
1150
+ connectorKey: "ERSTE",
1151
+ id: "0800-HUF",
1152
+ identification: {
1153
+ number: "13461252",
1154
+ bankCode: "0800",
1155
+ iban: "CZ1908000000000013461252",
1156
+ holderName: "Devizov\xE1 Burza a.s."
1157
+ },
1158
+ fallbackLastSync: monthAgo,
1159
+ currency: "HUF",
1160
+ production: true
1161
+ },
1162
+ // MONETA Money Bank (0600)
1163
+ {
1164
+ connectorKey: "FINBRICKS",
1165
+ id: "0600-CZK",
1166
+ identification: {
1167
+ number: "224252186",
1168
+ bankCode: "0600",
1169
+ iban: "CZ5906000000000224252186",
1170
+ holderName: "Devizov\xE1 Burza a.s."
1171
+ },
1172
+ fallbackLastSync: monthAgo,
1173
+ currency: "CZK",
1174
+ production: true
1175
+ },
1176
+ {
1177
+ connectorKey: "FINBRICKS",
1178
+ id: "0600-EUR",
1179
+ identification: {
1180
+ number: "224252231",
1181
+ bankCode: "0600",
1182
+ iban: "CZ0806000000000224252231",
1183
+ holderName: "Devizov\xE1 Burza a.s."
1184
+ },
1185
+ fallbackLastSync: monthAgo,
1186
+ currency: "EUR",
1187
+ production: true
1188
+ },
1189
+ {
1190
+ connectorKey: "FINBRICKS",
1191
+ id: "0600-USD",
1192
+ identification: {
1193
+ number: "224252290",
1194
+ bankCode: "0600",
1195
+ iban: "CZ6406000000000224252290",
1196
+ holderName: "Devizov\xE1 Burza a.s."
1197
+ },
1198
+ fallbackLastSync: monthAgo,
1199
+ currency: "USD",
1200
+ production: true
1201
+ },
1202
+ // NEY spořitelní družstvo (2260)
1203
+ {
1204
+ connectorKey: "FINBRICKS",
1205
+ id: "2260-CZK",
1206
+ identification: {
1207
+ number: "1702700014",
1208
+ bankCode: "2260",
1209
+ iban: "CZ7422600000001702700014",
1210
+ holderName: "Devizov\xE1 Burza a.s."
1211
+ },
1212
+ fallbackLastSync: monthAgo,
1213
+ currency: "CZK",
1214
+ production: true
1215
+ }
1216
+ ]
1217
+ }
1218
+ });
1219
1219
 
1220
1220
  export { BankService as default, defineBankService };