@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.
@@ -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
@@ -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;
@@ -1 +1 @@
1
- export declare const version = "8.0.3";
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",
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.2"
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.4",
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": {
@@ -59,6 +59,7 @@ export class AppConfigurator
59
59
  extends BaseConfigBuilder<AppModuleConfig>
60
60
  implements IAppConfigurator
61
61
  {
62
+ /** Default cache expiration time, in milliseconds, for the app service client. */
62
63
  defaultExpireTime = 1 * 60 * 1000;
63
64
 
64
65
  /**
package/src/app/App.ts CHANGED
@@ -977,6 +977,7 @@ export class App<
977
977
  return operator(this.getAppModule(!allow_cache));
978
978
  }
979
979
 
980
+ /** Releases resources held by this app instance. */
980
981
  public dispose: VoidFunction;
981
982
  }
982
983
 
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '8.0.3';
2
+ export const version = '8.0.4';