@pksep/zod-shared 0.0.550 → 0.0.551

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 (53) hide show
  1. package/dist/action/enums/enums.d.ts +10 -0
  2. package/dist/action/enums/enums.js +10 -0
  3. package/dist/assemble/dto/get-assemble-operation-count.dto.d.ts +24 -24
  4. package/dist/assemble/schemas/assemble-coming.schema.d.ts +18 -18
  5. package/dist/assemble/schemas/assemble.schema.d.ts +18 -18
  6. package/dist/assemble-kit/schemas/assemble-kit.schema.d.ts +6 -6
  7. package/dist/buyer/schemas/buyer.schema.d.ts +2 -2
  8. package/dist/buyer/schemas/purchases.schema.d.ts +2 -2
  9. package/dist/cbed/schemas/cbed.schema.d.ts +2 -2
  10. package/dist/company/schemas/companies.schema.d.ts +2 -2
  11. package/dist/detal/schemas/detal-deficit.schema.d.ts +28 -28
  12. package/dist/detal/schemas/detal.schema.d.ts +22 -22
  13. package/dist/document/dto/update-document.dto.d.ts +2 -2
  14. package/dist/edizm/schemas/edizm.schema.d.ts +2 -2
  15. package/dist/edizm/schemas/type-edizm.schema.d.ts +6 -6
  16. package/dist/equipment/dto/udate-equipment-type.dto.d.ts +2 -2
  17. package/dist/equipment/dto/update-equipment.dto.d.ts +1 -1
  18. package/dist/equipment/schemas/equipment-pt.schema.d.ts +2 -2
  19. package/dist/equipment/schemas/equipment.schema.d.ts +6 -6
  20. package/dist/expenditure/schema/expenditure-consumption.schema.d.ts +4 -4
  21. package/dist/expenditure/schema/expenditure-position.schema.d.ts +2 -2
  22. package/dist/instrument/dto/update-instrument.dto.d.ts +2 -2
  23. package/dist/instrument/dto/update-pt.dto.d.ts +2 -2
  24. package/dist/instrument/schemas/pt-instrument.schema.d.ts +2 -2
  25. package/dist/inventary/dto/update-inventary.dto.d.ts +2 -2
  26. package/dist/material/interfaces/interface.d.ts +3 -0
  27. package/dist/material/schemas/material-shipments-response.schema.d.ts +6 -6
  28. package/dist/material/schemas/material.schema.d.ts +6 -6
  29. package/dist/material/schemas/subtype-material.schema.d.ts +2 -2
  30. package/dist/material/schemas/subtype-material.schema.js +1 -1
  31. package/dist/material/schemas/type-material.schema.d.ts +2 -2
  32. package/dist/material/utils/workpiece-mass.js +1 -3
  33. package/dist/metaloworking/schemas/metaloworking-coming.schema.d.ts +2 -2
  34. package/dist/moving/schemas/moving.schema.d.ts +6 -6
  35. package/dist/operations/dto/get-type-operation-by-id.dto.d.ts +3 -3
  36. package/dist/operations/dto/update-type-operation.dto.d.ts +2 -2
  37. package/dist/product/schemas/product-deficit.schema.d.ts +6 -6
  38. package/dist/role/dto/update-role.dto.d.ts +2 -2
  39. package/dist/role/schemas/role.schema.d.ts +8 -8
  40. package/dist/sclad/schemas/remain.schema.d.ts +2 -2
  41. package/dist/sclad/schemas/remains.schema.d.ts +16 -16
  42. package/dist/settings/dto/update-edizm.dto.d.ts +2 -2
  43. package/dist/shipments/dto/shipments-list-pagination-response.dto.d.ts +18 -18
  44. package/dist/shipments/dto/up-create-shipments.dto.d.ts +4 -4
  45. package/dist/shipments/schemas/shipment-list-item.schema.d.ts +12 -12
  46. package/dist/shipments/schemas/shipments.schema.d.ts +4 -4
  47. package/dist/shipments/types/increment-shipments-kolvo.type.d.ts +12 -12
  48. package/dist/shipments/types/update-shipments-by-product.type.d.ts +12 -12
  49. package/dist/specification/schema/attributes.schema.d.ts +46 -46
  50. package/dist/tech-process/schemas/tech-process.schema.d.ts +2 -2
  51. package/dist/user/schemas/user.schema.d.ts +4 -4
  52. package/dist/utils/schemas/schema.d.ts +2 -2
  53. package/package.json +1 -1
