@junobuild/admin 0.4.0 → 0.5.0-next-2025-05-23
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 +3 -3
- package/dist/declarations/mission_control/mission_control.did.d.ts +200 -0
- package/dist/declarations/mission_control/mission_control.factory.certified.did.js +211 -2
- package/dist/declarations/mission_control/mission_control.factory.did.js +211 -2
- package/dist/node/index.mjs +1 -1
- package/dist/node/index.mjs.map +3 -3
- package/dist/types/types/actor.types.d.ts +0 -6
- package/package.json +10 -10
|
@@ -9,12 +9,6 @@ export interface ActorParameters {
|
|
|
9
9
|
* @type {Identity}
|
|
10
10
|
*/
|
|
11
11
|
identity: Identity;
|
|
12
|
-
/**
|
|
13
|
-
* A custom fetch function to use for network requests. Useful in NodeJS context.
|
|
14
|
-
* @type {typeof fetch}
|
|
15
|
-
* @optional
|
|
16
|
-
*/
|
|
17
|
-
fetch?: typeof fetch;
|
|
18
12
|
/**
|
|
19
13
|
* Specifies whether the actor is calling the local development Docker container or provides the container URL.
|
|
20
14
|
* @type {boolean | string}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junobuild/admin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0-next-2025-05-23",
|
|
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,14 +50,14 @@
|
|
|
50
50
|
],
|
|
51
51
|
"homepage": "https://juno.build",
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@dfinity/agent": "
|
|
54
|
-
"@dfinity/candid": "
|
|
55
|
-
"@dfinity/ic-management": "
|
|
56
|
-
"@dfinity/identity": "
|
|
57
|
-
"@dfinity/principal": "
|
|
58
|
-
"@dfinity/utils": "
|
|
53
|
+
"@dfinity/agent": "*",
|
|
54
|
+
"@dfinity/candid": "*",
|
|
55
|
+
"@dfinity/ic-management": "*",
|
|
56
|
+
"@dfinity/identity": "*",
|
|
57
|
+
"@dfinity/principal": "*",
|
|
58
|
+
"@dfinity/utils": "*",
|
|
59
59
|
"@junobuild/config": "*",
|
|
60
|
-
"semver": "
|
|
61
|
-
"zod": "
|
|
60
|
+
"semver": "*",
|
|
61
|
+
"zod": "*"
|
|
62
62
|
}
|
|
63
|
-
}
|
|
63
|
+
}
|