@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.
- package/dist/action/enums/enums.d.ts +10 -0
- package/dist/action/enums/enums.js +10 -0
- package/dist/assemble/dto/get-assemble-operation-count.dto.d.ts +24 -24
- package/dist/assemble/schemas/assemble-coming.schema.d.ts +18 -18
- package/dist/assemble/schemas/assemble.schema.d.ts +18 -18
- package/dist/assemble-kit/schemas/assemble-kit.schema.d.ts +6 -6
- package/dist/buyer/schemas/buyer.schema.d.ts +2 -2
- package/dist/buyer/schemas/purchases.schema.d.ts +2 -2
- package/dist/cbed/schemas/cbed.schema.d.ts +2 -2
- package/dist/company/schemas/companies.schema.d.ts +2 -2
- package/dist/detal/schemas/detal-deficit.schema.d.ts +28 -28
- package/dist/detal/schemas/detal.schema.d.ts +22 -22
- package/dist/document/dto/update-document.dto.d.ts +2 -2
- package/dist/edizm/schemas/edizm.schema.d.ts +2 -2
- package/dist/edizm/schemas/type-edizm.schema.d.ts +6 -6
- package/dist/equipment/dto/udate-equipment-type.dto.d.ts +2 -2
- package/dist/equipment/dto/update-equipment.dto.d.ts +1 -1
- package/dist/equipment/schemas/equipment-pt.schema.d.ts +2 -2
- package/dist/equipment/schemas/equipment.schema.d.ts +6 -6
- package/dist/expenditure/schema/expenditure-consumption.schema.d.ts +4 -4
- package/dist/expenditure/schema/expenditure-position.schema.d.ts +2 -2
- package/dist/instrument/dto/update-instrument.dto.d.ts +2 -2
- package/dist/instrument/dto/update-pt.dto.d.ts +2 -2
- package/dist/instrument/schemas/pt-instrument.schema.d.ts +2 -2
- package/dist/inventary/dto/update-inventary.dto.d.ts +2 -2
- package/dist/material/interfaces/interface.d.ts +3 -0
- package/dist/material/schemas/material-shipments-response.schema.d.ts +6 -6
- package/dist/material/schemas/material.schema.d.ts +6 -6
- package/dist/material/schemas/subtype-material.schema.d.ts +2 -2
- package/dist/material/schemas/subtype-material.schema.js +1 -1
- package/dist/material/schemas/type-material.schema.d.ts +2 -2
- package/dist/material/utils/workpiece-mass.js +1 -3
- package/dist/metaloworking/schemas/metaloworking-coming.schema.d.ts +2 -2
- package/dist/moving/schemas/moving.schema.d.ts +6 -6
- package/dist/operations/dto/get-type-operation-by-id.dto.d.ts +3 -3
- package/dist/operations/dto/update-type-operation.dto.d.ts +2 -2
- package/dist/product/schemas/product-deficit.schema.d.ts +6 -6
- package/dist/role/dto/update-role.dto.d.ts +2 -2
- package/dist/role/schemas/role.schema.d.ts +8 -8
- package/dist/sclad/schemas/remain.schema.d.ts +2 -2
- package/dist/sclad/schemas/remains.schema.d.ts +16 -16
- package/dist/settings/dto/update-edizm.dto.d.ts +2 -2
- package/dist/shipments/dto/shipments-list-pagination-response.dto.d.ts +18 -18
- package/dist/shipments/dto/up-create-shipments.dto.d.ts +4 -4
- package/dist/shipments/schemas/shipment-list-item.schema.d.ts +12 -12
- package/dist/shipments/schemas/shipments.schema.d.ts +4 -4
- package/dist/shipments/types/increment-shipments-kolvo.type.d.ts +12 -12
- package/dist/shipments/types/update-shipments-by-product.type.d.ts +12 -12
- package/dist/specification/schema/attributes.schema.d.ts +46 -46
- package/dist/tech-process/schemas/tech-process.schema.d.ts +2 -2
- package/dist/user/schemas/user.schema.d.ts +4 -4
- package/dist/utils/schemas/schema.d.ts +2 -2
- package/package.json +1 -1
|
@@ -2,6 +2,8 @@ export declare enum ActionEntityTypes {
|
|
|
2
2
|
production_operation_positions = "production_operation_positions",
|
|
3
3
|
product = "product",
|
|
4
4
|
cbed = "cbed",
|
|
5
|
+
type_material = "type_material",
|
|
6
|
+
subtype_material = "subtype_material",
|
|
5
7
|
movement_error = "movement_error",
|
|
6
8
|
rack = "rack",
|
|
7
9
|
tools = "tools",
|
|
@@ -56,6 +58,14 @@ export declare const ActionEntityTypesDB: {
|
|
|
56
58
|
readonly name: "cbed";
|
|
57
59
|
readonly attributes: readonly ["designation"];
|
|
58
60
|
};
|
|
61
|
+
readonly type_material: {
|
|
62
|
+
readonly name: "type_material";
|
|
63
|
+
readonly attributes: readonly ["name"];
|
|
64
|
+
};
|
|
65
|
+
readonly subtype_material: {
|
|
66
|
+
readonly name: "subtype_material";
|
|
67
|
+
readonly attributes: readonly ["name"];
|
|
68
|
+
};
|
|
59
69
|
readonly rack: {
|
|
60
70
|
readonly name: "rack";
|
|
61
71
|
readonly attributes: readonly ["id"];
|
|
@@ -6,6 +6,8 @@ var ActionEntityTypes;
|
|
|
6
6
|
ActionEntityTypes["production_operation_positions"] = "production_operation_positions";
|
|
7
7
|
ActionEntityTypes["product"] = "product";
|
|
8
8
|
ActionEntityTypes["cbed"] = "cbed";
|
|
9
|
+
ActionEntityTypes["type_material"] = "type_material";
|
|
10
|
+
ActionEntityTypes["subtype_material"] = "subtype_material";
|
|
9
11
|
ActionEntityTypes["movement_error"] = "movement_error";
|
|
10
12
|
ActionEntityTypes["rack"] = "rack";
|
|
11
13
|
ActionEntityTypes["tools"] = "tools";
|
|
@@ -54,6 +56,14 @@ exports.ActionEntityTypesDB = {
|
|
|
54
56
|
attributes: ['description']
|
|
55
57
|
},
|
|
56
58
|
[ActionEntityTypes.cbed]: { name: 'cbed', attributes: ['designation'] },
|
|
59
|
+
[ActionEntityTypes.type_material]: {
|
|
60
|
+
name: 'type_material',
|
|
61
|
+
attributes: ['name']
|
|
62
|
+
},
|
|
63
|
+
[ActionEntityTypes.subtype_material]: {
|
|
64
|
+
name: 'subtype_material',
|
|
65
|
+
attributes: ['name']
|
|
66
|
+
},
|
|
57
67
|
[ActionEntityTypes.rack]: { name: 'rack', attributes: ['id'] },
|
|
58
68
|
[ActionEntityTypes.shcomplit]: {
|
|
59
69
|
name: 'sh_complit',
|
|
@@ -43,8 +43,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
43
43
|
purchasesId: z.ZodOptional<z.ZodNumber>;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
45
|
ban: boolean;
|
|
46
|
-
id: number;
|
|
47
46
|
name: string;
|
|
47
|
+
id: number;
|
|
48
48
|
attention: boolean;
|
|
49
49
|
description?: string | null | undefined;
|
|
50
50
|
contacts?: string | null | undefined;
|
|
@@ -53,8 +53,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
53
53
|
rekvisit?: string | null | undefined;
|
|
54
54
|
purchasesId?: number | undefined;
|
|
55
55
|
}, {
|
|
56
|
-
id: number;
|
|
57
56
|
name: string;
|
|
57
|
+
id: number;
|
|
58
58
|
ban?: boolean | undefined;
|
|
59
59
|
description?: string | null | undefined;
|
|
60
60
|
contacts?: string | null | undefined;
|
|
@@ -86,8 +86,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
86
86
|
product?: any;
|
|
87
87
|
buyer?: {
|
|
88
88
|
ban: boolean;
|
|
89
|
-
id: number;
|
|
90
89
|
name: string;
|
|
90
|
+
id: number;
|
|
91
91
|
attention: boolean;
|
|
92
92
|
description?: string | null | undefined;
|
|
93
93
|
contacts?: string | null | undefined;
|
|
@@ -114,8 +114,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
114
114
|
ban?: boolean | undefined;
|
|
115
115
|
product?: any;
|
|
116
116
|
buyer?: {
|
|
117
|
-
id: number;
|
|
118
117
|
name: string;
|
|
118
|
+
id: number;
|
|
119
119
|
ban?: boolean | undefined;
|
|
120
120
|
description?: string | null | undefined;
|
|
121
121
|
contacts?: string | null | undefined;
|
|
@@ -325,8 +325,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
325
325
|
}, "strip", z.ZodTypeAny, {
|
|
326
326
|
ban: boolean;
|
|
327
327
|
description: string;
|
|
328
|
-
id?: number | null | undefined;
|
|
329
328
|
name?: number | undefined;
|
|
329
|
+
id?: number | null | undefined;
|
|
330
330
|
detalId?: number | null | undefined;
|
|
331
331
|
cbedId?: number | null | undefined;
|
|
332
332
|
productId?: number | null | undefined;
|
|
@@ -378,8 +378,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
378
378
|
}, {
|
|
379
379
|
ban?: boolean | undefined;
|
|
380
380
|
description?: string | undefined;
|
|
381
|
-
id?: number | null | undefined;
|
|
382
381
|
name?: number | undefined;
|
|
382
|
+
id?: number | null | undefined;
|
|
383
383
|
detalId?: number | null | undefined;
|
|
384
384
|
cbedId?: number | null | undefined;
|
|
385
385
|
productId?: number | null | undefined;
|
|
@@ -526,8 +526,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
526
526
|
purchasesId: z.ZodOptional<z.ZodNumber>;
|
|
527
527
|
}, "strip", z.ZodTypeAny, {
|
|
528
528
|
ban: boolean;
|
|
529
|
-
id: number;
|
|
530
529
|
name: string;
|
|
530
|
+
id: number;
|
|
531
531
|
attention: boolean;
|
|
532
532
|
description?: string | null | undefined;
|
|
533
533
|
contacts?: string | null | undefined;
|
|
@@ -536,8 +536,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
536
536
|
rekvisit?: string | null | undefined;
|
|
537
537
|
purchasesId?: number | undefined;
|
|
538
538
|
}, {
|
|
539
|
-
id: number;
|
|
540
539
|
name: string;
|
|
540
|
+
id: number;
|
|
541
541
|
ban?: boolean | undefined;
|
|
542
542
|
description?: string | null | undefined;
|
|
543
543
|
contacts?: string | null | undefined;
|
|
@@ -569,8 +569,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
569
569
|
product?: any;
|
|
570
570
|
buyer?: {
|
|
571
571
|
ban: boolean;
|
|
572
|
-
id: number;
|
|
573
572
|
name: string;
|
|
573
|
+
id: number;
|
|
574
574
|
attention: boolean;
|
|
575
575
|
description?: string | null | undefined;
|
|
576
576
|
contacts?: string | null | undefined;
|
|
@@ -597,8 +597,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
597
597
|
ban?: boolean | undefined;
|
|
598
598
|
product?: any;
|
|
599
599
|
buyer?: {
|
|
600
|
-
id: number;
|
|
601
600
|
name: string;
|
|
601
|
+
id: number;
|
|
602
602
|
ban?: boolean | undefined;
|
|
603
603
|
description?: string | null | undefined;
|
|
604
604
|
contacts?: string | null | undefined;
|
|
@@ -666,8 +666,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
666
666
|
product?: any;
|
|
667
667
|
buyer?: {
|
|
668
668
|
ban: boolean;
|
|
669
|
-
id: number;
|
|
670
669
|
name: string;
|
|
670
|
+
id: number;
|
|
671
671
|
attention: boolean;
|
|
672
672
|
description?: string | null | undefined;
|
|
673
673
|
contacts?: string | null | undefined;
|
|
@@ -726,8 +726,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
726
726
|
ban?: boolean | undefined;
|
|
727
727
|
product?: any;
|
|
728
728
|
buyer?: {
|
|
729
|
-
id: number;
|
|
730
729
|
name: string;
|
|
730
|
+
id: number;
|
|
731
731
|
ban?: boolean | undefined;
|
|
732
732
|
description?: string | null | undefined;
|
|
733
733
|
contacts?: string | null | undefined;
|
|
@@ -817,8 +817,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
817
817
|
tech_process?: {
|
|
818
818
|
ban: boolean;
|
|
819
819
|
description: string;
|
|
820
|
-
id?: number | null | undefined;
|
|
821
820
|
name?: number | undefined;
|
|
821
|
+
id?: number | null | undefined;
|
|
822
822
|
detalId?: number | null | undefined;
|
|
823
823
|
cbedId?: number | null | undefined;
|
|
824
824
|
productId?: number | null | undefined;
|
|
@@ -886,8 +886,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
886
886
|
product?: any;
|
|
887
887
|
buyer?: {
|
|
888
888
|
ban: boolean;
|
|
889
|
-
id: number;
|
|
890
889
|
name: string;
|
|
890
|
+
id: number;
|
|
891
891
|
attention: boolean;
|
|
892
892
|
description?: string | null | undefined;
|
|
893
893
|
contacts?: string | null | undefined;
|
|
@@ -964,8 +964,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
964
964
|
product?: any;
|
|
965
965
|
buyer?: {
|
|
966
966
|
ban: boolean;
|
|
967
|
-
id: number;
|
|
968
967
|
name: string;
|
|
968
|
+
id: number;
|
|
969
969
|
attention: boolean;
|
|
970
970
|
description?: string | null | undefined;
|
|
971
971
|
contacts?: string | null | undefined;
|
|
@@ -1004,8 +1004,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1004
1004
|
tech_process?: {
|
|
1005
1005
|
ban?: boolean | undefined;
|
|
1006
1006
|
description?: string | undefined;
|
|
1007
|
-
id?: number | null | undefined;
|
|
1008
1007
|
name?: number | undefined;
|
|
1008
|
+
id?: number | null | undefined;
|
|
1009
1009
|
detalId?: number | null | undefined;
|
|
1010
1010
|
cbedId?: number | null | undefined;
|
|
1011
1011
|
productId?: number | null | undefined;
|
|
@@ -1070,8 +1070,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1070
1070
|
ban?: boolean | undefined;
|
|
1071
1071
|
product?: any;
|
|
1072
1072
|
buyer?: {
|
|
1073
|
-
id: number;
|
|
1074
1073
|
name: string;
|
|
1074
|
+
id: number;
|
|
1075
1075
|
ban?: boolean | undefined;
|
|
1076
1076
|
description?: string | null | undefined;
|
|
1077
1077
|
contacts?: string | null | undefined;
|
|
@@ -1146,8 +1146,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1146
1146
|
ban?: boolean | undefined;
|
|
1147
1147
|
product?: any;
|
|
1148
1148
|
buyer?: {
|
|
1149
|
-
id: number;
|
|
1150
1149
|
name: string;
|
|
1150
|
+
id: number;
|
|
1151
1151
|
ban?: boolean | undefined;
|
|
1152
1152
|
description?: string | null | undefined;
|
|
1153
1153
|
contacts?: string | null | undefined;
|
|
@@ -1198,8 +1198,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1198
1198
|
tech_process?: {
|
|
1199
1199
|
ban: boolean;
|
|
1200
1200
|
description: string;
|
|
1201
|
-
id?: number | null | undefined;
|
|
1202
1201
|
name?: number | undefined;
|
|
1202
|
+
id?: number | null | undefined;
|
|
1203
1203
|
detalId?: number | null | undefined;
|
|
1204
1204
|
cbedId?: number | null | undefined;
|
|
1205
1205
|
productId?: number | null | undefined;
|
|
@@ -1267,8 +1267,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1267
1267
|
product?: any;
|
|
1268
1268
|
buyer?: {
|
|
1269
1269
|
ban: boolean;
|
|
1270
|
-
id: number;
|
|
1271
1270
|
name: string;
|
|
1271
|
+
id: number;
|
|
1272
1272
|
attention: boolean;
|
|
1273
1273
|
description?: string | null | undefined;
|
|
1274
1274
|
contacts?: string | null | undefined;
|
|
@@ -1345,8 +1345,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1345
1345
|
product?: any;
|
|
1346
1346
|
buyer?: {
|
|
1347
1347
|
ban: boolean;
|
|
1348
|
-
id: number;
|
|
1349
1348
|
name: string;
|
|
1349
|
+
id: number;
|
|
1350
1350
|
attention: boolean;
|
|
1351
1351
|
description?: string | null | undefined;
|
|
1352
1352
|
contacts?: string | null | undefined;
|
|
@@ -1387,8 +1387,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1387
1387
|
tech_process?: {
|
|
1388
1388
|
ban?: boolean | undefined;
|
|
1389
1389
|
description?: string | undefined;
|
|
1390
|
-
id?: number | null | undefined;
|
|
1391
1390
|
name?: number | undefined;
|
|
1391
|
+
id?: number | null | undefined;
|
|
1392
1392
|
detalId?: number | null | undefined;
|
|
1393
1393
|
cbedId?: number | null | undefined;
|
|
1394
1394
|
productId?: number | null | undefined;
|
|
@@ -1453,8 +1453,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1453
1453
|
ban?: boolean | undefined;
|
|
1454
1454
|
product?: any;
|
|
1455
1455
|
buyer?: {
|
|
1456
|
-
id: number;
|
|
1457
1456
|
name: string;
|
|
1457
|
+
id: number;
|
|
1458
1458
|
ban?: boolean | undefined;
|
|
1459
1459
|
description?: string | null | undefined;
|
|
1460
1460
|
contacts?: string | null | undefined;
|
|
@@ -1529,8 +1529,8 @@ export declare const GetAssembleByOperationCountDtoZod: z.ZodObject<{
|
|
|
1529
1529
|
ban?: boolean | undefined;
|
|
1530
1530
|
product?: any;
|
|
1531
1531
|
buyer?: {
|
|
1532
|
-
id: number;
|
|
1533
1532
|
name: string;
|
|
1533
|
+
id: number;
|
|
1534
1534
|
ban?: boolean | undefined;
|
|
1535
1535
|
description?: string | null | undefined;
|
|
1536
1536
|
contacts?: string | null | undefined;
|
|
@@ -44,8 +44,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
44
44
|
purchasesId: z.ZodOptional<z.ZodNumber>;
|
|
45
45
|
}, "strip", z.ZodTypeAny, {
|
|
46
46
|
ban: boolean;
|
|
47
|
-
id: number;
|
|
48
47
|
name: string;
|
|
48
|
+
id: number;
|
|
49
49
|
attention: boolean;
|
|
50
50
|
description?: string | null | undefined;
|
|
51
51
|
contacts?: string | null | undefined;
|
|
@@ -54,8 +54,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
54
54
|
rekvisit?: string | null | undefined;
|
|
55
55
|
purchasesId?: number | undefined;
|
|
56
56
|
}, {
|
|
57
|
-
id: number;
|
|
58
57
|
name: string;
|
|
58
|
+
id: number;
|
|
59
59
|
ban?: boolean | undefined;
|
|
60
60
|
description?: string | null | undefined;
|
|
61
61
|
contacts?: string | null | undefined;
|
|
@@ -87,8 +87,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
87
87
|
product?: any;
|
|
88
88
|
buyer?: {
|
|
89
89
|
ban: boolean;
|
|
90
|
-
id: number;
|
|
91
90
|
name: string;
|
|
91
|
+
id: number;
|
|
92
92
|
attention: boolean;
|
|
93
93
|
description?: string | null | undefined;
|
|
94
94
|
contacts?: string | null | undefined;
|
|
@@ -115,8 +115,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
115
115
|
ban?: boolean | undefined;
|
|
116
116
|
product?: any;
|
|
117
117
|
buyer?: {
|
|
118
|
-
id: number;
|
|
119
118
|
name: string;
|
|
119
|
+
id: number;
|
|
120
120
|
ban?: boolean | undefined;
|
|
121
121
|
description?: string | null | undefined;
|
|
122
122
|
contacts?: string | null | undefined;
|
|
@@ -326,8 +326,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
326
326
|
}, "strip", z.ZodTypeAny, {
|
|
327
327
|
ban: boolean;
|
|
328
328
|
description: string;
|
|
329
|
-
id?: number | null | undefined;
|
|
330
329
|
name?: number | undefined;
|
|
330
|
+
id?: number | null | undefined;
|
|
331
331
|
detalId?: number | null | undefined;
|
|
332
332
|
cbedId?: number | null | undefined;
|
|
333
333
|
productId?: number | null | undefined;
|
|
@@ -379,8 +379,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
379
379
|
}, {
|
|
380
380
|
ban?: boolean | undefined;
|
|
381
381
|
description?: string | undefined;
|
|
382
|
-
id?: number | null | undefined;
|
|
383
382
|
name?: number | undefined;
|
|
383
|
+
id?: number | null | undefined;
|
|
384
384
|
detalId?: number | null | undefined;
|
|
385
385
|
cbedId?: number | null | undefined;
|
|
386
386
|
productId?: number | null | undefined;
|
|
@@ -526,8 +526,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
526
526
|
purchasesId: z.ZodOptional<z.ZodNumber>;
|
|
527
527
|
}, "strip", z.ZodTypeAny, {
|
|
528
528
|
ban: boolean;
|
|
529
|
-
id: number;
|
|
530
529
|
name: string;
|
|
530
|
+
id: number;
|
|
531
531
|
attention: boolean;
|
|
532
532
|
description?: string | null | undefined;
|
|
533
533
|
contacts?: string | null | undefined;
|
|
@@ -536,8 +536,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
536
536
|
rekvisit?: string | null | undefined;
|
|
537
537
|
purchasesId?: number | undefined;
|
|
538
538
|
}, {
|
|
539
|
-
id: number;
|
|
540
539
|
name: string;
|
|
540
|
+
id: number;
|
|
541
541
|
ban?: boolean | undefined;
|
|
542
542
|
description?: string | null | undefined;
|
|
543
543
|
contacts?: string | null | undefined;
|
|
@@ -569,8 +569,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
569
569
|
product?: any;
|
|
570
570
|
buyer?: {
|
|
571
571
|
ban: boolean;
|
|
572
|
-
id: number;
|
|
573
572
|
name: string;
|
|
573
|
+
id: number;
|
|
574
574
|
attention: boolean;
|
|
575
575
|
description?: string | null | undefined;
|
|
576
576
|
contacts?: string | null | undefined;
|
|
@@ -597,8 +597,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
597
597
|
ban?: boolean | undefined;
|
|
598
598
|
product?: any;
|
|
599
599
|
buyer?: {
|
|
600
|
-
id: number;
|
|
601
600
|
name: string;
|
|
601
|
+
id: number;
|
|
602
602
|
ban?: boolean | undefined;
|
|
603
603
|
description?: string | null | undefined;
|
|
604
604
|
contacts?: string | null | undefined;
|
|
@@ -666,8 +666,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
666
666
|
product?: any;
|
|
667
667
|
buyer?: {
|
|
668
668
|
ban: boolean;
|
|
669
|
-
id: number;
|
|
670
669
|
name: string;
|
|
670
|
+
id: number;
|
|
671
671
|
attention: boolean;
|
|
672
672
|
description?: string | null | undefined;
|
|
673
673
|
contacts?: string | null | undefined;
|
|
@@ -726,8 +726,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
726
726
|
ban?: boolean | undefined;
|
|
727
727
|
product?: any;
|
|
728
728
|
buyer?: {
|
|
729
|
-
id: number;
|
|
730
729
|
name: string;
|
|
730
|
+
id: number;
|
|
731
731
|
ban?: boolean | undefined;
|
|
732
732
|
description?: string | null | undefined;
|
|
733
733
|
contacts?: string | null | undefined;
|
|
@@ -841,8 +841,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
841
841
|
tech_process?: {
|
|
842
842
|
ban: boolean;
|
|
843
843
|
description: string;
|
|
844
|
-
id?: number | null | undefined;
|
|
845
844
|
name?: number | undefined;
|
|
845
|
+
id?: number | null | undefined;
|
|
846
846
|
detalId?: number | null | undefined;
|
|
847
847
|
cbedId?: number | null | undefined;
|
|
848
848
|
productId?: number | null | undefined;
|
|
@@ -910,8 +910,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
910
910
|
product?: any;
|
|
911
911
|
buyer?: {
|
|
912
912
|
ban: boolean;
|
|
913
|
-
id: number;
|
|
914
913
|
name: string;
|
|
914
|
+
id: number;
|
|
915
915
|
attention: boolean;
|
|
916
916
|
description?: string | null | undefined;
|
|
917
917
|
contacts?: string | null | undefined;
|
|
@@ -992,8 +992,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
992
992
|
product?: any;
|
|
993
993
|
buyer?: {
|
|
994
994
|
ban: boolean;
|
|
995
|
-
id: number;
|
|
996
995
|
name: string;
|
|
996
|
+
id: number;
|
|
997
997
|
attention: boolean;
|
|
998
998
|
description?: string | null | undefined;
|
|
999
999
|
contacts?: string | null | undefined;
|
|
@@ -1039,8 +1039,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
1039
1039
|
tech_process?: {
|
|
1040
1040
|
ban?: boolean | undefined;
|
|
1041
1041
|
description?: string | undefined;
|
|
1042
|
-
id?: number | null | undefined;
|
|
1043
1042
|
name?: number | undefined;
|
|
1043
|
+
id?: number | null | undefined;
|
|
1044
1044
|
detalId?: number | null | undefined;
|
|
1045
1045
|
cbedId?: number | null | undefined;
|
|
1046
1046
|
productId?: number | null | undefined;
|
|
@@ -1105,8 +1105,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
1105
1105
|
ban?: boolean | undefined;
|
|
1106
1106
|
product?: any;
|
|
1107
1107
|
buyer?: {
|
|
1108
|
-
id: number;
|
|
1109
1108
|
name: string;
|
|
1109
|
+
id: number;
|
|
1110
1110
|
ban?: boolean | undefined;
|
|
1111
1111
|
description?: string | null | undefined;
|
|
1112
1112
|
contacts?: string | null | undefined;
|
|
@@ -1185,8 +1185,8 @@ export declare const AssembleComingSchema: z.ZodObject<{
|
|
|
1185
1185
|
ban?: boolean | undefined;
|
|
1186
1186
|
product?: any;
|
|
1187
1187
|
buyer?: {
|
|
1188
|
-
id: number;
|
|
1189
1188
|
name: string;
|
|
1189
|
+
id: number;
|
|
1190
1190
|
ban?: boolean | undefined;
|
|
1191
1191
|
description?: string | null | undefined;
|
|
1192
1192
|
contacts?: string | null | undefined;
|
|
@@ -44,8 +44,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
44
44
|
purchasesId: z.ZodOptional<z.ZodNumber>;
|
|
45
45
|
}, "strip", z.ZodTypeAny, {
|
|
46
46
|
ban: boolean;
|
|
47
|
-
id: number;
|
|
48
47
|
name: string;
|
|
48
|
+
id: number;
|
|
49
49
|
attention: boolean;
|
|
50
50
|
description?: string | null | undefined;
|
|
51
51
|
contacts?: string | null | undefined;
|
|
@@ -54,8 +54,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
54
54
|
rekvisit?: string | null | undefined;
|
|
55
55
|
purchasesId?: number | undefined;
|
|
56
56
|
}, {
|
|
57
|
-
id: number;
|
|
58
57
|
name: string;
|
|
58
|
+
id: number;
|
|
59
59
|
ban?: boolean | undefined;
|
|
60
60
|
description?: string | null | undefined;
|
|
61
61
|
contacts?: string | null | undefined;
|
|
@@ -87,8 +87,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
87
87
|
product?: any;
|
|
88
88
|
buyer?: {
|
|
89
89
|
ban: boolean;
|
|
90
|
-
id: number;
|
|
91
90
|
name: string;
|
|
91
|
+
id: number;
|
|
92
92
|
attention: boolean;
|
|
93
93
|
description?: string | null | undefined;
|
|
94
94
|
contacts?: string | null | undefined;
|
|
@@ -115,8 +115,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
115
115
|
ban?: boolean | undefined;
|
|
116
116
|
product?: any;
|
|
117
117
|
buyer?: {
|
|
118
|
-
id: number;
|
|
119
118
|
name: string;
|
|
119
|
+
id: number;
|
|
120
120
|
ban?: boolean | undefined;
|
|
121
121
|
description?: string | null | undefined;
|
|
122
122
|
contacts?: string | null | undefined;
|
|
@@ -326,8 +326,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
326
326
|
}, "strip", z.ZodTypeAny, {
|
|
327
327
|
ban: boolean;
|
|
328
328
|
description: string;
|
|
329
|
-
id?: number | null | undefined;
|
|
330
329
|
name?: number | undefined;
|
|
330
|
+
id?: number | null | undefined;
|
|
331
331
|
detalId?: number | null | undefined;
|
|
332
332
|
cbedId?: number | null | undefined;
|
|
333
333
|
productId?: number | null | undefined;
|
|
@@ -379,8 +379,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
379
379
|
}, {
|
|
380
380
|
ban?: boolean | undefined;
|
|
381
381
|
description?: string | undefined;
|
|
382
|
-
id?: number | null | undefined;
|
|
383
382
|
name?: number | undefined;
|
|
383
|
+
id?: number | null | undefined;
|
|
384
384
|
detalId?: number | null | undefined;
|
|
385
385
|
cbedId?: number | null | undefined;
|
|
386
386
|
productId?: number | null | undefined;
|
|
@@ -527,8 +527,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
527
527
|
purchasesId: z.ZodOptional<z.ZodNumber>;
|
|
528
528
|
}, "strip", z.ZodTypeAny, {
|
|
529
529
|
ban: boolean;
|
|
530
|
-
id: number;
|
|
531
530
|
name: string;
|
|
531
|
+
id: number;
|
|
532
532
|
attention: boolean;
|
|
533
533
|
description?: string | null | undefined;
|
|
534
534
|
contacts?: string | null | undefined;
|
|
@@ -537,8 +537,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
537
537
|
rekvisit?: string | null | undefined;
|
|
538
538
|
purchasesId?: number | undefined;
|
|
539
539
|
}, {
|
|
540
|
-
id: number;
|
|
541
540
|
name: string;
|
|
541
|
+
id: number;
|
|
542
542
|
ban?: boolean | undefined;
|
|
543
543
|
description?: string | null | undefined;
|
|
544
544
|
contacts?: string | null | undefined;
|
|
@@ -570,8 +570,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
570
570
|
product?: any;
|
|
571
571
|
buyer?: {
|
|
572
572
|
ban: boolean;
|
|
573
|
-
id: number;
|
|
574
573
|
name: string;
|
|
574
|
+
id: number;
|
|
575
575
|
attention: boolean;
|
|
576
576
|
description?: string | null | undefined;
|
|
577
577
|
contacts?: string | null | undefined;
|
|
@@ -598,8 +598,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
598
598
|
ban?: boolean | undefined;
|
|
599
599
|
product?: any;
|
|
600
600
|
buyer?: {
|
|
601
|
-
id: number;
|
|
602
601
|
name: string;
|
|
602
|
+
id: number;
|
|
603
603
|
ban?: boolean | undefined;
|
|
604
604
|
description?: string | null | undefined;
|
|
605
605
|
contacts?: string | null | undefined;
|
|
@@ -667,8 +667,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
667
667
|
product?: any;
|
|
668
668
|
buyer?: {
|
|
669
669
|
ban: boolean;
|
|
670
|
-
id: number;
|
|
671
670
|
name: string;
|
|
671
|
+
id: number;
|
|
672
672
|
attention: boolean;
|
|
673
673
|
description?: string | null | undefined;
|
|
674
674
|
contacts?: string | null | undefined;
|
|
@@ -727,8 +727,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
727
727
|
ban?: boolean | undefined;
|
|
728
728
|
product?: any;
|
|
729
729
|
buyer?: {
|
|
730
|
-
id: number;
|
|
731
730
|
name: string;
|
|
731
|
+
id: number;
|
|
732
732
|
ban?: boolean | undefined;
|
|
733
733
|
description?: string | null | undefined;
|
|
734
734
|
contacts?: string | null | undefined;
|
|
@@ -818,8 +818,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
818
818
|
tech_process?: {
|
|
819
819
|
ban: boolean;
|
|
820
820
|
description: string;
|
|
821
|
-
id?: number | null | undefined;
|
|
822
821
|
name?: number | undefined;
|
|
822
|
+
id?: number | null | undefined;
|
|
823
823
|
detalId?: number | null | undefined;
|
|
824
824
|
cbedId?: number | null | undefined;
|
|
825
825
|
productId?: number | null | undefined;
|
|
@@ -887,8 +887,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
887
887
|
product?: any;
|
|
888
888
|
buyer?: {
|
|
889
889
|
ban: boolean;
|
|
890
|
-
id: number;
|
|
891
890
|
name: string;
|
|
891
|
+
id: number;
|
|
892
892
|
attention: boolean;
|
|
893
893
|
description?: string | null | undefined;
|
|
894
894
|
contacts?: string | null | undefined;
|
|
@@ -965,8 +965,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
965
965
|
product?: any;
|
|
966
966
|
buyer?: {
|
|
967
967
|
ban: boolean;
|
|
968
|
-
id: number;
|
|
969
968
|
name: string;
|
|
969
|
+
id: number;
|
|
970
970
|
attention: boolean;
|
|
971
971
|
description?: string | null | undefined;
|
|
972
972
|
contacts?: string | null | undefined;
|
|
@@ -1005,8 +1005,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
1005
1005
|
tech_process?: {
|
|
1006
1006
|
ban?: boolean | undefined;
|
|
1007
1007
|
description?: string | undefined;
|
|
1008
|
-
id?: number | null | undefined;
|
|
1009
1008
|
name?: number | undefined;
|
|
1009
|
+
id?: number | null | undefined;
|
|
1010
1010
|
detalId?: number | null | undefined;
|
|
1011
1011
|
cbedId?: number | null | undefined;
|
|
1012
1012
|
productId?: number | null | undefined;
|
|
@@ -1071,8 +1071,8 @@ export declare const AssembleSchema: z.ZodObject<{
|
|
|
1071
1071
|
ban?: boolean | undefined;
|
|
1072
1072
|
product?: any;
|
|
1073
1073
|
buyer?: {
|
|
1074
|
-
id: number;
|
|
1075
1074
|
name: string;
|
|
1075
|
+
id: number;
|
|
1076
1076
|
ban?: boolean | undefined;
|
|
1077
1077
|
description?: string | null | undefined;
|
|
1078
1078
|
contacts?: string | null | undefined;
|
|
@@ -1147,8 +1147,8 @@ export declare const AssembleSchema: 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;
|
|
@@ -98,8 +98,8 @@ export declare const AssembleKitSchema: z.ZodObject<{
|
|
|
98
98
|
purchasesId: z.ZodOptional<z.ZodNumber>;
|
|
99
99
|
}, "strip", z.ZodTypeAny, {
|
|
100
100
|
ban: boolean;
|
|
101
|
-
id: number;
|
|
102
101
|
name: string;
|
|
102
|
+
id: number;
|
|
103
103
|
attention: boolean;
|
|
104
104
|
description?: string | null | undefined;
|
|
105
105
|
contacts?: string | null | undefined;
|
|
@@ -108,8 +108,8 @@ export declare const AssembleKitSchema: z.ZodObject<{
|
|
|
108
108
|
rekvisit?: string | null | undefined;
|
|
109
109
|
purchasesId?: number | undefined;
|
|
110
110
|
}, {
|
|
111
|
-
id: number;
|
|
112
111
|
name: string;
|
|
112
|
+
id: number;
|
|
113
113
|
ban?: boolean | undefined;
|
|
114
114
|
description?: string | null | undefined;
|
|
115
115
|
contacts?: string | null | undefined;
|
|
@@ -141,8 +141,8 @@ export declare const AssembleKitSchema: z.ZodObject<{
|
|
|
141
141
|
product?: any;
|
|
142
142
|
buyer?: {
|
|
143
143
|
ban: boolean;
|
|
144
|
-
id: number;
|
|
145
144
|
name: string;
|
|
145
|
+
id: number;
|
|
146
146
|
attention: boolean;
|
|
147
147
|
description?: string | null | undefined;
|
|
148
148
|
contacts?: string | null | undefined;
|
|
@@ -169,8 +169,8 @@ export declare const AssembleKitSchema: z.ZodObject<{
|
|
|
169
169
|
ban?: boolean | undefined;
|
|
170
170
|
product?: any;
|
|
171
171
|
buyer?: {
|
|
172
|
-
id: number;
|
|
173
172
|
name: string;
|
|
173
|
+
id: number;
|
|
174
174
|
ban?: boolean | undefined;
|
|
175
175
|
description?: string | null | undefined;
|
|
176
176
|
contacts?: string | null | undefined;
|
|
@@ -238,8 +238,8 @@ export declare const AssembleKitSchema: z.ZodObject<{
|
|
|
238
238
|
product?: any;
|
|
239
239
|
buyer?: {
|
|
240
240
|
ban: boolean;
|
|
241
|
-
id: number;
|
|
242
241
|
name: string;
|
|
242
|
+
id: number;
|
|
243
243
|
attention: boolean;
|
|
244
244
|
description?: string | null | undefined;
|
|
245
245
|
contacts?: string | null | undefined;
|
|
@@ -298,8 +298,8 @@ export declare const AssembleKitSchema: z.ZodObject<{
|
|
|
298
298
|
ban?: boolean | undefined;
|
|
299
299
|
product?: any;
|
|
300
300
|
buyer?: {
|
|
301
|
-
id: number;
|
|
302
301
|
name: string;
|
|
302
|
+
id: number;
|
|
303
303
|
ban?: boolean | undefined;
|
|
304
304
|
description?: string | null | undefined;
|
|
305
305
|
contacts?: string | null | undefined;
|