@things-factory/routing-base 8.0.0-alpha.13 → 8.0.0-alpha.14
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.
|
@@ -10,7 +10,7 @@ export * from './routing-item/routing-item-mutation';
|
|
|
10
10
|
export * from './routing/routing-query';
|
|
11
11
|
export * from './operation/operation-query';
|
|
12
12
|
export * from './routing-item/routing-item-query';
|
|
13
|
-
export declare const entities: (typeof import("./
|
|
13
|
+
export declare const entities: (typeof import("./routing-item/routing-item").RoutingItem | typeof import("./routing/routing").Routing | typeof import("./operation/operation").Operation)[];
|
|
14
14
|
export declare const schema: {
|
|
15
|
-
resolverClasses: (typeof import("./
|
|
15
|
+
resolverClasses: (typeof import("./routing-item").RoutingItemQuery | typeof import("./routing").RoutingQuery | typeof import("./operation").OperationQuery | typeof import("./operation").OperationMutation | typeof import("./routing").RoutingMutation | typeof import("./routing-item").RoutingItemMutation)[];
|
|
16
16
|
};
|
|
@@ -2,6 +2,6 @@ import { Operation } from './operation';
|
|
|
2
2
|
import { OperationMutation } from './operation-mutation';
|
|
3
3
|
import { OperationQuery } from './operation-query';
|
|
4
4
|
export declare const entities: (typeof Operation)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof OperationQuery | typeof OperationMutation)[];
|
|
6
6
|
export * from './operation-query';
|
|
7
7
|
export * from './operation-mutation';
|
|
@@ -2,6 +2,6 @@ import { Routing } from './routing';
|
|
|
2
2
|
import { RoutingMutation } from './routing-mutation';
|
|
3
3
|
import { RoutingQuery } from './routing-query';
|
|
4
4
|
export declare const entities: (typeof Routing)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof RoutingQuery | typeof RoutingMutation)[];
|
|
6
6
|
export * from './routing-query';
|
|
7
7
|
export * from './routing-mutation';
|
|
@@ -2,6 +2,6 @@ import { RoutingItem } from './routing-item';
|
|
|
2
2
|
import { RoutingItemMutation } from './routing-item-mutation';
|
|
3
3
|
import { RoutingItemQuery } from './routing-item-query';
|
|
4
4
|
export declare const entities: (typeof RoutingItem)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof RoutingItemQuery | typeof RoutingItemMutation)[];
|
|
6
6
|
export * from './routing-item-query';
|
|
7
7
|
export * from './routing-item-mutation';
|