evo360-types 1.1.58 → 1.1.59

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.
@@ -679,6 +679,8 @@ export declare const zSurveyInviteeSchema: z.ZodObject<z.objectUtil.extendShape<
679
679
  name: z.ZodString;
680
680
  email: z.ZodOptional<z.ZodString>;
681
681
  phone: z.ZodDefault<z.ZodOptional<z.ZodString>>;
682
+ photo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
683
+ description: z.ZodOptional<z.ZodString>;
682
684
  isAnonymous: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
683
685
  submissionId: z.ZodOptional<z.ZodString>;
684
686
  submission_status: z.ZodDefault<z.ZodOptional<z.ZodEnum<["not_started", "in_progress", "completed"]>>>;
@@ -695,6 +697,8 @@ export declare const zSurveyInviteeSchema: z.ZodObject<z.objectUtil.extendShape<
695
697
  updated_at?: Date | null | undefined;
696
698
  deleted_at?: Date | null | undefined;
697
699
  email?: string | undefined;
700
+ description?: string | undefined;
701
+ photo_url?: string | null | undefined;
698
702
  submissionId?: string | undefined;
699
703
  }, {
700
704
  id: string;
@@ -706,6 +710,8 @@ export declare const zSurveyInviteeSchema: z.ZodObject<z.objectUtil.extendShape<
706
710
  updated_at?: Date | null | undefined;
707
711
  deleted_at?: Date | null | undefined;
708
712
  email?: string | undefined;
713
+ description?: string | undefined;
714
+ photo_url?: string | null | undefined;
709
715
  phone?: string | undefined;
710
716
  isAnonymous?: boolean | undefined;
711
717
  submissionId?: string | undefined;
@@ -828,6 +834,8 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
828
834
  name: z.ZodString;
829
835
  email: z.ZodOptional<z.ZodString>;
830
836
  phone: z.ZodDefault<z.ZodOptional<z.ZodString>>;
837
+ photo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
838
+ description: z.ZodOptional<z.ZodString>;
831
839
  isAnonymous: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
832
840
  submissionId: z.ZodOptional<z.ZodString>;
833
841
  submission_status: z.ZodDefault<z.ZodOptional<z.ZodEnum<["not_started", "in_progress", "completed"]>>>;
@@ -844,6 +852,8 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
844
852
  updated_at?: Date | null | undefined;
845
853
  deleted_at?: Date | null | undefined;
846
854
  email?: string | undefined;
855
+ description?: string | undefined;
856
+ photo_url?: string | null | undefined;
847
857
  submissionId?: string | undefined;
848
858
  }, {
849
859
  id: string;
@@ -855,6 +865,8 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
855
865
  updated_at?: Date | null | undefined;
856
866
  deleted_at?: Date | null | undefined;
857
867
  email?: string | undefined;
868
+ description?: string | undefined;
869
+ photo_url?: string | null | undefined;
858
870
  phone?: string | undefined;
859
871
  isAnonymous?: boolean | undefined;
860
872
  submissionId?: string | undefined;
@@ -1055,6 +1067,8 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
1055
1067
  updated_at?: Date | null | undefined;
1056
1068
  deleted_at?: Date | null | undefined;
1057
1069
  email?: string | undefined;
1070
+ description?: string | undefined;
1071
+ photo_url?: string | null | undefined;
1058
1072
  submissionId?: string | undefined;
1059
1073
  }[] | null | undefined;
1060
1074
  invitee_count?: number | undefined;
@@ -1145,6 +1159,8 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
1145
1159
  updated_at?: Date | null | undefined;
1146
1160
  deleted_at?: Date | null | undefined;
1147
1161
  email?: string | undefined;
1162
+ description?: string | undefined;
1163
+ photo_url?: string | null | undefined;
1148
1164
  phone?: string | undefined;
1149
1165
  isAnonymous?: boolean | undefined;
1150
1166
  submissionId?: string | undefined;
@@ -125,6 +125,8 @@ exports.zSurveyInviteeSchema = zod_schemas_1.zFireDocSchema // Extend from FireD
125
125
  name: zod_1.z.string().max(255),
126
126
  email: zod_1.z.string().max(255).email().optional(),
127
127
  phone: zod_1.z.string().max(60).optional().default(""),
128
+ photo_url: zod_1.z.string().url().nullable().optional(),
129
+ description: zod_1.z.string().max(255).optional(),
128
130
  isAnonymous: zod_1.z.boolean().optional().default(false),
129
131
  submissionId: zod_1.z.string().optional(),
130
132
  submission_status: exports.zSurveySubmissionStatusSchema
@@ -139,6 +139,8 @@ export const zSurveyInviteeSchema = zFireDocSchema // Extend from FireDocSchema
139
139
  name: z.string().max(255),
140
140
  email: z.string().max(255).email().optional(),
141
141
  phone: z.string().max(60).optional().default(""),
142
+ photo_url: z.string().url().nullable().optional(),
143
+ description: z.string().max(255).optional(),
142
144
  isAnonymous: z.boolean().optional().default(false),
143
145
  submissionId: z.string().optional(),
144
146
  submission_status: zSurveySubmissionStatusSchema
@@ -123,6 +123,8 @@ export interface ISurveyInvitee extends IFireDoc {
123
123
  name: string;
124
124
  email?: string;
125
125
  phone?: string;
126
+ photo_url?: string;
127
+ description?: string;
126
128
  isAnonymous?: boolean;
127
129
  submissionId?: string;
128
130
  submission_status?: SurveySubmissionStatus;
@@ -160,6 +160,8 @@ export interface ISurveyInvitee extends IFireDoc {
160
160
  name: string;
161
161
  email?: string;
162
162
  phone?: string;
163
+ photo_url?: string;
164
+ description?: string;
163
165
  isAnonymous?: boolean;
164
166
  submissionId?: string;
165
167
  submission_status?: SurveySubmissionStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.1.58",
3
+ "version": "1.1.59",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",