@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.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
  /**