@epilot/automation-client 1.8.9 → 1.9.0
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 +10 -0
- package/package.json +1 -1
- package/src/openapi.d.ts +1744 -0
package/dist/openapi.d.ts
CHANGED
|
@@ -883,6 +883,16 @@ declare namespace Components {
|
|
|
883
883
|
error_output?: ErrorOutput;
|
|
884
884
|
}
|
|
885
885
|
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
|
+
};
|
|
886
896
|
/**
|
|
887
897
|
* Schema of target entity
|
|
888
898
|
*/
|