evo360-types 1.2.20 → 1.2.22

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.
@@ -64,8 +64,8 @@ export declare const zProfessionalSchema: z.ZodObject<z.objectUtil.extendShape<z
64
64
  }>, {
65
65
  status: z.ZodDefault<z.ZodEnum<["active", "inactive", "draft"]>>;
66
66
  professionalId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
67
- title: z.ZodDefault<z.ZodOptional<z.ZodString>>;
68
- type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
67
+ title: z.ZodDefault<z.ZodString>;
68
+ type: z.ZodDefault<z.ZodString>;
69
69
  job_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
70
70
  councils: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
71
71
  doc: z.ZodString;
@@ -192,8 +192,8 @@ export declare const zProfessionalSchema: z.ZodObject<z.objectUtil.extendShape<z
192
192
  }>, {
193
193
  status: z.ZodDefault<z.ZodEnum<["active", "inactive", "draft"]>>;
194
194
  professionalId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
195
- title: z.ZodDefault<z.ZodOptional<z.ZodString>>;
196
- type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
195
+ title: z.ZodDefault<z.ZodString>;
196
+ type: z.ZodDefault<z.ZodString>;
197
197
  job_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
198
198
  councils: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
199
199
  doc: z.ZodString;
@@ -320,8 +320,8 @@ export declare const zProfessionalSchema: z.ZodObject<z.objectUtil.extendShape<z
320
320
  }>, {
321
321
  status: z.ZodDefault<z.ZodEnum<["active", "inactive", "draft"]>>;
322
322
  professionalId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
323
- title: z.ZodDefault<z.ZodOptional<z.ZodString>>;
324
- type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
323
+ title: z.ZodDefault<z.ZodString>;
324
+ type: z.ZodDefault<z.ZodString>;
325
325
  job_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
326
326
  councils: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
327
327
  doc: z.ZodString;
@@ -32,8 +32,8 @@ exports.zProfessionalSchema = zod_schemas_3.zProfileSchema // Extend from Profil
32
32
  .extend({
33
33
  status: exports.zProfessionalStatusSchema.default("draft"),
34
34
  professionalId: zod_1.z.string().max(255).nullable().optional().default(""),
35
- title: zod_1.z.string().max(255).optional().default(""),
36
- type: zod_1.z.string().max(255).optional().default("doctor"),
35
+ title: zod_1.z.string().max(255).default(""),
36
+ type: zod_1.z.string().max(255).default("doctor"),
37
37
  job_title: zod_1.z.string().nullable().optional(),
38
38
  councils: zod_1.z.array(exports.zProfessionalCouncilSchema).nullable().optional(),
39
39
  specialties: zod_1.z.array(exports.zProfessionalSpecialtySchema).nullable().optional(),
@@ -39,8 +39,8 @@ export const zProfessionalSchema = zProfileSchema // Extend from ProfileSchema
39
39
  .extend({
40
40
  status: zProfessionalStatusSchema.default("draft"),
41
41
  professionalId: z.string().max(255).nullable().optional().default(""),
42
- title: z.string().max(255).optional().default(""),
43
- type: z.string().max(255).optional().default("doctor"),
42
+ title: z.string().max(255).default(""),
43
+ type: z.string().max(255).default("doctor"),
44
44
  job_title: z.string().nullable().optional(),
45
45
  councils: z.array(zProfessionalCouncilSchema).nullable().optional(),
46
46
  specialties: z.array(zProfessionalSpecialtySchema).nullable().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.2.20",
3
+ "version": "1.2.22",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",