@ar.io/sdk 3.19.0-alpha.1 → 3.19.0-alpha.3
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/bundles/web.bundle.min.js +88 -72
- package/lib/cjs/cli/cli.js +6 -0
- package/lib/cjs/cli/commands/antCommands.js +33 -0
- package/lib/cjs/cli/options.js +2 -1
- package/lib/cjs/cli/utils.js +11 -11
- package/lib/cjs/common/ant.js +326 -0
- package/lib/cjs/constants.js +2 -1
- package/lib/cjs/utils/ant.js +4 -0
- package/lib/cjs/version.js +1 -1
- package/lib/esm/cli/cli.js +8 -2
- package/lib/esm/cli/commands/antCommands.js +33 -1
- package/lib/esm/cli/options.js +1 -0
- package/lib/esm/cli/utils.js +11 -11
- package/lib/esm/common/ant.js +327 -1
- package/lib/esm/constants.js +1 -0
- package/lib/esm/utils/ant.js +4 -0
- package/lib/esm/version.js +1 -1
- package/lib/types/cli/commands/antCommands.d.ts +5 -0
- package/lib/types/cli/options.d.ts +4 -0
- package/lib/types/cli/utils.d.ts +2 -2
- package/lib/types/common/ant.d.ts +120 -2
- package/lib/types/constants.d.ts +1 -0
- package/lib/types/types/ant.d.ts +26 -1
- package/lib/types/types/common.d.ts +20 -0
- package/lib/types/utils/ant.d.ts +4 -0
- package/lib/types/version.d.ts +1 -1
- package/package.json +1 -1
package/lib/types/utils/ant.d.ts
CHANGED
|
@@ -24,10 +24,14 @@ import { ANTRecords, AoANTState, HyperBeamANTState, SortedANTRecords } from '../
|
|
|
24
24
|
* @param antRecords - The ANT records to sort.
|
|
25
25
|
*/
|
|
26
26
|
export declare const sortANTRecords: (antRecords: ANTRecords) => SortedANTRecords;
|
|
27
|
+
/**
|
|
28
|
+
* @deprecated - this is no longer necessary because HyperBeam now uses the AoANTState type
|
|
29
|
+
*/
|
|
27
30
|
export declare const isHyperBeamANTState: (state: any) => state is HyperBeamANTState;
|
|
28
31
|
/**
|
|
29
32
|
* Convert HyperBeam serialized ANT state to backwards compatible format.
|
|
30
33
|
*
|
|
34
|
+
* @deprecated - this is no longer necessary because HyperBeam now uses the AOANTState type
|
|
31
35
|
* @param state - The HyperBeam serialized ANT state.
|
|
32
36
|
*/
|
|
33
37
|
export declare const convertHyperBeamStateToAoANTState: (initialState: HyperBeamANTState) => AoANTState;
|
package/lib/types/version.d.ts
CHANGED