@admin-layout/timetracker-module-server 1.0.3-alpha.7 → 1.0.3-alpha.81

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,4 +2,5 @@ import * as envalid from 'envalid';
2
2
  export declare const config: Readonly<{
3
3
  MAIL_SEND_DEFAULT_EMAIL: string;
4
4
  CLIENT_URL: string;
5
+ GRAPHQL_URL: string;
5
6
  } & envalid.CleanedEnvAccessors>;
@@ -1,2 +1,5 @@
1
1
  import { ContainerModule } from 'inversify';
2
+ export declare const timeTrackerStoreModule: (settings: any) => ContainerModule;
3
+ export declare const timeTrackerMailModule: (settings: any) => ContainerModule;
2
4
  export declare const timeTrackerModule: (settings: any) => ContainerModule;
5
+ export declare const timeTrackerProxyModule: (settings: any) => ContainerModule;
package/lib/index.d.ts CHANGED
@@ -2,5 +2,6 @@ import { Feature } from '@common-stack/server-core';
2
2
  export * from './constants';
3
3
  export * from './store/repository';
4
4
  export * from './store/models/timetracker-model';
5
+ export * from './containers';
5
6
  declare const _default: Feature<import("@workbench-stack/core").ConfigurationScope>;
6
7
  export default _default;