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

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.
@@ -9,3 +9,4 @@ export * from './types/customdomain.types';
9
9
  export * from './types/ic.types';
10
10
  export * from './types/releases.types';
11
11
  export * from './types/rules.types';
12
+ export * from './types/satellite.types';
@@ -1,10 +1,10 @@
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';
5
4
  import type { Config } from '../types/config.types';
6
5
  import type { CustomDomain } from '../types/customdomain.types';
7
6
  import type { Rule, RulesType } from '../types/rules.types';
7
+ import { SatelliteBuild } from '../types/satellite.types';
8
8
  export declare const setConfig: ({ config: { storage: { headers: configHeaders, rewrites: configRewrites, redirects: configRedirects, iframe: configIFrame } }, satellite }: {
9
9
  config: Config;
10
10
  satellite: SatelliteParameters;
@@ -26,7 +26,7 @@ export declare const satelliteVersionBuild: (params: {
26
26
  }) => Promise<string>;
27
27
  export declare const satelliteWasmMetadataBuild: ({ satellite: { satelliteId, ...rest } }: {
28
28
  satellite: SatelliteParameters;
29
- }) => Promise<CanisterStatus.Status | undefined>;
29
+ }) => Promise<SatelliteBuild | 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 SatelliteBuild = "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-01-31",
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",