@aristid/leav-types 0.0.7-8c2b8a1 → 0.0.7-8ee78f1

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.
@@ -1 +1,2 @@
1
1
  export declare const APP_DEFAULT_NAME = "LEAV Engine";
2
+ export declare const DEFAULT_APPLICATION = "portal";
@@ -1,4 +1,5 @@
1
1
  export interface IGlobalSettings {
2
+ defaultApp: string;
2
3
  name: string;
3
4
  icon?: {
4
5
  library: string;
@@ -11,6 +11,7 @@ import { IAppGraphQLSchema } from '_types/graphql';
11
11
  import { IApplicationDomain } from '../../domain/application/applicationDomain';
12
12
  import { ValidateRequestTokenFunc } from '../helpers/validateRequestToken';
13
13
  import { IAuthApp } from '../auth/authApp';
14
+ import { IGlobalSettingsDomain } from '../../domain/globalSettings/globalSettingsDomain';
14
15
  export interface IApplicationApp {
15
16
  registerRoute(app: Express): void;
16
17
  getGraphQLSchema(): Promise<IAppGraphQLSchema>;
@@ -25,8 +26,9 @@ export interface IApplicationAppDeps {
25
26
  'core.domain.permission': IPermissionDomain;
26
27
  'core.domain.record': IRecordDomain;
27
28
  'core.domain.eventsManager': IEventsManagerDomain;
29
+ 'core.domain.globalSettings': IGlobalSettingsDomain;
28
30
  'core.utils.logger': winston.Winston;
29
31
  'core.utils': IUtils;
30
32
  config: any;
31
33
  }
32
- export default function ({ 'core.app.graphql': graphqlApp, 'core.app.auth': authApp, 'core.app.helpers.initQueryContext': initQueryContext, 'core.app.helpers.validateRequestToken': validateRequestToken, 'core.app.core.subscriptionsHelper': subscriptionsHelper, 'core.domain.application': applicationDomain, 'core.domain.permission': permissionDomain, 'core.domain.record': recordDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.utils.logger': logger, 'core.utils': utils, config }: IApplicationAppDeps): IApplicationApp;
34
+ export default function ({ 'core.app.graphql': graphqlApp, 'core.app.auth': authApp, 'core.app.helpers.initQueryContext': initQueryContext, 'core.app.helpers.validateRequestToken': validateRequestToken, 'core.app.core.subscriptionsHelper': subscriptionsHelper, 'core.domain.application': applicationDomain, 'core.domain.permission': permissionDomain, 'core.domain.record': recordDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.domain.globalSettings': globalSettings, 'core.utils.logger': logger, 'core.utils': utils, config }: IApplicationAppDeps): IApplicationApp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "0.0.7-8c2b8a1",
3
+ "version": "0.0.7-8ee78f1",
4
4
  "description": "Shared Leav types",
5
5
  "scripts": {
6
6
  "tscheck": "",