mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-30 08:17:06 +02:00
chore(editor): Add meta property to workflow saved event (#21119)
This commit is contained in:
parent
b6ec05c02a
commit
08daa5835e
|
|
@ -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),
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user