@equinor/fusion-framework-vite-plugin-spa 3.0.4 → 3.0.5
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 +7 -0
- package/dist/esm/version.js +1 -1
- package/dist/html/bootstrap.js +10 -6
- package/dist/html/bootstrap.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/html/index.html.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @equinor/fusion-framework-vite-plugin-spa
|
|
2
2
|
|
|
3
|
+
## 3.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`655ab0e`](https://github.com/equinor/fusion-framework/commit/655ab0ea9568090271225cb51285e78c2d08941e)]:
|
|
8
|
+
- @equinor/fusion-framework-module-msal@6.0.3
|
|
9
|
+
|
|
3
10
|
## 3.0.4
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/esm/version.js
CHANGED
package/dist/html/bootstrap.js
CHANGED
|
@@ -42812,7 +42812,7 @@ const createClientLogCallback = (provider, metadata, scope) => {
|
|
|
42812
42812
|
};
|
|
42813
42813
|
|
|
42814
42814
|
// Generated by genversion.
|
|
42815
|
-
const version$2 = '6.0.
|
|
42815
|
+
const version$2 = '6.0.3';
|
|
42816
42816
|
|
|
42817
42817
|
/**
|
|
42818
42818
|
* Zod schema for telemetry configuration validation.
|
|
@@ -43519,8 +43519,10 @@ function createProxyProvider$1(provider) {
|
|
|
43519
43519
|
case 'acquireToken': {
|
|
43520
43520
|
// Adapt v4 acquireToken to v2 signature with proper type mapping
|
|
43521
43521
|
const acquireToken = async (req) => {
|
|
43522
|
-
const
|
|
43523
|
-
|
|
43522
|
+
const args = isRequestV4(req)
|
|
43523
|
+
? req
|
|
43524
|
+
: { request: { scopes: req.scopes, account: req.account } };
|
|
43525
|
+
const result = await target.acquireToken(args);
|
|
43524
43526
|
// Convert null to undefined for v2 compatibility
|
|
43525
43527
|
return result || undefined;
|
|
43526
43528
|
};
|
|
@@ -43529,8 +43531,10 @@ function createProxyProvider$1(provider) {
|
|
|
43529
43531
|
case 'acquireAccessToken': {
|
|
43530
43532
|
// Adapt v4 acquireAccessToken to v2 signature
|
|
43531
43533
|
const acquireAccessToken = async (req) => {
|
|
43532
|
-
const
|
|
43533
|
-
|
|
43534
|
+
const args = isRequestV4(req)
|
|
43535
|
+
? req
|
|
43536
|
+
: { request: { scopes: req.scopes, account: req.account } };
|
|
43537
|
+
return await target.acquireAccessToken(args);
|
|
43534
43538
|
};
|
|
43535
43539
|
return acquireAccessToken;
|
|
43536
43540
|
}
|
|
@@ -47046,7 +47050,7 @@ async function registerServiceWorker(framework) {
|
|
|
47046
47050
|
}
|
|
47047
47051
|
|
|
47048
47052
|
// Generated by genversion.
|
|
47049
|
-
const version = '3.0.
|
|
47053
|
+
const version = '3.0.5';
|
|
47050
47054
|
|
|
47051
47055
|
// Allow dynamic import without vite
|
|
47052
47056
|
const importWithoutVite = (path) => import(/* @vite-ignore */ path);
|