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.
@@ -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(),
@@ -22,6 +22,7 @@ export interface IProcedure extends IFireDoc {
22
22
  code: string;
23
23
  name: string;
24
24
  technical_name: string;
25
+ order: number;
25
26
  status: ProcedureStatus;
26
27
  type_code?: string;
27
28
  type_name?: string;
@@ -34,6 +34,7 @@ export interface IProcedure extends IFireDoc {
34
34
  code: string;
35
35
  name: string;
36
36
  technical_name: string;
37
+ order: number;
37
38
  status: ProcedureStatus;
38
39
  type_code?: string;
39
40
  type_name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.94",
3
+ "version": "1.3.95",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",