Update: GTM Architect v2.6.2 (Edit Specs, Report Fix) & Company Explorer v0.4 (Export, Timestamps)

This commit is contained in:
2026-01-09 09:15:16 +00:00
parent fc0f873713
commit 642e0af1f4
10 changed files with 617 additions and 111 deletions

View File

@@ -117,4 +117,8 @@ export const loadSession = async (projectId: string): Promise<any> => {
export const deleteSession = async (projectId: string): Promise<any> => {
return callApi('run', 'delete_session', { projectId });
};
export const updateSpecs = async (projectId: string, specs: any): Promise<any> => {
return callApi('run', 'update_specs', { projectId, specs });
};