@equinor/fusion-framework-vite-plugin-spa 3.0.3 → 3.0.4

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,12 @@
1
1
  # @equinor/fusion-framework-vite-plugin-spa
2
2
 
3
+ ## 3.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b8c8149`](https://github.com/equinor/fusion-framework/commit/b8c814938be4543d2522566ece10ebc6feefee75)]:
8
+ - @equinor/fusion-framework-module-msal@6.0.2
9
+
3
10
  ## 3.0.3
4
11
 
5
12
  ### Patch Changes
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '3.0.3';
2
+ export const version = '3.0.4';
3
3
  //# sourceMappingURL=version.js.map
@@ -42812,7 +42812,7 @@ const createClientLogCallback = (provider, metadata, scope) => {
42812
42812
  };
42813
42813
 
42814
42814
  // Generated by genversion.
42815
- const version$2 = '6.0.1';
42815
+ const version$2 = '6.0.2';
42816
42816
 
42817
42817
  /**
42818
42818
  * Zod schema for telemetry configuration validation.
@@ -43520,7 +43520,7 @@ function createProxyProvider$1(provider) {
43520
43520
  // Adapt v4 acquireToken to v2 signature with proper type mapping
43521
43521
  const acquireToken = async (req) => {
43522
43522
  const request = isRequestV4(req) ? req : { scopes: req.scopes, account: req.account };
43523
- const result = await target.acquireToken(request);
43523
+ const result = await target.acquireToken({ request });
43524
43524
  // Convert null to undefined for v2 compatibility
43525
43525
  return result || undefined;
43526
43526
  };
@@ -43530,7 +43530,7 @@ function createProxyProvider$1(provider) {
43530
43530
  // Adapt v4 acquireAccessToken to v2 signature
43531
43531
  const acquireAccessToken = async (req) => {
43532
43532
  const request = isRequestV4(req) ? req : { scopes: req.scopes, account: req.account };
43533
- return await target.acquireAccessToken(request);
43533
+ return await target.acquireAccessToken({ request });
43534
43534
  };
43535
43535
  return acquireAccessToken;
43536
43536
  }
@@ -47046,7 +47046,7 @@ async function registerServiceWorker(framework) {
47046
47046
  }
47047
47047
 
47048
47048
  // Generated by genversion.
47049
- const version = '3.0.3';
47049
+ const version = '3.0.4';
47050
47050
 
47051
47051
  // Allow dynamic import without vite
47052
47052
  const importWithoutVite = (path) => import(/* @vite-ignore */ path);