@equinor/fusion-framework 7.4.0 → 7.4.1
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.
- package/CHANGELOG.md +16 -0
- package/dist/esm/FrameworkConfigurator.js +5 -0
- package/dist/esm/FrameworkConfigurator.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/FrameworkConfigurator.d.ts +5 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +9 -9
- package/src/FrameworkConfigurator.ts +6 -0
- package/src/version.ts +1 -1
|
@@ -11,6 +11,11 @@ import type { AuthClientConfig } from '@equinor/fusion-framework-module-msal/v2'
|
|
|
11
11
|
* @template TRef - usually undefined, optional references
|
|
12
12
|
*/
|
|
13
13
|
export declare class FrameworkConfigurator<TModules extends Array<AnyModule> = [], TRef = any> extends ModulesConfigurator<FusionModules<TModules>, TRef> {
|
|
14
|
+
/**
|
|
15
|
+
* The class name used for event naming. This static property ensures
|
|
16
|
+
* the name is preserved through compilation and minification.
|
|
17
|
+
*/
|
|
18
|
+
static readonly className: string;
|
|
14
19
|
/**
|
|
15
20
|
* Creates a new FrameworkConfigurator instance with default telemetry configuration.
|
|
16
21
|
*
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "7.4.
|
|
1
|
+
export declare const version = "7.4.1";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"rxjs": "^7.8.1",
|
|
35
|
-
"@equinor/fusion-framework-module": "^5.0.
|
|
36
|
-
"@equinor/fusion-framework-module-context": "^7.0.
|
|
37
|
-
"@equinor/fusion-framework-module-
|
|
38
|
-
"@equinor/fusion-framework-module-
|
|
39
|
-
"@equinor/fusion-framework-module-
|
|
40
|
-
"@equinor/fusion-framework-module-
|
|
41
|
-
"@equinor/fusion-framework-module-
|
|
42
|
-
"@equinor/fusion-framework-module-telemetry": "^4.
|
|
35
|
+
"@equinor/fusion-framework-module": "^5.0.4",
|
|
36
|
+
"@equinor/fusion-framework-module-context": "^7.0.2",
|
|
37
|
+
"@equinor/fusion-framework-module-http": "^7.0.3",
|
|
38
|
+
"@equinor/fusion-framework-module-service-discovery": "^9.0.3",
|
|
39
|
+
"@equinor/fusion-framework-module-services": "^7.1.3",
|
|
40
|
+
"@equinor/fusion-framework-module-msal": "^5.1.1",
|
|
41
|
+
"@equinor/fusion-framework-module-event": "^4.4.0",
|
|
42
|
+
"@equinor/fusion-framework-module-telemetry": "^4.3.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"typescript": "^5.8.2",
|
|
@@ -37,6 +37,12 @@ export class FrameworkConfigurator<
|
|
|
37
37
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
38
38
|
TRef = any,
|
|
39
39
|
> extends ModulesConfigurator<FusionModules<TModules>, TRef> {
|
|
40
|
+
/**
|
|
41
|
+
* The class name used for event naming. This static property ensures
|
|
42
|
+
* the name is preserved through compilation and minification.
|
|
43
|
+
*/
|
|
44
|
+
static readonly className: string = 'FrameworkConfigurator';
|
|
45
|
+
|
|
40
46
|
/**
|
|
41
47
|
* Creates a new FrameworkConfigurator instance with default telemetry configuration.
|
|
42
48
|
*
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '7.4.
|
|
2
|
+
export const version = '7.4.1';
|