evo360-types 1.3.81 → 1.3.82

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.
@@ -44,9 +44,9 @@ export declare const zSpecialtySchema: z.ZodObject<z.objectUtil.extendShape<{
44
44
  }, {
45
45
  code: z.ZodString;
46
46
  name: z.ZodString;
47
- order: z.ZodDefault<z.ZodNumber>;
47
+ order: z.ZodNumber;
48
48
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
- tiss: z.ZodDefault<z.ZodOptional<z.ZodString>>;
49
+ tiss: z.ZodOptional<z.ZodString>;
50
50
  type_code: z.ZodString;
51
51
  type_name: z.ZodString;
52
52
  typeRef: z.ZodAny;
@@ -80,9 +80,9 @@ export declare const zSpecialtySchema: z.ZodObject<z.objectUtil.extendShape<{
80
80
  }, {
81
81
  code: z.ZodString;
82
82
  name: z.ZodString;
83
- order: z.ZodDefault<z.ZodNumber>;
83
+ order: z.ZodNumber;
84
84
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
85
- tiss: z.ZodDefault<z.ZodOptional<z.ZodString>>;
85
+ tiss: z.ZodOptional<z.ZodString>;
86
86
  type_code: z.ZodString;
87
87
  type_name: z.ZodString;
88
88
  typeRef: z.ZodAny;
@@ -116,9 +116,9 @@ export declare const zSpecialtySchema: z.ZodObject<z.objectUtil.extendShape<{
116
116
  }, {
117
117
  code: z.ZodString;
118
118
  name: z.ZodString;
119
- order: z.ZodDefault<z.ZodNumber>;
119
+ order: z.ZodNumber;
120
120
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121
- tiss: z.ZodDefault<z.ZodOptional<z.ZodString>>;
121
+ tiss: z.ZodOptional<z.ZodString>;
122
122
  type_code: z.ZodString;
123
123
  type_name: z.ZodString;
124
124
  typeRef: z.ZodAny;
@@ -13,9 +13,9 @@ exports.zSpecialtySchema = zod_schemas_1.zFireDocSchema
13
13
  .extend({
14
14
  code: zod_1.z.string().min(1).max(20),
15
15
  name: zod_1.z.string().min(1).max(255),
16
- order: zod_1.z.number().min(0).max(100).default(0),
16
+ order: zod_1.z.number().min(0).max(100),
17
17
  external_id: zod_1.z.string().nullable().optional(),
18
- tiss: zod_1.z.string().max(255).optional().default(""),
18
+ tiss: zod_1.z.string().max(255).optional(),
19
19
  type_code: zod_1.z.string().min(1).max(20),
20
20
  type_name: zod_1.z.string().min(1).max(255),
21
21
  typeRef: zod_1.z.any(),
@@ -12,9 +12,9 @@ export const zSpecialtySchema = zFireDocSchema
12
12
  .extend({
13
13
  code: z.string().min(1).max(20),
14
14
  name: z.string().min(1).max(255),
15
- order: z.number().min(0).max(100).default(0),
15
+ order: z.number().min(0).max(100),
16
16
  external_id: z.string().nullable().optional(),
17
- tiss: z.string().max(255).optional().default(""),
17
+ tiss: z.string().max(255).optional(),
18
18
  type_code: z.string().min(1).max(20),
19
19
  type_name: z.string().min(1).max(255),
20
20
  typeRef: z.any(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.81",
3
+ "version": "1.3.82",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",