@epilot/automation-client 1.7.0 → 1.7.2
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.
- package/dist/definition.js +1 -1
- package/dist/openapi.d.ts +26 -1
- package/package.json +1 -1
- package/src/openapi.d.ts +26 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -690,10 +690,31 @@ declare namespace Components {
|
|
|
690
690
|
error_output?: ErrorOutput;
|
|
691
691
|
}
|
|
692
692
|
export interface MapEntityActionConfig {
|
|
693
|
-
|
|
693
|
+
/**
|
|
694
|
+
* Schema of target entity
|
|
695
|
+
*/
|
|
696
|
+
target_schema: string;
|
|
697
|
+
/**
|
|
698
|
+
* Unique key for target entity (see upsertEntity of Entity API)
|
|
699
|
+
*/
|
|
694
700
|
target_unique?: string[];
|
|
701
|
+
/**
|
|
702
|
+
* Attribute mappings
|
|
703
|
+
*/
|
|
695
704
|
mapping_attributes?: MappingAttribute[];
|
|
705
|
+
/**
|
|
706
|
+
* Relation mappings
|
|
707
|
+
*/
|
|
696
708
|
relation_attributes?: RelationAttribute[];
|
|
709
|
+
/**
|
|
710
|
+
* Relation attribute on the main entity where the target entity will be linked. Set to false to disable linkback
|
|
711
|
+
*
|
|
712
|
+
*/
|
|
713
|
+
linkback_relation_attribute?: string | boolean;
|
|
714
|
+
/**
|
|
715
|
+
* Relation tags (labels) to include in main entity linkback relation attribute
|
|
716
|
+
*/
|
|
717
|
+
linkback_relation_tags?: string[];
|
|
697
718
|
}
|
|
698
719
|
export type MappingAttribute = SetValueMapper | CopyValueMapper | AppendValueMapper;
|
|
699
720
|
/**
|
|
@@ -717,6 +738,10 @@ declare namespace Components {
|
|
|
717
738
|
* Relation tags (labels) to set for the stored relations
|
|
718
739
|
*/
|
|
719
740
|
target_tags?: string[];
|
|
741
|
+
/**
|
|
742
|
+
* Include all relation tags (labels) present on the main entity relation
|
|
743
|
+
*/
|
|
744
|
+
target_tags_include_source?: boolean;
|
|
720
745
|
/**
|
|
721
746
|
* A filter to identify which source entities to pick as relations from main entity
|
|
722
747
|
*/
|
package/package.json
CHANGED
package/src/openapi.d.ts
CHANGED
|
@@ -690,10 +690,31 @@ declare namespace Components {
|
|
|
690
690
|
error_output?: ErrorOutput;
|
|
691
691
|
}
|
|
692
692
|
export interface MapEntityActionConfig {
|
|
693
|
-
|
|
693
|
+
/**
|
|
694
|
+
* Schema of target entity
|
|
695
|
+
*/
|
|
696
|
+
target_schema: string;
|
|
697
|
+
/**
|
|
698
|
+
* Unique key for target entity (see upsertEntity of Entity API)
|
|
699
|
+
*/
|
|
694
700
|
target_unique?: string[];
|
|
701
|
+
/**
|
|
702
|
+
* Attribute mappings
|
|
703
|
+
*/
|
|
695
704
|
mapping_attributes?: MappingAttribute[];
|
|
705
|
+
/**
|
|
706
|
+
* Relation mappings
|
|
707
|
+
*/
|
|
696
708
|
relation_attributes?: RelationAttribute[];
|
|
709
|
+
/**
|
|
710
|
+
* Relation attribute on the main entity where the target entity will be linked. Set to false to disable linkback
|
|
711
|
+
*
|
|
712
|
+
*/
|
|
713
|
+
linkback_relation_attribute?: string | boolean;
|
|
714
|
+
/**
|
|
715
|
+
* Relation tags (labels) to include in main entity linkback relation attribute
|
|
716
|
+
*/
|
|
717
|
+
linkback_relation_tags?: string[];
|
|
697
718
|
}
|
|
698
719
|
export type MappingAttribute = SetValueMapper | CopyValueMapper | AppendValueMapper;
|
|
699
720
|
/**
|
|
@@ -717,6 +738,10 @@ declare namespace Components {
|
|
|
717
738
|
* Relation tags (labels) to set for the stored relations
|
|
718
739
|
*/
|
|
719
740
|
target_tags?: string[];
|
|
741
|
+
/**
|
|
742
|
+
* Include all relation tags (labels) present on the main entity relation
|
|
743
|
+
*/
|
|
744
|
+
target_tags_include_source?: boolean;
|
|
720
745
|
/**
|
|
721
746
|
* A filter to identify which source entities to pick as relations from main entity
|
|
722
747
|
*/
|