@clxmedia/types 1.0.140 → 1.0.142

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.
@@ -319,12 +319,12 @@ export type CLXFormRuleStringComparisonInstance = CLXFormRuleInstanceBase & {
319
319
  export type CLXFormRuleStringListToStringListInstance = CLXFormRuleInstanceBase & {
320
320
  subject: CLXFormResponseStringArrayValue;
321
321
  target: CLXFormResponseStringArrayValue;
322
- comparisonType: 'stringListContainsAll' | 'stringListContainsAny';
322
+ comparisonType: 'stringListContainsAll' | 'stringListContainsAny' | 'stringListContainsNone';
323
323
  };
324
324
  export type CLXFormRuleStringInListInstance = CLXFormRuleInstanceBase & {
325
325
  subject: CLXFormResponseStringValue;
326
326
  target: CLXFormResponseStringArrayValue;
327
- comparisonType: 'stringInList';
327
+ comparisonType: 'stringInList' | 'stringNotInList';
328
328
  };
329
329
  export type CLXFormRuleFileExistsInstance = CLXFormRuleInstanceBase & {
330
330
  subject: CLXFormResponseFileValue;
@@ -240,6 +240,12 @@ export type CLXTaskTrigger = {
240
240
  created_at: Date;
241
241
  fired_at: Date | null;
242
242
  };
243
+ export type CLXTaskRuleTrigger = {
244
+ id: number;
245
+ action_type: CLXTaskTriggerAction;
246
+ conditions: CLXFormRuleSet;
247
+ created_at: Date;
248
+ };
243
249
  export type CLXTaskBase = {
244
250
  id: number;
245
251
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.140",
3
+ "version": "1.0.142",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",