@ax-llm/ax 19.0.12 → 19.0.13
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/index.cjs +134 -158
- package/index.cjs.map +1 -1
- package/index.d.cts +3 -0
- package/index.d.ts +3 -0
- package/index.global.js +131 -155
- package/index.global.js.map +1 -1
- package/index.js +137 -161
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/ax-agent.md +1 -1
- package/skills/ax-llm.md +1 -1
package/index.d.cts
CHANGED
|
@@ -9841,6 +9841,9 @@ interface AxCodeSession {
|
|
|
9841
9841
|
signal?: AbortSignal;
|
|
9842
9842
|
reservedNames?: readonly string[];
|
|
9843
9843
|
}): Promise<unknown>;
|
|
9844
|
+
patchGlobals(globals: Record<string, unknown>, options?: {
|
|
9845
|
+
signal?: AbortSignal;
|
|
9846
|
+
}): Promise<void>;
|
|
9844
9847
|
close(): void;
|
|
9845
9848
|
}
|
|
9846
9849
|
/**
|
package/index.d.ts
CHANGED
|
@@ -9841,6 +9841,9 @@ interface AxCodeSession {
|
|
|
9841
9841
|
signal?: AbortSignal;
|
|
9842
9842
|
reservedNames?: readonly string[];
|
|
9843
9843
|
}): Promise<unknown>;
|
|
9844
|
+
patchGlobals(globals: Record<string, unknown>, options?: {
|
|
9845
|
+
signal?: AbortSignal;
|
|
9846
|
+
}): Promise<void>;
|
|
9844
9847
|
close(): void;
|
|
9845
9848
|
}
|
|
9846
9849
|
/**
|