@equinor/fusion-framework-cli 11.0.0-next.13 → 11.0.0-next.15

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.
@@ -30,7 +30,7 @@ export type CreateDevServerOptions = {
30
30
  template?: Partial<FusionTemplateEnv>;
31
31
  portal?: {
32
32
  manifest: PortalManifest;
33
- config: PortalConfig;
33
+ config?: PortalConfig;
34
34
  };
35
35
  app?: {
36
36
  manifest: AppManifest;
@@ -1,4 +1,4 @@
1
- import type { RuntimeEnv } from '../types';
1
+ import type { RecursivePartial, RuntimeEnv } from '../types';
2
2
  import type { PortalManifest } from './portal-manifest.js';
3
3
  /**
4
4
  * A function type for generating or modifying a portal manifest based on the runtime environment and provided arguments.
@@ -10,7 +10,7 @@ import type { PortalManifest } from './portal-manifest.js';
10
10
  */
11
11
  export type PortalManifestFn<T extends Partial<PortalManifest>> = (env: RuntimeEnv, args: {
12
12
  base: T;
13
- }) => T | Promise<T | void> | T | void;
13
+ }) => Promise<RecursivePartial<T> | void> | RecursivePartial<T> | void;
14
14
  /**
15
15
  * Represents a value that can either be a partial portal manifest object or a function returning such an object.
16
16
  *
@@ -1 +1 @@
1
- export declare const version = "11.0.0-next.13";
1
+ export declare const version = "11.0.0-next.15";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-cli",
3
- "version": "11.0.0-next.13",
3
+ "version": "11.0.0-next.15",
4
4
  "homepage": "https://github.com/equinor/fusion-framework",
5
5
  "keywords": [
6
6
  "Fusion",
@@ -48,6 +48,25 @@
48
48
  "import": "./bin/build/bin.js"
49
49
  }
50
50
  },
51
+ "typesVersions": {
52
+ "*": {
53
+ ".": [
54
+ "dist/types/lib/index.d.ts"
55
+ ],
56
+ "app": [
57
+ "dist/types/lib/app/index.d.ts"
58
+ ],
59
+ "portal": [
60
+ "dist/types/lib/portal/index.d.ts"
61
+ ],
62
+ "dev-server": [
63
+ "dist/types/lib/dev-server.d.ts"
64
+ ],
65
+ "bin": [
66
+ "dist/types/bin/index.d.ts"
67
+ ]
68
+ }
69
+ },
51
70
  "repository": {
52
71
  "type": "git",
53
72
  "url": "git+https://github.com/equinor/fusion-framework.git",
@@ -62,9 +81,9 @@
62
81
  "chalk": "^5.3.0",
63
82
  "read-package-up": "^11.0.0",
64
83
  "zod": "^3.25.20",
65
- "@equinor/fusion-framework-dev-server": "^1.0.0-next.8",
66
- "@equinor/fusion-framework-dev-portal": "^1.0.0-next.2",
67
- "@equinor/fusion-imports": "^1.1.1-next.0"
84
+ "@equinor/fusion-framework-dev-portal": "^1.0.0-next.3",
85
+ "@equinor/fusion-imports": "^1.1.1-next.1",
86
+ "@equinor/fusion-framework-dev-server": "^1.0.0-next.10"
68
87
  },
69
88
  "devDependencies": {
70
89
  "ajv": "^8.17.1",
@@ -82,11 +101,11 @@
82
101
  "@types/node": "^20.11.14",
83
102
  "rxjs": "^7.8.1",
84
103
  "typescript": "^5.8.2",
85
- "@equinor/fusion-framework-module": "^4.4.3-next.1",
86
- "@equinor/fusion-framework-module-http": "^6.3.3-next.2",
87
- "@equinor/fusion-framework-module-msal-node": "^0.1.1-next.2",
88
- "@equinor/fusion-framework-module-service-discovery": "^8.0.15-next.2",
89
- "@equinor/fusion-framework-module-app": "^6.1.13"
104
+ "@equinor/fusion-framework-module": "^4.4.3-next.2",
105
+ "@equinor/fusion-framework-module-app": "^6.1.17-next.0",
106
+ "@equinor/fusion-framework-module-http": "^6.3.4-next.0",
107
+ "@equinor/fusion-framework-module-msal-node": "^0.1.1-next.3",
108
+ "@equinor/fusion-framework-module-service-discovery": "^8.0.18-next.0"
90
109
  },
91
110
  "peerDependenciesMeta": {
92
111
  "typescript": {