@junobuild/core 0.0.47 → 0.0.48

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.
@@ -124,6 +124,7 @@ export interface MemorySize {
124
124
  }
125
125
  export type Permission = {Controllers: null} | {Private: null} | {Public: null} | {Managed: null};
126
126
  export interface Rule {
127
+ max_capacity: [] | [number];
127
128
  memory: [] | [Memory];
128
129
  updated_at: bigint;
129
130
  max_size: [] | [bigint];
@@ -148,6 +149,7 @@ export interface SetDoc {
148
149
  description: [] | [string];
149
150
  }
150
151
  export interface SetRule {
152
+ max_capacity: [] | [number];
151
153
  memory: [] | [Memory];
152
154
  updated_at: [] | [bigint];
153
155
  max_size: [] | [bigint];
@@ -235,3 +237,4 @@ export interface _SERVICE {
235
237
  version: ActorMethod<[], string>;
236
238
  }
237
239
  export declare const idlFactory: IDL.InterfaceFactory;
240
+ export declare const init: (args: {IDL: typeof IDL}) => IDL.Type[];
@@ -156,6 +156,7 @@ export const idlFactory = ({IDL}) => {
156
156
  Managed: IDL.Null
157
157
  });
158
158
  const Rule = IDL.Record({
159
+ max_capacity: IDL.Opt(IDL.Nat32),
159
160
  memory: IDL.Opt(Memory),
160
161
  updated_at: IDL.Nat64,
161
162
  max_size: IDL.Opt(IDL.Nat),
@@ -180,6 +181,7 @@ export const idlFactory = ({IDL}) => {
180
181
  description: IDL.Opt(IDL.Text)
181
182
  });
182
183
  const SetRule = IDL.Record({
184
+ max_capacity: IDL.Opt(IDL.Nat32),
183
185
  memory: IDL.Opt(Memory),
184
186
  updated_at: IDL.Opt(IDL.Nat64),
185
187
  max_size: IDL.Opt(IDL.Nat),
@@ -156,6 +156,7 @@ export const idlFactory = ({IDL}) => {
156
156
  Managed: IDL.Null
157
157
  });
158
158
  const Rule = IDL.Record({
159
+ max_capacity: IDL.Opt(IDL.Nat32),
159
160
  memory: IDL.Opt(Memory),
160
161
  updated_at: IDL.Nat64,
161
162
  max_size: IDL.Opt(IDL.Nat),
@@ -180,6 +181,7 @@ export const idlFactory = ({IDL}) => {
180
181
  description: IDL.Opt(IDL.Text)
181
182
  });
182
183
  const SetRule = IDL.Record({
184
+ max_capacity: IDL.Opt(IDL.Nat32),
183
185
  memory: IDL.Opt(Memory),
184
186
  updated_at: IDL.Opt(IDL.Nat64),
185
187
  max_size: IDL.Opt(IDL.Nat),