@junobuild/core-standalone 0.1.12 → 0.1.13

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.
@@ -143,10 +143,6 @@ export interface ListResults_1 {
143
143
  items_length: bigint;
144
144
  }
145
145
  export type Memory = {Heap: null} | {Stable: null};
146
- export interface MemorySize {
147
- stable: bigint;
148
- heap: bigint;
149
- }
150
146
  export type Permission = {Controllers: null} | {Private: null} | {Public: null} | {Managed: null};
151
147
  export interface RateConfig {
152
148
  max_tokens: bigint;
@@ -274,7 +270,6 @@ export interface _SERVICE {
274
270
  list_custom_domains: ActorMethod<[], Array<[string, CustomDomain]>>;
275
271
  list_docs: ActorMethod<[string, ListParams], ListResults_1>;
276
272
  list_rules: ActorMethod<[CollectionType], Array<[string, Rule]>>;
277
- memory_size: ActorMethod<[], MemorySize>;
278
273
  set_auth_config: ActorMethod<[AuthenticationConfig], undefined>;
279
274
  set_controllers: ActorMethod<[SetControllersArgs], Array<[Principal, Controller]>>;
280
275
  set_custom_domain: ActorMethod<[string, [] | [string]], undefined>;
@@ -208,7 +208,6 @@ export const idlFactory = ({IDL}) => {
208
208
  items: IDL.Vec(IDL.Tuple(IDL.Text, Doc)),
209
209
  items_length: IDL.Nat64
210
210
  });
211
- const MemorySize = IDL.Record({stable: IDL.Nat64, heap: IDL.Nat64});
212
211
  const SetController = IDL.Record({
213
212
  metadata: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text)),
214
213
  scope: ControllerScope,
@@ -291,7 +290,6 @@ export const idlFactory = ({IDL}) => {
291
290
  list_custom_domains: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Text, CustomDomain))], []),
292
291
  list_docs: IDL.Func([IDL.Text, ListParams], [ListResults_1], []),
293
292
  list_rules: IDL.Func([CollectionType], [IDL.Vec(IDL.Tuple(IDL.Text, Rule))], []),
294
- memory_size: IDL.Func([], [MemorySize], []),
295
293
  set_auth_config: IDL.Func([AuthenticationConfig], [], []),
296
294
  set_controllers: IDL.Func(
297
295
  [SetControllersArgs],
@@ -208,7 +208,6 @@ export const idlFactory = ({IDL}) => {
208
208
  items: IDL.Vec(IDL.Tuple(IDL.Text, Doc)),
209
209
  items_length: IDL.Nat64
210
210
  });
211
- const MemorySize = IDL.Record({stable: IDL.Nat64, heap: IDL.Nat64});
212
211
  const SetController = IDL.Record({
213
212
  metadata: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text)),
214
213
  scope: ControllerScope,
@@ -291,7 +290,6 @@ export const idlFactory = ({IDL}) => {
291
290
  list_custom_domains: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Text, CustomDomain))], ['query']),
292
291
  list_docs: IDL.Func([IDL.Text, ListParams], [ListResults_1], ['query']),
293
292
  list_rules: IDL.Func([CollectionType], [IDL.Vec(IDL.Tuple(IDL.Text, Rule))], ['query']),
294
- memory_size: IDL.Func([], [MemorySize], ['query']),
295
293
  set_auth_config: IDL.Func([AuthenticationConfig], [], []),
296
294
  set_controllers: IDL.Func(
297
295
  [SetControllersArgs],
@@ -208,7 +208,6 @@ export const idlFactory = ({IDL}) => {
208
208
  items: IDL.Vec(IDL.Tuple(IDL.Text, Doc)),
209
209
  items_length: IDL.Nat64
210
210
  });
211
- const MemorySize = IDL.Record({stable: IDL.Nat64, heap: IDL.Nat64});
212
211
  const SetController = IDL.Record({
213
212
  metadata: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text)),
214
213
  scope: ControllerScope,
@@ -291,7 +290,6 @@ export const idlFactory = ({IDL}) => {
291
290
  list_custom_domains: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Text, CustomDomain))], ['query']),
