@be-logixpair/api 0.0.19 → 0.0.20

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 +65 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -359859,6 +359859,7 @@ type Dangerous_goodsMinAggregateOutputType = {
359859
359859
  id_dg_packing_group: number | null;
359860
359860
  id_dg_class: number | null;
359861
359861
  logic_code: string | null;
359862
+ name: string | null;
359862
359863
  un_number: string | null;
359863
359864
  is_active: boolean | null;
359864
359865
  is_high_danger: boolean | null;
@@ -359872,6 +359873,7 @@ type Dangerous_goodsMaxAggregateOutputType = {
359872
359873
  id_dg_packing_group: number | null;
359873
359874
  id_dg_class: number | null;
359874
359875
  logic_code: string | null;
359876
+ name: string | null;
359875
359877
  un_number: string | null;
359876
359878
  is_active: boolean | null;
359877
359879
  is_high_danger: boolean | null;
@@ -359885,6 +359887,7 @@ type Dangerous_goodsCountAggregateOutputType = {
359885
359887
  id_dg_packing_group: number;
359886
359888
  id_dg_class: number;
359887
359889
  logic_code: number;
359890
+ name: number;
359888
359891
  un_number: number;
359889
359892
  is_active: number;
359890
359893
  is_high_danger: number;
@@ -359909,6 +359912,7 @@ type Dangerous_goodsMinAggregateInputType = {
359909
359912
  id_dg_packing_group?: true;
359910
359913
  id_dg_class?: true;
359911
359914
  logic_code?: true;
359915
+ name?: true;
359912
359916
  un_number?: true;
359913
359917
  is_active?: true;
359914
359918
  is_high_danger?: true;
@@ -359922,6 +359926,7 @@ type Dangerous_goodsMaxAggregateInputType = {
359922
359926
  id_dg_packing_group?: true;
359923
359927
  id_dg_class?: true;
359924
359928
  logic_code?: true;
359929
+ name?: true;
359925
359930
  un_number?: true;
359926
359931
  is_active?: true;
359927
359932
  is_high_danger?: true;
@@ -359935,6 +359940,7 @@ type Dangerous_goodsCountAggregateInputType = {
359935
359940
  id_dg_packing_group?: true;
359936
359941
  id_dg_class?: true;
359937
359942
  logic_code?: true;
359943
+ name?: true;
359938
359944
  un_number?: true;
359939
359945
  is_active?: true;
359940
359946
  is_high_danger?: true;
@@ -360023,6 +360029,7 @@ type Dangerous_goodsGroupByOutputType = {
360023
360029
  id_dg_packing_group: number | null;
360024
360030
  id_dg_class: number | null;
360025
360031
  logic_code: string | null;
360032
+ name: string | null;
360026
360033
  un_number: string | null;
360027
360034
  is_active: boolean | null;
360028
360035
  is_high_danger: boolean | null;
@@ -360045,6 +360052,7 @@ type dangerous_goodsWhereInput = {
360045
360052
  id_dg_packing_group?: IntNullableFilter<"dangerous_goods"> | number | null;
360046
360053
  id_dg_class?: IntNullableFilter<"dangerous_goods"> | number | null;
360047
360054
  logic_code?: StringNullableFilter<"dangerous_goods"> | string | null;
360055
+ name?: StringNullableFilter<"dangerous_goods"> | string | null;
360048
360056
  un_number?: StringNullableFilter<"dangerous_goods"> | string | null;
360049
360057
  is_active?: BoolNullableFilter<"dangerous_goods"> | boolean | null;
360050
360058
  is_high_danger?: BoolNullableFilter<"dangerous_goods"> | boolean | null;
@@ -360063,6 +360071,7 @@ type dangerous_goodsOrderByWithRelationInput = {
360063
360071
  id_dg_packing_group?: SortOrderInput | SortOrder;
360064
360072
  id_dg_class?: SortOrderInput | SortOrder;
360065
360073
  logic_code?: SortOrderInput | SortOrder;
360074
+ name?: SortOrderInput | SortOrder;
360066
360075
  un_number?: SortOrderInput | SortOrder;
360067
360076
  is_active?: SortOrderInput | SortOrder;
360068
360077
  is_high_danger?: SortOrderInput | SortOrder;
@@ -360085,6 +360094,7 @@ type dangerous_goodsWhereUniqueInput = AtLeast<{
360085
360094
  NOT?: dangerous_goodsWhereInput | dangerous_goodsWhereInput[];
360086
360095
  id_dg_packing_group?: IntNullableFilter<"dangerous_goods"> | number | null;
360087
360096
  id_dg_class?: IntNullableFilter<"dangerous_goods"> | number | null;
360097
+ name?: StringNullableFilter<"dangerous_goods"> | string | null;
360088
360098
  is_active?: BoolNullableFilter<"dangerous_goods"> | boolean | null;
360089
360099
  is_high_danger?: BoolNullableFilter<"dangerous_goods"> | boolean | null;
360090
360100
  created_at?: DateTimeNullableFilter<"dangerous_goods"> | Date | string | null;
@@ -360102,6 +360112,7 @@ type dangerous_goodsOrderByWithAggregationInput = {
360102
360112
  id_dg_packing_group?: SortOrderInput | SortOrder;
360103
360113
  id_dg_class?: SortOrderInput | SortOrder;
360104
360114
  logic_code?: SortOrderInput | SortOrder;
360115
+ name?: SortOrderInput | SortOrder;
360105
360116
  un_number?: SortOrderInput | SortOrder;
360106
360117
  is_active?: SortOrderInput | SortOrder;
360107
360118
  is_high_danger?: SortOrderInput | SortOrder;
@@ -360123,6 +360134,7 @@ type dangerous_goodsScalarWhereWithAggregatesInput = {
360123
360134
  id_dg_packing_group?: IntNullableWithAggregatesFilter<"dangerous_goods"> | number | null;
360124
360135
  id_dg_class?: IntNullableWithAggregatesFilter<"dangerous_goods"> | number | null;
360125
360136
  logic_code?: StringNullableWithAggregatesFilter<"dangerous_goods"> | string | null;
360137
+ name?: StringNullableWithAggregatesFilter<"dangerous_goods"> | string | null;
360126
360138
  un_number?: StringNullableWithAggregatesFilter<"dangerous_goods"> | string | null;
360127
360139
  is_active?: BoolNullableWithAggregatesFilter<"dangerous_goods"> | boolean | null;
360128
360140
  is_high_danger?: BoolNullableWithAggregatesFilter<"dangerous_goods"> | boolean | null;
@@ -360133,6 +360145,7 @@ type dangerous_goodsScalarWhereWithAggregatesInput = {
360133
360145
  };
360134
360146
  type dangerous_goodsCreateInput = {
360135
360147
  logic_code?: string | null;
360148
+ name?: string | null;
360136
360149
  un_number?: string | null;
360137
360150
  is_active?: boolean | null;
360138
360151
  is_high_danger?: boolean | null;
@@ -360151,6 +360164,7 @@ type dangerous_goodsUncheckedCreateInput = {
360151
360164
  id_dg_packing_group?: number | null;
360152
360165
  id_dg_class?: number | null;
360153
360166
  logic_code?: string | null;
360167
+ name?: string | null;
360154
360168
  un_number?: string | null;
360155
360169
  is_active?: boolean | null;
360156
360170
  is_high_danger?: boolean | null;
@@ -360164,6 +360178,7 @@ type dangerous_goodsUncheckedCreateInput = {
360164
360178
  };
360165
360179
  type dangerous_goodsUpdateInput = {
360166
360180
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360181
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360167
360182
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360168
360183
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360169
360184
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360182,6 +360197,7 @@ type dangerous_goodsUncheckedUpdateInput = {
360182
360197
  id_dg_packing_group?: NullableIntFieldUpdateOperationsInput | number | null;
360183
360198
  id_dg_class?: NullableIntFieldUpdateOperationsInput | number | null;
360184
360199
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360200
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360185
360201
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360186
360202
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360187
360203
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360198,6 +360214,7 @@ type dangerous_goodsCreateManyInput = {
360198
360214
  id_dg_packing_group?: number | null;
360199
360215
  id_dg_class?: number | null;
360200
360216
  logic_code?: string | null;
360217
+ name?: string | null;
360201
360218
  un_number?: string | null;
360202
360219
  is_active?: boolean | null;
360203
360220
  is_high_danger?: boolean | null;
@@ -360208,6 +360225,7 @@ type dangerous_goodsCreateManyInput = {
360208
360225
  };
360209
360226
  type dangerous_goodsUpdateManyMutationInput = {
360210
360227
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360228
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360211
360229
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360212
360230
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360213
360231
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360221,6 +360239,7 @@ type dangerous_goodsUncheckedUpdateManyInput = {
360221
360239
  id_dg_packing_group?: NullableIntFieldUpdateOperationsInput | number | null;
360222
360240
  id_dg_class?: NullableIntFieldUpdateOperationsInput | number | null;
360223
360241
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360242
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360224
360243
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360225
360244
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360226
360245
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360234,6 +360253,7 @@ type dangerous_goodsCountOrderByAggregateInput = {
360234
360253
  id_dg_packing_group?: SortOrder;
360235
360254
  id_dg_class?: SortOrder;
360236
360255
  logic_code?: SortOrder;
360256
+ name?: SortOrder;
360237
360257
  un_number?: SortOrder;
360238
360258
  is_active?: SortOrder;
360239
360259
  is_high_danger?: SortOrder;
@@ -360252,6 +360272,7 @@ type dangerous_goodsMaxOrderByAggregateInput = {
360252
360272
  id_dg_packing_group?: SortOrder;
360253
360273
  id_dg_class?: SortOrder;
360254
360274
  logic_code?: SortOrder;
360275
+ name?: SortOrder;
360255
360276
  un_number?: SortOrder;
360256
360277
  is_active?: SortOrder;
360257
360278
  is_high_danger?: SortOrder;
@@ -360265,6 +360286,7 @@ type dangerous_goodsMinOrderByAggregateInput = {
360265
360286
  id_dg_packing_group?: SortOrder;
360266
360287
  id_dg_class?: SortOrder;
360267
360288
  logic_code?: SortOrder;
360289
+ name?: SortOrder;
360268
360290
  un_number?: SortOrder;
360269
360291
  is_active?: SortOrder;
360270
360292
  is_high_danger?: SortOrder;
@@ -360410,6 +360432,7 @@ type dangerous_goodsUpdateOneWithoutForwarding_shipment_packingsNestedInput = {
360410
360432
  };
360411
360433
  type dangerous_goodsCreateWithoutDangerous_good_rulesInput = {
360412
360434
  logic_code?: string | null;
360435
+ name?: string | null;
360413
360436
  un_number?: string | null;
360414
360437
  is_active?: boolean | null;
360415
360438
  is_high_danger?: boolean | null;
@@ -360427,6 +360450,7 @@ type dangerous_goodsUncheckedCreateWithoutDangerous_good_rulesInput = {
360427
360450
  id_dg_packing_group?: number | null;
360428
360451
  id_dg_class?: number | null;
360429
360452
  logic_code?: string | null;
360453
+ name?: string | null;
360430
360454
  un_number?: string | null;
360431
360455
  is_active?: boolean | null;
360432
360456
  is_high_danger?: boolean | null;
@@ -360452,6 +360476,7 @@ type dangerous_goodsUpdateToOneWithWhereWithoutDangerous_good_rulesInput = {
360452
360476
  };
360453
360477
  type dangerous_goodsUpdateWithoutDangerous_good_rulesInput = {
360454
360478
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360479
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360455
360480
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360456
360481
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360457
360482
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360469,6 +360494,7 @@ type dangerous_goodsUncheckedUpdateWithoutDangerous_good_rulesInput = {
360469
360494
  id_dg_packing_group?: NullableIntFieldUpdateOperationsInput | number | null;
360470
360495
  id_dg_class?: NullableIntFieldUpdateOperationsInput | number | null;
360471
360496
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360497
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360472
360498
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360473
360499
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360474
360500
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360481,6 +360507,7 @@ type dangerous_goodsUncheckedUpdateWithoutDangerous_good_rulesInput = {
360481
360507
  };
360482
360508
  type dangerous_goodsCreateWithoutDg_packing_groupInput = {
360483
360509
  logic_code?: string | null;
360510
+ name?: string | null;
360484
360511
  un_number?: string | null;
360485
360512
  is_active?: boolean | null;
360486
360513
  is_high_danger?: boolean | null;
@@ -360497,6 +360524,7 @@ type dangerous_goodsUncheckedCreateWithoutDg_packing_groupInput = {
360497
360524
  id?: number;
360498
360525
  id_dg_class?: number | null;
360499
360526
  logic_code?: string | null;
360527
+ name?: string | null;
360500
360528
  un_number?: string | null;
360501
360529
  is_active?: boolean | null;
360502
360530
  is_high_danger?: boolean | null;
@@ -360537,6 +360565,7 @@ type dangerous_goodsScalarWhereInput = {
360537
360565
  id_dg_packing_group?: IntNullableFilter<"dangerous_goods"> | number | null;
360538
360566
  id_dg_class?: IntNullableFilter<"dangerous_goods"> | number | null;
360539
360567
  logic_code?: StringNullableFilter<"dangerous_goods"> | string | null;
360568
+ name?: StringNullableFilter<"dangerous_goods"> | string | null;
360540
360569
  un_number?: StringNullableFilter<"dangerous_goods"> | string | null;
360541
360570
  is_active?: BoolNullableFilter<"dangerous_goods"> | boolean | null;
360542
360571
  is_high_danger?: BoolNullableFilter<"dangerous_goods"> | boolean | null;
@@ -360547,6 +360576,7 @@ type dangerous_goodsScalarWhereInput = {
360547
360576
  };
360548
360577
  type dangerous_goodsCreateWithoutDg_classInput = {
360549
360578
  logic_code?: string | null;
360579
+ name?: string | null;
360550
360580
  un_number?: string | null;
360551
360581
  is_active?: boolean | null;
360552
360582
  is_high_danger?: boolean | null;
@@ -360563,6 +360593,7 @@ type dangerous_goodsUncheckedCreateWithoutDg_classInput = {
360563
360593
  id?: number;
360564
360594
  id_dg_packing_group?: number | null;
360565
360595
  logic_code?: string | null;
360596
+ name?: string | null;
360566
360597
  un_number?: string | null;
360567
360598
  is_active?: boolean | null;
360568
360599
  is_high_danger?: boolean | null;
@@ -360597,6 +360628,7 @@ type dangerous_goodsUpdateManyWithWhereWithoutDg_classInput = {
360597
360628
  };
360598
360629
  type dangerous_goodsCreateWithoutDangerous_good_logsInput = {
360599
360630
  logic_code?: string | null;
360631
+ name?: string | null;
360600
360632
  un_number?: string | null;
360601
360633
  is_active?: boolean | null;
360602
360634
  is_high_danger?: boolean | null;
@@ -360614,6 +360646,7 @@ type dangerous_goodsUncheckedCreateWithoutDangerous_good_logsInput = {
360614
360646
  id_dg_packing_group?: number | null;
360615
360647
  id_dg_class?: number | null;
360616
360648
  logic_code?: string | null;
360649
+ name?: string | null;
360617
360650
  un_number?: string | null;
360618
360651
  is_active?: boolean | null;
360619
360652
  is_high_danger?: boolean | null;
@@ -360639,6 +360672,7 @@ type dangerous_goodsUpdateToOneWithWhereWithoutDangerous_good_logsInput = {
360639
360672
  };
360640
360673
  type dangerous_goodsUpdateWithoutDangerous_good_logsInput = {
360641
360674
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360675
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360642
360676
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360643
360677
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360644
360678
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360656,6 +360690,7 @@ type dangerous_goodsUncheckedUpdateWithoutDangerous_good_logsInput = {
360656
360690
  id_dg_packing_group?: NullableIntFieldUpdateOperationsInput | number | null;
360657
360691
  id_dg_class?: NullableIntFieldUpdateOperationsInput | number | null;
360658
360692
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360693
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360659
360694
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360660
360695
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360661
360696
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360668,6 +360703,7 @@ type dangerous_goodsUncheckedUpdateWithoutDangerous_good_logsInput = {
360668
360703
  };
360669
360704
  type dangerous_goodsCreateWithoutForwarding_shipment_packingsInput = {
360670
360705
  logic_code?: string | null;
360706
+ name?: string | null;
360671
360707
  un_number?: string | null;
360672
360708
  is_active?: boolean | null;
360673
360709
  is_high_danger?: boolean | null;
@@ -360685,6 +360721,7 @@ type dangerous_goodsUncheckedCreateWithoutForwarding_shipment_packingsInput = {
360685
360721
  id_dg_packing_group?: number | null;
360686
360722
  id_dg_class?: number | null;
360687
360723
  logic_code?: string | null;
360724
+ name?: string | null;
360688
360725
  un_number?: string | null;
360689
360726
  is_active?: boolean | null;
360690
360727
  is_high_danger?: boolean | null;
@@ -360710,6 +360747,7 @@ type dangerous_goodsUpdateToOneWithWhereWithoutForwarding_shipment_packingsInput
360710
360747
  };
360711
360748
  type dangerous_goodsUpdateWithoutForwarding_shipment_packingsInput = {
360712
360749
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360750
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360713
360751
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360714
360752
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360715
360753
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360727,6 +360765,7 @@ type dangerous_goodsUncheckedUpdateWithoutForwarding_shipment_packingsInput = {
360727
360765
  id_dg_packing_group?: NullableIntFieldUpdateOperationsInput | number | null;
360728
360766
  id_dg_class?: NullableIntFieldUpdateOperationsInput | number | null;
360729
360767
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360768
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360730
360769
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360731
360770
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360732
360771
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360741,6 +360780,7 @@ type dangerous_goodsCreateManyDg_packing_groupInput = {
360741
360780
  id?: number;
360742
360781
  id_dg_class?: number | null;
360743
360782
  logic_code?: string | null;
360783
+ name?: string | null;
360744
360784
  un_number?: string | null;
360745
360785
  is_active?: boolean | null;
360746
360786
  is_high_danger?: boolean | null;
@@ -360751,6 +360791,7 @@ type dangerous_goodsCreateManyDg_packing_groupInput = {
360751
360791
  };
360752
360792
  type dangerous_goodsUpdateWithoutDg_packing_groupInput = {
360753
360793
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360794
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360754
360795
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360755
360796
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360756
360797
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360767,6 +360808,7 @@ type dangerous_goodsUncheckedUpdateWithoutDg_packing_groupInput = {
360767
360808
  id?: IntFieldUpdateOperationsInput | number;
360768
360809
  id_dg_class?: NullableIntFieldUpdateOperationsInput | number | null;
360769
360810
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360811
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360770
360812
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360771
360813
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360772
360814
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360782,6 +360824,7 @@ type dangerous_goodsUncheckedUpdateManyWithoutDg_packing_groupInput = {
360782
360824
  id?: IntFieldUpdateOperationsInput | number;
360783
360825
  id_dg_class?: NullableIntFieldUpdateOperationsInput | number | null;
360784
360826
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360827
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360785
360828
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360786
360829
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360787
360830
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360794,6 +360837,7 @@ type dangerous_goodsCreateManyDg_classInput = {
360794
360837
  id?: number;
360795
360838
  id_dg_packing_group?: number | null;
360796
360839
  logic_code?: string | null;
360840
+ name?: string | null;
360797
360841
  un_number?: string | null;
360798
360842
  is_active?: boolean | null;
360799
360843
  is_high_danger?: boolean | null;
@@ -360804,6 +360848,7 @@ type dangerous_goodsCreateManyDg_classInput = {
360804
360848
  };
360805
360849
  type dangerous_goodsUpdateWithoutDg_classInput = {
360806
360850
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360851
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360807
360852
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360808
360853
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360809
360854
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360820,6 +360865,7 @@ type dangerous_goodsUncheckedUpdateWithoutDg_classInput = {
360820
360865
  id?: IntFieldUpdateOperationsInput | number;
360821
360866
  id_dg_packing_group?: NullableIntFieldUpdateOperationsInput | number | null;
360822
360867
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360868
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360823
360869
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360824
360870
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360825
360871
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360835,6 +360881,7 @@ type dangerous_goodsUncheckedUpdateManyWithoutDg_classInput = {
360835
360881
  id?: IntFieldUpdateOperationsInput | number;
360836
360882
  id_dg_packing_group?: NullableIntFieldUpdateOperationsInput | number | null;
360837
360883
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
360884
+ name?: NullableStringFieldUpdateOperationsInput | string | null;
360838
360885
  un_number?: NullableStringFieldUpdateOperationsInput | string | null;
360839
360886
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
360840
360887
  is_high_danger?: NullableBoolFieldUpdateOperationsInput | boolean | null;
@@ -360884,6 +360931,7 @@ type dangerous_goodsSelect<ExtArgs extends Types$1.Extensions.InternalArgs = Typ
360884
360931
  id_dg_packing_group?: boolean;
360885
360932
  id_dg_class?: boolean;
360886
360933
  logic_code?: boolean;
360934
+ name?: boolean;
360887
360935
  un_number?: boolean;
360888
360936
  is_active?: boolean;
360889
360937
  is_high_danger?: boolean;
@@ -360903,6 +360951,7 @@ type dangerous_goodsSelectCreateManyAndReturn<ExtArgs extends Types$1.Extensions
360903
360951
  id_dg_packing_group?: boolean;
360904
360952
  id_dg_class?: boolean;
360905
360953
  logic_code?: boolean;
360954
+ name?: boolean;
360906
360955
  un_number?: boolean;
360907
360956
  is_active?: boolean;
360908
360957
  is_high_danger?: boolean;
@@ -360918,6 +360967,7 @@ type dangerous_goodsSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensions
360918
360967
  id_dg_packing_group?: boolean;
360919
360968
  id_dg_class?: boolean;
360920
360969
  logic_code?: boolean;
360970
+ name?: boolean;
360921
360971
  un_number?: boolean;
360922
360972
  is_active?: boolean;
360923
360973
  is_high_danger?: boolean;
@@ -360928,7 +360978,7 @@ type dangerous_goodsSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensions
360928
360978
  dg_packing_group?: boolean | dangerous_goods$dg_packing_groupArgs<ExtArgs>;
360929
360979
  dg_class?: boolean | dangerous_goods$dg_classArgs<ExtArgs>;
360930
360980
  }, ExtArgs["result"]["dangerous_goods"]>;
360931
- type dangerous_goodsOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "id_dg_packing_group" | "id_dg_class" | "logic_code" | "un_number" | "is_active" | "is_high_danger" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["dangerous_goods"]>;
360981
+ type dangerous_goodsOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "id_dg_packing_group" | "id_dg_class" | "logic_code" | "name" | "un_number" | "is_active" | "is_high_danger" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["dangerous_goods"]>;
360932
360982
  type dangerous_goodsInclude<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
360933
360983
  dg_packing_group?: boolean | dangerous_goods$dg_packing_groupArgs<ExtArgs>;
360934
360984
  dg_class?: boolean | dangerous_goods$dg_classArgs<ExtArgs>;
@@ -360959,6 +361009,7 @@ type $dangerous_goodsPayload<ExtArgs extends Types$1.Extensions.InternalArgs = T
360959
361009
  id_dg_packing_group: number | null;
360960
361010
  id_dg_class: number | null;
360961
361011
  logic_code: string | null;
361012
+ name: string | null;
360962
361013
  un_number: string | null;
360963
361014
  is_active: boolean | null;
360964
361015
  is_high_danger: boolean | null;
@@ -361315,6 +361366,7 @@ interface dangerous_goodsFieldRefs {
361315
361366
  readonly id_dg_packing_group: FieldRef<"dangerous_goods", 'Int'>;
361316
361367
  readonly id_dg_class: FieldRef<"dangerous_goods", 'Int'>;
361317
361368
  readonly logic_code: FieldRef<"dangerous_goods", 'String'>;
361369
+ readonly name: FieldRef<"dangerous_goods", 'String'>;
361318
361370
  readonly un_number: FieldRef<"dangerous_goods", 'String'>;
361319
361371
  readonly is_active: FieldRef<"dangerous_goods", 'Boolean'>;
361320
361372
  readonly is_high_danger: FieldRef<"dangerous_goods", 'Boolean'>;
@@ -628318,6 +628370,7 @@ declare const Dangerous_goodsScalarFieldEnum: {
628318
628370
  readonly id_dg_packing_group: "id_dg_packing_group";
628319
628371
  readonly id_dg_class: "id_dg_class";
628320
628372
  readonly logic_code: "logic_code";
628373
+ readonly name: "name";
628321
628374
  readonly un_number: "un_number";
628322
628375
  readonly is_active: "is_active";
628323
628376
  readonly is_high_danger: "is_high_danger";
@@ -638652,6 +638705,7 @@ declare const appRouter: BuiltRouter<{
638652
638705
  } & {
638653
638706
  is_active: boolean | null;
638654
638707
  id: number;
638708
+ name: string | null;
638655
638709
  logic_code: string | null;
638656
638710
  created_at: Date | null;
638657
638711
  created_by: string | null;
@@ -638720,6 +638774,7 @@ declare const appRouter: BuiltRouter<{
638720
638774
  } | null;
638721
638775
  is_active: boolean | null;
638722
638776
  id: number;
638777
+ name: string | null;
638723
638778
  logic_code: string | null;
638724
638779
  created_at: Date | null;
638725
638780
  created_by: string | null;
@@ -638826,6 +638881,7 @@ declare const appRouter: BuiltRouter<{
638826
638881
  is_active?: boolean | undefined;
638827
638882
  id_dg_packing_group?: number | null | undefined;
638828
638883
  id_dg_class?: number | null | undefined;
638884
+ name?: string | null | undefined;
638829
638885
  un_number?: string | null | undefined;
638830
638886
  is_high_danger?: boolean | undefined;
638831
638887
  };
@@ -638833,6 +638889,7 @@ declare const appRouter: BuiltRouter<{
638833
638889
  data: {
638834
638890
  is_active: boolean | null;
638835
638891
  id: number;
638892
+ name: string | null;
638836
638893
  logic_code: string | null;
638837
638894
  created_at: Date | null;
638838
638895
  created_by: string | null;
@@ -638864,6 +638921,7 @@ declare const appRouter: BuiltRouter<{
638864
638921
  is_active?: boolean | undefined;
638865
638922
  id_dg_packing_group?: number | null | undefined;
638866
638923
  id_dg_class?: number | null | undefined;
638924
+ name?: string | null | undefined;
638867
638925
  un_number?: string | null | undefined;
638868
638926
  is_high_danger?: boolean | undefined;
638869
638927
  };
@@ -638871,6 +638929,7 @@ declare const appRouter: BuiltRouter<{
638871
638929
  data: {
638872
638930
  is_active: boolean | null;
638873
638931
  id: number;
638932
+ name: string | null;
638874
638933
  logic_code: string | null;
638875
638934
  created_at: Date | null;
638876
638935
  created_by: string | null;
@@ -638906,6 +638965,7 @@ declare const appRouter: BuiltRouter<{
638906
638965
  data: ({
638907
638966
  is_active: boolean | null;
638908
638967
  id: number;
638968
+ name: string | null;
638909
638969
  logic_code: string | null;
638910
638970
  created_at: Date | null;
638911
638971
  created_by: string | null;
@@ -639446,6 +639506,7 @@ declare const appRouter: BuiltRouter<{
639446
639506
  dangerous_good: {
639447
639507
  is_active: boolean | null;
639448
639508
  id: number;
639509
+ name: string | null;
639449
639510
  logic_code: string | null;
639450
639511
  created_at: Date | null;
639451
639512
  created_by: string | null;
@@ -639514,6 +639575,7 @@ declare const appRouter: BuiltRouter<{
639514
639575
  } | null;
639515
639576
  is_active: boolean | null;
639516
639577
  id: number;
639578
+ name: string | null;
639517
639579
  logic_code: string | null;
639518
639580
  created_at: Date | null;
639519
639581
  created_by: string | null;
@@ -639649,6 +639711,7 @@ declare const appRouter: BuiltRouter<{
639649
639711
  dangerous_good: {
639650
639712
  is_active: boolean | null;
639651
639713
  id: number;
639714
+ name: string | null;
639652
639715
  logic_code: string | null;
639653
639716
  created_at: Date | null;
639654
639717
  created_by: string | null;
@@ -639709,6 +639772,7 @@ declare const appRouter: BuiltRouter<{
639709
639772
  dangerous_good: {
639710
639773
  is_active: boolean | null;
639711
639774
  id: number;
639775
+ name: string | null;
639712
639776
  logic_code: string | null;
639713
639777
  created_at: Date | null;
639714
639778
  created_by: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-logixpair/api",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {