@messenger-box/platform-server 0.0.1-alpha.126 → 0.0.1-alpha.131

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.
@@ -0,0 +1,5 @@
1
+ import * as envalid from 'envalid';
2
+ export declare const config: Readonly<{
3
+ FILES_TTL: number;
4
+ GRAPHQL_URL: string;
5
+ } & envalid.CleanedEnvAccessors>;
@@ -0,0 +1 @@
1
+ export * from './config';
@@ -5,11 +5,11 @@ import { interfaces } from 'inversify';
5
5
  *
6
6
  * @param settings Settings
7
7
  */
8
- export declare const localContainerModule: (settings: any) => interfaces.ContainerModule;
8
+ export declare const proxyServiceContainerModule: (settings: any) => interfaces.ContainerModule;
9
9
  /**
10
10
  * Operates external to the Gateway. Usually a broker listen to calls and invoke this service
11
11
  * local to the micro container.
12
12
  *
13
13
  * @param settings Settings
14
14
  */
15
- export declare const externalContainerModule: (settings: any) => interfaces.ContainerModule;
15
+ export declare const serviceContainerModule: (settings: any) => interfaces.ContainerModule;
@@ -1,5 +1 @@
1
- export declare const messengerResolvers: ((() => {
2
- Date: any;
3
- Time: any;
4
- DateTime: any;
5
- }) | (() => import("../../../../../messenger-core/lib").IResolvers<import("../../interfaces").IContext>))[];
1
+ export declare const messengerResolvers: (() => import("../../../../../messenger-core/lib").IResolvers<import("../../interfaces").IContext>)[];