@epilot/automation-client
Advanced tools
Comparing version 1.8.0 to 1.8.1
@@ -377,3 +377,3 @@ /* eslint-disable */ | ||
*/ | ||
enabled?: string; | ||
enabled?: boolean; | ||
triggers?: AnyTrigger[]; | ||
@@ -835,2 +835,52 @@ trigger_conditions?: /** | ||
language_code?: "de" | "en"; | ||
/** | ||
* Include extra file attachments in sent email. | ||
* | ||
* Attachments in email template will be sent regardless of this configuration. | ||
* | ||
*/ | ||
attachments?: { | ||
/** | ||
* Specify filters to match file entities related to main entity | ||
*/ | ||
filter?: { | ||
/** | ||
* Limit files to maximum number (default, all matched file relations) | ||
* example: | ||
* 1 | ||
*/ | ||
limit?: number; | ||
/** | ||
* Match by filename. Regex syntax supported | ||
* example: | ||
*/ | ||
filename_regex?: string; | ||
/** | ||
* Filter by a specific relation attribute on the main entity | ||
* example: | ||
* _files | ||
*/ | ||
attribute?: string; | ||
/** | ||
* Filter by relation tag (label) on the main entity | ||
* example: | ||
* contract | ||
*/ | ||
relation_tag?: string; | ||
/** | ||
* Filter by a specific tag on the related file entity | ||
*/ | ||
tag?: string; | ||
/** | ||
* Filter by a specific document type (e.g. document) | ||
*/ | ||
document_type?: "document" | "text" | "image" | "video" | "audio" | "spreadsheet" | "presentation" | "font" | "archive" | "application" | "unknown"; | ||
/** | ||
* Picks main entity as file (only works if source entity is a file) | ||
*/ | ||
self?: boolean; | ||
}; | ||
}[]; | ||
required?: any; | ||
} | ||
@@ -837,0 +887,0 @@ export interface SetValueMapper { |
{ | ||
"name": "@epilot/automation-client", | ||
"version": "1.8.0", | ||
"version": "1.8.1", | ||
"description": "API Client for epilot automation API", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -377,3 +377,3 @@ /* eslint-disable */ | ||
*/ | ||
enabled?: string; | ||
enabled?: boolean; | ||
triggers?: AnyTrigger[]; | ||
@@ -835,2 +835,52 @@ trigger_conditions?: /** | ||
language_code?: "de" | "en"; | ||
/** | ||
* Include extra file attachments in sent email. | ||
* | ||
* Attachments in email template will be sent regardless of this configuration. | ||
* | ||
*/ | ||
attachments?: { | ||
/** | ||
* Specify filters to match file entities related to main entity | ||
*/ | ||
filter?: { | ||
/** | ||
* Limit files to maximum number (default, all matched file relations) | ||
* example: | ||
* 1 | ||
*/ | ||
limit?: number; | ||
/** | ||
* Match by filename. Regex syntax supported | ||
* example: | ||
*/ | ||
filename_regex?: string; | ||
/** | ||
* Filter by a specific relation attribute on the main entity | ||
* example: | ||
* _files | ||
*/ | ||
attribute?: string; | ||
/** | ||
* Filter by relation tag (label) on the main entity | ||
* example: | ||
* contract | ||
*/ | ||
relation_tag?: string; | ||
/** | ||
* Filter by a specific tag on the related file entity | ||
*/ | ||
tag?: string; | ||
/** | ||
* Filter by a specific document type (e.g. document) | ||
*/ | ||
document_type?: "document" | "text" | "image" | "video" | "audio" | "spreadsheet" | "presentation" | "font" | "archive" | "application" | "unknown"; | ||
/** | ||
* Picks main entity as file (only works if source entity is a file) | ||
*/ | ||
self?: boolean; | ||
}; | ||
}[]; | ||
required?: any; | ||
} | ||
@@ -837,0 +887,0 @@ export interface SetValueMapper { |
Sorry, the diff of this file is too big to display
566999
2972