@ax-llm/ax 15.0.17 → 15.0.18
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 +33 -16
- package/index.cjs.map +1 -1
- package/index.d.cts +2 -0
- package/index.d.ts +2 -0
- package/index.global.js +44 -27
- package/index.global.js.map +1 -1
- package/index.js +33 -16
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.cts
CHANGED
|
@@ -927,7 +927,9 @@ declare class AxSignature<_TInput extends Record<string, any> = Record<string, a
|
|
|
927
927
|
private updateHash;
|
|
928
928
|
private validateSignatureConsistency;
|
|
929
929
|
private _forceComplexFields;
|
|
930
|
+
private _hasComplexFields?;
|
|
930
931
|
hasComplexFields: () => boolean;
|
|
932
|
+
private computeHasComplexFields;
|
|
931
933
|
validate: () => boolean;
|
|
932
934
|
hash: () => string;
|
|
933
935
|
toString: () => string;
|
package/index.d.ts
CHANGED
|
@@ -927,7 +927,9 @@ declare class AxSignature<_TInput extends Record<string, any> = Record<string, a
|
|
|
927
927
|
private updateHash;
|
|
928
928
|
private validateSignatureConsistency;
|
|
929
929
|
private _forceComplexFields;
|
|
930
|
+
private _hasComplexFields?;
|
|
930
931
|
hasComplexFields: () => boolean;
|
|
932
|
+
private computeHasComplexFields;
|
|
931
933
|
validate: () => boolean;
|
|
932
934
|
hash: () => string;
|
|
933
935
|
toString: () => string;
|