Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@equinor/fusion-framework-module-app

Package Overview
Dependencies
Maintainers
4
Versions
186
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@equinor/fusion-framework-module-app - npm Package Compare versions

Comparing version 5.0.1 to 5.1.0

6

CHANGELOG.md

@@ -6,2 +6,8 @@ # Change Log

## 5.1.0 (2023-05-22)
### Features
- **module-app:** allow type hinting modules and env ([c80be46](https://github.com/equinor/fusion-framework/commit/c80be46c3c16a40b53506c29debfe6196ea7d945))
## 5.0.1 (2023-05-05)

@@ -8,0 +14,0 @@

2

dist/types/types.d.ts

@@ -16,3 +16,3 @@ import { AnyModule, CombinedModules, ModulesInstance } from '@equinor/fusion-framework-module';

export type AppType = 'standalone' | 'report' | 'launcher';
export type CurrentApp = App | null | undefined;
export type CurrentApp<TModules extends Array<AnyModule> = [], TEnv = any> = App<TEnv, TModules> | null | undefined;
export type AppAuth = {

@@ -19,0 +19,0 @@ clientId: string;

{
"name": "@equinor/fusion-framework-module-app",
"version": "5.0.1",
"version": "5.1.0",
"description": "",

@@ -48,3 +48,3 @@ "main": "dist/esm/index.js",

},
"gitHead": "851d70038b9b015663981a9456247f3d5dd0c3a2"
"gitHead": "b7d1b547049cb9ac3038d2ceded4cb0b851eb052"
}

@@ -24,3 +24,6 @@ import { AnyModule, CombinedModules, ModulesInstance } from '@equinor/fusion-framework-module';

export type CurrentApp = App | null | undefined;
export type CurrentApp<TModules extends Array<AnyModule> = [], TEnv = any> =
| App<TEnv, TModules>
| null
| undefined;

@@ -27,0 +30,0 @@ export type AppAuth = {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc