Add child_id to call service result in trace (#8728)

This commit is contained in:
Paulus Schoutsen 2021-03-27 20:06:02 -07:00 committed by GitHub
parent c07b1194b3
commit 1865e0661f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,11 @@ export interface CallServiceActionTrace extends BaseTrace {
running_script: boolean;
params: Record<string, unknown>;
};
child_id?: {
domain: string;
item_id: string;
run_id: string;
};
}
export interface ChooseActionTrace extends BaseTrace {