@ax-llm/ax 15.0.8 → 15.0.9
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 +2 -2
- package/index.cjs.map +1 -1
- package/index.d.cts +1 -0
- package/index.d.ts +1 -0
- package/index.global.js +2 -2
- package/index.global.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.cts
CHANGED
|
@@ -1934,6 +1934,7 @@ type ErrorOptions = {
|
|
|
1934
1934
|
declare class AxGenerateError extends Error {
|
|
1935
1935
|
readonly details: AxGenerateErrorDetails;
|
|
1936
1936
|
constructor(message: string, details: Readonly<AxGenerateErrorDetails>, options?: ErrorOptions);
|
|
1937
|
+
toJSON(): Record<string, unknown>;
|
|
1937
1938
|
}
|
|
1938
1939
|
|
|
1939
1940
|
type Writeable<T> = {
|
package/index.d.ts
CHANGED
|
@@ -1934,6 +1934,7 @@ type ErrorOptions = {
|
|
|
1934
1934
|
declare class AxGenerateError extends Error {
|
|
1935
1935
|
readonly details: AxGenerateErrorDetails;
|
|
1936
1936
|
constructor(message: string, details: Readonly<AxGenerateErrorDetails>, options?: ErrorOptions);
|
|
1937
|
+
toJSON(): Record<string, unknown>;
|
|
1937
1938
|
}
|
|
1938
1939
|
|
|
1939
1940
|
type Writeable<T> = {
|