@equinor/fusion-framework-module-app 8.0.3 → 8.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 +6 -0
- package/dist/esm/AppConfigurator.js +1 -0
- package/dist/esm/AppConfigurator.js.map +1 -1
- package/dist/esm/app/App.js +1 -0
- package/dist/esm/app/App.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/AppConfigurator.d.ts +1 -0
- package/dist/types/app/App.d.ts +1 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
- package/src/AppConfigurator.ts +1 -0
- package/src/app/App.ts +1 -0
- package/src/version.ts +1 -1
|
@@ -43,6 +43,7 @@ export interface IAppConfigurator {
|
|
|
43
43
|
* via service discovery. The default `assetUri` is `'/apps-proxy'`.
|
|
44
44
|
*/
|
|
45
45
|
export declare class AppConfigurator extends BaseConfigBuilder<AppModuleConfig> implements IAppConfigurator {
|
|
46
|
+
/** Default cache expiration time, in milliseconds, for the app service client. */
|
|
46
47
|
defaultExpireTime: number;
|
|
47
48
|
/**
|
|
48
49
|
* Creates the default HTTP client for the app service, preferring a pre-configured
|
package/dist/types/app/App.d.ts
CHANGED
|
@@ -289,6 +289,7 @@ export declare class App<TEnv extends ConfigEnvironment = ConfigEnvironment, TMo
|
|
|
289
289
|
getAppModule(force_refresh?: boolean): Observable<AppScriptModule>;
|
|
290
290
|
/** @inheritdoc */
|
|
291
291
|
getAppModuleAsync(allow_cache?: boolean): Promise<AppScriptModule>;
|
|
292
|
+
/** Releases resources held by this app instance. */
|
|
292
293
|
dispose: VoidFunction;
|
|
293
294
|
}
|
|
294
295
|
export default App;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.0.
|
|
1
|
+
export declare const version = "8.0.4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-module-app",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"uuid": "^14.0.0",
|
|
63
63
|
"zod": "^4.4.3",
|
|
64
64
|
"@equinor/fusion-observable": "^9.1.1",
|
|
65
|
-
"@equinor/fusion-query": "^7.0.
|
|
65
|
+
"@equinor/fusion-query": "^7.0.3"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"typescript": "^7.0.2",
|
|
69
|
-
"@equinor/fusion-framework-module": "^6.1.1",
|
|
70
69
|
"@equinor/fusion-framework-module-event": "^6.0.1",
|
|
71
|
-
"@equinor/fusion-framework-module-http": "^8.0.
|
|
70
|
+
"@equinor/fusion-framework-module-http": "^8.0.5",
|
|
72
71
|
"@equinor/fusion-framework-module-msal": "^10.0.2",
|
|
72
|
+
"@equinor/fusion-framework-module": "^6.1.1",
|
|
73
73
|
"@equinor/fusion-framework-module-service-discovery": "^10.0.2"
|
|
74
74
|
},
|
|
75
75
|
"scripts": {
|
package/src/AppConfigurator.ts
CHANGED
package/src/app/App.ts
CHANGED
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '8.0.
|
|
2
|
+
export const version = '8.0.4';
|