@junobuild/admin 0.0.58-next-2024-11-25.1 → 0.0.58-next-2024-11-25.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.
|
@@ -3,6 +3,14 @@ import { type chunk_hash, type InstallChunkedCodeParams, type UploadChunkParams,
|
|
|
3
3
|
import type { CanisterStatusResponse } from '@dfinity/ic-management/dist/types/types/ic-management.responses';
|
|
4
4
|
import { Principal } from '@dfinity/principal';
|
|
5
5
|
import type { ActorParameters } from '../types/actor.types';
|
|
6
|
+
export declare const canisterStop: ({ canisterId, actor }: {
|
|
7
|
+
canisterId: Principal;
|
|
8
|
+
actor: ActorParameters;
|
|
9
|
+
}) => Promise<void>;
|
|
10
|
+
export declare const canisterStart: ({ canisterId, actor }: {
|
|
11
|
+
canisterId: Principal;
|
|
12
|
+
actor: ActorParameters;
|
|
13
|
+
}) => Promise<void>;
|
|
6
14
|
export declare const installCode: ({ actor, code }: {
|
|
7
15
|
actor: ActorParameters;
|
|
8
16
|
code: InstallCodeParams;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { UpgradeCodeParams } from '../types/upgrade.types';
|
|
2
|
-
export declare const upgrade: ({ wasmModule, ...rest }: UpgradeCodeParams) => Promise<void>;
|
|
2
|
+
export declare const upgrade: ({ wasmModule, canisterId, actor, ...rest }: UpgradeCodeParams) => Promise<void>;
|
package/package.json
CHANGED