@epilot/automation-client
Advanced tools
Comparing version
@@ -82,4 +82,14 @@ /* eslint-disable */ | ||
* "target_unique": [ | ||
* "email.email" | ||
* "email.0.email" | ||
* ], | ||
* "relation_attributes": [ | ||
* { | ||
* "target": "company", | ||
* "mode": "append", | ||
* "source_filter": { | ||
* "schema": "account", | ||
* "limit": 1 | ||
* } | ||
* } | ||
* ], | ||
* "mapping_attributes": [ | ||
@@ -230,3 +240,3 @@ * { | ||
/** | ||
* JSON source path for the value to be extracted from. Eg: steps[1].['Product Info'].price | ||
* JSON source path for the value to be extracted from the main entity. Eg: steps[1].['Product Info'].price | ||
* | ||
@@ -434,3 +444,3 @@ */ | ||
/** | ||
* JSON source path for the value to be extracted from. Eg: steps[1].['Product Info'].price | ||
* JSON source path for the value to be extracted from the main entity. Eg: steps[1].['Product Info'].price | ||
* | ||
@@ -601,4 +611,14 @@ */ | ||
* "target_unique": [ | ||
* "email.email" | ||
* "email.0.email" | ||
* ], | ||
* "relation_attributes": [ | ||
* { | ||
* "target": "company", | ||
* "mode": "append", | ||
* "source_filter": { | ||
* "schema": "account", | ||
* "limit": 1 | ||
* } | ||
* } | ||
* ], | ||
* "mapping_attributes": [ | ||
@@ -696,9 +716,42 @@ * { | ||
export interface RelationAttribute { | ||
/** | ||
* Target attribute to store the relation in | ||
*/ | ||
target: string; | ||
target_tags: string[]; | ||
related_to: { | ||
schema: string; | ||
/** | ||
* Relation tags (labels) to set for the stored relations | ||
*/ | ||
target_tags?: string[]; | ||
/** | ||
* A filter to identify which source entities to pick as relations from main entity | ||
*/ | ||
source_filter?: { | ||
/** | ||
* Limit relations to maximum number (default, all matched relations) | ||
*/ | ||
limit?: number; | ||
/** | ||
* Filter by specific schema | ||
*/ | ||
schema?: string; | ||
/** | ||
* Filter by a specific relation attribute on the main entity | ||
*/ | ||
attribute?: string; | ||
/** | ||
* Filter by relation tag (label) on the main entity | ||
*/ | ||
relation_tag?: string; | ||
/** | ||
* Filter by a specific tag on the related entity | ||
*/ | ||
tag?: string; | ||
relation_tag?: string; | ||
/** | ||
* Picks main entity as relation (overrides other filters) | ||
*/ | ||
self?: boolean; | ||
}; | ||
related_to?: { | ||
[name: string]: any; | ||
}; | ||
mode: "append" | "set"; | ||
@@ -705,0 +758,0 @@ } |
{ | ||
"name": "@epilot/automation-client", | ||
"version": "1.6.2", | ||
"version": "1.7.0", | ||
"description": "API Client for epilot automation API", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -82,4 +82,14 @@ /* eslint-disable */ | ||
* "target_unique": [ | ||
* "email.email" | ||
* "email.0.email" | ||
* ], | ||
* "relation_attributes": [ | ||
* { | ||
* "target": "company", | ||
* "mode": "append", | ||
* "source_filter": { | ||
* "schema": "account", | ||
* "limit": 1 | ||
* } | ||
* } | ||
* ], | ||
* "mapping_attributes": [ | ||
@@ -230,3 +240,3 @@ * { | ||
/** | ||
* JSON source path for the value to be extracted from. Eg: steps[1].['Product Info'].price | ||
* JSON source path for the value to be extracted from the main entity. Eg: steps[1].['Product Info'].price | ||
* | ||
@@ -434,3 +444,3 @@ */ | ||
/** | ||
* JSON source path for the value to be extracted from. Eg: steps[1].['Product Info'].price | ||
* JSON source path for the value to be extracted from the main entity. Eg: steps[1].['Product Info'].price | ||
* | ||
@@ -601,4 +611,14 @@ */ | ||
* "target_unique": [ | ||
* "email.email" | ||
* "email.0.email" | ||
* ], | ||
* "relation_attributes": [ | ||
* { | ||
* "target": "company", | ||
* "mode": "append", | ||
* "source_filter": { | ||
* "schema": "account", | ||
* "limit": 1 | ||
* } | ||
* } | ||
* ], | ||
* "mapping_attributes": [ | ||
@@ -696,9 +716,42 @@ * { | ||
export interface RelationAttribute { | ||
/** | ||
* Target attribute to store the relation in | ||
*/ | ||
target: string; | ||
target_tags: string[]; | ||
related_to: { | ||
schema: string; | ||
/** | ||
* Relation tags (labels) to set for the stored relations | ||
*/ | ||
target_tags?: string[]; | ||
/** | ||
* A filter to identify which source entities to pick as relations from main entity | ||
*/ | ||
source_filter?: { | ||
/** | ||
* Limit relations to maximum number (default, all matched relations) | ||
*/ | ||
limit?: number; | ||
/** | ||
* Filter by specific schema | ||
*/ | ||
schema?: string; | ||
/** | ||
* Filter by a specific relation attribute on the main entity | ||
*/ | ||
attribute?: string; | ||
/** | ||
* Filter by relation tag (label) on the main entity | ||
*/ | ||
relation_tag?: string; | ||
/** | ||
* Filter by a specific tag on the related entity | ||
*/ | ||
tag?: string; | ||
relation_tag?: string; | ||
/** | ||
* Picks main entity as relation (overrides other filters) | ||
*/ | ||
self?: boolean; | ||
}; | ||
related_to?: { | ||
[name: string]: any; | ||
}; | ||
mode: "append" | "set"; | ||
@@ -705,0 +758,0 @@ } |
Sorry, the diff of this file is too big to display
516676
7.3%2802
3.93%