evo360-types 1.2.27 → 1.2.28

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.
@@ -113,6 +113,8 @@ export declare const zProfessionalSchema: z.ZodObject<z.objectUtil.extendShape<z
113
113
  ref?: any;
114
114
  }>, "many">>>;
115
115
  date_joining: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
116
+ company_name: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
117
+ companyRef: z.ZodAny;
116
118
  department_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
117
119
  departmentRef: z.ZodAny;
118
120
  address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -241,6 +243,8 @@ export declare const zProfessionalSchema: z.ZodObject<z.objectUtil.extendShape<z
241
243
  ref?: any;
242
244
  }>, "many">>>;
243
245
  date_joining: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
246
+ company_name: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
247
+ companyRef: z.ZodAny;
244
248
  department_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
245
249
  departmentRef: z.ZodAny;
246
250
  address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -369,6 +373,8 @@ export declare const zProfessionalSchema: z.ZodObject<z.objectUtil.extendShape<z
369
373
  ref?: any;
370
374
  }>, "many">>>;
371
375
  date_joining: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
376
+ company_name: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
377
+ companyRef: z.ZodAny;
372
378
  department_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
373
379
  departmentRef: z.ZodAny;
374
380
  address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -39,6 +39,8 @@ exports.zProfessionalSchema = zod_schemas_3.zProfileSchema // Extend from Profil
39
39
  specialties: zod_1.z.array(exports.zProfessionalSpecialtySchema).nullable().optional(),
40
40
  offices: zod_1.z.array(exports.zProfessionalOfficeSchema).nullable().optional(),
41
41
  date_joining: zod_1.z.date().nullable().optional(),
42
+ company_name: zod_1.z.string().max(255).nullable().optional().default(""),
43
+ companyRef: zod_1.z.any(),
42
44
  department_name: zod_1.z.string().max(255).nullable().optional(),
43
45
  departmentRef: zod_1.z.any(),
44
46
  address: zod_schemas_2.zAddressSchema.nullable().optional(),
@@ -52,6 +52,8 @@ export const zProfessionalSchema = zProfileSchema // Extend from ProfileSchema
52
52
  specialties: z.array(zProfessionalSpecialtySchema).nullable().optional(),
53
53
  offices: z.array(zProfessionalOfficeSchema).nullable().optional(),
54
54
  date_joining: z.date().nullable().optional(),
55
+ company_name: z.string().max(255).nullable().optional().default(""),
56
+ companyRef: z.any(),
55
57
  department_name: z.string().max(255).nullable().optional(),
56
58
  departmentRef: z.any(),
57
59
  address: zAddressSchema.nullable().optional(),
@@ -51,6 +51,8 @@ export interface IProfessional extends IProfile {
51
51
  specialties?: IProfessionalSpecialty[] | null;
52
52
  offices?: IProfessionalOffice[] | null;
53
53
  date_joining?: Date | null;
54
+ company_name?: string | null;
55
+ companyRef?: FirestoreDocumentReference;
54
56
  department_name?: string | null;
55
57
  departmentRef?: FirestoreDocumentReference;
56
58
  address?: IAddress | null;
@@ -88,6 +88,8 @@ export interface IProfessional extends IProfile {
88
88
  specialties?: IProfessionalSpecialty[] | null;
89
89
  offices?: IProfessionalOffice[] | null;
90
90
  date_joining?: Date | null;
91
+ company_name?: string | null;
92
+ companyRef?: FirestoreDocumentReference;
91
93
  department_name?: string | null;
92
94
  departmentRef?: FirestoreDocumentReference;
93
95
  address?: IAddress | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.2.27",
3
+ "version": "1.2.28",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",