refactor(core): Store projectId on additionalData independent of dataStore context (no-changelog) (#19093)

This commit is contained in:
Charlie Kolb
2025-09-11 09:21:40 +02:00
committed by GitHub
parent a0d92a72b9
commit 6dd7797c39
6 changed files with 43 additions and 43 deletions

View File

@@ -924,13 +924,13 @@ export type DataStoreProxyProvider = {
getDataStoreAggregateProxy(
workflow: Workflow,
node: INode,
dataStoreProjectId?: string,
projectId?: string,
): Promise<IDataStoreProjectAggregateService>;
getDataStoreProxy(
workflow: Workflow,
node: INode,
dataStoreId: string,
dataStoreProjectId?: string,
projectId?: string,
): Promise<IDataStoreProjectService>;
};