@junobuild/core 0.0.46 → 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.
- package/declarations/satellite/satellite.did.d.ts +3 -0
- package/declarations/satellite/satellite.factory.did.js +2 -0
- package/declarations/satellite/satellite.factory.did.mjs +2 -0
- package/dist/browser/canisterStatus-XBZ7P3SA.js +2 -0
- package/dist/browser/chunk-DAMIJKS3.js +43 -0
- package/dist/browser/chunk-DAMIJKS3.js.map +7 -0
- package/dist/browser/index.js +23 -27
- package/dist/browser/index.js.map +4 -4
- package/dist/declarations/satellite/satellite.did.d.ts +3 -0
- package/dist/declarations/satellite/satellite.factory.did.js +2 -0
- package/dist/declarations/satellite/satellite.factory.did.mjs +2 -0
- package/dist/node/index.mjs +49 -38
- package/dist/node/index.mjs.map +4 -4
- package/dist/types/api/actor.api.d.ts +1 -1
- package/dist/types/constants/auth.constants.d.ts +1 -0
- package/dist/types/providers/auth.providers.d.ts +10 -20
- package/dist/types/services/storage.services.d.ts +1 -1
- package/dist/types/types/auth.types.d.ts +9 -0
- package/dist/types/utils/env.utils.d.ts +4 -1
- package/dist/workers/auth.worker.js +14 -9
- package/dist/workers/auth.worker.js.map +4 -4
- package/package.json +5 -5
- package/dist/browser/canisterStatus-NVVVKUKM.js +0 -2
- package/dist/browser/chunk-572NAHJJ.js +0 -28
- package/dist/browser/chunk-572NAHJJ.js.map +0 -7
- /package/dist/browser/{canisterStatus-NVVVKUKM.js.map → canisterStatus-XBZ7P3SA.js.map} +0 -0
|
@@ -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),
|