freemium-survey-components 2.0.50 → 2.0.51
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.
- package/lib/types/types.d.ts +9 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -324,6 +324,14 @@ export type SurveyTranslationType = {
|
|
|
324
324
|
export type SurveyAllTranslationType = {
|
|
325
325
|
survey_translation_info: SurveyTranslationType[];
|
|
326
326
|
};
|
|
327
|
+
export type SurveyVersionType = {
|
|
328
|
+
name?: string | null;
|
|
329
|
+
survey_version_id: string;
|
|
330
|
+
created_at: string;
|
|
331
|
+
updated_at: string;
|
|
332
|
+
created_by: string;
|
|
333
|
+
updated_by: string;
|
|
334
|
+
};
|
|
327
335
|
export type SurveyPageNavType = 'NEXT' | 'SPECIFIC';
|
|
328
336
|
export declare type SurveyPageType = {
|
|
329
337
|
page_id: string;
|
|
@@ -366,6 +374,7 @@ export type SurveyType = {
|
|
|
366
374
|
blocks?: SurveyBlockType[] | null;
|
|
367
375
|
language?: string | null;
|
|
368
376
|
pages?: SurveyPageType[] | null;
|
|
377
|
+
survey_version_id?: string | null;
|
|
369
378
|
created_by?: string | null;
|
|
370
379
|
updated_by?: string | null;
|
|
371
380
|
};
|