feat(FN-1827): merge fusion/fn-1827

This commit is contained in:
gsxdsm
2026-04-16 09:08:06 -07:00
parent 6d3fa11cc5
commit d0d6c31091
11 changed files with 438 additions and 3 deletions

View File

@@ -74,6 +74,11 @@ export interface NodeSettingsSyncStatus {
global: string[];
project: string[];
};
/** Overall auth credential sync state: "match" if credentials match between local and remote,
* "differs" if they differ, "not-synced" if auth sync has never been performed. */
authMatch?: "match" | "differs" | "not-synced";
/** Per-provider auth match details. Map of provider name to match status. */
authDiff?: Record<string, "match" | "differs">;
}
/** Result from auth sync operation */