@clxmedia/types 1.10.4 → 1.11.0
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.
|
@@ -35,6 +35,7 @@ export type CLXFormSubmitConfig = {
|
|
|
35
35
|
notifyEmails: string[];
|
|
36
36
|
notifySubmitter: boolean;
|
|
37
37
|
notifyAccountManager: boolean;
|
|
38
|
+
checkForProhibitedWords: boolean;
|
|
38
39
|
};
|
|
39
40
|
export type CLXFormSettings = {
|
|
40
41
|
allow: CLXFormAllowable[];
|
|
@@ -57,13 +58,16 @@ export type CLXFormConditionSubjectEntry = {
|
|
|
57
58
|
responseType: CLXFormResponseType;
|
|
58
59
|
picklist?: CLXFormSelectOptions;
|
|
59
60
|
};
|
|
60
|
-
export type
|
|
61
|
+
export type CLXResponseStoreSource = 'default' | 'portfolio' | 'property' | 'collab' | 'project';
|
|
62
|
+
export type CLXResponseStoreTarget = 'base' | 'context';
|
|
61
63
|
export type CLXFormResponseValueBase = {
|
|
62
64
|
type: CLXFormResponseType;
|
|
63
65
|
unix_timestamp: number;
|
|
64
66
|
last_answered_by?: string;
|
|
65
67
|
errorMsg?: CLXFormErrorMsg[];
|
|
66
|
-
|
|
68
|
+
store_source?: CLXResponseStoreSource;
|
|
69
|
+
flag_accepted_by?: string;
|
|
70
|
+
flag_accepted_at?: string;
|
|
67
71
|
};
|
|
68
72
|
export type CLXFormsFilesDescriptor = {
|
|
69
73
|
formattedFilename: string;
|
|
@@ -413,7 +417,7 @@ export type CLXFormQuestionLayout = {
|
|
|
413
417
|
conditions?: CLXFormRuleSet;
|
|
414
418
|
overrides?: CLXConditionalOverrides;
|
|
415
419
|
is_complete?: boolean;
|
|
416
|
-
scope?:
|
|
420
|
+
scope?: CLXResponseStoreTarget;
|
|
417
421
|
};
|
|
418
422
|
export type CLXFormSection = {
|
|
419
423
|
id: number;
|