@equinor/fusion-framework-vite-plugin-spa 3.0.0-next.0 → 3.0.0-next.2

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 CHANGED
@@ -1,5 +1,31 @@
1
1
  # @equinor/fusion-framework-vite-plugin-spa
2
2
 
3
+ ## 3.0.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`2022136`](https://github.com/equinor/fusion-framework/commit/2022136108a49cf2ccd8109e7e720aa2fbc135f1) Thanks [@odinr](https://github.com/odinr)! - relase next of all packages
8
+
9
+ - Updated dependencies [[`2022136`](https://github.com/equinor/fusion-framework/commit/2022136108a49cf2ccd8109e7e720aa2fbc135f1)]:
10
+ - @equinor/fusion-framework-module-service-discovery@9.0.5-next.2
11
+ - @equinor/fusion-framework-module-telemetry@4.4.0-next.2
12
+ - @equinor/fusion-framework-module-http@7.0.5-next.2
13
+ - @equinor/fusion-framework-module-msal@6.0.0-next.2
14
+ - @equinor/fusion-framework-module@5.0.6-next.1
15
+
16
+ ## 3.0.0-next.1
17
+
18
+ ### Patch Changes
19
+
20
+ - [`895a49a`](https://github.com/equinor/fusion-framework/commit/895a49aaa815a6cd317e60f40875b1763bd6bded) Thanks [@odinr](https://github.com/odinr)! - relase next of all packages
21
+
22
+ - Updated dependencies [[`895a49a`](https://github.com/equinor/fusion-framework/commit/895a49aaa815a6cd317e60f40875b1763bd6bded)]:
23
+ - @equinor/fusion-framework-module-service-discovery@9.0.5-next.1
24
+ - @equinor/fusion-framework-module-telemetry@4.4.0-next.1
25
+ - @equinor/fusion-framework-module-http@7.0.5-next.1
26
+ - @equinor/fusion-framework-module-msal@6.0.0-next.1
27
+ - @equinor/fusion-framework-module@5.0.6-next.0
28
+
3
29
  ## 3.0.0-next.0
4
30
 
5
31
  ### Patch Changes
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '3.0.0-next.0';
2
+ export const version = '3.0.0-next.2';
3
3
  //# sourceMappingURL=version.js.map
@@ -5296,7 +5296,7 @@ class BaseModuleProvider {
5296
5296
  }
5297
5297
 
5298
5298
  // Generated by genversion.
5299
- const version$8 = '5.0.5';
5299
+ const version$8 = '5.0.6-next.1';
5300
5300
 
5301
5301
  /* eslint-disable @typescript-eslint/no-explicit-any */
5302
5302
  /**
@@ -19275,7 +19275,7 @@ class HttpClientConfigurator {
19275
19275
  }
19276
19276
 
19277
19277
  // Generated by genversion.
19278
- const version$6 = '7.0.5-next.0';
19278
+ const version$6 = '7.0.5-next.2';
19279
19279
 
19280
19280
  /**
19281
19281
  * Exception thrown when a client cannot be found.
@@ -21606,7 +21606,7 @@ class TelemetryConfigurator extends BaseConfigBuilder {
21606
21606
  }
21607
21607
 
21608
21608
  // Generated by genversion.
21609
- const version$5 = '4.4.0-next.0';
21609
+ const version$5 = '4.4.0-next.2';
21610
21610
 
21611
21611
  /**
21612
21612
  * Enum representing the severity levels of telemetry items.
@@ -41340,7 +41340,7 @@ const createClientLogCallback = (provider, metadata, scope) => {
41340
41340
  };
41341
41341
 
41342
41342
  // Generated by genversion.
41343
- const version$2 = '6.0.0-next.0';
41343
+ const version$2 = '6.0.0-next.2';
41344
41344
 
41345
41345
  /**
41346
41346
  * Zod schema for telemetry configuration validation.
@@ -42244,6 +42244,20 @@ class MsalProvider extends BaseModuleProvider {
42244
42244
  get account() {
42245
42245
  return this.#client.getActiveAccount();
42246
42246
  }
42247
+ /**
42248
+ * @deprecated Use account instead
42249
+ * @returns The currently authenticated account or undefined if no user is logged in.
42250
+ */
42251
+ get defaultAccount() {
42252
+ this._trackException('MsalPrvider.defaultAccount.deprecated', TelemetryLevel.Warning, {
42253
+ exception: new Error('defaultAccount is deprecated, use account instead. This will be removed in the next major version.'),
42254
+ properties: {
42255
+ message: 'defaultAccount is deprecated, use account instead. This will be removed in the next major version.',
42256
+ reason: 'This is most likely due to accessing the framework directly from application code, instead of using the application hooks.',
42257
+ },
42258
+ });
42259
+ return this.account ?? undefined;
42260
+ }
42247
42261
  /**
42248
42262
  * Creates a new MSAL provider instance.
42249
42263
  *
@@ -45029,7 +45043,7 @@ class ServiceDiscoveryConfigurator extends BaseConfigBuilder {
45029
45043
  }
45030
45044
 
45031
45045
  // Generated by genversion.
45032
- const version$1 = '9.0.5-next.0';
45046
+ const version$1 = '9.0.5-next.2';
45033
45047
 
45034
45048
  class ServiceDiscoveryProvider extends BaseModuleProvider {
45035
45049
  config;
@@ -45548,7 +45562,7 @@ async function registerServiceWorker(framework) {
45548
45562
  }
45549
45563
 
45550
45564
  // Generated by genversion.
45551
- const version = '3.0.0-next.0';
45565
+ const version = '3.0.0-next.2';
45552
45566
 
45553
45567
  // Allow dynamic import without vite
45554
45568
  const importWithoutVite = (path) => import(/* @vite-ignore */ path);