@clxmedia/types 1.0.142 → 1.0.144
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.
|
@@ -300,7 +300,7 @@ export type CLXFormPortableResponse = {
|
|
|
300
300
|
export type CLXFormPortableResponses = {
|
|
301
301
|
[questionSlug: string]: CLXFormPortableResponse;
|
|
302
302
|
};
|
|
303
|
-
export type CLXRuleComparison = 'stringEquals' | 'stringContains' | 'stringStartsWith' | 'stringEndsWith' | 'stringInList' | 'stringListContainsAll' | 'stringListContainsAny' | 'stringListEntryEquals' | 'stringListEntryContains' | 'stringListEntryStartsWith' | 'stringListEntryEndsWith' | 'dateEquals' | 'dateBefore' | 'dateAfter' | 'booleanEquals' | 'fileExists' | 'numberEquals' | 'numberGreaterThan' | 'numberLessThan';
|
|
303
|
+
export type CLXRuleComparison = 'stringEquals' | 'stringContains' | 'stringStartsWith' | 'stringEndsWith' | 'stringInList' | 'stringNotInList' | 'stringListContainsAll' | 'stringListContainsAny' | 'stringListContainsNone' | 'stringListEntryEquals' | 'stringListEntryContains' | 'stringListEntryStartsWith' | 'stringListEntryEndsWith' | 'dateEquals' | 'dateBefore' | 'dateAfter' | 'booleanEquals' | 'fileExists' | 'numberEquals' | 'numberGreaterThan' | 'numberLessThan';
|
|
304
304
|
export type CLXFormRuleDefinition = {
|
|
305
305
|
subject: string;
|
|
306
306
|
target: CLXFormResponseValue;
|
|
@@ -231,7 +231,7 @@ export type CLXTaskTriggerConstraint = 'event_user_to_onboarding_recipient_match
|
|
|
231
231
|
export type CLXTaskTriggerConfig = {
|
|
232
232
|
constraints: CLXTaskTriggerConstraint[];
|
|
233
233
|
};
|
|
234
|
-
export type CLXTaskTriggerAction = 'activate' | 'start' | 'complete' | 'close' | 'require' | 'optional';
|
|
234
|
+
export type CLXTaskTriggerAction = 'activate' | 'start' | 'complete' | 'close' | 'require' | 'optional' | 'delete';
|
|
235
235
|
export type CLXTaskTrigger = {
|
|
236
236
|
id: number;
|
|
237
237
|
trigger_slug: EnterpriseEventSlugs;
|