@ar.io/sdk 3.19.0-alpha.7 → 3.19.0-alpha.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/README.md +2 -1
- package/bundles/web.bundle.min.js +4 -4
- package/lib/cjs/cli/commands/antCommands.js +16 -6
- package/lib/cjs/cli/options.js +11 -1
- package/lib/cjs/common/ant.js +37 -22
- package/lib/cjs/utils/ao.js +1 -0
- package/lib/cjs/version.js +1 -1
- package/lib/esm/cli/commands/antCommands.js +16 -6
- package/lib/esm/cli/options.js +11 -1
- package/lib/esm/common/ant.js +37 -22
- package/lib/esm/utils/ao.js +1 -0
- package/lib/esm/version.js +1 -1
- package/lib/types/cli/commands/antCommands.d.ts +5 -2
- package/lib/types/cli/options.d.ts +5 -0
- package/lib/types/common/ant.d.ts +10 -4
- package/lib/types/types/ant.d.ts +6 -3
- package/lib/types/types/common.d.ts +1 -0
- package/lib/types/version.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2610,10 +2610,11 @@ console.log(`Failed to reassign names: ${result.failedReassignedNames}`);
|
|
|
2610
2610
|
- `reassignAffiliatedNames?: boolean` - If true, reassigns all names associated with this process to the new forked process (defaults to true when names is empty)
|
|
2611
2611
|
- `names?: string[]` - Optional array of specific names to reassign (cannot be used with `reassignAffiliatedNames: true`). These names must be affiliated with this ANT on the provided ARIO process.
|
|
2612
2612
|
- `arioProcessId?: string` - Optional ARIO process ID (defaults to mainnet)
|
|
2613
|
+
- `antRegistryId?: string` - Optional ANT registry process ID used to resolve the latest version (defaults to mainnet registry)
|
|
2613
2614
|
- `skipVersionCheck?: boolean` - Skip checking if ANT is already latest version (defaults to false)
|
|
2614
2615
|
- `onSigningProgress?: Function` - Optional progress callback for tracking upgrade steps
|
|
2615
2616
|
|
|
2616
|
-
**Returns:** `Promise<{ forkedProcessId: string, reassignedNames: string
|
|
2617
|
+
**Returns:** `Promise<{ forkedProcessId: string, reassignedNames: Record<string, AoMessageResult>, failedReassignedNames: Record<string, { id?: string; error: Error }> }>`
|
|
2617
2618
|
|
|
2618
2619
|
### Configuration
|
|
2619
2620
|
|