@be-logixpair/api 0.0.113 → 0.0.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +968 -104
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -111064,6 +111064,7 @@ type Forwarding_consolsMinAggregateOutputType = {
111064
111064
  trip_number: string | null;
111065
111065
  aircraft_type: string | null;
111066
111066
  aircraft_registration: string | null;
111067
+ other_reference: string | null;
111067
111068
  mawb_number: string | null;
111068
111069
  bol_number: string | null;
111069
111070
  carrier_booking_reference: string | null;
@@ -111106,6 +111107,7 @@ type Forwarding_consolsMaxAggregateOutputType = {
111106
111107
  trip_number: string | null;
111107
111108
  aircraft_type: string | null;
111108
111109
  aircraft_registration: string | null;
111110
+ other_reference: string | null;
111109
111111
  mawb_number: string | null;
111110
111112
  bol_number: string | null;
111111
111113
  carrier_booking_reference: string | null;
@@ -111148,6 +111150,7 @@ type Forwarding_consolsCountAggregateOutputType = {
111148
111150
  trip_number: number;
111149
111151
  aircraft_type: number;
111150
111152
  aircraft_registration: number;
111153
+ other_reference: number;
111151
111154
  mawb_number: number;
111152
111155
  bol_number: number;
111153
111156
  carrier_booking_reference: number;
@@ -111233,6 +111236,7 @@ type Forwarding_consolsMinAggregateInputType = {
111233
111236
  trip_number?: true;
111234
111237
  aircraft_type?: true;
111235
111238
  aircraft_registration?: true;
111239
+ other_reference?: true;
111236
111240
  mawb_number?: true;
111237
111241
  bol_number?: true;
111238
111242
  carrier_booking_reference?: true;
@@ -111275,6 +111279,7 @@ type Forwarding_consolsMaxAggregateInputType = {
111275
111279
  trip_number?: true;
111276
111280
  aircraft_type?: true;
111277
111281
  aircraft_registration?: true;
111282
+ other_reference?: true;
111278
111283
  mawb_number?: true;
111279
111284
  bol_number?: true;
111280
111285
  carrier_booking_reference?: true;
@@ -111317,6 +111322,7 @@ type Forwarding_consolsCountAggregateInputType = {
111317
111322
  trip_number?: true;
111318
111323
  aircraft_type?: true;
111319
111324
  aircraft_registration?: true;
111325
+ other_reference?: true;
111320
111326
  mawb_number?: true;
111321
111327
  bol_number?: true;
111322
111328
  carrier_booking_reference?: true;
@@ -111434,6 +111440,7 @@ type Forwarding_consolsGroupByOutputType = {
111434
111440
  trip_number: string | null;
111435
111441
  aircraft_type: string | null;
111436
111442
  aircraft_registration: string | null;
111443
+ other_reference: string | null;
111437
111444
  mawb_number: string | null;
111438
111445
  bol_number: string | null;
111439
111446
  carrier_booking_reference: string | null;
@@ -111485,6 +111492,7 @@ type forwarding_consolsWhereInput = {
111485
111492
  trip_number?: StringNullableFilter<"forwarding_consols"> | string | null;
111486
111493
  aircraft_type?: StringNullableFilter<"forwarding_consols"> | string | null;
111487
111494
  aircraft_registration?: StringNullableFilter<"forwarding_consols"> | string | null;
111495
+ other_reference?: StringNullableFilter<"forwarding_consols"> | string | null;
111488
111496
  mawb_number?: StringNullableFilter<"forwarding_consols"> | string | null;
111489
111497
  bol_number?: StringNullableFilter<"forwarding_consols"> | string | null;
111490
111498
  carrier_booking_reference?: StringNullableFilter<"forwarding_consols"> | string | null;
@@ -111504,6 +111512,7 @@ type forwarding_consolsWhereInput = {
111504
111512
  container_shipping_types?: XOR<Container_shipping_typesNullableScalarRelationFilter, container_shipping_typesWhereInput> | null;
111505
111513
  load_port_un_locodes?: XOR<Un_locodesNullableScalarRelationFilter, un_locodesWhereInput> | null;
111506
111514
  discharge_port_un_locodes?: XOR<Un_locodesNullableScalarRelationFilter, un_locodesWhereInput> | null;
111515
+ vessel?: XOR<VesselsNullableScalarRelationFilter, vesselsWhereInput> | null;
111507
111516
  service_level?: XOR<Service_levelsNullableScalarRelationFilter, service_levelsWhereInput> | null;
111508
111517
  payment_type?: XOR<Payment_typesNullableScalarRelationFilter, payment_typesWhereInput> | null;
111509
111518
  sending_agent?: XOR<OrganizationsNullableScalarRelationFilter, organizationsWhereInput> | null;
@@ -111550,6 +111559,7 @@ type forwarding_consolsOrderByWithRelationInput = {
111550
111559
  trip_number?: SortOrderInput | SortOrder;
111551
111560
  aircraft_type?: SortOrderInput | SortOrder;
111552
111561
  aircraft_registration?: SortOrderInput | SortOrder;
111562
+ other_reference?: SortOrderInput | SortOrder;
111553
111563
  mawb_number?: SortOrderInput | SortOrder;
111554
111564
  bol_number?: SortOrderInput | SortOrder;
111555
111565
  carrier_booking_reference?: SortOrderInput | SortOrder;
@@ -111569,6 +111579,7 @@ type forwarding_consolsOrderByWithRelationInput = {
111569
111579
  container_shipping_types?: container_shipping_typesOrderByWithRelationInput;
111570
111580
  load_port_un_locodes?: un_locodesOrderByWithRelationInput;
111571
111581
  discharge_port_un_locodes?: un_locodesOrderByWithRelationInput;
111582
+ vessel?: vesselsOrderByWithRelationInput;
111572
111583
  service_level?: service_levelsOrderByWithRelationInput;
111573
111584
  payment_type?: payment_typesOrderByWithRelationInput;
111574
111585
  sending_agent?: organizationsOrderByWithRelationInput;
@@ -111618,6 +111629,7 @@ type forwarding_consolsWhereUniqueInput = AtLeast<{
111618
111629
  trip_number?: StringNullableFilter<"forwarding_consols"> | string | null;
111619
111630
  aircraft_type?: StringNullableFilter<"forwarding_consols"> | string | null;
111620
111631
  aircraft_registration?: StringNullableFilter<"forwarding_consols"> | string | null;
111632
+ other_reference?: StringNullableFilter<"forwarding_consols"> | string | null;
111621
111633
  mawb_number?: StringNullableFilter<"forwarding_consols"> | string | null;
111622
111634
  bol_number?: StringNullableFilter<"forwarding_consols"> | string | null;
111623
111635
  carrier_booking_reference?: StringNullableFilter<"forwarding_consols"> | string | null;
@@ -111637,6 +111649,7 @@ type forwarding_consolsWhereUniqueInput = AtLeast<{
111637
111649
  container_shipping_types?: XOR<Container_shipping_typesNullableScalarRelationFilter, container_shipping_typesWhereInput> | null;
111638
111650
  load_port_un_locodes?: XOR<Un_locodesNullableScalarRelationFilter, un_locodesWhereInput> | null;
111639
111651
  discharge_port_un_locodes?: XOR<Un_locodesNullableScalarRelationFilter, un_locodesWhereInput> | null;
111652
+ vessel?: XOR<VesselsNullableScalarRelationFilter, vesselsWhereInput> | null;
111640
111653
  service_level?: XOR<Service_levelsNullableScalarRelationFilter, service_levelsWhereInput> | null;
111641
111654
  payment_type?: XOR<Payment_typesNullableScalarRelationFilter, payment_typesWhereInput> | null;
111642
111655
  sending_agent?: XOR<OrganizationsNullableScalarRelationFilter, organizationsWhereInput> | null;
@@ -111683,6 +111696,7 @@ type forwarding_consolsOrderByWithAggregationInput = {
111683
111696
  trip_number?: SortOrderInput | SortOrder;
111684
111697
  aircraft_type?: SortOrderInput | SortOrder;
111685
111698
  aircraft_registration?: SortOrderInput | SortOrder;
111699
+ other_reference?: SortOrderInput | SortOrder;
111686
111700
  mawb_number?: SortOrderInput | SortOrder;
111687
111701
  bol_number?: SortOrderInput | SortOrder;
111688
111702
  carrier_booking_reference?: SortOrderInput | SortOrder;
@@ -111733,6 +111747,7 @@ type forwarding_consolsScalarWhereWithAggregatesInput = {
111733
111747
  trip_number?: StringNullableWithAggregatesFilter<"forwarding_consols"> | string | null;
111734
111748
  aircraft_type?: StringNullableWithAggregatesFilter<"forwarding_consols"> | string | null;
111735
111749
  aircraft_registration?: StringNullableWithAggregatesFilter<"forwarding_consols"> | string | null;
111750
+ other_reference?: StringNullableWithAggregatesFilter<"forwarding_consols"> | string | null;
111736
111751
  mawb_number?: StringNullableWithAggregatesFilter<"forwarding_consols"> | string | null;
111737
111752
  bol_number?: StringNullableWithAggregatesFilter<"forwarding_consols"> | string | null;
111738
111753
  carrier_booking_reference?: StringNullableWithAggregatesFilter<"forwarding_consols"> | string | null;
@@ -111750,7 +111765,6 @@ type forwarding_consolsScalarWhereWithAggregatesInput = {
111750
111765
  };
111751
111766
  type forwarding_consolsCreateInput = {
111752
111767
  id?: bigint | number;
111753
- id_vessel?: bigint | number | null;
111754
111768
  logic_code?: string | null;
111755
111769
  code?: string | null;
111756
111770
  name?: string | null;
@@ -111758,6 +111772,7 @@ type forwarding_consolsCreateInput = {
111758
111772
  trip_number?: string | null;
111759
111773
  aircraft_type?: string | null;
111760
111774
  aircraft_registration?: string | null;
111775
+ other_reference?: string | null;
111761
111776
  mawb_number?: string | null;
111762
111777
  bol_number?: string | null;
111763
111778
  carrier_booking_reference?: string | null;
@@ -111777,6 +111792,7 @@ type forwarding_consolsCreateInput = {
111777
111792
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
111778
111793
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
111779
111794
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
111795
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
111780
111796
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
111781
111797
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
111782
111798
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -111823,6 +111839,7 @@ type forwarding_consolsUncheckedCreateInput = {
111823
111839
  trip_number?: string | null;
111824
111840
  aircraft_type?: string | null;
111825
111841
  aircraft_registration?: string | null;
111842
+ other_reference?: string | null;
111826
111843
  mawb_number?: string | null;
111827
111844
  bol_number?: string | null;
111828
111845
  carrier_booking_reference?: string | null;
@@ -111846,7 +111863,6 @@ type forwarding_consolsUncheckedCreateInput = {
111846
111863
  };
111847
111864
  type forwarding_consolsUpdateInput = {
111848
111865
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
111849
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
111850
111866
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
111851
111867
  code?: NullableStringFieldUpdateOperationsInput | string | null;
111852
111868
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -111854,6 +111870,7 @@ type forwarding_consolsUpdateInput = {
111854
111870
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
111855
111871
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
111856
111872
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
111873
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
111857
111874
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
111858
111875
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
111859
111876
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -111873,6 +111890,7 @@ type forwarding_consolsUpdateInput = {
111873
111890
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
111874
111891
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
111875
111892
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
111893
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
111876
111894
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
111877
111895
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
111878
111896
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -111919,6 +111937,7 @@ type forwarding_consolsUncheckedUpdateInput = {
111919
111937
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
111920
111938
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
111921
111939
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
111940
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
111922
111941
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
111923
111942
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
111924
111943
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -111967,6 +111986,7 @@ type forwarding_consolsCreateManyInput = {
111967
111986
  trip_number?: string | null;
111968
111987
  aircraft_type?: string | null;
111969
111988
  aircraft_registration?: string | null;
111989
+ other_reference?: string | null;
111970
111990
  mawb_number?: string | null;
111971
111991
  bol_number?: string | null;
111972
111992
  carrier_booking_reference?: string | null;
@@ -111984,7 +112004,6 @@ type forwarding_consolsCreateManyInput = {
111984
112004
  };
111985
112005
  type forwarding_consolsUpdateManyMutationInput = {
111986
112006
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
111987
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
111988
112007
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
111989
112008
  code?: NullableStringFieldUpdateOperationsInput | string | null;
111990
112009
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -111992,6 +112011,7 @@ type forwarding_consolsUpdateManyMutationInput = {
111992
112011
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
111993
112012
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
111994
112013
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
112014
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
111995
112015
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
111996
112016
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
111997
112017
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -112034,6 +112054,7 @@ type forwarding_consolsUncheckedUpdateManyInput = {
112034
112054
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
112035
112055
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
112036
112056
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
112057
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
112037
112058
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
112038
112059
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
112039
112060
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -112080,6 +112101,7 @@ type forwarding_consolsCountOrderByAggregateInput = {
112080
112101
  trip_number?: SortOrder;
112081
112102
  aircraft_type?: SortOrder;
112082
112103
  aircraft_registration?: SortOrder;
112104
+ other_reference?: SortOrder;
112083
112105
  mawb_number?: SortOrder;
112084
112106
  bol_number?: SortOrder;
112085
112107
  carrier_booking_reference?: SortOrder;
@@ -112143,6 +112165,7 @@ type forwarding_consolsMaxOrderByAggregateInput = {
112143
112165
  trip_number?: SortOrder;
112144
112166
  aircraft_type?: SortOrder;
112145
112167
  aircraft_registration?: SortOrder;
112168
+ other_reference?: SortOrder;
112146
112169
  mawb_number?: SortOrder;
112147
112170
  bol_number?: SortOrder;
112148
112171
  carrier_booking_reference?: SortOrder;
@@ -112185,6 +112208,7 @@ type forwarding_consolsMinOrderByAggregateInput = {
112185
112208
  trip_number?: SortOrder;
112186
112209
  aircraft_type?: SortOrder;
112187
112210
  aircraft_registration?: SortOrder;
112211
+ other_reference?: SortOrder;
112188
112212
  mawb_number?: SortOrder;
112189
112213
  bol_number?: SortOrder;
112190
112214
  carrier_booking_reference?: SortOrder;
@@ -112807,6 +112831,44 @@ type forwarding_consolsUncheckedUpdateManyWithoutService_levelNestedInput = {
112807
112831
  updateMany?: forwarding_consolsUpdateManyWithWhereWithoutService_levelInput | forwarding_consolsUpdateManyWithWhereWithoutService_levelInput[];
112808
112832
  deleteMany?: forwarding_consolsScalarWhereInput | forwarding_consolsScalarWhereInput[];
112809
112833
  };
112834
+ type forwarding_consolsCreateNestedManyWithoutVesselInput = {
112835
+ create?: XOR<forwarding_consolsCreateWithoutVesselInput, forwarding_consolsUncheckedCreateWithoutVesselInput> | forwarding_consolsCreateWithoutVesselInput[] | forwarding_consolsUncheckedCreateWithoutVesselInput[];
112836
+ connectOrCreate?: forwarding_consolsCreateOrConnectWithoutVesselInput | forwarding_consolsCreateOrConnectWithoutVesselInput[];
112837
+ createMany?: forwarding_consolsCreateManyVesselInputEnvelope;
112838
+ connect?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112839
+ };
112840
+ type forwarding_consolsUncheckedCreateNestedManyWithoutVesselInput = {
112841
+ create?: XOR<forwarding_consolsCreateWithoutVesselInput, forwarding_consolsUncheckedCreateWithoutVesselInput> | forwarding_consolsCreateWithoutVesselInput[] | forwarding_consolsUncheckedCreateWithoutVesselInput[];
112842
+ connectOrCreate?: forwarding_consolsCreateOrConnectWithoutVesselInput | forwarding_consolsCreateOrConnectWithoutVesselInput[];
112843
+ createMany?: forwarding_consolsCreateManyVesselInputEnvelope;
112844
+ connect?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112845
+ };
112846
+ type forwarding_consolsUpdateManyWithoutVesselNestedInput = {
112847
+ create?: XOR<forwarding_consolsCreateWithoutVesselInput, forwarding_consolsUncheckedCreateWithoutVesselInput> | forwarding_consolsCreateWithoutVesselInput[] | forwarding_consolsUncheckedCreateWithoutVesselInput[];
112848
+ connectOrCreate?: forwarding_consolsCreateOrConnectWithoutVesselInput | forwarding_consolsCreateOrConnectWithoutVesselInput[];
112849
+ upsert?: forwarding_consolsUpsertWithWhereUniqueWithoutVesselInput | forwarding_consolsUpsertWithWhereUniqueWithoutVesselInput[];
112850
+ createMany?: forwarding_consolsCreateManyVesselInputEnvelope;
112851
+ set?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112852
+ disconnect?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112853
+ delete?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112854
+ connect?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112855
+ update?: forwarding_consolsUpdateWithWhereUniqueWithoutVesselInput | forwarding_consolsUpdateWithWhereUniqueWithoutVesselInput[];
112856
+ updateMany?: forwarding_consolsUpdateManyWithWhereWithoutVesselInput | forwarding_consolsUpdateManyWithWhereWithoutVesselInput[];
112857
+ deleteMany?: forwarding_consolsScalarWhereInput | forwarding_consolsScalarWhereInput[];
112858
+ };
112859
+ type forwarding_consolsUncheckedUpdateManyWithoutVesselNestedInput = {
112860
+ create?: XOR<forwarding_consolsCreateWithoutVesselInput, forwarding_consolsUncheckedCreateWithoutVesselInput> | forwarding_consolsCreateWithoutVesselInput[] | forwarding_consolsUncheckedCreateWithoutVesselInput[];
112861
+ connectOrCreate?: forwarding_consolsCreateOrConnectWithoutVesselInput | forwarding_consolsCreateOrConnectWithoutVesselInput[];
112862
+ upsert?: forwarding_consolsUpsertWithWhereUniqueWithoutVesselInput | forwarding_consolsUpsertWithWhereUniqueWithoutVesselInput[];
112863
+ createMany?: forwarding_consolsCreateManyVesselInputEnvelope;
112864
+ set?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112865
+ disconnect?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112866
+ delete?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112867
+ connect?: forwarding_consolsWhereUniqueInput | forwarding_consolsWhereUniqueInput[];
112868
+ update?: forwarding_consolsUpdateWithWhereUniqueWithoutVesselInput | forwarding_consolsUpdateWithWhereUniqueWithoutVesselInput[];
112869
+ updateMany?: forwarding_consolsUpdateManyWithWhereWithoutVesselInput | forwarding_consolsUpdateManyWithWhereWithoutVesselInput[];
112870
+ deleteMany?: forwarding_consolsScalarWhereInput | forwarding_consolsScalarWhereInput[];
112871
+ };
112810
112872
  type forwarding_consolsCreateNestedManyWithoutPayment_typeInput = {
112811
112873
  create?: XOR<forwarding_consolsCreateWithoutPayment_typeInput, forwarding_consolsUncheckedCreateWithoutPayment_typeInput> | forwarding_consolsCreateWithoutPayment_typeInput[] | forwarding_consolsUncheckedCreateWithoutPayment_typeInput[];
112812
112874
  connectOrCreate?: forwarding_consolsCreateOrConnectWithoutPayment_typeInput | forwarding_consolsCreateOrConnectWithoutPayment_typeInput[];
@@ -112961,7 +113023,6 @@ type forwarding_consolsUncheckedUpdateManyWithoutForwarding_consol_typeNestedInp
112961
113023
  };
112962
113024
  type forwarding_consolsCreateWithoutForwarding_consol_billing_detailsInput = {
112963
113025
  id?: bigint | number;
112964
- id_vessel?: bigint | number | null;
112965
113026
  logic_code?: string | null;
112966
113027
  code?: string | null;
112967
113028
  name?: string | null;
@@ -112969,6 +113030,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_billing_detailsInput = {
112969
113030
  trip_number?: string | null;
112970
113031
  aircraft_type?: string | null;
112971
113032
  aircraft_registration?: string | null;
113033
+ other_reference?: string | null;
112972
113034
  mawb_number?: string | null;
112973
113035
  bol_number?: string | null;
112974
113036
  carrier_booking_reference?: string | null;
@@ -112988,6 +113050,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_billing_detailsInput = {
112988
113050
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
112989
113051
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
112990
113052
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
113053
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
112991
113054
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
112992
113055
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
112993
113056
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -113033,6 +113096,7 @@ type forwarding_consolsUncheckedCreateWithoutForwarding_consol_billing_detailsIn
113033
113096
  trip_number?: string | null;
113034
113097
  aircraft_type?: string | null;
113035
113098
  aircraft_registration?: string | null;
113099
+ other_reference?: string | null;
113036
113100
  mawb_number?: string | null;
113037
113101
  bol_number?: string | null;
113038
113102
  carrier_booking_reference?: string | null;
@@ -113068,7 +113132,6 @@ type forwarding_consolsUpdateToOneWithWhereWithoutForwarding_consol_billing_deta
113068
113132
  };
113069
113133
  type forwarding_consolsUpdateWithoutForwarding_consol_billing_detailsInput = {
113070
113134
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
113071
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
113072
113135
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
113073
113136
  code?: NullableStringFieldUpdateOperationsInput | string | null;
113074
113137
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113076,6 +113139,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_billing_detailsInput = {
113076
113139
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113077
113140
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113078
113141
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113142
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113079
113143
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113080
113144
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113081
113145
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113095,6 +113159,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_billing_detailsInput = {
113095
113159
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
113096
113160
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
113097
113161
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
113162
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
113098
113163
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
113099
113164
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
113100
113165
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -113140,6 +113205,7 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_billing_detailsIn
113140
113205
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113141
113206
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113142
113207
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113208
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113143
113209
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113144
113210
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113145
113211
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113162,7 +113228,6 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_billing_detailsIn
113162
113228
  };
113163
113229
  type forwarding_consolsCreateWithoutForwarding_consol_reference_numbersInput = {
113164
113230
  id?: bigint | number;
113165
- id_vessel?: bigint | number | null;
113166
113231
  logic_code?: string | null;
113167
113232
  code?: string | null;
113168
113233
  name?: string | null;
@@ -113170,6 +113235,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_reference_numbersInput = {
113170
113235
  trip_number?: string | null;
113171
113236
  aircraft_type?: string | null;
113172
113237
  aircraft_registration?: string | null;
113238
+ other_reference?: string | null;
113173
113239
  mawb_number?: string | null;
113174
113240
  bol_number?: string | null;
113175
113241
  carrier_booking_reference?: string | null;
@@ -113189,6 +113255,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_reference_numbersInput = {
113189
113255
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
113190
113256
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
113191
113257
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
113258
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
113192
113259
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
113193
113260
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
113194
113261
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -113234,6 +113301,7 @@ type forwarding_consolsUncheckedCreateWithoutForwarding_consol_reference_numbers
113234
113301
  trip_number?: string | null;
113235
113302
  aircraft_type?: string | null;
113236
113303
  aircraft_registration?: string | null;
113304
+ other_reference?: string | null;
113237
113305
  mawb_number?: string | null;
113238
113306
  bol_number?: string | null;
113239
113307
  carrier_booking_reference?: string | null;
@@ -113269,7 +113337,6 @@ type forwarding_consolsUpdateToOneWithWhereWithoutForwarding_consol_reference_nu
113269
113337
  };
113270
113338
  type forwarding_consolsUpdateWithoutForwarding_consol_reference_numbersInput = {
113271
113339
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
113272
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
113273
113340
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
113274
113341
  code?: NullableStringFieldUpdateOperationsInput | string | null;
113275
113342
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113277,6 +113344,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_reference_numbersInput = {
113277
113344
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113278
113345
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113279
113346
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113347
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113280
113348
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113281
113349
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113282
113350
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113296,6 +113364,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_reference_numbersInput = {
113296
113364
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
113297
113365
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
113298
113366
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
113367
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
113299
113368
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
113300
113369
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
113301
113370
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -113341,6 +113410,7 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_reference_numbers
113341
113410
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113342
113411
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113343
113412
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113413
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113344
113414
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113345
113415
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113346
113416
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113363,7 +113433,6 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_reference_numbers
113363
113433
  };
113364
113434
  type forwarding_consolsCreateWithoutForwarding_consol_routingsInput = {
113365
113435
  id?: bigint | number;
113366
- id_vessel?: bigint | number | null;
113367
113436
  logic_code?: string | null;
113368
113437
  code?: string | null;
113369
113438
  name?: string | null;
@@ -113371,6 +113440,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_routingsInput = {
113371
113440
  trip_number?: string | null;
113372
113441
  aircraft_type?: string | null;
113373
113442
  aircraft_registration?: string | null;
113443
+ other_reference?: string | null;
113374
113444
  mawb_number?: string | null;
113375
113445
  bol_number?: string | null;
113376
113446
  carrier_booking_reference?: string | null;
@@ -113390,6 +113460,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_routingsInput = {
113390
113460
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
113391
113461
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
113392
113462
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
113463
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
113393
113464
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
113394
113465
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
113395
113466
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -113435,6 +113506,7 @@ type forwarding_consolsUncheckedCreateWithoutForwarding_consol_routingsInput = {
113435
113506
  trip_number?: string | null;
113436
113507
  aircraft_type?: string | null;
113437
113508
  aircraft_registration?: string | null;
113509
+ other_reference?: string | null;
113438
113510
  mawb_number?: string | null;
113439
113511
  bol_number?: string | null;
113440
113512
  carrier_booking_reference?: string | null;
@@ -113470,7 +113542,6 @@ type forwarding_consolsUpdateToOneWithWhereWithoutForwarding_consol_routingsInpu
113470
113542
  };
113471
113543
  type forwarding_consolsUpdateWithoutForwarding_consol_routingsInput = {
113472
113544
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
113473
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
113474
113545
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
113475
113546
  code?: NullableStringFieldUpdateOperationsInput | string | null;
113476
113547
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113478,6 +113549,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_routingsInput = {
113478
113549
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113479
113550
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113480
113551
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113552
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113481
113553
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113482
113554
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113483
113555
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113497,6 +113569,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_routingsInput = {
113497
113569
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
113498
113570
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
113499
113571
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
113572
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
113500
113573
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
113501
113574
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
113502
113575
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -113542,6 +113615,7 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_routingsInput = {
113542
113615
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113543
113616
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113544
113617
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113618
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113545
113619
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113546
113620
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113547
113621
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113564,7 +113638,6 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_routingsInput = {
113564
113638
  };
113565
113639
  type forwarding_consolsCreateWithoutForwarding_consol_containersInput = {
113566
113640
  id?: bigint | number;
113567
- id_vessel?: bigint | number | null;
113568
113641
  logic_code?: string | null;
113569
113642
  code?: string | null;
113570
113643
  name?: string | null;
@@ -113572,6 +113645,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_containersInput = {
113572
113645
  trip_number?: string | null;
113573
113646
  aircraft_type?: string | null;
113574
113647
  aircraft_registration?: string | null;
113648
+ other_reference?: string | null;
113575
113649
  mawb_number?: string | null;
113576
113650
  bol_number?: string | null;
113577
113651
  carrier_booking_reference?: string | null;
@@ -113591,6 +113665,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_containersInput = {
113591
113665
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
113592
113666
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
113593
113667
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
113668
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
113594
113669
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
113595
113670
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
113596
113671
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -113636,6 +113711,7 @@ type forwarding_consolsUncheckedCreateWithoutForwarding_consol_containersInput =
113636
113711
  trip_number?: string | null;
113637
113712
  aircraft_type?: string | null;
113638
113713
  aircraft_registration?: string | null;
113714
+ other_reference?: string | null;
113639
113715
  mawb_number?: string | null;
113640
113716
  bol_number?: string | null;
113641
113717
  carrier_booking_reference?: string | null;
@@ -113671,7 +113747,6 @@ type forwarding_consolsUpdateToOneWithWhereWithoutForwarding_consol_containersIn
113671
113747
  };
113672
113748
  type forwarding_consolsUpdateWithoutForwarding_consol_containersInput = {
113673
113749
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
113674
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
113675
113750
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
113676
113751
  code?: NullableStringFieldUpdateOperationsInput | string | null;
113677
113752
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113679,6 +113754,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_containersInput = {
113679
113754
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113680
113755
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113681
113756
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113757
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113682
113758
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113683
113759
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113684
113760
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113698,6 +113774,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_containersInput = {
113698
113774
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
113699
113775
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
113700
113776
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
113777
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
113701
113778
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
113702
113779
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
113703
113780
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -113743,6 +113820,7 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_containersInput =
113743
113820
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113744
113821
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113745
113822
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113823
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113746
113824
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113747
113825
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113748
113826
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113765,7 +113843,6 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_containersInput =
113765
113843
  };
113766
113844
  type forwarding_consolsCreateWithoutForwarding_consol_attachmentsInput = {
113767
113845
  id?: bigint | number;
113768
- id_vessel?: bigint | number | null;
113769
113846
  logic_code?: string | null;
113770
113847
  code?: string | null;
113771
113848
  name?: string | null;
@@ -113773,6 +113850,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_attachmentsInput = {
113773
113850
  trip_number?: string | null;
113774
113851
  aircraft_type?: string | null;
113775
113852
  aircraft_registration?: string | null;
113853
+ other_reference?: string | null;
113776
113854
  mawb_number?: string | null;
113777
113855
  bol_number?: string | null;
113778
113856
  carrier_booking_reference?: string | null;
@@ -113792,6 +113870,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_attachmentsInput = {
113792
113870
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
113793
113871
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
113794
113872
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
113873
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
113795
113874
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
113796
113875
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
113797
113876
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -113837,6 +113916,7 @@ type forwarding_consolsUncheckedCreateWithoutForwarding_consol_attachmentsInput
113837
113916
  trip_number?: string | null;
113838
113917
  aircraft_type?: string | null;
113839
113918
  aircraft_registration?: string | null;
113919
+ other_reference?: string | null;
113840
113920
  mawb_number?: string | null;
113841
113921
  bol_number?: string | null;
113842
113922
  carrier_booking_reference?: string | null;
@@ -113872,7 +113952,6 @@ type forwarding_consolsUpdateToOneWithWhereWithoutForwarding_consol_attachmentsI
113872
113952
  };
113873
113953
  type forwarding_consolsUpdateWithoutForwarding_consol_attachmentsInput = {
113874
113954
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
113875
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
113876
113955
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
113877
113956
  code?: NullableStringFieldUpdateOperationsInput | string | null;
113878
113957
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113880,6 +113959,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_attachmentsInput = {
113880
113959
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113881
113960
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113882
113961
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
113962
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113883
113963
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113884
113964
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113885
113965
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113899,6 +113979,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_attachmentsInput = {
113899
113979
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
113900
113980
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
113901
113981
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
113982
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
113902
113983
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
113903
113984
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
113904
113985
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -113944,6 +114025,7 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_attachmentsInput
113944
114025
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
113945
114026
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
113946
114027
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
114028
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
113947
114029
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
113948
114030
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
113949
114031
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -113966,7 +114048,6 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_attachmentsInput
113966
114048
  };
113967
114049
  type forwarding_consolsCreateWithoutForwarding_consol_logsInput = {
113968
114050
  id?: bigint | number;
113969
- id_vessel?: bigint | number | null;
113970
114051
  logic_code?: string | null;
113971
114052
  code?: string | null;
113972
114053
  name?: string | null;
@@ -113974,6 +114055,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_logsInput = {
113974
114055
  trip_number?: string | null;
113975
114056
  aircraft_type?: string | null;
113976
114057
  aircraft_registration?: string | null;
114058
+ other_reference?: string | null;
113977
114059
  mawb_number?: string | null;
113978
114060
  bol_number?: string | null;
113979
114061
  carrier_booking_reference?: string | null;
@@ -113993,6 +114075,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_logsInput = {
113993
114075
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
113994
114076
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
113995
114077
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
114078
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
113996
114079
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
113997
114080
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
113998
114081
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -114038,6 +114121,7 @@ type forwarding_consolsUncheckedCreateWithoutForwarding_consol_logsInput = {
114038
114121
  trip_number?: string | null;
114039
114122
  aircraft_type?: string | null;
114040
114123
  aircraft_registration?: string | null;
114124
+ other_reference?: string | null;
114041
114125
  mawb_number?: string | null;
114042
114126
  bol_number?: string | null;
114043
114127
  carrier_booking_reference?: string | null;
@@ -114073,7 +114157,6 @@ type forwarding_consolsUpdateToOneWithWhereWithoutForwarding_consol_logsInput =
114073
114157
  };
114074
114158
  type forwarding_consolsUpdateWithoutForwarding_consol_logsInput = {
114075
114159
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
114076
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
114077
114160
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
114078
114161
  code?: NullableStringFieldUpdateOperationsInput | string | null;
114079
114162
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -114081,6 +114164,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_logsInput = {
114081
114164
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
114082
114165
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
114083
114166
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
114167
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
114084
114168
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
114085
114169
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
114086
114170
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -114100,6 +114184,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_logsInput = {
114100
114184
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
114101
114185
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
114102
114186
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
114187
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
114103
114188
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
114104
114189
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
114105
114190
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -114145,6 +114230,7 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_logsInput = {
114145
114230
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
114146
114231
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
114147
114232
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
114233
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
114148
114234
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
114149
114235
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
114150
114236
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -114167,7 +114253,6 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_logsInput = {
114167
114253
  };
114168
114254
  type forwarding_consolsCreateWithoutLoad_port_un_locodesInput = {
114169
114255
  id?: bigint | number;
114170
- id_vessel?: bigint | number | null;
114171
114256
  logic_code?: string | null;
114172
114257
  code?: string | null;
114173
114258
  name?: string | null;
@@ -114175,6 +114260,7 @@ type forwarding_consolsCreateWithoutLoad_port_un_locodesInput = {
114175
114260
  trip_number?: string | null;
114176
114261
  aircraft_type?: string | null;
114177
114262
  aircraft_registration?: string | null;
114263
+ other_reference?: string | null;
114178
114264
  mawb_number?: string | null;
114179
114265
  bol_number?: string | null;
114180
114266
  carrier_booking_reference?: string | null;
@@ -114193,6 +114279,7 @@ type forwarding_consolsCreateWithoutLoad_port_un_locodesInput = {
114193
114279
  forwarding_transport_mode?: forwarding_transport_modesCreateNestedOneWithoutForwarding_consolsInput;
114194
114280
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
114195
114281
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
114282
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
114196
114283
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
114197
114284
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
114198
114285
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -114238,6 +114325,7 @@ type forwarding_consolsUncheckedCreateWithoutLoad_port_un_locodesInput = {
114238
114325
  trip_number?: string | null;
114239
114326
  aircraft_type?: string | null;
114240
114327
  aircraft_registration?: string | null;
114328
+ other_reference?: string | null;
114241
114329
  mawb_number?: string | null;
114242
114330
  bol_number?: string | null;
114243
114331
  carrier_booking_reference?: string | null;
@@ -114269,7 +114357,6 @@ type forwarding_consolsCreateManyLoad_port_un_locodesInputEnvelope = {
114269
114357
  };
114270
114358
  type forwarding_consolsCreateWithoutDischarge_port_un_locodesInput = {
114271
114359
  id?: bigint | number;
114272
- id_vessel?: bigint | number | null;
114273
114360
  logic_code?: string | null;
114274
114361
  code?: string | null;
114275
114362
  name?: string | null;
@@ -114277,6 +114364,7 @@ type forwarding_consolsCreateWithoutDischarge_port_un_locodesInput = {
114277
114364
  trip_number?: string | null;
114278
114365
  aircraft_type?: string | null;
114279
114366
  aircraft_registration?: string | null;
114367
+ other_reference?: string | null;
114280
114368
  mawb_number?: string | null;
114281
114369
  bol_number?: string | null;
114282
114370
  carrier_booking_reference?: string | null;
@@ -114295,6 +114383,7 @@ type forwarding_consolsCreateWithoutDischarge_port_un_locodesInput = {
114295
114383
  forwarding_transport_mode?: forwarding_transport_modesCreateNestedOneWithoutForwarding_consolsInput;
114296
114384
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
114297
114385
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
114386
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
114298
114387
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
114299
114388
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
114300
114389
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -114340,6 +114429,7 @@ type forwarding_consolsUncheckedCreateWithoutDischarge_port_un_locodesInput = {
114340
114429
  trip_number?: string | null;
114341
114430
  aircraft_type?: string | null;
114342
114431
  aircraft_registration?: string | null;
114432
+ other_reference?: string | null;
114343
114433
  mawb_number?: string | null;
114344
114434
  bol_number?: string | null;
114345
114435
  carrier_booking_reference?: string | null;
@@ -114412,6 +114502,7 @@ type forwarding_consolsScalarWhereInput = {
114412
114502
  trip_number?: StringNullableFilter<"forwarding_consols"> | string | null;
114413
114503
  aircraft_type?: StringNullableFilter<"forwarding_consols"> | string | null;
114414
114504
  aircraft_registration?: StringNullableFilter<"forwarding_consols"> | string | null;
114505
+ other_reference?: StringNullableFilter<"forwarding_consols"> | string | null;
114415
114506
  mawb_number?: StringNullableFilter<"forwarding_consols"> | string | null;
114416
114507
  bol_number?: StringNullableFilter<"forwarding_consols"> | string | null;
114417
114508
  carrier_booking_reference?: StringNullableFilter<"forwarding_consols"> | string | null;
@@ -114442,7 +114533,6 @@ type forwarding_consolsUpdateManyWithWhereWithoutDischarge_port_un_locodesInput
114442
114533
  };
114443
114534
  type forwarding_consolsCreateWithoutSending_agentInput = {
114444
114535
  id?: bigint | number;
114445
- id_vessel?: bigint | number | null;
114446
114536
  logic_code?: string | null;
114447
114537
  code?: string | null;
114448
114538
  name?: string | null;
@@ -114450,6 +114540,7 @@ type forwarding_consolsCreateWithoutSending_agentInput = {
114450
114540
  trip_number?: string | null;
114451
114541
  aircraft_type?: string | null;
114452
114542
  aircraft_registration?: string | null;
114543
+ other_reference?: string | null;
114453
114544
  mawb_number?: string | null;
114454
114545
  bol_number?: string | null;
114455
114546
  carrier_booking_reference?: string | null;
@@ -114469,6 +114560,7 @@ type forwarding_consolsCreateWithoutSending_agentInput = {
114469
114560
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
114470
114561
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
114471
114562
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
114563
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
114472
114564
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
114473
114565
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
114474
114566
  sending_agent_address?: organization_addressesCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -114513,6 +114605,7 @@ type forwarding_consolsUncheckedCreateWithoutSending_agentInput = {
114513
114605
  trip_number?: string | null;
114514
114606
  aircraft_type?: string | null;
114515
114607
  aircraft_registration?: string | null;
114608
+ other_reference?: string | null;
114516
114609
  mawb_number?: string | null;
114517
114610
  bol_number?: string | null;
114518
114611
  carrier_booking_reference?: string | null;
@@ -114544,7 +114637,6 @@ type forwarding_consolsCreateManySending_agentInputEnvelope = {
114544
114637
  };
114545
114638
  type forwarding_consolsCreateWithoutReceiving_agentInput = {
114546
114639
  id?: bigint | number;
114547
- id_vessel?: bigint | number | null;
114548
114640
  logic_code?: string | null;
114549
114641
  code?: string | null;
114550
114642
  name?: string | null;
@@ -114552,6 +114644,7 @@ type forwarding_consolsCreateWithoutReceiving_agentInput = {
114552
114644
  trip_number?: string | null;
114553
114645
  aircraft_type?: string | null;
114554
114646
  aircraft_registration?: string | null;
114647
+ other_reference?: string | null;
114555
114648
  mawb_number?: string | null;
114556
114649
  bol_number?: string | null;
114557
114650
  carrier_booking_reference?: string | null;
@@ -114571,6 +114664,7 @@ type forwarding_consolsCreateWithoutReceiving_agentInput = {
114571
114664
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
114572
114665
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
114573
114666
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
114667
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
114574
114668
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
114575
114669
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
114576
114670
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -114615,6 +114709,7 @@ type forwarding_consolsUncheckedCreateWithoutReceiving_agentInput = {
114615
114709
  trip_number?: string | null;
114616
114710
  aircraft_type?: string | null;
114617
114711
  aircraft_registration?: string | null;
114712
+ other_reference?: string | null;
114618
114713
  mawb_number?: string | null;
114619
114714
  bol_number?: string | null;
114620
114715
  carrier_booking_reference?: string | null;
@@ -114646,7 +114741,6 @@ type forwarding_consolsCreateManyReceiving_agentInputEnvelope = {
114646
114741
  };
114647
114742
  type forwarding_consolsCreateWithoutCreditor_originInput = {
114648
114743
  id?: bigint | number;
114649
- id_vessel?: bigint | number | null;
114650
114744
  logic_code?: string | null;
114651
114745
  code?: string | null;
114652
114746
  name?: string | null;
@@ -114654,6 +114748,7 @@ type forwarding_consolsCreateWithoutCreditor_originInput = {
114654
114748
  trip_number?: string | null;
114655
114749
  aircraft_type?: string | null;
114656
114750
  aircraft_registration?: string | null;
114751
+ other_reference?: string | null;
114657
114752
  mawb_number?: string | null;
114658
114753
  bol_number?: string | null;
114659
114754
  carrier_booking_reference?: string | null;
@@ -114673,6 +114768,7 @@ type forwarding_consolsCreateWithoutCreditor_originInput = {
114673
114768
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
114674
114769
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
114675
114770
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
114771
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
114676
114772
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
114677
114773
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
114678
114774
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -114717,6 +114813,7 @@ type forwarding_consolsUncheckedCreateWithoutCreditor_originInput = {
114717
114813
  trip_number?: string | null;
114718
114814
  aircraft_type?: string | null;
114719
114815
  aircraft_registration?: string | null;
114816
+ other_reference?: string | null;
114720
114817
  mawb_number?: string | null;
114721
114818
  bol_number?: string | null;
114722
114819
  carrier_booking_reference?: string | null;
@@ -114748,7 +114845,6 @@ type forwarding_consolsCreateManyCreditor_originInputEnvelope = {
114748
114845
  };
114749
114846
  type forwarding_consolsCreateWithoutCreditor_destinationInput = {
114750
114847
  id?: bigint | number;
114751
- id_vessel?: bigint | number | null;
114752
114848
  logic_code?: string | null;
114753
114849
  code?: string | null;
114754
114850
  name?: string | null;
@@ -114756,6 +114852,7 @@ type forwarding_consolsCreateWithoutCreditor_destinationInput = {
114756
114852
  trip_number?: string | null;
114757
114853
  aircraft_type?: string | null;
114758
114854
  aircraft_registration?: string | null;
114855
+ other_reference?: string | null;
114759
114856
  mawb_number?: string | null;
114760
114857
  bol_number?: string | null;
114761
114858
  carrier_booking_reference?: string | null;
@@ -114775,6 +114872,7 @@ type forwarding_consolsCreateWithoutCreditor_destinationInput = {
114775
114872
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
114776
114873
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
114777
114874
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
114875
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
114778
114876
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
114779
114877
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
114780
114878
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -114819,6 +114917,7 @@ type forwarding_consolsUncheckedCreateWithoutCreditor_destinationInput = {
114819
114917
  trip_number?: string | null;
114820
114918
  aircraft_type?: string | null;
114821
114919
  aircraft_registration?: string | null;
114920
+ other_reference?: string | null;
114822
114921
  mawb_number?: string | null;
114823
114922
  bol_number?: string | null;
114824
114923
  carrier_booking_reference?: string | null;
@@ -114902,7 +115001,6 @@ type forwarding_consolsUpdateManyWithWhereWithoutCreditor_destinationInput = {
114902
115001
  };
114903
115002
  type forwarding_consolsCreateWithoutSending_agent_addressInput = {
114904
115003
  id?: bigint | number;
114905
- id_vessel?: bigint | number | null;
114906
115004
  logic_code?: string | null;
114907
115005
  code?: string | null;
114908
115006
  name?: string | null;
@@ -114910,6 +115008,7 @@ type forwarding_consolsCreateWithoutSending_agent_addressInput = {
114910
115008
  trip_number?: string | null;
114911
115009
  aircraft_type?: string | null;
114912
115010
  aircraft_registration?: string | null;
115011
+ other_reference?: string | null;
114913
115012
  mawb_number?: string | null;
114914
115013
  bol_number?: string | null;
114915
115014
  carrier_booking_reference?: string | null;
@@ -114929,6 +115028,7 @@ type forwarding_consolsCreateWithoutSending_agent_addressInput = {
114929
115028
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
114930
115029
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
114931
115030
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115031
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
114932
115032
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
114933
115033
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
114934
115034
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -114973,6 +115073,7 @@ type forwarding_consolsUncheckedCreateWithoutSending_agent_addressInput = {
114973
115073
  trip_number?: string | null;
114974
115074
  aircraft_type?: string | null;
114975
115075
  aircraft_registration?: string | null;
115076
+ other_reference?: string | null;
114976
115077
  mawb_number?: string | null;
114977
115078
  bol_number?: string | null;
114978
115079
  carrier_booking_reference?: string | null;
@@ -115004,7 +115105,6 @@ type forwarding_consolsCreateManySending_agent_addressInputEnvelope = {
115004
115105
  };
115005
115106
  type forwarding_consolsCreateWithoutReceiving_agent_addressInput = {
115006
115107
  id?: bigint | number;
115007
- id_vessel?: bigint | number | null;
115008
115108
  logic_code?: string | null;
115009
115109
  code?: string | null;
115010
115110
  name?: string | null;
@@ -115012,6 +115112,7 @@ type forwarding_consolsCreateWithoutReceiving_agent_addressInput = {
115012
115112
  trip_number?: string | null;
115013
115113
  aircraft_type?: string | null;
115014
115114
  aircraft_registration?: string | null;
115115
+ other_reference?: string | null;
115015
115116
  mawb_number?: string | null;
115016
115117
  bol_number?: string | null;
115017
115118
  carrier_booking_reference?: string | null;
@@ -115031,6 +115132,7 @@ type forwarding_consolsCreateWithoutReceiving_agent_addressInput = {
115031
115132
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115032
115133
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115033
115134
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115135
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115034
115136
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115035
115137
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115036
115138
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -115075,6 +115177,7 @@ type forwarding_consolsUncheckedCreateWithoutReceiving_agent_addressInput = {
115075
115177
  trip_number?: string | null;
115076
115178
  aircraft_type?: string | null;
115077
115179
  aircraft_registration?: string | null;
115180
+ other_reference?: string | null;
115078
115181
  mawb_number?: string | null;
115079
115182
  bol_number?: string | null;
115080
115183
  carrier_booking_reference?: string | null;
@@ -115106,7 +115209,6 @@ type forwarding_consolsCreateManyReceiving_agent_addressInputEnvelope = {
115106
115209
  };
115107
115210
  type forwarding_consolsCreateWithoutCreditor_origin_addressInput = {
115108
115211
  id?: bigint | number;
115109
- id_vessel?: bigint | number | null;
115110
115212
  logic_code?: string | null;
115111
115213
  code?: string | null;
115112
115214
  name?: string | null;
@@ -115114,6 +115216,7 @@ type forwarding_consolsCreateWithoutCreditor_origin_addressInput = {
115114
115216
  trip_number?: string | null;
115115
115217
  aircraft_type?: string | null;
115116
115218
  aircraft_registration?: string | null;
115219
+ other_reference?: string | null;
115117
115220
  mawb_number?: string | null;
115118
115221
  bol_number?: string | null;
115119
115222
  carrier_booking_reference?: string | null;
@@ -115133,6 +115236,7 @@ type forwarding_consolsCreateWithoutCreditor_origin_addressInput = {
115133
115236
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115134
115237
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115135
115238
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115239
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115136
115240
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115137
115241
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115138
115242
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -115177,6 +115281,7 @@ type forwarding_consolsUncheckedCreateWithoutCreditor_origin_addressInput = {
115177
115281
  trip_number?: string | null;
115178
115282
  aircraft_type?: string | null;
115179
115283
  aircraft_registration?: string | null;
115284
+ other_reference?: string | null;
115180
115285
  mawb_number?: string | null;
115181
115286
  bol_number?: string | null;
115182
115287
  carrier_booking_reference?: string | null;
@@ -115208,7 +115313,6 @@ type forwarding_consolsCreateManyCreditor_origin_addressInputEnvelope = {
115208
115313
  };
115209
115314
  type forwarding_consolsCreateWithoutCreditor_destination_addressInput = {
115210
115315
  id?: bigint | number;
115211
- id_vessel?: bigint | number | null;
115212
115316
  logic_code?: string | null;
115213
115317
  code?: string | null;
115214
115318
  name?: string | null;
@@ -115216,6 +115320,7 @@ type forwarding_consolsCreateWithoutCreditor_destination_addressInput = {
115216
115320
  trip_number?: string | null;
115217
115321
  aircraft_type?: string | null;
115218
115322
  aircraft_registration?: string | null;
115323
+ other_reference?: string | null;
115219
115324
  mawb_number?: string | null;
115220
115325
  bol_number?: string | null;
115221
115326
  carrier_booking_reference?: string | null;
@@ -115235,6 +115340,7 @@ type forwarding_consolsCreateWithoutCreditor_destination_addressInput = {
115235
115340
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115236
115341
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115237
115342
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115343
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115238
115344
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115239
115345
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115240
115346
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -115279,6 +115385,7 @@ type forwarding_consolsUncheckedCreateWithoutCreditor_destination_addressInput =
115279
115385
  trip_number?: string | null;
115280
115386
  aircraft_type?: string | null;
115281
115387
  aircraft_registration?: string | null;
115388
+ other_reference?: string | null;
115282
115389
  mawb_number?: string | null;
115283
115390
  bol_number?: string | null;
115284
115391
  carrier_booking_reference?: string | null;
@@ -115362,7 +115469,6 @@ type forwarding_consolsUpdateManyWithWhereWithoutCreditor_destination_addressInp
115362
115469
  };
115363
115470
  type forwarding_consolsCreateWithoutCarrier_airlineInput = {
115364
115471
  id?: bigint | number;
115365
- id_vessel?: bigint | number | null;
115366
115472
  logic_code?: string | null;
115367
115473
  code?: string | null;
115368
115474
  name?: string | null;
@@ -115370,6 +115476,7 @@ type forwarding_consolsCreateWithoutCarrier_airlineInput = {
115370
115476
  trip_number?: string | null;
115371
115477
  aircraft_type?: string | null;
115372
115478
  aircraft_registration?: string | null;
115479
+ other_reference?: string | null;
115373
115480
  mawb_number?: string | null;
115374
115481
  bol_number?: string | null;
115375
115482
  carrier_booking_reference?: string | null;
@@ -115389,6 +115496,7 @@ type forwarding_consolsCreateWithoutCarrier_airlineInput = {
115389
115496
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115390
115497
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115391
115498
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115499
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115392
115500
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115393
115501
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115394
115502
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -115433,6 +115541,7 @@ type forwarding_consolsUncheckedCreateWithoutCarrier_airlineInput = {
115433
115541
  trip_number?: string | null;
115434
115542
  aircraft_type?: string | null;
115435
115543
  aircraft_registration?: string | null;
115544
+ other_reference?: string | null;
115436
115545
  mawb_number?: string | null;
115437
115546
  bol_number?: string | null;
115438
115547
  carrier_booking_reference?: string | null;
@@ -115477,7 +115586,6 @@ type forwarding_consolsUpdateManyWithWhereWithoutCarrier_airlineInput = {
115477
115586
  };
115478
115587
  type forwarding_consolsCreateWithoutCarrier_shipping_lineInput = {
115479
115588
  id?: bigint | number;
115480
- id_vessel?: bigint | number | null;
115481
115589
  logic_code?: string | null;
115482
115590
  code?: string | null;
115483
115591
  name?: string | null;
@@ -115485,6 +115593,7 @@ type forwarding_consolsCreateWithoutCarrier_shipping_lineInput = {
115485
115593
  trip_number?: string | null;
115486
115594
  aircraft_type?: string | null;
115487
115595
  aircraft_registration?: string | null;
115596
+ other_reference?: string | null;
115488
115597
  mawb_number?: string | null;
115489
115598
  bol_number?: string | null;
115490
115599
  carrier_booking_reference?: string | null;
@@ -115504,6 +115613,7 @@ type forwarding_consolsCreateWithoutCarrier_shipping_lineInput = {
115504
115613
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115505
115614
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115506
115615
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115616
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115507
115617
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115508
115618
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115509
115619
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -115548,6 +115658,7 @@ type forwarding_consolsUncheckedCreateWithoutCarrier_shipping_lineInput = {
115548
115658
  trip_number?: string | null;
115549
115659
  aircraft_type?: string | null;
115550
115660
  aircraft_registration?: string | null;
115661
+ other_reference?: string | null;
115551
115662
  mawb_number?: string | null;
115552
115663
  bol_number?: string | null;
115553
115664
  carrier_booking_reference?: string | null;
@@ -115592,7 +115703,6 @@ type forwarding_consolsUpdateManyWithWhereWithoutCarrier_shipping_lineInput = {
115592
115703
  };
115593
115704
  type forwarding_consolsCreateWithoutService_levelInput = {
115594
115705
  id?: bigint | number;
115595
- id_vessel?: bigint | number | null;
115596
115706
  logic_code?: string | null;
115597
115707
  code?: string | null;
115598
115708
  name?: string | null;
@@ -115600,6 +115710,7 @@ type forwarding_consolsCreateWithoutService_levelInput = {
115600
115710
  trip_number?: string | null;
115601
115711
  aircraft_type?: string | null;
115602
115712
  aircraft_registration?: string | null;
115713
+ other_reference?: string | null;
115603
115714
  mawb_number?: string | null;
115604
115715
  bol_number?: string | null;
115605
115716
  carrier_booking_reference?: string | null;
@@ -115619,6 +115730,7 @@ type forwarding_consolsCreateWithoutService_levelInput = {
115619
115730
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115620
115731
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115621
115732
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115733
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115622
115734
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115623
115735
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
115624
115736
  sending_agent_address?: organization_addressesCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -115663,6 +115775,7 @@ type forwarding_consolsUncheckedCreateWithoutService_levelInput = {
115663
115775
  trip_number?: string | null;
115664
115776
  aircraft_type?: string | null;
115665
115777
  aircraft_registration?: string | null;
115778
+ other_reference?: string | null;
115666
115779
  mawb_number?: string | null;
115667
115780
  bol_number?: string | null;
115668
115781
  carrier_booking_reference?: string | null;
@@ -115705,9 +115818,125 @@ type forwarding_consolsUpdateManyWithWhereWithoutService_levelInput = {
115705
115818
  where: forwarding_consolsScalarWhereInput;
115706
115819
  data: XOR<forwarding_consolsUpdateManyMutationInput, forwarding_consolsUncheckedUpdateManyWithoutService_levelInput>;
115707
115820
  };
115821
+ type forwarding_consolsCreateWithoutVesselInput = {
115822
+ id?: bigint | number;
115823
+ logic_code?: string | null;
115824
+ code?: string | null;
115825
+ name?: string | null;
115826
+ consol_number?: string | null;
115827
+ trip_number?: string | null;
115828
+ aircraft_type?: string | null;
115829
+ aircraft_registration?: string | null;
115830
+ other_reference?: string | null;
115831
+ mawb_number?: string | null;
115832
+ bol_number?: string | null;
115833
+ carrier_booking_reference?: string | null;
115834
+ agent_reference?: string | null;
115835
+ estimated_departure?: Date | string | null;
115836
+ estimated_arrival?: Date | string | null;
115837
+ actual_departure?: Date | string | null;
115838
+ actual_arrival?: Date | string | null;
115839
+ is_active?: boolean | null;
115840
+ is_neutral_mawb?: boolean | null;
115841
+ created_at?: Date | string | null;
115842
+ created_by?: string | null;
115843
+ updated_at?: Date | string | null;
115844
+ updated_by?: string | null;
115845
+ forwarding_consol_type?: forwarding_consol_typesCreateNestedOneWithoutForwarding_consolsInput;
115846
+ forwarding_transport_mode?: forwarding_transport_modesCreateNestedOneWithoutForwarding_consolsInput;
115847
+ container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115848
+ load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115849
+ discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115850
+ service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115851
+ payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115852
+ sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
115853
+ sending_agent_address?: organization_addressesCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
115854
+ receiving_agent?: organizationsCreateNestedOneWithoutForwarding_consol_receiving_agentsInput;
115855
+ receiving_agent_address?: organization_addressesCreateNestedOneWithoutForwarding_consol_receiving_agentsInput;
115856
+ carrier_shipping_line?: shipping_linesCreateNestedOneWithoutForwarding_consolsInput;
115857
+ carrier_airline?: airlinesCreateNestedOneWithoutForwarding_consolsInput;
115858
+ creditor_origin?: organizationsCreateNestedOneWithoutForwarding_consol_creditor_originsInput;
115859
+ creditor_origin_address?: organization_addressesCreateNestedOneWithoutForwarding_consol_creditor_originsInput;
115860
+ creditor_destination?: organizationsCreateNestedOneWithoutForwarding_consol_creditor_destinationsInput;
115861
+ creditor_destination_address?: organization_addressesCreateNestedOneWithoutForwarding_consol_creditor_destinationsInput;
115862
+ forwarding_consol_logs?: forwarding_consol_logsCreateNestedManyWithoutForwarding_consolInput;
115863
+ forwarding_consol_reference_numbers?: forwarding_consol_reference_numbersCreateNestedManyWithoutForwarding_consolInput;
115864
+ forwarding_consol_routings?: forwarding_consol_routingsCreateNestedManyWithoutForwarding_consolInput;
115865
+ forwarding_consol_attachments?: forwarding_consol_attachmentsCreateNestedManyWithoutForwarding_consolsInput;
115866
+ forwarding_consol_billing_details?: forwarding_consol_billing_detailsCreateNestedManyWithoutForwarding_consolInput;
115867
+ forwarding_consol_containers?: forwarding_consol_containersCreateNestedManyWithoutForwarding_consolInput;
115868
+ };
115869
+ type forwarding_consolsUncheckedCreateWithoutVesselInput = {
115870
+ id?: bigint | number;
115871
+ id_type?: bigint | number | null;
115872
+ id_transport_mode?: bigint | number | null;
115873
+ id_container_shipping_type?: bigint | number | null;
115874
+ id_load_port?: bigint | number | null;
115875
+ id_discharge_port?: bigint | number | null;
115876
+ id_service_level?: bigint | number | null;
115877
+ id_payment_type?: bigint | number | null;
115878
+ id_sending_agent?: bigint | number | null;
115879
+ id_sending_agent_address?: bigint | number | null;
115880
+ id_receiving_agent?: bigint | number | null;
115881
+ id_receiving_agent_address?: bigint | number | null;
115882
+ id_carrier_shipping_line?: bigint | number | null;
115883
+ id_carrier_airline?: bigint | number | null;
115884
+ id_creditor_origin?: bigint | number | null;
115885
+ id_creditor_origin_address?: bigint | number | null;
115886
+ id_creditor_destination?: bigint | number | null;
115887
+ id_creditor_destination_address?: bigint | number | null;
115888
+ logic_code?: string | null;
115889
+ code?: string | null;
115890
+ name?: string | null;
115891
+ consol_number?: string | null;
115892
+ trip_number?: string | null;
115893
+ aircraft_type?: string | null;
115894
+ aircraft_registration?: string | null;
115895
+ other_reference?: string | null;
115896
+ mawb_number?: string | null;
115897
+ bol_number?: string | null;
115898
+ carrier_booking_reference?: string | null;
115899
+ agent_reference?: string | null;
115900
+ estimated_departure?: Date | string | null;
115901
+ estimated_arrival?: Date | string | null;
115902
+ actual_departure?: Date | string | null;
115903
+ actual_arrival?: Date | string | null;
115904
+ is_active?: boolean | null;
115905
+ is_neutral_mawb?: boolean | null;
115906
+ created_at?: Date | string | null;
115907
+ created_by?: string | null;
115908
+ updated_at?: Date | string | null;
115909
+ updated_by?: string | null;
115910
+ forwarding_consol_logs?: forwarding_consol_logsUncheckedCreateNestedManyWithoutForwarding_consolInput;
115911
+ forwarding_consol_reference_numbers?: forwarding_consol_reference_numbersUncheckedCreateNestedManyWithoutForwarding_consolInput;
115912
+ forwarding_consol_routings?: forwarding_consol_routingsUncheckedCreateNestedManyWithoutForwarding_consolInput;
115913
+ forwarding_consol_attachments?: forwarding_consol_attachmentsUncheckedCreateNestedManyWithoutForwarding_consolsInput;
115914
+ forwarding_consol_billing_details?: forwarding_consol_billing_detailsUncheckedCreateNestedManyWithoutForwarding_consolInput;
115915
+ forwarding_consol_containers?: forwarding_consol_containersUncheckedCreateNestedManyWithoutForwarding_consolInput;
115916
+ };
115917
+ type forwarding_consolsCreateOrConnectWithoutVesselInput = {
115918
+ where: forwarding_consolsWhereUniqueInput;
115919
+ create: XOR<forwarding_consolsCreateWithoutVesselInput, forwarding_consolsUncheckedCreateWithoutVesselInput>;
115920
+ };
115921
+ type forwarding_consolsCreateManyVesselInputEnvelope = {
115922
+ data: forwarding_consolsCreateManyVesselInput | forwarding_consolsCreateManyVesselInput[];
115923
+ skipDuplicates?: boolean;
115924
+ };
115925
+ type forwarding_consolsUpsertWithWhereUniqueWithoutVesselInput = {
115926
+ where: forwarding_consolsWhereUniqueInput;
115927
+ update: XOR<forwarding_consolsUpdateWithoutVesselInput, forwarding_consolsUncheckedUpdateWithoutVesselInput>;
115928
+ create: XOR<forwarding_consolsCreateWithoutVesselInput, forwarding_consolsUncheckedCreateWithoutVesselInput>;
115929
+ };
115930
+ type forwarding_consolsUpdateWithWhereUniqueWithoutVesselInput = {
115931
+ where: forwarding_consolsWhereUniqueInput;
115932
+ data: XOR<forwarding_consolsUpdateWithoutVesselInput, forwarding_consolsUncheckedUpdateWithoutVesselInput>;
115933
+ };
115934
+ type forwarding_consolsUpdateManyWithWhereWithoutVesselInput = {
115935
+ where: forwarding_consolsScalarWhereInput;
115936
+ data: XOR<forwarding_consolsUpdateManyMutationInput, forwarding_consolsUncheckedUpdateManyWithoutVesselInput>;
115937
+ };
115708
115938
  type forwarding_consolsCreateWithoutPayment_typeInput = {
115709
115939
  id?: bigint | number;
115710
- id_vessel?: bigint | number | null;
115711
115940
  logic_code?: string | null;
115712
115941
  code?: string | null;
115713
115942
  name?: string | null;
@@ -115715,6 +115944,7 @@ type forwarding_consolsCreateWithoutPayment_typeInput = {
115715
115944
  trip_number?: string | null;
115716
115945
  aircraft_type?: string | null;
115717
115946
  aircraft_registration?: string | null;
115947
+ other_reference?: string | null;
115718
115948
  mawb_number?: string | null;
115719
115949
  bol_number?: string | null;
115720
115950
  carrier_booking_reference?: string | null;
@@ -115734,6 +115964,7 @@ type forwarding_consolsCreateWithoutPayment_typeInput = {
115734
115964
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115735
115965
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115736
115966
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
115967
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115737
115968
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115738
115969
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
115739
115970
  sending_agent_address?: organization_addressesCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -115778,6 +116009,7 @@ type forwarding_consolsUncheckedCreateWithoutPayment_typeInput = {
115778
116009
  trip_number?: string | null;
115779
116010
  aircraft_type?: string | null;
115780
116011
  aircraft_registration?: string | null;
116012
+ other_reference?: string | null;
115781
116013
  mawb_number?: string | null;
115782
116014
  bol_number?: string | null;
115783
116015
  carrier_booking_reference?: string | null;
@@ -115822,7 +116054,6 @@ type forwarding_consolsUpdateManyWithWhereWithoutPayment_typeInput = {
115822
116054
  };
115823
116055
  type forwarding_consolsCreateWithoutForwarding_transport_modeInput = {
115824
116056
  id?: bigint | number;
115825
- id_vessel?: bigint | number | null;
115826
116057
  logic_code?: string | null;
115827
116058
  code?: string | null;
115828
116059
  name?: string | null;
@@ -115830,6 +116061,7 @@ type forwarding_consolsCreateWithoutForwarding_transport_modeInput = {
115830
116061
  trip_number?: string | null;
115831
116062
  aircraft_type?: string | null;
115832
116063
  aircraft_registration?: string | null;
116064
+ other_reference?: string | null;
115833
116065
  mawb_number?: string | null;
115834
116066
  bol_number?: string | null;
115835
116067
  carrier_booking_reference?: string | null;
@@ -115848,6 +116080,7 @@ type forwarding_consolsCreateWithoutForwarding_transport_modeInput = {
115848
116080
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
115849
116081
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115850
116082
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
116083
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115851
116084
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115852
116085
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115853
116086
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -115893,6 +116126,7 @@ type forwarding_consolsUncheckedCreateWithoutForwarding_transport_modeInput = {
115893
116126
  trip_number?: string | null;
115894
116127
  aircraft_type?: string | null;
115895
116128
  aircraft_registration?: string | null;
116129
+ other_reference?: string | null;
115896
116130
  mawb_number?: string | null;
115897
116131
  bol_number?: string | null;
115898
116132
  carrier_booking_reference?: string | null;
@@ -115937,7 +116171,6 @@ type forwarding_consolsUpdateManyWithWhereWithoutForwarding_transport_modeInput
115937
116171
  };
115938
116172
  type forwarding_consolsCreateWithoutContainer_shipping_typesInput = {
115939
116173
  id?: bigint | number;
115940
- id_vessel?: bigint | number | null;
115941
116174
  logic_code?: string | null;
115942
116175
  code?: string | null;
115943
116176
  name?: string | null;
@@ -115945,6 +116178,7 @@ type forwarding_consolsCreateWithoutContainer_shipping_typesInput = {
115945
116178
  trip_number?: string | null;
115946
116179
  aircraft_type?: string | null;
115947
116180
  aircraft_registration?: string | null;
116181
+ other_reference?: string | null;
115948
116182
  mawb_number?: string | null;
115949
116183
  bol_number?: string | null;
115950
116184
  carrier_booking_reference?: string | null;
@@ -115963,6 +116197,7 @@ type forwarding_consolsCreateWithoutContainer_shipping_typesInput = {
115963
116197
  forwarding_transport_mode?: forwarding_transport_modesCreateNestedOneWithoutForwarding_consolsInput;
115964
116198
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
115965
116199
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
116200
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
115966
116201
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
115967
116202
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
115968
116203
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -116008,6 +116243,7 @@ type forwarding_consolsUncheckedCreateWithoutContainer_shipping_typesInput = {
116008
116243
  trip_number?: string | null;
116009
116244
  aircraft_type?: string | null;
116010
116245
  aircraft_registration?: string | null;
116246
+ other_reference?: string | null;
116011
116247
  mawb_number?: string | null;
116012
116248
  bol_number?: string | null;
116013
116249
  carrier_booking_reference?: string | null;
@@ -116052,7 +116288,6 @@ type forwarding_consolsUpdateManyWithWhereWithoutContainer_shipping_typesInput =
116052
116288
  };
116053
116289
  type forwarding_consolsCreateWithoutForwarding_consol_typeInput = {
116054
116290
  id?: bigint | number;
116055
- id_vessel?: bigint | number | null;
116056
116291
  logic_code?: string | null;
116057
116292
  code?: string | null;
116058
116293
  name?: string | null;
@@ -116060,6 +116295,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_typeInput = {
116060
116295
  trip_number?: string | null;
116061
116296
  aircraft_type?: string | null;
116062
116297
  aircraft_registration?: string | null;
116298
+ other_reference?: string | null;
116063
116299
  mawb_number?: string | null;
116064
116300
  bol_number?: string | null;
116065
116301
  carrier_booking_reference?: string | null;
@@ -116078,6 +116314,7 @@ type forwarding_consolsCreateWithoutForwarding_consol_typeInput = {
116078
116314
  container_shipping_types?: container_shipping_typesCreateNestedOneWithoutForwarding_consolsInput;
116079
116315
  load_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_load_portInput;
116080
116316
  discharge_port_un_locodes?: un_locodesCreateNestedOneWithoutForwarding_consol_discharge_portInput;
116317
+ vessel?: vesselsCreateNestedOneWithoutForwarding_consolsInput;
116081
116318
  service_level?: service_levelsCreateNestedOneWithoutForwarding_consolsInput;
116082
116319
  payment_type?: payment_typesCreateNestedOneWithoutForwarding_consolsInput;
116083
116320
  sending_agent?: organizationsCreateNestedOneWithoutForwarding_consol_sending_agentsInput;
@@ -116123,6 +116360,7 @@ type forwarding_consolsUncheckedCreateWithoutForwarding_consol_typeInput = {
116123
116360
  trip_number?: string | null;
116124
116361
  aircraft_type?: string | null;
116125
116362
  aircraft_registration?: string | null;
116363
+ other_reference?: string | null;
116126
116364
  mawb_number?: string | null;
116127
116365
  bol_number?: string | null;
116128
116366
  carrier_booking_reference?: string | null;
@@ -116191,6 +116429,7 @@ type forwarding_consolsCreateManyLoad_port_un_locodesInput = {
116191
116429
  trip_number?: string | null;
116192
116430
  aircraft_type?: string | null;
116193
116431
  aircraft_registration?: string | null;
116432
+ other_reference?: string | null;
116194
116433
  mawb_number?: string | null;
116195
116434
  bol_number?: string | null;
116196
116435
  carrier_booking_reference?: string | null;
@@ -116232,6 +116471,7 @@ type forwarding_consolsCreateManyDischarge_port_un_locodesInput = {
116232
116471
  trip_number?: string | null;
116233
116472
  aircraft_type?: string | null;
116234
116473
  aircraft_registration?: string | null;
116474
+ other_reference?: string | null;
116235
116475
  mawb_number?: string | null;
116236
116476
  bol_number?: string | null;
116237
116477
  carrier_booking_reference?: string | null;
@@ -116249,7 +116489,6 @@ type forwarding_consolsCreateManyDischarge_port_un_locodesInput = {
116249
116489
  };
116250
116490
  type forwarding_consolsUpdateWithoutLoad_port_un_locodesInput = {
116251
116491
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
116252
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
116253
116492
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
116254
116493
  code?: NullableStringFieldUpdateOperationsInput | string | null;
116255
116494
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116257,6 +116496,7 @@ type forwarding_consolsUpdateWithoutLoad_port_un_locodesInput = {
116257
116496
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116258
116497
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116259
116498
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
116499
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116260
116500
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116261
116501
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116262
116502
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116275,6 +116515,7 @@ type forwarding_consolsUpdateWithoutLoad_port_un_locodesInput = {
116275
116515
  forwarding_transport_mode?: forwarding_transport_modesUpdateOneWithoutForwarding_consolsNestedInput;
116276
116516
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
116277
116517
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
116518
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
116278
116519
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
116279
116520
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
116280
116521
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -116320,6 +116561,7 @@ type forwarding_consolsUncheckedUpdateWithoutLoad_port_un_locodesInput = {
116320
116561
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116321
116562
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116322
116563
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
116564
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116323
116565
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116324
116566
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116325
116567
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116367,6 +116609,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutLoad_port_un_locodesInput = {
116367
116609
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116368
116610
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116369
116611
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
116612
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116370
116613
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116371
116614
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116372
116615
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116384,7 +116627,6 @@ type forwarding_consolsUncheckedUpdateManyWithoutLoad_port_un_locodesInput = {
116384
116627
  };
116385
116628
  type forwarding_consolsUpdateWithoutDischarge_port_un_locodesInput = {
116386
116629
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
116387
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
116388
116630
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
116389
116631
  code?: NullableStringFieldUpdateOperationsInput | string | null;
116390
116632
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116392,6 +116634,7 @@ type forwarding_consolsUpdateWithoutDischarge_port_un_locodesInput = {
116392
116634
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116393
116635
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116394
116636
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
116637
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116395
116638
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116396
116639
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116397
116640
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116410,6 +116653,7 @@ type forwarding_consolsUpdateWithoutDischarge_port_un_locodesInput = {
116410
116653
  forwarding_transport_mode?: forwarding_transport_modesUpdateOneWithoutForwarding_consolsNestedInput;
116411
116654
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
116412
116655
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
116656
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
116413
116657
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
116414
116658
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
116415
116659
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -116455,6 +116699,7 @@ type forwarding_consolsUncheckedUpdateWithoutDischarge_port_un_locodesInput = {
116455
116699
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116456
116700
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116457
116701
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
116702
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116458
116703
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116459
116704
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116460
116705
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116502,6 +116747,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutDischarge_port_un_locodesInput
116502
116747
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116503
116748
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116504
116749
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
116750
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116505
116751
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116506
116752
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116507
116753
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116543,6 +116789,7 @@ type forwarding_consolsCreateManySending_agentInput = {
116543
116789
  trip_number?: string | null;
116544
116790
  aircraft_type?: string | null;
116545
116791
  aircraft_registration?: string | null;
116792
+ other_reference?: string | null;
116546
116793
  mawb_number?: string | null;
116547
116794
  bol_number?: string | null;
116548
116795
  carrier_booking_reference?: string | null;
@@ -116584,6 +116831,7 @@ type forwarding_consolsCreateManyReceiving_agentInput = {
116584
116831
  trip_number?: string | null;
116585
116832
  aircraft_type?: string | null;
116586
116833
  aircraft_registration?: string | null;
116834
+ other_reference?: string | null;
116587
116835
  mawb_number?: string | null;
116588
116836
  bol_number?: string | null;
116589
116837
  carrier_booking_reference?: string | null;
@@ -116625,6 +116873,7 @@ type forwarding_consolsCreateManyCreditor_originInput = {
116625
116873
  trip_number?: string | null;
116626
116874
  aircraft_type?: string | null;
116627
116875
  aircraft_registration?: string | null;
116876
+ other_reference?: string | null;
116628
116877
  mawb_number?: string | null;
116629
116878
  bol_number?: string | null;
116630
116879
  carrier_booking_reference?: string | null;
@@ -116666,6 +116915,7 @@ type forwarding_consolsCreateManyCreditor_destinationInput = {
116666
116915
  trip_number?: string | null;
116667
116916
  aircraft_type?: string | null;
116668
116917
  aircraft_registration?: string | null;
116918
+ other_reference?: string | null;
116669
116919
  mawb_number?: string | null;
116670
116920
  bol_number?: string | null;
116671
116921
  carrier_booking_reference?: string | null;
@@ -116683,7 +116933,6 @@ type forwarding_consolsCreateManyCreditor_destinationInput = {
116683
116933
  };
116684
116934
  type forwarding_consolsUpdateWithoutSending_agentInput = {
116685
116935
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
116686
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
116687
116936
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
116688
116937
  code?: NullableStringFieldUpdateOperationsInput | string | null;
116689
116938
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116691,6 +116940,7 @@ type forwarding_consolsUpdateWithoutSending_agentInput = {
116691
116940
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116692
116941
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116693
116942
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
116943
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116694
116944
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116695
116945
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116696
116946
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116710,6 +116960,7 @@ type forwarding_consolsUpdateWithoutSending_agentInput = {
116710
116960
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
116711
116961
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
116712
116962
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
116963
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
116713
116964
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
116714
116965
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
116715
116966
  sending_agent_address?: organization_addressesUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -116754,6 +117005,7 @@ type forwarding_consolsUncheckedUpdateWithoutSending_agentInput = {
116754
117005
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116755
117006
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116756
117007
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117008
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116757
117009
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116758
117010
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116759
117011
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116801,6 +117053,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutSending_agentInput = {
116801
117053
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116802
117054
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116803
117055
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117056
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116804
117057
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116805
117058
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116806
117059
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116818,7 +117071,6 @@ type forwarding_consolsUncheckedUpdateManyWithoutSending_agentInput = {
116818
117071
  };
116819
117072
  type forwarding_consolsUpdateWithoutReceiving_agentInput = {
116820
117073
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
116821
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
116822
117074
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
116823
117075
  code?: NullableStringFieldUpdateOperationsInput | string | null;
116824
117076
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116826,6 +117078,7 @@ type forwarding_consolsUpdateWithoutReceiving_agentInput = {
116826
117078
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116827
117079
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116828
117080
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117081
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116829
117082
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116830
117083
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116831
117084
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116845,6 +117098,7 @@ type forwarding_consolsUpdateWithoutReceiving_agentInput = {
116845
117098
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
116846
117099
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
116847
117100
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
117101
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
116848
117102
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
116849
117103
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
116850
117104
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -116889,6 +117143,7 @@ type forwarding_consolsUncheckedUpdateWithoutReceiving_agentInput = {
116889
117143
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116890
117144
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116891
117145
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117146
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116892
117147
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116893
117148
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116894
117149
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116936,6 +117191,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutReceiving_agentInput = {
116936
117191
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116937
117192
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116938
117193
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117194
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116939
117195
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116940
117196
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116941
117197
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116953,7 +117209,6 @@ type forwarding_consolsUncheckedUpdateManyWithoutReceiving_agentInput = {
116953
117209
  };
116954
117210
  type forwarding_consolsUpdateWithoutCreditor_originInput = {
116955
117211
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
116956
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
116957
117212
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
116958
117213
  code?: NullableStringFieldUpdateOperationsInput | string | null;
116959
117214
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116961,6 +117216,7 @@ type forwarding_consolsUpdateWithoutCreditor_originInput = {
116961
117216
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
116962
117217
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
116963
117218
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117219
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
116964
117220
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
116965
117221
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
116966
117222
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -116980,6 +117236,7 @@ type forwarding_consolsUpdateWithoutCreditor_originInput = {
116980
117236
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
116981
117237
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
116982
117238
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
117239
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
116983
117240
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
116984
117241
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
116985
117242
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -117024,6 +117281,7 @@ type forwarding_consolsUncheckedUpdateWithoutCreditor_originInput = {
117024
117281
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117025
117282
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117026
117283
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117284
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117027
117285
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117028
117286
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117029
117287
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117071,6 +117329,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutCreditor_originInput = {
117071
117329
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117072
117330
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117073
117331
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117332
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117074
117333
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117075
117334
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117076
117335
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117088,7 +117347,6 @@ type forwarding_consolsUncheckedUpdateManyWithoutCreditor_originInput = {
117088
117347
  };
117089
117348
  type forwarding_consolsUpdateWithoutCreditor_destinationInput = {
117090
117349
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
117091
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
117092
117350
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
117093
117351
  code?: NullableStringFieldUpdateOperationsInput | string | null;
117094
117352
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117096,6 +117354,7 @@ type forwarding_consolsUpdateWithoutCreditor_destinationInput = {
117096
117354
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117097
117355
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117098
117356
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117357
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117099
117358
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117100
117359
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117101
117360
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117115,6 +117374,7 @@ type forwarding_consolsUpdateWithoutCreditor_destinationInput = {
117115
117374
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
117116
117375
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
117117
117376
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
117377
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
117118
117378
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
117119
117379
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
117120
117380
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -117159,6 +117419,7 @@ type forwarding_consolsUncheckedUpdateWithoutCreditor_destinationInput = {
117159
117419
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117160
117420
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117161
117421
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117422
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117162
117423
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117163
117424
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117164
117425
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117206,6 +117467,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutCreditor_destinationInput = {
117206
117467
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117207
117468
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117208
117469
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117470
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117209
117471
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117210
117472
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117211
117473
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117247,6 +117509,7 @@ type forwarding_consolsCreateManySending_agent_addressInput = {
117247
117509
  trip_number?: string | null;
117248
117510
  aircraft_type?: string | null;
117249
117511
  aircraft_registration?: string | null;
117512
+ other_reference?: string | null;
117250
117513
  mawb_number?: string | null;
117251
117514
  bol_number?: string | null;
117252
117515
  carrier_booking_reference?: string | null;
@@ -117288,6 +117551,7 @@ type forwarding_consolsCreateManyReceiving_agent_addressInput = {
117288
117551
  trip_number?: string | null;
117289
117552
  aircraft_type?: string | null;
117290
117553
  aircraft_registration?: string | null;
117554
+ other_reference?: string | null;
117291
117555
  mawb_number?: string | null;
117292
117556
  bol_number?: string | null;
117293
117557
  carrier_booking_reference?: string | null;
@@ -117329,6 +117593,7 @@ type forwarding_consolsCreateManyCreditor_origin_addressInput = {
117329
117593
  trip_number?: string | null;
117330
117594
  aircraft_type?: string | null;
117331
117595
  aircraft_registration?: string | null;
117596
+ other_reference?: string | null;
117332
117597
  mawb_number?: string | null;
117333
117598
  bol_number?: string | null;
117334
117599
  carrier_booking_reference?: string | null;
@@ -117370,6 +117635,7 @@ type forwarding_consolsCreateManyCreditor_destination_addressInput = {
117370
117635
  trip_number?: string | null;
117371
117636
  aircraft_type?: string | null;
117372
117637
  aircraft_registration?: string | null;
117638
+ other_reference?: string | null;
117373
117639
  mawb_number?: string | null;
117374
117640
  bol_number?: string | null;
117375
117641
  carrier_booking_reference?: string | null;
@@ -117387,7 +117653,6 @@ type forwarding_consolsCreateManyCreditor_destination_addressInput = {
117387
117653
  };
117388
117654
  type forwarding_consolsUpdateWithoutSending_agent_addressInput = {
117389
117655
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
117390
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
117391
117656
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
117392
117657
  code?: NullableStringFieldUpdateOperationsInput | string | null;
117393
117658
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117395,6 +117660,7 @@ type forwarding_consolsUpdateWithoutSending_agent_addressInput = {
117395
117660
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117396
117661
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117397
117662
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117663
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117398
117664
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117399
117665
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117400
117666
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117414,6 +117680,7 @@ type forwarding_consolsUpdateWithoutSending_agent_addressInput = {
117414
117680
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
117415
117681
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
117416
117682
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
117683
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
117417
117684
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
117418
117685
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
117419
117686
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -117458,6 +117725,7 @@ type forwarding_consolsUncheckedUpdateWithoutSending_agent_addressInput = {
117458
117725
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117459
117726
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117460
117727
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117728
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117461
117729
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117462
117730
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117463
117731
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117505,6 +117773,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutSending_agent_addressInput = {
117505
117773
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117506
117774
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117507
117775
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117776
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117508
117777
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117509
117778
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117510
117779
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117522,7 +117791,6 @@ type forwarding_consolsUncheckedUpdateManyWithoutSending_agent_addressInput = {
117522
117791
  };
117523
117792
  type forwarding_consolsUpdateWithoutReceiving_agent_addressInput = {
117524
117793
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
117525
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
117526
117794
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
117527
117795
  code?: NullableStringFieldUpdateOperationsInput | string | null;
117528
117796
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117530,6 +117798,7 @@ type forwarding_consolsUpdateWithoutReceiving_agent_addressInput = {
117530
117798
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117531
117799
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117532
117800
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117801
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117533
117802
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117534
117803
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117535
117804
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117549,6 +117818,7 @@ type forwarding_consolsUpdateWithoutReceiving_agent_addressInput = {
117549
117818
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
117550
117819
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
117551
117820
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
117821
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
117552
117822
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
117553
117823
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
117554
117824
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -117593,6 +117863,7 @@ type forwarding_consolsUncheckedUpdateWithoutReceiving_agent_addressInput = {
117593
117863
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117594
117864
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117595
117865
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117866
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117596
117867
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117597
117868
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117598
117869
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117640,6 +117911,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutReceiving_agent_addressInput =
117640
117911
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117641
117912
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117642
117913
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117914
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117643
117915
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117644
117916
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117645
117917
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117657,7 +117929,6 @@ type forwarding_consolsUncheckedUpdateManyWithoutReceiving_agent_addressInput =
117657
117929
  };
117658
117930
  type forwarding_consolsUpdateWithoutCreditor_origin_addressInput = {
117659
117931
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
117660
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
117661
117932
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
117662
117933
  code?: NullableStringFieldUpdateOperationsInput | string | null;
117663
117934
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117665,6 +117936,7 @@ type forwarding_consolsUpdateWithoutCreditor_origin_addressInput = {
117665
117936
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117666
117937
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117667
117938
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
117939
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117668
117940
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117669
117941
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117670
117942
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117684,6 +117956,7 @@ type forwarding_consolsUpdateWithoutCreditor_origin_addressInput = {
117684
117956
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
117685
117957
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
117686
117958
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
117959
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
117687
117960
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
117688
117961
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
117689
117962
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -117728,6 +118001,7 @@ type forwarding_consolsUncheckedUpdateWithoutCreditor_origin_addressInput = {
117728
118001
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117729
118002
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117730
118003
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118004
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117731
118005
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117732
118006
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117733
118007
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117775,6 +118049,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutCreditor_origin_addressInput =
117775
118049
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117776
118050
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117777
118051
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118052
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117778
118053
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117779
118054
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117780
118055
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117792,7 +118067,6 @@ type forwarding_consolsUncheckedUpdateManyWithoutCreditor_origin_addressInput =
117792
118067
  };
117793
118068
  type forwarding_consolsUpdateWithoutCreditor_destination_addressInput = {
117794
118069
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
117795
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
117796
118070
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
117797
118071
  code?: NullableStringFieldUpdateOperationsInput | string | null;
117798
118072
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117800,6 +118074,7 @@ type forwarding_consolsUpdateWithoutCreditor_destination_addressInput = {
117800
118074
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117801
118075
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117802
118076
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118077
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117803
118078
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117804
118079
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117805
118080
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117819,6 +118094,7 @@ type forwarding_consolsUpdateWithoutCreditor_destination_addressInput = {
117819
118094
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
117820
118095
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
117821
118096
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
118097
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
117822
118098
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
117823
118099
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
117824
118100
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -117863,6 +118139,7 @@ type forwarding_consolsUncheckedUpdateWithoutCreditor_destination_addressInput =
117863
118139
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117864
118140
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117865
118141
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118142
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117866
118143
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117867
118144
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117868
118145
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117910,6 +118187,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutCreditor_destination_addressInp
117910
118187
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117911
118188
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117912
118189
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118190
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117913
118191
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117914
118192
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117915
118193
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117951,6 +118229,7 @@ type forwarding_consolsCreateManyCarrier_airlineInput = {
117951
118229
  trip_number?: string | null;
117952
118230
  aircraft_type?: string | null;
117953
118231
  aircraft_registration?: string | null;
118232
+ other_reference?: string | null;
117954
118233
  mawb_number?: string | null;
117955
118234
  bol_number?: string | null;
117956
118235
  carrier_booking_reference?: string | null;
@@ -117968,7 +118247,6 @@ type forwarding_consolsCreateManyCarrier_airlineInput = {
117968
118247
  };
117969
118248
  type forwarding_consolsUpdateWithoutCarrier_airlineInput = {
117970
118249
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
117971
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
117972
118250
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
117973
118251
  code?: NullableStringFieldUpdateOperationsInput | string | null;
117974
118252
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117976,6 +118254,7 @@ type forwarding_consolsUpdateWithoutCarrier_airlineInput = {
117976
118254
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
117977
118255
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
117978
118256
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118257
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
117979
118258
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
117980
118259
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
117981
118260
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -117995,6 +118274,7 @@ type forwarding_consolsUpdateWithoutCarrier_airlineInput = {
117995
118274
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
117996
118275
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
117997
118276
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
118277
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
117998
118278
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
117999
118279
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
118000
118280
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -118039,6 +118319,7 @@ type forwarding_consolsUncheckedUpdateWithoutCarrier_airlineInput = {
118039
118319
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118040
118320
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118041
118321
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118322
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118042
118323
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118043
118324
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118044
118325
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118086,6 +118367,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutCarrier_airlineInput = {
118086
118367
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118087
118368
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118088
118369
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118370
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118089
118371
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118090
118372
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118091
118373
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118127,6 +118409,7 @@ type forwarding_consolsCreateManyCarrier_shipping_lineInput = {
118127
118409
  trip_number?: string | null;
118128
118410
  aircraft_type?: string | null;
118129
118411
  aircraft_registration?: string | null;
118412
+ other_reference?: string | null;
118130
118413
  mawb_number?: string | null;
118131
118414
  bol_number?: string | null;
118132
118415
  carrier_booking_reference?: string | null;
@@ -118144,7 +118427,6 @@ type forwarding_consolsCreateManyCarrier_shipping_lineInput = {
118144
118427
  };
118145
118428
  type forwarding_consolsUpdateWithoutCarrier_shipping_lineInput = {
118146
118429
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
118147
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118148
118430
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
118149
118431
  code?: NullableStringFieldUpdateOperationsInput | string | null;
118150
118432
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118152,6 +118434,7 @@ type forwarding_consolsUpdateWithoutCarrier_shipping_lineInput = {
118152
118434
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118153
118435
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118154
118436
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118437
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118155
118438
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118156
118439
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118157
118440
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118171,6 +118454,7 @@ type forwarding_consolsUpdateWithoutCarrier_shipping_lineInput = {
118171
118454
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
118172
118455
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
118173
118456
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
118457
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
118174
118458
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
118175
118459
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
118176
118460
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -118215,6 +118499,7 @@ type forwarding_consolsUncheckedUpdateWithoutCarrier_shipping_lineInput = {
118215
118499
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118216
118500
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118217
118501
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118502
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118218
118503
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118219
118504
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118220
118505
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118262,6 +118547,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutCarrier_shipping_lineInput = {
118262
118547
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118263
118548
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118264
118549
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118550
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118265
118551
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118266
118552
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118267
118553
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118303,6 +118589,7 @@ type forwarding_consolsCreateManyService_levelInput = {
118303
118589
  trip_number?: string | null;
118304
118590
  aircraft_type?: string | null;
118305
118591
  aircraft_registration?: string | null;
118592
+ other_reference?: string | null;
118306
118593
  mawb_number?: string | null;
118307
118594
  bol_number?: string | null;
118308
118595
  carrier_booking_reference?: string | null;
@@ -118320,7 +118607,6 @@ type forwarding_consolsCreateManyService_levelInput = {
118320
118607
  };
118321
118608
  type forwarding_consolsUpdateWithoutService_levelInput = {
118322
118609
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
118323
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118324
118610
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
118325
118611
  code?: NullableStringFieldUpdateOperationsInput | string | null;
118326
118612
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118328,6 +118614,7 @@ type forwarding_consolsUpdateWithoutService_levelInput = {
118328
118614
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118329
118615
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118330
118616
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118617
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118331
118618
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118332
118619
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118333
118620
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118347,6 +118634,7 @@ type forwarding_consolsUpdateWithoutService_levelInput = {
118347
118634
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
118348
118635
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
118349
118636
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
118637
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
118350
118638
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
118351
118639
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
118352
118640
  sending_agent_address?: organization_addressesUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -118391,6 +118679,7 @@ type forwarding_consolsUncheckedUpdateWithoutService_levelInput = {
118391
118679
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118392
118680
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118393
118681
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118682
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118394
118683
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118395
118684
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118396
118685
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118438,6 +118727,187 @@ type forwarding_consolsUncheckedUpdateManyWithoutService_levelInput = {
118438
118727
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118439
118728
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118440
118729
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118730
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118731
+ mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118732
+ bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118733
+ carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118734
+ agent_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118735
+ estimated_departure?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118736
+ estimated_arrival?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118737
+ actual_departure?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118738
+ actual_arrival?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118739
+ is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
118740
+ is_neutral_mawb?: NullableBoolFieldUpdateOperationsInput | boolean | null;
118741
+ created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118742
+ created_by?: NullableStringFieldUpdateOperationsInput | string | null;
118743
+ updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118744
+ updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
118745
+ };
118746
+ type forwarding_consolsCreateManyVesselInput = {
118747
+ id?: bigint | number;
118748
+ id_type?: bigint | number | null;
118749
+ id_transport_mode?: bigint | number | null;
118750
+ id_container_shipping_type?: bigint | number | null;
118751
+ id_load_port?: bigint | number | null;
118752
+ id_discharge_port?: bigint | number | null;
118753
+ id_service_level?: bigint | number | null;
118754
+ id_payment_type?: bigint | number | null;
118755
+ id_sending_agent?: bigint | number | null;
118756
+ id_sending_agent_address?: bigint | number | null;
118757
+ id_receiving_agent?: bigint | number | null;
118758
+ id_receiving_agent_address?: bigint | number | null;
118759
+ id_carrier_shipping_line?: bigint | number | null;
118760
+ id_carrier_airline?: bigint | number | null;
118761
+ id_creditor_origin?: bigint | number | null;
118762
+ id_creditor_origin_address?: bigint | number | null;
118763
+ id_creditor_destination?: bigint | number | null;
118764
+ id_creditor_destination_address?: bigint | number | null;
118765
+ logic_code?: string | null;
118766
+ code?: string | null;
118767
+ name?: string | null;
118768
+ consol_number?: string | null;
118769
+ trip_number?: string | null;
118770
+ aircraft_type?: string | null;
118771
+ aircraft_registration?: string | null;
118772
+ other_reference?: string | null;
118773
+ mawb_number?: string | null;
118774
+ bol_number?: string | null;
118775
+ carrier_booking_reference?: string | null;
118776
+ agent_reference?: string | null;
118777
+ estimated_departure?: Date | string | null;
118778
+ estimated_arrival?: Date | string | null;
118779
+ actual_departure?: Date | string | null;
118780
+ actual_arrival?: Date | string | null;
118781
+ is_active?: boolean | null;
118782
+ is_neutral_mawb?: boolean | null;
118783
+ created_at?: Date | string | null;
118784
+ created_by?: string | null;
118785
+ updated_at?: Date | string | null;
118786
+ updated_by?: string | null;
118787
+ };
118788
+ type forwarding_consolsUpdateWithoutVesselInput = {
118789
+ id?: BigIntFieldUpdateOperationsInput | bigint | number;
118790
+ logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
118791
+ code?: NullableStringFieldUpdateOperationsInput | string | null;
118792
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
118793
+ consol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118794
+ trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118795
+ aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118796
+ aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118797
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118798
+ mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118799
+ bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118800
+ carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118801
+ agent_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118802
+ estimated_departure?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118803
+ estimated_arrival?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118804
+ actual_departure?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118805
+ actual_arrival?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118806
+ is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
118807
+ is_neutral_mawb?: NullableBoolFieldUpdateOperationsInput | boolean | null;
118808
+ created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118809
+ created_by?: NullableStringFieldUpdateOperationsInput | string | null;
118810
+ updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118811
+ updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
118812
+ forwarding_consol_type?: forwarding_consol_typesUpdateOneWithoutForwarding_consolsNestedInput;
118813
+ forwarding_transport_mode?: forwarding_transport_modesUpdateOneWithoutForwarding_consolsNestedInput;
118814
+ container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
118815
+ load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
118816
+ discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
118817
+ service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
118818
+ payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
118819
+ sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
118820
+ sending_agent_address?: organization_addressesUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
118821
+ receiving_agent?: organizationsUpdateOneWithoutForwarding_consol_receiving_agentsNestedInput;
118822
+ receiving_agent_address?: organization_addressesUpdateOneWithoutForwarding_consol_receiving_agentsNestedInput;
118823
+ carrier_shipping_line?: shipping_linesUpdateOneWithoutForwarding_consolsNestedInput;
118824
+ carrier_airline?: airlinesUpdateOneWithoutForwarding_consolsNestedInput;
118825
+ creditor_origin?: organizationsUpdateOneWithoutForwarding_consol_creditor_originsNestedInput;
118826
+ creditor_origin_address?: organization_addressesUpdateOneWithoutForwarding_consol_creditor_originsNestedInput;
118827
+ creditor_destination?: organizationsUpdateOneWithoutForwarding_consol_creditor_destinationsNestedInput;
118828
+ creditor_destination_address?: organization_addressesUpdateOneWithoutForwarding_consol_creditor_destinationsNestedInput;
118829
+ forwarding_consol_logs?: forwarding_consol_logsUpdateManyWithoutForwarding_consolNestedInput;
118830
+ forwarding_consol_reference_numbers?: forwarding_consol_reference_numbersUpdateManyWithoutForwarding_consolNestedInput;
118831
+ forwarding_consol_routings?: forwarding_consol_routingsUpdateManyWithoutForwarding_consolNestedInput;
118832
+ forwarding_consol_attachments?: forwarding_consol_attachmentsUpdateManyWithoutForwarding_consolsNestedInput;
118833
+ forwarding_consol_billing_details?: forwarding_consol_billing_detailsUpdateManyWithoutForwarding_consolNestedInput;
118834
+ forwarding_consol_containers?: forwarding_consol_containersUpdateManyWithoutForwarding_consolNestedInput;
118835
+ };
118836
+ type forwarding_consolsUncheckedUpdateWithoutVesselInput = {
118837
+ id?: BigIntFieldUpdateOperationsInput | bigint | number;
118838
+ id_type?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118839
+ id_transport_mode?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118840
+ id_container_shipping_type?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118841
+ id_load_port?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118842
+ id_discharge_port?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118843
+ id_service_level?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118844
+ id_payment_type?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118845
+ id_sending_agent?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118846
+ id_sending_agent_address?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118847
+ id_receiving_agent?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118848
+ id_receiving_agent_address?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118849
+ id_carrier_shipping_line?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118850
+ id_carrier_airline?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118851
+ id_creditor_origin?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118852
+ id_creditor_origin_address?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118853
+ id_creditor_destination?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118854
+ id_creditor_destination_address?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118855
+ logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
118856
+ code?: NullableStringFieldUpdateOperationsInput | string | null;
118857
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
118858
+ consol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118859
+ trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118860
+ aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118861
+ aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118862
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118863
+ mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118864
+ bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118865
+ carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118866
+ agent_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118867
+ estimated_departure?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118868
+ estimated_arrival?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118869
+ actual_departure?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118870
+ actual_arrival?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118871
+ is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
118872
+ is_neutral_mawb?: NullableBoolFieldUpdateOperationsInput | boolean | null;
118873
+ created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118874
+ created_by?: NullableStringFieldUpdateOperationsInput | string | null;
118875
+ updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
118876
+ updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
118877
+ forwarding_consol_logs?: forwarding_consol_logsUncheckedUpdateManyWithoutForwarding_consolNestedInput;
118878
+ forwarding_consol_reference_numbers?: forwarding_consol_reference_numbersUncheckedUpdateManyWithoutForwarding_consolNestedInput;
118879
+ forwarding_consol_routings?: forwarding_consol_routingsUncheckedUpdateManyWithoutForwarding_consolNestedInput;
118880
+ forwarding_consol_attachments?: forwarding_consol_attachmentsUncheckedUpdateManyWithoutForwarding_consolsNestedInput;
118881
+ forwarding_consol_billing_details?: forwarding_consol_billing_detailsUncheckedUpdateManyWithoutForwarding_consolNestedInput;
118882
+ forwarding_consol_containers?: forwarding_consol_containersUncheckedUpdateManyWithoutForwarding_consolNestedInput;
118883
+ };
118884
+ type forwarding_consolsUncheckedUpdateManyWithoutVesselInput = {
118885
+ id?: BigIntFieldUpdateOperationsInput | bigint | number;
118886
+ id_type?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118887
+ id_transport_mode?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118888
+ id_container_shipping_type?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118889
+ id_load_port?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118890
+ id_discharge_port?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118891
+ id_service_level?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118892
+ id_payment_type?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118893
+ id_sending_agent?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118894
+ id_sending_agent_address?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118895
+ id_receiving_agent?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118896
+ id_receiving_agent_address?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118897
+ id_carrier_shipping_line?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118898
+ id_carrier_airline?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118899
+ id_creditor_origin?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118900
+ id_creditor_origin_address?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118901
+ id_creditor_destination?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118902
+ id_creditor_destination_address?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118903
+ logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
118904
+ code?: NullableStringFieldUpdateOperationsInput | string | null;
118905
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
118906
+ consol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118907
+ trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118908
+ aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118909
+ aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118910
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118441
118911
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118442
118912
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118443
118913
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118479,6 +118949,7 @@ type forwarding_consolsCreateManyPayment_typeInput = {
118479
118949
  trip_number?: string | null;
118480
118950
  aircraft_type?: string | null;
118481
118951
  aircraft_registration?: string | null;
118952
+ other_reference?: string | null;
118482
118953
  mawb_number?: string | null;
118483
118954
  bol_number?: string | null;
118484
118955
  carrier_booking_reference?: string | null;
@@ -118496,7 +118967,6 @@ type forwarding_consolsCreateManyPayment_typeInput = {
118496
118967
  };
118497
118968
  type forwarding_consolsUpdateWithoutPayment_typeInput = {
118498
118969
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
118499
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118500
118970
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
118501
118971
  code?: NullableStringFieldUpdateOperationsInput | string | null;
118502
118972
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118504,6 +118974,7 @@ type forwarding_consolsUpdateWithoutPayment_typeInput = {
118504
118974
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118505
118975
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118506
118976
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
118977
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118507
118978
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118508
118979
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118509
118980
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118523,6 +118994,7 @@ type forwarding_consolsUpdateWithoutPayment_typeInput = {
118523
118994
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
118524
118995
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
118525
118996
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
118997
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
118526
118998
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
118527
118999
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
118528
119000
  sending_agent_address?: organization_addressesUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -118567,6 +119039,7 @@ type forwarding_consolsUncheckedUpdateWithoutPayment_typeInput = {
118567
119039
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118568
119040
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118569
119041
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119042
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118570
119043
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118571
119044
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118572
119045
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118614,6 +119087,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutPayment_typeInput = {
118614
119087
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118615
119088
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118616
119089
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119090
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118617
119091
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118618
119092
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118619
119093
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118655,6 +119129,7 @@ type forwarding_consolsCreateManyForwarding_transport_modeInput = {
118655
119129
  trip_number?: string | null;
118656
119130
  aircraft_type?: string | null;
118657
119131
  aircraft_registration?: string | null;
119132
+ other_reference?: string | null;
118658
119133
  mawb_number?: string | null;
118659
119134
  bol_number?: string | null;
118660
119135
  carrier_booking_reference?: string | null;
@@ -118672,7 +119147,6 @@ type forwarding_consolsCreateManyForwarding_transport_modeInput = {
118672
119147
  };
118673
119148
  type forwarding_consolsUpdateWithoutForwarding_transport_modeInput = {
118674
119149
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
118675
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118676
119150
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
118677
119151
  code?: NullableStringFieldUpdateOperationsInput | string | null;
118678
119152
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118680,6 +119154,7 @@ type forwarding_consolsUpdateWithoutForwarding_transport_modeInput = {
118680
119154
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118681
119155
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118682
119156
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119157
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118683
119158
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118684
119159
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118685
119160
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118698,6 +119173,7 @@ type forwarding_consolsUpdateWithoutForwarding_transport_modeInput = {
118698
119173
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
118699
119174
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
118700
119175
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
119176
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
118701
119177
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
118702
119178
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
118703
119179
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -118743,6 +119219,7 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_transport_modeInput = {
118743
119219
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118744
119220
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118745
119221
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119222
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118746
119223
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118747
119224
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118748
119225
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118790,6 +119267,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutForwarding_transport_modeInput
118790
119267
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118791
119268
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118792
119269
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119270
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118793
119271
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118794
119272
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118795
119273
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118831,6 +119309,7 @@ type forwarding_consolsCreateManyContainer_shipping_typesInput = {
118831
119309
  trip_number?: string | null;
118832
119310
  aircraft_type?: string | null;
118833
119311
  aircraft_registration?: string | null;
119312
+ other_reference?: string | null;
118834
119313
  mawb_number?: string | null;
118835
119314
  bol_number?: string | null;
118836
119315
  carrier_booking_reference?: string | null;
@@ -118848,7 +119327,6 @@ type forwarding_consolsCreateManyContainer_shipping_typesInput = {
118848
119327
  };
118849
119328
  type forwarding_consolsUpdateWithoutContainer_shipping_typesInput = {
118850
119329
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
118851
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
118852
119330
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
118853
119331
  code?: NullableStringFieldUpdateOperationsInput | string | null;
118854
119332
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118856,6 +119334,7 @@ type forwarding_consolsUpdateWithoutContainer_shipping_typesInput = {
118856
119334
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118857
119335
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118858
119336
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119337
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118859
119338
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118860
119339
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118861
119340
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118874,6 +119353,7 @@ type forwarding_consolsUpdateWithoutContainer_shipping_typesInput = {
118874
119353
  forwarding_transport_mode?: forwarding_transport_modesUpdateOneWithoutForwarding_consolsNestedInput;
118875
119354
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
118876
119355
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
119356
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
118877
119357
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
118878
119358
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
118879
119359
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -118919,6 +119399,7 @@ type forwarding_consolsUncheckedUpdateWithoutContainer_shipping_typesInput = {
118919
119399
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118920
119400
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118921
119401
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119402
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118922
119403
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118923
119404
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118924
119405
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -118966,6 +119447,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutContainer_shipping_typesInput =
118966
119447
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
118967
119448
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
118968
119449
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119450
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
118969
119451
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
118970
119452
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
118971
119453
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -119007,6 +119489,7 @@ type forwarding_consolsCreateManyForwarding_consol_typeInput = {
119007
119489
  trip_number?: string | null;
119008
119490
  aircraft_type?: string | null;
119009
119491
  aircraft_registration?: string | null;
119492
+ other_reference?: string | null;
119010
119493
  mawb_number?: string | null;
119011
119494
  bol_number?: string | null;
119012
119495
  carrier_booking_reference?: string | null;
@@ -119024,7 +119507,6 @@ type forwarding_consolsCreateManyForwarding_consol_typeInput = {
119024
119507
  };
119025
119508
  type forwarding_consolsUpdateWithoutForwarding_consol_typeInput = {
119026
119509
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
119027
- id_vessel?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
119028
119510
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
119029
119511
  code?: NullableStringFieldUpdateOperationsInput | string | null;
119030
119512
  name?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -119032,6 +119514,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_typeInput = {
119032
119514
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
119033
119515
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
119034
119516
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119517
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
119035
119518
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
119036
119519
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
119037
119520
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -119050,6 +119533,7 @@ type forwarding_consolsUpdateWithoutForwarding_consol_typeInput = {
119050
119533
  container_shipping_types?: container_shipping_typesUpdateOneWithoutForwarding_consolsNestedInput;
119051
119534
  load_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_load_portNestedInput;
119052
119535
  discharge_port_un_locodes?: un_locodesUpdateOneWithoutForwarding_consol_discharge_portNestedInput;
119536
+ vessel?: vesselsUpdateOneWithoutForwarding_consolsNestedInput;
119053
119537
  service_level?: service_levelsUpdateOneWithoutForwarding_consolsNestedInput;
119054
119538
  payment_type?: payment_typesUpdateOneWithoutForwarding_consolsNestedInput;
119055
119539
  sending_agent?: organizationsUpdateOneWithoutForwarding_consol_sending_agentsNestedInput;
@@ -119095,6 +119579,7 @@ type forwarding_consolsUncheckedUpdateWithoutForwarding_consol_typeInput = {
119095
119579
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
119096
119580
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
119097
119581
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119582
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
119098
119583
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
119099
119584
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
119100
119585
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -119142,6 +119627,7 @@ type forwarding_consolsUncheckedUpdateManyWithoutForwarding_consol_typeInput = {
119142
119627
  trip_number?: NullableStringFieldUpdateOperationsInput | string | null;
119143
119628
  aircraft_type?: NullableStringFieldUpdateOperationsInput | string | null;
119144
119629
  aircraft_registration?: NullableStringFieldUpdateOperationsInput | string | null;
119630
+ other_reference?: NullableStringFieldUpdateOperationsInput | string | null;
119145
119631
  mawb_number?: NullableStringFieldUpdateOperationsInput | string | null;
119146
119632
  bol_number?: NullableStringFieldUpdateOperationsInput | string | null;
119147
119633
  carrier_booking_reference?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -119241,6 +119727,7 @@ type forwarding_consolsSelect<ExtArgs extends Types$1.Extensions.InternalArgs =
119241
119727
  trip_number?: boolean;
119242
119728
  aircraft_type?: boolean;
119243
119729
  aircraft_registration?: boolean;
119730
+ other_reference?: boolean;
119244
119731
  mawb_number?: boolean;
119245
119732
  bol_number?: boolean;
119246
119733
  carrier_booking_reference?: boolean;
@@ -119260,6 +119747,7 @@ type forwarding_consolsSelect<ExtArgs extends Types$1.Extensions.InternalArgs =
119260
119747
  container_shipping_types?: boolean | forwarding_consols$container_shipping_typesArgs<ExtArgs>;
119261
119748
  load_port_un_locodes?: boolean | forwarding_consols$load_port_un_locodesArgs<ExtArgs>;
119262
119749
  discharge_port_un_locodes?: boolean | forwarding_consols$discharge_port_un_locodesArgs<ExtArgs>;
119750
+ vessel?: boolean | forwarding_consols$vesselArgs<ExtArgs>;
119263
119751
  service_level?: boolean | forwarding_consols$service_levelArgs<ExtArgs>;
119264
119752
  payment_type?: boolean | forwarding_consols$payment_typeArgs<ExtArgs>;
119265
119753
  sending_agent?: boolean | forwarding_consols$sending_agentArgs<ExtArgs>;
@@ -119307,6 +119795,7 @@ type forwarding_consolsSelectCreateManyAndReturn<ExtArgs extends Types$1.Extensi
119307
119795
  trip_number?: boolean;
119308
119796
  aircraft_type?: boolean;
119309
119797
  aircraft_registration?: boolean;
119798
+ other_reference?: boolean;
119310
119799
  mawb_number?: boolean;
119311
119800
  bol_number?: boolean;
119312
119801
  carrier_booking_reference?: boolean;
@@ -119326,6 +119815,7 @@ type forwarding_consolsSelectCreateManyAndReturn<ExtArgs extends Types$1.Extensi
119326
119815
  container_shipping_types?: boolean | forwarding_consols$container_shipping_typesArgs<ExtArgs>;
119327
119816
  load_port_un_locodes?: boolean | forwarding_consols$load_port_un_locodesArgs<ExtArgs>;
119328
119817
  discharge_port_un_locodes?: boolean | forwarding_consols$discharge_port_un_locodesArgs<ExtArgs>;
119818
+ vessel?: boolean | forwarding_consols$vesselArgs<ExtArgs>;
119329
119819
  service_level?: boolean | forwarding_consols$service_levelArgs<ExtArgs>;
119330
119820
  payment_type?: boolean | forwarding_consols$payment_typeArgs<ExtArgs>;
119331
119821
  sending_agent?: boolean | forwarding_consols$sending_agentArgs<ExtArgs>;
@@ -119366,6 +119856,7 @@ type forwarding_consolsSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensi
119366
119856
  trip_number?: boolean;
119367
119857
  aircraft_type?: boolean;
119368
119858
  aircraft_registration?: boolean;
119859
+ other_reference?: boolean;
119369
119860
  mawb_number?: boolean;
119370
119861
  bol_number?: boolean;
119371
119862
  carrier_booking_reference?: boolean;
@@ -119385,6 +119876,7 @@ type forwarding_consolsSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensi
119385
119876
  container_shipping_types?: boolean | forwarding_consols$container_shipping_typesArgs<ExtArgs>;
119386
119877
  load_port_un_locodes?: boolean | forwarding_consols$load_port_un_locodesArgs<ExtArgs>;
119387
119878
  discharge_port_un_locodes?: boolean | forwarding_consols$discharge_port_un_locodesArgs<ExtArgs>;
119879
+ vessel?: boolean | forwarding_consols$vesselArgs<ExtArgs>;
119388
119880
  service_level?: boolean | forwarding_consols$service_levelArgs<ExtArgs>;
119389
119881
  payment_type?: boolean | forwarding_consols$payment_typeArgs<ExtArgs>;
119390
119882
  sending_agent?: boolean | forwarding_consols$sending_agentArgs<ExtArgs>;
@@ -119398,13 +119890,14 @@ type forwarding_consolsSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensi
119398
119890
  creditor_destination?: boolean | forwarding_consols$creditor_destinationArgs<ExtArgs>;
119399
119891
  creditor_destination_address?: boolean | forwarding_consols$creditor_destination_addressArgs<ExtArgs>;
119400
119892
  }, ExtArgs["result"]["forwarding_consols"]>;
119401
- type forwarding_consolsOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "id_type" | "id_transport_mode" | "id_container_shipping_type" | "id_load_port" | "id_discharge_port" | "id_vessel" | "id_service_level" | "id_payment_type" | "id_sending_agent" | "id_sending_agent_address" | "id_receiving_agent" | "id_receiving_agent_address" | "id_carrier_shipping_line" | "id_carrier_airline" | "id_creditor_origin" | "id_creditor_origin_address" | "id_creditor_destination" | "id_creditor_destination_address" | "logic_code" | "code" | "name" | "consol_number" | "trip_number" | "aircraft_type" | "aircraft_registration" | "mawb_number" | "bol_number" | "carrier_booking_reference" | "agent_reference" | "estimated_departure" | "estimated_arrival" | "actual_departure" | "actual_arrival" | "is_active" | "is_neutral_mawb" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["forwarding_consols"]>;
119893
+ type forwarding_consolsOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "id_type" | "id_transport_mode" | "id_container_shipping_type" | "id_load_port" | "id_discharge_port" | "id_vessel" | "id_service_level" | "id_payment_type" | "id_sending_agent" | "id_sending_agent_address" | "id_receiving_agent" | "id_receiving_agent_address" | "id_carrier_shipping_line" | "id_carrier_airline" | "id_creditor_origin" | "id_creditor_origin_address" | "id_creditor_destination" | "id_creditor_destination_address" | "logic_code" | "code" | "name" | "consol_number" | "trip_number" | "aircraft_type" | "aircraft_registration" | "other_reference" | "mawb_number" | "bol_number" | "carrier_booking_reference" | "agent_reference" | "estimated_departure" | "estimated_arrival" | "actual_departure" | "actual_arrival" | "is_active" | "is_neutral_mawb" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["forwarding_consols"]>;
119402
119894
  type forwarding_consolsInclude<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
119403
119895
  forwarding_consol_type?: boolean | forwarding_consols$forwarding_consol_typeArgs<ExtArgs>;
119404
119896
  forwarding_transport_mode?: boolean | forwarding_consols$forwarding_transport_modeArgs<ExtArgs>;
119405
119897
  container_shipping_types?: boolean | forwarding_consols$container_shipping_typesArgs<ExtArgs>;
119406
119898
  load_port_un_locodes?: boolean | forwarding_consols$load_port_un_locodesArgs<ExtArgs>;
119407
119899
  discharge_port_un_locodes?: boolean | forwarding_consols$discharge_port_un_locodesArgs<ExtArgs>;
119900
+ vessel?: boolean | forwarding_consols$vesselArgs<ExtArgs>;
119408
119901
  service_level?: boolean | forwarding_consols$service_levelArgs<ExtArgs>;
119409
119902
  payment_type?: boolean | forwarding_consols$payment_typeArgs<ExtArgs>;
119410
119903
  sending_agent?: boolean | forwarding_consols$sending_agentArgs<ExtArgs>;
@@ -119431,6 +119924,7 @@ type forwarding_consolsIncludeCreateManyAndReturn<ExtArgs extends Types$1.Extens
119431
119924
  container_shipping_types?: boolean | forwarding_consols$container_shipping_typesArgs<ExtArgs>;
119432
119925
  load_port_un_locodes?: boolean | forwarding_consols$load_port_un_locodesArgs<ExtArgs>;
119433
119926
  discharge_port_un_locodes?: boolean | forwarding_consols$discharge_port_un_locodesArgs<ExtArgs>;
119927
+ vessel?: boolean | forwarding_consols$vesselArgs<ExtArgs>;
119434
119928
  service_level?: boolean | forwarding_consols$service_levelArgs<ExtArgs>;
119435
119929
  payment_type?: boolean | forwarding_consols$payment_typeArgs<ExtArgs>;
119436
119930
  sending_agent?: boolean | forwarding_consols$sending_agentArgs<ExtArgs>;
@@ -119450,6 +119944,7 @@ type forwarding_consolsIncludeUpdateManyAndReturn<ExtArgs extends Types$1.Extens
119450
119944
  container_shipping_types?: boolean | forwarding_consols$container_shipping_typesArgs<ExtArgs>;
119451
119945
  load_port_un_locodes?: boolean | forwarding_consols$load_port_un_locodesArgs<ExtArgs>;
119452
119946
  discharge_port_un_locodes?: boolean | forwarding_consols$discharge_port_un_locodesArgs<ExtArgs>;
119947
+ vessel?: boolean | forwarding_consols$vesselArgs<ExtArgs>;
119453
119948
  service_level?: boolean | forwarding_consols$service_levelArgs<ExtArgs>;
119454
119949
  payment_type?: boolean | forwarding_consols$payment_typeArgs<ExtArgs>;
119455
119950
  sending_agent?: boolean | forwarding_consols$sending_agentArgs<ExtArgs>;
@@ -119471,6 +119966,7 @@ type $forwarding_consolsPayload<ExtArgs extends Types$1.Extensions.InternalArgs
119471
119966
  container_shipping_types: $container_shipping_typesPayload<ExtArgs> | null;
119472
119967
  load_port_un_locodes: $un_locodesPayload<ExtArgs> | null;
119473
119968
  discharge_port_un_locodes: $un_locodesPayload<ExtArgs> | null;
119969
+ vessel: $vesselsPayload<ExtArgs> | null;
119474
119970
  service_level: $service_levelsPayload<ExtArgs> | null;
119475
119971
  payment_type: $payment_typesPayload<ExtArgs> | null;
119476
119972
  sending_agent: $organizationsPayload<ExtArgs> | null;
@@ -119517,6 +120013,7 @@ type $forwarding_consolsPayload<ExtArgs extends Types$1.Extensions.InternalArgs
119517
120013
  trip_number: string | null;
119518
120014
  aircraft_type: string | null;
119519
120015
  aircraft_registration: string | null;
120016
+ other_reference: string | null;
119520
120017
  mawb_number: string | null;
119521
120018
  bol_number: string | null;
119522
120019
  carrier_booking_reference: string | null;
@@ -119851,6 +120348,7 @@ interface Prisma__forwarding_consolsClient<T$1, Null = never, ExtArgs extends Ty
119851
120348
  container_shipping_types<T$1 extends forwarding_consols$container_shipping_typesArgs<ExtArgs> = {}>(args?: Subset<T$1, forwarding_consols$container_shipping_typesArgs<ExtArgs>>): Prisma__container_shipping_typesClient<Types$1.Result.GetResult<$container_shipping_typesPayload<ExtArgs>, T$1, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
119852
120349
  load_port_un_locodes<T$1 extends forwarding_consols$load_port_un_locodesArgs<ExtArgs> = {}>(args?: Subset<T$1, forwarding_consols$load_port_un_locodesArgs<ExtArgs>>): Prisma__un_locodesClient<Types$1.Result.GetResult<$un_locodesPayload<ExtArgs>, T$1, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
119853
120350
  discharge_port_un_locodes<T$1 extends forwarding_consols$discharge_port_un_locodesArgs<ExtArgs> = {}>(args?: Subset<T$1, forwarding_consols$discharge_port_un_locodesArgs<ExtArgs>>): Prisma__un_locodesClient<Types$1.Result.GetResult<$un_locodesPayload<ExtArgs>, T$1, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
120351
+ vessel<T$1 extends forwarding_consols$vesselArgs<ExtArgs> = {}>(args?: Subset<T$1, forwarding_consols$vesselArgs<ExtArgs>>): Prisma__vesselsClient<Types$1.Result.GetResult<$vesselsPayload<ExtArgs>, T$1, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
119854
120352
  service_level<T$1 extends forwarding_consols$service_levelArgs<ExtArgs> = {}>(args?: Subset<T$1, forwarding_consols$service_levelArgs<ExtArgs>>): Prisma__service_levelsClient<Types$1.Result.GetResult<$service_levelsPayload<ExtArgs>, T$1, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
119855
120353
  payment_type<T$1 extends forwarding_consols$payment_typeArgs<ExtArgs> = {}>(args?: Subset<T$1, forwarding_consols$payment_typeArgs<ExtArgs>>): Prisma__payment_typesClient<Types$1.Result.GetResult<$payment_typesPayload<ExtArgs>, T$1, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
119856
120354
  sending_agent<T$1 extends forwarding_consols$sending_agentArgs<ExtArgs> = {}>(args?: Subset<T$1, forwarding_consols$sending_agentArgs<ExtArgs>>): Prisma__organizationsClient<Types$1.Result.GetResult<$organizationsPayload<ExtArgs>, T$1, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
@@ -119920,6 +120418,7 @@ interface forwarding_consolsFieldRefs {
119920
120418
  readonly trip_number: FieldRef<"forwarding_consols", 'String'>;
119921
120419
  readonly aircraft_type: FieldRef<"forwarding_consols", 'String'>;
119922
120420
  readonly aircraft_registration: FieldRef<"forwarding_consols", 'String'>;
120421
+ readonly other_reference: FieldRef<"forwarding_consols", 'String'>;
119923
120422
  readonly mawb_number: FieldRef<"forwarding_consols", 'String'>;
119924
120423
  readonly bol_number: FieldRef<"forwarding_consols", 'String'>;
119925
120424
  readonly carrier_booking_reference: FieldRef<"forwarding_consols", 'String'>;
@@ -120402,6 +120901,24 @@ type forwarding_consols$discharge_port_un_locodesArgs<ExtArgs extends Types$1.Ex
120402
120901
  include?: un_locodesInclude<ExtArgs> | null;
120403
120902
  where?: un_locodesWhereInput;
120404
120903
  };
120904
+ /**
120905
+ * forwarding_consols.vessel
120906
+ */
120907
+ type forwarding_consols$vesselArgs<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
120908
+ /**
120909
+ * Select specific fields to fetch from the vessels
120910
+ */
120911
+ select?: vesselsSelect<ExtArgs> | null;
120912
+ /**
120913
+ * Omit specific fields from the vessels
120914
+ */
120915
+ omit?: vesselsOmit<ExtArgs> | null;
120916
+ /**
120917
+ * Choose, which related nodes to fetch as well
120918
+ */
120919
+ include?: vesselsInclude<ExtArgs> | null;
120920
+ where?: vesselsWhereInput;
120921
+ };
120405
120922
  /**
120406
120923
  * forwarding_consols.service_level
120407
120924
  */
@@ -414237,6 +414754,7 @@ type vesselsWhereInput = {
414237
414754
  country?: XOR<CountriesNullableScalarRelationFilter, countriesWhereInput> | null;
414238
414755
  vessel_logs?: Vessel_logsListRelationFilter;
414239
414756
  forwarding_consol_routings?: Forwarding_consol_routingsListRelationFilter;
414757
+ forwarding_consols?: Forwarding_consolsListRelationFilter;
414240
414758
  };
414241
414759
  type vesselsOrderByWithRelationInput = {
414242
414760
  id?: SortOrder;
@@ -414261,6 +414779,7 @@ type vesselsOrderByWithRelationInput = {
414261
414779
  country?: countriesOrderByWithRelationInput;
414262
414780
  vessel_logs?: vessel_logsOrderByRelationAggregateInput;
414263
414781
  forwarding_consol_routings?: forwarding_consol_routingsOrderByRelationAggregateInput;
414782
+ forwarding_consols?: forwarding_consolsOrderByRelationAggregateInput;
414264
414783
  };
414265
414784
  type vesselsWhereUniqueInput = AtLeast<{
414266
414785
  id?: bigint | number;
@@ -414288,6 +414807,7 @@ type vesselsWhereUniqueInput = AtLeast<{
414288
414807
  country?: XOR<CountriesNullableScalarRelationFilter, countriesWhereInput> | null;
414289
414808
  vessel_logs?: Vessel_logsListRelationFilter;
414290
414809
  forwarding_consol_routings?: Forwarding_consol_routingsListRelationFilter;
414810
+ forwarding_consols?: Forwarding_consolsListRelationFilter;
414291
414811
  }, "id">;
414292
414812
  type vesselsOrderByWithAggregationInput = {
414293
414813
  id?: SortOrder;
@@ -414352,6 +414872,7 @@ type vesselsCreateInput = {
414352
414872
  country?: countriesCreateNestedOneWithoutVesselsInput;
414353
414873
  vessel_logs?: vessel_logsCreateNestedManyWithoutVesselInput;
414354
414874
  forwarding_consol_routings?: forwarding_consol_routingsCreateNestedManyWithoutVesselInput;
414875
+ forwarding_consols?: forwarding_consolsCreateNestedManyWithoutVesselInput;
414355
414876
  };
414356
414877
  type vesselsUncheckedCreateInput = {
414357
414878
  id?: bigint | number;
@@ -414372,6 +414893,7 @@ type vesselsUncheckedCreateInput = {
414372
414893
  updated_by?: string | null;
414373
414894
  vessel_logs?: vessel_logsUncheckedCreateNestedManyWithoutVesselInput;
414374
414895
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedCreateNestedManyWithoutVesselInput;
414896
+ forwarding_consols?: forwarding_consolsUncheckedCreateNestedManyWithoutVesselInput;
414375
414897
  };
414376
414898
  type vesselsUpdateInput = {
414377
414899
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -414392,6 +414914,7 @@ type vesselsUpdateInput = {
414392
414914
  country?: countriesUpdateOneWithoutVesselsNestedInput;
414393
414915
  vessel_logs?: vessel_logsUpdateManyWithoutVesselNestedInput;
414394
414916
  forwarding_consol_routings?: forwarding_consol_routingsUpdateManyWithoutVesselNestedInput;
414917
+ forwarding_consols?: forwarding_consolsUpdateManyWithoutVesselNestedInput;
414395
414918
  };
414396
414919
  type vesselsUncheckedUpdateInput = {
414397
414920
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -414412,6 +414935,7 @@ type vesselsUncheckedUpdateInput = {
414412
414935
  updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
414413
414936
  vessel_logs?: vessel_logsUncheckedUpdateManyWithoutVesselNestedInput;
414414
414937
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedUpdateManyWithoutVesselNestedInput;
414938
+ forwarding_consols?: forwarding_consolsUncheckedUpdateManyWithoutVesselNestedInput;
414415
414939
  };
414416
414940
  type vesselsCreateManyInput = {
414417
414941
  id?: bigint | number;
@@ -414545,6 +415069,20 @@ type vesselsSumOrderByAggregateInput = {
414545
415069
  id_country?: SortOrder;
414546
415070
  net_register_ton?: SortOrder;
414547
415071
  };
415072
+ type vesselsCreateNestedOneWithoutForwarding_consolsInput = {
415073
+ create?: XOR<vesselsCreateWithoutForwarding_consolsInput, vesselsUncheckedCreateWithoutForwarding_consolsInput>;
415074
+ connectOrCreate?: vesselsCreateOrConnectWithoutForwarding_consolsInput;
415075
+ connect?: vesselsWhereUniqueInput;
415076
+ };
415077
+ type vesselsUpdateOneWithoutForwarding_consolsNestedInput = {
415078
+ create?: XOR<vesselsCreateWithoutForwarding_consolsInput, vesselsUncheckedCreateWithoutForwarding_consolsInput>;
415079
+ connectOrCreate?: vesselsCreateOrConnectWithoutForwarding_consolsInput;
415080
+ upsert?: vesselsUpsertWithoutForwarding_consolsInput;
415081
+ disconnect?: vesselsWhereInput | boolean;
415082
+ delete?: vesselsWhereInput | boolean;
415083
+ connect?: vesselsWhereUniqueInput;
415084
+ update?: XOR<XOR<vesselsUpdateToOneWithWhereWithoutForwarding_consolsInput, vesselsUpdateWithoutForwarding_consolsInput>, vesselsUncheckedUpdateWithoutForwarding_consolsInput>;
415085
+ };
414548
415086
  type vesselsCreateNestedOneWithoutForwarding_consol_routingsInput = {
414549
415087
  create?: XOR<vesselsCreateWithoutForwarding_consol_routingsInput, vesselsUncheckedCreateWithoutForwarding_consol_routingsInput>;
414550
415088
  connectOrCreate?: vesselsCreateOrConnectWithoutForwarding_consol_routingsInput;
@@ -414725,6 +415263,99 @@ type vesselsUpdateOneWithoutVessel_logsNestedInput = {
414725
415263
  connect?: vesselsWhereUniqueInput;
414726
415264
  update?: XOR<XOR<vesselsUpdateToOneWithWhereWithoutVessel_logsInput, vesselsUpdateWithoutVessel_logsInput>, vesselsUncheckedUpdateWithoutVessel_logsInput>;
414727
415265
  };
415266
+ type vesselsCreateWithoutForwarding_consolsInput = {
415267
+ id?: bigint | number;
415268
+ name?: string | null;
415269
+ imo_code?: string | null;
415270
+ agent_code?: string | null;
415271
+ radio_call_sign?: string | null;
415272
+ cargo_carrier_code?: string | null;
415273
+ net_register_ton?: Decimal | DecimalJsLike | number | string | null;
415274
+ is_active?: boolean | null;
415275
+ created_at?: Date | string | null;
415276
+ created_by?: string | null;
415277
+ updated_at?: Date | string | null;
415278
+ updated_by?: string | null;
415279
+ shipping_provider?: shipping_linesCreateNestedOneWithoutVessels_shipping_providerInput;
415280
+ vessel_consortium?: shipping_linesCreateNestedOneWithoutVessels_vessel_consortiumInput;
415281
+ vessel_type?: vessel_typesCreateNestedOneWithoutVesselsInput;
415282
+ country?: countriesCreateNestedOneWithoutVesselsInput;
415283
+ vessel_logs?: vessel_logsCreateNestedManyWithoutVesselInput;
415284
+ forwarding_consol_routings?: forwarding_consol_routingsCreateNestedManyWithoutVesselInput;
415285
+ };
415286
+ type vesselsUncheckedCreateWithoutForwarding_consolsInput = {
415287
+ id?: bigint | number;
415288
+ id_shipping_provider?: bigint | number | null;
415289
+ id_vessel_consortium?: bigint | number | null;
415290
+ id_vessel_type?: bigint | number | null;
415291
+ id_country?: bigint | number | null;
415292
+ name?: string | null;
415293
+ imo_code?: string | null;
415294
+ agent_code?: string | null;
415295
+ radio_call_sign?: string | null;
415296
+ cargo_carrier_code?: string | null;
415297
+ net_register_ton?: Decimal | DecimalJsLike | number | string | null;
415298
+ is_active?: boolean | null;
415299
+ created_at?: Date | string | null;
415300
+ created_by?: string | null;
415301
+ updated_at?: Date | string | null;
415302
+ updated_by?: string | null;
415303
+ vessel_logs?: vessel_logsUncheckedCreateNestedManyWithoutVesselInput;
415304
+ forwarding_consol_routings?: forwarding_consol_routingsUncheckedCreateNestedManyWithoutVesselInput;
415305
+ };
415306
+ type vesselsCreateOrConnectWithoutForwarding_consolsInput = {
415307
+ where: vesselsWhereUniqueInput;
415308
+ create: XOR<vesselsCreateWithoutForwarding_consolsInput, vesselsUncheckedCreateWithoutForwarding_consolsInput>;
415309
+ };
415310
+ type vesselsUpsertWithoutForwarding_consolsInput = {
415311
+ update: XOR<vesselsUpdateWithoutForwarding_consolsInput, vesselsUncheckedUpdateWithoutForwarding_consolsInput>;
415312
+ create: XOR<vesselsCreateWithoutForwarding_consolsInput, vesselsUncheckedCreateWithoutForwarding_consolsInput>;
415313
+ where?: vesselsWhereInput;
415314
+ };
415315
+ type vesselsUpdateToOneWithWhereWithoutForwarding_consolsInput = {
415316
+ where?: vesselsWhereInput;
415317
+ data: XOR<vesselsUpdateWithoutForwarding_consolsInput, vesselsUncheckedUpdateWithoutForwarding_consolsInput>;
415318
+ };
415319
+ type vesselsUpdateWithoutForwarding_consolsInput = {
415320
+ id?: BigIntFieldUpdateOperationsInput | bigint | number;
415321
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
415322
+ imo_code?: NullableStringFieldUpdateOperationsInput | string | null;
415323
+ agent_code?: NullableStringFieldUpdateOperationsInput | string | null;
415324
+ radio_call_sign?: NullableStringFieldUpdateOperationsInput | string | null;
415325
+ cargo_carrier_code?: NullableStringFieldUpdateOperationsInput | string | null;
415326
+ net_register_ton?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null;
415327
+ is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
415328
+ created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
415329
+ created_by?: NullableStringFieldUpdateOperationsInput | string | null;
415330
+ updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
415331
+ updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
415332
+ shipping_provider?: shipping_linesUpdateOneWithoutVessels_shipping_providerNestedInput;
415333
+ vessel_consortium?: shipping_linesUpdateOneWithoutVessels_vessel_consortiumNestedInput;
415334
+ vessel_type?: vessel_typesUpdateOneWithoutVesselsNestedInput;
415335
+ country?: countriesUpdateOneWithoutVesselsNestedInput;
415336
+ vessel_logs?: vessel_logsUpdateManyWithoutVesselNestedInput;
415337
+ forwarding_consol_routings?: forwarding_consol_routingsUpdateManyWithoutVesselNestedInput;
415338
+ };
415339
+ type vesselsUncheckedUpdateWithoutForwarding_consolsInput = {
415340
+ id?: BigIntFieldUpdateOperationsInput | bigint | number;
415341
+ id_shipping_provider?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
415342
+ id_vessel_consortium?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
415343
+ id_vessel_type?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
415344
+ id_country?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null;
415345
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
415346
+ imo_code?: NullableStringFieldUpdateOperationsInput | string | null;
415347
+ agent_code?: NullableStringFieldUpdateOperationsInput | string | null;
415348
+ radio_call_sign?: NullableStringFieldUpdateOperationsInput | string | null;
415349
+ cargo_carrier_code?: NullableStringFieldUpdateOperationsInput | string | null;
415350
+ net_register_ton?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null;
415351
+ is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
415352
+ created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
415353
+ created_by?: NullableStringFieldUpdateOperationsInput | string | null;
415354
+ updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
415355
+ updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
415356
+ vessel_logs?: vessel_logsUncheckedUpdateManyWithoutVesselNestedInput;
415357
+ forwarding_consol_routings?: forwarding_consol_routingsUncheckedUpdateManyWithoutVesselNestedInput;
415358
+ };
414728
415359
  type vesselsCreateWithoutForwarding_consol_routingsInput = {
414729
415360
  id?: bigint | number;
414730
415361
  name?: string | null;
@@ -414743,6 +415374,7 @@ type vesselsCreateWithoutForwarding_consol_routingsInput = {
414743
415374
  vessel_type?: vessel_typesCreateNestedOneWithoutVesselsInput;
414744
415375
  country?: countriesCreateNestedOneWithoutVesselsInput;
414745
415376
  vessel_logs?: vessel_logsCreateNestedManyWithoutVesselInput;
415377
+ forwarding_consols?: forwarding_consolsCreateNestedManyWithoutVesselInput;
414746
415378
  };
414747
415379
  type vesselsUncheckedCreateWithoutForwarding_consol_routingsInput = {
414748
415380
  id?: bigint | number;
@@ -414762,6 +415394,7 @@ type vesselsUncheckedCreateWithoutForwarding_consol_routingsInput = {
414762
415394
  updated_at?: Date | string | null;
414763
415395
  updated_by?: string | null;
414764
415396
  vessel_logs?: vessel_logsUncheckedCreateNestedManyWithoutVesselInput;
415397
+ forwarding_consols?: forwarding_consolsUncheckedCreateNestedManyWithoutVesselInput;
414765
415398
  };
414766
415399
  type vesselsCreateOrConnectWithoutForwarding_consol_routingsInput = {
414767
415400
  where: vesselsWhereUniqueInput;
@@ -414794,6 +415427,7 @@ type vesselsUpdateWithoutForwarding_consol_routingsInput = {
414794
415427
  vessel_type?: vessel_typesUpdateOneWithoutVesselsNestedInput;
414795
415428
  country?: countriesUpdateOneWithoutVesselsNestedInput;
414796
415429
  vessel_logs?: vessel_logsUpdateManyWithoutVesselNestedInput;
415430
+ forwarding_consols?: forwarding_consolsUpdateManyWithoutVesselNestedInput;
414797
415431
  };
414798
415432
  type vesselsUncheckedUpdateWithoutForwarding_consol_routingsInput = {
414799
415433
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -414813,6 +415447,7 @@ type vesselsUncheckedUpdateWithoutForwarding_consol_routingsInput = {
414813
415447
  updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
414814
415448
  updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
414815
415449
  vessel_logs?: vessel_logsUncheckedUpdateManyWithoutVesselNestedInput;
415450
+ forwarding_consols?: forwarding_consolsUncheckedUpdateManyWithoutVesselNestedInput;
414816
415451
  };
414817
415452
  type vesselsCreateWithoutCountryInput = {
414818
415453
  id?: bigint | number;
@@ -414832,6 +415467,7 @@ type vesselsCreateWithoutCountryInput = {
414832
415467
  vessel_type?: vessel_typesCreateNestedOneWithoutVesselsInput;
414833
415468
  vessel_logs?: vessel_logsCreateNestedManyWithoutVesselInput;
414834
415469
  forwarding_consol_routings?: forwarding_consol_routingsCreateNestedManyWithoutVesselInput;
415470
+ forwarding_consols?: forwarding_consolsCreateNestedManyWithoutVesselInput;
414835
415471
  };
414836
415472
  type vesselsUncheckedCreateWithoutCountryInput = {
414837
415473
  id?: bigint | number;
@@ -414851,6 +415487,7 @@ type vesselsUncheckedCreateWithoutCountryInput = {
414851
415487
  updated_by?: string | null;
414852
415488
  vessel_logs?: vessel_logsUncheckedCreateNestedManyWithoutVesselInput;
414853
415489
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedCreateNestedManyWithoutVesselInput;
415490
+ forwarding_consols?: forwarding_consolsUncheckedCreateNestedManyWithoutVesselInput;
414854
415491
  };
414855
415492
  type vesselsCreateOrConnectWithoutCountryInput = {
414856
415493
  where: vesselsWhereUniqueInput;
@@ -414912,6 +415549,7 @@ type vesselsCreateWithoutShipping_providerInput = {
414912
415549
  country?: countriesCreateNestedOneWithoutVesselsInput;
414913
415550
  vessel_logs?: vessel_logsCreateNestedManyWithoutVesselInput;
414914
415551
  forwarding_consol_routings?: forwarding_consol_routingsCreateNestedManyWithoutVesselInput;
415552
+ forwarding_consols?: forwarding_consolsCreateNestedManyWithoutVesselInput;
414915
415553
  };
414916
415554
  type vesselsUncheckedCreateWithoutShipping_providerInput = {
414917
415555
  id?: bigint | number;
@@ -414931,6 +415569,7 @@ type vesselsUncheckedCreateWithoutShipping_providerInput = {
414931
415569
  updated_by?: string | null;
414932
415570
  vessel_logs?: vessel_logsUncheckedCreateNestedManyWithoutVesselInput;
414933
415571
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedCreateNestedManyWithoutVesselInput;
415572
+ forwarding_consols?: forwarding_consolsUncheckedCreateNestedManyWithoutVesselInput;
414934
415573
  };
414935
415574
  type vesselsCreateOrConnectWithoutShipping_providerInput = {
414936
415575
  where: vesselsWhereUniqueInput;
@@ -414958,6 +415597,7 @@ type vesselsCreateWithoutVessel_consortiumInput = {
414958
415597
  country?: countriesCreateNestedOneWithoutVesselsInput;
414959
415598
  vessel_logs?: vessel_logsCreateNestedManyWithoutVesselInput;
414960
415599
  forwarding_consol_routings?: forwarding_consol_routingsCreateNestedManyWithoutVesselInput;
415600
+ forwarding_consols?: forwarding_consolsCreateNestedManyWithoutVesselInput;
414961
415601
  };
414962
415602
  type vesselsUncheckedCreateWithoutVessel_consortiumInput = {
414963
415603
  id?: bigint | number;
@@ -414977,6 +415617,7 @@ type vesselsUncheckedCreateWithoutVessel_consortiumInput = {
414977
415617
  updated_by?: string | null;
414978
415618
  vessel_logs?: vessel_logsUncheckedCreateNestedManyWithoutVesselInput;
414979
415619
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedCreateNestedManyWithoutVesselInput;
415620
+ forwarding_consols?: forwarding_consolsUncheckedCreateNestedManyWithoutVesselInput;
414980
415621
  };
414981
415622
  type vesselsCreateOrConnectWithoutVessel_consortiumInput = {
414982
415623
  where: vesselsWhereUniqueInput;
@@ -415030,6 +415671,7 @@ type vesselsCreateWithoutVessel_typeInput = {
415030
415671
  country?: countriesCreateNestedOneWithoutVesselsInput;
415031
415672
  vessel_logs?: vessel_logsCreateNestedManyWithoutVesselInput;
415032
415673
  forwarding_consol_routings?: forwarding_consol_routingsCreateNestedManyWithoutVesselInput;
415674
+ forwarding_consols?: forwarding_consolsCreateNestedManyWithoutVesselInput;
415033
415675
  };
415034
415676
  type vesselsUncheckedCreateWithoutVessel_typeInput = {
415035
415677
  id?: bigint | number;
@@ -415049,6 +415691,7 @@ type vesselsUncheckedCreateWithoutVessel_typeInput = {
415049
415691
  updated_by?: string | null;
415050
415692
  vessel_logs?: vessel_logsUncheckedCreateNestedManyWithoutVesselInput;
415051
415693
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedCreateNestedManyWithoutVesselInput;
415694
+ forwarding_consols?: forwarding_consolsUncheckedCreateNestedManyWithoutVesselInput;
415052
415695
  };
415053
415696
  type vesselsCreateOrConnectWithoutVessel_typeInput = {
415054
415697
  where: vesselsWhereUniqueInput;
@@ -415089,6 +415732,7 @@ type vesselsCreateWithoutVessel_logsInput = {
415089
415732
  vessel_type?: vessel_typesCreateNestedOneWithoutVesselsInput;
415090
415733
  country?: countriesCreateNestedOneWithoutVesselsInput;
415091
415734
  forwarding_consol_routings?: forwarding_consol_routingsCreateNestedManyWithoutVesselInput;
415735
+ forwarding_consols?: forwarding_consolsCreateNestedManyWithoutVesselInput;
415092
415736
  };
415093
415737
  type vesselsUncheckedCreateWithoutVessel_logsInput = {
415094
415738
  id?: bigint | number;
@@ -415108,6 +415752,7 @@ type vesselsUncheckedCreateWithoutVessel_logsInput = {
415108
415752
  updated_at?: Date | string | null;
415109
415753
  updated_by?: string | null;
415110
415754
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedCreateNestedManyWithoutVesselInput;
415755
+ forwarding_consols?: forwarding_consolsUncheckedCreateNestedManyWithoutVesselInput;
415111
415756
  };
415112
415757
  type vesselsCreateOrConnectWithoutVessel_logsInput = {
415113
415758
  where: vesselsWhereUniqueInput;
@@ -415140,6 +415785,7 @@ type vesselsUpdateWithoutVessel_logsInput = {
415140
415785
  vessel_type?: vessel_typesUpdateOneWithoutVesselsNestedInput;
415141
415786
  country?: countriesUpdateOneWithoutVesselsNestedInput;
415142
415787
  forwarding_consol_routings?: forwarding_consol_routingsUpdateManyWithoutVesselNestedInput;
415788
+ forwarding_consols?: forwarding_consolsUpdateManyWithoutVesselNestedInput;
415143
415789
  };
415144
415790
  type vesselsUncheckedUpdateWithoutVessel_logsInput = {
415145
415791
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415159,6 +415805,7 @@ type vesselsUncheckedUpdateWithoutVessel_logsInput = {
415159
415805
  updated_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
415160
415806
  updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
415161
415807
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedUpdateManyWithoutVesselNestedInput;
415808
+ forwarding_consols?: forwarding_consolsUncheckedUpdateManyWithoutVesselNestedInput;
415162
415809
  };
415163
415810
  type vesselsCreateManyCountryInput = {
415164
415811
  id?: bigint | number;
@@ -415195,6 +415842,7 @@ type vesselsUpdateWithoutCountryInput = {
415195
415842
  vessel_type?: vessel_typesUpdateOneWithoutVesselsNestedInput;
415196
415843
  vessel_logs?: vessel_logsUpdateManyWithoutVesselNestedInput;
415197
415844
  forwarding_consol_routings?: forwarding_consol_routingsUpdateManyWithoutVesselNestedInput;
415845
+ forwarding_consols?: forwarding_consolsUpdateManyWithoutVesselNestedInput;
415198
415846
  };
415199
415847
  type vesselsUncheckedUpdateWithoutCountryInput = {
415200
415848
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415214,6 +415862,7 @@ type vesselsUncheckedUpdateWithoutCountryInput = {
415214
415862
  updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
415215
415863
  vessel_logs?: vessel_logsUncheckedUpdateManyWithoutVesselNestedInput;
415216
415864
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedUpdateManyWithoutVesselNestedInput;
415865
+ forwarding_consols?: forwarding_consolsUncheckedUpdateManyWithoutVesselNestedInput;
415217
415866
  };
415218
415867
  type vesselsUncheckedUpdateManyWithoutCountryInput = {
415219
415868
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415284,6 +415933,7 @@ type vesselsUpdateWithoutShipping_providerInput = {
415284
415933
  country?: countriesUpdateOneWithoutVesselsNestedInput;
415285
415934
  vessel_logs?: vessel_logsUpdateManyWithoutVesselNestedInput;
415286
415935
  forwarding_consol_routings?: forwarding_consol_routingsUpdateManyWithoutVesselNestedInput;
415936
+ forwarding_consols?: forwarding_consolsUpdateManyWithoutVesselNestedInput;
415287
415937
  };
415288
415938
  type vesselsUncheckedUpdateWithoutShipping_providerInput = {
415289
415939
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415303,6 +415953,7 @@ type vesselsUncheckedUpdateWithoutShipping_providerInput = {
415303
415953
  updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
415304
415954
  vessel_logs?: vessel_logsUncheckedUpdateManyWithoutVesselNestedInput;
415305
415955
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedUpdateManyWithoutVesselNestedInput;
415956
+ forwarding_consols?: forwarding_consolsUncheckedUpdateManyWithoutVesselNestedInput;
415306
415957
  };
415307
415958
  type vesselsUncheckedUpdateManyWithoutShipping_providerInput = {
415308
415959
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415339,6 +415990,7 @@ type vesselsUpdateWithoutVessel_consortiumInput = {
415339
415990
  country?: countriesUpdateOneWithoutVesselsNestedInput;
415340
415991
  vessel_logs?: vessel_logsUpdateManyWithoutVesselNestedInput;
415341
415992
  forwarding_consol_routings?: forwarding_consol_routingsUpdateManyWithoutVesselNestedInput;
415993
+ forwarding_consols?: forwarding_consolsUpdateManyWithoutVesselNestedInput;
415342
415994
  };
415343
415995
  type vesselsUncheckedUpdateWithoutVessel_consortiumInput = {
415344
415996
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415358,6 +416010,7 @@ type vesselsUncheckedUpdateWithoutVessel_consortiumInput = {
415358
416010
  updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
415359
416011
  vessel_logs?: vessel_logsUncheckedUpdateManyWithoutVesselNestedInput;
415360
416012
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedUpdateManyWithoutVesselNestedInput;
416013
+ forwarding_consols?: forwarding_consolsUncheckedUpdateManyWithoutVesselNestedInput;
415361
416014
  };
415362
416015
  type vesselsUncheckedUpdateManyWithoutVessel_consortiumInput = {
415363
416016
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415411,6 +416064,7 @@ type vesselsUpdateWithoutVessel_typeInput = {
415411
416064
  country?: countriesUpdateOneWithoutVesselsNestedInput;
415412
416065
  vessel_logs?: vessel_logsUpdateManyWithoutVesselNestedInput;
415413
416066
  forwarding_consol_routings?: forwarding_consol_routingsUpdateManyWithoutVesselNestedInput;
416067
+ forwarding_consols?: forwarding_consolsUpdateManyWithoutVesselNestedInput;
415414
416068
  };
415415
416069
  type vesselsUncheckedUpdateWithoutVessel_typeInput = {
415416
416070
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415430,6 +416084,7 @@ type vesselsUncheckedUpdateWithoutVessel_typeInput = {
415430
416084
  updated_by?: NullableStringFieldUpdateOperationsInput | string | null;
415431
416085
  vessel_logs?: vessel_logsUncheckedUpdateManyWithoutVesselNestedInput;
415432
416086
  forwarding_consol_routings?: forwarding_consol_routingsUncheckedUpdateManyWithoutVesselNestedInput;
416087
+ forwarding_consols?: forwarding_consolsUncheckedUpdateManyWithoutVesselNestedInput;
415433
416088
  };
415434
416089
  type vesselsUncheckedUpdateManyWithoutVessel_typeInput = {
415435
416090
  id?: BigIntFieldUpdateOperationsInput | bigint | number;
@@ -415455,6 +416110,7 @@ type vesselsUncheckedUpdateManyWithoutVessel_typeInput = {
415455
416110
  type VesselsCountOutputTypeSelect<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
415456
416111
  vessel_logs?: boolean | VesselsCountOutputTypeCountVessel_logsArgs;
415457
416112
  forwarding_consol_routings?: boolean | VesselsCountOutputTypeCountForwarding_consol_routingsArgs;
416113
+ forwarding_consols?: boolean | VesselsCountOutputTypeCountForwarding_consolsArgs;
415458
416114
  };
415459
416115
  /**
415460
416116
  * VesselsCountOutputType without action
@@ -415477,6 +416133,12 @@ type VesselsCountOutputTypeCountVessel_logsArgs<ExtArgs extends Types$1.Extensio
415477
416133
  type VesselsCountOutputTypeCountForwarding_consol_routingsArgs<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
415478
416134
  where?: forwarding_consol_routingsWhereInput;
415479
416135
  };
416136
+ /**
416137
+ * VesselsCountOutputType without action
416138
+ */
416139
+ type VesselsCountOutputTypeCountForwarding_consolsArgs<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
416140
+ where?: forwarding_consolsWhereInput;
416141
+ };
415480
416142
  type vesselsSelect<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetSelect<{
415481
416143
  id?: boolean;
415482
416144
  id_shipping_provider?: boolean;
@@ -415500,6 +416162,7 @@ type vesselsSelect<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Ext
415500
416162
  country?: boolean | vessels$countryArgs<ExtArgs>;
415501
416163
  vessel_logs?: boolean | vessels$vessel_logsArgs<ExtArgs>;
415502
416164
  forwarding_consol_routings?: boolean | vessels$forwarding_consol_routingsArgs<ExtArgs>;
416165
+ forwarding_consols?: boolean | vessels$forwarding_consolsArgs<ExtArgs>;
415503
416166
  _count?: boolean | VesselsCountOutputTypeDefaultArgs<ExtArgs>;
415504
416167
  }, ExtArgs["result"]["vessels"]>;
415505
416168
  type vesselsSelectCreateManyAndReturn<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetSelect<{
@@ -415554,6 +416217,7 @@ type vesselsInclude<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Ex
415554
416217
  country?: boolean | vessels$countryArgs<ExtArgs>;
415555
416218
  vessel_logs?: boolean | vessels$vessel_logsArgs<ExtArgs>;
415556
416219
  forwarding_consol_routings?: boolean | vessels$forwarding_consol_routingsArgs<ExtArgs>;
416220
+ forwarding_consols?: boolean | vessels$forwarding_consolsArgs<ExtArgs>;
415557
416221
  _count?: boolean | VesselsCountOutputTypeDefaultArgs<ExtArgs>;
415558
416222
  };
415559
416223
  type vesselsIncludeCreateManyAndReturn<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
@@ -415577,6 +416241,7 @@ type $vesselsPayload<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.E
415577
416241
  country: $countriesPayload<ExtArgs> | null;
415578
416242
  vessel_logs: $vessel_logsPayload<ExtArgs>[];
415579
416243
  forwarding_consol_routings: $forwarding_consol_routingsPayload<ExtArgs>[];
416244
+ forwarding_consols: $forwarding_consolsPayload<ExtArgs>[];
415580
416245
  };
415581
416246
  scalars: Types$1.Extensions.GetPayloadResult<{
415582
416247
  id: bigint;
@@ -415916,6 +416581,7 @@ interface Prisma__vesselsClient<T$1, Null = never, ExtArgs extends Types$1.Exten
415916
416581
  country<T$1 extends vessels$countryArgs<ExtArgs> = {}>(args?: Subset<T$1, vessels$countryArgs<ExtArgs>>): Prisma__countriesClient<Types$1.Result.GetResult<$countriesPayload<ExtArgs>, T$1, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
415917
416582
  vessel_logs<T$1 extends vessels$vessel_logsArgs<ExtArgs> = {}>(args?: Subset<T$1, vessels$vessel_logsArgs<ExtArgs>>): PrismaPromise<Types$1.Result.GetResult<$vessel_logsPayload<ExtArgs>, T$1, "findMany", GlobalOmitOptions> | Null>;
415918
416583
  forwarding_consol_routings<T$1 extends vessels$forwarding_consol_routingsArgs<ExtArgs> = {}>(args?: Subset<T$1, vessels$forwarding_consol_routingsArgs<ExtArgs>>): PrismaPromise<Types$1.Result.GetResult<$forwarding_consol_routingsPayload<ExtArgs>, T$1, "findMany", GlobalOmitOptions> | Null>;
416584
+ forwarding_consols<T$1 extends vessels$forwarding_consolsArgs<ExtArgs> = {}>(args?: Subset<T$1, vessels$forwarding_consolsArgs<ExtArgs>>): PrismaPromise<Types$1.Result.GetResult<$forwarding_consolsPayload<ExtArgs>, T$1, "findMany", GlobalOmitOptions> | Null>;
415919
416585
  /**
415920
416586
  * Attaches callbacks for the resolution and/or rejection of the Promise.
415921
416587
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -416453,6 +417119,29 @@ type vessels$forwarding_consol_routingsArgs<ExtArgs extends Types$1.Extensions.I
416453
417119
  skip?: number;
416454
417120
  distinct?: Forwarding_consol_routingsScalarFieldEnum | Forwarding_consol_routingsScalarFieldEnum[];
416455
417121
  };
417122
+ /**
417123
+ * vessels.forwarding_consols
417124
+ */
417125
+ type vessels$forwarding_consolsArgs<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
417126
+ /**
417127
+ * Select specific fields to fetch from the forwarding_consols
417128
+ */
417129
+ select?: forwarding_consolsSelect<ExtArgs> | null;
417130
+ /**
417131
+ * Omit specific fields from the forwarding_consols
417132
+ */
417133
+ omit?: forwarding_consolsOmit<ExtArgs> | null;
417134
+ /**
417135
+ * Choose, which related nodes to fetch as well
417136
+ */
417137
+ include?: forwarding_consolsInclude<ExtArgs> | null;
417138
+ where?: forwarding_consolsWhereInput;
417139
+ orderBy?: forwarding_consolsOrderByWithRelationInput | forwarding_consolsOrderByWithRelationInput[];
417140
+ cursor?: forwarding_consolsWhereUniqueInput;
417141
+ take?: number;
417142
+ skip?: number;
417143
+ distinct?: Forwarding_consolsScalarFieldEnum | Forwarding_consolsScalarFieldEnum[];
417144
+ };
416456
417145
  /**
416457
417146
  * vessels without action
416458
417147
  */
@@ -699697,6 +700386,7 @@ declare const Forwarding_consolsScalarFieldEnum: {
699697
700386
  readonly trip_number: "trip_number";
699698
700387
  readonly aircraft_type: "aircraft_type";
699699
700388
  readonly aircraft_registration: "aircraft_registration";
700389
+ readonly other_reference: "other_reference";
699700
700390
  readonly mawb_number: "mawb_number";
699701
700391
  readonly bol_number: "bol_number";
699702
700392
  readonly carrier_booking_reference: "carrier_booking_reference";
@@ -720049,6 +720739,86 @@ declare const cargoflowRouter: BuiltRouter<{
720049
720739
  updated_at: Date | null;
720050
720740
  updated_by: string | null;
720051
720741
  } | null;
720742
+ load_port_un_locodes: {
720743
+ is_active: boolean | null;
720744
+ id: string;
720745
+ logic_code: string | null;
720746
+ id_country: string | null;
720747
+ id_state: string | null;
720748
+ id_city: string | null;
720749
+ created_at: Date | null;
720750
+ created_by: string | null;
720751
+ updated_at: Date | null;
720752
+ updated_by: string | null;
720753
+ id_time_zone: string | null;
720754
+ un_code: string | null;
720755
+ iata_code: string | null;
720756
+ iata_region_code: string | null;
720757
+ latitude: Decimal | null;
720758
+ longitude: Decimal | null;
720759
+ port_name: string | null;
720760
+ proper_name: string | null;
720761
+ has_post: boolean | null;
720762
+ has_customs: boolean | null;
720763
+ has_unload: boolean | null;
720764
+ has_airport: boolean | null;
720765
+ has_railway: boolean | null;
720766
+ has_road: boolean | null;
720767
+ has_store: boolean | null;
720768
+ has_terminal: boolean | null;
720769
+ has_discharge: boolean | null;
720770
+ has_seaport: boolean | null;
720771
+ has_outport: boolean | null;
720772
+ } | null;
720773
+ discharge_port_un_locodes: {
720774
+ is_active: boolean | null;
720775
+ id: string;
720776
+ logic_code: string | null;
720777
+ id_country: string | null;
720778
+ id_state: string | null;
720779
+ id_city: string | null;
720780
+ created_at: Date | null;
720781
+ created_by: string | null;
720782
+ updated_at: Date | null;
720783
+ updated_by: string | null;
720784
+ id_time_zone: string | null;
720785
+ un_code: string | null;
720786
+ iata_code: string | null;
720787
+ iata_region_code: string | null;
720788
+ latitude: Decimal | null;
720789
+ longitude: Decimal | null;
720790
+ port_name: string | null;
720791
+ proper_name: string | null;
720792
+ has_post: boolean | null;
720793
+ has_customs: boolean | null;
720794
+ has_unload: boolean | null;
720795
+ has_airport: boolean | null;
720796
+ has_railway: boolean | null;
720797
+ has_road: boolean | null;
720798
+ has_store: boolean | null;
720799
+ has_terminal: boolean | null;
720800
+ has_discharge: boolean | null;
720801
+ has_seaport: boolean | null;
720802
+ has_outport: boolean | null;
720803
+ } | null;
720804
+ vessel: {
720805
+ is_active: boolean | null;
720806
+ id: string;
720807
+ name: string | null;
720808
+ id_country: string | null;
720809
+ created_at: Date | null;
720810
+ created_by: string | null;
720811
+ updated_at: Date | null;
720812
+ updated_by: string | null;
720813
+ id_shipping_provider: string | null;
720814
+ id_vessel_consortium: string | null;
720815
+ id_vessel_type: string | null;
720816
+ imo_code: string | null;
720817
+ agent_code: string | null;
720818
+ radio_call_sign: string | null;
720819
+ cargo_carrier_code: string | null;
720820
+ net_register_ton: Decimal | null;
720821
+ } | null;
720052
720822
  payment_type: {
720053
720823
  is_active: boolean | null;
720054
720824
  id: string;
@@ -720307,6 +721077,7 @@ declare const cargoflowRouter: BuiltRouter<{
720307
721077
  logic_code: string | null;
720308
721078
  name: string | null;
720309
721079
  code: string | null;
721080
+ other_reference: string | null;
720310
721081
  created_at: Date | null;
720311
721082
  created_by: string | null;
720312
721083
  updated_at: Date | null;
@@ -720363,6 +721134,7 @@ declare const cargoflowRouter: BuiltRouter<{
720363
721134
  container_shipping_types: number;
720364
721135
  load_port_un_locodes: number;
720365
721136
  discharge_port_un_locodes: number;
721137
+ vessel: number;
720366
721138
  service_level: number;
720367
721139
  payment_type: number;
720368
721140
  sending_agent: number;
@@ -720501,6 +721273,24 @@ declare const cargoflowRouter: BuiltRouter<{
720501
721273
  is_shipment: boolean | null;
720502
721274
  is_consol: boolean | null;
720503
721275
  } | null;
721276
+ vessel: {
721277
+ is_active: boolean | null;
721278
+ id: string;
721279
+ name: string | null;
721280
+ id_country: string | null;
721281
+ created_at: Date | null;
721282
+ created_by: string | null;
721283
+ updated_at: Date | null;
721284
+ updated_by: string | null;
721285
+ id_shipping_provider: string | null;
721286
+ id_vessel_consortium: string | null;
721287
+ id_vessel_type: string | null;
721288
+ imo_code: string | null;
721289
+ agent_code: string | null;
721290
+ radio_call_sign: string | null;
721291
+ cargo_carrier_code: string | null;
721292
+ net_register_ton: Decimal | null;
721293
+ } | null;
720504
721294
  carrier_shipping_line: {
720505
721295
  is_active: boolean | null;
720506
721296
  id: string;
@@ -720613,24 +721403,6 @@ declare const cargoflowRouter: BuiltRouter<{
720613
721403
  has_seaport: boolean | null;
720614
721404
  has_outport: boolean | null;
720615
721405
  } | null;
720616
- vessel: {
720617
- is_active: boolean | null;
720618
- id: string;
720619
- name: string | null;
720620
- id_country: string | null;
720621
- created_at: Date | null;
720622
- created_by: string | null;
720623
- updated_at: Date | null;
720624
- updated_by: string | null;
720625
- id_shipping_provider: string | null;
720626
- id_vessel_consortium: string | null;
720627
- id_vessel_type: string | null;
720628
- imo_code: string | null;
720629
- agent_code: string | null;
720630
- radio_call_sign: string | null;
720631
- cargo_carrier_code: string | null;
720632
- net_register_ton: Decimal | null;
720633
- } | null;
720634
721406
  is_active: boolean | null;
720635
721407
  id: string;
720636
721408
  logic_code: string | null;
@@ -720747,6 +721519,86 @@ declare const cargoflowRouter: BuiltRouter<{
720747
721519
  updated_at: Date | null;
720748
721520
  updated_by: string | null;
720749
721521
  } | null;
721522
+ load_port_un_locodes: {
721523
+ is_active: boolean | null;
721524
+ id: string;
721525
+ logic_code: string | null;
721526
+ id_country: string | null;
721527
+ id_state: string | null;
721528
+ id_city: string | null;
721529
+ created_at: Date | null;
721530
+ created_by: string | null;
721531
+ updated_at: Date | null;
721532
+ updated_by: string | null;
721533
+ id_time_zone: string | null;
721534
+ un_code: string | null;
721535
+ iata_code: string | null;
721536
+ iata_region_code: string | null;
721537
+ latitude: Decimal | null;
721538
+ longitude: Decimal | null;
721539
+ port_name: string | null;
721540
+ proper_name: string | null;
721541
+ has_post: boolean | null;
721542
+ has_customs: boolean | null;
721543
+ has_unload: boolean | null;
721544
+ has_airport: boolean | null;
721545
+ has_railway: boolean | null;
721546
+ has_road: boolean | null;
721547
+ has_store: boolean | null;
721548
+ has_terminal: boolean | null;
721549
+ has_discharge: boolean | null;
721550
+ has_seaport: boolean | null;
721551
+ has_outport: boolean | null;
721552
+ } | null;
721553
+ discharge_port_un_locodes: {
721554
+ is_active: boolean | null;
721555
+ id: string;
721556
+ logic_code: string | null;
721557
+ id_country: string | null;
721558
+ id_state: string | null;
721559
+ id_city: string | null;
721560
+ created_at: Date | null;
721561
+ created_by: string | null;
721562
+ updated_at: Date | null;
721563
+ updated_by: string | null;
721564
+ id_time_zone: string | null;
721565
+ un_code: string | null;
721566
+ iata_code: string | null;
721567
+ iata_region_code: string | null;
721568
+ latitude: Decimal | null;
721569
+ longitude: Decimal | null;
721570
+ port_name: string | null;
721571
+ proper_name: string | null;
721572
+ has_post: boolean | null;
721573
+ has_customs: boolean | null;
721574
+ has_unload: boolean | null;
721575
+ has_airport: boolean | null;
721576
+ has_railway: boolean | null;
721577
+ has_road: boolean | null;
721578
+ has_store: boolean | null;
721579
+ has_terminal: boolean | null;
721580
+ has_discharge: boolean | null;
721581
+ has_seaport: boolean | null;
721582
+ has_outport: boolean | null;
721583
+ } | null;
721584
+ vessel: {
721585
+ is_active: boolean | null;
721586
+ id: string;
721587
+ name: string | null;
721588
+ id_country: string | null;
721589
+ created_at: Date | null;
721590
+ created_by: string | null;
721591
+ updated_at: Date | null;
721592
+ updated_by: string | null;
721593
+ id_shipping_provider: string | null;
721594
+ id_vessel_consortium: string | null;
721595
+ id_vessel_type: string | null;
721596
+ imo_code: string | null;
721597
+ agent_code: string | null;
721598
+ radio_call_sign: string | null;
721599
+ cargo_carrier_code: string | null;
721600
+ net_register_ton: Decimal | null;
721601
+ } | null;
720750
721602
  payment_type: {
720751
721603
  is_active: boolean | null;
720752
721604
  id: string;
@@ -721005,6 +721857,7 @@ declare const cargoflowRouter: BuiltRouter<{
721005
721857
  logic_code: string | null;
721006
721858
  name: string | null;
721007
721859
  code: string | null;
721860
+ other_reference: string | null;
721008
721861
  created_at: Date | null;
721009
721862
  created_by: string | null;
721010
721863
  updated_at: Date | null;
@@ -721168,6 +722021,7 @@ declare const cargoflowRouter: BuiltRouter<{
721168
722021
  trip_number?: string | null | undefined;
721169
722022
  aircraft_type?: string | null | undefined;
721170
722023
  aircraft_registration?: string | null | undefined;
722024
+ other_reference?: string | null | undefined;
721171
722025
  mawb_number?: string | null | undefined;
721172
722026
  bol_number?: string | null | undefined;
721173
722027
  carrier_booking_reference?: string | null | undefined;
@@ -721185,6 +722039,7 @@ declare const cargoflowRouter: BuiltRouter<{
721185
722039
  logic_code: string | null;
721186
722040
  name: string | null;
721187
722041
  code: string | null;
722042
+ other_reference: string | null;
721188
722043
  created_at: Date | null;
721189
722044
  created_by: string | null;
721190
722045
  updated_at: Date | null;
@@ -721265,6 +722120,7 @@ declare const cargoflowRouter: BuiltRouter<{
721265
722120
  trip_number?: string | null | undefined;
721266
722121
  aircraft_type?: string | null | undefined;
721267
722122
  aircraft_registration?: string | null | undefined;
722123
+ other_reference?: string | null | undefined;
721268
722124
  mawb_number?: string | null | undefined;
721269
722125
  bol_number?: string | null | undefined;
721270
722126
  carrier_booking_reference?: string | null | undefined;
@@ -721282,6 +722138,7 @@ declare const cargoflowRouter: BuiltRouter<{
721282
722138
  logic_code: string | null;
721283
722139
  name: string | null;
721284
722140
  code: string | null;
722141
+ other_reference: string | null;
721285
722142
  created_at: Date | null;
721286
722143
  created_by: string | null;
721287
722144
  updated_at: Date | null;
@@ -721348,6 +722205,7 @@ declare const cargoflowRouter: BuiltRouter<{
721348
722205
  logic_code: string | null;
721349
722206
  name: string | null;
721350
722207
  code: string | null;
722208
+ other_reference: string | null;
721351
722209
  created_at: Date | null;
721352
722210
  created_by: string | null;
721353
722211
  updated_at: Date | null;
@@ -721473,6 +722331,7 @@ declare const cargoflowRouter: BuiltRouter<{
721473
722331
  logic_code: string | null;
721474
722332
  name: string | null;
721475
722333
  code: string | null;
722334
+ other_reference: string | null;
721476
722335
  created_at: Date | null;
721477
722336
  created_by: string | null;
721478
722337
  updated_at: Date | null;
@@ -721607,6 +722466,7 @@ declare const cargoflowRouter: BuiltRouter<{
721607
722466
  logic_code: string | null;
721608
722467
  name: string | null;
721609
722468
  code: string | null;
722469
+ other_reference: string | null;
721610
722470
  created_at: Date | null;
721611
722471
  created_by: string | null;
721612
722472
  updated_at: Date | null;
@@ -722506,6 +723366,7 @@ declare const cargoflowRouter: BuiltRouter<{
722506
723366
  logic_code: string | null;
722507
723367
  name: string | null;
722508
723368
  code: string | null;
723369
+ other_reference: string | null;
722509
723370
  created_at: Date | null;
722510
723371
  created_by: string | null;
722511
723372
  updated_at: Date | null;
@@ -722608,6 +723469,7 @@ declare const cargoflowRouter: BuiltRouter<{
722608
723469
  logic_code: string | null;
722609
723470
  name: string | null;
722610
723471
  code: string | null;
723472
+ other_reference: string | null;
722611
723473
  created_at: Date | null;
722612
723474
  created_by: string | null;
722613
723475
  updated_at: Date | null;
@@ -723037,6 +723899,7 @@ declare const cargoflowRouter: BuiltRouter<{
723037
723899
  logic_code: string | null;
723038
723900
  name: string | null;
723039
723901
  code: string | null;
723902
+ other_reference: string | null;
723040
723903
  created_at: Date | null;
723041
723904
  created_by: string | null;
723042
723905
  updated_at: Date | null;
@@ -723073,6 +723936,24 @@ declare const cargoflowRouter: BuiltRouter<{
723073
723936
  actual_arrival: Date | null;
723074
723937
  consol_number: string | null;
723075
723938
  } | null;
723939
+ vessel: {
723940
+ is_active: boolean | null;
723941
+ id: string;
723942
+ name: string | null;
723943
+ id_country: string | null;
723944
+ created_at: Date | null;
723945
+ created_by: string | null;
723946
+ updated_at: Date | null;
723947
+ updated_by: string | null;
723948
+ id_shipping_provider: string | null;
723949
+ id_vessel_consortium: string | null;
723950
+ id_vessel_type: string | null;
723951
+ imo_code: string | null;
723952
+ agent_code: string | null;
723953
+ radio_call_sign: string | null;
723954
+ cargo_carrier_code: string | null;
723955
+ net_register_ton: Decimal | null;
723956
+ } | null;
723076
723957
  carrier_shipping_line: {
723077
723958
  is_active: boolean | null;
723078
723959
  id: string;
@@ -723185,24 +724066,6 @@ declare const cargoflowRouter: BuiltRouter<{
723185
724066
  has_seaport: boolean | null;
723186
724067
  has_outport: boolean | null;
723187
724068
  } | null;
723188
- vessel: {
723189
- is_active: boolean | null;
723190
- id: string;
723191
- name: string | null;
723192
- id_country: string | null;
723193
- created_at: Date | null;
723194
- created_by: string | null;
723195
- updated_at: Date | null;
723196
- updated_by: string | null;
723197
- id_shipping_provider: string | null;
723198
- id_vessel_consortium: string | null;
723199
- id_vessel_type: string | null;
723200
- imo_code: string | null;
723201
- agent_code: string | null;
723202
- radio_call_sign: string | null;
723203
- cargo_carrier_code: string | null;
723204
- net_register_ton: Decimal | null;
723205
- } | null;
723206
724069
  is_active: boolean | null;
723207
724070
  id: string;
723208
724071
  logic_code: string | null;
@@ -723270,6 +724133,7 @@ declare const cargoflowRouter: BuiltRouter<{
723270
724133
  logic_code: string | null;
723271
724134
  name: string | null;
723272
724135
  code: string | null;
724136
+ other_reference: string | null;
723273
724137
  created_at: Date | null;
723274
724138
  created_by: string | null;
723275
724139
  updated_at: Date | null;
@@ -723306,6 +724170,24 @@ declare const cargoflowRouter: BuiltRouter<{
723306
724170
  actual_arrival: Date | null;
723307
724171
  consol_number: string | null;
723308
724172
  } | null;
724173
+ vessel: {
724174
+ is_active: boolean | null;
724175
+ id: string;
724176
+ name: string | null;
724177
+ id_country: string | null;
724178
+ created_at: Date | null;
724179
+ created_by: string | null;
724180
+ updated_at: Date | null;
724181
+ updated_by: string | null;
724182
+ id_shipping_provider: string | null;
724183
+ id_vessel_consortium: string | null;
724184
+ id_vessel_type: string | null;
724185
+ imo_code: string | null;
724186
+ agent_code: string | null;
724187
+ radio_call_sign: string | null;
724188
+ cargo_carrier_code: string | null;
724189
+ net_register_ton: Decimal | null;
724190
+ } | null;
723309
724191
  carrier_shipping_line: {
723310
724192
  is_active: boolean | null;
723311
724193
  id: string;
@@ -723418,24 +724300,6 @@ declare const cargoflowRouter: BuiltRouter<{
723418
724300
  has_seaport: boolean | null;
723419
724301
  has_outport: boolean | null;
723420
724302
  } | null;
723421
- vessel: {
723422
- is_active: boolean | null;
723423
- id: string;
723424
- name: string | null;
723425
- id_country: string | null;
723426
- created_at: Date | null;
723427
- created_by: string | null;
723428
- updated_at: Date | null;
723429
- updated_by: string | null;
723430
- id_shipping_provider: string | null;
723431
- id_vessel_consortium: string | null;
723432
- id_vessel_type: string | null;
723433
- imo_code: string | null;
723434
- agent_code: string | null;
723435
- radio_call_sign: string | null;
723436
- cargo_carrier_code: string | null;
723437
- net_register_ton: Decimal | null;
723438
- } | null;
723439
724303
  is_active: boolean | null;
723440
724304
  id: string;
723441
724305
  logic_code: string | null;