@pksep/zod-shared 0.0.561 → 0.0.563
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/excel-export/excel-export.dto.d.ts +2915 -388
- package/dist/excel-export/excel-export.dto.js +317 -2
- package/package.json +37 -37
- package/dist/ai-mcp/schemas/ai-mcp-entity-editor.schema.d.ts +0 -130
- package/dist/ai-mcp/schemas/ai-mcp-entity-editor.schema.js +0 -118
- package/dist/ai-mcp/schemas/ai-mcp-specification.schema.d.ts +0 -123
- package/dist/ai-mcp/schemas/ai-mcp-specification.schema.js +0 -110
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.ErpEntityEditorUpdateInputZod = exports.ErpEntityEditorGetInputZod = exports.ErpEntityEditorUpdateInputShape = exports.ErpEntityEditorGetInputShape = void 0;
|
|
37
|
-
const z = __importStar(require("zod/v4"));
|
|
38
|
-
const ai_mcp_schema_1 = require("./ai-mcp.schema");
|
|
39
|
-
const entityReferenceShape = {
|
|
40
|
-
type: ai_mcp_schema_1.AiMcpEntityTypeZod,
|
|
41
|
-
entityName: z.string().trim().min(1).max(255).optional(),
|
|
42
|
-
entityDesignation: z.string().trim().min(1).max(255).optional()
|
|
43
|
-
};
|
|
44
|
-
const editableVariableZod = z.object({
|
|
45
|
-
name: z.string().trim().min(1).max(255),
|
|
46
|
-
unit: z.string().trim().max(50),
|
|
47
|
-
value: z.union([z.string().max(1000), z.number()])
|
|
48
|
-
});
|
|
49
|
-
const detailProductionTimesZod = z.object({
|
|
50
|
-
preparation: z.union([z.string().max(100), z.number()]),
|
|
51
|
-
helper: z.union([z.string().max(100), z.number()]),
|
|
52
|
-
main: z.union([z.string().max(100), z.number()])
|
|
53
|
-
});
|
|
54
|
-
const detailWorkpieceCharacteristicsZod = z.object({
|
|
55
|
-
diameter: z.number(),
|
|
56
|
-
billetLength: z.number(),
|
|
57
|
-
length: z.number(),
|
|
58
|
-
width: z.number(),
|
|
59
|
-
height: z.number(),
|
|
60
|
-
wallThickness: z.number(),
|
|
61
|
-
outsideDiameter: z.number(),
|
|
62
|
-
thickness: z.number(),
|
|
63
|
-
crossSectionArea: z.number(),
|
|
64
|
-
acrossFlats: z.number(),
|
|
65
|
-
massPerMeter: z.number(),
|
|
66
|
-
density: z.number(),
|
|
67
|
-
mass: z.number(),
|
|
68
|
-
waste: z.number()
|
|
69
|
-
});
|
|
70
|
-
exports.ErpEntityEditorGetInputShape = Object.assign(Object.assign({}, entityReferenceShape), { includeArchived: z.boolean().default(false) });
|
|
71
|
-
exports.ErpEntityEditorUpdateInputShape = Object.assign(Object.assign({}, entityReferenceShape), { changes: z.object({
|
|
72
|
-
name: z.string().trim().min(1).max(255).optional(),
|
|
73
|
-
designation: z.string().trim().max(255).optional(),
|
|
74
|
-
article: z.string().trim().max(255).optional(),
|
|
75
|
-
responsibleName: z.string().trim().min(1).max(255).optional(),
|
|
76
|
-
description: z.string().max(4000).optional(),
|
|
77
|
-
attention: z.boolean().optional(),
|
|
78
|
-
custom: z.boolean().optional(),
|
|
79
|
-
discontinued: z.boolean().optional(),
|
|
80
|
-
parameters: z.array(editableVariableZod).max(100).optional(),
|
|
81
|
-
characteristics: z.array(editableVariableZod).min(1).max(100).optional(),
|
|
82
|
-
detailProductionTimes: detailProductionTimesZod.optional(),
|
|
83
|
-
workpieceCharacteristics: detailWorkpieceCharacteristicsZod.optional(),
|
|
84
|
-
mainMaterialName: z.string().trim().min(1).max(255).nullable().optional(),
|
|
85
|
-
replacementMaterialName: z
|
|
86
|
-
.string()
|
|
87
|
-
.trim()
|
|
88
|
-
.min(1)
|
|
89
|
-
.max(255)
|
|
90
|
-
.nullable()
|
|
91
|
-
.optional()
|
|
92
|
-
}), idempotencyKey: z
|
|
93
|
-
.string()
|
|
94
|
-
.trim()
|
|
95
|
-
.min(8)
|
|
96
|
-
.max(128)
|
|
97
|
-
.regex(/^[a-zA-Z0-9._:-]+$/) });
|
|
98
|
-
exports.ErpEntityEditorGetInputZod = z
|
|
99
|
-
.object(exports.ErpEntityEditorGetInputShape)
|
|
100
|
-
.refine(input => input.entityName || input.entityDesignation, {
|
|
101
|
-
message: 'Укажите название или обозначение сущности ERP.'
|
|
102
|
-
});
|
|
103
|
-
exports.ErpEntityEditorUpdateInputZod = z
|
|
104
|
-
.object(exports.ErpEntityEditorUpdateInputShape)
|
|
105
|
-
.superRefine((input, context) => {
|
|
106
|
-
if (!input.entityName && !input.entityDesignation) {
|
|
107
|
-
context.addIssue({
|
|
108
|
-
code: 'custom',
|
|
109
|
-
message: 'Укажите название или обозначение сущности ERP.'
|
|
110
|
-
});
|
|
111
|
-
}
|
|
112
|
-
if (Object.keys(input.changes).length === 0) {
|
|
113
|
-
context.addIssue({
|
|
114
|
-
code: 'custom',
|
|
115
|
-
message: 'Укажите хотя бы одно изменение карточки ERP.'
|
|
116
|
-
});
|
|
117
|
-
}
|
|
118
|
-
});
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
import * as z from 'zod/v4';
|
|
2
|
-
import { IzdType, SpetificationEntityKeys } from '../../utils';
|
|
3
|
-
export declare const ErpSpecificationItemAddInputShape: {
|
|
4
|
-
quantity: z.ZodNumber;
|
|
5
|
-
measureId: z.ZodOptional<z.ZodNumber>;
|
|
6
|
-
position: z.ZodOptional<z.ZodNumber>;
|
|
7
|
-
parentType: z.ZodEnum<{
|
|
8
|
-
product: IzdType.product;
|
|
9
|
-
cbed: IzdType.cbed;
|
|
10
|
-
detal: IzdType.detal;
|
|
11
|
-
}>;
|
|
12
|
-
parentName: z.ZodOptional<z.ZodString>;
|
|
13
|
-
parentDesignation: z.ZodOptional<z.ZodString>;
|
|
14
|
-
section: z.ZodEnum<typeof SpetificationEntityKeys>;
|
|
15
|
-
itemName: z.ZodOptional<z.ZodString>;
|
|
16
|
-
itemDesignation: z.ZodOptional<z.ZodString>;
|
|
17
|
-
idempotencyKey: z.ZodString;
|
|
18
|
-
};
|
|
19
|
-
export declare const ErpSpecificationItemUpdateInputShape: {
|
|
20
|
-
quantity: z.ZodOptional<z.ZodNumber>;
|
|
21
|
-
measureId: z.ZodOptional<z.ZodNumber>;
|
|
22
|
-
parentType: z.ZodEnum<{
|
|
23
|
-
product: IzdType.product;
|
|
24
|
-
cbed: IzdType.cbed;
|
|
25
|
-
detal: IzdType.detal;
|
|
26
|
-
}>;
|
|
27
|
-
parentName: z.ZodOptional<z.ZodString>;
|
|
28
|
-
parentDesignation: z.ZodOptional<z.ZodString>;
|
|
29
|
-
section: z.ZodEnum<typeof SpetificationEntityKeys>;
|
|
30
|
-
itemName: z.ZodOptional<z.ZodString>;
|
|
31
|
-
itemDesignation: z.ZodOptional<z.ZodString>;
|
|
32
|
-
idempotencyKey: z.ZodString;
|
|
33
|
-
};
|
|
34
|
-
export declare const ErpSpecificationItemMoveInputShape: {
|
|
35
|
-
position: z.ZodNumber;
|
|
36
|
-
parentType: z.ZodEnum<{
|
|
37
|
-
product: IzdType.product;
|
|
38
|
-
cbed: IzdType.cbed;
|
|
39
|
-
detal: IzdType.detal;
|
|
40
|
-
}>;
|
|
41
|
-
parentName: z.ZodOptional<z.ZodString>;
|
|
42
|
-
parentDesignation: z.ZodOptional<z.ZodString>;
|
|
43
|
-
section: z.ZodEnum<typeof SpetificationEntityKeys>;
|
|
44
|
-
itemName: z.ZodOptional<z.ZodString>;
|
|
45
|
-
itemDesignation: z.ZodOptional<z.ZodString>;
|
|
46
|
-
idempotencyKey: z.ZodString;
|
|
47
|
-
};
|
|
48
|
-
export declare const ErpSpecificationItemRemoveInputShape: {
|
|
49
|
-
parentType: z.ZodEnum<{
|
|
50
|
-
product: IzdType.product;
|
|
51
|
-
cbed: IzdType.cbed;
|
|
52
|
-
detal: IzdType.detal;
|
|
53
|
-
}>;
|
|
54
|
-
parentName: z.ZodOptional<z.ZodString>;
|
|
55
|
-
parentDesignation: z.ZodOptional<z.ZodString>;
|
|
56
|
-
section: z.ZodEnum<typeof SpetificationEntityKeys>;
|
|
57
|
-
itemName: z.ZodOptional<z.ZodString>;
|
|
58
|
-
itemDesignation: z.ZodOptional<z.ZodString>;
|
|
59
|
-
idempotencyKey: z.ZodString;
|
|
60
|
-
};
|
|
61
|
-
export declare const ErpSpecificationItemAddInputZod: z.ZodObject<{
|
|
62
|
-
quantity: z.ZodNumber;
|
|
63
|
-
measureId: z.ZodOptional<z.ZodNumber>;
|
|
64
|
-
position: z.ZodOptional<z.ZodNumber>;
|
|
65
|
-
parentType: z.ZodEnum<{
|
|
66
|
-
product: IzdType.product;
|
|
67
|
-
cbed: IzdType.cbed;
|
|
68
|
-
detal: IzdType.detal;
|
|
69
|
-
}>;
|
|
70
|
-
parentName: z.ZodOptional<z.ZodString>;
|
|
71
|
-
parentDesignation: z.ZodOptional<z.ZodString>;
|
|
72
|
-
section: z.ZodEnum<typeof SpetificationEntityKeys>;
|
|
73
|
-
itemName: z.ZodOptional<z.ZodString>;
|
|
74
|
-
itemDesignation: z.ZodOptional<z.ZodString>;
|
|
75
|
-
idempotencyKey: z.ZodString;
|
|
76
|
-
}, z.core.$strip>;
|
|
77
|
-
export declare const ErpSpecificationItemUpdateInputZod: z.ZodObject<{
|
|
78
|
-
quantity: z.ZodOptional<z.ZodNumber>;
|
|
79
|
-
measureId: z.ZodOptional<z.ZodNumber>;
|
|
80
|
-
parentType: z.ZodEnum<{
|
|
81
|
-
product: IzdType.product;
|
|
82
|
-
cbed: IzdType.cbed;
|
|
83
|
-
detal: IzdType.detal;
|
|
84
|
-
}>;
|
|
85
|
-
parentName: z.ZodOptional<z.ZodString>;
|
|
86
|
-
parentDesignation: z.ZodOptional<z.ZodString>;
|
|
87
|
-
section: z.ZodEnum<typeof SpetificationEntityKeys>;
|
|
88
|
-
itemName: z.ZodOptional<z.ZodString>;
|
|
89
|
-
itemDesignation: z.ZodOptional<z.ZodString>;
|
|
90
|
-
idempotencyKey: z.ZodString;
|
|
91
|
-
}, z.core.$strip>;
|
|
92
|
-
export declare const ErpSpecificationItemMoveInputZod: z.ZodObject<{
|
|
93
|
-
position: z.ZodNumber;
|
|
94
|
-
parentType: z.ZodEnum<{
|
|
95
|
-
product: IzdType.product;
|
|
96
|
-
cbed: IzdType.cbed;
|
|
97
|
-
detal: IzdType.detal;
|
|
98
|
-
}>;
|
|
99
|
-
parentName: z.ZodOptional<z.ZodString>;
|
|
100
|
-
parentDesignation: z.ZodOptional<z.ZodString>;
|
|
101
|
-
section: z.ZodEnum<typeof SpetificationEntityKeys>;
|
|
102
|
-
itemName: z.ZodOptional<z.ZodString>;
|
|
103
|
-
itemDesignation: z.ZodOptional<z.ZodString>;
|
|
104
|
-
idempotencyKey: z.ZodString;
|
|
105
|
-
}, z.core.$strip>;
|
|
106
|
-
export declare const ErpSpecificationItemRemoveInputZod: z.ZodObject<{
|
|
107
|
-
parentType: z.ZodEnum<{
|
|
108
|
-
product: IzdType.product;
|
|
109
|
-
cbed: IzdType.cbed;
|
|
110
|
-
detal: IzdType.detal;
|
|
111
|
-
}>;
|
|
112
|
-
parentName: z.ZodOptional<z.ZodString>;
|
|
113
|
-
parentDesignation: z.ZodOptional<z.ZodString>;
|
|
114
|
-
section: z.ZodEnum<typeof SpetificationEntityKeys>;
|
|
115
|
-
itemName: z.ZodOptional<z.ZodString>;
|
|
116
|
-
itemDesignation: z.ZodOptional<z.ZodString>;
|
|
117
|
-
idempotencyKey: z.ZodString;
|
|
118
|
-
}, z.core.$strip>;
|
|
119
|
-
export type TErpSpecificationItemAddInput = z.infer<typeof ErpSpecificationItemAddInputZod>;
|
|
120
|
-
export type TErpSpecificationItemUpdateInput = z.infer<typeof ErpSpecificationItemUpdateInputZod>;
|
|
121
|
-
export type TErpSpecificationItemMoveInput = z.infer<typeof ErpSpecificationItemMoveInputZod>;
|
|
122
|
-
export type TErpSpecificationItemRemoveInput = z.infer<typeof ErpSpecificationItemRemoveInputZod>;
|
|
123
|
-
export type TErpSpecificationMutationInput = TErpSpecificationItemAddInput | TErpSpecificationItemUpdateInput | TErpSpecificationItemMoveInput | TErpSpecificationItemRemoveInput;
|
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.ErpSpecificationItemRemoveInputZod = exports.ErpSpecificationItemMoveInputZod = exports.ErpSpecificationItemUpdateInputZod = exports.ErpSpecificationItemAddInputZod = exports.ErpSpecificationItemRemoveInputShape = exports.ErpSpecificationItemMoveInputShape = exports.ErpSpecificationItemUpdateInputShape = exports.ErpSpecificationItemAddInputShape = void 0;
|
|
37
|
-
const z = __importStar(require("zod/v4"));
|
|
38
|
-
const mutate_specification_dto_1 = require("../../specification/dto/mutate-specification.dto");
|
|
39
|
-
const utils_1 = require("../../utils");
|
|
40
|
-
/** MCP SDK использует Zod v4; итоговая команда дополнительно проверяется общим DTO ERP на Zod v3. */
|
|
41
|
-
const SpecificationParentTypeMcpZod = z.enum([
|
|
42
|
-
utils_1.IzdType.product,
|
|
43
|
-
utils_1.IzdType.cbed,
|
|
44
|
-
utils_1.IzdType.detal
|
|
45
|
-
]);
|
|
46
|
-
const SpecificationSectionMcpZod = z.nativeEnum(utils_1.SpetificationEntityKeys);
|
|
47
|
-
const idempotencyKeyZod = z
|
|
48
|
-
.string()
|
|
49
|
-
.trim()
|
|
50
|
-
.min(8)
|
|
51
|
-
.max(128)
|
|
52
|
-
.regex(/^[a-zA-Z0-9._:-]+$/);
|
|
53
|
-
const entityReferenceShape = {
|
|
54
|
-
parentType: SpecificationParentTypeMcpZod,
|
|
55
|
-
parentName: z.string().trim().min(1).max(255).optional(),
|
|
56
|
-
parentDesignation: z.string().trim().min(1).max(255).optional(),
|
|
57
|
-
section: SpecificationSectionMcpZod,
|
|
58
|
-
itemName: z.string().trim().min(1).max(255).optional(),
|
|
59
|
-
itemDesignation: z.string().trim().min(1).max(255).optional(),
|
|
60
|
-
idempotencyKey: idempotencyKeyZod
|
|
61
|
-
};
|
|
62
|
-
/** Требует человекочитаемые ссылки на родителя и позицию без внутренних ID. */
|
|
63
|
-
const validateReferences = (input, context) => {
|
|
64
|
-
if (!input.parentName && !input.parentDesignation) {
|
|
65
|
-
context.addIssue({
|
|
66
|
-
code: z.ZodIssueCode.custom,
|
|
67
|
-
path: ['parentName'],
|
|
68
|
-
message: 'Укажите название или обозначение родительской сущности'
|
|
69
|
-
});
|
|
70
|
-
}
|
|
71
|
-
if (!input.itemName && !input.itemDesignation) {
|
|
72
|
-
context.addIssue({
|
|
73
|
-
code: z.ZodIssueCode.custom,
|
|
74
|
-
path: ['itemName'],
|
|
75
|
-
message: 'Укажите название или обозначение позиции спецификации'
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
};
|
|
79
|
-
exports.ErpSpecificationItemAddInputShape = Object.assign(Object.assign({}, entityReferenceShape), { quantity: z
|
|
80
|
-
.number()
|
|
81
|
-
.min(mutate_specification_dto_1.SPECIFICATION_QUANTITY_MIN)
|
|
82
|
-
.max(mutate_specification_dto_1.SPECIFICATION_QUANTITY_MAX), measureId: z.number().int().min(1).optional(), position: z.number().int().min(mutate_specification_dto_1.SPECIFICATION_POSITION_MIN).optional() });
|
|
83
|
-
exports.ErpSpecificationItemUpdateInputShape = Object.assign(Object.assign({}, entityReferenceShape), { quantity: z
|
|
84
|
-
.number()
|
|
85
|
-
.min(mutate_specification_dto_1.SPECIFICATION_QUANTITY_MIN)
|
|
86
|
-
.max(mutate_specification_dto_1.SPECIFICATION_QUANTITY_MAX)
|
|
87
|
-
.optional(), measureId: z.number().int().min(1).optional() });
|
|
88
|
-
exports.ErpSpecificationItemMoveInputShape = Object.assign(Object.assign({}, entityReferenceShape), { position: z.number().int().min(mutate_specification_dto_1.SPECIFICATION_POSITION_MIN) });
|
|
89
|
-
exports.ErpSpecificationItemRemoveInputShape = entityReferenceShape;
|
|
90
|
-
exports.ErpSpecificationItemAddInputZod = z
|
|
91
|
-
.object(exports.ErpSpecificationItemAddInputShape)
|
|
92
|
-
.superRefine(validateReferences);
|
|
93
|
-
exports.ErpSpecificationItemUpdateInputZod = z
|
|
94
|
-
.object(exports.ErpSpecificationItemUpdateInputShape)
|
|
95
|
-
.superRefine((input, context) => {
|
|
96
|
-
validateReferences(input, context);
|
|
97
|
-
if (input.quantity === undefined && input.measureId === undefined) {
|
|
98
|
-
context.addIssue({
|
|
99
|
-
code: z.ZodIssueCode.custom,
|
|
100
|
-
path: ['quantity'],
|
|
101
|
-
message: 'Укажите новое количество или единицу измерения'
|
|
102
|
-
});
|
|
103
|
-
}
|
|
104
|
-
});
|
|
105
|
-
exports.ErpSpecificationItemMoveInputZod = z
|
|
106
|
-
.object(exports.ErpSpecificationItemMoveInputShape)
|
|
107
|
-
.superRefine(validateReferences);
|
|
108
|
-
exports.ErpSpecificationItemRemoveInputZod = z
|
|
109
|
-
.object(exports.ErpSpecificationItemRemoveInputShape)
|
|
110
|
-
.superRefine(validateReferences);
|