@be-logixpair/api 0.0.8 → 0.0.10
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 +857 -50
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -536,19 +536,81 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
536
536
|
ids_string_exclude?: string[] | null | undefined;
|
|
537
537
|
logic_codes_include?: string[] | null | undefined;
|
|
538
538
|
logic_codes_exclude?: string[] | null | undefined;
|
|
539
|
+
id_country?: number | null | undefined;
|
|
540
|
+
ids_country?: number[] | null | undefined;
|
|
541
|
+
id_state?: number | null | undefined;
|
|
542
|
+
ids_state?: number[] | null | undefined;
|
|
543
|
+
id_city?: number | null | undefined;
|
|
544
|
+
ids_city?: number[] | null | undefined;
|
|
545
|
+
id_time_zone?: number | null | undefined;
|
|
546
|
+
ids_time_zone?: number[] | null | undefined;
|
|
539
547
|
};
|
|
540
548
|
output: {
|
|
541
|
-
data: {
|
|
549
|
+
data: ({
|
|
550
|
+
country: {
|
|
551
|
+
id: number;
|
|
552
|
+
name: string | null;
|
|
553
|
+
is_active: boolean | null;
|
|
554
|
+
created_at: Date | null;
|
|
555
|
+
created_by: string | null;
|
|
556
|
+
updated_at: Date | null;
|
|
557
|
+
updated_by: string | null;
|
|
558
|
+
logic_code: string | null;
|
|
559
|
+
id_currency: number | null;
|
|
560
|
+
iso2_code: string | null;
|
|
561
|
+
iso3_code: string | null;
|
|
562
|
+
iso3_numeric: string | null;
|
|
563
|
+
is_sanctioned: boolean | null;
|
|
564
|
+
} | null;
|
|
565
|
+
state: {
|
|
566
|
+
id: number;
|
|
567
|
+
name: string | null;
|
|
568
|
+
is_active: boolean | null;
|
|
569
|
+
id_country: number | null;
|
|
570
|
+
code: string | null;
|
|
571
|
+
created_at: Date | null;
|
|
572
|
+
created_by: string | null;
|
|
573
|
+
updated_at: Date | null;
|
|
574
|
+
updated_by: string | null;
|
|
575
|
+
logic_code: string | null;
|
|
576
|
+
} | null;
|
|
577
|
+
city: {
|
|
578
|
+
id: number;
|
|
579
|
+
name: string | null;
|
|
580
|
+
is_active: boolean | null;
|
|
581
|
+
id_country: number | null;
|
|
582
|
+
id_state: number | null;
|
|
583
|
+
code: string | null;
|
|
584
|
+
created_at: Date | null;
|
|
585
|
+
created_by: string | null;
|
|
586
|
+
updated_at: Date | null;
|
|
587
|
+
updated_by: string | null;
|
|
588
|
+
logic_code: string | null;
|
|
589
|
+
} | null;
|
|
590
|
+
time_zone: {
|
|
591
|
+
id: number;
|
|
592
|
+
name: string | null;
|
|
593
|
+
is_active: boolean | null;
|
|
594
|
+
code: string | null;
|
|
595
|
+
created_at: Date | null;
|
|
596
|
+
created_by: string | null;
|
|
597
|
+
updated_at: Date | null;
|
|
598
|
+
updated_by: string | null;
|
|
599
|
+
logic_code: string | null;
|
|
600
|
+
utc_offset: string | null;
|
|
601
|
+
} | null;
|
|
602
|
+
} & {
|
|
542
603
|
id: number;
|
|
543
604
|
is_active: boolean | null;
|
|
544
|
-
id_city: number | null;
|
|
545
605
|
id_country: number | null;
|
|
546
606
|
id_state: number | null;
|
|
607
|
+
id_city: number | null;
|
|
547
608
|
created_at: Date | null;
|
|
548
609
|
created_by: string | null;
|
|
549
610
|
updated_at: Date | null;
|
|
550
611
|
updated_by: string | null;
|
|
551
612
|
logic_code: string | null;
|
|
613
|
+
id_time_zone: number | null;
|
|
552
614
|
un_code: string | null;
|
|
553
615
|
iata_code: string | null;
|
|
554
616
|
iata_region_code: string | null;
|
|
@@ -569,7 +631,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
569
631
|
has_discharge: boolean | null;
|
|
570
632
|
has_seaport: boolean | null;
|
|
571
633
|
has_outport: boolean | null;
|
|
572
|
-
}[] | undefined;
|
|
634
|
+
})[] | undefined;
|
|
573
635
|
total: number | undefined;
|
|
574
636
|
};
|
|
575
637
|
meta: object;
|
|
@@ -581,16 +643,108 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
581
643
|
};
|
|
582
644
|
output: {
|
|
583
645
|
data: {
|
|
646
|
+
_count: {
|
|
647
|
+
country: number;
|
|
648
|
+
state: number;
|
|
649
|
+
city: number;
|
|
650
|
+
time_zone: number;
|
|
651
|
+
local_codes: number;
|
|
652
|
+
un_locode_logs: number;
|
|
653
|
+
branches: number;
|
|
654
|
+
companies: number;
|
|
655
|
+
airlines: number;
|
|
656
|
+
shipping_lines: number;
|
|
657
|
+
forwarding_booking_origins: number;
|
|
658
|
+
forwarding_booking_destinations: number;
|
|
659
|
+
forwarding_shipment_origins: number;
|
|
660
|
+
forwarding_shipment_destinations: number;
|
|
661
|
+
forwarding_console_first_loads: number;
|
|
662
|
+
forwarding_console_last_discharges: number;
|
|
663
|
+
forwarding_console_routing_loads: number;
|
|
664
|
+
forwarding_console_routing_discharges: number;
|
|
665
|
+
};
|
|
666
|
+
country: ({
|
|
667
|
+
currency: {
|
|
668
|
+
symbol: string | null;
|
|
669
|
+
id: number;
|
|
670
|
+
name: string | null;
|
|
671
|
+
is_active: boolean | null;
|
|
672
|
+
created_at: Date | null;
|
|
673
|
+
created_by: string | null;
|
|
674
|
+
updated_at: Date | null;
|
|
675
|
+
updated_by: string | null;
|
|
676
|
+
logic_code: string | null;
|
|
677
|
+
currency_code: string | null;
|
|
678
|
+
currency_name: string | null;
|
|
679
|
+
major_unit: string | null;
|
|
680
|
+
minor_unit: string | null;
|
|
681
|
+
decimal_unit: number | null;
|
|
682
|
+
iso_decimal: number | null;
|
|
683
|
+
} | null;
|
|
684
|
+
} & {
|
|
685
|
+
id: number;
|
|
686
|
+
name: string | null;
|
|
687
|
+
is_active: boolean | null;
|
|
688
|
+
created_at: Date | null;
|
|
689
|
+
created_by: string | null;
|
|
690
|
+
updated_at: Date | null;
|
|
691
|
+
updated_by: string | null;
|
|
692
|
+
logic_code: string | null;
|
|
693
|
+
id_currency: number | null;
|
|
694
|
+
iso2_code: string | null;
|
|
695
|
+
iso3_code: string | null;
|
|
696
|
+
iso3_numeric: string | null;
|
|
697
|
+
is_sanctioned: boolean | null;
|
|
698
|
+
}) | null;
|
|
699
|
+
state: {
|
|
700
|
+
id: number;
|
|
701
|
+
name: string | null;
|
|
702
|
+
is_active: boolean | null;
|
|
703
|
+
id_country: number | null;
|
|
704
|
+
code: string | null;
|
|
705
|
+
created_at: Date | null;
|
|
706
|
+
created_by: string | null;
|
|
707
|
+
updated_at: Date | null;
|
|
708
|
+
updated_by: string | null;
|
|
709
|
+
logic_code: string | null;
|
|
710
|
+
} | null;
|
|
711
|
+
city: {
|
|
712
|
+
id: number;
|
|
713
|
+
name: string | null;
|
|
714
|
+
is_active: boolean | null;
|
|
715
|
+
id_country: number | null;
|
|
716
|
+
id_state: number | null;
|
|
717
|
+
code: string | null;
|
|
718
|
+
created_at: Date | null;
|
|
719
|
+
created_by: string | null;
|
|
720
|
+
updated_at: Date | null;
|
|
721
|
+
updated_by: string | null;
|
|
722
|
+
logic_code: string | null;
|
|
723
|
+
} | null;
|
|
724
|
+
time_zone: {
|
|
725
|
+
id: number;
|
|
726
|
+
name: string | null;
|
|
727
|
+
is_active: boolean | null;
|
|
728
|
+
code: string | null;
|
|
729
|
+
created_at: Date | null;
|
|
730
|
+
created_by: string | null;
|
|
731
|
+
updated_at: Date | null;
|
|
732
|
+
updated_by: string | null;
|
|
733
|
+
logic_code: string | null;
|
|
734
|
+
utc_offset: string | null;
|
|
735
|
+
} | null;
|
|
736
|
+
} & {
|
|
584
737
|
id: number;
|
|
585
738
|
is_active: boolean | null;
|
|
586
|
-
id_city: number | null;
|
|
587
739
|
id_country: number | null;
|
|
588
740
|
id_state: number | null;
|
|
741
|
+
id_city: number | null;
|
|
589
742
|
created_at: Date | null;
|
|
590
743
|
created_by: string | null;
|
|
591
744
|
updated_at: Date | null;
|
|
592
745
|
updated_by: string | null;
|
|
593
746
|
logic_code: string | null;
|
|
747
|
+
id_time_zone: number | null;
|
|
594
748
|
un_code: string | null;
|
|
595
749
|
iata_code: string | null;
|
|
596
750
|
iata_region_code: string | null;
|
|
@@ -701,6 +855,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
701
855
|
id_country?: number | null | undefined;
|
|
702
856
|
id_state?: number | null | undefined;
|
|
703
857
|
id_city?: number | null | undefined;
|
|
858
|
+
id_time_zone?: number | null | undefined;
|
|
704
859
|
logic_code?: string | null | undefined;
|
|
705
860
|
un_code?: string | null | undefined;
|
|
706
861
|
iata_code?: string | null | undefined;
|
|
@@ -727,14 +882,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
727
882
|
data: {
|
|
728
883
|
id: number;
|
|
729
884
|
is_active: boolean | null;
|
|
730
|
-
id_city: number | null;
|
|
731
885
|
id_country: number | null;
|
|
732
886
|
id_state: number | null;
|
|
887
|
+
id_city: number | null;
|
|
733
888
|
created_at: Date | null;
|
|
734
889
|
created_by: string | null;
|
|
735
890
|
updated_at: Date | null;
|
|
736
891
|
updated_by: string | null;
|
|
737
892
|
logic_code: string | null;
|
|
893
|
+
id_time_zone: number | null;
|
|
738
894
|
un_code: string | null;
|
|
739
895
|
iata_code: string | null;
|
|
740
896
|
iata_region_code: string | null;
|
|
@@ -778,6 +934,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
778
934
|
id_country?: number | null | undefined;
|
|
779
935
|
id_state?: number | null | undefined;
|
|
780
936
|
id_city?: number | null | undefined;
|
|
937
|
+
id_time_zone?: number | null | undefined;
|
|
781
938
|
logic_code?: string | null | undefined;
|
|
782
939
|
un_code?: string | null | undefined;
|
|
783
940
|
iata_code?: string | null | undefined;
|
|
@@ -804,14 +961,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
804
961
|
data: {
|
|
805
962
|
id: number;
|
|
806
963
|
is_active: boolean | null;
|
|
807
|
-
id_city: number | null;
|
|
808
964
|
id_country: number | null;
|
|
809
965
|
id_state: number | null;
|
|
966
|
+
id_city: number | null;
|
|
810
967
|
created_at: Date | null;
|
|
811
968
|
created_by: string | null;
|
|
812
969
|
updated_at: Date | null;
|
|
813
970
|
updated_by: string | null;
|
|
814
971
|
logic_code: string | null;
|
|
972
|
+
id_time_zone: number | null;
|
|
815
973
|
un_code: string | null;
|
|
816
974
|
iata_code: string | null;
|
|
817
975
|
iata_region_code: string | null;
|
|
@@ -858,14 +1016,15 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
858
1016
|
data: ({
|
|
859
1017
|
id: number;
|
|
860
1018
|
is_active: boolean | null;
|
|
861
|
-
id_city: number | null;
|
|
862
1019
|
id_country: number | null;
|
|
863
1020
|
id_state: number | null;
|
|
1021
|
+
id_city: number | null;
|
|
864
1022
|
created_at: Date | null;
|
|
865
1023
|
created_by: string | null;
|
|
866
1024
|
updated_at: Date | null;
|
|
867
1025
|
updated_by: string | null;
|
|
868
1026
|
logic_code: string | null;
|
|
1027
|
+
id_time_zone: number | null;
|
|
869
1028
|
un_code: string | null;
|
|
870
1029
|
iata_code: string | null;
|
|
871
1030
|
iata_region_code: string | null;
|
|
@@ -909,9 +1068,29 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
909
1068
|
ids_string_exclude?: string[] | null | undefined;
|
|
910
1069
|
logic_codes_include?: string[] | null | undefined;
|
|
911
1070
|
logic_codes_exclude?: string[] | null | undefined;
|
|
1071
|
+
id_currency?: number | null | undefined;
|
|
1072
|
+
ids_currency?: number[] | null | undefined;
|
|
912
1073
|
};
|
|
913
1074
|
output: {
|
|
914
|
-
data: {
|
|
1075
|
+
data: ({
|
|
1076
|
+
currency: {
|
|
1077
|
+
symbol: string | null;
|
|
1078
|
+
id: number;
|
|
1079
|
+
name: string | null;
|
|
1080
|
+
is_active: boolean | null;
|
|
1081
|
+
created_at: Date | null;
|
|
1082
|
+
created_by: string | null;
|
|
1083
|
+
updated_at: Date | null;
|
|
1084
|
+
updated_by: string | null;
|
|
1085
|
+
logic_code: string | null;
|
|
1086
|
+
currency_code: string | null;
|
|
1087
|
+
currency_name: string | null;
|
|
1088
|
+
major_unit: string | null;
|
|
1089
|
+
minor_unit: string | null;
|
|
1090
|
+
decimal_unit: number | null;
|
|
1091
|
+
iso_decimal: number | null;
|
|
1092
|
+
} | null;
|
|
1093
|
+
} & {
|
|
915
1094
|
id: number;
|
|
916
1095
|
name: string | null;
|
|
917
1096
|
is_active: boolean | null;
|
|
@@ -925,7 +1104,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
925
1104
|
iso3_code: string | null;
|
|
926
1105
|
iso3_numeric: string | null;
|
|
927
1106
|
is_sanctioned: boolean | null;
|
|
928
|
-
}[] | undefined;
|
|
1107
|
+
})[] | undefined;
|
|
929
1108
|
total: number | undefined;
|
|
930
1109
|
};
|
|
931
1110
|
meta: object;
|
|
@@ -1198,9 +1377,27 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1198
1377
|
ids_string_exclude?: string[] | null | undefined;
|
|
1199
1378
|
logic_codes_include?: string[] | null | undefined;
|
|
1200
1379
|
logic_codes_exclude?: string[] | null | undefined;
|
|
1380
|
+
id_country?: number | null | undefined;
|
|
1381
|
+
ids_country?: number[] | null | undefined;
|
|
1201
1382
|
};
|
|
1202
1383
|
output: {
|
|
1203
|
-
data: {
|
|
1384
|
+
data: ({
|
|
1385
|
+
country: {
|
|
1386
|
+
id: number;
|
|
1387
|
+
name: string | null;
|
|
1388
|
+
is_active: boolean | null;
|
|
1389
|
+
created_at: Date | null;
|
|
1390
|
+
created_by: string | null;
|
|
1391
|
+
updated_at: Date | null;
|
|
1392
|
+
updated_by: string | null;
|
|
1393
|
+
logic_code: string | null;
|
|
1394
|
+
id_currency: number | null;
|
|
1395
|
+
iso2_code: string | null;
|
|
1396
|
+
iso3_code: string | null;
|
|
1397
|
+
iso3_numeric: string | null;
|
|
1398
|
+
is_sanctioned: boolean | null;
|
|
1399
|
+
} | null;
|
|
1400
|
+
} & {
|
|
1204
1401
|
id: number;
|
|
1205
1402
|
name: string | null;
|
|
1206
1403
|
is_active: boolean | null;
|
|
@@ -1211,7 +1408,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1211
1408
|
updated_at: Date | null;
|
|
1212
1409
|
updated_by: string | null;
|
|
1213
1410
|
logic_code: string | null;
|
|
1214
|
-
}[] | undefined;
|
|
1411
|
+
})[] | undefined;
|
|
1215
1412
|
total: number | undefined;
|
|
1216
1413
|
};
|
|
1217
1414
|
meta: object;
|
|
@@ -1474,9 +1671,41 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1474
1671
|
ids_string_exclude?: string[] | null | undefined;
|
|
1475
1672
|
logic_codes_include?: string[] | null | undefined;
|
|
1476
1673
|
logic_codes_exclude?: string[] | null | undefined;
|
|
1674
|
+
id_country?: number | null | undefined;
|
|
1675
|
+
ids_country?: number[] | null | undefined;
|
|
1676
|
+
id_state?: number | null | undefined;
|
|
1677
|
+
ids_state?: number[] | null | undefined;
|
|
1477
1678
|
};
|
|
1478
1679
|
output: {
|
|
1479
|
-
data: {
|
|
1680
|
+
data: ({
|
|
1681
|
+
country: {
|
|
1682
|
+
id: number;
|
|
1683
|
+
name: string | null;
|
|
1684
|
+
is_active: boolean | null;
|
|
1685
|
+
created_at: Date | null;
|
|
1686
|
+
created_by: string | null;
|
|
1687
|
+
updated_at: Date | null;
|
|
1688
|
+
updated_by: string | null;
|
|
1689
|
+
logic_code: string | null;
|
|
1690
|
+
id_currency: number | null;
|
|
1691
|
+
iso2_code: string | null;
|
|
1692
|
+
iso3_code: string | null;
|
|
1693
|
+
iso3_numeric: string | null;
|
|
1694
|
+
is_sanctioned: boolean | null;
|
|
1695
|
+
} | null;
|
|
1696
|
+
state: {
|
|
1697
|
+
id: number;
|
|
1698
|
+
name: string | null;
|
|
1699
|
+
is_active: boolean | null;
|
|
1700
|
+
id_country: number | null;
|
|
1701
|
+
code: string | null;
|
|
1702
|
+
created_at: Date | null;
|
|
1703
|
+
created_by: string | null;
|
|
1704
|
+
updated_at: Date | null;
|
|
1705
|
+
updated_by: string | null;
|
|
1706
|
+
logic_code: string | null;
|
|
1707
|
+
} | null;
|
|
1708
|
+
} & {
|
|
1480
1709
|
id: number;
|
|
1481
1710
|
name: string | null;
|
|
1482
1711
|
is_active: boolean | null;
|
|
@@ -1488,7 +1717,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1488
1717
|
updated_at: Date | null;
|
|
1489
1718
|
updated_by: string | null;
|
|
1490
1719
|
logic_code: string | null;
|
|
1491
|
-
}[] | undefined;
|
|
1720
|
+
})[] | undefined;
|
|
1492
1721
|
total: number | undefined;
|
|
1493
1722
|
};
|
|
1494
1723
|
meta: object;
|
|
@@ -1769,9 +1998,27 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1769
1998
|
ids_string_exclude?: string[] | null | undefined;
|
|
1770
1999
|
logic_codes_include?: string[] | null | undefined;
|
|
1771
2000
|
logic_codes_exclude?: string[] | null | undefined;
|
|
2001
|
+
id_country?: number | null | undefined;
|
|
2002
|
+
ids_country?: number[] | null | undefined;
|
|
1772
2003
|
};
|
|
1773
2004
|
output: {
|
|
1774
|
-
data: {
|
|
2005
|
+
data: ({
|
|
2006
|
+
country: {
|
|
2007
|
+
id: number;
|
|
2008
|
+
name: string | null;
|
|
2009
|
+
is_active: boolean | null;
|
|
2010
|
+
created_at: Date | null;
|
|
2011
|
+
created_by: string | null;
|
|
2012
|
+
updated_at: Date | null;
|
|
2013
|
+
updated_by: string | null;
|
|
2014
|
+
logic_code: string | null;
|
|
2015
|
+
id_currency: number | null;
|
|
2016
|
+
iso2_code: string | null;
|
|
2017
|
+
iso3_code: string | null;
|
|
2018
|
+
iso3_numeric: string | null;
|
|
2019
|
+
is_sanctioned: boolean | null;
|
|
2020
|
+
} | null;
|
|
2021
|
+
} & {
|
|
1775
2022
|
id: number;
|
|
1776
2023
|
is_active: boolean | null;
|
|
1777
2024
|
id_country: number | null;
|
|
@@ -1781,7 +2028,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1781
2028
|
updated_at: Date | null;
|
|
1782
2029
|
updated_by: string | null;
|
|
1783
2030
|
logic_code: string | null;
|
|
1784
|
-
}[] | undefined;
|
|
2031
|
+
})[] | undefined;
|
|
1785
2032
|
total: number | undefined;
|
|
1786
2033
|
};
|
|
1787
2034
|
meta: object;
|
|
@@ -1986,12 +2233,12 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1986
2233
|
id: number;
|
|
1987
2234
|
url: string | null;
|
|
1988
2235
|
id_log_type: number | null;
|
|
1989
|
-
id_country: number | null;
|
|
1990
2236
|
action: string | null;
|
|
1991
2237
|
params: JsonValue | null;
|
|
1992
2238
|
action_by: string | null;
|
|
1993
2239
|
action_id: string | null;
|
|
1994
2240
|
action_at: Date | null;
|
|
2241
|
+
id_postal_code: number | null;
|
|
1995
2242
|
} | undefined;
|
|
1996
2243
|
};
|
|
1997
2244
|
meta: object;
|
|
@@ -2049,7 +2296,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2049
2296
|
updated_at: Date | null;
|
|
2050
2297
|
updated_by: string | null;
|
|
2051
2298
|
logic_code: string | null;
|
|
2052
|
-
utc_offset:
|
|
2299
|
+
utc_offset: string | null;
|
|
2053
2300
|
}[] | undefined;
|
|
2054
2301
|
total: number | undefined;
|
|
2055
2302
|
};
|
|
@@ -2064,6 +2311,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2064
2311
|
data: {
|
|
2065
2312
|
_count: {
|
|
2066
2313
|
time_zone_logs: number;
|
|
2314
|
+
un_locodes: number;
|
|
2067
2315
|
};
|
|
2068
2316
|
} & {
|
|
2069
2317
|
id: number;
|
|
@@ -2075,7 +2323,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2075
2323
|
updated_at: Date | null;
|
|
2076
2324
|
updated_by: string | null;
|
|
2077
2325
|
logic_code: string | null;
|
|
2078
|
-
utc_offset:
|
|
2326
|
+
utc_offset: string | null;
|
|
2079
2327
|
};
|
|
2080
2328
|
};
|
|
2081
2329
|
meta: object;
|
|
@@ -2178,7 +2426,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2178
2426
|
updated_at: Date | null;
|
|
2179
2427
|
updated_by: string | null;
|
|
2180
2428
|
logic_code: string | null;
|
|
2181
|
-
utc_offset:
|
|
2429
|
+
utc_offset: string | null;
|
|
2182
2430
|
} | undefined;
|
|
2183
2431
|
log: {
|
|
2184
2432
|
id: number;
|
|
@@ -2214,7 +2462,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2214
2462
|
updated_at: Date | null;
|
|
2215
2463
|
updated_by: string | null;
|
|
2216
2464
|
logic_code: string | null;
|
|
2217
|
-
utc_offset:
|
|
2465
|
+
utc_offset: string | null;
|
|
2218
2466
|
} | undefined;
|
|
2219
2467
|
log: {
|
|
2220
2468
|
id: number;
|
|
@@ -2248,7 +2496,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2248
2496
|
updated_at: Date | null;
|
|
2249
2497
|
updated_by: string | null;
|
|
2250
2498
|
logic_code: string | null;
|
|
2251
|
-
utc_offset:
|
|
2499
|
+
utc_offset: string | null;
|
|
2252
2500
|
} | undefined)[];
|
|
2253
2501
|
};
|
|
2254
2502
|
meta: object;
|
|
@@ -150377,6 +150625,7 @@ export type Un_locodesAvgAggregateOutputType = {
|
|
|
150377
150625
|
id_country: number | null;
|
|
150378
150626
|
id_state: number | null;
|
|
150379
150627
|
id_city: number | null;
|
|
150628
|
+
id_time_zone: number | null;
|
|
150380
150629
|
latitude: runtime.Decimal | null;
|
|
150381
150630
|
longitude: runtime.Decimal | null;
|
|
150382
150631
|
};
|
|
@@ -150385,6 +150634,7 @@ export type Un_locodesSumAggregateOutputType = {
|
|
|
150385
150634
|
id_country: number | null;
|
|
150386
150635
|
id_state: number | null;
|
|
150387
150636
|
id_city: number | null;
|
|
150637
|
+
id_time_zone: number | null;
|
|
150388
150638
|
latitude: runtime.Decimal | null;
|
|
150389
150639
|
longitude: runtime.Decimal | null;
|
|
150390
150640
|
};
|
|
@@ -150393,6 +150643,7 @@ export type Un_locodesMinAggregateOutputType = {
|
|
|
150393
150643
|
id_country: number | null;
|
|
150394
150644
|
id_state: number | null;
|
|
150395
150645
|
id_city: number | null;
|
|
150646
|
+
id_time_zone: number | null;
|
|
150396
150647
|
logic_code: string | null;
|
|
150397
150648
|
un_code: string | null;
|
|
150398
150649
|
iata_code: string | null;
|
|
@@ -150425,6 +150676,7 @@ export type Un_locodesMaxAggregateOutputType = {
|
|
|
150425
150676
|
id_country: number | null;
|
|
150426
150677
|
id_state: number | null;
|
|
150427
150678
|
id_city: number | null;
|
|
150679
|
+
id_time_zone: number | null;
|
|
150428
150680
|
logic_code: string | null;
|
|
150429
150681
|
un_code: string | null;
|
|
150430
150682
|
iata_code: string | null;
|
|
@@ -150457,6 +150709,7 @@ export type Un_locodesCountAggregateOutputType = {
|
|
|
150457
150709
|
id_country: number;
|
|
150458
150710
|
id_state: number;
|
|
150459
150711
|
id_city: number;
|
|
150712
|
+
id_time_zone: number;
|
|
150460
150713
|
logic_code: number;
|
|
150461
150714
|
un_code: number;
|
|
150462
150715
|
iata_code: number;
|
|
@@ -150490,6 +150743,7 @@ export type Un_locodesAvgAggregateInputType = {
|
|
|
150490
150743
|
id_country?: true;
|
|
150491
150744
|
id_state?: true;
|
|
150492
150745
|
id_city?: true;
|
|
150746
|
+
id_time_zone?: true;
|
|
150493
150747
|
latitude?: true;
|
|
150494
150748
|
longitude?: true;
|
|
150495
150749
|
};
|
|
@@ -150498,6 +150752,7 @@ export type Un_locodesSumAggregateInputType = {
|
|
|
150498
150752
|
id_country?: true;
|
|
150499
150753
|
id_state?: true;
|
|
150500
150754
|
id_city?: true;
|
|
150755
|
+
id_time_zone?: true;
|
|
150501
150756
|
latitude?: true;
|
|
150502
150757
|
longitude?: true;
|
|
150503
150758
|
};
|
|
@@ -150506,6 +150761,7 @@ export type Un_locodesMinAggregateInputType = {
|
|
|
150506
150761
|
id_country?: true;
|
|
150507
150762
|
id_state?: true;
|
|
150508
150763
|
id_city?: true;
|
|
150764
|
+
id_time_zone?: true;
|
|
150509
150765
|
logic_code?: true;
|
|
150510
150766
|
un_code?: true;
|
|
150511
150767
|
iata_code?: true;
|
|
@@ -150538,6 +150794,7 @@ export type Un_locodesMaxAggregateInputType = {
|
|
|
150538
150794
|
id_country?: true;
|
|
150539
150795
|
id_state?: true;
|
|
150540
150796
|
id_city?: true;
|
|
150797
|
+
id_time_zone?: true;
|
|
150541
150798
|
logic_code?: true;
|
|
150542
150799
|
un_code?: true;
|
|
150543
150800
|
iata_code?: true;
|
|
@@ -150570,6 +150827,7 @@ export type Un_locodesCountAggregateInputType = {
|
|
|
150570
150827
|
id_country?: true;
|
|
150571
150828
|
id_state?: true;
|
|
150572
150829
|
id_city?: true;
|
|
150830
|
+
id_time_zone?: true;
|
|
150573
150831
|
logic_code?: true;
|
|
150574
150832
|
un_code?: true;
|
|
150575
150833
|
iata_code?: true;
|
|
@@ -150679,6 +150937,7 @@ export type Un_locodesGroupByOutputType = {
|
|
|
150679
150937
|
id_country: number | null;
|
|
150680
150938
|
id_state: number | null;
|
|
150681
150939
|
id_city: number | null;
|
|
150940
|
+
id_time_zone: number | null;
|
|
150682
150941
|
logic_code: string | null;
|
|
150683
150942
|
un_code: string | null;
|
|
150684
150943
|
iata_code: string | null;
|
|
@@ -150722,6 +150981,7 @@ export type un_locodesWhereInput = {
|
|
|
150722
150981
|
id_country?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150723
150982
|
id_state?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150724
150983
|
id_city?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150984
|
+
id_time_zone?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150725
150985
|
logic_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
150726
150986
|
un_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
150727
150987
|
iata_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
@@ -150751,6 +151011,7 @@ export type un_locodesWhereInput = {
|
|
|
150751
151011
|
country?: XOR<CountriesNullableScalarRelationFilter, countriesWhereInput> | null;
|
|
150752
151012
|
state?: XOR<StatesNullableScalarRelationFilter, statesWhereInput> | null;
|
|
150753
151013
|
city?: XOR<CitiesNullableScalarRelationFilter, citiesWhereInput> | null;
|
|
151014
|
+
time_zone?: XOR<Time_zonesNullableScalarRelationFilter, time_zonesWhereInput> | null;
|
|
150754
151015
|
local_codes?: Local_codesListRelationFilter;
|
|
150755
151016
|
un_locode_logs?: Un_locode_logsListRelationFilter;
|
|
150756
151017
|
branches?: BranchesListRelationFilter;
|
|
@@ -150771,6 +151032,7 @@ export type un_locodesOrderByWithRelationInput = {
|
|
|
150771
151032
|
id_country?: SortOrderInput | SortOrder$1;
|
|
150772
151033
|
id_state?: SortOrderInput | SortOrder$1;
|
|
150773
151034
|
id_city?: SortOrderInput | SortOrder$1;
|
|
151035
|
+
id_time_zone?: SortOrderInput | SortOrder$1;
|
|
150774
151036
|
logic_code?: SortOrderInput | SortOrder$1;
|
|
150775
151037
|
un_code?: SortOrderInput | SortOrder$1;
|
|
150776
151038
|
iata_code?: SortOrderInput | SortOrder$1;
|
|
@@ -150800,6 +151062,7 @@ export type un_locodesOrderByWithRelationInput = {
|
|
|
150800
151062
|
country?: countriesOrderByWithRelationInput;
|
|
150801
151063
|
state?: statesOrderByWithRelationInput;
|
|
150802
151064
|
city?: citiesOrderByWithRelationInput;
|
|
151065
|
+
time_zone?: time_zonesOrderByWithRelationInput;
|
|
150803
151066
|
local_codes?: local_codesOrderByRelationAggregateInput;
|
|
150804
151067
|
un_locode_logs?: un_locode_logsOrderByRelationAggregateInput;
|
|
150805
151068
|
branches?: branchesOrderByRelationAggregateInput;
|
|
@@ -150824,6 +151087,7 @@ export type un_locodesWhereUniqueInput = AtLeast<{
|
|
|
150824
151087
|
id_country?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150825
151088
|
id_state?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150826
151089
|
id_city?: IntNullableFilter<"un_locodes"> | number | null;
|
|
151090
|
+
id_time_zone?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150827
151091
|
un_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
150828
151092
|
iata_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
150829
151093
|
iata_region_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
@@ -150852,6 +151116,7 @@ export type un_locodesWhereUniqueInput = AtLeast<{
|
|
|
150852
151116
|
country?: XOR<CountriesNullableScalarRelationFilter, countriesWhereInput> | null;
|
|
150853
151117
|
state?: XOR<StatesNullableScalarRelationFilter, statesWhereInput> | null;
|
|
150854
151118
|
city?: XOR<CitiesNullableScalarRelationFilter, citiesWhereInput> | null;
|
|
151119
|
+
time_zone?: XOR<Time_zonesNullableScalarRelationFilter, time_zonesWhereInput> | null;
|
|
150855
151120
|
local_codes?: Local_codesListRelationFilter;
|
|
150856
151121
|
un_locode_logs?: Un_locode_logsListRelationFilter;
|
|
150857
151122
|
branches?: BranchesListRelationFilter;
|
|
@@ -150872,6 +151137,7 @@ export type un_locodesOrderByWithAggregationInput = {
|
|
|
150872
151137
|
id_country?: SortOrderInput | SortOrder$1;
|
|
150873
151138
|
id_state?: SortOrderInput | SortOrder$1;
|
|
150874
151139
|
id_city?: SortOrderInput | SortOrder$1;
|
|
151140
|
+
id_time_zone?: SortOrderInput | SortOrder$1;
|
|
150875
151141
|
logic_code?: SortOrderInput | SortOrder$1;
|
|
150876
151142
|
un_code?: SortOrderInput | SortOrder$1;
|
|
150877
151143
|
iata_code?: SortOrderInput | SortOrder$1;
|
|
@@ -150912,6 +151178,7 @@ export type un_locodesScalarWhereWithAggregatesInput = {
|
|
|
150912
151178
|
id_country?: IntNullableWithAggregatesFilter<"un_locodes"> | number | null;
|
|
150913
151179
|
id_state?: IntNullableWithAggregatesFilter<"un_locodes"> | number | null;
|
|
150914
151180
|
id_city?: IntNullableWithAggregatesFilter<"un_locodes"> | number | null;
|
|
151181
|
+
id_time_zone?: IntNullableWithAggregatesFilter<"un_locodes"> | number | null;
|
|
150915
151182
|
logic_code?: StringNullableWithAggregatesFilter<"un_locodes"> | string | null;
|
|
150916
151183
|
un_code?: StringNullableWithAggregatesFilter<"un_locodes"> | string | null;
|
|
150917
151184
|
iata_code?: StringNullableWithAggregatesFilter<"un_locodes"> | string | null;
|
|
@@ -150969,6 +151236,7 @@ export type un_locodesCreateInput = {
|
|
|
150969
151236
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
150970
151237
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
150971
151238
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
151239
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
150972
151240
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
150973
151241
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
150974
151242
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -150989,6 +151257,7 @@ export type un_locodesUncheckedCreateInput = {
|
|
|
150989
151257
|
id_country?: number | null;
|
|
150990
151258
|
id_state?: number | null;
|
|
150991
151259
|
id_city?: number | null;
|
|
151260
|
+
id_time_zone?: number | null;
|
|
150992
151261
|
logic_code?: string | null;
|
|
150993
151262
|
un_code?: string | null;
|
|
150994
151263
|
iata_code?: string | null;
|
|
@@ -151060,6 +151329,7 @@ export type un_locodesUpdateInput = {
|
|
|
151060
151329
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
151061
151330
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
151062
151331
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
151332
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
151063
151333
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
151064
151334
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
151065
151335
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -151080,6 +151350,7 @@ export type un_locodesUncheckedUpdateInput = {
|
|
|
151080
151350
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151081
151351
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151082
151352
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151353
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151083
151354
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151084
151355
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151085
151356
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -151126,6 +151397,7 @@ export type un_locodesCreateManyInput = {
|
|
|
151126
151397
|
id_country?: number | null;
|
|
151127
151398
|
id_state?: number | null;
|
|
151128
151399
|
id_city?: number | null;
|
|
151400
|
+
id_time_zone?: number | null;
|
|
151129
151401
|
logic_code?: string | null;
|
|
151130
151402
|
un_code?: string | null;
|
|
151131
151403
|
iata_code?: string | null;
|
|
@@ -151186,6 +151458,7 @@ export type un_locodesUncheckedUpdateManyInput = {
|
|
|
151186
151458
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151187
151459
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151188
151460
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151461
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151189
151462
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151190
151463
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151191
151464
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -151222,6 +151495,7 @@ export type un_locodesCountOrderByAggregateInput = {
|
|
|
151222
151495
|
id_country?: SortOrder$1;
|
|
151223
151496
|
id_state?: SortOrder$1;
|
|
151224
151497
|
id_city?: SortOrder$1;
|
|
151498
|
+
id_time_zone?: SortOrder$1;
|
|
151225
151499
|
logic_code?: SortOrder$1;
|
|
151226
151500
|
un_code?: SortOrder$1;
|
|
151227
151501
|
iata_code?: SortOrder$1;
|
|
@@ -151254,6 +151528,7 @@ export type un_locodesAvgOrderByAggregateInput = {
|
|
|
151254
151528
|
id_country?: SortOrder$1;
|
|
151255
151529
|
id_state?: SortOrder$1;
|
|
151256
151530
|
id_city?: SortOrder$1;
|
|
151531
|
+
id_time_zone?: SortOrder$1;
|
|
151257
151532
|
latitude?: SortOrder$1;
|
|
151258
151533
|
longitude?: SortOrder$1;
|
|
151259
151534
|
};
|
|
@@ -151262,6 +151537,7 @@ export type un_locodesMaxOrderByAggregateInput = {
|
|
|
151262
151537
|
id_country?: SortOrder$1;
|
|
151263
151538
|
id_state?: SortOrder$1;
|
|
151264
151539
|
id_city?: SortOrder$1;
|
|
151540
|
+
id_time_zone?: SortOrder$1;
|
|
151265
151541
|
logic_code?: SortOrder$1;
|
|
151266
151542
|
un_code?: SortOrder$1;
|
|
151267
151543
|
iata_code?: SortOrder$1;
|
|
@@ -151294,6 +151570,7 @@ export type un_locodesMinOrderByAggregateInput = {
|
|
|
151294
151570
|
id_country?: SortOrder$1;
|
|
151295
151571
|
id_state?: SortOrder$1;
|
|
151296
151572
|
id_city?: SortOrder$1;
|
|
151573
|
+
id_time_zone?: SortOrder$1;
|
|
151297
151574
|
logic_code?: SortOrder$1;
|
|
151298
151575
|
un_code?: SortOrder$1;
|
|
151299
151576
|
iata_code?: SortOrder$1;
|
|
@@ -151326,6 +151603,7 @@ export type un_locodesSumOrderByAggregateInput = {
|
|
|
151326
151603
|
id_country?: SortOrder$1;
|
|
151327
151604
|
id_state?: SortOrder$1;
|
|
151328
151605
|
id_city?: SortOrder$1;
|
|
151606
|
+
id_time_zone?: SortOrder$1;
|
|
151329
151607
|
latitude?: SortOrder$1;
|
|
151330
151608
|
longitude?: SortOrder$1;
|
|
151331
151609
|
};
|
|
@@ -151569,6 +151847,44 @@ export type un_locodesUncheckedUpdateManyWithoutCityNestedInput = {
|
|
|
151569
151847
|
updateMany?: un_locodesUpdateManyWithWhereWithoutCityInput | un_locodesUpdateManyWithWhereWithoutCityInput[];
|
|
151570
151848
|
deleteMany?: un_locodesScalarWhereInput | un_locodesScalarWhereInput[];
|
|
151571
151849
|
};
|
|
151850
|
+
export type un_locodesCreateNestedManyWithoutTime_zoneInput = {
|
|
151851
|
+
create?: XOR<un_locodesCreateWithoutTime_zoneInput, un_locodesUncheckedCreateWithoutTime_zoneInput> | un_locodesCreateWithoutTime_zoneInput[] | un_locodesUncheckedCreateWithoutTime_zoneInput[];
|
|
151852
|
+
connectOrCreate?: un_locodesCreateOrConnectWithoutTime_zoneInput | un_locodesCreateOrConnectWithoutTime_zoneInput[];
|
|
151853
|
+
createMany?: un_locodesCreateManyTime_zoneInputEnvelope;
|
|
151854
|
+
connect?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151855
|
+
};
|
|
151856
|
+
export type un_locodesUncheckedCreateNestedManyWithoutTime_zoneInput = {
|
|
151857
|
+
create?: XOR<un_locodesCreateWithoutTime_zoneInput, un_locodesUncheckedCreateWithoutTime_zoneInput> | un_locodesCreateWithoutTime_zoneInput[] | un_locodesUncheckedCreateWithoutTime_zoneInput[];
|
|
151858
|
+
connectOrCreate?: un_locodesCreateOrConnectWithoutTime_zoneInput | un_locodesCreateOrConnectWithoutTime_zoneInput[];
|
|
151859
|
+
createMany?: un_locodesCreateManyTime_zoneInputEnvelope;
|
|
151860
|
+
connect?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151861
|
+
};
|
|
151862
|
+
export type un_locodesUpdateManyWithoutTime_zoneNestedInput = {
|
|
151863
|
+
create?: XOR<un_locodesCreateWithoutTime_zoneInput, un_locodesUncheckedCreateWithoutTime_zoneInput> | un_locodesCreateWithoutTime_zoneInput[] | un_locodesUncheckedCreateWithoutTime_zoneInput[];
|
|
151864
|
+
connectOrCreate?: un_locodesCreateOrConnectWithoutTime_zoneInput | un_locodesCreateOrConnectWithoutTime_zoneInput[];
|
|
151865
|
+
upsert?: un_locodesUpsertWithWhereUniqueWithoutTime_zoneInput | un_locodesUpsertWithWhereUniqueWithoutTime_zoneInput[];
|
|
151866
|
+
createMany?: un_locodesCreateManyTime_zoneInputEnvelope;
|
|
151867
|
+
set?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151868
|
+
disconnect?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151869
|
+
delete?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151870
|
+
connect?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151871
|
+
update?: un_locodesUpdateWithWhereUniqueWithoutTime_zoneInput | un_locodesUpdateWithWhereUniqueWithoutTime_zoneInput[];
|
|
151872
|
+
updateMany?: un_locodesUpdateManyWithWhereWithoutTime_zoneInput | un_locodesUpdateManyWithWhereWithoutTime_zoneInput[];
|
|
151873
|
+
deleteMany?: un_locodesScalarWhereInput | un_locodesScalarWhereInput[];
|
|
151874
|
+
};
|
|
151875
|
+
export type un_locodesUncheckedUpdateManyWithoutTime_zoneNestedInput = {
|
|
151876
|
+
create?: XOR<un_locodesCreateWithoutTime_zoneInput, un_locodesUncheckedCreateWithoutTime_zoneInput> | un_locodesCreateWithoutTime_zoneInput[] | un_locodesUncheckedCreateWithoutTime_zoneInput[];
|
|
151877
|
+
connectOrCreate?: un_locodesCreateOrConnectWithoutTime_zoneInput | un_locodesCreateOrConnectWithoutTime_zoneInput[];
|
|
151878
|
+
upsert?: un_locodesUpsertWithWhereUniqueWithoutTime_zoneInput | un_locodesUpsertWithWhereUniqueWithoutTime_zoneInput[];
|
|
151879
|
+
createMany?: un_locodesCreateManyTime_zoneInputEnvelope;
|
|
151880
|
+
set?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151881
|
+
disconnect?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151882
|
+
delete?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151883
|
+
connect?: un_locodesWhereUniqueInput | un_locodesWhereUniqueInput[];
|
|
151884
|
+
update?: un_locodesUpdateWithWhereUniqueWithoutTime_zoneInput | un_locodesUpdateWithWhereUniqueWithoutTime_zoneInput[];
|
|
151885
|
+
updateMany?: un_locodesUpdateManyWithWhereWithoutTime_zoneInput | un_locodesUpdateManyWithWhereWithoutTime_zoneInput[];
|
|
151886
|
+
deleteMany?: un_locodesScalarWhereInput | un_locodesScalarWhereInput[];
|
|
151887
|
+
};
|
|
151572
151888
|
export type un_locodesCreateNestedOneWithoutUn_locode_logsInput = {
|
|
151573
151889
|
create?: XOR<un_locodesCreateWithoutUn_locode_logsInput, un_locodesUncheckedCreateWithoutUn_locode_logsInput>;
|
|
151574
151890
|
connectOrCreate?: un_locodesCreateOrConnectWithoutUn_locode_logsInput;
|
|
@@ -151697,6 +152013,7 @@ export type un_locodesCreateWithoutForwarding_booking_originsInput = {
|
|
|
151697
152013
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
151698
152014
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
151699
152015
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152016
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
151700
152017
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
151701
152018
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
151702
152019
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -151716,6 +152033,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_booking_originsInput = {
|
|
|
151716
152033
|
id_country?: number | null;
|
|
151717
152034
|
id_state?: number | null;
|
|
151718
152035
|
id_city?: number | null;
|
|
152036
|
+
id_time_zone?: number | null;
|
|
151719
152037
|
logic_code?: string | null;
|
|
151720
152038
|
un_code?: string | null;
|
|
151721
152039
|
iata_code?: string | null;
|
|
@@ -151790,6 +152108,7 @@ export type un_locodesCreateWithoutForwarding_booking_destinationsInput = {
|
|
|
151790
152108
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
151791
152109
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
151792
152110
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152111
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
151793
152112
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
151794
152113
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
151795
152114
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -151809,6 +152128,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_booking_destinationsInput
|
|
|
151809
152128
|
id_country?: number | null;
|
|
151810
152129
|
id_state?: number | null;
|
|
151811
152130
|
id_city?: number | null;
|
|
152131
|
+
id_time_zone?: number | null;
|
|
151812
152132
|
logic_code?: string | null;
|
|
151813
152133
|
un_code?: string | null;
|
|
151814
152134
|
iata_code?: string | null;
|
|
@@ -151892,6 +152212,7 @@ export type un_locodesUpdateWithoutForwarding_booking_originsInput = {
|
|
|
151892
152212
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
151893
152213
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
151894
152214
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152215
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
151895
152216
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
151896
152217
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
151897
152218
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -151911,6 +152232,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_booking_originsInput = {
|
|
|
151911
152232
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151912
152233
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151913
152234
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152235
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151914
152236
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151915
152237
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151916
152238
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -151990,6 +152312,7 @@ export type un_locodesUpdateWithoutForwarding_booking_destinationsInput = {
|
|
|
151990
152312
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
151991
152313
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
151992
152314
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152315
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
151993
152316
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
151994
152317
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
151995
152318
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152009,6 +152332,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_booking_destinationsInput
|
|
|
152009
152332
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152010
152333
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152011
152334
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152335
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152012
152336
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152013
152337
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152014
152338
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152079,6 +152403,7 @@ export type un_locodesCreateWithoutForwarding_console_first_loadsInput = {
|
|
|
152079
152403
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152080
152404
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152081
152405
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152406
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152082
152407
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152083
152408
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152084
152409
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152098,6 +152423,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_console_first_loadsInput
|
|
|
152098
152423
|
id_country?: number | null;
|
|
152099
152424
|
id_state?: number | null;
|
|
152100
152425
|
id_city?: number | null;
|
|
152426
|
+
id_time_zone?: number | null;
|
|
152101
152427
|
logic_code?: string | null;
|
|
152102
152428
|
un_code?: string | null;
|
|
152103
152429
|
iata_code?: string | null;
|
|
@@ -152172,6 +152498,7 @@ export type un_locodesCreateWithoutForwarding_console_last_dischargesInput = {
|
|
|
152172
152498
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152173
152499
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152174
152500
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152501
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152175
152502
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152176
152503
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152177
152504
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152191,6 +152518,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_console_last_dischargesIn
|
|
|
152191
152518
|
id_country?: number | null;
|
|
152192
152519
|
id_state?: number | null;
|
|
152193
152520
|
id_city?: number | null;
|
|
152521
|
+
id_time_zone?: number | null;
|
|
152194
152522
|
logic_code?: string | null;
|
|
152195
152523
|
un_code?: string | null;
|
|
152196
152524
|
iata_code?: string | null;
|
|
@@ -152274,6 +152602,7 @@ export type un_locodesUpdateWithoutForwarding_console_first_loadsInput = {
|
|
|
152274
152602
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152275
152603
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152276
152604
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152605
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152277
152606
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152278
152607
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152279
152608
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152293,6 +152622,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_console_first_loadsInput
|
|
|
152293
152622
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152294
152623
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152295
152624
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152625
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152296
152626
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152297
152627
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152298
152628
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152372,6 +152702,7 @@ export type un_locodesUpdateWithoutForwarding_console_last_dischargesInput = {
|
|
|
152372
152702
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152373
152703
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152374
152704
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152705
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152375
152706
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152376
152707
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152377
152708
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152391,6 +152722,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_console_last_dischargesIn
|
|
|
152391
152722
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152392
152723
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152393
152724
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152725
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152394
152726
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152395
152727
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152396
152728
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152461,6 +152793,7 @@ export type un_locodesCreateWithoutForwarding_console_routing_loadsInput = {
|
|
|
152461
152793
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152462
152794
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152463
152795
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152796
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152464
152797
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152465
152798
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152466
152799
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152480,6 +152813,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_console_routing_loadsInpu
|
|
|
152480
152813
|
id_country?: number | null;
|
|
152481
152814
|
id_state?: number | null;
|
|
152482
152815
|
id_city?: number | null;
|
|
152816
|
+
id_time_zone?: number | null;
|
|
152483
152817
|
logic_code?: string | null;
|
|
152484
152818
|
un_code?: string | null;
|
|
152485
152819
|
iata_code?: string | null;
|
|
@@ -152554,6 +152888,7 @@ export type un_locodesCreateWithoutForwarding_console_routing_dischargesInput =
|
|
|
152554
152888
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152555
152889
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152556
152890
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152891
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152557
152892
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152558
152893
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152559
152894
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152573,6 +152908,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_console_routing_discharge
|
|
|
152573
152908
|
id_country?: number | null;
|
|
152574
152909
|
id_state?: number | null;
|
|
152575
152910
|
id_city?: number | null;
|
|
152911
|
+
id_time_zone?: number | null;
|
|
152576
152912
|
logic_code?: string | null;
|
|
152577
152913
|
un_code?: string | null;
|
|
152578
152914
|
iata_code?: string | null;
|
|
@@ -152656,6 +152992,7 @@ export type un_locodesUpdateWithoutForwarding_console_routing_loadsInput = {
|
|
|
152656
152992
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152657
152993
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152658
152994
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152995
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152659
152996
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152660
152997
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152661
152998
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152675,6 +153012,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_console_routing_loadsInpu
|
|
|
152675
153012
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152676
153013
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152677
153014
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153015
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152678
153016
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152679
153017
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152680
153018
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152754,6 +153092,7 @@ export type un_locodesUpdateWithoutForwarding_console_routing_dischargesInput =
|
|
|
152754
153092
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152755
153093
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152756
153094
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
153095
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152757
153096
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152758
153097
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152759
153098
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152773,6 +153112,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_console_routing_discharge
|
|
|
152773
153112
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152774
153113
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152775
153114
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153115
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152776
153116
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152777
153117
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152778
153118
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152843,6 +153183,7 @@ export type un_locodesCreateWithoutLocal_codesInput = {
|
|
|
152843
153183
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152844
153184
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152845
153185
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153186
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152846
153187
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152847
153188
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
152848
153189
|
companies?: companiesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152862,6 +153203,7 @@ export type un_locodesUncheckedCreateWithoutLocal_codesInput = {
|
|
|
152862
153203
|
id_country?: number | null;
|
|
152863
153204
|
id_state?: number | null;
|
|
152864
153205
|
id_city?: number | null;
|
|
153206
|
+
id_time_zone?: number | null;
|
|
152865
153207
|
logic_code?: string | null;
|
|
152866
153208
|
un_code?: string | null;
|
|
152867
153209
|
iata_code?: string | null;
|
|
@@ -152927,6 +153269,7 @@ export type un_locodesScalarWhereInput = {
|
|
|
152927
153269
|
id_country?: IntNullableFilter<"un_locodes"> | number | null;
|
|
152928
153270
|
id_state?: IntNullableFilter<"un_locodes"> | number | null;
|
|
152929
153271
|
id_city?: IntNullableFilter<"un_locodes"> | number | null;
|
|
153272
|
+
id_time_zone?: IntNullableFilter<"un_locodes"> | number | null;
|
|
152930
153273
|
logic_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
152931
153274
|
un_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
152932
153275
|
iata_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
@@ -152983,6 +153326,7 @@ export type un_locodesCreateWithoutCountryInput = {
|
|
|
152983
153326
|
updated_by?: string | null;
|
|
152984
153327
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152985
153328
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153329
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152986
153330
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152987
153331
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152988
153332
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153002,6 +153346,7 @@ export type un_locodesUncheckedCreateWithoutCountryInput = {
|
|
|
153002
153346
|
id?: number;
|
|
153003
153347
|
id_state?: number | null;
|
|
153004
153348
|
id_city?: number | null;
|
|
153349
|
+
id_time_zone?: number | null;
|
|
153005
153350
|
logic_code?: string | null;
|
|
153006
153351
|
un_code?: string | null;
|
|
153007
153352
|
iata_code?: string | null;
|
|
@@ -153093,6 +153438,7 @@ export type un_locodesCreateWithoutStateInput = {
|
|
|
153093
153438
|
updated_by?: string | null;
|
|
153094
153439
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153095
153440
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153441
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153096
153442
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153097
153443
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153098
153444
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153112,6 +153458,7 @@ export type un_locodesUncheckedCreateWithoutStateInput = {
|
|
|
153112
153458
|
id?: number;
|
|
153113
153459
|
id_country?: number | null;
|
|
153114
153460
|
id_city?: number | null;
|
|
153461
|
+
id_time_zone?: number | null;
|
|
153115
153462
|
logic_code?: string | null;
|
|
153116
153463
|
un_code?: string | null;
|
|
153117
153464
|
iata_code?: string | null;
|
|
@@ -153203,6 +153550,7 @@ export type un_locodesCreateWithoutCityInput = {
|
|
|
153203
153550
|
updated_by?: string | null;
|
|
153204
153551
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153205
153552
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153553
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153206
153554
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153207
153555
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153208
153556
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153222,6 +153570,7 @@ export type un_locodesUncheckedCreateWithoutCityInput = {
|
|
|
153222
153570
|
id?: number;
|
|
153223
153571
|
id_country?: number | null;
|
|
153224
153572
|
id_state?: number | null;
|
|
153573
|
+
id_time_zone?: number | null;
|
|
153225
153574
|
logic_code?: string | null;
|
|
153226
153575
|
un_code?: string | null;
|
|
153227
153576
|
iata_code?: string | null;
|
|
@@ -153284,6 +153633,118 @@ export type un_locodesUpdateManyWithWhereWithoutCityInput = {
|
|
|
153284
153633
|
where: un_locodesScalarWhereInput;
|
|
153285
153634
|
data: XOR<un_locodesUpdateManyMutationInput, un_locodesUncheckedUpdateManyWithoutCityInput>;
|
|
153286
153635
|
};
|
|
153636
|
+
export type un_locodesCreateWithoutTime_zoneInput = {
|
|
153637
|
+
logic_code?: string | null;
|
|
153638
|
+
un_code?: string | null;
|
|
153639
|
+
iata_code?: string | null;
|
|
153640
|
+
iata_region_code?: string | null;
|
|
153641
|
+
latitude?: runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
153642
|
+
longitude?: runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
153643
|
+
port_name?: string | null;
|
|
153644
|
+
proper_name?: string | null;
|
|
153645
|
+
is_active?: boolean | null;
|
|
153646
|
+
is_system?: boolean | null;
|
|
153647
|
+
is_system_updatable?: boolean | null;
|
|
153648
|
+
has_post?: boolean | null;
|
|
153649
|
+
has_customs?: boolean | null;
|
|
153650
|
+
has_unload?: boolean | null;
|
|
153651
|
+
has_airport?: boolean | null;
|
|
153652
|
+
has_railway?: boolean | null;
|
|
153653
|
+
has_road?: boolean | null;
|
|
153654
|
+
has_store?: boolean | null;
|
|
153655
|
+
has_terminal?: boolean | null;
|
|
153656
|
+
has_discharge?: boolean | null;
|
|
153657
|
+
has_seaport?: boolean | null;
|
|
153658
|
+
has_outport?: boolean | null;
|
|
153659
|
+
created_at?: Date | string | null;
|
|
153660
|
+
created_by?: string | null;
|
|
153661
|
+
updated_at?: Date | string | null;
|
|
153662
|
+
updated_by?: string | null;
|
|
153663
|
+
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153664
|
+
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153665
|
+
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153666
|
+
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153667
|
+
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153668
|
+
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
153669
|
+
companies?: companiesCreateNestedManyWithoutUn_locodeInput;
|
|
153670
|
+
airlines?: airlinesCreateNestedManyWithoutUn_locodeInput;
|
|
153671
|
+
shipping_lines?: shipping_linesCreateNestedManyWithoutUn_locodeInput;
|
|
153672
|
+
forwarding_booking_origins?: forwarding_bookingsCreateNestedManyWithoutOrigin_un_locodesInput;
|
|
153673
|
+
forwarding_booking_destinations?: forwarding_bookingsCreateNestedManyWithoutDestination_un_locodesInput;
|
|
153674
|
+
forwarding_shipment_origins?: forwarding_shipmentsCreateNestedManyWithoutOrigin_un_locodeInput;
|
|
153675
|
+
forwarding_shipment_destinations?: forwarding_shipmentsCreateNestedManyWithoutDestination_un_locodeInput;
|
|
153676
|
+
forwarding_console_first_loads?: forwarding_consolesCreateNestedManyWithoutFirst_load_un_locodesInput;
|
|
153677
|
+
forwarding_console_last_discharges?: forwarding_consolesCreateNestedManyWithoutLast_discharge_un_locodesInput;
|
|
153678
|
+
forwarding_console_routing_loads?: forwarding_console_routingsCreateNestedManyWithoutLoad_un_locodeInput;
|
|
153679
|
+
forwarding_console_routing_discharges?: forwarding_console_routingsCreateNestedManyWithoutDischarge_un_locodeInput;
|
|
153680
|
+
};
|
|
153681
|
+
export type un_locodesUncheckedCreateWithoutTime_zoneInput = {
|
|
153682
|
+
id?: number;
|
|
153683
|
+
id_country?: number | null;
|
|
153684
|
+
id_state?: number | null;
|
|
153685
|
+
id_city?: number | null;
|
|
153686
|
+
logic_code?: string | null;
|
|
153687
|
+
un_code?: string | null;
|
|
153688
|
+
iata_code?: string | null;
|
|
153689
|
+
iata_region_code?: string | null;
|
|
153690
|
+
latitude?: runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
153691
|
+
longitude?: runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
153692
|
+
port_name?: string | null;
|
|
153693
|
+
proper_name?: string | null;
|
|
153694
|
+
is_active?: boolean | null;
|
|
153695
|
+
is_system?: boolean | null;
|
|
153696
|
+
is_system_updatable?: boolean | null;
|
|
153697
|
+
has_post?: boolean | null;
|
|
153698
|
+
has_customs?: boolean | null;
|
|
153699
|
+
has_unload?: boolean | null;
|
|
153700
|
+
has_airport?: boolean | null;
|
|
153701
|
+
has_railway?: boolean | null;
|
|
153702
|
+
has_road?: boolean | null;
|
|
153703
|
+
has_store?: boolean | null;
|
|
153704
|
+
has_terminal?: boolean | null;
|
|
153705
|
+
has_discharge?: boolean | null;
|
|
153706
|
+
has_seaport?: boolean | null;
|
|
153707
|
+
has_outport?: boolean | null;
|
|
153708
|
+
created_at?: Date | string | null;
|
|
153709
|
+
created_by?: string | null;
|
|
153710
|
+
updated_at?: Date | string | null;
|
|
153711
|
+
updated_by?: string | null;
|
|
153712
|
+
local_codes?: local_codesUncheckedCreateNestedManyWithoutUn_locodesInput;
|
|
153713
|
+
un_locode_logs?: un_locode_logsUncheckedCreateNestedManyWithoutUn_locodeInput;
|
|
153714
|
+
branches?: branchesUncheckedCreateNestedManyWithoutUn_locodeInput;
|
|
153715
|
+
companies?: companiesUncheckedCreateNestedManyWithoutUn_locodeInput;
|
|
153716
|
+
airlines?: airlinesUncheckedCreateNestedManyWithoutUn_locodeInput;
|
|
153717
|
+
shipping_lines?: shipping_linesUncheckedCreateNestedManyWithoutUn_locodeInput;
|
|
153718
|
+
forwarding_booking_origins?: forwarding_bookingsUncheckedCreateNestedManyWithoutOrigin_un_locodesInput;
|
|
153719
|
+
forwarding_booking_destinations?: forwarding_bookingsUncheckedCreateNestedManyWithoutDestination_un_locodesInput;
|
|
153720
|
+
forwarding_shipment_origins?: forwarding_shipmentsUncheckedCreateNestedManyWithoutOrigin_un_locodeInput;
|
|
153721
|
+
forwarding_shipment_destinations?: forwarding_shipmentsUncheckedCreateNestedManyWithoutDestination_un_locodeInput;
|
|
153722
|
+
forwarding_console_first_loads?: forwarding_consolesUncheckedCreateNestedManyWithoutFirst_load_un_locodesInput;
|
|
153723
|
+
forwarding_console_last_discharges?: forwarding_consolesUncheckedCreateNestedManyWithoutLast_discharge_un_locodesInput;
|
|
153724
|
+
forwarding_console_routing_loads?: forwarding_console_routingsUncheckedCreateNestedManyWithoutLoad_un_locodeInput;
|
|
153725
|
+
forwarding_console_routing_discharges?: forwarding_console_routingsUncheckedCreateNestedManyWithoutDischarge_un_locodeInput;
|
|
153726
|
+
};
|
|
153727
|
+
export type un_locodesCreateOrConnectWithoutTime_zoneInput = {
|
|
153728
|
+
where: un_locodesWhereUniqueInput;
|
|
153729
|
+
create: XOR<un_locodesCreateWithoutTime_zoneInput, un_locodesUncheckedCreateWithoutTime_zoneInput>;
|
|
153730
|
+
};
|
|
153731
|
+
export type un_locodesCreateManyTime_zoneInputEnvelope = {
|
|
153732
|
+
data: un_locodesCreateManyTime_zoneInput | un_locodesCreateManyTime_zoneInput[];
|
|
153733
|
+
skipDuplicates?: boolean;
|
|
153734
|
+
};
|
|
153735
|
+
export type un_locodesUpsertWithWhereUniqueWithoutTime_zoneInput = {
|
|
153736
|
+
where: un_locodesWhereUniqueInput;
|
|
153737
|
+
update: XOR<un_locodesUpdateWithoutTime_zoneInput, un_locodesUncheckedUpdateWithoutTime_zoneInput>;
|
|
153738
|
+
create: XOR<un_locodesCreateWithoutTime_zoneInput, un_locodesUncheckedCreateWithoutTime_zoneInput>;
|
|
153739
|
+
};
|
|
153740
|
+
export type un_locodesUpdateWithWhereUniqueWithoutTime_zoneInput = {
|
|
153741
|
+
where: un_locodesWhereUniqueInput;
|
|
153742
|
+
data: XOR<un_locodesUpdateWithoutTime_zoneInput, un_locodesUncheckedUpdateWithoutTime_zoneInput>;
|
|
153743
|
+
};
|
|
153744
|
+
export type un_locodesUpdateManyWithWhereWithoutTime_zoneInput = {
|
|
153745
|
+
where: un_locodesScalarWhereInput;
|
|
153746
|
+
data: XOR<un_locodesUpdateManyMutationInput, un_locodesUncheckedUpdateManyWithoutTime_zoneInput>;
|
|
153747
|
+
};
|
|
153287
153748
|
export type un_locodesCreateWithoutUn_locode_logsInput = {
|
|
153288
153749
|
logic_code?: string | null;
|
|
153289
153750
|
un_code?: string | null;
|
|
@@ -153314,6 +153775,7 @@ export type un_locodesCreateWithoutUn_locode_logsInput = {
|
|
|
153314
153775
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153315
153776
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153316
153777
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153778
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153317
153779
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153318
153780
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
153319
153781
|
companies?: companiesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153333,6 +153795,7 @@ export type un_locodesUncheckedCreateWithoutUn_locode_logsInput = {
|
|
|
153333
153795
|
id_country?: number | null;
|
|
153334
153796
|
id_state?: number | null;
|
|
153335
153797
|
id_city?: number | null;
|
|
153798
|
+
id_time_zone?: number | null;
|
|
153336
153799
|
logic_code?: string | null;
|
|
153337
153800
|
un_code?: string | null;
|
|
153338
153801
|
iata_code?: string | null;
|
|
@@ -153416,6 +153879,7 @@ export type un_locodesUpdateWithoutUn_locode_logsInput = {
|
|
|
153416
153879
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
153417
153880
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
153418
153881
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
153882
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
153419
153883
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
153420
153884
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
153421
153885
|
companies?: companiesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -153435,6 +153899,7 @@ export type un_locodesUncheckedUpdateWithoutUn_locode_logsInput = {
|
|
|
153435
153899
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153436
153900
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153437
153901
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153902
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153438
153903
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153439
153904
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153440
153905
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -153505,6 +153970,7 @@ export type un_locodesCreateWithoutAirlinesInput = {
|
|
|
153505
153970
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153506
153971
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153507
153972
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153973
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153508
153974
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153509
153975
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153510
153976
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153524,6 +153990,7 @@ export type un_locodesUncheckedCreateWithoutAirlinesInput = {
|
|
|
153524
153990
|
id_country?: number | null;
|
|
153525
153991
|
id_state?: number | null;
|
|
153526
153992
|
id_city?: number | null;
|
|
153993
|
+
id_time_zone?: number | null;
|
|
153527
153994
|
logic_code?: string | null;
|
|
153528
153995
|
un_code?: string | null;
|
|
153529
153996
|
iata_code?: string | null;
|
|
@@ -153607,6 +154074,7 @@ export type un_locodesUpdateWithoutAirlinesInput = {
|
|
|
153607
154074
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
153608
154075
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
153609
154076
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154077
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
153610
154078
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
153611
154079
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
153612
154080
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -153626,6 +154094,7 @@ export type un_locodesUncheckedUpdateWithoutAirlinesInput = {
|
|
|
153626
154094
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153627
154095
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153628
154096
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154097
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153629
154098
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153630
154099
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153631
154100
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -153696,6 +154165,7 @@ export type un_locodesCreateWithoutShipping_linesInput = {
|
|
|
153696
154165
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153697
154166
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153698
154167
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154168
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153699
154169
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153700
154170
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153701
154171
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153715,6 +154185,7 @@ export type un_locodesUncheckedCreateWithoutShipping_linesInput = {
|
|
|
153715
154185
|
id_country?: number | null;
|
|
153716
154186
|
id_state?: number | null;
|
|
153717
154187
|
id_city?: number | null;
|
|
154188
|
+
id_time_zone?: number | null;
|
|
153718
154189
|
logic_code?: string | null;
|
|
153719
154190
|
un_code?: string | null;
|
|
153720
154191
|
iata_code?: string | null;
|
|
@@ -153798,6 +154269,7 @@ export type un_locodesUpdateWithoutShipping_linesInput = {
|
|
|
153798
154269
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
153799
154270
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
153800
154271
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154272
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
153801
154273
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
153802
154274
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
153803
154275
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -153817,6 +154289,7 @@ export type un_locodesUncheckedUpdateWithoutShipping_linesInput = {
|
|
|
153817
154289
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153818
154290
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153819
154291
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154292
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153820
154293
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153821
154294
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153822
154295
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -153887,6 +154360,7 @@ export type un_locodesCreateWithoutForwarding_shipment_originsInput = {
|
|
|
153887
154360
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153888
154361
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153889
154362
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154363
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153890
154364
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153891
154365
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153892
154366
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153906,6 +154380,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_shipment_originsInput = {
|
|
|
153906
154380
|
id_country?: number | null;
|
|
153907
154381
|
id_state?: number | null;
|
|
153908
154382
|
id_city?: number | null;
|
|
154383
|
+
id_time_zone?: number | null;
|
|
153909
154384
|
logic_code?: string | null;
|
|
153910
154385
|
un_code?: string | null;
|
|
153911
154386
|
iata_code?: string | null;
|
|
@@ -153980,6 +154455,7 @@ export type un_locodesCreateWithoutForwarding_shipment_destinationsInput = {
|
|
|
153980
154455
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153981
154456
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153982
154457
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154458
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153983
154459
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153984
154460
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153985
154461
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153999,6 +154475,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_shipment_destinationsInpu
|
|
|
153999
154475
|
id_country?: number | null;
|
|
154000
154476
|
id_state?: number | null;
|
|
154001
154477
|
id_city?: number | null;
|
|
154478
|
+
id_time_zone?: number | null;
|
|
154002
154479
|
logic_code?: string | null;
|
|
154003
154480
|
un_code?: string | null;
|
|
154004
154481
|
iata_code?: string | null;
|
|
@@ -154082,6 +154559,7 @@ export type un_locodesUpdateWithoutForwarding_shipment_originsInput = {
|
|
|
154082
154559
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154083
154560
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154084
154561
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154562
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154085
154563
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154086
154564
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154087
154565
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154101,6 +154579,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_shipment_originsInput = {
|
|
|
154101
154579
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154102
154580
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154103
154581
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154582
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154104
154583
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154105
154584
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154106
154585
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154180,6 +154659,7 @@ export type un_locodesUpdateWithoutForwarding_shipment_destinationsInput = {
|
|
|
154180
154659
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154181
154660
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154182
154661
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154662
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154183
154663
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154184
154664
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154185
154665
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154199,6 +154679,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_shipment_destinationsInpu
|
|
|
154199
154679
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154200
154680
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154201
154681
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154682
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154202
154683
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154203
154684
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154204
154685
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154269,6 +154750,7 @@ export type un_locodesCreateWithoutCompaniesInput = {
|
|
|
154269
154750
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
154270
154751
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
154271
154752
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154753
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
154272
154754
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
154273
154755
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
154274
154756
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -154288,6 +154770,7 @@ export type un_locodesUncheckedCreateWithoutCompaniesInput = {
|
|
|
154288
154770
|
id_country?: number | null;
|
|
154289
154771
|
id_state?: number | null;
|
|
154290
154772
|
id_city?: number | null;
|
|
154773
|
+
id_time_zone?: number | null;
|
|
154291
154774
|
logic_code?: string | null;
|
|
154292
154775
|
un_code?: string | null;
|
|
154293
154776
|
iata_code?: string | null;
|
|
@@ -154371,6 +154854,7 @@ export type un_locodesUpdateWithoutCompaniesInput = {
|
|
|
154371
154854
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154372
154855
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154373
154856
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154857
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154374
154858
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154375
154859
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154376
154860
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154390,6 +154874,7 @@ export type un_locodesUncheckedUpdateWithoutCompaniesInput = {
|
|
|
154390
154874
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154391
154875
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154392
154876
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154877
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154393
154878
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154394
154879
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154395
154880
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154460,6 +154945,7 @@ export type un_locodesCreateWithoutBranchesInput = {
|
|
|
154460
154945
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
154461
154946
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
154462
154947
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154948
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
154463
154949
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
154464
154950
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
154465
154951
|
companies?: companiesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -154479,6 +154965,7 @@ export type un_locodesUncheckedCreateWithoutBranchesInput = {
|
|
|
154479
154965
|
id_country?: number | null;
|
|
154480
154966
|
id_state?: number | null;
|
|
154481
154967
|
id_city?: number | null;
|
|
154968
|
+
id_time_zone?: number | null;
|
|
154482
154969
|
logic_code?: string | null;
|
|
154483
154970
|
un_code?: string | null;
|
|
154484
154971
|
iata_code?: string | null;
|
|
@@ -154562,6 +155049,7 @@ export type un_locodesUpdateWithoutBranchesInput = {
|
|
|
154562
155049
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154563
155050
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154564
155051
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155052
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154565
155053
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154566
155054
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154567
155055
|
companies?: companiesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154581,6 +155069,7 @@ export type un_locodesUncheckedUpdateWithoutBranchesInput = {
|
|
|
154581
155069
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154582
155070
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154583
155071
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155072
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154584
155073
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154585
155074
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154586
155075
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154651,6 +155140,7 @@ export type un_locodesUpdateWithoutLocal_codesInput = {
|
|
|
154651
155140
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154652
155141
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154653
155142
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155143
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154654
155144
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154655
155145
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
154656
155146
|
companies?: companiesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154670,6 +155160,7 @@ export type un_locodesUncheckedUpdateWithoutLocal_codesInput = {
|
|
|
154670
155160
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154671
155161
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154672
155162
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155163
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154673
155164
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154674
155165
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154675
155166
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154715,6 +155206,7 @@ export type un_locodesUncheckedUpdateManyWithoutLocal_codesInput = {
|
|
|
154715
155206
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154716
155207
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154717
155208
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155209
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154718
155210
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154719
155211
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154720
155212
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154746,6 +155238,7 @@ export type un_locodesCreateManyCountryInput = {
|
|
|
154746
155238
|
id?: number;
|
|
154747
155239
|
id_state?: number | null;
|
|
154748
155240
|
id_city?: number | null;
|
|
155241
|
+
id_time_zone?: number | null;
|
|
154749
155242
|
logic_code?: string | null;
|
|
154750
155243
|
un_code?: string | null;
|
|
154751
155244
|
iata_code?: string | null;
|
|
@@ -154802,6 +155295,7 @@ export type un_locodesUpdateWithoutCountryInput = {
|
|
|
154802
155295
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154803
155296
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154804
155297
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155298
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154805
155299
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154806
155300
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154807
155301
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154821,6 +155315,7 @@ export type un_locodesUncheckedUpdateWithoutCountryInput = {
|
|
|
154821
155315
|
id?: IntFieldUpdateOperationsInput | number;
|
|
154822
155316
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154823
155317
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155318
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154824
155319
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154825
155320
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154826
155321
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154866,6 +155361,7 @@ export type un_locodesUncheckedUpdateManyWithoutCountryInput = {
|
|
|
154866
155361
|
id?: IntFieldUpdateOperationsInput | number;
|
|
154867
155362
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154868
155363
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155364
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154869
155365
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154870
155366
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154871
155367
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154897,6 +155393,7 @@ export type un_locodesCreateManyStateInput = {
|
|
|
154897
155393
|
id?: number;
|
|
154898
155394
|
id_country?: number | null;
|
|
154899
155395
|
id_city?: number | null;
|
|
155396
|
+
id_time_zone?: number | null;
|
|
154900
155397
|
logic_code?: string | null;
|
|
154901
155398
|
un_code?: string | null;
|
|
154902
155399
|
iata_code?: string | null;
|
|
@@ -154953,6 +155450,7 @@ export type un_locodesUpdateWithoutStateInput = {
|
|
|
154953
155450
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154954
155451
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154955
155452
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155453
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154956
155454
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154957
155455
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154958
155456
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154972,6 +155470,7 @@ export type un_locodesUncheckedUpdateWithoutStateInput = {
|
|
|
154972
155470
|
id?: IntFieldUpdateOperationsInput | number;
|
|
154973
155471
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154974
155472
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155473
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154975
155474
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154976
155475
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154977
155476
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155017,6 +155516,7 @@ export type un_locodesUncheckedUpdateManyWithoutStateInput = {
|
|
|
155017
155516
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155018
155517
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155019
155518
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155519
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155020
155520
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155021
155521
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155022
155522
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155048,6 +155548,7 @@ export type un_locodesCreateManyCityInput = {
|
|
|
155048
155548
|
id?: number;
|
|
155049
155549
|
id_country?: number | null;
|
|
155050
155550
|
id_state?: number | null;
|
|
155551
|
+
id_time_zone?: number | null;
|
|
155051
155552
|
logic_code?: string | null;
|
|
155052
155553
|
un_code?: string | null;
|
|
155053
155554
|
iata_code?: string | null;
|
|
@@ -155104,6 +155605,7 @@ export type un_locodesUpdateWithoutCityInput = {
|
|
|
155104
155605
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155105
155606
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
155106
155607
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
155608
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
155107
155609
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
155108
155610
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
155109
155611
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -155123,6 +155625,7 @@ export type un_locodesUncheckedUpdateWithoutCityInput = {
|
|
|
155123
155625
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155124
155626
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155125
155627
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155628
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155126
155629
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155127
155630
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155128
155631
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155168,6 +155671,162 @@ export type un_locodesUncheckedUpdateManyWithoutCityInput = {
|
|
|
155168
155671
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155169
155672
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155170
155673
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155674
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155675
|
+
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155676
|
+
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155677
|
+
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155678
|
+
iata_region_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155679
|
+
latitude?: NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
155680
|
+
longitude?: NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
155681
|
+
port_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155682
|
+
proper_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155683
|
+
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155684
|
+
is_system?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155685
|
+
is_system_updatable?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155686
|
+
has_post?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155687
|
+
has_customs?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155688
|
+
has_unload?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155689
|
+
has_airport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155690
|
+
has_railway?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155691
|
+
has_road?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155692
|
+
has_store?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155693
|
+
has_terminal?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155694
|
+
has_discharge?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155695
|
+
has_seaport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155696
|
+
has_outport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155697
|
+
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
155698
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155699
|
+
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
155700
|
+
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155701
|
+
};
|
|
155702
|
+
export type un_locodesCreateManyTime_zoneInput = {
|
|
155703
|
+
id?: number;
|
|
155704
|
+
id_country?: number | null;
|
|
155705
|
+
id_state?: number | null;
|
|
155706
|
+
id_city?: number | null;
|
|
155707
|
+
logic_code?: string | null;
|
|
155708
|
+
un_code?: string | null;
|
|
155709
|
+
iata_code?: string | null;
|
|
155710
|
+
iata_region_code?: string | null;
|
|
155711
|
+
latitude?: runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
155712
|
+
longitude?: runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
155713
|
+
port_name?: string | null;
|
|
155714
|
+
proper_name?: string | null;
|
|
155715
|
+
is_active?: boolean | null;
|
|
155716
|
+
is_system?: boolean | null;
|
|
155717
|
+
is_system_updatable?: boolean | null;
|
|
155718
|
+
has_post?: boolean | null;
|
|
155719
|
+
has_customs?: boolean | null;
|
|
155720
|
+
has_unload?: boolean | null;
|
|
155721
|
+
has_airport?: boolean | null;
|
|
155722
|
+
has_railway?: boolean | null;
|
|
155723
|
+
has_road?: boolean | null;
|
|
155724
|
+
has_store?: boolean | null;
|
|
155725
|
+
has_terminal?: boolean | null;
|
|
155726
|
+
has_discharge?: boolean | null;
|
|
155727
|
+
has_seaport?: boolean | null;
|
|
155728
|
+
has_outport?: boolean | null;
|
|
155729
|
+
created_at?: Date | string | null;
|
|
155730
|
+
created_by?: string | null;
|
|
155731
|
+
updated_at?: Date | string | null;
|
|
155732
|
+
updated_by?: string | null;
|
|
155733
|
+
};
|
|
155734
|
+
export type un_locodesUpdateWithoutTime_zoneInput = {
|
|
155735
|
+
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155736
|
+
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155737
|
+
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155738
|
+
iata_region_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155739
|
+
latitude?: NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
155740
|
+
longitude?: NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
155741
|
+
port_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155742
|
+
proper_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155743
|
+
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155744
|
+
is_system?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155745
|
+
is_system_updatable?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155746
|
+
has_post?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155747
|
+
has_customs?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155748
|
+
has_unload?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155749
|
+
has_airport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155750
|
+
has_railway?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155751
|
+
has_road?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155752
|
+
has_store?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155753
|
+
has_terminal?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155754
|
+
has_discharge?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155755
|
+
has_seaport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155756
|
+
has_outport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155757
|
+
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
155758
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155759
|
+
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
155760
|
+
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155761
|
+
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
155762
|
+
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
155763
|
+
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155764
|
+
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
155765
|
+
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
155766
|
+
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
155767
|
+
companies?: companiesUpdateManyWithoutUn_locodeNestedInput;
|
|
155768
|
+
airlines?: airlinesUpdateManyWithoutUn_locodeNestedInput;
|
|
155769
|
+
shipping_lines?: shipping_linesUpdateManyWithoutUn_locodeNestedInput;
|
|
155770
|
+
forwarding_booking_origins?: forwarding_bookingsUpdateManyWithoutOrigin_un_locodesNestedInput;
|
|
155771
|
+
forwarding_booking_destinations?: forwarding_bookingsUpdateManyWithoutDestination_un_locodesNestedInput;
|
|
155772
|
+
forwarding_shipment_origins?: forwarding_shipmentsUpdateManyWithoutOrigin_un_locodeNestedInput;
|
|
155773
|
+
forwarding_shipment_destinations?: forwarding_shipmentsUpdateManyWithoutDestination_un_locodeNestedInput;
|
|
155774
|
+
forwarding_console_first_loads?: forwarding_consolesUpdateManyWithoutFirst_load_un_locodesNestedInput;
|
|
155775
|
+
forwarding_console_last_discharges?: forwarding_consolesUpdateManyWithoutLast_discharge_un_locodesNestedInput;
|
|
155776
|
+
forwarding_console_routing_loads?: forwarding_console_routingsUpdateManyWithoutLoad_un_locodeNestedInput;
|
|
155777
|
+
forwarding_console_routing_discharges?: forwarding_console_routingsUpdateManyWithoutDischarge_un_locodeNestedInput;
|
|
155778
|
+
};
|
|
155779
|
+
export type un_locodesUncheckedUpdateWithoutTime_zoneInput = {
|
|
155780
|
+
id?: IntFieldUpdateOperationsInput | number;
|
|
155781
|
+
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155782
|
+
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155783
|
+
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155784
|
+
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155785
|
+
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155786
|
+
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155787
|
+
iata_region_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155788
|
+
latitude?: NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
155789
|
+
longitude?: NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
|
|
155790
|
+
port_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155791
|
+
proper_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155792
|
+
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155793
|
+
is_system?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155794
|
+
is_system_updatable?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155795
|
+
has_post?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155796
|
+
has_customs?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155797
|
+
has_unload?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155798
|
+
has_airport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155799
|
+
has_railway?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155800
|
+
has_road?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155801
|
+
has_store?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155802
|
+
has_terminal?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155803
|
+
has_discharge?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155804
|
+
has_seaport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155805
|
+
has_outport?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
155806
|
+
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
155807
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155808
|
+
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
155809
|
+
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155810
|
+
local_codes?: local_codesUncheckedUpdateManyWithoutUn_locodesNestedInput;
|
|
155811
|
+
un_locode_logs?: un_locode_logsUncheckedUpdateManyWithoutUn_locodeNestedInput;
|
|
155812
|
+
branches?: branchesUncheckedUpdateManyWithoutUn_locodeNestedInput;
|
|
155813
|
+
companies?: companiesUncheckedUpdateManyWithoutUn_locodeNestedInput;
|
|
155814
|
+
airlines?: airlinesUncheckedUpdateManyWithoutUn_locodeNestedInput;
|
|
155815
|
+
shipping_lines?: shipping_linesUncheckedUpdateManyWithoutUn_locodeNestedInput;
|
|
155816
|
+
forwarding_booking_origins?: forwarding_bookingsUncheckedUpdateManyWithoutOrigin_un_locodesNestedInput;
|
|
155817
|
+
forwarding_booking_destinations?: forwarding_bookingsUncheckedUpdateManyWithoutDestination_un_locodesNestedInput;
|
|
155818
|
+
forwarding_shipment_origins?: forwarding_shipmentsUncheckedUpdateManyWithoutOrigin_un_locodeNestedInput;
|
|
155819
|
+
forwarding_shipment_destinations?: forwarding_shipmentsUncheckedUpdateManyWithoutDestination_un_locodeNestedInput;
|
|
155820
|
+
forwarding_console_first_loads?: forwarding_consolesUncheckedUpdateManyWithoutFirst_load_un_locodesNestedInput;
|
|
155821
|
+
forwarding_console_last_discharges?: forwarding_consolesUncheckedUpdateManyWithoutLast_discharge_un_locodesNestedInput;
|
|
155822
|
+
forwarding_console_routing_loads?: forwarding_console_routingsUncheckedUpdateManyWithoutLoad_un_locodeNestedInput;
|
|
155823
|
+
forwarding_console_routing_discharges?: forwarding_console_routingsUncheckedUpdateManyWithoutDischarge_un_locodeNestedInput;
|
|
155824
|
+
};
|
|
155825
|
+
export type un_locodesUncheckedUpdateManyWithoutTime_zoneInput = {
|
|
155826
|
+
id?: IntFieldUpdateOperationsInput | number;
|
|
155827
|
+
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155828
|
+
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155829
|
+
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155171
155830
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155172
155831
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155173
155832
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155309,6 +155968,7 @@ export type un_locodesSelect<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
155309
155968
|
id_country?: boolean;
|
|
155310
155969
|
id_state?: boolean;
|
|
155311
155970
|
id_city?: boolean;
|
|
155971
|
+
id_time_zone?: boolean;
|
|
155312
155972
|
logic_code?: boolean;
|
|
155313
155973
|
un_code?: boolean;
|
|
155314
155974
|
iata_code?: boolean;
|
|
@@ -155338,6 +155998,7 @@ export type un_locodesSelect<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
155338
155998
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155339
155999
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155340
156000
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156001
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155341
156002
|
local_codes?: boolean | un_locodes$local_codesArgs<ExtArgs>;
|
|
155342
156003
|
un_locode_logs?: boolean | un_locodes$un_locode_logsArgs<ExtArgs>;
|
|
155343
156004
|
branches?: boolean | un_locodes$branchesArgs<ExtArgs>;
|
|
@@ -155359,6 +156020,7 @@ export type un_locodesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
155359
156020
|
id_country?: boolean;
|
|
155360
156021
|
id_state?: boolean;
|
|
155361
156022
|
id_city?: boolean;
|
|
156023
|
+
id_time_zone?: boolean;
|
|
155362
156024
|
logic_code?: boolean;
|
|
155363
156025
|
un_code?: boolean;
|
|
155364
156026
|
iata_code?: boolean;
|
|
@@ -155388,12 +156050,14 @@ export type un_locodesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
155388
156050
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155389
156051
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155390
156052
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156053
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155391
156054
|
}, ExtArgs["result"]["un_locodes"]>;
|
|
155392
156055
|
export type un_locodesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
155393
156056
|
id?: boolean;
|
|
155394
156057
|
id_country?: boolean;
|
|
155395
156058
|
id_state?: boolean;
|
|
155396
156059
|
id_city?: boolean;
|
|
156060
|
+
id_time_zone?: boolean;
|
|
155397
156061
|
logic_code?: boolean;
|
|
155398
156062
|
un_code?: boolean;
|
|
155399
156063
|
iata_code?: boolean;
|
|
@@ -155423,12 +156087,14 @@ export type un_locodesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
155423
156087
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155424
156088
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155425
156089
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156090
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155426
156091
|
}, ExtArgs["result"]["un_locodes"]>;
|
|
155427
|
-
export type un_locodesOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "id_country" | "id_state" | "id_city" | "logic_code" | "un_code" | "iata_code" | "iata_region_code" | "latitude" | "longitude" | "port_name" | "proper_name" | "is_active" | "is_system" | "is_system_updatable" | "has_post" | "has_customs" | "has_unload" | "has_airport" | "has_railway" | "has_road" | "has_store" | "has_terminal" | "has_discharge" | "has_seaport" | "has_outport" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["un_locodes"]>;
|
|
156092
|
+
export type un_locodesOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "id_country" | "id_state" | "id_city" | "id_time_zone" | "logic_code" | "un_code" | "iata_code" | "iata_region_code" | "latitude" | "longitude" | "port_name" | "proper_name" | "is_active" | "is_system" | "is_system_updatable" | "has_post" | "has_customs" | "has_unload" | "has_airport" | "has_railway" | "has_road" | "has_store" | "has_terminal" | "has_discharge" | "has_seaport" | "has_outport" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["un_locodes"]>;
|
|
155428
156093
|
export type un_locodesInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
155429
156094
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155430
156095
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155431
156096
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156097
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155432
156098
|
local_codes?: boolean | un_locodes$local_codesArgs<ExtArgs>;
|
|
155433
156099
|
un_locode_logs?: boolean | un_locodes$un_locode_logsArgs<ExtArgs>;
|
|
155434
156100
|
branches?: boolean | un_locodes$branchesArgs<ExtArgs>;
|
|
@@ -155449,11 +156115,13 @@ export type un_locodesIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.E
|
|
|
155449
156115
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155450
156116
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155451
156117
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156118
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155452
156119
|
};
|
|
155453
156120
|
export type un_locodesIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
155454
156121
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155455
156122
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155456
156123
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156124
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155457
156125
|
};
|
|
155458
156126
|
export type $un_locodesPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
155459
156127
|
name: "un_locodes";
|
|
@@ -155461,6 +156129,7 @@ export type $un_locodesPayload<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
155461
156129
|
country: $countriesPayload<ExtArgs> | null;
|
|
155462
156130
|
state: $statesPayload<ExtArgs> | null;
|
|
155463
156131
|
city: $citiesPayload<ExtArgs> | null;
|
|
156132
|
+
time_zone: $time_zonesPayload<ExtArgs> | null;
|
|
155464
156133
|
local_codes: $local_codesPayload<ExtArgs>[];
|
|
155465
156134
|
un_locode_logs: $un_locode_logsPayload<ExtArgs>[];
|
|
155466
156135
|
branches: $branchesPayload<ExtArgs>[];
|
|
@@ -155481,6 +156150,7 @@ export type $un_locodesPayload<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
155481
156150
|
id_country: number | null;
|
|
155482
156151
|
id_state: number | null;
|
|
155483
156152
|
id_city: number | null;
|
|
156153
|
+
id_time_zone: number | null;
|
|
155484
156154
|
logic_code: string | null;
|
|
155485
156155
|
un_code: string | null;
|
|
155486
156156
|
iata_code: string | null;
|
|
@@ -155838,6 +156508,7 @@ export interface Prisma__un_locodesClient<T, Null = never, ExtArgs extends runti
|
|
|
155838
156508
|
country<T extends un_locodes$countryArgs<ExtArgs> = {}>(args?: Subset<T, un_locodes$countryArgs<ExtArgs>>): Prisma__countriesClient<runtime.Types.Result.GetResult<$countriesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
155839
156509
|
state<T extends un_locodes$stateArgs<ExtArgs> = {}>(args?: Subset<T, un_locodes$stateArgs<ExtArgs>>): Prisma__statesClient<runtime.Types.Result.GetResult<$statesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
155840
156510
|
city<T extends un_locodes$cityArgs<ExtArgs> = {}>(args?: Subset<T, un_locodes$cityArgs<ExtArgs>>): Prisma__citiesClient<runtime.Types.Result.GetResult<$citiesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
156511
|
+
time_zone<T extends un_locodes$time_zoneArgs<ExtArgs> = {}>(args?: Subset<T, un_locodes$time_zoneArgs<ExtArgs>>): Prisma__time_zonesClient<runtime.Types.Result.GetResult<$time_zonesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
155841
156512
|
local_codes<T extends un_locodes$local_codesArgs<ExtArgs> = {}>(args?: Subset<T, un_locodes$local_codesArgs<ExtArgs>>): PrismaPromise$1<runtime.Types.Result.GetResult<$local_codesPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
155842
156513
|
un_locode_logs<T extends un_locodes$un_locode_logsArgs<ExtArgs> = {}>(args?: Subset<T, un_locodes$un_locode_logsArgs<ExtArgs>>): PrismaPromise$1<runtime.Types.Result.GetResult<$un_locode_logsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
155843
156514
|
branches<T extends un_locodes$branchesArgs<ExtArgs> = {}>(args?: Subset<T, un_locodes$branchesArgs<ExtArgs>>): PrismaPromise$1<runtime.Types.Result.GetResult<$branchesPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
@@ -155881,6 +156552,7 @@ export interface un_locodesFieldRefs {
|
|
|
155881
156552
|
readonly id_country: FieldRef$1<"un_locodes", "Int">;
|
|
155882
156553
|
readonly id_state: FieldRef$1<"un_locodes", "Int">;
|
|
155883
156554
|
readonly id_city: FieldRef$1<"un_locodes", "Int">;
|
|
156555
|
+
readonly id_time_zone: FieldRef$1<"un_locodes", "Int">;
|
|
155884
156556
|
readonly logic_code: FieldRef$1<"un_locodes", "String">;
|
|
155885
156557
|
readonly un_code: FieldRef$1<"un_locodes", "String">;
|
|
155886
156558
|
readonly iata_code: FieldRef$1<"un_locodes", "String">;
|
|
@@ -156339,6 +157011,24 @@ export type un_locodes$cityArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
156339
157011
|
include?: citiesInclude<ExtArgs> | null;
|
|
156340
157012
|
where?: citiesWhereInput;
|
|
156341
157013
|
};
|
|
157014
|
+
/**
|
|
157015
|
+
* un_locodes.time_zone
|
|
157016
|
+
*/
|
|
157017
|
+
export type un_locodes$time_zoneArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
157018
|
+
/**
|
|
157019
|
+
* Select specific fields to fetch from the time_zones
|
|
157020
|
+
*/
|
|
157021
|
+
select?: time_zonesSelect<ExtArgs> | null;
|
|
157022
|
+
/**
|
|
157023
|
+
* Omit specific fields from the time_zones
|
|
157024
|
+
*/
|
|
157025
|
+
omit?: time_zonesOmit<ExtArgs> | null;
|
|
157026
|
+
/**
|
|
157027
|
+
* Choose, which related nodes to fetch as well
|
|
157028
|
+
*/
|
|
157029
|
+
include?: time_zonesInclude<ExtArgs> | null;
|
|
157030
|
+
where?: time_zonesWhereInput;
|
|
157031
|
+
};
|
|
156342
157032
|
/**
|
|
156343
157033
|
* un_locodes.local_codes
|
|
156344
157034
|
*/
|
|
@@ -171717,18 +172407,16 @@ export type AggregateTime_zones = {
|
|
|
171717
172407
|
};
|
|
171718
172408
|
export type Time_zonesAvgAggregateOutputType = {
|
|
171719
172409
|
id: number | null;
|
|
171720
|
-
utc_offset: runtime.Decimal | null;
|
|
171721
172410
|
};
|
|
171722
172411
|
export type Time_zonesSumAggregateOutputType = {
|
|
171723
172412
|
id: number | null;
|
|
171724
|
-
utc_offset: runtime.Decimal | null;
|
|
171725
172413
|
};
|
|
171726
172414
|
export type Time_zonesMinAggregateOutputType = {
|
|
171727
172415
|
id: number | null;
|
|
171728
172416
|
logic_code: string | null;
|
|
171729
172417
|
code: string | null;
|
|
171730
172418
|
name: string | null;
|
|
171731
|
-
utc_offset:
|
|
172419
|
+
utc_offset: string | null;
|
|
171732
172420
|
is_active: boolean | null;
|
|
171733
172421
|
created_at: Date | null;
|
|
171734
172422
|
created_by: string | null;
|
|
@@ -171740,7 +172428,7 @@ export type Time_zonesMaxAggregateOutputType = {
|
|
|
171740
172428
|
logic_code: string | null;
|
|
171741
172429
|
code: string | null;
|
|
171742
172430
|
name: string | null;
|
|
171743
|
-
utc_offset:
|
|
172431
|
+
utc_offset: string | null;
|
|
171744
172432
|
is_active: boolean | null;
|
|
171745
172433
|
created_at: Date | null;
|
|
171746
172434
|
created_by: string | null;
|
|
@@ -171762,11 +172450,9 @@ export type Time_zonesCountAggregateOutputType = {
|
|
|
171762
172450
|
};
|
|
171763
172451
|
export type Time_zonesAvgAggregateInputType = {
|
|
171764
172452
|
id?: true;
|
|
171765
|
-
utc_offset?: true;
|
|
171766
172453
|
};
|
|
171767
172454
|
export type Time_zonesSumAggregateInputType = {
|
|
171768
172455
|
id?: true;
|
|
171769
|
-
utc_offset?: true;
|
|
171770
172456
|
};
|
|
171771
172457
|
export type Time_zonesMinAggregateInputType = {
|
|
171772
172458
|
id?: true;
|
|
@@ -171886,7 +172572,7 @@ export type Time_zonesGroupByOutputType = {
|
|
|
171886
172572
|
logic_code: string | null;
|
|
171887
172573
|
code: string | null;
|
|
171888
172574
|
name: string | null;
|
|
171889
|
-
utc_offset:
|
|
172575
|
+
utc_offset: string | null;
|
|
171890
172576
|
is_active: boolean | null;
|
|
171891
172577
|
created_at: Date | null;
|
|
171892
172578
|
created_by: string | null;
|
|
@@ -171909,13 +172595,14 @@ export type time_zonesWhereInput = {
|
|
|
171909
172595
|
logic_code?: StringNullableFilter<"time_zones"> | string | null;
|
|
171910
172596
|
code?: StringNullableFilter<"time_zones"> | string | null;
|
|
171911
172597
|
name?: StringNullableFilter<"time_zones"> | string | null;
|
|
171912
|
-
utc_offset?:
|
|
172598
|
+
utc_offset?: StringNullableFilter<"time_zones"> | string | null;
|
|
171913
172599
|
is_active?: BoolNullableFilter<"time_zones"> | boolean | null;
|
|
171914
172600
|
created_at?: DateTimeNullableFilter<"time_zones"> | Date | string | null;
|
|
171915
172601
|
created_by?: StringNullableFilter<"time_zones"> | string | null;
|
|
171916
172602
|
updated_at?: DateTimeNullableFilter<"time_zones"> | Date | string | null;
|
|
171917
172603
|
updated_by?: StringNullableFilter<"time_zones"> | string | null;
|
|
171918
172604
|
time_zone_logs?: Time_zone_logsListRelationFilter;
|
|
172605
|
+
un_locodes?: Un_locodesListRelationFilter;
|
|
171919
172606
|
};
|
|
171920
172607
|
export type time_zonesOrderByWithRelationInput = {
|
|
171921
172608
|
id?: SortOrder$1;
|
|
@@ -171929,6 +172616,7 @@ export type time_zonesOrderByWithRelationInput = {
|
|
|
171929
172616
|
updated_at?: SortOrderInput | SortOrder$1;
|
|
171930
172617
|
updated_by?: SortOrderInput | SortOrder$1;
|
|
171931
172618
|
time_zone_logs?: time_zone_logsOrderByRelationAggregateInput;
|
|
172619
|
+
un_locodes?: un_locodesOrderByRelationAggregateInput;
|
|
171932
172620
|
};
|
|
171933
172621
|
export type time_zonesWhereUniqueInput = AtLeast<{
|
|
171934
172622
|
id?: number;
|
|
@@ -171938,13 +172626,14 @@ export type time_zonesWhereUniqueInput = AtLeast<{
|
|
|
171938
172626
|
NOT?: time_zonesWhereInput | time_zonesWhereInput[];
|
|
171939
172627
|
code?: StringNullableFilter<"time_zones"> | string | null;
|
|
171940
172628
|
name?: StringNullableFilter<"time_zones"> | string | null;
|
|
171941
|
-
utc_offset?:
|
|
172629
|
+
utc_offset?: StringNullableFilter<"time_zones"> | string | null;
|
|
171942
172630
|
is_active?: BoolNullableFilter<"time_zones"> | boolean | null;
|
|
171943
172631
|
created_at?: DateTimeNullableFilter<"time_zones"> | Date | string | null;
|
|
171944
172632
|
created_by?: StringNullableFilter<"time_zones"> | string | null;
|
|
171945
172633
|
updated_at?: DateTimeNullableFilter<"time_zones"> | Date | string | null;
|
|
171946
172634
|
updated_by?: StringNullableFilter<"time_zones"> | string | null;
|
|
171947
172635
|
time_zone_logs?: Time_zone_logsListRelationFilter;
|
|
172636
|
+
un_locodes?: Un_locodesListRelationFilter;
|
|
171948
172637
|
}, "id" | "logic_code">;
|
|
171949
172638
|
export type time_zonesOrderByWithAggregationInput = {
|
|
171950
172639
|
id?: SortOrder$1;
|
|
@@ -171971,7 +172660,7 @@ export type time_zonesScalarWhereWithAggregatesInput = {
|
|
|
171971
172660
|
logic_code?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
171972
172661
|
code?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
171973
172662
|
name?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
171974
|
-
utc_offset?:
|
|
172663
|
+
utc_offset?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
171975
172664
|
is_active?: BoolNullableWithAggregatesFilter<"time_zones"> | boolean | null;
|
|
171976
172665
|
created_at?: DateTimeNullableWithAggregatesFilter<"time_zones"> | Date | string | null;
|
|
171977
172666
|
created_by?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
@@ -171982,58 +172671,62 @@ export type time_zonesCreateInput = {
|
|
|
171982
172671
|
logic_code?: string | null;
|
|
171983
172672
|
code?: string | null;
|
|
171984
172673
|
name?: string | null;
|
|
171985
|
-
utc_offset?:
|
|
172674
|
+
utc_offset?: string | null;
|
|
171986
172675
|
is_active?: boolean | null;
|
|
171987
172676
|
created_at?: Date | string | null;
|
|
171988
172677
|
created_by?: string | null;
|
|
171989
172678
|
updated_at?: Date | string | null;
|
|
171990
172679
|
updated_by?: string | null;
|
|
171991
172680
|
time_zone_logs?: time_zone_logsCreateNestedManyWithoutTime_zoneInput;
|
|
172681
|
+
un_locodes?: un_locodesCreateNestedManyWithoutTime_zoneInput;
|
|
171992
172682
|
};
|
|
171993
172683
|
export type time_zonesUncheckedCreateInput = {
|
|
171994
172684
|
id?: number;
|
|
171995
172685
|
logic_code?: string | null;
|
|
171996
172686
|
code?: string | null;
|
|
171997
172687
|
name?: string | null;
|
|
171998
|
-
utc_offset?:
|
|
172688
|
+
utc_offset?: string | null;
|
|
171999
172689
|
is_active?: boolean | null;
|
|
172000
172690
|
created_at?: Date | string | null;
|
|
172001
172691
|
created_by?: string | null;
|
|
172002
172692
|
updated_at?: Date | string | null;
|
|
172003
172693
|
updated_by?: string | null;
|
|
172004
172694
|
time_zone_logs?: time_zone_logsUncheckedCreateNestedManyWithoutTime_zoneInput;
|
|
172695
|
+
un_locodes?: un_locodesUncheckedCreateNestedManyWithoutTime_zoneInput;
|
|
172005
172696
|
};
|
|
172006
172697
|
export type time_zonesUpdateInput = {
|
|
172007
172698
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172008
172699
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172009
172700
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172010
|
-
utc_offset?:
|
|
172701
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172011
172702
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172012
172703
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172013
172704
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172014
172705
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172015
172706
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172016
172707
|
time_zone_logs?: time_zone_logsUpdateManyWithoutTime_zoneNestedInput;
|
|
172708
|
+
un_locodes?: un_locodesUpdateManyWithoutTime_zoneNestedInput;
|
|
172017
172709
|
};
|
|
172018
172710
|
export type time_zonesUncheckedUpdateInput = {
|
|
172019
172711
|
id?: IntFieldUpdateOperationsInput | number;
|
|
172020
172712
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172021
172713
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172022
172714
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172023
|
-
utc_offset?:
|
|
172715
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172024
172716
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172025
172717
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172026
172718
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172027
172719
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172028
172720
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172029
172721
|
time_zone_logs?: time_zone_logsUncheckedUpdateManyWithoutTime_zoneNestedInput;
|
|
172722
|
+
un_locodes?: un_locodesUncheckedUpdateManyWithoutTime_zoneNestedInput;
|
|
172030
172723
|
};
|
|
172031
172724
|
export type time_zonesCreateManyInput = {
|
|
172032
172725
|
id?: number;
|
|
172033
172726
|
logic_code?: string | null;
|
|
172034
172727
|
code?: string | null;
|
|
172035
172728
|
name?: string | null;
|
|
172036
|
-
utc_offset?:
|
|
172729
|
+
utc_offset?: string | null;
|
|
172037
172730
|
is_active?: boolean | null;
|
|
172038
172731
|
created_at?: Date | string | null;
|
|
172039
172732
|
created_by?: string | null;
|
|
@@ -172044,7 +172737,7 @@ export type time_zonesUpdateManyMutationInput = {
|
|
|
172044
172737
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172045
172738
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172046
172739
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172047
|
-
utc_offset?:
|
|
172740
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172048
172741
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172049
172742
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172050
172743
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -172056,13 +172749,17 @@ export type time_zonesUncheckedUpdateManyInput = {
|
|
|
172056
172749
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172057
172750
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172058
172751
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172059
|
-
utc_offset?:
|
|
172752
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172060
172753
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172061
172754
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172062
172755
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172063
172756
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172064
172757
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172065
172758
|
};
|
|
172759
|
+
export type Time_zonesNullableScalarRelationFilter = {
|
|
172760
|
+
is?: time_zonesWhereInput | null;
|
|
172761
|
+
isNot?: time_zonesWhereInput | null;
|
|
172762
|
+
};
|
|
172066
172763
|
export type time_zonesCountOrderByAggregateInput = {
|
|
172067
172764
|
id?: SortOrder$1;
|
|
172068
172765
|
logic_code?: SortOrder$1;
|
|
@@ -172077,7 +172774,6 @@ export type time_zonesCountOrderByAggregateInput = {
|
|
|
172077
172774
|
};
|
|
172078
172775
|
export type time_zonesAvgOrderByAggregateInput = {
|
|
172079
172776
|
id?: SortOrder$1;
|
|
172080
|
-
utc_offset?: SortOrder$1;
|
|
172081
172777
|
};
|
|
172082
172778
|
export type time_zonesMaxOrderByAggregateInput = {
|
|
172083
172779
|
id?: SortOrder$1;
|
|
@@ -172105,11 +172801,20 @@ export type time_zonesMinOrderByAggregateInput = {
|
|
|
172105
172801
|
};
|
|
172106
172802
|
export type time_zonesSumOrderByAggregateInput = {
|
|
172107
172803
|
id?: SortOrder$1;
|
|
172108
|
-
utc_offset?: SortOrder$1;
|
|
172109
172804
|
};
|
|
172110
|
-
export type
|
|
172111
|
-
|
|
172112
|
-
|
|
172805
|
+
export type time_zonesCreateNestedOneWithoutUn_locodesInput = {
|
|
172806
|
+
create?: XOR<time_zonesCreateWithoutUn_locodesInput, time_zonesUncheckedCreateWithoutUn_locodesInput>;
|
|
172807
|
+
connectOrCreate?: time_zonesCreateOrConnectWithoutUn_locodesInput;
|
|
172808
|
+
connect?: time_zonesWhereUniqueInput;
|
|
172809
|
+
};
|
|
172810
|
+
export type time_zonesUpdateOneWithoutUn_locodesNestedInput = {
|
|
172811
|
+
create?: XOR<time_zonesCreateWithoutUn_locodesInput, time_zonesUncheckedCreateWithoutUn_locodesInput>;
|
|
172812
|
+
connectOrCreate?: time_zonesCreateOrConnectWithoutUn_locodesInput;
|
|
172813
|
+
upsert?: time_zonesUpsertWithoutUn_locodesInput;
|
|
172814
|
+
disconnect?: time_zonesWhereInput | boolean;
|
|
172815
|
+
delete?: time_zonesWhereInput | boolean;
|
|
172816
|
+
connect?: time_zonesWhereUniqueInput;
|
|
172817
|
+
update?: XOR<XOR<time_zonesUpdateToOneWithWhereWithoutUn_locodesInput, time_zonesUpdateWithoutUn_locodesInput>, time_zonesUncheckedUpdateWithoutUn_locodesInput>;
|
|
172113
172818
|
};
|
|
172114
172819
|
export type time_zonesCreateNestedOneWithoutTime_zone_logsInput = {
|
|
172115
172820
|
create?: XOR<time_zonesCreateWithoutTime_zone_logsInput, time_zonesUncheckedCreateWithoutTime_zone_logsInput>;
|
|
@@ -172125,28 +172830,93 @@ export type time_zonesUpdateOneWithoutTime_zone_logsNestedInput = {
|
|
|
172125
172830
|
connect?: time_zonesWhereUniqueInput;
|
|
172126
172831
|
update?: XOR<XOR<time_zonesUpdateToOneWithWhereWithoutTime_zone_logsInput, time_zonesUpdateWithoutTime_zone_logsInput>, time_zonesUncheckedUpdateWithoutTime_zone_logsInput>;
|
|
172127
172832
|
};
|
|
172833
|
+
export type time_zonesCreateWithoutUn_locodesInput = {
|
|
172834
|
+
logic_code?: string | null;
|
|
172835
|
+
code?: string | null;
|
|
172836
|
+
name?: string | null;
|
|
172837
|
+
utc_offset?: string | null;
|
|
172838
|
+
is_active?: boolean | null;
|
|
172839
|
+
created_at?: Date | string | null;
|
|
172840
|
+
created_by?: string | null;
|
|
172841
|
+
updated_at?: Date | string | null;
|
|
172842
|
+
updated_by?: string | null;
|
|
172843
|
+
time_zone_logs?: time_zone_logsCreateNestedManyWithoutTime_zoneInput;
|
|
172844
|
+
};
|
|
172845
|
+
export type time_zonesUncheckedCreateWithoutUn_locodesInput = {
|
|
172846
|
+
id?: number;
|
|
172847
|
+
logic_code?: string | null;
|
|
172848
|
+
code?: string | null;
|
|
172849
|
+
name?: string | null;
|
|
172850
|
+
utc_offset?: string | null;
|
|
172851
|
+
is_active?: boolean | null;
|
|
172852
|
+
created_at?: Date | string | null;
|
|
172853
|
+
created_by?: string | null;
|
|
172854
|
+
updated_at?: Date | string | null;
|
|
172855
|
+
updated_by?: string | null;
|
|
172856
|
+
time_zone_logs?: time_zone_logsUncheckedCreateNestedManyWithoutTime_zoneInput;
|
|
172857
|
+
};
|
|
172858
|
+
export type time_zonesCreateOrConnectWithoutUn_locodesInput = {
|
|
172859
|
+
where: time_zonesWhereUniqueInput;
|
|
172860
|
+
create: XOR<time_zonesCreateWithoutUn_locodesInput, time_zonesUncheckedCreateWithoutUn_locodesInput>;
|
|
172861
|
+
};
|
|
172862
|
+
export type time_zonesUpsertWithoutUn_locodesInput = {
|
|
172863
|
+
update: XOR<time_zonesUpdateWithoutUn_locodesInput, time_zonesUncheckedUpdateWithoutUn_locodesInput>;
|
|
172864
|
+
create: XOR<time_zonesCreateWithoutUn_locodesInput, time_zonesUncheckedCreateWithoutUn_locodesInput>;
|
|
172865
|
+
where?: time_zonesWhereInput;
|
|
172866
|
+
};
|
|
172867
|
+
export type time_zonesUpdateToOneWithWhereWithoutUn_locodesInput = {
|
|
172868
|
+
where?: time_zonesWhereInput;
|
|
172869
|
+
data: XOR<time_zonesUpdateWithoutUn_locodesInput, time_zonesUncheckedUpdateWithoutUn_locodesInput>;
|
|
172870
|
+
};
|
|
172871
|
+
export type time_zonesUpdateWithoutUn_locodesInput = {
|
|
172872
|
+
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172873
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172874
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172875
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172876
|
+
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172877
|
+
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172878
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172879
|
+
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172880
|
+
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172881
|
+
time_zone_logs?: time_zone_logsUpdateManyWithoutTime_zoneNestedInput;
|
|
172882
|
+
};
|
|
172883
|
+
export type time_zonesUncheckedUpdateWithoutUn_locodesInput = {
|
|
172884
|
+
id?: IntFieldUpdateOperationsInput | number;
|
|
172885
|
+
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172886
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172887
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172888
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172889
|
+
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172890
|
+
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172891
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172892
|
+
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172893
|
+
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172894
|
+
time_zone_logs?: time_zone_logsUncheckedUpdateManyWithoutTime_zoneNestedInput;
|
|
172895
|
+
};
|
|
172128
172896
|
export type time_zonesCreateWithoutTime_zone_logsInput = {
|
|
172129
172897
|
logic_code?: string | null;
|
|
172130
172898
|
code?: string | null;
|
|
172131
172899
|
name?: string | null;
|
|
172132
|
-
utc_offset?:
|
|
172900
|
+
utc_offset?: string | null;
|
|
172133
172901
|
is_active?: boolean | null;
|
|
172134
172902
|
created_at?: Date | string | null;
|
|
172135
172903
|
created_by?: string | null;
|
|
172136
172904
|
updated_at?: Date | string | null;
|
|
172137
172905
|
updated_by?: string | null;
|
|
172906
|
+
un_locodes?: un_locodesCreateNestedManyWithoutTime_zoneInput;
|
|
172138
172907
|
};
|
|
172139
172908
|
export type time_zonesUncheckedCreateWithoutTime_zone_logsInput = {
|
|
172140
172909
|
id?: number;
|
|
172141
172910
|
logic_code?: string | null;
|
|
172142
172911
|
code?: string | null;
|
|
172143
172912
|
name?: string | null;
|
|
172144
|
-
utc_offset?:
|
|
172913
|
+
utc_offset?: string | null;
|
|
172145
172914
|
is_active?: boolean | null;
|
|
172146
172915
|
created_at?: Date | string | null;
|
|
172147
172916
|
created_by?: string | null;
|
|
172148
172917
|
updated_at?: Date | string | null;
|
|
172149
172918
|
updated_by?: string | null;
|
|
172919
|
+
un_locodes?: un_locodesUncheckedCreateNestedManyWithoutTime_zoneInput;
|
|
172150
172920
|
};
|
|
172151
172921
|
export type time_zonesCreateOrConnectWithoutTime_zone_logsInput = {
|
|
172152
172922
|
where: time_zonesWhereUniqueInput;
|
|
@@ -172165,27 +172935,30 @@ export type time_zonesUpdateWithoutTime_zone_logsInput = {
|
|
|
172165
172935
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172166
172936
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172167
172937
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172168
|
-
utc_offset?:
|
|
172938
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172169
172939
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172170
172940
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172171
172941
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172172
172942
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172173
172943
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172944
|
+
un_locodes?: un_locodesUpdateManyWithoutTime_zoneNestedInput;
|
|
172174
172945
|
};
|
|
172175
172946
|
export type time_zonesUncheckedUpdateWithoutTime_zone_logsInput = {
|
|
172176
172947
|
id?: IntFieldUpdateOperationsInput | number;
|
|
172177
172948
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172178
172949
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172179
172950
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172180
|
-
utc_offset?:
|
|
172951
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172181
172952
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172182
172953
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172183
172954
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172184
172955
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172185
172956
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172957
|
+
un_locodes?: un_locodesUncheckedUpdateManyWithoutTime_zoneNestedInput;
|
|
172186
172958
|
};
|
|
172187
172959
|
export type Time_zonesCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172188
172960
|
time_zone_logs?: boolean | Time_zonesCountOutputTypeCountTime_zone_logsArgs;
|
|
172961
|
+
un_locodes?: boolean | Time_zonesCountOutputTypeCountUn_locodesArgs;
|
|
172189
172962
|
};
|
|
172190
172963
|
/**
|
|
172191
172964
|
* Time_zonesCountOutputType without action
|
|
@@ -172202,6 +172975,12 @@ export type Time_zonesCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.E
|
|
|
172202
172975
|
export type Time_zonesCountOutputTypeCountTime_zone_logsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172203
172976
|
where?: time_zone_logsWhereInput;
|
|
172204
172977
|
};
|
|
172978
|
+
/**
|
|
172979
|
+
* Time_zonesCountOutputType without action
|
|
172980
|
+
*/
|
|
172981
|
+
export type Time_zonesCountOutputTypeCountUn_locodesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172982
|
+
where?: un_locodesWhereInput;
|
|
172983
|
+
};
|
|
172205
172984
|
export type time_zonesSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
172206
172985
|
id?: boolean;
|
|
172207
172986
|
logic_code?: boolean;
|
|
@@ -172214,6 +172993,7 @@ export type time_zonesSelect<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
172214
172993
|
updated_at?: boolean;
|
|
172215
172994
|
updated_by?: boolean;
|
|
172216
172995
|
time_zone_logs?: boolean | time_zones$time_zone_logsArgs<ExtArgs>;
|
|
172996
|
+
un_locodes?: boolean | time_zones$un_locodesArgs<ExtArgs>;
|
|
172217
172997
|
_count?: boolean | Time_zonesCountOutputTypeDefaultArgs<ExtArgs>;
|
|
172218
172998
|
}, ExtArgs["result"]["time_zones"]>;
|
|
172219
172999
|
export type time_zonesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
@@ -172243,19 +173023,21 @@ export type time_zonesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
172243
173023
|
export type time_zonesOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "logic_code" | "code" | "name" | "utc_offset" | "is_active" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["time_zones"]>;
|
|
172244
173024
|
export type time_zonesInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172245
173025
|
time_zone_logs?: boolean | time_zones$time_zone_logsArgs<ExtArgs>;
|
|
173026
|
+
un_locodes?: boolean | time_zones$un_locodesArgs<ExtArgs>;
|
|
172246
173027
|
_count?: boolean | Time_zonesCountOutputTypeDefaultArgs<ExtArgs>;
|
|
172247
173028
|
};
|
|
172248
173029
|
export type $time_zonesPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172249
173030
|
name: "time_zones";
|
|
172250
173031
|
objects: {
|
|
172251
173032
|
time_zone_logs: $time_zone_logsPayload<ExtArgs>[];
|
|
173033
|
+
un_locodes: $un_locodesPayload<ExtArgs>[];
|
|
172252
173034
|
};
|
|
172253
173035
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
172254
173036
|
id: number;
|
|
172255
173037
|
logic_code: string | null;
|
|
172256
173038
|
code: string | null;
|
|
172257
173039
|
name: string | null;
|
|
172258
|
-
utc_offset:
|
|
173040
|
+
utc_offset: string | null;
|
|
172259
173041
|
is_active: boolean | null;
|
|
172260
173042
|
created_at: Date | null;
|
|
172261
173043
|
created_by: string | null;
|
|
@@ -172590,6 +173372,7 @@ export interface time_zonesDelegate<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
172590
173372
|
export interface Prisma__time_zonesClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise$1<T> {
|
|
172591
173373
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
172592
173374
|
time_zone_logs<T extends time_zones$time_zone_logsArgs<ExtArgs> = {}>(args?: Subset<T, time_zones$time_zone_logsArgs<ExtArgs>>): PrismaPromise$1<runtime.Types.Result.GetResult<$time_zone_logsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
173375
|
+
un_locodes<T extends time_zones$un_locodesArgs<ExtArgs> = {}>(args?: Subset<T, time_zones$un_locodesArgs<ExtArgs>>): PrismaPromise$1<runtime.Types.Result.GetResult<$un_locodesPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
172593
173376
|
/**
|
|
172594
173377
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
172595
173378
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -172619,7 +173402,7 @@ export interface time_zonesFieldRefs {
|
|
|
172619
173402
|
readonly logic_code: FieldRef$1<"time_zones", "String">;
|
|
172620
173403
|
readonly code: FieldRef$1<"time_zones", "String">;
|
|
172621
173404
|
readonly name: FieldRef$1<"time_zones", "String">;
|
|
172622
|
-
readonly utc_offset: FieldRef$1<"time_zones", "
|
|
173405
|
+
readonly utc_offset: FieldRef$1<"time_zones", "String">;
|
|
172623
173406
|
readonly is_active: FieldRef$1<"time_zones", "Boolean">;
|
|
172624
173407
|
readonly created_at: FieldRef$1<"time_zones", "DateTime">;
|
|
172625
173408
|
readonly created_by: FieldRef$1<"time_zones", "String">;
|
|
@@ -173018,6 +173801,29 @@ export type time_zones$time_zone_logsArgs<ExtArgs extends runtime.Types.Extensio
|
|
|
173018
173801
|
skip?: number;
|
|
173019
173802
|
distinct?: Time_zone_logsScalarFieldEnum | Time_zone_logsScalarFieldEnum[];
|
|
173020
173803
|
};
|
|
173804
|
+
/**
|
|
173805
|
+
* time_zones.un_locodes
|
|
173806
|
+
*/
|
|
173807
|
+
export type time_zones$un_locodesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
173808
|
+
/**
|
|
173809
|
+
* Select specific fields to fetch from the un_locodes
|
|
173810
|
+
*/
|
|
173811
|
+
select?: un_locodesSelect<ExtArgs> | null;
|
|
173812
|
+
/**
|
|
173813
|
+
* Omit specific fields from the un_locodes
|
|
173814
|
+
*/
|
|
173815
|
+
omit?: un_locodesOmit<ExtArgs> | null;
|
|
173816
|
+
/**
|
|
173817
|
+
* Choose, which related nodes to fetch as well
|
|
173818
|
+
*/
|
|
173819
|
+
include?: un_locodesInclude<ExtArgs> | null;
|
|
173820
|
+
where?: un_locodesWhereInput;
|
|
173821
|
+
orderBy?: un_locodesOrderByWithRelationInput | un_locodesOrderByWithRelationInput[];
|
|
173822
|
+
cursor?: un_locodesWhereUniqueInput;
|
|
173823
|
+
take?: number;
|
|
173824
|
+
skip?: number;
|
|
173825
|
+
distinct?: Un_locodesScalarFieldEnum | Un_locodesScalarFieldEnum[];
|
|
173826
|
+
};
|
|
173021
173827
|
export type AggregateUn_locode_logs = {
|
|
173022
173828
|
_count: Un_locode_logsCountAggregateOutputType | null;
|
|
173023
173829
|
_avg: Un_locode_logsAvgAggregateOutputType | null;
|
|
@@ -638263,6 +639069,7 @@ declare const Un_locodesScalarFieldEnum: {
|
|
|
638263
639069
|
readonly id_country: "id_country";
|
|
638264
639070
|
readonly id_state: "id_state";
|
|
638265
639071
|
readonly id_city: "id_city";
|
|
639072
|
+
readonly id_time_zone: "id_time_zone";
|
|
638266
639073
|
readonly logic_code: "logic_code";
|
|
638267
639074
|
readonly un_code: "un_code";
|
|
638268
639075
|
readonly iata_code: "iata_code";
|