@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.
@@ -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],