evo360-types 1.3.94 → 1.3.95
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/apps/evo-med/procedure/zod-schemas.d.ts +3 -0
- package/dist/apps/evo-med/procedure/zod-schemas.js +1 -0
- package/dist/apps/evo-med/procedure/zod-schemas.ts +1 -0
- package/dist/types/evo-med/procedure/index.d.ts +1 -0
- package/dist/types/evo-med/procedure/index.ts +1 -0
- package/package.json +1 -1
|
@@ -104,6 +104,7 @@ export declare const zProcedureSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
104
104
|
code: z.ZodString;
|
|
105
105
|
name: z.ZodString;
|
|
106
106
|
technical_name: z.ZodString;
|
|
107
|
+
order: z.ZodNumber;
|
|
107
108
|
status: z.ZodEnum<["active", "inactive", "draft"]>;
|
|
108
109
|
type_code: z.ZodOptional<z.ZodString>;
|
|
109
110
|
type_name: z.ZodOptional<z.ZodString>;
|
|
@@ -145,6 +146,7 @@ export declare const zProcedureSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
145
146
|
code: z.ZodString;
|
|
146
147
|
name: z.ZodString;
|
|
147
148
|
technical_name: z.ZodString;
|
|
149
|
+
order: z.ZodNumber;
|
|
148
150
|
status: z.ZodEnum<["active", "inactive", "draft"]>;
|
|
149
151
|
type_code: z.ZodOptional<z.ZodString>;
|
|
150
152
|
type_name: z.ZodOptional<z.ZodString>;
|
|
@@ -186,6 +188,7 @@ export declare const zProcedureSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
186
188
|
code: z.ZodString;
|
|
187
189
|
name: z.ZodString;
|
|
188
190
|
technical_name: z.ZodString;
|
|
191
|
+
order: z.ZodNumber;
|
|
189
192
|
status: z.ZodEnum<["active", "inactive", "draft"]>;
|
|
190
193
|
type_code: z.ZodOptional<z.ZodString>;
|
|
191
194
|
type_name: z.ZodOptional<z.ZodString>;
|
|
@@ -24,6 +24,7 @@ exports.zProcedureSchema = zod_schemas_1.zFireDocSchema
|
|
|
24
24
|
code: zod_1.z.string().min(1).max(20),
|
|
25
25
|
name: zod_1.z.string().min(1).max(255),
|
|
26
26
|
technical_name: zod_1.z.string().min(1).max(255),
|
|
27
|
+
order: zod_1.z.number().min(0).max(100),
|
|
27
28
|
status: exports.zProcedureStatusSchema,
|
|
28
29
|
type_code: zod_1.z.string().max(20).optional(),
|
|
29
30
|
type_name: zod_1.z.string().max(255).optional(),
|
|
@@ -26,6 +26,7 @@ export const zProcedureSchema = zFireDocSchema
|
|
|
26
26
|
code: z.string().min(1).max(20),
|
|
27
27
|
name: z.string().min(1).max(255),
|
|
28
28
|
technical_name: z.string().min(1).max(255),
|
|
29
|
+
order: z.number().min(0).max(100),
|
|
29
30
|
status: zProcedureStatusSchema,
|
|
30
31
|
type_code: z.string().max(20).optional(),
|
|
31
32
|
type_name: z.string().max(255).optional(),
|