chore(editor): Add meta property to workflow saved event (#21119)

This commit is contained in:
Nikhil Kuriakose 2025-10-29 14:52:24 +05:30 committed by GitHub
parent b6ec05c02a
commit 08daa5835e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -637,6 +637,7 @@ export class TelemetryEventRelay extends EventRelay {
num_tags: workflow.tags?.length ?? 0,
public_api: publicApi,
sharing_role: userRole,
meta: JSON.stringify(workflow.meta),
});
}

View File

@ -2576,6 +2576,7 @@ export interface IWorkflowBase {
staticData?: IDataObject;
pinData?: IPinData;
versionId?: string;
meta?: WorkflowFEMeta;
}
export interface IWorkflowCredentials {
@ -2747,6 +2748,9 @@ export interface IWorkflowSettings {
export interface WorkflowFEMeta {
onboardingId?: string;
templateId?: string;
instanceId?: string;
templateCredsSetupCompleted?: boolean;
}
export interface WorkflowTestData {