qlogicagent 2.14.5 → 2.14.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +235 -235
- package/dist/index.js +234 -234
- package/dist/types/runtime/infra/model-registry.d.ts +5 -0
- package/package.json +1 -1
|
@@ -88,7 +88,12 @@ export declare class ModelRegistry {
|
|
|
88
88
|
private injectedKeyStates;
|
|
89
89
|
private settingsPath;
|
|
90
90
|
private changeListeners;
|
|
91
|
+
private hydratedFromUpstream;
|
|
91
92
|
constructor(config?: ModelRegistryConfig);
|
|
93
|
+
/** Whether the registry has been freshly hydrated from upstream this lifetime (lazy-init guard). */
|
|
94
|
+
isHydratedFromUpstream(): boolean;
|
|
95
|
+
/** Mark the registry as freshly hydrated; reads stay pure until an explicit re-sync. */
|
|
96
|
+
markHydratedFromUpstream(): void;
|
|
92
97
|
getActiveModel(purpose: ModelPurpose): ResolvedModel | null;
|
|
93
98
|
peekActiveModel(purpose: ModelPurpose): ModelEntry | null;
|
|
94
99
|
isAvailable(purpose: ModelPurpose): boolean;
|