@junobuild/ic-client 5.0.1 → 6.0.0
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/actor.js +1 -1
- package/actor.js.map +2 -2
- package/actor.mjs +1 -1
- package/actor.mjs.map +2 -2
- package/declarations/mission_control/mission_control.did.d.ts +0 -4
- package/declarations/mission_control/mission_control.factory.certified.did.js +0 -8
- package/declarations/mission_control/mission_control.factory.did.js +0 -8
- package/declarations/satellite/satellite.did.d.ts +1 -0
- package/declarations/satellite/satellite.factory.certified.did.js +1 -0
- package/declarations/satellite/satellite.factory.did.js +1 -0
- package/declarations/satellite/satellite.factory.did.mjs +1 -0
- package/declarations/sputnik/sputnik.did.d.ts +1 -0
- package/declarations/sputnik/sputnik.factory.certified.did.js +1 -0
- package/declarations/sputnik/sputnik.factory.did.js +1 -0
- package/package.json +1 -1
|
@@ -205,8 +205,6 @@ export interface User {
|
|
|
205
205
|
config: [] | [Config];
|
|
206
206
|
}
|
|
207
207
|
export interface _SERVICE {
|
|
208
|
-
add_mission_control_controllers: ActorMethod<[Array<Principal>], undefined>;
|
|
209
|
-
add_satellites_controllers: ActorMethod<[Array<Principal>, Array<Principal>], undefined>;
|
|
210
208
|
create_orbiter: ActorMethod<[[] | [string]], Orbiter>;
|
|
211
209
|
create_orbiter_with_config: ActorMethod<[CreateCanisterConfig], Orbiter>;
|
|
212
210
|
create_satellite: ActorMethod<[string], Satellite>;
|
|
@@ -232,8 +230,6 @@ export interface _SERVICE {
|
|
|
232
230
|
list_mission_control_controllers: ActorMethod<[], Array<[Principal, Controller]>>;
|
|
233
231
|
list_orbiters: ActorMethod<[], Array<[Principal, Orbiter]>>;
|
|
234
232
|
list_satellites: ActorMethod<[], Array<[Principal, Satellite]>>;
|
|
235
|
-
remove_mission_control_controllers: ActorMethod<[Array<Principal>], undefined>;
|
|
236
|
-
remove_satellites_controllers: ActorMethod<[Array<Principal>, Array<Principal>], undefined>;
|
|
237
233
|
set_config: ActorMethod<[[] | [Config]], undefined>;
|
|
238
234
|
set_metadata: ActorMethod<[Array<[string, string]>], undefined>;
|
|
239
235
|
set_mission_control_controllers: ActorMethod<[Array<Principal>, SetController], undefined>;
|
|
@@ -202,8 +202,6 @@ export const idlFactory = ({IDL}) => {
|
|
|
202
202
|
});
|
|
203
203
|
|
|
204
204
|
return IDL.Service({
|
|
205
|
-
add_mission_control_controllers: IDL.Func([IDL.Vec(IDL.Principal)], [], []),
|
|
206
|
-
add_satellites_controllers: IDL.Func([IDL.Vec(IDL.Principal), IDL.Vec(IDL.Principal)], [], []),
|
|
207
205
|
create_orbiter: IDL.Func([IDL.Opt(IDL.Text)], [Orbiter], []),
|
|
208
206
|
create_orbiter_with_config: IDL.Func([CreateCanisterConfig], [Orbiter], []),
|
|
209
207
|
create_satellite: IDL.Func([IDL.Text], [Satellite], []),
|
|
@@ -234,12 +232,6 @@ export const idlFactory = ({IDL}) => {
|
|
|
234
232
|
),
|
|
235
233
|
list_orbiters: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Principal, Orbiter))], []),
|
|
236
234
|
list_satellites: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Principal, Satellite))], []),
|
|
237
|
-
remove_mission_control_controllers: IDL.Func([IDL.Vec(IDL.Principal)], [], []),
|
|
238
|
-
remove_satellites_controllers: IDL.Func(
|
|
239
|
-
[IDL.Vec(IDL.Principal), IDL.Vec(IDL.Principal)],
|
|
240
|
-
[],
|
|
241
|
-
[]
|
|
242
|
-
),
|
|
243
235
|
set_config: IDL.Func([IDL.Opt(Config)], [], []),
|
|
244
236
|
set_metadata: IDL.Func([IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text))], [], []),
|
|
245
237
|
set_mission_control_controllers: IDL.Func([IDL.Vec(IDL.Principal), SetController], [], []),
|
|
@@ -202,8 +202,6 @@ export const idlFactory = ({IDL}) => {
|
|
|
202
202
|
});
|
|
203
203
|
|
|
204
204
|
return IDL.Service({
|
|
205
|
-
add_mission_control_controllers: IDL.Func([IDL.Vec(IDL.Principal)], [], []),
|
|
206
|
-
add_satellites_controllers: IDL.Func([IDL.Vec(IDL.Principal), IDL.Vec(IDL.Principal)], [], []),
|
|
207
205
|
create_orbiter: IDL.Func([IDL.Opt(IDL.Text)], [Orbiter], []),
|
|
208
206
|
create_orbiter_with_config: IDL.Func([CreateCanisterConfig], [Orbiter], []),
|
|
209
207
|
create_satellite: IDL.Func([IDL.Text], [Satellite], []),
|
|
@@ -234,12 +232,6 @@ export const idlFactory = ({IDL}) => {
|
|
|
234
232
|
),
|
|
235
233
|
list_orbiters: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Principal, Orbiter))], ['query']),
|
|
236
234
|
list_satellites: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Principal, Satellite))], ['query']),
|
|
237
|
-
remove_mission_control_controllers: IDL.Func([IDL.Vec(IDL.Principal)], [], []),
|
|
238
|
-
remove_satellites_controllers: IDL.Func(
|
|
239
|
-
[IDL.Vec(IDL.Principal), IDL.Vec(IDL.Principal)],
|
|
240
|
-
[],
|
|
241
|
-
[]
|
|
242
|
-
),
|
|
243
235
|
set_config: IDL.Func([IDL.Opt(Config)], [], []),
|
|
244
236
|
set_metadata: IDL.Func([IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text))], [], []),
|
|
245
237
|
set_mission_control_controllers: IDL.Func([IDL.Vec(IDL.Principal), SetController], [], []),
|
|
@@ -493,6 +493,7 @@ export interface _SERVICE {
|
|
|
493
493
|
list_rules: ActorMethod<[CollectionType, ListRulesParams], ListRulesResults>;
|
|
494
494
|
memory_size: ActorMethod<[], MemorySize>;
|
|
495
495
|
reject_proposal: ActorMethod<[CommitProposal], null>;
|
|
496
|
+
set_asset_token: ActorMethod<[string, string, [] | [string]], undefined>;
|
|
496
497
|
set_auth_config: ActorMethod<[SetAuthenticationConfig], AuthenticationConfig>;
|
|
497
498
|
set_controllers: ActorMethod<[SetControllersArgs], Array<[Principal, Controller]>>;
|
|
498
499
|
set_custom_domain: ActorMethod<[string, [] | [string]], undefined>;
|
|
@@ -510,6 +510,7 @@ export const idlFactory = ({IDL}) => {
|
|
|
510
510
|
list_rules: IDL.Func([CollectionType, ListRulesParams], [ListRulesResults], []),
|
|
511
511
|
memory_size: IDL.Func([], [MemorySize], []),
|
|
512
512
|
reject_proposal: IDL.Func([CommitProposal], [IDL.Null], []),
|
|
513
|
+
set_asset_token: IDL.Func([IDL.Text, IDL.Text, IDL.Opt(IDL.Text)], [], []),
|
|
513
514
|
set_auth_config: IDL.Func([SetAuthenticationConfig], [AuthenticationConfig], []),
|
|
514
515
|
set_controllers: IDL.Func(
|
|
515
516
|
[SetControllersArgs],
|
|
@@ -510,6 +510,7 @@ export const idlFactory = ({IDL}) => {
|
|
|
510
510
|
list_rules: IDL.Func([CollectionType, ListRulesParams], [ListRulesResults], ['query']),
|
|
511
511
|
memory_size: IDL.Func([], [MemorySize], ['query']),
|
|
512
512
|
reject_proposal: IDL.Func([CommitProposal], [IDL.Null], []),
|
|
513
|
+
set_asset_token: IDL.Func([IDL.Text, IDL.Text, IDL.Opt(IDL.Text)], [], []),
|
|
513
514
|
set_auth_config: IDL.Func([SetAuthenticationConfig], [AuthenticationConfig], []),
|
|
514
515
|
set_controllers: IDL.Func(
|
|
515
516
|
[SetControllersArgs],
|
|
@@ -510,6 +510,7 @@ export const idlFactory = ({IDL}) => {
|
|
|
510
510
|
list_rules: IDL.Func([CollectionType, ListRulesParams], [ListRulesResults], ['query']),
|
|
511
511
|
memory_size: IDL.Func([], [MemorySize], ['query']),
|
|
512
512
|
reject_proposal: IDL.Func([CommitProposal], [IDL.Null], []),
|
|
513
|
+
set_asset_token: IDL.Func([IDL.Text, IDL.Text, IDL.Opt(IDL.Text)], [], []),
|
|
513
514
|
set_auth_config: IDL.Func([SetAuthenticationConfig], [AuthenticationConfig], []),
|
|
514
515
|
set_controllers: IDL.Func(
|
|
515
516
|
[SetControllersArgs],
|
|
@@ -493,6 +493,7 @@ export interface _SERVICE {
|
|
|
493
493
|
list_rules: ActorMethod<[CollectionType, ListRulesParams], ListRulesResults>;
|
|
494
494
|
memory_size: ActorMethod<[], MemorySize>;
|
|
495
495
|
reject_proposal: ActorMethod<[CommitProposal], null>;
|
|
496
|
+
set_asset_token: ActorMethod<[string, string, [] | [string]], undefined>;
|
|
496
497
|
set_auth_config: ActorMethod<[SetAuthenticationConfig], AuthenticationConfig>;
|
|
497
498
|
set_controllers: ActorMethod<[SetControllersArgs], Array<[Principal, Controller]>>;
|
|
498
499
|
set_custom_domain: ActorMethod<[string, [] | [string]], undefined>;
|
|
@@ -510,6 +510,7 @@ export const idlFactory = ({IDL}) => {
|
|
|
510
510
|
list_rules: IDL.Func([CollectionType, ListRulesParams], [ListRulesResults], []),
|
|
511
511
|
memory_size: IDL.Func([], [MemorySize], []),
|
|
512
512
|
reject_proposal: IDL.Func([CommitProposal], [IDL.Null], []),
|
|
513
|
+
set_asset_token: IDL.Func([IDL.Text, IDL.Text, IDL.Opt(IDL.Text)], [], []),
|
|
513
514
|
set_auth_config: IDL.Func([SetAuthenticationConfig], [AuthenticationConfig], []),
|
|
514
515
|
set_controllers: IDL.Func(
|
|
515
516
|
[SetControllersArgs],
|
|
@@ -510,6 +510,7 @@ export const idlFactory = ({IDL}) => {
|
|
|
510
510
|
list_rules: IDL.Func([CollectionType, ListRulesParams], [ListRulesResults], ['query']),
|
|
511
511
|
memory_size: IDL.Func([], [MemorySize], ['query']),
|
|
512
512
|
reject_proposal: IDL.Func([CommitProposal], [IDL.Null], []),
|
|
513
|
+
set_asset_token: IDL.Func([IDL.Text, IDL.Text, IDL.Opt(IDL.Text)], [], []),
|
|
513
514
|
set_auth_config: IDL.Func([SetAuthenticationConfig], [AuthenticationConfig], []),
|
|
514
515
|
set_controllers: IDL.Func(
|
|
515
516
|
[SetControllersArgs],
|
package/package.json
CHANGED