@@ -12,8 +12,8 @@ export declare const BuyerSchema: z.ZodObject<{
12
12
  purchasesId: z.ZodOptional<z.ZodNumber>;
13
13
  }, "strip", z.ZodTypeAny, {
14
14
  ban: boolean;
15
- id: number;
16
15
  name: string;
16
+ id: number;
17
17
  attention: boolean;
18
18
  description?: string | null | undefined;
19
19
  contacts?: string | null | undefined;
@@ -22,8 +22,8 @@ export declare const BuyerSchema: z.ZodObject<{
22
22
  rekvisit?: string | null | undefined;
23
23
  purchasesId?: number | undefined;
24
24
  }, {
25
- id: number;
26
25
  name: string;
26
+ id: number;
27
27
  ban?: boolean | undefined;
28
28
  description?: string | null | undefined;
29
29
  contacts?: string | null | undefined;
@@ -12,8 +12,8 @@ export declare const PurchasesSchema: z.ZodObject<{
12
12
  }, "strip", z.ZodTypeAny, {
13
13
  status: string;
14
14
  description: string;
15
- id: number;
16
15
  name: string;
16
+ id: number;
17
17
  orderNumber: string;
18
18
  dateStart: string;
19
19
  count: string;
@@ -22,8 +22,8 @@ export declare const PurchasesSchema: z.ZodObject<{
22
22
  }, {
23
23
  status: string;
24
24
  description: string;
25
- id: number;
26
25
  name: string;
26
+ id: number;
27
27
  orderNumber: string;
28
28
  dateStart: string;
29
29
  count: string;
@@ -51,8 +51,8 @@ export declare const CbedSchema: z.ZodObject<{
51
51
  cbed: CbedRelativeType[];
52
52
  designation: string | null;
53
53
  description: string | null;
54
- id: number;
55
54
  name: string;
55
+ id: number;
56
56
  calculate_needs_time: Date | null;
57
57
  entity_children_need_time: Date | null;
58
58
  min_remaining: number;
@@ -82,8 +82,8 @@ export declare const CbedSchema: z.ZodObject<{
82
82
  }, {
83
83
  designation: string | null;
84
84
  description: string | null;
85
- id: number;
86
85
  name: string;
86
+ id: number;
87
87
  ava_path: string | null;
88
88
  parametrs: CbedParametrsField | null;
89
89
  characteristic: CbedCharacteristicField | null;
@@ -33,8 +33,8 @@ export declare const CompanySchema: z.ZodObject<{
33
33
  }>, "many">>;
34
34
  }, "strip", z.ZodTypeAny, {
35
35
  ban: boolean;
36
- id: number;
37
36
  name: string;
37
+ id: number;
38
38
  requisites: {
39
39
  value: string;
40
40
  title: {
@@ -48,8 +48,8 @@ export declare const CompanySchema: z.ZodObject<{
48
48
  inn?: string | null | undefined;
49
49
  cpp?: string | null | undefined;
50
50
  }, {
51
- id: number;
52
51
  name: string;
52
+ id: number;
53
53
  type?: import("../enums/enums").EnumCompanyType[] | undefined;
54
54
  ban?: boolean | undefined;
55
55
  description?: string | null | undefined;
@@ -383,8 +383,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
383
383
  shipments: z.ZodOptional<z.ZodAny>;
384
384
  typeMaterial: z.ZodType<{
385
385
  ban: boolean;
386
- id: number;
387
386
  name: string;
387
+ id: number;
388
388
  characteristics: {
389
389
  length: {
390
390
  edizmId: number;
@@ -436,8 +436,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
436
436
  workpieceMassFormulaKey?: import("../..").WorkpieceMassFormulaKey | null | undefined;
437
437
  }, z.ZodTypeDef, {
438
438
  ban: boolean;
439
- id: number;
440
439
  name: string;
440
+ id: number;
441
441
  characteristics: {
442
442
  length: {
443
443
  edizmId: number;
@@ -491,8 +491,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
491
491
  }, "strip", z.ZodTypeAny, {
492
492
  ban: boolean;
493
493
  description: string | null;
494
- id: number;
495
494
  name: string;
495
+ id: number;
496
496
  entity_children_need_time: Date | null;
497
497
  min_remaining: number;
498
498
  quantity: number;
@@ -572,8 +572,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
572
572
  actual_shipment_id: number | null;
573
573
  typeMaterial: {
574
574
  ban: boolean;
575
- id: number;
576
575
  name: string;
576
+ id: number;
577
577
  characteristics: {
578
578
  length: {
579
579
  edizmId: number;
@@ -628,8 +628,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
628
628
  isOrderedByStockOrder?: boolean | undefined;
629
629
  }, {
630
630
  description: string | null;
631
- id: number;
632
631
  name: string;
632
+ id: number;
633
633
  min_remaining: number;
634
634
  quantity: number;
635
635
  deficit: number;
@@ -705,8 +705,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
705
705
  actual_shipment_id: number | null;
706
706
  typeMaterial: {
707
707
  ban: boolean;
708
- id: number;
709
708
  name: string;
709
+ id: number;
710
710
  characteristics: {
711
711
  length: {
712
712
  edizmId: number;
@@ -811,8 +811,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
811
811
  cbed: import("../..").CbedRelativeType[];
812
812
  designation: string | null;
813
813
  description: string | null;
814
- id: number;
815
814
  name: string;
815
+ id: number;
816
816
  calculate_needs_time: Date | null;
817
817
  entity_children_need_time: Date | null;
818
818
  min_remaining: number;
@@ -842,8 +842,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
842
842
  }, {
843
843
  designation: string | null;
844
844
  description: string | null;
845
- id: number;
846
845
  name: string;
846
+ id: number;
847
847
  ava_path: string | null;
848
848
  parametrs: import("../..").CbedParametrsField | null;
849
849
  characteristic: import("../..").CbedCharacteristicField | null;
@@ -1070,8 +1070,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1070
1070
  purchasesId: z.ZodOptional<z.ZodNumber>;
1071
1071
  }, "strip", z.ZodTypeAny, {
1072
1072
  ban: boolean;
1073
- id: number;
1074
1073
  name: string;
1074
+ id: number;
1075
1075
  attention: boolean;
1076
1076
  description?: string | null | undefined;
1077
1077
  contacts?: string | null | undefined;
@@ -1080,8 +1080,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1080
1080
  rekvisit?: string | null | undefined;
1081
1081
  purchasesId?: number | undefined;
1082
1082
  }, {
1083
- id: number;
1084
1083
  name: string;
1084
+ id: number;
1085
1085
  ban?: boolean | undefined;
1086
1086
  description?: string | null | undefined;
1087
1087
  contacts?: string | null | undefined;
@@ -1113,8 +1113,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1113
1113
  product?: any;
1114
1114
  buyer?: {
1115
1115
  ban: boolean;
1116
- id: number;
1117
1116
  name: string;
1117
+ id: number;
1118
1118
  attention: boolean;
1119
1119
  description?: string | null | undefined;
1120
1120
  contacts?: string | null | undefined;
@@ -1141,8 +1141,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1141
1141
  ban?: boolean | undefined;
1142
1142
  product?: any;
1143
1143
  buyer?: {
1144
- id: number;
1145
1144
  name: string;
1145
+ id: number;
1146
1146
  ban?: boolean | undefined;
1147
1147
  description?: string | null | undefined;
1148
1148
  contacts?: string | null | undefined;
@@ -1190,8 +1190,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1190
1190
  purchasesId: z.ZodOptional<z.ZodNumber>;
1191
1191
  }, "strip", z.ZodTypeAny, {
1192
1192
  ban: boolean;
1193
- id: number;
1194
1193
  name: string;
1194
+ id: number;
1195
1195
  attention: boolean;
1196
1196
  description?: string | null | undefined;
1197
1197
  contacts?: string | null | undefined;
@@ -1200,8 +1200,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1200
1200
  rekvisit?: string | null | undefined;
1201
1201
  purchasesId?: number | undefined;
1202
1202
  }, {
1203
- id: number;
1204
1203
  name: string;
1204
+ id: number;
1205
1205
  ban?: boolean | undefined;
1206
1206
  description?: string | null | undefined;
1207
1207
  contacts?: string | null | undefined;
@@ -1233,8 +1233,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1233
1233
  product?: any;
1234
1234
  buyer?: {
1235
1235
  ban: boolean;
1236
- id: number;
1237
1236
  name: string;
1237
+ id: number;
1238
1238
  attention: boolean;
1239
1239
  description?: string | null | undefined;
1240
1240
  contacts?: string | null | undefined;
@@ -1261,8 +1261,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1261
1261
  ban?: boolean | undefined;
1262
1262
  product?: any;
1263
1263
  buyer?: {
1264
- id: number;
1265
1264
  name: string;
1265
+ id: number;
1266
1266
  ban?: boolean | undefined;
1267
1267
  description?: string | null | undefined;
1268
1268
  contacts?: string | null | undefined;
@@ -1298,8 +1298,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1298
1298
  product?: any;
1299
1299
  buyer?: {
1300
1300
  ban: boolean;
1301
- id: number;
1302
1301
  name: string;
1302
+ id: number;
1303
1303
  attention: boolean;
1304
1304
  description?: string | null | undefined;
1305
1305
  contacts?: string | null | undefined;
@@ -1312,8 +1312,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1312
1312
  warehouse_readiness_date?: Date | null | undefined;
1313
1313
  parent_id?: number | null | undefined;
1314
1314
  };
1315
- id: number;
1316
1315
  name: string;
1316
+ id: number;
1317
1317
  calculate_needs_time: Date | null;
1318
1318
  entity_children_need_time: Date | null;
1319
1319
  min_remaining: number;
@@ -1339,8 +1339,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1339
1339
  cbed: import("../..").CbedRelativeType[];
1340
1340
  designation: string | null;
1341
1341
  description: string | null;
1342
- id: number;
1343
1342
  name: string;
1343
+ id: number;
1344
1344
  calculate_needs_time: Date | null;
1345
1345
  entity_children_need_time: Date | null;
1346
1346
  min_remaining: number;
@@ -1417,8 +1417,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1417
1417
  product?: any;
1418
1418
  buyer?: {
1419
1419
  ban: boolean;
1420
- id: number;
1421
1420
  name: string;
1421
+ id: number;
1422
1422
  attention: boolean;
1423
1423
  description?: string | null | undefined;
1424
1424
  contacts?: string | null | undefined;
@@ -1468,8 +1468,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1468
1468
  materials?: {
1469
1469
  ban: boolean;
1470
1470
  description: string | null;
1471
- id: number;
1472
1471
  name: string;
1472
+ id: number;
1473
1473
  entity_children_need_time: Date | null;
1474
1474
  min_remaining: number;
1475
1475
  quantity: number;
@@ -1549,8 +1549,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1549
1549
  actual_shipment_id: number | null;
1550
1550
  typeMaterial: {
1551
1551
  ban: boolean;
1552
- id: number;
1553
1552
  name: string;
1553
+ id: number;
1554
1554
  characteristics: {
1555
1555
  length: {
1556
1556
  edizmId: number;
@@ -1645,8 +1645,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1645
1645
  ban?: boolean | undefined;
1646
1646
  product?: any;
1647
1647
  buyer?: {
1648
- id: number;
1649
1648
  name: string;
1649
+ id: number;
1650
1650
  ban?: boolean | undefined;
1651
1651
  description?: string | null | undefined;
1652
1652
  contacts?: string | null | undefined;
@@ -1662,8 +1662,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1662
1662
  is_custom_product?: boolean | undefined;
1663
1663
  parent_id?: number | null | undefined;
1664
1664
  };
1665
- id: number;
1666
1665
  name: string;
1666
+ id: number;
1667
1667
  parametrs: import("..").detalParametrsField | null;
1668
1668
  characteristic: import("..").detalCharacteristicField | null;
1669
1669
  responsibleId: number;
@@ -1675,8 +1675,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1675
1675
  cbed?: {
1676
1676
  designation: string | null;
1677
1677
  description: string | null;
1678
- id: number;
1679
1678
  name: string;
1679
+ id: number;
1680
1680
  ava_path: string | null;
1681
1681
  parametrs: import("../..").CbedParametrsField | null;
1682
1682
  characteristic: import("../..").CbedCharacteristicField | null;
@@ -1752,8 +1752,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1752
1752
  ban?: boolean | undefined;
1753
1753
  product?: any;
1754
1754
  buyer?: {
1755
- id: number;
1756
1755
  name: string;
1756
+ id: number;
1757
1757
  ban?: boolean | undefined;
1758
1758
  description?: string | null | undefined;
1759
1759
  contacts?: string | null | undefined;
@@ -1818,8 +1818,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1818
1818
  }[] | undefined;
1819
1819
  materials?: {
1820
1820
  description: string | null;
1821
- id: number;
1822
1821
  name: string;
1822
+ id: number;
1823
1823
  min_remaining: number;
1824
1824
  quantity: number;
1825
1825
  deficit: number;
@@ -1895,8 +1895,8 @@ export declare const DetalDeficitSchema: z.ZodObject<{
1895
1895
  actual_shipment_id: number | null;
1896
1896
  typeMaterial: {
1897
1897
  ban: boolean;
1898
- id: number;
1899
1898
  name: string;
1899
+ id: number;
1900
1900
  characteristics: {
1901
1901
  length: {
1902
1902
  edizmId: number;
@@ -389,8 +389,8 @@ export declare const DetalSchema: z.ZodObject<{
389
389
  shipments: z.ZodOptional<z.ZodAny>;
390
390
  typeMaterial: z.ZodType<{
391
391
  ban: boolean;
392
- id: number;
393
392
  name: string;
393
+ id: number;
394
394
  characteristics: {
395
395
  length: {
396
396
  edizmId: number;
@@ -442,8 +442,8 @@ export declare const DetalSchema: z.ZodObject<{
442
442
  workpieceMassFormulaKey?: import("../../material").WorkpieceMassFormulaKey | null | undefined;
443
443
  }, z.ZodTypeDef, {
444
444
  ban: boolean;
445
- id: number;
446
445
  name: string;
446
+ id: number;
447
447
  characteristics: {
448
448
  length: {
449
449
  edizmId: number;
@@ -497,8 +497,8 @@ export declare const DetalSchema: z.ZodObject<{
497
497
  }, "strip", z.ZodTypeAny, {
498
498
  ban: boolean;
499
499
  description: string | null;
500
- id: number;
501
500
  name: string;
501
+ id: number;
502
502
  entity_children_need_time: Date | null;
503
503
  min_remaining: number;
504
504
  quantity: number;
@@ -578,8 +578,8 @@ export declare const DetalSchema: z.ZodObject<{
578
578
  actual_shipment_id: number | null;
579
579
  typeMaterial: {
580
580
  ban: boolean;
581
- id: number;
582
581
  name: string;
582
+ id: number;
583
583
  characteristics: {
584
584
  length: {
585
585
  edizmId: number;
@@ -634,8 +634,8 @@ export declare const DetalSchema: z.ZodObject<{
634
634
  isOrderedByStockOrder?: boolean | undefined;
635
635
  }, {
636
636
  description: string | null;
637
- id: number;
638
637
  name: string;
638
+ id: number;
639
639
  min_remaining: number;
640
640
  quantity: number;
641
641
  deficit: number;
@@ -711,8 +711,8 @@ export declare const DetalSchema: z.ZodObject<{
711
711
  actual_shipment_id: number | null;
712
712
  typeMaterial: {
713
713
  ban: boolean;
714
- id: number;
715
714
  name: string;
715
+ id: number;
716
716
  characteristics: {
717
717
  length: {
718
718
  edizmId: number;
@@ -817,8 +817,8 @@ export declare const DetalSchema: z.ZodObject<{
817
817
  cbed: import("../../cbed").CbedRelativeType[];
818
818
  designation: string | null;
819
819
  description: string | null;
820
- id: number;
821
820
  name: string;
821
+ id: number;
822
822
  calculate_needs_time: Date | null;
823
823
  entity_children_need_time: Date | null;
824
824
  min_remaining: number;
@@ -848,8 +848,8 @@ export declare const DetalSchema: z.ZodObject<{
848
848
  }, {
849
849
  designation: string | null;
850
850
  description: string | null;
851
- id: number;
852
851
  name: string;
852
+ id: number;
853
853
  ava_path: string | null;
854
854
  parametrs: import("../../cbed").CbedParametrsField | null;
855
855
  characteristic: import("../../cbed").CbedCharacteristicField | null;
@@ -1076,8 +1076,8 @@ export declare const DetalSchema: z.ZodObject<{
1076
1076
  purchasesId: z.ZodOptional<z.ZodNumber>;
1077
1077
  }, "strip", z.ZodTypeAny, {
1078
1078
  ban: boolean;
1079
- id: number;
1080
1079
  name: string;
1080
+ id: number;
1081
1081
  attention: boolean;
1082
1082
  description?: string | null | undefined;
1083
1083
  contacts?: string | null | undefined;
@@ -1086,8 +1086,8 @@ export declare const DetalSchema: z.ZodObject<{
1086
1086
  rekvisit?: string | null | undefined;
1087
1087
  purchasesId?: number | undefined;
1088
1088
  }, {
1089
- id: number;
1090
1089
  name: string;
1090
+ id: number;
1091
1091
  ban?: boolean | undefined;
1092
1092
  description?: string | null | undefined;
1093
1093
  contacts?: string | null | undefined;
@@ -1119,8 +1119,8 @@ export declare const DetalSchema: z.ZodObject<{
1119
1119
  product?: any;
1120
1120
  buyer?: {
1121
1121
  ban: boolean;
1122
- id: number;
1123
1122
  name: string;
1123
+ id: number;
1124
1124
  attention: boolean;
1125
1125
  description?: string | null | undefined;
1126
1126
  contacts?: string | null | undefined;
@@ -1147,8 +1147,8 @@ export declare const DetalSchema: z.ZodObject<{
1147
1147
  ban?: boolean | undefined;
1148
1148
  product?: any;
1149
1149
  buyer?: {
1150
- id: number;
1151
1150
  name: string;
1151
+ id: number;
1152
1152
  ban?: boolean | undefined;
1153
1153
  description?: string | null | undefined;
1154
1154
  contacts?: string | null | undefined;
@@ -1167,8 +1167,8 @@ export declare const DetalSchema: z.ZodObject<{
1167
1167
  discontinued: z.ZodOptional<z.ZodBoolean>;
1168
1168
  }, "strip", z.ZodTypeAny, {
1169
1169
  ban: boolean;
1170
- id: number;
1171
1170
  name: string;
1171
+ id: number;
1172
1172
  calculate_needs_time: Date | null;
1173
1173
  entity_children_need_time: Date | null;
1174
1174
  min_remaining: number;
@@ -1192,8 +1192,8 @@ export declare const DetalSchema: z.ZodObject<{
1192
1192
  cbed: import("../../cbed").CbedRelativeType[];
1193
1193
  designation: string | null;
1194
1194
  description: string | null;
1195
- id: number;
1196
1195
  name: string;
1196
+ id: number;
1197
1197
  calculate_needs_time: Date | null;
1198
1198
  entity_children_need_time: Date | null;
1199
1199
  min_remaining: number;
@@ -1270,8 +1270,8 @@ export declare const DetalSchema: z.ZodObject<{
1270
1270
  product?: any;
1271
1271
  buyer?: {
1272
1272
  ban: boolean;
1273
- id: number;
1274
1273
  name: string;
1274
+ id: number;
1275
1275
  attention: boolean;
1276
1276
  description?: string | null | undefined;
1277
1277
  contacts?: string | null | undefined;
@@ -1321,8 +1321,8 @@ export declare const DetalSchema: z.ZodObject<{
1321
1321
  materials?: {
1322
1322
  ban: boolean;
1323
1323
  description: string | null;
1324
- id: number;
1325
1324
  name: string;
1325
+ id: number;
1326
1326
  entity_children_need_time: Date | null;
1327
1327
  min_remaining: number;
1328
1328
  quantity: number;
@@ -1402,8 +1402,8 @@ export declare const DetalSchema: z.ZodObject<{
1402
1402
  actual_shipment_id: number | null;
1403
1403
  typeMaterial: {
1404
1404
  ban: boolean;
1405
- id: number;
1406
1405
  name: string;
1406
+ id: number;
1407
1407
  characteristics: {
1408
1408
  length: {
1409
1409
  edizmId: number;
@@ -1483,8 +1483,8 @@ export declare const DetalSchema: z.ZodObject<{
1483
1483
  product_id?: number | null | undefined;
1484
1484
  }[] | undefined;
1485
1485
  }, {
1486
- id: number;
1487
1486
  name: string;
1487
+ id: number;
1488
1488
  parametrs: detalParametrsField | null;
1489
1489
  characteristic: detalCharacteristicField | null;
1490
1490
  responsibleId: number;
@@ -1494,8 +1494,8 @@ export declare const DetalSchema: z.ZodObject<{
1494
1494
  cbed?: {
1495
1495
  designation: string | null;
1496
1496
  description: string | null;
1497
- id: number;
1498
1497
  name: string;
1498
+ id: number;
1499
1499
  ava_path: string | null;
1500
1500
  parametrs: import("../../cbed").CbedParametrsField | null;
1501
1501
  characteristic: import("../../cbed").CbedCharacteristicField | null;
@@ -1571,8 +1571,8 @@ export declare const DetalSchema: z.ZodObject<{
1571
1571
  ban?: boolean | undefined;
1572
1572
  product?: any;
1573
1573
  buyer?: {
1574
- id: number;
1575
1574
  name: string;
1575
+ id: number;
1576
1576
  ban?: boolean | undefined;
1577
1577
  description?: string | null | undefined;
1578
1578
  contacts?: string | null | undefined;
@@ -1637,8 +1637,8 @@ export declare const DetalSchema: z.ZodObject<{
1637
1637
  }[] | undefined;
1638
1638
  materials?: {
1639
1639
  description: string | null;
1640
- id: number;
1641
1640
  name: string;
1641
+ id: number;
1642
1642
  min_remaining: number;
1643
1643
  quantity: number;
1644
1644
  deficit: number;
@@ -1714,8 +1714,8 @@ export declare const DetalSchema: z.ZodObject<{
1714
1714
  actual_shipment_id: number | null;
1715
1715
  typeMaterial: {
1716
1716
  ban: boolean;
1717
- id: number;
1718
1717
  name: string;
1718
+ id: number;
1719
1719
  characteristics: {
1720
1720
  length: {
1721
1721
  edizmId: number;
@@ -10,16 +10,16 @@ export declare const UpdateDocumentDtoZod: z.ZodObject<{
10
10
  }, "strip", z.ZodTypeAny, {
11
11
  type: string;
12
12
  description: string;
13
- id: number;
14
13
  name: string;
14
+ id: number;
15
15
  ava: boolean;
16
16
  responsibleUserId: number | null;
17
17
  version?: number | null | undefined;
18
18
  }, {
19
19
  type: string;
20
20
  description: string;
21
- id: number;
22
21
  name: string;
22
+ id: number;
23
23
  version?: unknown;
24
24
  ava?: boolean | undefined;
25
25
  responsibleUserId?: number | null | undefined;
@@ -5,12 +5,12 @@ export declare const EdizmSchema: z.ZodObject<{
5
5
  name: z.ZodString;
6
6
  short_name: z.ZodString;
7
7
  }, "strip", z.ZodTypeAny, {
8
- id: number;
9
8
  name: string;
9
+ id: number;
10
10
  short_name: string;
11
11
  }, {
12
- id: number;
13
12
  name: string;
13
+ id: number;
14
14
  short_name: string;
15
15
  }>;
16
16
  export type ModelEdizm = z.infer<typeof EdizmSchema> & {
@@ -7,28 +7,28 @@ export declare const TypeEdizmSchema: z.ZodObject<{
7
7
  name: z.ZodString;
8
8
  short_name: z.ZodString;
9
9
  }, "strip", z.ZodTypeAny, {
10
- id: number;
11
10
  name: string;
11
+ id: number;
12
12
  short_name: string;
13
13
  }, {
14
- id: number;
15
14
  name: string;
15
+ id: number;
16
16
  short_name: string;
17
17
  }>, "many">;
18
18
  }, "strip", z.ZodTypeAny, {
19
- id: number;
20
19
  name: string;
20
+ id: number;
21
21
  edizm: {
22
- id: number;
23
22
  name: string;
23
+ id: number;
24
24
  short_name: string;
25
25
  }[];
26
26
  }, {
27
- id: number;
28
27
  name: string;
28
+ id: number;
29
29
  edizm: {
30
- id: number;
31
30
  name: string;
31
+ id: number;
32
32
  short_name: string;
33
33
  }[];
34
34
  }>;
@@ -3,10 +3,10 @@ export declare const UpdateEquipmentTypeDtoZod: z.ZodObject<{
3
3
  id: z.ZodNumber;
4
4
  name: z.ZodString;
5
5
  }, "strip", z.ZodTypeAny, {
6
- id: number;
7
6
  name: string;
8
- }, {
9
7
  id: number;
8
+ }, {
10
9
  name: string;
10
+ id: number;
11
11
  }>;
12
12
  export type UpdateEquipmentTypeDtoType = z.infer<typeof UpdateEquipmentTypeDtoZod>;
@@ -16,8 +16,8 @@ export declare const UpdateEquipmentDtoZod: z.ZodObject<{
16
16
  typeOperationIds: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>>, number[] | null, unknown>;
17
17
  }, "strip", z.ZodTypeAny, {
18
18
  description: string;
19
- id: number | null;
20
19
  name: string;
20
+ id: number | null;
21
21
  attention: boolean | null;
22
22
  deliveryTime: string;
23
23
  invNymber: string;
@@ -5,11 +5,11 @@ export declare const EquipmentPTypeSchema: z.ZodObject<{
5
5
  id: z.ZodNumber;
6
6
  name: z.ZodString;
7
7
  }, "strip", z.ZodTypeAny, {
8
- id: number;
9
8
  name: string;
10
- }, {
11
9
  id: number;
10
+ }, {
12
11
  name: string;
12
+ id: number;
13
13
  }>;
14
14
  export type ModelEquipmentPType = z.infer<typeof EquipmentPTypeSchema> & {
15
15
  equipmentTypes?: ModelEquipmentType[];