@junobuild/admin 0.0.44-next-2024-01-30 → 0.0.44-next-2024-02-01

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.
@@ -2,10 +2,11 @@ export * from './services/mission-control.services';
2
2
  export * from './services/orbiter.services';
3
3
  export * from './services/releases.services';
4
4
  export * from './services/satellite.services';
5
- export * from './types/actor.types';
6
- export * from './types/config.types';
7
- export * from './types/controllers.types';
8
- export * from './types/customdomain.types';
9
- export * from './types/ic.types';
10
- export * from './types/releases.types';
11
- export * from './types/rules.types';
5
+ export type * from './types/actor.types';
6
+ export type * from './types/build.types';
7
+ export type * from './types/config.types';
8
+ export type * from './types/controllers.types';
9
+ export type * from './types/customdomain.types';
10
+ export type * from './types/ic.types';
11
+ export type * from './types/releases.types';
12
+ export type * from './types/rules.types';
@@ -1,7 +1,7 @@
1
- import type { CanisterStatus } from '@dfinity/agent';
2
1
  import { Principal } from '@dfinity/principal';
3
2
  import type { Controller, MemorySize, SetControllersArgs } from '../../declarations/satellite/satellite.did';
4
3
  import type { SatelliteParameters } from '../types/actor.types';
4
+ import type { BuildType } from '../types/build.types';
5
5
  import type { Config } from '../types/config.types';
6
6
  import type { CustomDomain } from '../types/customdomain.types';
7
7
  import type { Rule, RulesType } from '../types/rules.types';
@@ -24,9 +24,9 @@ export declare const satelliteVersion: (params: {
24
24
  export declare const satelliteVersionBuild: (params: {
25
25
  satellite: SatelliteParameters;
26
26
  }) => Promise<string>;
27
- export declare const satelliteWasmMetadataBuild: ({ satellite: { satelliteId, ...rest } }: {
27
+ export declare const satelliteBuildType: ({ satellite: { satelliteId, ...rest } }: {
28
28
  satellite: SatelliteParameters;
29
- }) => Promise<CanisterStatus.Status | undefined>;
29
+ }) => Promise<BuildType | undefined>;
30
30
  export declare const upgradeSatellite: ({ satellite, wasm_module, deprecated, deprecatedNoScope, reset }: {
31
31
  satellite: SatelliteParameters;
32
32
  wasm_module: Uint8Array;
@@ -0,0 +1 @@
1
+ export type BuildType = 'stock' | 'extended';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/admin",
3
- "version": "0.0.44-next-2024-01-30",
3
+ "version": "0.0.44-next-2024-02-01",
4
4
  "description": "A library for interfacing with admin features of Juno",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",