@junobuild/core 0.0.37 → 0.0.38-next-2023-12-08
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/declarations/satellite/satellite.did.d.ts +1 -0
- package/declarations/satellite/satellite.factory.did.js +5 -0
- package/declarations/satellite/satellite.factory.did.mjs +5 -0
- package/dist/browser/canisterStatus-GGCM43M3.js +2 -0
- package/dist/browser/{chunk-N3SFIG7N.js → chunk-TDCTL77T.js} +2 -2
- package/dist/browser/index.js +9 -9
- package/dist/browser/index.js.map +4 -4
- package/dist/declarations/satellite/satellite.did.d.ts +1 -0
- package/dist/declarations/satellite/satellite.factory.did.js +5 -0
- package/dist/declarations/satellite/satellite.factory.did.mjs +5 -0
- package/dist/node/index.mjs +30 -30
- package/dist/node/index.mjs.map +4 -4
- package/dist/types/api/doc.api.d.ts +6 -0
- package/dist/types/services/doc.services.d.ts +6 -0
- package/dist/types/types/post-message.d.ts +8 -2
- package/dist/types/utils/doc.utils.d.ts +2 -2
- package/dist/workers/auth.worker.js +4 -4
- package/dist/workers/auth.worker.js.map +3 -3
- package/package.json +3 -4
- package/dist/browser/canisterStatus-N5J2XGIM.js +0 -2
- package/dist/workers/auth.worker.js.gz +0 -0
- /package/dist/browser/{canisterStatus-N5J2XGIM.js.map → canisterStatus-GGCM43M3.js.map} +0 -0
- /package/dist/browser/{chunk-N3SFIG7N.js.map → chunk-TDCTL77T.js.map} +0 -0
|
@@ -202,6 +202,7 @@ export interface _SERVICE {
|
|
|
202
202
|
deposit_cycles: ActorMethod<[DepositCyclesArgs], undefined>;
|
|
203
203
|
get_config: ActorMethod<[], Config>;
|
|
204
204
|
get_doc: ActorMethod<[string, string], [] | [Doc]>;
|
|
205
|
+
get_many_docs: ActorMethod<[Array<[string, string]>], Array<[string, [] | [Doc]]>>;
|
|
205
206
|
http_request: ActorMethod<[HttpRequest], HttpResponse>;
|
|
206
207
|
http_request_streaming_callback: ActorMethod<
|
|
207
208
|
[StreamingCallbackToken],
|
|
@@ -210,6 +210,11 @@ export const idlFactory = ({IDL}) => {
|
|
|
210
210
|
deposit_cycles: IDL.Func([DepositCyclesArgs], [], []),
|
|
211
211
|
get_config: IDL.Func([], [Config], []),
|
|
212
212
|
get_doc: IDL.Func([IDL.Text, IDL.Text], [IDL.Opt(Doc)], ['query']),
|
|
213
|
+
get_many_docs: IDL.Func(
|
|
214
|
+
[IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text))],
|
|
215
|
+
[IDL.Vec(IDL.Tuple(IDL.Text, IDL.Opt(Doc)))],
|
|
216
|
+
['query']
|
|
217
|
+
),
|
|
213
218
|
http_request: IDL.Func([HttpRequest], [HttpResponse], ['query']),
|
|
214
219
|
http_request_streaming_callback: IDL.Func(
|
|
215
220
|
[StreamingCallbackToken],
|
|
@@ -210,6 +210,11 @@ export const idlFactory = ({IDL}) => {
|
|
|
210
210
|
deposit_cycles: IDL.Func([DepositCyclesArgs], [], []),
|
|
211
211
|
get_config: IDL.Func([], [Config], []),
|
|
212
212
|
get_doc: IDL.Func([IDL.Text, IDL.Text], [IDL.Opt(Doc)], ['query']),
|
|
213
|
+
get_many_docs: IDL.Func(
|
|
214
|
+
[IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text))],
|
|
215
|
+
[IDL.Vec(IDL.Tuple(IDL.Text, IDL.Opt(Doc)))],
|
|
216
|
+
['query']
|
|
217
|
+
),
|
|
213
218
|
http_request: IDL.Func([HttpRequest], [HttpResponse], ['query']),
|
|
214
219
|
http_request_streaming_callback: IDL.Func(
|
|
215
220
|
[StreamingCallbackToken],
|