@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.
- package/lib/config/config.d.ts +5 -0
- package/lib/config/index.d.ts +1 -0
- package/lib/containers/containers.d.ts +2 -2
- package/lib/graphql/resolvers/index.d.ts +1 -5
- package/lib/index.js +965 -129
- package/lib/index.js.map +1 -1
- package/lib/interfaces/channel-service.d.ts +2 -2
- package/lib/interfaces/post-service.d.ts +1 -4
- package/lib/mixins/base-service-mixin.d.ts +3 -0
- package/lib/mixins/index.d.ts +1 -0
- package/lib/plugins/channel-moleculer-service.d.ts +8 -0
- package/lib/plugins/index.d.ts +4 -0
- package/lib/plugins/post-moleculer-service.d.ts +8 -0
- package/lib/plugins/post-thread-moleculer-service.d.ts +8 -0
- package/lib/plugins/reaction-moleculer-service.d.ts +8 -0
- package/lib/services/channel-service.d.ts +20 -10
- package/lib/services/index.d.ts +1 -0
- package/lib/services/post-service.d.ts +3 -6
- package/lib/services/proxy-services/base-proxy-service.d.ts +24 -0
- package/lib/services/proxy-services/channel-microservice.d.ts +44 -0
- package/lib/services/proxy-services/index.d.ts +4 -0
- package/lib/services/proxy-services/post-microservice.d.ts +11 -0
- package/lib/services/proxy-services/post-thread-microservice.d.ts +9 -0
- package/lib/services/proxy-services/reaction-microservice.d.ts +9 -0
- package/package.json +7 -4
- package/lib/graphql/resolvers/primitive-resolvers.d.ts +0 -5
|
@@ -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
|
|
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
|
|
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>)[];
|