@be-logixpair/api 0.0.7 → 0.0.8
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.
- package/dist/index.d.ts +237 -63
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -308,7 +308,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
308
308
|
minor_unit: string | null;
|
|
309
309
|
decimal_unit: number | null;
|
|
310
310
|
iso_decimal: number | null;
|
|
311
|
-
}
|
|
311
|
+
};
|
|
312
312
|
};
|
|
313
313
|
meta: object;
|
|
314
314
|
}>;
|
|
@@ -336,7 +336,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
336
336
|
ids_currency?: number[] | null | undefined;
|
|
337
337
|
};
|
|
338
338
|
output: {
|
|
339
|
-
data:
|
|
339
|
+
data: {
|
|
340
|
+
params: Record<string, unknown>;
|
|
340
341
|
log_type: {
|
|
341
342
|
id: number;
|
|
342
343
|
name: string | null;
|
|
@@ -347,17 +348,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
347
348
|
updated_by: string | null;
|
|
348
349
|
logic_code: string | null;
|
|
349
350
|
} | null;
|
|
350
|
-
} & {
|
|
351
351
|
id: number;
|
|
352
352
|
url: string | null;
|
|
353
353
|
id_log_type: number | null;
|
|
354
354
|
action: string | null;
|
|
355
|
-
params: JsonValue | null;
|
|
356
355
|
action_by: string | null;
|
|
357
356
|
action_id: string | null;
|
|
358
357
|
action_at: Date | null;
|
|
359
358
|
id_currency: number | null;
|
|
360
|
-
}
|
|
359
|
+
}[] | undefined;
|
|
361
360
|
total: number | undefined;
|
|
362
361
|
};
|
|
363
362
|
meta: object;
|
|
@@ -368,7 +367,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
368
367
|
id_string?: string | null | undefined;
|
|
369
368
|
};
|
|
370
369
|
output: {
|
|
371
|
-
data:
|
|
370
|
+
data: {
|
|
371
|
+
params: Record<string, unknown>;
|
|
372
372
|
log_type: {
|
|
373
373
|
id: number;
|
|
374
374
|
name: string | null;
|
|
@@ -379,17 +379,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
379
379
|
updated_by: string | null;
|
|
380
380
|
logic_code: string | null;
|
|
381
381
|
} | null;
|
|
382
|
-
} & {
|
|
383
382
|
id: number;
|
|
384
383
|
url: string | null;
|
|
385
384
|
id_log_type: number | null;
|
|
386
385
|
action: string | null;
|
|
387
|
-
params: JsonValue | null;
|
|
388
386
|
action_by: string | null;
|
|
389
387
|
action_id: string | null;
|
|
390
388
|
action_at: Date | null;
|
|
391
389
|
id_currency: number | null;
|
|
392
|
-
}
|
|
390
|
+
} | undefined;
|
|
393
391
|
};
|
|
394
392
|
meta: object;
|
|
395
393
|
}>;
|
|
@@ -613,7 +611,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
613
611
|
has_discharge: boolean | null;
|
|
614
612
|
has_seaport: boolean | null;
|
|
615
613
|
has_outport: boolean | null;
|
|
616
|
-
}
|
|
614
|
+
};
|
|
617
615
|
};
|
|
618
616
|
meta: object;
|
|
619
617
|
}>;
|
|
@@ -641,7 +639,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
641
639
|
ids_un_locode?: number[] | null | undefined;
|
|
642
640
|
};
|
|
643
641
|
output: {
|
|
644
|
-
data:
|
|
642
|
+
data: {
|
|
643
|
+
params: Record<string, unknown>;
|
|
645
644
|
log_type: {
|
|
646
645
|
id: number;
|
|
647
646
|
name: string | null;
|
|
@@ -652,17 +651,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
652
651
|
updated_by: string | null;
|
|
653
652
|
logic_code: string | null;
|
|
654
653
|
} | null;
|
|
655
|
-
} & {
|
|
656
654
|
id: number;
|
|
657
655
|
url: string | null;
|
|
658
656
|
id_log_type: number | null;
|
|
659
657
|
action: string | null;
|
|
660
|
-
params: JsonValue | null;
|
|
661
658
|
action_by: string | null;
|
|
662
659
|
action_id: string | null;
|
|
663
660
|
action_at: Date | null;
|
|
664
661
|
id_un_locode: number | null;
|
|
665
|
-
}
|
|
662
|
+
}[] | undefined;
|
|
666
663
|
total: number | undefined;
|
|
667
664
|
};
|
|
668
665
|
meta: object;
|
|
@@ -673,7 +670,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
673
670
|
id_string?: string | null | undefined;
|
|
674
671
|
};
|
|
675
672
|
output: {
|
|
676
|
-
data:
|
|
673
|
+
data: {
|
|
674
|
+
params: Record<string, unknown>;
|
|
677
675
|
log_type: {
|
|
678
676
|
id: number;
|
|
679
677
|
name: string | null;
|
|
@@ -684,17 +682,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
684
682
|
updated_by: string | null;
|
|
685
683
|
logic_code: string | null;
|
|
686
684
|
} | null;
|
|
687
|
-
} & {
|
|
688
685
|
id: number;
|
|
689
686
|
url: string | null;
|
|
690
687
|
id_log_type: number | null;
|
|
691
688
|
action: string | null;
|
|
692
|
-
params: JsonValue | null;
|
|
693
689
|
action_by: string | null;
|
|
694
690
|
action_id: string | null;
|
|
695
691
|
action_at: Date | null;
|
|
696
692
|
id_un_locode: number | null;
|
|
697
|
-
}
|
|
693
|
+
} | undefined;
|
|
698
694
|
};
|
|
699
695
|
meta: object;
|
|
700
696
|
}>;
|
|
@@ -941,6 +937,43 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
941
937
|
};
|
|
942
938
|
output: {
|
|
943
939
|
data: {
|
|
940
|
+
_count: {
|
|
941
|
+
currency: number;
|
|
942
|
+
un_locodes: number;
|
|
943
|
+
states: number;
|
|
944
|
+
cities: number;
|
|
945
|
+
postal_codes: number;
|
|
946
|
+
local_codes: number;
|
|
947
|
+
country_logs: number;
|
|
948
|
+
airlines: number;
|
|
949
|
+
vessels: number;
|
|
950
|
+
branches: number;
|
|
951
|
+
users: number;
|
|
952
|
+
bank_accounts: number;
|
|
953
|
+
companies: number;
|
|
954
|
+
customs_datas: number;
|
|
955
|
+
forwarding_console_reference_numbers: number;
|
|
956
|
+
shipping_lines: number;
|
|
957
|
+
organization_forwarder_detail_handlings: number;
|
|
958
|
+
};
|
|
959
|
+
currency: {
|
|
960
|
+
symbol: string | null;
|
|
961
|
+
id: number;
|
|
962
|
+
name: string | null;
|
|
963
|
+
is_active: boolean | null;
|
|
964
|
+
created_at: Date | null;
|
|
965
|
+
created_by: string | null;
|
|
966
|
+
updated_at: Date | null;
|
|
967
|
+
updated_by: string | null;
|
|
968
|
+
logic_code: string | null;
|
|
969
|
+
currency_code: string | null;
|
|
970
|
+
currency_name: string | null;
|
|
971
|
+
major_unit: string | null;
|
|
972
|
+
minor_unit: string | null;
|
|
973
|
+
decimal_unit: number | null;
|
|
974
|
+
iso_decimal: number | null;
|
|
975
|
+
} | null;
|
|
976
|
+
} & {
|
|
944
977
|
id: number;
|
|
945
978
|
name: string | null;
|
|
946
979
|
is_active: boolean | null;
|
|
@@ -954,7 +987,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
954
987
|
iso3_code: string | null;
|
|
955
988
|
iso3_numeric: string | null;
|
|
956
989
|
is_sanctioned: boolean | null;
|
|
957
|
-
}
|
|
990
|
+
};
|
|
958
991
|
};
|
|
959
992
|
meta: object;
|
|
960
993
|
}>;
|
|
@@ -982,7 +1015,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
982
1015
|
ids_country?: number[] | null | undefined;
|
|
983
1016
|
};
|
|
984
1017
|
output: {
|
|
985
|
-
data:
|
|
1018
|
+
data: {
|
|
1019
|
+
params: Record<string, unknown>;
|
|
986
1020
|
log_type: {
|
|
987
1021
|
id: number;
|
|
988
1022
|
name: string | null;
|
|
@@ -993,17 +1027,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
993
1027
|
updated_by: string | null;
|
|
994
1028
|
logic_code: string | null;
|
|
995
1029
|
} | null;
|
|
996
|
-
} & {
|
|
997
1030
|
id: number;
|
|
998
1031
|
url: string | null;
|
|
999
1032
|
id_log_type: number | null;
|
|
1000
1033
|
id_country: number | null;
|
|
1001
1034
|
action: string | null;
|
|
1002
|
-
params: JsonValue | null;
|
|
1003
1035
|
action_by: string | null;
|
|
1004
1036
|
action_id: string | null;
|
|
1005
1037
|
action_at: Date | null;
|
|
1006
|
-
}
|
|
1038
|
+
}[] | undefined;
|
|
1007
1039
|
total: number | undefined;
|
|
1008
1040
|
};
|
|
1009
1041
|
meta: object;
|
|
@@ -1014,7 +1046,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1014
1046
|
id_string?: string | null | undefined;
|
|
1015
1047
|
};
|
|
1016
1048
|
output: {
|
|
1017
|
-
data:
|
|
1049
|
+
data: {
|
|
1050
|
+
params: Record<string, unknown>;
|
|
1018
1051
|
log_type: {
|
|
1019
1052
|
id: number;
|
|
1020
1053
|
name: string | null;
|
|
@@ -1025,17 +1058,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1025
1058
|
updated_by: string | null;
|
|
1026
1059
|
logic_code: string | null;
|
|
1027
1060
|
} | null;
|
|
1028
|
-
} & {
|
|
1029
1061
|
id: number;
|
|
1030
1062
|
url: string | null;
|
|
1031
1063
|
id_log_type: number | null;
|
|
1032
1064
|
id_country: number | null;
|
|
1033
1065
|
action: string | null;
|
|
1034
|
-
params: JsonValue | null;
|
|
1035
1066
|
action_by: string | null;
|
|
1036
1067
|
action_id: string | null;
|
|
1037
1068
|
action_at: Date | null;
|
|
1038
|
-
}
|
|
1069
|
+
} | undefined;
|
|
1039
1070
|
};
|
|
1040
1071
|
meta: object;
|
|
1041
1072
|
}>;
|
|
@@ -1192,6 +1223,51 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1192
1223
|
};
|
|
1193
1224
|
output: {
|
|
1194
1225
|
data: {
|
|
1226
|
+
_count: {
|
|
1227
|
+
country: number;
|
|
1228
|
+
un_locodes: number;
|
|
1229
|
+
cities: number;
|
|
1230
|
+
state_logs: number;
|
|
1231
|
+
airlines: number;
|
|
1232
|
+
branches: number;
|
|
1233
|
+
users: number;
|
|
1234
|
+
companies: number;
|
|
1235
|
+
shipping_lines: number;
|
|
1236
|
+
};
|
|
1237
|
+
country: ({
|
|
1238
|
+
currency: {
|
|
1239
|
+
symbol: string | null;
|
|
1240
|
+
id: number;
|
|
1241
|
+
name: string | null;
|
|
1242
|
+
is_active: boolean | null;
|
|
1243
|
+
created_at: Date | null;
|
|
1244
|
+
created_by: string | null;
|
|
1245
|
+
updated_at: Date | null;
|
|
1246
|
+
updated_by: string | null;
|
|
1247
|
+
logic_code: string | null;
|
|
1248
|
+
currency_code: string | null;
|
|
1249
|
+
currency_name: string | null;
|
|
1250
|
+
major_unit: string | null;
|
|
1251
|
+
minor_unit: string | null;
|
|
1252
|
+
decimal_unit: number | null;
|
|
1253
|
+
iso_decimal: number | null;
|
|
1254
|
+
} | null;
|
|
1255
|
+
} & {
|
|
1256
|
+
id: number;
|
|
1257
|
+
name: string | null;
|
|
1258
|
+
is_active: boolean | null;
|
|
1259
|
+
created_at: Date | null;
|
|
1260
|
+
created_by: string | null;
|
|
1261
|
+
updated_at: Date | null;
|
|
1262
|
+
updated_by: string | null;
|
|
1263
|
+
logic_code: string | null;
|
|
1264
|
+
id_currency: number | null;
|
|
1265
|
+
iso2_code: string | null;
|
|
1266
|
+
iso3_code: string | null;
|
|
1267
|
+
iso3_numeric: string | null;
|
|
1268
|
+
is_sanctioned: boolean | null;
|
|
1269
|
+
}) | null;
|
|
1270
|
+
} & {
|
|
1195
1271
|
id: number;
|
|
1196
1272
|
name: string | null;
|
|
1197
1273
|
is_active: boolean | null;
|
|
@@ -1202,7 +1278,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1202
1278
|
updated_at: Date | null;
|
|
1203
1279
|
updated_by: string | null;
|
|
1204
1280
|
logic_code: string | null;
|
|
1205
|
-
}
|
|
1281
|
+
};
|
|
1206
1282
|
};
|
|
1207
1283
|
meta: object;
|
|
1208
1284
|
}>;
|
|
@@ -1230,7 +1306,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1230
1306
|
ids_state?: number[] | null | undefined;
|
|
1231
1307
|
};
|
|
1232
1308
|
output: {
|
|
1233
|
-
data:
|
|
1309
|
+
data: {
|
|
1310
|
+
params: Record<string, unknown>;
|
|
1234
1311
|
log_type: {
|
|
1235
1312
|
id: number;
|
|
1236
1313
|
name: string | null;
|
|
@@ -1241,17 +1318,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1241
1318
|
updated_by: string | null;
|
|
1242
1319
|
logic_code: string | null;
|
|
1243
1320
|
} | null;
|
|
1244
|
-
} & {
|
|
1245
1321
|
id: number;
|
|
1246
1322
|
url: string | null;
|
|
1247
1323
|
id_log_type: number | null;
|
|
1248
1324
|
id_state: number | null;
|
|
1249
1325
|
action: string | null;
|
|
1250
|
-
params: JsonValue | null;
|
|
1251
1326
|
action_by: string | null;
|
|
1252
1327
|
action_id: string | null;
|
|
1253
1328
|
action_at: Date | null;
|
|
1254
|
-
}
|
|
1329
|
+
}[] | undefined;
|
|
1255
1330
|
total: number | undefined;
|
|
1256
1331
|
};
|
|
1257
1332
|
meta: object;
|
|
@@ -1262,7 +1337,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1262
1337
|
id_string?: string | null | undefined;
|
|
1263
1338
|
};
|
|
1264
1339
|
output: {
|
|
1265
|
-
data:
|
|
1340
|
+
data: {
|
|
1341
|
+
params: Record<string, unknown>;
|
|
1266
1342
|
log_type: {
|
|
1267
1343
|
id: number;
|
|
1268
1344
|
name: string | null;
|
|
@@ -1273,17 +1349,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1273
1349
|
updated_by: string | null;
|
|
1274
1350
|
logic_code: string | null;
|
|
1275
1351
|
} | null;
|
|
1276
|
-
} & {
|
|
1277
1352
|
id: number;
|
|
1278
1353
|
url: string | null;
|
|
1279
1354
|
id_log_type: number | null;
|
|
1280
1355
|
action: string | null;
|
|
1281
|
-
params: JsonValue | null;
|
|
1282
1356
|
action_by: string | null;
|
|
1283
1357
|
action_id: string | null;
|
|
1284
1358
|
action_at: Date | null;
|
|
1285
1359
|
id_time_zone: number | null;
|
|
1286
|
-
}
|
|
1360
|
+
} | undefined;
|
|
1287
1361
|
};
|
|
1288
1362
|
meta: object;
|
|
1289
1363
|
}>;
|
|
@@ -1426,6 +1500,64 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1426
1500
|
};
|
|
1427
1501
|
output: {
|
|
1428
1502
|
data: {
|
|
1503
|
+
_count: {
|
|
1504
|
+
country: number;
|
|
1505
|
+
state: number;
|
|
1506
|
+
un_locodes: number;
|
|
1507
|
+
cities_postal_codes: number;
|
|
1508
|
+
city_logs: number;
|
|
1509
|
+
airlines: number;
|
|
1510
|
+
branches: number;
|
|
1511
|
+
users: number;
|
|
1512
|
+
companies: number;
|
|
1513
|
+
shipping_lines: number;
|
|
1514
|
+
};
|
|
1515
|
+
country: ({
|
|
1516
|
+
currency: {
|
|
1517
|
+
symbol: string | null;
|
|
1518
|
+
id: number;
|
|
1519
|
+
name: string | null;
|
|
1520
|
+
is_active: boolean | null;
|
|
1521
|
+
created_at: Date | null;
|
|
1522
|
+
created_by: string | null;
|
|
1523
|
+
updated_at: Date | null;
|
|
1524
|
+
updated_by: string | null;
|
|
1525
|
+
logic_code: string | null;
|
|
1526
|
+
currency_code: string | null;
|
|
1527
|
+
currency_name: string | null;
|
|
1528
|
+
major_unit: string | null;
|
|
1529
|
+
minor_unit: string | null;
|
|
1530
|
+
decimal_unit: number | null;
|
|
1531
|
+
iso_decimal: number | null;
|
|
1532
|
+
} | null;
|
|
1533
|
+
} & {
|
|
1534
|
+
id: number;
|
|
1535
|
+
name: string | null;
|
|
1536
|
+
is_active: boolean | null;
|
|
1537
|
+
created_at: Date | null;
|
|
1538
|
+
created_by: string | null;
|
|
1539
|
+
updated_at: Date | null;
|
|
1540
|
+
updated_by: string | null;
|
|
1541
|
+
logic_code: string | null;
|
|
1542
|
+
id_currency: number | null;
|
|
1543
|
+
iso2_code: string | null;
|
|
1544
|
+
iso3_code: string | null;
|
|
1545
|
+
iso3_numeric: string | null;
|
|
1546
|
+
is_sanctioned: boolean | null;
|
|
1547
|
+
}) | null;
|
|
1548
|
+
state: {
|
|
1549
|
+
id: number;
|
|
1550
|
+
name: string | null;
|
|
1551
|
+
is_active: boolean | null;
|
|
1552
|
+
id_country: number | null;
|
|
1553
|
+
code: string | null;
|
|
1554
|
+
created_at: Date | null;
|
|
1555
|
+
created_by: string | null;
|
|
1556
|
+
updated_at: Date | null;
|
|
1557
|
+
updated_by: string | null;
|
|
1558
|
+
logic_code: string | null;
|
|
1559
|
+
} | null;
|
|
1560
|
+
} & {
|
|
1429
1561
|
id: number;
|
|
1430
1562
|
name: string | null;
|
|
1431
1563
|
is_active: boolean | null;
|
|
@@ -1437,7 +1569,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1437
1569
|
updated_at: Date | null;
|
|
1438
1570
|
updated_by: string | null;
|
|
1439
1571
|
logic_code: string | null;
|
|
1440
|
-
}
|
|
1572
|
+
};
|
|
1441
1573
|
};
|
|
1442
1574
|
meta: object;
|
|
1443
1575
|
}>;
|
|
@@ -1465,7 +1597,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1465
1597
|
ids_city?: number[] | null | undefined;
|
|
1466
1598
|
};
|
|
1467
1599
|
output: {
|
|
1468
|
-
data:
|
|
1600
|
+
data: {
|
|
1601
|
+
params: Record<string, unknown>;
|
|
1469
1602
|
log_type: {
|
|
1470
1603
|
id: number;
|
|
1471
1604
|
name: string | null;
|
|
@@ -1476,17 +1609,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1476
1609
|
updated_by: string | null;
|
|
1477
1610
|
logic_code: string | null;
|
|
1478
1611
|
} | null;
|
|
1479
|
-
} & {
|
|
1480
1612
|
id: number;
|
|
1481
1613
|
url: string | null;
|
|
1482
1614
|
id_log_type: number | null;
|
|
1483
1615
|
id_city: number | null;
|
|
1484
1616
|
action: string | null;
|
|
1485
|
-
params: JsonValue | null;
|
|
1486
1617
|
action_by: string | null;
|
|
1487
1618
|
action_id: string | null;
|
|
1488
1619
|
action_at: Date | null;
|
|
1489
|
-
}
|
|
1620
|
+
}[] | undefined;
|
|
1490
1621
|
total: number | undefined;
|
|
1491
1622
|
};
|
|
1492
1623
|
meta: object;
|
|
@@ -1497,7 +1628,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1497
1628
|
id_string?: string | null | undefined;
|
|
1498
1629
|
};
|
|
1499
1630
|
output: {
|
|
1500
|
-
data:
|
|
1631
|
+
data: {
|
|
1632
|
+
params: Record<string, unknown>;
|
|
1501
1633
|
log_type: {
|
|
1502
1634
|
id: number;
|
|
1503
1635
|
name: string | null;
|
|
@@ -1508,17 +1640,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1508
1640
|
updated_by: string | null;
|
|
1509
1641
|
logic_code: string | null;
|
|
1510
1642
|
} | null;
|
|
1511
|
-
} & {
|
|
1512
1643
|
id: number;
|
|
1513
1644
|
url: string | null;
|
|
1514
1645
|
id_log_type: number | null;
|
|
1515
1646
|
id_city: number | null;
|
|
1516
1647
|
action: string | null;
|
|
1517
|
-
params: JsonValue | null;
|
|
1518
1648
|
action_by: string | null;
|
|
1519
1649
|
action_id: string | null;
|
|
1520
1650
|
action_at: Date | null;
|
|
1521
|
-
}
|
|
1651
|
+
} | undefined;
|
|
1522
1652
|
};
|
|
1523
1653
|
meta: object;
|
|
1524
1654
|
}>;
|
|
@@ -1663,6 +1793,50 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1663
1793
|
};
|
|
1664
1794
|
output: {
|
|
1665
1795
|
data: {
|
|
1796
|
+
_count: {
|
|
1797
|
+
country: number;
|
|
1798
|
+
cities_postal_codes: number;
|
|
1799
|
+
postal_code_logs: number;
|
|
1800
|
+
airlines: number;
|
|
1801
|
+
branches: number;
|
|
1802
|
+
users: number;
|
|
1803
|
+
companies: number;
|
|
1804
|
+
shipping_lines: number;
|
|
1805
|
+
};
|
|
1806
|
+
country: ({
|
|
1807
|
+
currency: {
|
|
1808
|
+
symbol: string | null;
|
|
1809
|
+
id: number;
|
|
1810
|
+
name: string | null;
|
|
1811
|
+
is_active: boolean | null;
|
|
1812
|
+
created_at: Date | null;
|
|
1813
|
+
created_by: string | null;
|
|
1814
|
+
updated_at: Date | null;
|
|
1815
|
+
updated_by: string | null;
|
|
1816
|
+
logic_code: string | null;
|
|
1817
|
+
currency_code: string | null;
|
|
1818
|
+
currency_name: string | null;
|
|
1819
|
+
major_unit: string | null;
|
|
1820
|
+
minor_unit: string | null;
|
|
1821
|
+
decimal_unit: number | null;
|
|
1822
|
+
iso_decimal: number | null;
|
|
1823
|
+
} | null;
|
|
1824
|
+
} & {
|
|
1825
|
+
id: number;
|
|
1826
|
+
name: string | null;
|
|
1827
|
+
is_active: boolean | null;
|
|
1828
|
+
created_at: Date | null;
|
|
1829
|
+
created_by: string | null;
|
|
1830
|
+
updated_at: Date | null;
|
|
1831
|
+
updated_by: string | null;
|
|
1832
|
+
logic_code: string | null;
|
|
1833
|
+
id_currency: number | null;
|
|
1834
|
+
iso2_code: string | null;
|
|
1835
|
+
iso3_code: string | null;
|
|
1836
|
+
iso3_numeric: string | null;
|
|
1837
|
+
is_sanctioned: boolean | null;
|
|
1838
|
+
}) | null;
|
|
1839
|
+
} & {
|
|
1666
1840
|
id: number;
|
|
1667
1841
|
is_active: boolean | null;
|
|
1668
1842
|
id_country: number | null;
|
|
@@ -1672,7 +1846,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1672
1846
|
updated_at: Date | null;
|
|
1673
1847
|
updated_by: string | null;
|
|
1674
1848
|
logic_code: string | null;
|
|
1675
|
-
}
|
|
1849
|
+
};
|
|
1676
1850
|
};
|
|
1677
1851
|
meta: object;
|
|
1678
1852
|
}>;
|
|
@@ -1700,7 +1874,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1700
1874
|
ids_postal_code?: number[] | null | undefined;
|
|
1701
1875
|
};
|
|
1702
1876
|
output: {
|
|
1703
|
-
data:
|
|
1877
|
+
data: {
|
|
1878
|
+
params: Record<string, unknown>;
|
|
1704
1879
|
log_type: {
|
|
1705
1880
|
id: number;
|
|
1706
1881
|
name: string | null;
|
|
@@ -1711,17 +1886,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1711
1886
|
updated_by: string | null;
|
|
1712
1887
|
logic_code: string | null;
|
|
1713
1888
|
} | null;
|
|
1714
|
-
} & {
|
|
1715
1889
|
id: number;
|
|
1716
1890
|
url: string | null;
|
|
1717
1891
|
id_log_type: number | null;
|
|
1718
1892
|
action: string | null;
|
|
1719
|
-
params: JsonValue | null;
|
|
1720
1893
|
action_by: string | null;
|
|
1721
1894
|
action_id: string | null;
|
|
1722
1895
|
action_at: Date | null;
|
|
1723
1896
|
id_postal_code: number | null;
|
|
1724
|
-
}
|
|
1897
|
+
}[] | undefined;
|
|
1725
1898
|
total: number | undefined;
|
|
1726
1899
|
};
|
|
1727
1900
|
meta: object;
|
|
@@ -1732,7 +1905,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1732
1905
|
id_string?: string | null | undefined;
|
|
1733
1906
|
};
|
|
1734
1907
|
output: {
|
|
1735
|
-
data:
|
|
1908
|
+
data: {
|
|
1909
|
+
params: Record<string, unknown>;
|
|
1736
1910
|
log_type: {
|
|
1737
1911
|
id: number;
|
|
1738
1912
|
name: string | null;
|
|
@@ -1743,17 +1917,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1743
1917
|
updated_by: string | null;
|
|
1744
1918
|
logic_code: string | null;
|
|
1745
1919
|
} | null;
|
|
1746
|
-
} & {
|
|
1747
1920
|
id: number;
|
|
1748
1921
|
url: string | null;
|
|
1749
1922
|
id_log_type: number | null;
|
|
1750
1923
|
action: string | null;
|
|
1751
|
-
params: JsonValue | null;
|
|
1752
1924
|
action_by: string | null;
|
|
1753
1925
|
action_id: string | null;
|
|
1754
1926
|
action_at: Date | null;
|
|
1755
1927
|
id_postal_code: number | null;
|
|
1756
|
-
}
|
|
1928
|
+
} | undefined;
|
|
1757
1929
|
};
|
|
1758
1930
|
meta: object;
|
|
1759
1931
|
}>;
|
|
@@ -1890,6 +2062,10 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1890
2062
|
};
|
|
1891
2063
|
output: {
|
|
1892
2064
|
data: {
|
|
2065
|
+
_count: {
|
|
2066
|
+
time_zone_logs: number;
|
|
2067
|
+
};
|
|
2068
|
+
} & {
|
|
1893
2069
|
id: number;
|
|
1894
2070
|
name: string | null;
|
|
1895
2071
|
is_active: boolean | null;
|
|
@@ -1900,7 +2076,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1900
2076
|
updated_by: string | null;
|
|
1901
2077
|
logic_code: string | null;
|
|
1902
2078
|
utc_offset: Decimal | null;
|
|
1903
|
-
}
|
|
2079
|
+
};
|
|
1904
2080
|
};
|
|
1905
2081
|
meta: object;
|
|
1906
2082
|
}>;
|
|
@@ -1928,7 +2104,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1928
2104
|
ids_time_zone?: number[] | null | undefined;
|
|
1929
2105
|
};
|
|
1930
2106
|
output: {
|
|
1931
|
-
data:
|
|
2107
|
+
data: {
|
|
2108
|
+
params: Record<string, unknown>;
|
|
1932
2109
|
log_type: {
|
|
1933
2110
|
id: number;
|
|
1934
2111
|
name: string | null;
|
|
@@ -1939,17 +2116,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1939
2116
|
updated_by: string | null;
|
|
1940
2117
|
logic_code: string | null;
|
|
1941
2118
|
} | null;
|
|
1942
|
-
} & {
|
|
1943
2119
|
id: number;
|
|
1944
2120
|
url: string | null;
|
|
1945
2121
|
id_log_type: number | null;
|
|
1946
2122
|
action: string | null;
|
|
1947
|
-
params: JsonValue | null;
|
|
1948
2123
|
action_by: string | null;
|
|
1949
2124
|
action_id: string | null;
|
|
1950
2125
|
action_at: Date | null;
|
|
1951
2126
|
id_time_zone: number | null;
|
|
1952
|
-
}
|
|
2127
|
+
}[] | undefined;
|
|
1953
2128
|
total: number | undefined;
|
|
1954
2129
|
};
|
|
1955
2130
|
meta: object;
|
|
@@ -1960,7 +2135,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1960
2135
|
id_string?: string | null | undefined;
|
|
1961
2136
|
};
|
|
1962
2137
|
output: {
|
|
1963
|
-
data:
|
|
2138
|
+
data: {
|
|
2139
|
+
params: Record<string, unknown>;
|
|
1964
2140
|
log_type: {
|
|
1965
2141
|
id: number;
|
|
1966
2142
|
name: string | null;
|
|
@@ -1971,17 +2147,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1971
2147
|
updated_by: string | null;
|
|
1972
2148
|
logic_code: string | null;
|
|
1973
2149
|
} | null;
|
|
1974
|
-
} & {
|
|
1975
2150
|
id: number;
|
|
1976
2151
|
url: string | null;
|
|
1977
2152
|
id_log_type: number | null;
|
|
1978
2153
|
action: string | null;
|
|
1979
|
-
params: JsonValue | null;
|
|
1980
2154
|
action_by: string | null;
|
|
1981
2155
|
action_id: string | null;
|
|
1982
2156
|
action_at: Date | null;
|
|
1983
2157
|
id_time_zone: number | null;
|
|
1984
|
-
}
|
|
2158
|
+
} | undefined;
|
|
1985
2159
|
};
|
|
1986
2160
|
meta: object;
|
|
1987
2161
|
}>;
|