pi-fabric 0.71.0 → 0.72.0
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/chunks/{fabric-runtime-state-GWMWTS7Y.js → fabric-runtime-state-RTHTHOLE.js} +10 -1
- package/dist/chunks/fabric-runtime-state-RTHTHOLE.js.map +7 -0
- package/dist/chunks/{settings-6MBYNMHI.js → settings-ILDKW6BG.js} +58 -1
- package/dist/chunks/settings-ILDKW6BG.js.map +7 -0
- package/dist/commands/fabric.d.ts.map +1 -1
- package/dist/fabric-runtime-state.d.ts +2 -1
- package/dist/fabric-runtime-state.d.ts.map +1 -1
- package/dist/fabric-state.d.ts +7 -1
- package/dist/fabric-state.d.ts.map +1 -1
- package/dist/index.js +77 -3
- package/dist/index.js.map +2 -2
- package/dist/ui/settings.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/chunks/fabric-runtime-state-GWMWTS7Y.js.map +0 -7
- package/dist/chunks/settings-6MBYNMHI.js.map +0 -7
|
@@ -11425,6 +11425,15 @@ ${escapeXmlText(text)}
|
|
|
11425
11425
|
// schema.mode from its own previous config, preserving the existing
|
|
11426
11426
|
// in-memory override chain (state and runtime share the same preserved
|
|
11427
11427
|
// mode by construction: the runtime's config originates from FabricState).
|
|
11428
|
+
// Ephemeral schema mode override: mutates the live config in place so the
|
|
11429
|
+
// per-call readers (SchemaController.authorize, the top-level tool gate,
|
|
11430
|
+
// ExecutionService's runtime selection) see the change immediately without
|
|
11431
|
+
// a provider-topology rebuild. FabricState owns the coupling rules.
|
|
11432
|
+
setSchemaMode(mode, executorRuntime) {
|
|
11433
|
+
if (!this.#config) return;
|
|
11434
|
+
this.#config.schema.mode = mode;
|
|
11435
|
+
this.#config.executor.runtime = executorRuntime;
|
|
11436
|
+
}
|
|
11428
11437
|
reloadConfig(context, next) {
|
|
11429
11438
|
if (!this.#config || !this.#cwd) return;
|
|
11430
11439
|
next.schema.mode = this.#config.schema.mode;
|
|
@@ -11778,4 +11787,4 @@ var deepAssign = (target, source) => {
|
|
|
11778
11787
|
export {
|
|
11779
11788
|
FabricRuntimeState
|
|
11780
11789
|
};
|
|
11781
|
-
//# sourceMappingURL=fabric-runtime-state-
|
|
11790
|
+
//# sourceMappingURL=fabric-runtime-state-RTHTHOLE.js.map
|