evo360-types 1.1.50 → 1.1.52
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.
|
@@ -999,6 +999,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
999
999
|
}[] | undefined;
|
|
1000
1000
|
}[] | null | undefined;
|
|
1001
1001
|
submission_count?: number | undefined;
|
|
1002
|
+
surveySourceRef?: any;
|
|
1002
1003
|
survey?: z.objectOutputType<z.objectUtil.extendShape<{
|
|
1003
1004
|
id: z.ZodString;
|
|
1004
1005
|
ref: z.ZodAny;
|
|
@@ -1046,7 +1047,6 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1046
1047
|
submission_not_started_count?: number | undefined;
|
|
1047
1048
|
submission_in_progress_count?: number | undefined;
|
|
1048
1049
|
submission_completed_count?: number | undefined;
|
|
1049
|
-
surveySourceRef?: any;
|
|
1050
1050
|
}, {
|
|
1051
1051
|
id: string;
|
|
1052
1052
|
tenant: string;
|
|
@@ -1090,6 +1090,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1090
1090
|
}[] | undefined;
|
|
1091
1091
|
}[] | null | undefined;
|
|
1092
1092
|
submission_count?: number | undefined;
|
|
1093
|
+
surveySourceRef?: any;
|
|
1093
1094
|
survey?: z.objectInputType<z.objectUtil.extendShape<{
|
|
1094
1095
|
id: z.ZodString;
|
|
1095
1096
|
ref: z.ZodAny;
|
|
@@ -1137,5 +1138,4 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1137
1138
|
submission_not_started_count?: number | undefined;
|
|
1138
1139
|
submission_in_progress_count?: number | undefined;
|
|
1139
1140
|
submission_completed_count?: number | undefined;
|
|
1140
|
-
surveySourceRef?: any;
|
|
1141
1141
|
}>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "./fb_collections";
|
|
2
|
-
import { IFireDoc, ITag } from "../shared";
|
|
2
|
+
import { FirestoreDocumentReference, IFireDoc, ITag } from "../shared";
|
|
3
3
|
export type SurveyAction = "CREATE_SURVEY" | "DELETE_SURVEY" | "UPDATE_SURVEY";
|
|
4
4
|
export declare enum ISurveyAction {
|
|
5
5
|
Create_survey = "CREATE_SURVEY",
|
|
@@ -77,7 +77,7 @@ export interface ISurveySection extends IFireDoc {
|
|
|
77
77
|
questions?: (ISurveyQuestionEssay | ISurveyQuestionScale | ISurveyQuestionMultipleChoice)[];
|
|
78
78
|
readonly question_counters?: IQuestionCounters;
|
|
79
79
|
}
|
|
80
|
-
export interface ISurvey extends
|
|
80
|
+
export interface ISurvey extends IFireDoc {
|
|
81
81
|
name: string;
|
|
82
82
|
description?: string;
|
|
83
83
|
status: SurveyStatus;
|
|
@@ -128,6 +128,7 @@ export interface ISurveyInvitee extends IFireDoc {
|
|
|
128
128
|
export interface ISurveyDeployment extends IFireDoc {
|
|
129
129
|
name: string;
|
|
130
130
|
description?: string;
|
|
131
|
+
surveySourceRef?: FirestoreDocumentReference;
|
|
131
132
|
survey?: ISurvey | null;
|
|
132
133
|
start_date: Date | null;
|
|
133
134
|
end_date: Date | null;
|
|
@@ -101,7 +101,7 @@ export interface ISurveySection extends IFireDoc {
|
|
|
101
101
|
readonly question_counters?: IQuestionCounters;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
export interface ISurvey extends
|
|
104
|
+
export interface ISurvey extends IFireDoc {
|
|
105
105
|
name: string;
|
|
106
106
|
description?: string;
|
|
107
107
|
status: SurveyStatus;
|
|
@@ -188,6 +188,7 @@ export interface ISurveyInvitee extends IFireDoc {
|
|
|
188
188
|
export interface ISurveyDeployment extends IFireDoc {
|
|
189
189
|
name: string;
|
|
190
190
|
description?: string;
|
|
191
|
+
surveySourceRef?: FirestoreDocumentReference;
|
|
191
192
|
survey?: ISurvey | null;
|
|
192
193
|
start_date: Date | null;
|
|
193
194
|
end_date: Date | null;
|