@junobuild/ic-client 3.1.2 → 3.1.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.
- package/actor.js +1 -1
- package/actor.js.map +3 -3
- package/actor.mjs +1 -1
- package/actor.mjs.map +3 -3
- package/declarations/console/console.did.d.ts +228 -218
- package/declarations/console/console.factory.certified.did.js +14 -1
- package/declarations/console/console.factory.did.js +14 -1
- package/declarations/console/console.factory.did.mjs +14 -1
- package/declarations/deprecated/console-0-0-14.did.d.ts +186 -186
- package/declarations/deprecated/console-0-0-8-patch1.did.d.ts +49 -49
- package/declarations/deprecated/mission_control-0-0-13.did.d.ts +173 -173
- package/declarations/deprecated/mission_control-0-0-14.did.d.ts +167 -167
- package/declarations/deprecated/mission_control-0-0-4.did.d.ts +57 -57
- package/declarations/deprecated/observatory-0-0-9.did.d.ts +42 -42
- package/declarations/deprecated/orbiter-0-0-6.did.d.ts +111 -111
- package/declarations/deprecated/orbiter-0-0-7.did.d.ts +116 -116
- package/declarations/deprecated/orbiter-0-0-8.did.d.ts +177 -177
- package/declarations/deprecated/orbiter-0-2-0.did.d.ts +203 -203
- package/declarations/deprecated/satellite-0-0-16.did.d.ts +174 -170
- package/declarations/deprecated/satellite-0-0-17.did.d.ts +185 -181
- package/declarations/deprecated/satellite-0-0-21.did.d.ts +216 -212
- package/declarations/deprecated/satellite-0-0-22.did.d.ts +211 -207
- package/declarations/deprecated/satellite-0-0-8.did.d.ts +125 -121
- package/declarations/deprecated/satellite-0-0-9.did.d.ts +139 -135
- package/declarations/mission_control/mission_control.did.d.ts +178 -169
- package/declarations/mission_control/mission_control.factory.certified.did.js +16 -4
- package/declarations/mission_control/mission_control.factory.did.js +16 -4
- package/declarations/observatory/observatory.did.d.ts +54 -54
- package/declarations/orbiter/orbiter.did.d.ts +206 -206
- package/declarations/orbiter/orbiter.factory.certified.did.js +7 -3
- package/declarations/orbiter/orbiter.factory.did.js +7 -3
- package/declarations/orbiter/orbiter.factory.did.mjs +7 -3
- package/declarations/satellite/satellite.did.d.ts +294 -285
- 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 +294 -285
- package/declarations/sputnik/sputnik.factory.certified.did.js +1 -0
- package/declarations/sputnik/sputnik.factory.did.js +1 -0
- package/package.json +1 -1
|
@@ -1,290 +1,294 @@
|
|
|
1
|
-
import type {ActorMethod} from '@dfinity/agent';
|
|
2
|
-
import type {IDL} from '@dfinity/candid';
|
|
3
|
-
import type {Principal} from '@dfinity/principal';
|
|
1
|
+
import type { ActorMethod } from '@dfinity/agent';
|
|
2
|
+
import type { IDL } from '@dfinity/candid';
|
|
3
|
+
import type { Principal } from '@dfinity/principal';
|
|
4
4
|
|
|
5
5
|
export interface AssetEncodingNoContent {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
modified: bigint;
|
|
7
|
+
sha256: Uint8Array | number[];
|
|
8
|
+
total_length: bigint;
|
|
9
9
|
}
|
|
10
10
|
export interface AssetKey {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
token: [] | [string];
|
|
12
|
+
collection: string;
|
|
13
|
+
owner: Principal;
|
|
14
|
+
name: string;
|
|
15
|
+
description: [] | [string];
|
|
16
|
+
full_path: string;
|
|
17
17
|
}
|
|
18
18
|
export interface AssetNoContent {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
19
|
+
key: AssetKey;
|
|
20
|
+
updated_at: bigint;
|
|
21
|
+
encodings: Array<[string, AssetEncodingNoContent]>;
|
|
22
|
+
headers: Array<[string, string]>;
|
|
23
|
+
created_at: bigint;
|
|
24
|
+
version: [] | [bigint];
|
|
25
25
|
}
|
|
26
26
|
export interface AuthenticationConfig {
|
|
27
|
-
|
|
27
|
+
internet_identity: [] | [AuthenticationConfigInternetIdentity];
|
|
28
28
|
}
|
|
29
29
|
export interface AuthenticationConfigInternetIdentity {
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
derivation_origin: [] | [string];
|
|
31
|
+
external_alternative_origins: [] | [Array<string>];
|
|
32
32
|
}
|
|
33
|
-
export type CollectionType = {Db: null} | {Storage: null};
|
|
33
|
+
export type CollectionType = { Db: null } | { Storage: null };
|
|
34
34
|
export interface CommitBatch {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
batch_id: bigint;
|
|
36
|
+
headers: Array<[string, string]>;
|
|
37
|
+
chunk_ids: Array<bigint>;
|
|
38
38
|
}
|
|
39
39
|
export interface Config {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
db: [] | [DbConfig];
|
|
41
|
+
authentication: [] | [AuthenticationConfig];
|
|
42
|
+
storage: StorageConfig;
|
|
43
43
|
}
|
|
44
44
|
export interface ConfigMaxMemorySize {
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
stable: [] | [bigint];
|
|
46
|
+
heap: [] | [bigint];
|
|
47
47
|
}
|
|
48
48
|
export interface Controller {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
49
|
+
updated_at: bigint;
|
|
50
|
+
metadata: Array<[string, string]>;
|
|
51
|
+
created_at: bigint;
|
|
52
|
+
scope: ControllerScope;
|
|
53
|
+
expires_at: [] | [bigint];
|
|
54
54
|
}
|
|
55
|
-
export type ControllerScope = {Write: null} | {Admin: null};
|
|
55
|
+
export type ControllerScope = { Write: null } | { Admin: null };
|
|
56
56
|
export interface CustomDomain {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
57
|
+
updated_at: bigint;
|
|
58
|
+
created_at: bigint;
|
|
59
|
+
version: [] | [bigint];
|
|
60
|
+
bn_id: [] | [string];
|
|
61
61
|
}
|
|
62
62
|
export interface DbConfig {
|
|
63
|
-
|
|
63
|
+
max_memory_size: [] | [ConfigMaxMemorySize];
|
|
64
64
|
}
|
|
65
65
|
export interface DelDoc {
|
|
66
|
-
|
|
66
|
+
version: [] | [bigint];
|
|
67
67
|
}
|
|
68
68
|
export interface DelRule {
|
|
69
|
-
|
|
69
|
+
version: [] | [bigint];
|
|
70
70
|
}
|
|
71
71
|
export interface DeleteControllersArgs {
|
|
72
|
-
|
|
72
|
+
controllers: Array<Principal>;
|
|
73
73
|
}
|
|
74
74
|
export interface DepositCyclesArgs {
|
|
75
|
-
|
|
76
|
-
|
|
75
|
+
cycles: bigint;
|
|
76
|
+
destination_id: Principal;
|
|
77
77
|
}
|
|
78
78
|
export interface Doc {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
79
|
+
updated_at: bigint;
|
|
80
|
+
owner: Principal;
|
|
81
|
+
data: Uint8Array | number[];
|
|
82
|
+
description: [] | [string];
|
|
83
|
+
created_at: bigint;
|
|
84
|
+
version: [] | [bigint];
|
|
85
85
|
}
|
|
86
86
|
export interface HttpRequest {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
87
|
+
url: string;
|
|
88
|
+
method: string;
|
|
89
|
+
body: Uint8Array | number[];
|
|
90
|
+
headers: Array<[string, string]>;
|
|
91
|
+
certificate_version: [] | [number];
|
|
92
92
|
}
|
|
93
93
|
export interface HttpResponse {
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
94
|
+
body: Uint8Array | number[];
|
|
95
|
+
headers: Array<[string, string]>;
|
|
96
|
+
streaming_strategy: [] | [StreamingStrategy];
|
|
97
|
+
status_code: number;
|
|
98
98
|
}
|
|
99
99
|
export interface InitAssetKey {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
100
|
+
token: [] | [string];
|
|
101
|
+
collection: string;
|
|
102
|
+
name: string;
|
|
103
|
+
description: [] | [string];
|
|
104
|
+
encoding_type: [] | [string];
|
|
105
|
+
full_path: string;
|
|
106
106
|
}
|
|
107
107
|
export interface InitUploadResult {
|
|
108
|
-
|
|
108
|
+
batch_id: bigint;
|
|
109
109
|
}
|
|
110
110
|
export interface ListMatcher {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
111
|
+
key: [] | [string];
|
|
112
|
+
updated_at: [] | [TimestampMatcher];
|
|
113
|
+
description: [] | [string];
|
|
114
|
+
created_at: [] | [TimestampMatcher];
|
|
115
115
|
}
|
|
116
116
|
export interface ListOrder {
|
|
117
|
-
|
|
118
|
-
|
|
117
|
+
field: ListOrderField;
|
|
118
|
+
desc: boolean;
|
|
119
119
|
}
|
|
120
|
-
export type ListOrderField = {UpdatedAt: null} | {Keys: null} | {CreatedAt: null};
|
|
120
|
+
export type ListOrderField = { UpdatedAt: null } | { Keys: null } | { CreatedAt: null };
|
|
121
121
|
export interface ListPaginate {
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
start_after: [] | [string];
|
|
123
|
+
limit: [] | [bigint];
|
|
124
124
|
}
|
|
125
125
|
export interface ListParams {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
126
|
+
order: [] | [ListOrder];
|
|
127
|
+
owner: [] | [Principal];
|
|
128
|
+
matcher: [] | [ListMatcher];
|
|
129
|
+
paginate: [] | [ListPaginate];
|
|
130
130
|
}
|
|
131
131
|
export interface ListResults {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
132
|
+
matches_pages: [] | [bigint];
|
|
133
|
+
matches_length: bigint;
|
|
134
|
+
items_page: [] | [bigint];
|
|
135
|
+
items: Array<[string, AssetNoContent]>;
|
|
136
|
+
items_length: bigint;
|
|
137
137
|
}
|
|
138
138
|
export interface ListResults_1 {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
139
|
+
matches_pages: [] | [bigint];
|
|
140
|
+
matches_length: bigint;
|
|
141
|
+
items_page: [] | [bigint];
|
|
142
|
+
items: Array<[string, Doc]>;
|
|
143
|
+
items_length: bigint;
|
|
144
144
|
}
|
|
145
|
-
export type Memory = {Heap: null} | {Stable: null};
|
|
145
|
+
export type Memory = { Heap: null } | { Stable: null };
|
|
146
146
|
export interface MemorySize {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
}
|
|
150
|
-
export type Permission =
|
|
147
|
+
stable: bigint;
|
|
148
|
+
heap: bigint;
|
|
149
|
+
}
|
|
150
|
+
export type Permission =
|
|
151
|
+
| { Controllers: null }
|
|
152
|
+
| { Private: null }
|
|
153
|
+
| { Public: null }
|
|
154
|
+
| { Managed: null };
|
|
151
155
|
export interface RateConfig {
|
|
152
|
-
|
|
153
|
-
|
|
156
|
+
max_tokens: bigint;
|
|
157
|
+
time_per_token_ns: bigint;
|
|
154
158
|
}
|
|
155
159
|
export interface Rule {
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
160
|
+
max_capacity: [] | [number];
|
|
161
|
+
memory: [] | [Memory];
|
|
162
|
+
updated_at: bigint;
|
|
163
|
+
max_size: [] | [bigint];
|
|
164
|
+
read: Permission;
|
|
165
|
+
created_at: bigint;
|
|
166
|
+
version: [] | [bigint];
|
|
167
|
+
mutable_permissions: [] | [boolean];
|
|
168
|
+
rate_config: [] | [RateConfig];
|
|
169
|
+
write: Permission;
|
|
170
|
+
max_changes_per_user: [] | [number];
|
|
167
171
|
}
|
|
168
172
|
export interface SetController {
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
173
|
+
metadata: Array<[string, string]>;
|
|
174
|
+
scope: ControllerScope;
|
|
175
|
+
expires_at: [] | [bigint];
|
|
172
176
|
}
|
|
173
177
|
export interface SetControllersArgs {
|
|
174
|
-
|
|
175
|
-
|
|
178
|
+
controller: SetController;
|
|
179
|
+
controllers: Array<Principal>;
|
|
176
180
|
}
|
|
177
181
|
export interface SetDoc {
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
182
|
+
data: Uint8Array | number[];
|
|
183
|
+
description: [] | [string];
|
|
184
|
+
version: [] | [bigint];
|
|
181
185
|
}
|
|
182
186
|
export interface SetRule {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
187
|
+
max_capacity: [] | [number];
|
|
188
|
+
memory: [] | [Memory];
|
|
189
|
+
max_size: [] | [bigint];
|
|
190
|
+
read: Permission;
|
|
191
|
+
version: [] | [bigint];
|
|
192
|
+
mutable_permissions: [] | [boolean];
|
|
193
|
+
rate_config: [] | [RateConfig];
|
|
194
|
+
write: Permission;
|
|
195
|
+
max_changes_per_user: [] | [number];
|
|
192
196
|
}
|
|
193
197
|
export interface StorageConfig {
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
}
|
|
201
|
-
export type StorageConfigIFrame = {Deny: null} | {AllowAny: null} | {SameOrigin: null};
|
|
202
|
-
export type StorageConfigRawAccess = {Deny: null} | {Allow: null};
|
|
198
|
+
iframe: [] | [StorageConfigIFrame];
|
|
199
|
+
rewrites: Array<[string, string]>;
|
|
200
|
+
headers: Array<[string, Array<[string, string]>]>;
|
|
201
|
+
max_memory_size: [] | [ConfigMaxMemorySize];
|
|
202
|
+
raw_access: [] | [StorageConfigRawAccess];
|
|
203
|
+
redirects: [] | [Array<[string, StorageConfigRedirect]>];
|
|
204
|
+
}
|
|
205
|
+
export type StorageConfigIFrame = { Deny: null } | { AllowAny: null } | { SameOrigin: null };
|
|
206
|
+
export type StorageConfigRawAccess = { Deny: null } | { Allow: null };
|
|
203
207
|
export interface StorageConfigRedirect {
|
|
204
|
-
|
|
205
|
-
|
|
208
|
+
status_code: number;
|
|
209
|
+
location: string;
|
|
206
210
|
}
|
|
207
211
|
export interface StreamingCallbackHttpResponse {
|
|
208
|
-
|
|
209
|
-
|
|
212
|
+
token: [] | [StreamingCallbackToken];
|
|
213
|
+
body: Uint8Array | number[];
|
|
210
214
|
}
|
|
211
215
|
export interface StreamingCallbackToken {
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
216
|
+
memory: Memory;
|
|
217
|
+
token: [] | [string];
|
|
218
|
+
sha256: [] | [Uint8Array | number[]];
|
|
219
|
+
headers: Array<[string, string]>;
|
|
220
|
+
index: bigint;
|
|
221
|
+
encoding_type: string;
|
|
222
|
+
full_path: string;
|
|
219
223
|
}
|
|
220
224
|
export type StreamingStrategy = {
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
+
Callback: {
|
|
226
|
+
token: StreamingCallbackToken;
|
|
227
|
+
callback: [Principal, string];
|
|
228
|
+
};
|
|
225
229
|
};
|
|
226
230
|
export type TimestampMatcher =
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
+
| { Equal: bigint }
|
|
232
|
+
| { Between: [bigint, bigint] }
|
|
233
|
+
| { GreaterThan: bigint }
|
|
234
|
+
| { LessThan: bigint };
|
|
231
235
|
export interface UploadChunk {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
236
|
+
content: Uint8Array | number[];
|
|
237
|
+
batch_id: bigint;
|
|
238
|
+
order_id: [] | [bigint];
|
|
235
239
|
}
|
|
236
240
|
export interface UploadChunkResult {
|
|
237
|
-
|
|
241
|
+
chunk_id: bigint;
|
|
238
242
|
}
|
|
239
243
|
export interface _SERVICE {
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
244
|
+
commit_asset_upload: ActorMethod<[CommitBatch], undefined>;
|
|
245
|
+
count_assets: ActorMethod<[string, ListParams], bigint>;
|
|
246
|
+
count_collection_assets: ActorMethod<[string], bigint>;
|
|
247
|
+
count_collection_docs: ActorMethod<[string], bigint>;
|
|
248
|
+
count_docs: ActorMethod<[string, ListParams], bigint>;
|
|
249
|
+
del_asset: ActorMethod<[string, string], undefined>;
|
|
250
|
+
del_assets: ActorMethod<[string], undefined>;
|
|
251
|
+
del_controllers: ActorMethod<[DeleteControllersArgs], Array<[Principal, Controller]>>;
|
|
252
|
+
del_custom_domain: ActorMethod<[string], undefined>;
|
|
253
|
+
del_doc: ActorMethod<[string, string, DelDoc], undefined>;
|
|
254
|
+
del_docs: ActorMethod<[string], undefined>;
|
|
255
|
+
del_filtered_assets: ActorMethod<[string, ListParams], undefined>;
|
|
256
|
+
del_filtered_docs: ActorMethod<[string, ListParams], undefined>;
|
|
257
|
+
del_many_assets: ActorMethod<[Array<[string, string]>], undefined>;
|
|
258
|
+
del_many_docs: ActorMethod<[Array<[string, string, DelDoc]>], undefined>;
|
|
259
|
+
del_rule: ActorMethod<[CollectionType, string, DelRule], undefined>;
|
|
260
|
+
deposit_cycles: ActorMethod<[DepositCyclesArgs], undefined>;
|
|
261
|
+
get_asset: ActorMethod<[string, string], [] | [AssetNoContent]>;
|
|
262
|
+
get_auth_config: ActorMethod<[], [] | [AuthenticationConfig]>;
|
|
263
|
+
get_config: ActorMethod<[], Config>;
|
|
264
|
+
get_db_config: ActorMethod<[], [] | [DbConfig]>;
|
|
265
|
+
get_doc: ActorMethod<[string, string], [] | [Doc]>;
|
|
266
|
+
get_many_assets: ActorMethod<[Array<[string, string]>], Array<[string, [] | [AssetNoContent]]>>;
|
|
267
|
+
get_many_docs: ActorMethod<[Array<[string, string]>], Array<[string, [] | [Doc]]>>;
|
|
268
|
+
get_rule: ActorMethod<[CollectionType, string], [] | [Rule]>;
|
|
269
|
+
get_storage_config: ActorMethod<[], StorageConfig>;
|
|
270
|
+
http_request: ActorMethod<[HttpRequest], HttpResponse>;
|
|
271
|
+
http_request_streaming_callback: ActorMethod<
|
|
272
|
+
[StreamingCallbackToken],
|
|
273
|
+
StreamingCallbackHttpResponse
|
|
274
|
+
>;
|
|
275
|
+
init_asset_upload: ActorMethod<[InitAssetKey], InitUploadResult>;
|
|
276
|
+
list_assets: ActorMethod<[string, ListParams], ListResults>;
|
|
277
|
+
list_controllers: ActorMethod<[], Array<[Principal, Controller]>>;
|
|
278
|
+
list_custom_domains: ActorMethod<[], Array<[string, CustomDomain]>>;
|
|
279
|
+
list_docs: ActorMethod<[string, ListParams], ListResults_1>;
|
|
280
|
+
list_rules: ActorMethod<[CollectionType], Array<[string, Rule]>>;
|
|
281
|
+
memory_size: ActorMethod<[], MemorySize>;
|
|
282
|
+
set_auth_config: ActorMethod<[AuthenticationConfig], undefined>;
|
|
283
|
+
set_controllers: ActorMethod<[SetControllersArgs], Array<[Principal, Controller]>>;
|
|
284
|
+
set_custom_domain: ActorMethod<[string, [] | [string]], undefined>;
|
|
285
|
+
set_db_config: ActorMethod<[DbConfig], undefined>;
|
|
286
|
+
set_doc: ActorMethod<[string, string, SetDoc], Doc>;
|
|
287
|
+
set_many_docs: ActorMethod<[Array<[string, string, SetDoc]>], Array<[string, Doc]>>;
|
|
288
|
+
set_rule: ActorMethod<[CollectionType, string, SetRule], Rule>;
|
|
289
|
+
set_storage_config: ActorMethod<[StorageConfig], undefined>;
|
|
290
|
+
upload_asset_chunk: ActorMethod<[UploadChunk], UploadChunkResult>;
|
|
291
|
+
version: ActorMethod<[], string>;
|
|
288
292
|
}
|
|
289
293
|
export declare const idlFactory: IDL.InterfaceFactory;
|
|
290
|
-
export declare const init: (args: {IDL: typeof IDL}) => IDL.Type[];
|
|
294
|
+
export declare const init: (args: { IDL: typeof IDL }) => IDL.Type[];
|