@epilot/automation-client 1.9.0 → 1.9.1

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/openapi.d.ts CHANGED
@@ -514,6 +514,7 @@ declare namespace Components {
514
514
  * Version of the config
515
515
  */
516
516
  version?: string;
517
+ mapping_config?: MappingConfigRef;
517
518
  relation_attributes?: RelationAttribute[];
518
519
  mapping_attributes?: (/**
519
520
  * example:
@@ -883,16 +884,7 @@ declare namespace Components {
883
884
  error_output?: ErrorOutput;
884
885
  }
885
886
  export interface MapEntityActionConfig {
886
- mapping_config?: {
887
- /**
888
- * Id of Entity Mapping Configuration to run for mapping.
889
- */
890
- config_id: string;
891
- /**
892
- * Id of TargetConfig to run for mapping.
893
- */
894
- target_id: string;
895
- };
887
+ mapping_config?: MappingConfigRef;
896
888
  /**
897
889
  * Schema of target entity
898
890
  */
@@ -958,6 +950,16 @@ declare namespace Components {
958
950
  target?: string;
959
951
  operation: /* Mapping operation nodes are either primitive values or operation node objects */ OperationNode;
960
952
  }
953
+ export interface MappingConfigRef {
954
+ /**
955
+ * Id of Entity Mapping Configuration to run for mapping.
956
+ */
957
+ config_id: string;
958
+ /**
959
+ * Id of TargetConfig to run for mapping.
960
+ */
961
+ target_id: string;
962
+ }
961
963
  /**
962
964
  * Mapping operation nodes are either primitive values or operation node objects
963
965
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "API Client for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/openapi.d.ts CHANGED
@@ -514,6 +514,7 @@ declare namespace Components {
514
514
  * Version of the config
515
515
  */
516
516
  version?: string;
517
+ mapping_config?: MappingConfigRef;
517
518
  relation_attributes?: RelationAttribute[];
518
519
  mapping_attributes?: (/**
519
520
  * example:
@@ -883,16 +884,7 @@ declare namespace Components {
883
884
  error_output?: ErrorOutput;
884
885
  }
885
886
  export interface MapEntityActionConfig {
886
- mapping_config?: {
887
- /**
888
- * Id of Entity Mapping Configuration to run for mapping.
889
- */
890
- config_id: string;
891
- /**
892
- * Id of TargetConfig to run for mapping.
893
- */
894
- target_id: string;
895
- };
887
+ mapping_config?: MappingConfigRef;
896
888
  /**
897
889
  * Schema of target entity
898
890
  */
@@ -958,6 +950,16 @@ declare namespace Components {
958
950
  target?: string;
959
951
  operation: /* Mapping operation nodes are either primitive values or operation node objects */ OperationNode;
960
952
  }
953
+ export interface MappingConfigRef {
954
+ /**
955
+ * Id of Entity Mapping Configuration to run for mapping.
956
+ */
957
+ config_id: string;
958
+ /**
959
+ * Id of TargetConfig to run for mapping.
960
+ */
961
+ target_id: string;
962
+ }
961
963
  /**
962
964
  * Mapping operation nodes are either primitive values or operation node objects
963
965
  */