@junobuild/admin 0.0.38-next-2023-12-22 → 0.0.38-next-2023-12-22.1
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/dist/browser/index.js +7 -7
- package/dist/browser/index.js.map +3 -3
- package/dist/node/index.mjs +6 -6
- package/dist/node/index.mjs.map +3 -3
- package/dist/types/api/orbiter.api.d.ts +4 -1
- package/dist/types/api/satellite.api.d.ts +4 -1
- package/dist/types/services/orbiter.services.d.ts +4 -0
- package/dist/types/services/satellite.services.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Principal } from '@dfinity/principal';
|
|
2
|
-
import type { Controller } from '../../declarations/orbiter/orbiter.did';
|
|
2
|
+
import type { Controller, MemorySize } from '../../declarations/orbiter/orbiter.did';
|
|
3
3
|
import type { OrbiterParameters } from '../types/actor.types';
|
|
4
4
|
export declare const version: ({ orbiter }: {
|
|
5
5
|
orbiter: OrbiterParameters;
|
|
@@ -7,3 +7,6 @@ export declare const version: ({ orbiter }: {
|
|
|
7
7
|
export declare const listControllers: ({ orbiter }: {
|
|
8
8
|
orbiter: OrbiterParameters;
|
|
9
9
|
}) => Promise<[Principal, Controller][]>;
|
|
10
|
+
export declare const memorySize: ({ orbiter }: {
|
|
11
|
+
orbiter: OrbiterParameters;
|
|
12
|
+
}) => Promise<MemorySize>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Principal } from '@dfinity/principal';
|
|
2
|
-
import type { Config, Controller, CustomDomain, Rule, RulesType, SetRule } from '../../declarations/satellite/satellite.did';
|
|
2
|
+
import type { Config, Controller, CustomDomain, MemorySize, Rule, RulesType, SetRule } from '../../declarations/satellite/satellite.did';
|
|
3
3
|
import type { SatelliteParameters } from '../types/actor.types';
|
|
4
4
|
export declare const setConfig: ({ config, satellite }: {
|
|
5
5
|
config: Config;
|
|
@@ -35,3 +35,6 @@ export declare const setCustomDomain: ({ satellite, domainName, boundaryNodesId
|
|
|
35
35
|
domainName: string;
|
|
36
36
|
boundaryNodesId: string | undefined;
|
|
37
37
|
}) => Promise<void>;
|
|
38
|
+
export declare const memorySize: ({ satellite }: {
|
|
39
|
+
satellite: SatelliteParameters;
|
|
40
|
+
}) => Promise<MemorySize>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MemorySize } from '../../declarations/orbiter/orbiter.did';
|
|
1
2
|
import type { OrbiterParameters } from '../types/actor.types';
|
|
2
3
|
export declare const orbiterVersion: (params: {
|
|
3
4
|
orbiter: OrbiterParameters;
|
|
@@ -7,3 +8,6 @@ export declare const upgradeOrbiter: ({ orbiter, wasm_module, reset }: {
|
|
|
7
8
|
wasm_module: Uint8Array;
|
|
8
9
|
reset?: boolean | undefined;
|
|
9
10
|
}) => Promise<void>;
|
|
11
|
+
export declare const orbiterMemorySize: (params: {
|
|
12
|
+
orbiter: OrbiterParameters;
|
|
13
|
+
}) => Promise<MemorySize>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MemorySize } from '../../declarations/satellite/satellite.did';
|
|
1
2
|
import type { SatelliteParameters } from '../types/actor.types';
|
|
2
3
|
import type { Config } from '../types/config.types';
|
|
3
4
|
import type { CustomDomain } from '../types/customdomain.types';
|
|
@@ -32,3 +33,6 @@ export declare const setCustomDomains: ({ satellite, domains }: {
|
|
|
32
33
|
satellite: SatelliteParameters;
|
|
33
34
|
domains: CustomDomain[];
|
|
34
35
|
}) => Promise<void[]>;
|
|
36
|
+
export declare const satelliteMemorySize: (params: {
|
|
37
|
+
satellite: SatelliteParameters;
|
|
38
|
+
}) => Promise<MemorySize>;
|
package/package.json
CHANGED