@equinor/fusion-framework-module-app 7.2.2 → 7.3.0

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.
@@ -50,4 +50,10 @@ export declare class AppConfig<TEnvironment extends ConfigEnvironment = ConfigEn
50
50
  * @returns The configuration endpoint if found, otherwise `undefined`.
51
51
  */
52
52
  getEndpoint(key: string): ConfigEndPoint | undefined;
53
+ /**
54
+ * Retrieve all configuration endpoints associated with the app.
55
+ *
56
+ * @returns The configuration endpoints found.
57
+ */
58
+ getEndpoints(): Record<string, ConfigEndPoint>;
53
59
  }
@@ -1 +1 @@
1
- export declare const version = "7.2.2";
1
+ export declare const version = "7.3.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-module-app",
3
- "version": "7.2.2",
3
+ "version": "7.3.0",
4
4
  "description": "",
5
5
  "main": "dist/esm/index.js",
6
6
  "exports": {
@@ -61,16 +61,16 @@
61
61
  "rxjs": "^7.8.1",
62
62
  "uuid": "^13.0.0",
63
63
  "zod": "^4.1.8",
64
- "@equinor/fusion-query": "^6.0.3",
65
- "@equinor/fusion-observable": "^8.5.7"
64
+ "@equinor/fusion-observable": "^8.5.7",
65
+ "@equinor/fusion-query": "^6.0.3"
66
66
  },
67
67
  "devDependencies": {
68
68
  "typescript": "^5.8.2",
69
- "@equinor/fusion-framework-module": "^5.0.5",
70
- "@equinor/fusion-framework-module-event": "^4.4.0",
69
+ "@equinor/fusion-framework-module-event": "^4.4.1",
71
70
  "@equinor/fusion-framework-module-http": "^7.0.6",
72
- "@equinor/fusion-framework-module-msal": "^6.0.5",
73
- "@equinor/fusion-framework-module-service-discovery": "^9.0.5"
71
+ "@equinor/fusion-framework-module": "^5.0.5",
72
+ "@equinor/fusion-framework-module-service-discovery": "^9.0.5",
73
+ "@equinor/fusion-framework-module-msal": "^6.0.5"
74
74
  },
75
75
  "scripts": {
76
76
  "build": "tsc -b"
package/src/AppConfig.ts CHANGED
@@ -82,4 +82,13 @@ export class AppConfig<TEnvironment extends ConfigEnvironment = ConfigEnvironmen
82
82
  getEndpoint(key: string): ConfigEndPoint | undefined {
83
83
  return this.#endpoints[key];
84
84
  }
85
+
86
+ /**
87
+ * Retrieve all configuration endpoints associated with the app.
88
+ *
89
+ * @returns The configuration endpoints found.
90
+ */
91
+ getEndpoints(): Record<string, ConfigEndPoint> {
92
+ return this.#endpoints;
93
+ }
85
94
  }
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '7.2.2';
2
+ export const version = '7.3.0';