292
291
  list_docs: IDL.Func([IDL.Text, ListParams], [ListResults_1], ['query']),
293
292
  list_rules: IDL.Func([CollectionType], [IDL.Vec(IDL.Tuple(IDL.Text, Rule))], ['query']),
294
- memory_size: IDL.Func([], [MemorySize], ['query']),
295
293
  set_auth_config: IDL.Func([AuthenticationConfig], [], []),
296
294
  set_controllers: IDL.Func(
297
295
  [SetControllersArgs],
@@ -143,10 +143,6 @@ export interface ListResults_1 {
143
143
  items_length: bigint;
144
144
  }
145
145
  export type Memory = {Heap: null} | {Stable: null};
146
- export interface MemorySize {
147
- stable: bigint;
148
- heap: bigint;
149
- }
150
146
  export type Permission = {Controllers: null} | {Private: null} | {Public: null} | {Managed: null};
151
147
  export interface RateConfig {
152
148
  max_tokens: bigint;
@@ -274,7 +270,6 @@ export interface _SERVICE {
274
270
  list_custom_domains: ActorMethod<[], Array<[string, CustomDomain]>>;
275
271
  list_docs: ActorMethod<[string, ListParams], ListResults_1>;
276
272
  list_rules: ActorMethod<[CollectionType], Array<[string, Rule]>>;
277
- memory_size: ActorMethod<[], MemorySize>;
278
273
  set_auth_config: ActorMethod<[AuthenticationConfig], undefined>;
279
274
  set_controllers: ActorMethod<[SetControllersArgs], Array<[Principal, Controller]>>;
280
275
  set_custom_domain: ActorMethod<[string, [] | [string]], undefined>;
@@ -208,7 +208,6 @@ export const idlFactory = ({IDL}) => {
208
208
  items: IDL.Vec(IDL.Tuple(IDL.Text, Doc)),
209
209
  items_length: IDL.Nat64
210
210
  });
211
- const MemorySize = IDL.Record({stable: IDL.Nat64, heap: IDL.Nat64});
212
211
  const SetController = IDL.Record({
213
212
  metadata: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text)),
214
213
  scope: ControllerScope,
@@ -291,7 +290,6 @@ export const idlFactory = ({IDL}) => {
291
290
  list_custom_domains: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Text, CustomDomain))], []),
292
291
  list_docs: IDL.Func([IDL.Text, ListParams], [ListResults_1], []),
293
292
  list_rules: IDL.Func([CollectionType], [IDL.Vec(IDL.Tuple(IDL.Text, Rule))], []),
294
- memory_size: IDL.Func([], [MemorySize], []),
295
293
  set_auth_config: IDL.Func([AuthenticationConfig], [], []),
296
294
  set_controllers: IDL.Func(
297
295
  [SetControllersArgs],
@@ -208,7 +208,6 @@ export const idlFactory = ({IDL}) => {
208
208
  items: IDL.Vec(IDL.Tuple(IDL.Text, Doc)),
209
209
  items_length: IDL.Nat64
210
210
  });
211
- const MemorySize = IDL.Record({stable: IDL.Nat64, heap: IDL.Nat64});
212
211
  const SetController = IDL.Record({
213
212
  metadata: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Text)),
214
213
  scope: ControllerScope,
@@ -291,7 +290,6 @@ export const idlFactory = ({IDL}) => {
291
290
  list_custom_domains: IDL.Func([], [IDL.Vec(IDL.Tuple(IDL.Text, CustomDomain))], ['query']),
292
291
  list_docs: IDL.Func([IDL.Text, ListParams], [ListResults_1], ['query']),
293
292
  list_rules: IDL.Func([CollectionType], [IDL.Vec(IDL.Tuple(IDL.Text, Rule))], ['query']),
294
- memory_size: IDL.Func([], [MemorySize], ['query']),
295
293
  set_auth_config: IDL.Func([AuthenticationConfig], [], []),
296
294
  set_controllers: IDL.Func(
297
295
  [SetControllersArgs],