@junobuild/admin 0.6.7-next-2025-07-17.1 → 0.6.7-next-2025-07-17.3

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.
@@ -4,7 +4,7 @@ export * from './helpers/crypto.helpers';
4
4
  export * from './helpers/package.helpers';
5
5
  export * from './helpers/version.helpers';
6
6
  export * from './helpers/wasm.helpers';
7
- export type * from './schemas/build';
7
+ export * from './schemas/build';
8
8
  export * from './schemas/releases';
9
9
  export * from './services/mission-control.controllers.services';
10
10
  export * from './services/mission-control.upgrade.services';
@@ -2,7 +2,7 @@ import * as z from 'zod/v4';
2
2
  /**
3
3
  * Represents the type of build, stock or extended.
4
4
  */
5
- export declare const BuildSchema: z.ZodEnum<{
5
+ export declare const BuildTypeSchema: z.ZodEnum<{
6
6
  stock: "stock";
7
7
  extended: "extended";
8
8
  }>;
@@ -10,4 +10,4 @@ export declare const BuildSchema: z.ZodEnum<{
10
10
  * Represents the type of build.
11
11
  * @typedef {'stock' | 'extended'} BuildType
12
12
  */
13
- export type BuildType = z.infer<typeof BuildSchema>;
13
+ export type BuildType = z.infer<typeof BuildTypeSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/admin",
3
- "version": "0.6.7-next-2025-07-17.1",
3
+ "version": "0.6.7-next-2025-07-17.3",
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",