@nest-boot/graphql-connection 6.0.0-beta.4 → 6.0.0-beta.6
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,5 +1,5 @@
|
|
|
1
1
|
import { ASYNC_OPTIONS_TYPE, ConfigurableModuleClass, OPTIONS_TYPE } from "./graphql-connection.module-definition";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class GraphQLConnectionModule extends ConfigurableModuleClass {
|
|
3
3
|
static register(options?: typeof OPTIONS_TYPE): import("@nestjs/common").DynamicModule;
|
|
4
4
|
static registerAsync(options?: typeof ASYNC_OPTIONS_TYPE): import("@nestjs/common").DynamicModule;
|
|
5
5
|
}
|
|
@@ -6,11 +6,11 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.
|
|
9
|
+
exports.GraphQLConnectionModule = void 0;
|
|
10
10
|
const common_1 = require("@nestjs/common");
|
|
11
11
|
const connection_manager_1 = require("./connection.manager");
|
|
12
12
|
const graphql_connection_module_definition_1 = require("./graphql-connection.module-definition");
|
|
13
|
-
let
|
|
13
|
+
let GraphQLConnectionModule = class GraphQLConnectionModule extends graphql_connection_module_definition_1.ConfigurableModuleClass {
|
|
14
14
|
static register(options) {
|
|
15
15
|
return super.register(options ?? {});
|
|
16
16
|
}
|
|
@@ -18,11 +18,11 @@ let GraphqlConnectionModule = class GraphqlConnectionModule extends graphql_conn
|
|
|
18
18
|
return super.registerAsync(options ?? {});
|
|
19
19
|
}
|
|
20
20
|
};
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
21
|
+
exports.GraphQLConnectionModule = GraphQLConnectionModule;
|
|
22
|
+
exports.GraphQLConnectionModule = GraphQLConnectionModule = __decorate([
|
|
23
23
|
(0, common_1.Module)({
|
|
24
24
|
providers: [connection_manager_1.ConnectionManager],
|
|
25
25
|
exports: [connection_manager_1.ConnectionManager],
|
|
26
26
|
})
|
|
27
|
-
],
|
|
27
|
+
], GraphQLConnectionModule);
|
|
28
28
|
//# sourceMappingURL=graphql-connection.module.js.map
|