@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 CLXResponseScope = 'base' | 'collab' | 'snapshot' | 'entity' | 'project' | 'preset' | 'default' | 'property' | 'portfolio';
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
- scope?: CLXResponseScope;
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?: CLXResponseScope;
420
+ scope?: CLXResponseStoreTarget;
417
421
  };
418
422
  export type CLXFormSection = {
419
423
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.10.4",
3
+ "version": "1.11.0",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",