@be-logixpair/api 0.0.9 → 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 +629 -35
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -542,6 +542,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
542
542
|
ids_state?: number[] | null | undefined;
|
|
543
543
|
id_city?: number | null | undefined;
|
|
544
544
|
ids_city?: number[] | null | undefined;
|
|
545
|
+
id_time_zone?: number | null | undefined;
|
|
546
|
+
ids_time_zone?: number[] | null | undefined;
|
|
545
547
|
};
|
|
546
548
|
output: {
|
|
547
549
|
data: ({
|
|
@@ -585,6 +587,18 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
585
587
|
updated_by: string | null;
|
|
586
588
|
logic_code: string | null;
|
|
587
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;
|
|
588
602
|
} & {
|
|
589
603
|
id: number;
|
|
590
604
|
is_active: boolean | null;
|
|
@@ -596,6 +610,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
596
610
|
updated_at: Date | null;
|
|
597
611
|
updated_by: string | null;
|
|
598
612
|
logic_code: string | null;
|
|
613
|
+
id_time_zone: number | null;
|
|
599
614
|
un_code: string | null;
|
|
600
615
|
iata_code: string | null;
|
|
601
616
|
iata_region_code: string | null;
|
|
@@ -632,6 +647,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
632
647
|
country: number;
|
|
633
648
|
state: number;
|
|
634
649
|
city: number;
|
|
650
|
+
time_zone: number;
|
|
635
651
|
local_codes: number;
|
|
636
652
|
un_locode_logs: number;
|
|
637
653
|
branches: number;
|
|
@@ -705,6 +721,18 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
705
721
|
updated_by: string | null;
|
|
706
722
|
logic_code: string | null;
|
|
707
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;
|
|
708
736
|
} & {
|
|
709
737
|
id: number;
|
|
710
738
|
is_active: boolean | null;
|
|
@@ -716,6 +744,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
716
744
|
updated_at: Date | null;
|
|
717
745
|
updated_by: string | null;
|
|
718
746
|
logic_code: string | null;
|
|
747
|
+
id_time_zone: number | null;
|
|
719
748
|
un_code: string | null;
|
|
720
749
|
iata_code: string | null;
|
|
721
750
|
iata_region_code: string | null;
|
|
@@ -826,6 +855,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
826
855
|
id_country?: number | null | undefined;
|
|
827
856
|
id_state?: number | null | undefined;
|
|
828
857
|
id_city?: number | null | undefined;
|
|
858
|
+
id_time_zone?: number | null | undefined;
|
|
829
859
|
logic_code?: string | null | undefined;
|
|
830
860
|
un_code?: string | null | undefined;
|
|
831
861
|
iata_code?: string | null | undefined;
|
|
@@ -860,6 +890,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
860
890
|
updated_at: Date | null;
|
|
861
891
|
updated_by: string | null;
|
|
862
892
|
logic_code: string | null;
|
|
893
|
+
id_time_zone: number | null;
|
|
863
894
|
un_code: string | null;
|
|
864
895
|
iata_code: string | null;
|
|
865
896
|
iata_region_code: string | null;
|
|
@@ -903,6 +934,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
903
934
|
id_country?: number | null | undefined;
|
|
904
935
|
id_state?: number | null | undefined;
|
|
905
936
|
id_city?: number | null | undefined;
|
|
937
|
+
id_time_zone?: number | null | undefined;
|
|
906
938
|
logic_code?: string | null | undefined;
|
|
907
939
|
un_code?: string | null | undefined;
|
|
908
940
|
iata_code?: string | null | undefined;
|
|
@@ -937,6 +969,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
937
969
|
updated_at: Date | null;
|
|
938
970
|
updated_by: string | null;
|
|
939
971
|
logic_code: string | null;
|
|
972
|
+
id_time_zone: number | null;
|
|
940
973
|
un_code: string | null;
|
|
941
974
|
iata_code: string | null;
|
|
942
975
|
iata_region_code: string | null;
|
|
@@ -991,6 +1024,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
991
1024
|
updated_at: Date | null;
|
|
992
1025
|
updated_by: string | null;
|
|
993
1026
|
logic_code: string | null;
|
|
1027
|
+
id_time_zone: number | null;
|
|
994
1028
|
un_code: string | null;
|
|
995
1029
|
iata_code: string | null;
|
|
996
1030
|
iata_region_code: string | null;
|
|
@@ -2199,12 +2233,12 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2199
2233
|
id: number;
|
|
2200
2234
|
url: string | null;
|
|
2201
2235
|
id_log_type: number | null;
|
|
2202
|
-
id_country: number | null;
|
|
2203
2236
|
action: string | null;
|
|
2204
2237
|
params: JsonValue | null;
|
|
2205
2238
|
action_by: string | null;
|
|
2206
2239
|
action_id: string | null;
|
|
2207
2240
|
action_at: Date | null;
|
|
2241
|
+
id_postal_code: number | null;
|
|
2208
2242
|
} | undefined;
|
|
2209
2243
|
};
|
|
2210
2244
|
meta: object;
|
|
@@ -2262,7 +2296,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2262
2296
|
updated_at: Date | null;
|
|
2263
2297
|
updated_by: string | null;
|
|
2264
2298
|
logic_code: string | null;
|
|
2265
|
-
utc_offset:
|
|
2299
|
+
utc_offset: string | null;
|
|
2266
2300
|
}[] | undefined;
|
|
2267
2301
|
total: number | undefined;
|
|
2268
2302
|
};
|
|
@@ -2277,6 +2311,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2277
2311
|
data: {
|
|
2278
2312
|
_count: {
|
|
2279
2313
|
time_zone_logs: number;
|
|
2314
|
+
un_locodes: number;
|
|
2280
2315
|
};
|
|
2281
2316
|
} & {
|
|
2282
2317
|
id: number;
|
|
@@ -2288,7 +2323,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2288
2323
|
updated_at: Date | null;
|
|
2289
2324
|
updated_by: string | null;
|
|
2290
2325
|
logic_code: string | null;
|
|
2291
|
-
utc_offset:
|
|
2326
|
+
utc_offset: string | null;
|
|
2292
2327
|
};
|
|
2293
2328
|
};
|
|
2294
2329
|
meta: object;
|
|
@@ -2391,7 +2426,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2391
2426
|
updated_at: Date | null;
|
|
2392
2427
|
updated_by: string | null;
|
|
2393
2428
|
logic_code: string | null;
|
|
2394
|
-
utc_offset:
|
|
2429
|
+
utc_offset: string | null;
|
|
2395
2430
|
} | undefined;
|
|
2396
2431
|
log: {
|
|
2397
2432
|
id: number;
|
|
@@ -2427,7 +2462,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2427
2462
|
updated_at: Date | null;
|
|
2428
2463
|
updated_by: string | null;
|
|
2429
2464
|
logic_code: string | null;
|
|
2430
|
-
utc_offset:
|
|
2465
|
+
utc_offset: string | null;
|
|
2431
2466
|
} | undefined;
|
|
2432
2467
|
log: {
|
|
2433
2468
|
id: number;
|
|
@@ -2461,7 +2496,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2461
2496
|
updated_at: Date | null;
|
|
2462
2497
|
updated_by: string | null;
|
|
2463
2498
|
logic_code: string | null;
|
|
2464
|
-
utc_offset:
|
|
2499
|
+
utc_offset: string | null;
|
|
2465
2500
|
} | undefined)[];
|
|
2466
2501
|
};
|
|
2467
2502
|
meta: object;
|
|
@@ -150590,6 +150625,7 @@ export type Un_locodesAvgAggregateOutputType = {
|
|
|
150590
150625
|
id_country: number | null;
|
|
150591
150626
|
id_state: number | null;
|
|
150592
150627
|
id_city: number | null;
|
|
150628
|
+
id_time_zone: number | null;
|
|
150593
150629
|
latitude: runtime.Decimal | null;
|
|
150594
150630
|
longitude: runtime.Decimal | null;
|
|
150595
150631
|
};
|
|
@@ -150598,6 +150634,7 @@ export type Un_locodesSumAggregateOutputType = {
|
|
|
150598
150634
|
id_country: number | null;
|
|
150599
150635
|
id_state: number | null;
|
|
150600
150636
|
id_city: number | null;
|
|
150637
|
+
id_time_zone: number | null;
|
|
150601
150638
|
latitude: runtime.Decimal | null;
|
|
150602
150639
|
longitude: runtime.Decimal | null;
|
|
150603
150640
|
};
|
|
@@ -150606,6 +150643,7 @@ export type Un_locodesMinAggregateOutputType = {
|
|
|
150606
150643
|
id_country: number | null;
|
|
150607
150644
|
id_state: number | null;
|
|
150608
150645
|
id_city: number | null;
|
|
150646
|
+
id_time_zone: number | null;
|
|
150609
150647
|
logic_code: string | null;
|
|
150610
150648
|
un_code: string | null;
|
|
150611
150649
|
iata_code: string | null;
|
|
@@ -150638,6 +150676,7 @@ export type Un_locodesMaxAggregateOutputType = {
|
|
|
150638
150676
|
id_country: number | null;
|
|
150639
150677
|
id_state: number | null;
|
|
150640
150678
|
id_city: number | null;
|
|
150679
|
+
id_time_zone: number | null;
|
|
150641
150680
|
logic_code: string | null;
|
|
150642
150681
|
un_code: string | null;
|
|
150643
150682
|
iata_code: string | null;
|
|
@@ -150670,6 +150709,7 @@ export type Un_locodesCountAggregateOutputType = {
|
|
|
150670
150709
|
id_country: number;
|
|
150671
150710
|
id_state: number;
|
|
150672
150711
|
id_city: number;
|
|
150712
|
+
id_time_zone: number;
|
|
150673
150713
|
logic_code: number;
|
|
150674
150714
|
un_code: number;
|
|
150675
150715
|
iata_code: number;
|
|
@@ -150703,6 +150743,7 @@ export type Un_locodesAvgAggregateInputType = {
|
|
|
150703
150743
|
id_country?: true;
|
|
150704
150744
|
id_state?: true;
|
|
150705
150745
|
id_city?: true;
|
|
150746
|
+
id_time_zone?: true;
|
|
150706
150747
|
latitude?: true;
|
|
150707
150748
|
longitude?: true;
|
|
150708
150749
|
};
|
|
@@ -150711,6 +150752,7 @@ export type Un_locodesSumAggregateInputType = {
|
|
|
150711
150752
|
id_country?: true;
|
|
150712
150753
|
id_state?: true;
|
|
150713
150754
|
id_city?: true;
|
|
150755
|
+
id_time_zone?: true;
|
|
150714
150756
|
latitude?: true;
|
|
150715
150757
|
longitude?: true;
|
|
150716
150758
|
};
|
|
@@ -150719,6 +150761,7 @@ export type Un_locodesMinAggregateInputType = {
|
|
|
150719
150761
|
id_country?: true;
|
|
150720
150762
|
id_state?: true;
|
|
150721
150763
|
id_city?: true;
|
|
150764
|
+
id_time_zone?: true;
|
|
150722
150765
|
logic_code?: true;
|
|
150723
150766
|
un_code?: true;
|
|
150724
150767
|
iata_code?: true;
|
|
@@ -150751,6 +150794,7 @@ export type Un_locodesMaxAggregateInputType = {
|
|
|
150751
150794
|
id_country?: true;
|
|
150752
150795
|
id_state?: true;
|
|
150753
150796
|
id_city?: true;
|
|
150797
|
+
id_time_zone?: true;
|
|
150754
150798
|
logic_code?: true;
|
|
150755
150799
|
un_code?: true;
|
|
150756
150800
|
iata_code?: true;
|
|
@@ -150783,6 +150827,7 @@ export type Un_locodesCountAggregateInputType = {
|
|
|
150783
150827
|
id_country?: true;
|
|
150784
150828
|
id_state?: true;
|
|
150785
150829
|
id_city?: true;
|
|
150830
|
+
id_time_zone?: true;
|
|
150786
150831
|
logic_code?: true;
|
|
150787
150832
|
un_code?: true;
|
|
150788
150833
|
iata_code?: true;
|
|
@@ -150892,6 +150937,7 @@ export type Un_locodesGroupByOutputType = {
|
|
|
150892
150937
|
id_country: number | null;
|
|
150893
150938
|
id_state: number | null;
|
|
150894
150939
|
id_city: number | null;
|
|
150940
|
+
id_time_zone: number | null;
|
|
150895
150941
|
logic_code: string | null;
|
|
150896
150942
|
un_code: string | null;
|
|
150897
150943
|
iata_code: string | null;
|
|
@@ -150935,6 +150981,7 @@ export type un_locodesWhereInput = {
|
|
|
150935
150981
|
id_country?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150936
150982
|
id_state?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150937
150983
|
id_city?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150984
|
+
id_time_zone?: IntNullableFilter<"un_locodes"> | number | null;
|
|
150938
150985
|
logic_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
150939
150986
|
un_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
150940
150987
|
iata_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
@@ -150964,6 +151011,7 @@ export type un_locodesWhereInput = {
|
|
|
150964
151011
|
country?: XOR<CountriesNullableScalarRelationFilter, countriesWhereInput> | null;
|
|
150965
151012
|
state?: XOR<StatesNullableScalarRelationFilter, statesWhereInput> | null;
|
|
150966
151013
|
city?: XOR<CitiesNullableScalarRelationFilter, citiesWhereInput> | null;
|
|
151014
|
+
time_zone?: XOR<Time_zonesNullableScalarRelationFilter, time_zonesWhereInput> | null;
|
|
150967
151015
|
local_codes?: Local_codesListRelationFilter;
|
|
150968
151016
|
un_locode_logs?: Un_locode_logsListRelationFilter;
|
|
150969
151017
|
branches?: BranchesListRelationFilter;
|
|
@@ -150984,6 +151032,7 @@ export type un_locodesOrderByWithRelationInput = {
|
|
|
150984
151032
|
id_country?: SortOrderInput | SortOrder$1;
|
|
150985
151033
|
id_state?: SortOrderInput | SortOrder$1;
|
|
150986
151034
|
id_city?: SortOrderInput | SortOrder$1;
|
|
151035
|
+
id_time_zone?: SortOrderInput | SortOrder$1;
|
|
150987
151036
|
logic_code?: SortOrderInput | SortOrder$1;
|
|
150988
151037
|
un_code?: SortOrderInput | SortOrder$1;
|
|
150989
151038
|
iata_code?: SortOrderInput | SortOrder$1;
|
|
@@ -151013,6 +151062,7 @@ export type un_locodesOrderByWithRelationInput = {
|
|
|
151013
151062
|
country?: countriesOrderByWithRelationInput;
|
|
151014
151063
|
state?: statesOrderByWithRelationInput;
|
|
151015
151064
|
city?: citiesOrderByWithRelationInput;
|
|
151065
|
+
time_zone?: time_zonesOrderByWithRelationInput;
|
|
151016
151066
|
local_codes?: local_codesOrderByRelationAggregateInput;
|
|
151017
151067
|
un_locode_logs?: un_locode_logsOrderByRelationAggregateInput;
|
|
151018
151068
|
branches?: branchesOrderByRelationAggregateInput;
|
|
@@ -151037,6 +151087,7 @@ export type un_locodesWhereUniqueInput = AtLeast<{
|
|
|
151037
151087
|
id_country?: IntNullableFilter<"un_locodes"> | number | null;
|
|
151038
151088
|
id_state?: IntNullableFilter<"un_locodes"> | number | null;
|
|
151039
151089
|
id_city?: IntNullableFilter<"un_locodes"> | number | null;
|
|
151090
|
+
id_time_zone?: IntNullableFilter<"un_locodes"> | number | null;
|
|
151040
151091
|
un_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
151041
151092
|
iata_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
151042
151093
|
iata_region_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
@@ -151065,6 +151116,7 @@ export type un_locodesWhereUniqueInput = AtLeast<{
|
|
|
151065
151116
|
country?: XOR<CountriesNullableScalarRelationFilter, countriesWhereInput> | null;
|
|
151066
151117
|
state?: XOR<StatesNullableScalarRelationFilter, statesWhereInput> | null;
|
|
151067
151118
|
city?: XOR<CitiesNullableScalarRelationFilter, citiesWhereInput> | null;
|
|
151119
|
+
time_zone?: XOR<Time_zonesNullableScalarRelationFilter, time_zonesWhereInput> | null;
|
|
151068
151120
|
local_codes?: Local_codesListRelationFilter;
|
|
151069
151121
|
un_locode_logs?: Un_locode_logsListRelationFilter;
|
|
151070
151122
|
branches?: BranchesListRelationFilter;
|
|
@@ -151085,6 +151137,7 @@ export type un_locodesOrderByWithAggregationInput = {
|
|
|
151085
151137
|
id_country?: SortOrderInput | SortOrder$1;
|
|
151086
151138
|
id_state?: SortOrderInput | SortOrder$1;
|
|
151087
151139
|
id_city?: SortOrderInput | SortOrder$1;
|
|
151140
|
+
id_time_zone?: SortOrderInput | SortOrder$1;
|
|
151088
151141
|
logic_code?: SortOrderInput | SortOrder$1;
|
|
151089
151142
|
un_code?: SortOrderInput | SortOrder$1;
|
|
151090
151143
|
iata_code?: SortOrderInput | SortOrder$1;
|
|
@@ -151125,6 +151178,7 @@ export type un_locodesScalarWhereWithAggregatesInput = {
|
|
|
151125
151178
|
id_country?: IntNullableWithAggregatesFilter<"un_locodes"> | number | null;
|
|
151126
151179
|
id_state?: IntNullableWithAggregatesFilter<"un_locodes"> | number | null;
|
|
151127
151180
|
id_city?: IntNullableWithAggregatesFilter<"un_locodes"> | number | null;
|
|
151181
|
+
id_time_zone?: IntNullableWithAggregatesFilter<"un_locodes"> | number | null;
|
|
151128
151182
|
logic_code?: StringNullableWithAggregatesFilter<"un_locodes"> | string | null;
|
|
151129
151183
|
un_code?: StringNullableWithAggregatesFilter<"un_locodes"> | string | null;
|
|
151130
151184
|
iata_code?: StringNullableWithAggregatesFilter<"un_locodes"> | string | null;
|
|
@@ -151182,6 +151236,7 @@ export type un_locodesCreateInput = {
|
|
|
151182
151236
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
151183
151237
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
151184
151238
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
151239
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
151185
151240
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
151186
151241
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
151187
151242
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -151202,6 +151257,7 @@ export type un_locodesUncheckedCreateInput = {
|
|
|
151202
151257
|
id_country?: number | null;
|
|
151203
151258
|
id_state?: number | null;
|
|
151204
151259
|
id_city?: number | null;
|
|
151260
|
+
id_time_zone?: number | null;
|
|
151205
151261
|
logic_code?: string | null;
|
|
151206
151262
|
un_code?: string | null;
|
|
151207
151263
|
iata_code?: string | null;
|
|
@@ -151273,6 +151329,7 @@ export type un_locodesUpdateInput = {
|
|
|
151273
151329
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
151274
151330
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
151275
151331
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
151332
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
151276
151333
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
151277
151334
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
151278
151335
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -151293,6 +151350,7 @@ export type un_locodesUncheckedUpdateInput = {
|
|
|
151293
151350
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151294
151351
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151295
151352
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151353
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151296
151354
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151297
151355
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151298
151356
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -151339,6 +151397,7 @@ export type un_locodesCreateManyInput = {
|
|
|
151339
151397
|
id_country?: number | null;
|
|
151340
151398
|
id_state?: number | null;
|
|
151341
151399
|
id_city?: number | null;
|
|
151400
|
+
id_time_zone?: number | null;
|
|
151342
151401
|
logic_code?: string | null;
|
|
151343
151402
|
un_code?: string | null;
|
|
151344
151403
|
iata_code?: string | null;
|
|
@@ -151399,6 +151458,7 @@ export type un_locodesUncheckedUpdateManyInput = {
|
|
|
151399
151458
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151400
151459
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151401
151460
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151461
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
151402
151462
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151403
151463
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
151404
151464
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -151435,6 +151495,7 @@ export type un_locodesCountOrderByAggregateInput = {
|
|
|
151435
151495
|
id_country?: SortOrder$1;
|
|
151436
151496
|
id_state?: SortOrder$1;
|
|
151437
151497
|
id_city?: SortOrder$1;
|
|
151498
|
+
id_time_zone?: SortOrder$1;
|
|
151438
151499
|
logic_code?: SortOrder$1;
|
|
151439
151500
|
un_code?: SortOrder$1;
|
|
151440
151501
|
iata_code?: SortOrder$1;
|
|
@@ -151467,6 +151528,7 @@ export type un_locodesAvgOrderByAggregateInput = {
|
|
|
151467
151528
|
id_country?: SortOrder$1;
|
|
151468
151529
|
id_state?: SortOrder$1;
|
|
151469
151530
|
id_city?: SortOrder$1;
|
|
151531
|
+
id_time_zone?: SortOrder$1;
|
|
151470
151532
|
latitude?: SortOrder$1;
|
|
151471
151533
|
longitude?: SortOrder$1;
|
|
151472
151534
|
};
|
|
@@ -151475,6 +151537,7 @@ export type un_locodesMaxOrderByAggregateInput = {
|
|
|
151475
151537
|
id_country?: SortOrder$1;
|
|
151476
151538
|
id_state?: SortOrder$1;
|
|
151477
151539
|
id_city?: SortOrder$1;
|
|
151540
|
+
id_time_zone?: SortOrder$1;
|
|
151478
151541
|
logic_code?: SortOrder$1;
|
|
151479
151542
|
un_code?: SortOrder$1;
|
|
151480
151543
|
iata_code?: SortOrder$1;
|
|
@@ -151507,6 +151570,7 @@ export type un_locodesMinOrderByAggregateInput = {
|
|
|
151507
151570
|
id_country?: SortOrder$1;
|
|
151508
151571
|
id_state?: SortOrder$1;
|
|
151509
151572
|
id_city?: SortOrder$1;
|
|
151573
|
+
id_time_zone?: SortOrder$1;
|
|
151510
151574
|
logic_code?: SortOrder$1;
|
|
151511
151575
|
un_code?: SortOrder$1;
|
|
151512
151576
|
iata_code?: SortOrder$1;
|
|
@@ -151539,6 +151603,7 @@ export type un_locodesSumOrderByAggregateInput = {
|
|
|
151539
151603
|
id_country?: SortOrder$1;
|
|
151540
151604
|
id_state?: SortOrder$1;
|
|
151541
151605
|
id_city?: SortOrder$1;
|
|
151606
|
+
id_time_zone?: SortOrder$1;
|
|
151542
151607
|
latitude?: SortOrder$1;
|
|
151543
151608
|
longitude?: SortOrder$1;
|
|
151544
151609
|
};
|
|
@@ -151782,6 +151847,44 @@ export type un_locodesUncheckedUpdateManyWithoutCityNestedInput = {
|
|
|
151782
151847
|
updateMany?: un_locodesUpdateManyWithWhereWithoutCityInput | un_locodesUpdateManyWithWhereWithoutCityInput[];
|
|
151783
151848
|
deleteMany?: un_locodesScalarWhereInput | un_locodesScalarWhereInput[];
|
|
151784
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
|
+
};
|
|
151785
151888
|
export type un_locodesCreateNestedOneWithoutUn_locode_logsInput = {
|
|
151786
151889
|
create?: XOR<un_locodesCreateWithoutUn_locode_logsInput, un_locodesUncheckedCreateWithoutUn_locode_logsInput>;
|
|
151787
151890
|
connectOrCreate?: un_locodesCreateOrConnectWithoutUn_locode_logsInput;
|
|
@@ -151910,6 +152013,7 @@ export type un_locodesCreateWithoutForwarding_booking_originsInput = {
|
|
|
151910
152013
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
151911
152014
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
151912
152015
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152016
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
151913
152017
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
151914
152018
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
151915
152019
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -151929,6 +152033,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_booking_originsInput = {
|
|
|
151929
152033
|
id_country?: number | null;
|
|
151930
152034
|
id_state?: number | null;
|
|
151931
152035
|
id_city?: number | null;
|
|
152036
|
+
id_time_zone?: number | null;
|
|
151932
152037
|
logic_code?: string | null;
|
|
151933
152038
|
un_code?: string | null;
|
|
151934
152039
|
iata_code?: string | null;
|
|
@@ -152003,6 +152108,7 @@ export type un_locodesCreateWithoutForwarding_booking_destinationsInput = {
|
|
|
152003
152108
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152004
152109
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152005
152110
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152111
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152006
152112
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152007
152113
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152008
152114
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152022,6 +152128,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_booking_destinationsInput
|
|
|
152022
152128
|
id_country?: number | null;
|
|
152023
152129
|
id_state?: number | null;
|
|
152024
152130
|
id_city?: number | null;
|
|
152131
|
+
id_time_zone?: number | null;
|
|
152025
152132
|
logic_code?: string | null;
|
|
152026
152133
|
un_code?: string | null;
|
|
152027
152134
|
iata_code?: string | null;
|
|
@@ -152105,6 +152212,7 @@ export type un_locodesUpdateWithoutForwarding_booking_originsInput = {
|
|
|
152105
152212
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152106
152213
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152107
152214
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152215
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152108
152216
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152109
152217
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152110
152218
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152124,6 +152232,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_booking_originsInput = {
|
|
|
152124
152232
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152125
152233
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152126
152234
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152235
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152127
152236
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152128
152237
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152129
152238
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152203,6 +152312,7 @@ export type un_locodesUpdateWithoutForwarding_booking_destinationsInput = {
|
|
|
152203
152312
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152204
152313
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152205
152314
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152315
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152206
152316
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152207
152317
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152208
152318
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152222,6 +152332,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_booking_destinationsInput
|
|
|
152222
152332
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152223
152333
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152224
152334
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152335
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152225
152336
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152226
152337
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152227
152338
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152292,6 +152403,7 @@ export type un_locodesCreateWithoutForwarding_console_first_loadsInput = {
|
|
|
152292
152403
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152293
152404
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152294
152405
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152406
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152295
152407
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152296
152408
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152297
152409
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152311,6 +152423,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_console_first_loadsInput
|
|
|
152311
152423
|
id_country?: number | null;
|
|
152312
152424
|
id_state?: number | null;
|
|
152313
152425
|
id_city?: number | null;
|
|
152426
|
+
id_time_zone?: number | null;
|
|
152314
152427
|
logic_code?: string | null;
|
|
152315
152428
|
un_code?: string | null;
|
|
152316
152429
|
iata_code?: string | null;
|
|
@@ -152385,6 +152498,7 @@ export type un_locodesCreateWithoutForwarding_console_last_dischargesInput = {
|
|
|
152385
152498
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152386
152499
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152387
152500
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152501
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152388
152502
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152389
152503
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152390
152504
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152404,6 +152518,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_console_last_dischargesIn
|
|
|
152404
152518
|
id_country?: number | null;
|
|
152405
152519
|
id_state?: number | null;
|
|
152406
152520
|
id_city?: number | null;
|
|
152521
|
+
id_time_zone?: number | null;
|
|
152407
152522
|
logic_code?: string | null;
|
|
152408
152523
|
un_code?: string | null;
|
|
152409
152524
|
iata_code?: string | null;
|
|
@@ -152487,6 +152602,7 @@ export type un_locodesUpdateWithoutForwarding_console_first_loadsInput = {
|
|
|
152487
152602
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152488
152603
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152489
152604
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152605
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152490
152606
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152491
152607
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152492
152608
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152506,6 +152622,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_console_first_loadsInput
|
|
|
152506
152622
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152507
152623
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152508
152624
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152625
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152509
152626
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152510
152627
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152511
152628
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152585,6 +152702,7 @@ export type un_locodesUpdateWithoutForwarding_console_last_dischargesInput = {
|
|
|
152585
152702
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152586
152703
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152587
152704
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152705
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152588
152706
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152589
152707
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152590
152708
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152604,6 +152722,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_console_last_dischargesIn
|
|
|
152604
152722
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152605
152723
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152606
152724
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152725
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152607
152726
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152608
152727
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152609
152728
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152674,6 +152793,7 @@ export type un_locodesCreateWithoutForwarding_console_routing_loadsInput = {
|
|
|
152674
152793
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152675
152794
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152676
152795
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152796
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152677
152797
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152678
152798
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152679
152799
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152693,6 +152813,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_console_routing_loadsInpu
|
|
|
152693
152813
|
id_country?: number | null;
|
|
152694
152814
|
id_state?: number | null;
|
|
152695
152815
|
id_city?: number | null;
|
|
152816
|
+
id_time_zone?: number | null;
|
|
152696
152817
|
logic_code?: string | null;
|
|
152697
152818
|
un_code?: string | null;
|
|
152698
152819
|
iata_code?: string | null;
|
|
@@ -152767,6 +152888,7 @@ export type un_locodesCreateWithoutForwarding_console_routing_dischargesInput =
|
|
|
152767
152888
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
152768
152889
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
152769
152890
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
152891
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
152770
152892
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
152771
152893
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
152772
152894
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -152786,6 +152908,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_console_routing_discharge
|
|
|
152786
152908
|
id_country?: number | null;
|
|
152787
152909
|
id_state?: number | null;
|
|
152788
152910
|
id_city?: number | null;
|
|
152911
|
+
id_time_zone?: number | null;
|
|
152789
152912
|
logic_code?: string | null;
|
|
152790
152913
|
un_code?: string | null;
|
|
152791
152914
|
iata_code?: string | null;
|
|
@@ -152869,6 +152992,7 @@ export type un_locodesUpdateWithoutForwarding_console_routing_loadsInput = {
|
|
|
152869
152992
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152870
152993
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152871
152994
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
152995
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152872
152996
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152873
152997
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152874
152998
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152888,6 +153012,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_console_routing_loadsInpu
|
|
|
152888
153012
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152889
153013
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152890
153014
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153015
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152891
153016
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152892
153017
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152893
153018
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -152967,6 +153092,7 @@ export type un_locodesUpdateWithoutForwarding_console_routing_dischargesInput =
|
|
|
152967
153092
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
152968
153093
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
152969
153094
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
153095
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
152970
153096
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
152971
153097
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
152972
153098
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -152986,6 +153112,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_console_routing_discharge
|
|
|
152986
153112
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152987
153113
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152988
153114
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153115
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
152989
153116
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152990
153117
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
152991
153118
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -153056,6 +153183,7 @@ export type un_locodesCreateWithoutLocal_codesInput = {
|
|
|
153056
153183
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153057
153184
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153058
153185
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153186
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153059
153187
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153060
153188
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
153061
153189
|
companies?: companiesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153075,6 +153203,7 @@ export type un_locodesUncheckedCreateWithoutLocal_codesInput = {
|
|
|
153075
153203
|
id_country?: number | null;
|
|
153076
153204
|
id_state?: number | null;
|
|
153077
153205
|
id_city?: number | null;
|
|
153206
|
+
id_time_zone?: number | null;
|
|
153078
153207
|
logic_code?: string | null;
|
|
153079
153208
|
un_code?: string | null;
|
|
153080
153209
|
iata_code?: string | null;
|
|
@@ -153140,6 +153269,7 @@ export type un_locodesScalarWhereInput = {
|
|
|
153140
153269
|
id_country?: IntNullableFilter<"un_locodes"> | number | null;
|
|
153141
153270
|
id_state?: IntNullableFilter<"un_locodes"> | number | null;
|
|
153142
153271
|
id_city?: IntNullableFilter<"un_locodes"> | number | null;
|
|
153272
|
+
id_time_zone?: IntNullableFilter<"un_locodes"> | number | null;
|
|
153143
153273
|
logic_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
153144
153274
|
un_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
153145
153275
|
iata_code?: StringNullableFilter<"un_locodes"> | string | null;
|
|
@@ -153196,6 +153326,7 @@ export type un_locodesCreateWithoutCountryInput = {
|
|
|
153196
153326
|
updated_by?: string | null;
|
|
153197
153327
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153198
153328
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153329
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153199
153330
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153200
153331
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153201
153332
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153215,6 +153346,7 @@ export type un_locodesUncheckedCreateWithoutCountryInput = {
|
|
|
153215
153346
|
id?: number;
|
|
153216
153347
|
id_state?: number | null;
|
|
153217
153348
|
id_city?: number | null;
|
|
153349
|
+
id_time_zone?: number | null;
|
|
153218
153350
|
logic_code?: string | null;
|
|
153219
153351
|
un_code?: string | null;
|
|
153220
153352
|
iata_code?: string | null;
|
|
@@ -153306,6 +153438,7 @@ export type un_locodesCreateWithoutStateInput = {
|
|
|
153306
153438
|
updated_by?: string | null;
|
|
153307
153439
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153308
153440
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153441
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153309
153442
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153310
153443
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153311
153444
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153325,6 +153458,7 @@ export type un_locodesUncheckedCreateWithoutStateInput = {
|
|
|
153325
153458
|
id?: number;
|
|
153326
153459
|
id_country?: number | null;
|
|
153327
153460
|
id_city?: number | null;
|
|
153461
|
+
id_time_zone?: number | null;
|
|
153328
153462
|
logic_code?: string | null;
|
|
153329
153463
|
un_code?: string | null;
|
|
153330
153464
|
iata_code?: string | null;
|
|
@@ -153416,6 +153550,7 @@ export type un_locodesCreateWithoutCityInput = {
|
|
|
153416
153550
|
updated_by?: string | null;
|
|
153417
153551
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153418
153552
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153553
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153419
153554
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153420
153555
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153421
153556
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153435,6 +153570,7 @@ export type un_locodesUncheckedCreateWithoutCityInput = {
|
|
|
153435
153570
|
id?: number;
|
|
153436
153571
|
id_country?: number | null;
|
|
153437
153572
|
id_state?: number | null;
|
|
153573
|
+
id_time_zone?: number | null;
|
|
153438
153574
|
logic_code?: string | null;
|
|
153439
153575
|
un_code?: string | null;
|
|
153440
153576
|
iata_code?: string | null;
|
|
@@ -153497,6 +153633,118 @@ export type un_locodesUpdateManyWithWhereWithoutCityInput = {
|
|
|
153497
153633
|
where: un_locodesScalarWhereInput;
|
|
153498
153634
|
data: XOR<un_locodesUpdateManyMutationInput, un_locodesUncheckedUpdateManyWithoutCityInput>;
|
|
153499
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
|
+
};
|
|
153500
153748
|
export type un_locodesCreateWithoutUn_locode_logsInput = {
|
|
153501
153749
|
logic_code?: string | null;
|
|
153502
153750
|
un_code?: string | null;
|
|
@@ -153527,6 +153775,7 @@ export type un_locodesCreateWithoutUn_locode_logsInput = {
|
|
|
153527
153775
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153528
153776
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153529
153777
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153778
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153530
153779
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153531
153780
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
153532
153781
|
companies?: companiesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153546,6 +153795,7 @@ export type un_locodesUncheckedCreateWithoutUn_locode_logsInput = {
|
|
|
153546
153795
|
id_country?: number | null;
|
|
153547
153796
|
id_state?: number | null;
|
|
153548
153797
|
id_city?: number | null;
|
|
153798
|
+
id_time_zone?: number | null;
|
|
153549
153799
|
logic_code?: string | null;
|
|
153550
153800
|
un_code?: string | null;
|
|
153551
153801
|
iata_code?: string | null;
|
|
@@ -153629,6 +153879,7 @@ export type un_locodesUpdateWithoutUn_locode_logsInput = {
|
|
|
153629
153879
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
153630
153880
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
153631
153881
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
153882
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
153632
153883
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
153633
153884
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
153634
153885
|
companies?: companiesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -153648,6 +153899,7 @@ export type un_locodesUncheckedUpdateWithoutUn_locode_logsInput = {
|
|
|
153648
153899
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153649
153900
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153650
153901
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153902
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153651
153903
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153652
153904
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153653
153905
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -153718,6 +153970,7 @@ export type un_locodesCreateWithoutAirlinesInput = {
|
|
|
153718
153970
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153719
153971
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153720
153972
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
153973
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153721
153974
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153722
153975
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153723
153976
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153737,6 +153990,7 @@ export type un_locodesUncheckedCreateWithoutAirlinesInput = {
|
|
|
153737
153990
|
id_country?: number | null;
|
|
153738
153991
|
id_state?: number | null;
|
|
153739
153992
|
id_city?: number | null;
|
|
153993
|
+
id_time_zone?: number | null;
|
|
153740
153994
|
logic_code?: string | null;
|
|
153741
153995
|
un_code?: string | null;
|
|
153742
153996
|
iata_code?: string | null;
|
|
@@ -153820,6 +154074,7 @@ export type un_locodesUpdateWithoutAirlinesInput = {
|
|
|
153820
154074
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
153821
154075
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
153822
154076
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154077
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
153823
154078
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
153824
154079
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
153825
154080
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -153839,6 +154094,7 @@ export type un_locodesUncheckedUpdateWithoutAirlinesInput = {
|
|
|
153839
154094
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153840
154095
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153841
154096
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154097
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
153842
154098
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153843
154099
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
153844
154100
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -153909,6 +154165,7 @@ export type un_locodesCreateWithoutShipping_linesInput = {
|
|
|
153909
154165
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
153910
154166
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
153911
154167
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154168
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
153912
154169
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
153913
154170
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
153914
154171
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -153928,6 +154185,7 @@ export type un_locodesUncheckedCreateWithoutShipping_linesInput = {
|
|
|
153928
154185
|
id_country?: number | null;
|
|
153929
154186
|
id_state?: number | null;
|
|
153930
154187
|
id_city?: number | null;
|
|
154188
|
+
id_time_zone?: number | null;
|
|
153931
154189
|
logic_code?: string | null;
|
|
153932
154190
|
un_code?: string | null;
|
|
153933
154191
|
iata_code?: string | null;
|
|
@@ -154011,6 +154269,7 @@ export type un_locodesUpdateWithoutShipping_linesInput = {
|
|
|
154011
154269
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154012
154270
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154013
154271
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154272
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154014
154273
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154015
154274
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154016
154275
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154030,6 +154289,7 @@ export type un_locodesUncheckedUpdateWithoutShipping_linesInput = {
|
|
|
154030
154289
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154031
154290
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154032
154291
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154292
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154033
154293
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154034
154294
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154035
154295
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154100,6 +154360,7 @@ export type un_locodesCreateWithoutForwarding_shipment_originsInput = {
|
|
|
154100
154360
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
154101
154361
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
154102
154362
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154363
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
154103
154364
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
154104
154365
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
154105
154366
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -154119,6 +154380,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_shipment_originsInput = {
|
|
|
154119
154380
|
id_country?: number | null;
|
|
154120
154381
|
id_state?: number | null;
|
|
154121
154382
|
id_city?: number | null;
|
|
154383
|
+
id_time_zone?: number | null;
|
|
154122
154384
|
logic_code?: string | null;
|
|
154123
154385
|
un_code?: string | null;
|
|
154124
154386
|
iata_code?: string | null;
|
|
@@ -154193,6 +154455,7 @@ export type un_locodesCreateWithoutForwarding_shipment_destinationsInput = {
|
|
|
154193
154455
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
154194
154456
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
154195
154457
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154458
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
154196
154459
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
154197
154460
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
154198
154461
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -154212,6 +154475,7 @@ export type un_locodesUncheckedCreateWithoutForwarding_shipment_destinationsInpu
|
|
|
154212
154475
|
id_country?: number | null;
|
|
154213
154476
|
id_state?: number | null;
|
|
154214
154477
|
id_city?: number | null;
|
|
154478
|
+
id_time_zone?: number | null;
|
|
154215
154479
|
logic_code?: string | null;
|
|
154216
154480
|
un_code?: string | null;
|
|
154217
154481
|
iata_code?: string | null;
|
|
@@ -154295,6 +154559,7 @@ export type un_locodesUpdateWithoutForwarding_shipment_originsInput = {
|
|
|
154295
154559
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154296
154560
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154297
154561
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154562
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154298
154563
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154299
154564
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154300
154565
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154314,6 +154579,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_shipment_originsInput = {
|
|
|
154314
154579
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154315
154580
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154316
154581
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154582
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154317
154583
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154318
154584
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154319
154585
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154393,6 +154659,7 @@ export type un_locodesUpdateWithoutForwarding_shipment_destinationsInput = {
|
|
|
154393
154659
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154394
154660
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154395
154661
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154662
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154396
154663
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154397
154664
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154398
154665
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154412,6 +154679,7 @@ export type un_locodesUncheckedUpdateWithoutForwarding_shipment_destinationsInpu
|
|
|
154412
154679
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154413
154680
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154414
154681
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154682
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154415
154683
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154416
154684
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154417
154685
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154482,6 +154750,7 @@ export type un_locodesCreateWithoutCompaniesInput = {
|
|
|
154482
154750
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
154483
154751
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
154484
154752
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154753
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
154485
154754
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
154486
154755
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
154487
154756
|
branches?: branchesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -154501,6 +154770,7 @@ export type un_locodesUncheckedCreateWithoutCompaniesInput = {
|
|
|
154501
154770
|
id_country?: number | null;
|
|
154502
154771
|
id_state?: number | null;
|
|
154503
154772
|
id_city?: number | null;
|
|
154773
|
+
id_time_zone?: number | null;
|
|
154504
154774
|
logic_code?: string | null;
|
|
154505
154775
|
un_code?: string | null;
|
|
154506
154776
|
iata_code?: string | null;
|
|
@@ -154584,6 +154854,7 @@ export type un_locodesUpdateWithoutCompaniesInput = {
|
|
|
154584
154854
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154585
154855
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154586
154856
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
154857
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154587
154858
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154588
154859
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154589
154860
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154603,6 +154874,7 @@ export type un_locodesUncheckedUpdateWithoutCompaniesInput = {
|
|
|
154603
154874
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154604
154875
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154605
154876
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154877
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154606
154878
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154607
154879
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154608
154880
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154673,6 +154945,7 @@ export type un_locodesCreateWithoutBranchesInput = {
|
|
|
154673
154945
|
country?: countriesCreateNestedOneWithoutUn_locodesInput;
|
|
154674
154946
|
state?: statesCreateNestedOneWithoutUn_locodesInput;
|
|
154675
154947
|
city?: citiesCreateNestedOneWithoutUn_locodesInput;
|
|
154948
|
+
time_zone?: time_zonesCreateNestedOneWithoutUn_locodesInput;
|
|
154676
154949
|
local_codes?: local_codesCreateNestedManyWithoutUn_locodesInput;
|
|
154677
154950
|
un_locode_logs?: un_locode_logsCreateNestedManyWithoutUn_locodeInput;
|
|
154678
154951
|
companies?: companiesCreateNestedManyWithoutUn_locodeInput;
|
|
@@ -154692,6 +154965,7 @@ export type un_locodesUncheckedCreateWithoutBranchesInput = {
|
|
|
154692
154965
|
id_country?: number | null;
|
|
154693
154966
|
id_state?: number | null;
|
|
154694
154967
|
id_city?: number | null;
|
|
154968
|
+
id_time_zone?: number | null;
|
|
154695
154969
|
logic_code?: string | null;
|
|
154696
154970
|
un_code?: string | null;
|
|
154697
154971
|
iata_code?: string | null;
|
|
@@ -154775,6 +155049,7 @@ export type un_locodesUpdateWithoutBranchesInput = {
|
|
|
154775
155049
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154776
155050
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154777
155051
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155052
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154778
155053
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
154779
155054
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154780
155055
|
companies?: companiesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154794,6 +155069,7 @@ export type un_locodesUncheckedUpdateWithoutBranchesInput = {
|
|
|
154794
155069
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154795
155070
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154796
155071
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155072
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154797
155073
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154798
155074
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154799
155075
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154864,6 +155140,7 @@ export type un_locodesUpdateWithoutLocal_codesInput = {
|
|
|
154864
155140
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
154865
155141
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
154866
155142
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155143
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
154867
155144
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
154868
155145
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
154869
155146
|
companies?: companiesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -154883,6 +155160,7 @@ export type un_locodesUncheckedUpdateWithoutLocal_codesInput = {
|
|
|
154883
155160
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154884
155161
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154885
155162
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155163
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154886
155164
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154887
155165
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154888
155166
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154928,6 +155206,7 @@ export type un_locodesUncheckedUpdateManyWithoutLocal_codesInput = {
|
|
|
154928
155206
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154929
155207
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154930
155208
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155209
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
154931
155210
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154932
155211
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
154933
155212
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -154959,6 +155238,7 @@ export type un_locodesCreateManyCountryInput = {
|
|
|
154959
155238
|
id?: number;
|
|
154960
155239
|
id_state?: number | null;
|
|
154961
155240
|
id_city?: number | null;
|
|
155241
|
+
id_time_zone?: number | null;
|
|
154962
155242
|
logic_code?: string | null;
|
|
154963
155243
|
un_code?: string | null;
|
|
154964
155244
|
iata_code?: string | null;
|
|
@@ -155015,6 +155295,7 @@ export type un_locodesUpdateWithoutCountryInput = {
|
|
|
155015
155295
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155016
155296
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
155017
155297
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155298
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
155018
155299
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
155019
155300
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
155020
155301
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -155034,6 +155315,7 @@ export type un_locodesUncheckedUpdateWithoutCountryInput = {
|
|
|
155034
155315
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155035
155316
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155036
155317
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155318
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155037
155319
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155038
155320
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155039
155321
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155079,6 +155361,7 @@ export type un_locodesUncheckedUpdateManyWithoutCountryInput = {
|
|
|
155079
155361
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155080
155362
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155081
155363
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155364
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155082
155365
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155083
155366
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155084
155367
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155110,6 +155393,7 @@ export type un_locodesCreateManyStateInput = {
|
|
|
155110
155393
|
id?: number;
|
|
155111
155394
|
id_country?: number | null;
|
|
155112
155395
|
id_city?: number | null;
|
|
155396
|
+
id_time_zone?: number | null;
|
|
155113
155397
|
logic_code?: string | null;
|
|
155114
155398
|
un_code?: string | null;
|
|
155115
155399
|
iata_code?: string | null;
|
|
@@ -155166,6 +155450,7 @@ export type un_locodesUpdateWithoutStateInput = {
|
|
|
155166
155450
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155167
155451
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
155168
155452
|
city?: citiesUpdateOneWithoutUn_locodesNestedInput;
|
|
155453
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
155169
155454
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
155170
155455
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
155171
155456
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -155185,6 +155470,7 @@ export type un_locodesUncheckedUpdateWithoutStateInput = {
|
|
|
155185
155470
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155186
155471
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155187
155472
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155473
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155188
155474
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155189
155475
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155190
155476
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155230,6 +155516,7 @@ export type un_locodesUncheckedUpdateManyWithoutStateInput = {
|
|
|
155230
155516
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155231
155517
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155232
155518
|
id_city?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155519
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155233
155520
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155234
155521
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155235
155522
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155261,6 +155548,7 @@ export type un_locodesCreateManyCityInput = {
|
|
|
155261
155548
|
id?: number;
|
|
155262
155549
|
id_country?: number | null;
|
|
155263
155550
|
id_state?: number | null;
|
|
155551
|
+
id_time_zone?: number | null;
|
|
155264
155552
|
logic_code?: string | null;
|
|
155265
155553
|
un_code?: string | null;
|
|
155266
155554
|
iata_code?: string | null;
|
|
@@ -155317,6 +155605,7 @@ export type un_locodesUpdateWithoutCityInput = {
|
|
|
155317
155605
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155318
155606
|
country?: countriesUpdateOneWithoutUn_locodesNestedInput;
|
|
155319
155607
|
state?: statesUpdateOneWithoutUn_locodesNestedInput;
|
|
155608
|
+
time_zone?: time_zonesUpdateOneWithoutUn_locodesNestedInput;
|
|
155320
155609
|
local_codes?: local_codesUpdateManyWithoutUn_locodesNestedInput;
|
|
155321
155610
|
un_locode_logs?: un_locode_logsUpdateManyWithoutUn_locodeNestedInput;
|
|
155322
155611
|
branches?: branchesUpdateManyWithoutUn_locodeNestedInput;
|
|
@@ -155336,6 +155625,7 @@ export type un_locodesUncheckedUpdateWithoutCityInput = {
|
|
|
155336
155625
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155337
155626
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155338
155627
|
id_state?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155628
|
+
id_time_zone?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155339
155629
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155340
155630
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155341
155631
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155381,6 +155671,162 @@ export type un_locodesUncheckedUpdateManyWithoutCityInput = {
|
|
|
155381
155671
|
id?: IntFieldUpdateOperationsInput | number;
|
|
155382
155672
|
id_country?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
155383
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;
|
|
155384
155830
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155385
155831
|
un_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
155386
155832
|
iata_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -155522,6 +155968,7 @@ export type un_locodesSelect<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
155522
155968
|
id_country?: boolean;
|
|
155523
155969
|
id_state?: boolean;
|
|
155524
155970
|
id_city?: boolean;
|
|
155971
|
+
id_time_zone?: boolean;
|
|
155525
155972
|
logic_code?: boolean;
|
|
155526
155973
|
un_code?: boolean;
|
|
155527
155974
|
iata_code?: boolean;
|
|
@@ -155551,6 +155998,7 @@ export type un_locodesSelect<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
155551
155998
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155552
155999
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155553
156000
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156001
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155554
156002
|
local_codes?: boolean | un_locodes$local_codesArgs<ExtArgs>;
|
|
155555
156003
|
un_locode_logs?: boolean | un_locodes$un_locode_logsArgs<ExtArgs>;
|
|
155556
156004
|
branches?: boolean | un_locodes$branchesArgs<ExtArgs>;
|
|
@@ -155572,6 +156020,7 @@ export type un_locodesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
155572
156020
|
id_country?: boolean;
|
|
155573
156021
|
id_state?: boolean;
|
|
155574
156022
|
id_city?: boolean;
|
|
156023
|
+
id_time_zone?: boolean;
|
|
155575
156024
|
logic_code?: boolean;
|
|
155576
156025
|
un_code?: boolean;
|
|
155577
156026
|
iata_code?: boolean;
|
|
@@ -155601,12 +156050,14 @@ export type un_locodesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
155601
156050
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155602
156051
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155603
156052
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156053
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155604
156054
|
}, ExtArgs["result"]["un_locodes"]>;
|
|
155605
156055
|
export type un_locodesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
155606
156056
|
id?: boolean;
|
|
155607
156057
|
id_country?: boolean;
|
|
155608
156058
|
id_state?: boolean;
|
|
155609
156059
|
id_city?: boolean;
|
|
156060
|
+
id_time_zone?: boolean;
|
|
155610
156061
|
logic_code?: boolean;
|
|
155611
156062
|
un_code?: boolean;
|
|
155612
156063
|
iata_code?: boolean;
|
|
@@ -155636,12 +156087,14 @@ export type un_locodesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
155636
156087
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155637
156088
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155638
156089
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156090
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155639
156091
|
}, ExtArgs["result"]["un_locodes"]>;
|
|
155640
|
-
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"]>;
|
|
155641
156093
|
export type un_locodesInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
155642
156094
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155643
156095
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155644
156096
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156097
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155645
156098
|
local_codes?: boolean | un_locodes$local_codesArgs<ExtArgs>;
|
|
155646
156099
|
un_locode_logs?: boolean | un_locodes$un_locode_logsArgs<ExtArgs>;
|
|
155647
156100
|
branches?: boolean | un_locodes$branchesArgs<ExtArgs>;
|
|
@@ -155662,11 +156115,13 @@ export type un_locodesIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.E
|
|
|
155662
156115
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155663
156116
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155664
156117
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156118
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155665
156119
|
};
|
|
155666
156120
|
export type un_locodesIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
155667
156121
|
country?: boolean | un_locodes$countryArgs<ExtArgs>;
|
|
155668
156122
|
state?: boolean | un_locodes$stateArgs<ExtArgs>;
|
|
155669
156123
|
city?: boolean | un_locodes$cityArgs<ExtArgs>;
|
|
156124
|
+
time_zone?: boolean | un_locodes$time_zoneArgs<ExtArgs>;
|
|
155670
156125
|
};
|
|
155671
156126
|
export type $un_locodesPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
155672
156127
|
name: "un_locodes";
|
|
@@ -155674,6 +156129,7 @@ export type $un_locodesPayload<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
155674
156129
|
country: $countriesPayload<ExtArgs> | null;
|
|
155675
156130
|
state: $statesPayload<ExtArgs> | null;
|
|
155676
156131
|
city: $citiesPayload<ExtArgs> | null;
|
|
156132
|
+
time_zone: $time_zonesPayload<ExtArgs> | null;
|
|
155677
156133
|
local_codes: $local_codesPayload<ExtArgs>[];
|
|
155678
156134
|
un_locode_logs: $un_locode_logsPayload<ExtArgs>[];
|
|
155679
156135
|
branches: $branchesPayload<ExtArgs>[];
|
|
@@ -155694,6 +156150,7 @@ export type $un_locodesPayload<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
155694
156150
|
id_country: number | null;
|
|
155695
156151
|
id_state: number | null;
|
|
155696
156152
|
id_city: number | null;
|
|
156153
|
+
id_time_zone: number | null;
|
|
155697
156154
|
logic_code: string | null;
|
|
155698
156155
|
un_code: string | null;
|
|
155699
156156
|
iata_code: string | null;
|
|
@@ -156051,6 +156508,7 @@ export interface Prisma__un_locodesClient<T, Null = never, ExtArgs extends runti
|
|
|
156051
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>;
|
|
156052
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>;
|
|
156053
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>;
|
|
156054
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>;
|
|
156055
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>;
|
|
156056
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>;
|
|
@@ -156094,6 +156552,7 @@ export interface un_locodesFieldRefs {
|
|
|
156094
156552
|
readonly id_country: FieldRef$1<"un_locodes", "Int">;
|
|
156095
156553
|
readonly id_state: FieldRef$1<"un_locodes", "Int">;
|
|
156096
156554
|
readonly id_city: FieldRef$1<"un_locodes", "Int">;
|
|
156555
|
+
readonly id_time_zone: FieldRef$1<"un_locodes", "Int">;
|
|
156097
156556
|
readonly logic_code: FieldRef$1<"un_locodes", "String">;
|
|
156098
156557
|
readonly un_code: FieldRef$1<"un_locodes", "String">;
|
|
156099
156558
|
readonly iata_code: FieldRef$1<"un_locodes", "String">;
|
|
@@ -156552,6 +157011,24 @@ export type un_locodes$cityArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
156552
157011
|
include?: citiesInclude<ExtArgs> | null;
|
|
156553
157012
|
where?: citiesWhereInput;
|
|
156554
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
|
+
};
|
|
156555
157032
|
/**
|
|
156556
157033
|
* un_locodes.local_codes
|
|
156557
157034
|
*/
|
|
@@ -171930,18 +172407,16 @@ export type AggregateTime_zones = {
|
|
|
171930
172407
|
};
|
|
171931
172408
|
export type Time_zonesAvgAggregateOutputType = {
|
|
171932
172409
|
id: number | null;
|
|
171933
|
-
utc_offset: runtime.Decimal | null;
|
|
171934
172410
|
};
|
|
171935
172411
|
export type Time_zonesSumAggregateOutputType = {
|
|
171936
172412
|
id: number | null;
|
|
171937
|
-
utc_offset: runtime.Decimal | null;
|
|
171938
172413
|
};
|
|
171939
172414
|
export type Time_zonesMinAggregateOutputType = {
|
|
171940
172415
|
id: number | null;
|
|
171941
172416
|
logic_code: string | null;
|
|
171942
172417
|
code: string | null;
|
|
171943
172418
|
name: string | null;
|
|
171944
|
-
utc_offset:
|
|
172419
|
+
utc_offset: string | null;
|
|
171945
172420
|
is_active: boolean | null;
|
|
171946
172421
|
created_at: Date | null;
|
|
171947
172422
|
created_by: string | null;
|
|
@@ -171953,7 +172428,7 @@ export type Time_zonesMaxAggregateOutputType = {
|
|
|
171953
172428
|
logic_code: string | null;
|
|
171954
172429
|
code: string | null;
|
|
171955
172430
|
name: string | null;
|
|
171956
|
-
utc_offset:
|
|
172431
|
+
utc_offset: string | null;
|
|
171957
172432
|
is_active: boolean | null;
|
|
171958
172433
|
created_at: Date | null;
|
|
171959
172434
|
created_by: string | null;
|
|
@@ -171975,11 +172450,9 @@ export type Time_zonesCountAggregateOutputType = {
|
|
|
171975
172450
|
};
|
|
171976
172451
|
export type Time_zonesAvgAggregateInputType = {
|
|
171977
172452
|
id?: true;
|
|
171978
|
-
utc_offset?: true;
|
|
171979
172453
|
};
|
|
171980
172454
|
export type Time_zonesSumAggregateInputType = {
|
|
171981
172455
|
id?: true;
|
|
171982
|
-
utc_offset?: true;
|
|
171983
172456
|
};
|
|
171984
172457
|
export type Time_zonesMinAggregateInputType = {
|
|
171985
172458
|
id?: true;
|
|
@@ -172099,7 +172572,7 @@ export type Time_zonesGroupByOutputType = {
|
|
|
172099
172572
|
logic_code: string | null;
|
|
172100
172573
|
code: string | null;
|
|
172101
172574
|
name: string | null;
|
|
172102
|
-
utc_offset:
|
|
172575
|
+
utc_offset: string | null;
|
|
172103
172576
|
is_active: boolean | null;
|
|
172104
172577
|
created_at: Date | null;
|
|
172105
172578
|
created_by: string | null;
|
|
@@ -172122,13 +172595,14 @@ export type time_zonesWhereInput = {
|
|
|
172122
172595
|
logic_code?: StringNullableFilter<"time_zones"> | string | null;
|
|
172123
172596
|
code?: StringNullableFilter<"time_zones"> | string | null;
|
|
172124
172597
|
name?: StringNullableFilter<"time_zones"> | string | null;
|
|
172125
|
-
utc_offset?:
|
|
172598
|
+
utc_offset?: StringNullableFilter<"time_zones"> | string | null;
|
|
172126
172599
|
is_active?: BoolNullableFilter<"time_zones"> | boolean | null;
|
|
172127
172600
|
created_at?: DateTimeNullableFilter<"time_zones"> | Date | string | null;
|
|
172128
172601
|
created_by?: StringNullableFilter<"time_zones"> | string | null;
|
|
172129
172602
|
updated_at?: DateTimeNullableFilter<"time_zones"> | Date | string | null;
|
|
172130
172603
|
updated_by?: StringNullableFilter<"time_zones"> | string | null;
|
|
172131
172604
|
time_zone_logs?: Time_zone_logsListRelationFilter;
|
|
172605
|
+
un_locodes?: Un_locodesListRelationFilter;
|
|
172132
172606
|
};
|
|
172133
172607
|
export type time_zonesOrderByWithRelationInput = {
|
|
172134
172608
|
id?: SortOrder$1;
|
|
@@ -172142,6 +172616,7 @@ export type time_zonesOrderByWithRelationInput = {
|
|
|
172142
172616
|
updated_at?: SortOrderInput | SortOrder$1;
|
|
172143
172617
|
updated_by?: SortOrderInput | SortOrder$1;
|
|
172144
172618
|
time_zone_logs?: time_zone_logsOrderByRelationAggregateInput;
|
|
172619
|
+
un_locodes?: un_locodesOrderByRelationAggregateInput;
|
|
172145
172620
|
};
|
|
172146
172621
|
export type time_zonesWhereUniqueInput = AtLeast<{
|
|
172147
172622
|
id?: number;
|
|
@@ -172151,13 +172626,14 @@ export type time_zonesWhereUniqueInput = AtLeast<{
|
|
|
172151
172626
|
NOT?: time_zonesWhereInput | time_zonesWhereInput[];
|
|
172152
172627
|
code?: StringNullableFilter<"time_zones"> | string | null;
|
|
172153
172628
|
name?: StringNullableFilter<"time_zones"> | string | null;
|
|
172154
|
-
utc_offset?:
|
|
172629
|
+
utc_offset?: StringNullableFilter<"time_zones"> | string | null;
|
|
172155
172630
|
is_active?: BoolNullableFilter<"time_zones"> | boolean | null;
|
|
172156
172631
|
created_at?: DateTimeNullableFilter<"time_zones"> | Date | string | null;
|
|
172157
172632
|
created_by?: StringNullableFilter<"time_zones"> | string | null;
|
|
172158
172633
|
updated_at?: DateTimeNullableFilter<"time_zones"> | Date | string | null;
|
|
172159
172634
|
updated_by?: StringNullableFilter<"time_zones"> | string | null;
|
|
172160
172635
|
time_zone_logs?: Time_zone_logsListRelationFilter;
|
|
172636
|
+
un_locodes?: Un_locodesListRelationFilter;
|
|
172161
172637
|
}, "id" | "logic_code">;
|
|
172162
172638
|
export type time_zonesOrderByWithAggregationInput = {
|
|
172163
172639
|
id?: SortOrder$1;
|
|
@@ -172184,7 +172660,7 @@ export type time_zonesScalarWhereWithAggregatesInput = {
|
|
|
172184
172660
|
logic_code?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
172185
172661
|
code?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
172186
172662
|
name?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
172187
|
-
utc_offset?:
|
|
172663
|
+
utc_offset?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
172188
172664
|
is_active?: BoolNullableWithAggregatesFilter<"time_zones"> | boolean | null;
|
|
172189
172665
|
created_at?: DateTimeNullableWithAggregatesFilter<"time_zones"> | Date | string | null;
|
|
172190
172666
|
created_by?: StringNullableWithAggregatesFilter<"time_zones"> | string | null;
|
|
@@ -172195,58 +172671,62 @@ export type time_zonesCreateInput = {
|
|
|
172195
172671
|
logic_code?: string | null;
|
|
172196
172672
|
code?: string | null;
|
|
172197
172673
|
name?: string | null;
|
|
172198
|
-
utc_offset?:
|
|
172674
|
+
utc_offset?: string | null;
|
|
172199
172675
|
is_active?: boolean | null;
|
|
172200
172676
|
created_at?: Date | string | null;
|
|
172201
172677
|
created_by?: string | null;
|
|
172202
172678
|
updated_at?: Date | string | null;
|
|
172203
172679
|
updated_by?: string | null;
|
|
172204
172680
|
time_zone_logs?: time_zone_logsCreateNestedManyWithoutTime_zoneInput;
|
|
172681
|
+
un_locodes?: un_locodesCreateNestedManyWithoutTime_zoneInput;
|
|
172205
172682
|
};
|
|
172206
172683
|
export type time_zonesUncheckedCreateInput = {
|
|
172207
172684
|
id?: number;
|
|
172208
172685
|
logic_code?: string | null;
|
|
172209
172686
|
code?: string | null;
|
|
172210
172687
|
name?: string | null;
|
|
172211
|
-
utc_offset?:
|
|
172688
|
+
utc_offset?: string | null;
|
|
172212
172689
|
is_active?: boolean | null;
|
|
172213
172690
|
created_at?: Date | string | null;
|
|
172214
172691
|
created_by?: string | null;
|
|
172215
172692
|
updated_at?: Date | string | null;
|
|
172216
172693
|
updated_by?: string | null;
|
|
172217
172694
|
time_zone_logs?: time_zone_logsUncheckedCreateNestedManyWithoutTime_zoneInput;
|
|
172695
|
+
un_locodes?: un_locodesUncheckedCreateNestedManyWithoutTime_zoneInput;
|
|
172218
172696
|
};
|
|
172219
172697
|
export type time_zonesUpdateInput = {
|
|
172220
172698
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172221
172699
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172222
172700
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172223
|
-
utc_offset?:
|
|
172701
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172224
172702
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172225
172703
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172226
172704
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172227
172705
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172228
172706
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172229
172707
|
time_zone_logs?: time_zone_logsUpdateManyWithoutTime_zoneNestedInput;
|
|
172708
|
+
un_locodes?: un_locodesUpdateManyWithoutTime_zoneNestedInput;
|
|
172230
172709
|
};
|
|
172231
172710
|
export type time_zonesUncheckedUpdateInput = {
|
|
172232
172711
|
id?: IntFieldUpdateOperationsInput | number;
|
|
172233
172712
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172234
172713
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172235
172714
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172236
|
-
utc_offset?:
|
|
172715
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172237
172716
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172238
172717
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172239
172718
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172240
172719
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172241
172720
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172242
172721
|
time_zone_logs?: time_zone_logsUncheckedUpdateManyWithoutTime_zoneNestedInput;
|
|
172722
|
+
un_locodes?: un_locodesUncheckedUpdateManyWithoutTime_zoneNestedInput;
|
|
172243
172723
|
};
|
|
172244
172724
|
export type time_zonesCreateManyInput = {
|
|
172245
172725
|
id?: number;
|
|
172246
172726
|
logic_code?: string | null;
|
|
172247
172727
|
code?: string | null;
|
|
172248
172728
|
name?: string | null;
|
|
172249
|
-
utc_offset?:
|
|
172729
|
+
utc_offset?: string | null;
|
|
172250
172730
|
is_active?: boolean | null;
|
|
172251
172731
|
created_at?: Date | string | null;
|
|
172252
172732
|
created_by?: string | null;
|
|
@@ -172257,7 +172737,7 @@ export type time_zonesUpdateManyMutationInput = {
|
|
|
172257
172737
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172258
172738
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172259
172739
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172260
|
-
utc_offset?:
|
|
172740
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172261
172741
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172262
172742
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172263
172743
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -172269,13 +172749,17 @@ export type time_zonesUncheckedUpdateManyInput = {
|
|
|
172269
172749
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172270
172750
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172271
172751
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172272
|
-
utc_offset?:
|
|
172752
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172273
172753
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172274
172754
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172275
172755
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172276
172756
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172277
172757
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172278
172758
|
};
|
|
172759
|
+
export type Time_zonesNullableScalarRelationFilter = {
|
|
172760
|
+
is?: time_zonesWhereInput | null;
|
|
172761
|
+
isNot?: time_zonesWhereInput | null;
|
|
172762
|
+
};
|
|
172279
172763
|
export type time_zonesCountOrderByAggregateInput = {
|
|
172280
172764
|
id?: SortOrder$1;
|
|
172281
172765
|
logic_code?: SortOrder$1;
|
|
@@ -172290,7 +172774,6 @@ export type time_zonesCountOrderByAggregateInput = {
|
|
|
172290
172774
|
};
|
|
172291
172775
|
export type time_zonesAvgOrderByAggregateInput = {
|
|
172292
172776
|
id?: SortOrder$1;
|
|
172293
|
-
utc_offset?: SortOrder$1;
|
|
172294
172777
|
};
|
|
172295
172778
|
export type time_zonesMaxOrderByAggregateInput = {
|
|
172296
172779
|
id?: SortOrder$1;
|
|
@@ -172318,11 +172801,20 @@ export type time_zonesMinOrderByAggregateInput = {
|
|
|
172318
172801
|
};
|
|
172319
172802
|
export type time_zonesSumOrderByAggregateInput = {
|
|
172320
172803
|
id?: SortOrder$1;
|
|
172321
|
-
utc_offset?: SortOrder$1;
|
|
172322
172804
|
};
|
|
172323
|
-
export type
|
|
172324
|
-
|
|
172325
|
-
|
|
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>;
|
|
172326
172818
|
};
|
|
172327
172819
|
export type time_zonesCreateNestedOneWithoutTime_zone_logsInput = {
|
|
172328
172820
|
create?: XOR<time_zonesCreateWithoutTime_zone_logsInput, time_zonesUncheckedCreateWithoutTime_zone_logsInput>;
|
|
@@ -172338,28 +172830,93 @@ export type time_zonesUpdateOneWithoutTime_zone_logsNestedInput = {
|
|
|
172338
172830
|
connect?: time_zonesWhereUniqueInput;
|
|
172339
172831
|
update?: XOR<XOR<time_zonesUpdateToOneWithWhereWithoutTime_zone_logsInput, time_zonesUpdateWithoutTime_zone_logsInput>, time_zonesUncheckedUpdateWithoutTime_zone_logsInput>;
|
|
172340
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
|
+
};
|
|
172341
172896
|
export type time_zonesCreateWithoutTime_zone_logsInput = {
|
|
172342
172897
|
logic_code?: string | null;
|
|
172343
172898
|
code?: string | null;
|
|
172344
172899
|
name?: string | null;
|
|
172345
|
-
utc_offset?:
|
|
172900
|
+
utc_offset?: string | null;
|
|
172346
172901
|
is_active?: boolean | null;
|
|
172347
172902
|
created_at?: Date | string | null;
|
|
172348
172903
|
created_by?: string | null;
|
|
172349
172904
|
updated_at?: Date | string | null;
|
|
172350
172905
|
updated_by?: string | null;
|
|
172906
|
+
un_locodes?: un_locodesCreateNestedManyWithoutTime_zoneInput;
|
|
172351
172907
|
};
|
|
172352
172908
|
export type time_zonesUncheckedCreateWithoutTime_zone_logsInput = {
|
|
172353
172909
|
id?: number;
|
|
172354
172910
|
logic_code?: string | null;
|
|
172355
172911
|
code?: string | null;
|
|
172356
172912
|
name?: string | null;
|
|
172357
|
-
utc_offset?:
|
|
172913
|
+
utc_offset?: string | null;
|
|
172358
172914
|
is_active?: boolean | null;
|
|
172359
172915
|
created_at?: Date | string | null;
|
|
172360
172916
|
created_by?: string | null;
|
|
172361
172917
|
updated_at?: Date | string | null;
|
|
172362
172918
|
updated_by?: string | null;
|
|
172919
|
+
un_locodes?: un_locodesUncheckedCreateNestedManyWithoutTime_zoneInput;
|
|
172363
172920
|
};
|
|
172364
172921
|
export type time_zonesCreateOrConnectWithoutTime_zone_logsInput = {
|
|
172365
172922
|
where: time_zonesWhereUniqueInput;
|
|
@@ -172378,27 +172935,30 @@ export type time_zonesUpdateWithoutTime_zone_logsInput = {
|
|
|
172378
172935
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172379
172936
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172380
172937
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172381
|
-
utc_offset?:
|
|
172938
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172382
172939
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172383
172940
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172384
172941
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172385
172942
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172386
172943
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172944
|
+
un_locodes?: un_locodesUpdateManyWithoutTime_zoneNestedInput;
|
|
172387
172945
|
};
|
|
172388
172946
|
export type time_zonesUncheckedUpdateWithoutTime_zone_logsInput = {
|
|
172389
172947
|
id?: IntFieldUpdateOperationsInput | number;
|
|
172390
172948
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172391
172949
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172392
172950
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172393
|
-
utc_offset?:
|
|
172951
|
+
utc_offset?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172394
172952
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
172395
172953
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172396
172954
|
created_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172397
172955
|
updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
172398
172956
|
updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
172957
|
+
un_locodes?: un_locodesUncheckedUpdateManyWithoutTime_zoneNestedInput;
|
|
172399
172958
|
};
|
|
172400
172959
|
export type Time_zonesCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172401
172960
|
time_zone_logs?: boolean | Time_zonesCountOutputTypeCountTime_zone_logsArgs;
|
|
172961
|
+
un_locodes?: boolean | Time_zonesCountOutputTypeCountUn_locodesArgs;
|
|
172402
172962
|
};
|
|
172403
172963
|
/**
|
|
172404
172964
|
* Time_zonesCountOutputType without action
|
|
@@ -172415,6 +172975,12 @@ export type Time_zonesCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.E
|
|
|
172415
172975
|
export type Time_zonesCountOutputTypeCountTime_zone_logsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172416
172976
|
where?: time_zone_logsWhereInput;
|
|
172417
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
|
+
};
|
|
172418
172984
|
export type time_zonesSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
172419
172985
|
id?: boolean;
|
|
172420
172986
|
logic_code?: boolean;
|
|
@@ -172427,6 +172993,7 @@ export type time_zonesSelect<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
172427
172993
|
updated_at?: boolean;
|
|
172428
172994
|
updated_by?: boolean;
|
|
172429
172995
|
time_zone_logs?: boolean | time_zones$time_zone_logsArgs<ExtArgs>;
|
|
172996
|
+
un_locodes?: boolean | time_zones$un_locodesArgs<ExtArgs>;
|
|
172430
172997
|
_count?: boolean | Time_zonesCountOutputTypeDefaultArgs<ExtArgs>;
|
|
172431
172998
|
}, ExtArgs["result"]["time_zones"]>;
|
|
172432
172999
|
export type time_zonesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
@@ -172456,19 +173023,21 @@ export type time_zonesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
172456
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"]>;
|
|
172457
173024
|
export type time_zonesInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172458
173025
|
time_zone_logs?: boolean | time_zones$time_zone_logsArgs<ExtArgs>;
|
|
173026
|
+
un_locodes?: boolean | time_zones$un_locodesArgs<ExtArgs>;
|
|
172459
173027
|
_count?: boolean | Time_zonesCountOutputTypeDefaultArgs<ExtArgs>;
|
|
172460
173028
|
};
|
|
172461
173029
|
export type $time_zonesPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
172462
173030
|
name: "time_zones";
|
|
172463
173031
|
objects: {
|
|
172464
173032
|
time_zone_logs: $time_zone_logsPayload<ExtArgs>[];
|
|
173033
|
+
un_locodes: $un_locodesPayload<ExtArgs>[];
|
|
172465
173034
|
};
|
|
172466
173035
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
172467
173036
|
id: number;
|
|
172468
173037
|
logic_code: string | null;
|
|
172469
173038
|
code: string | null;
|
|
172470
173039
|
name: string | null;
|
|
172471
|
-
utc_offset:
|
|
173040
|
+
utc_offset: string | null;
|
|
172472
173041
|
is_active: boolean | null;
|
|
172473
173042
|
created_at: Date | null;
|
|
172474
173043
|
created_by: string | null;
|
|
@@ -172803,6 +173372,7 @@ export interface time_zonesDelegate<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
172803
173372
|
export interface Prisma__time_zonesClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise$1<T> {
|
|
172804
173373
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
172805
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>;
|
|
172806
173376
|
/**
|
|
172807
173377
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
172808
173378
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -172832,7 +173402,7 @@ export interface time_zonesFieldRefs {
|
|
|
172832
173402
|
readonly logic_code: FieldRef$1<"time_zones", "String">;
|
|
172833
173403
|
readonly code: FieldRef$1<"time_zones", "String">;
|
|
172834
173404
|
readonly name: FieldRef$1<"time_zones", "String">;
|
|
172835
|
-
readonly utc_offset: FieldRef$1<"time_zones", "
|
|
173405
|
+
readonly utc_offset: FieldRef$1<"time_zones", "String">;
|
|
172836
173406
|
readonly is_active: FieldRef$1<"time_zones", "Boolean">;
|
|
172837
173407
|
readonly created_at: FieldRef$1<"time_zones", "DateTime">;
|
|
172838
173408
|
readonly created_by: FieldRef$1<"time_zones", "String">;
|
|
@@ -173231,6 +173801,29 @@ export type time_zones$time_zone_logsArgs<ExtArgs extends runtime.Types.Extensio
|
|
|
173231
173801
|
skip?: number;
|
|
173232
173802
|
distinct?: Time_zone_logsScalarFieldEnum | Time_zone_logsScalarFieldEnum[];
|
|
173233
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
|
+
};
|
|
173234
173827
|
export type AggregateUn_locode_logs = {
|
|
173235
173828
|
_count: Un_locode_logsCountAggregateOutputType | null;
|
|
173236
173829
|
_avg: Un_locode_logsAvgAggregateOutputType | null;
|
|
@@ -638476,6 +639069,7 @@ declare const Un_locodesScalarFieldEnum: {
|
|
|
638476
639069
|
readonly id_country: "id_country";
|
|
638477
639070
|
readonly id_state: "id_state";
|
|
638478
639071
|
readonly id_city: "id_city";
|
|
639072
|
+
readonly id_time_zone: "id_time_zone";
|
|
638479
639073
|
readonly logic_code: "logic_code";
|
|
638480
639074
|
readonly un_code: "un_code";
|
|
638481
639075
|
readonly iata_code: "iata_code";
|