@junobuild/admin 2.2.2-next-2025-09-25 → 2.2.2
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/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +2 -2
- package/dist/node/index.mjs +1 -1
- package/dist/node/index.mjs.map +2 -2
- package/dist/types/api/ic.api.d.ts +2 -2
- package/dist/types/api/mission-control.api.d.ts +1 -1
- package/dist/types/api/orbiter.api.d.ts +1 -1
- package/dist/types/api/satellite.api.d.ts +1 -1
- package/dist/types/services/mission-control.controllers.services.d.ts +1 -1
- package/dist/types/services/orbiter.controllers.services.d.ts +1 -1
- package/dist/types/services/package.services.d.ts +1 -1
- package/dist/types/services/satellite.controllers.services.d.ts +1 -1
- package/dist/types/types/upgrade.d.ts +1 -1
- package/dist/types/utils/controllers.utils.d.ts +1 -1
- package/dist/types/utils/idl.utils.d.ts +1 -1
- package/package.json +11 -8
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { CanisterStatus } from '@
|
|
1
|
+
import { CanisterStatus } from '@dfinity/agent';
|
|
2
2
|
import { type chunk_hash, type InstallChunkedCodeParams, type InstallCodeParams, type list_canister_snapshots_result, type snapshot_id, type UploadChunkParams } from '@dfinity/ic-management';
|
|
3
3
|
import type { take_canister_snapshot_result } from '@dfinity/ic-management/dist/candid/ic-management';
|
|
4
4
|
import type { CanisterStatusResponse } from '@dfinity/ic-management/dist/types/types/ic-management.responses';
|
|
5
|
-
import { Principal } from '@
|
|
5
|
+
import { Principal } from '@dfinity/principal';
|
|
6
6
|
import { type ActorParameters } from '@junobuild/ic-client/actor';
|
|
7
7
|
export declare const canisterStop: ({ canisterId, actor }: {
|
|
8
8
|
canisterId: Principal;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Principal } from '@
|
|
1
|
+
import type { Principal } from '@dfinity/principal';
|
|
2
2
|
import { type MissionControlDid, type MissionControlParameters } from '@junobuild/ic-client/actor';
|
|
3
3
|
/**
|
|
4
4
|
* @deprecated - Replaced in Mission Control > v0.0.14 with public custom section juno:package
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Principal } from '@
|
|
1
|
+
import type { Principal } from '@dfinity/principal';
|
|
2
2
|
import { type OrbiterDid, type OrbiterParameters } from '@junobuild/ic-client/actor';
|
|
3
3
|
/**
|
|
4
4
|
* @deprecated - Replaced in Orbiter > v0.0.8 with public custom section juno:package
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Principal } from '@
|
|
1
|
+
import type { Principal } from '@dfinity/principal';
|
|
2
2
|
import { type SatelliteDid, type SatelliteParameters } from '@junobuild/ic-client/actor';
|
|
3
3
|
export declare const setStorageConfig: ({ config, satellite }: {
|
|
4
4
|
config: SatelliteDid.SetStorageConfig;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Principal } from '@
|
|
1
|
+
import type { Principal } from '@dfinity/principal';
|
|
2
2
|
import type { MissionControlDid, MissionControlParameters } from '@junobuild/ic-client/actor';
|
|
3
3
|
import type { SetControllerParams } from '../types/controllers';
|
|
4
4
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { canister_install_mode } from '@dfinity/ic-management';
|
|
2
|
-
import type { Principal } from '@
|
|
2
|
+
import type { Principal } from '@dfinity/principal';
|
|
3
3
|
import type { ActorParameters } from '@junobuild/ic-client/actor';
|
|
4
4
|
export declare enum UpgradeCodeProgressStep {
|
|
5
5
|
AssertingExistingCode = 0,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Principal } from '@
|
|
1
|
+
import { Principal } from '@dfinity/principal';
|
|
2
2
|
import type { MissionControlDid } from '@junobuild/ic-client/actor';
|
|
3
3
|
import type { SetControllerParams } from '../types/controllers';
|
|
4
4
|
export declare const mapSetControllerParams: ({ controllerId, profile }: SetControllerParams) => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Principal } from '@
|
|
1
|
+
import type { Principal } from '@dfinity/principal';
|
|
2
2
|
import type { SatelliteDid } from '@junobuild/ic-client/actor';
|
|
3
3
|
export declare const encoreIDLUser: (user: Principal) => Uint8Array;
|
|
4
4
|
export declare const encodeAdminAccessKeysToIDL: (controllers: [Principal, SatelliteDid.Controller][]) => Uint8Array;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junobuild/admin",
|
|
3
|
-
"version": "2.2.2
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "A library for interfacing with admin features of Juno",
|
|
5
5
|
"author": "David Dal Busco (https://daviddalbusco.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,12 +50,15 @@
|
|
|
50
50
|
],
|
|
51
51
|
"homepage": "https://juno.build",
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@dfinity/
|
|
54
|
-
"@dfinity/
|
|
55
|
-
"@
|
|
53
|
+
"@dfinity/agent": "^3.2.6",
|
|
54
|
+
"@dfinity/candid": "^3.2.6",
|
|
55
|
+
"@dfinity/ic-management": "^7",
|
|
56
|
+
"@dfinity/identity": "^3.2.6",
|
|
57
|
+
"@dfinity/principal": "^3.2.6",
|
|
58
|
+
"@dfinity/utils": "^3.1",
|
|
56
59
|
"@junobuild/config": "*",
|
|
57
|
-
"@junobuild/ic-client": "
|
|
58
|
-
"semver": "
|
|
59
|
-
"zod": "
|
|
60
|
+
"@junobuild/ic-client": "^3",
|
|
61
|
+
"semver": "7.*",
|
|
62
|
+
"zod": "^3.25"
|
|
60
63
|
}
|
|
61
|
-
}
|
|
64
|
+
}
|