@rsdk/graphql 4.0.0-next.0 → 4.0.0-next.2
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/CHANGELOG.md +8 -0
- package/dist/graphql.config.js +2 -1
- package/dist/graphql.config.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.0.0-next.2](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.1...v4.0.0-next.2) (2023-11-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rsdk/graphql
|
|
9
|
+
|
|
10
|
+
## [4.0.0-next.1](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.0...v4.0.0-next.1) (2023-11-10)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @rsdk/graphql
|
|
13
|
+
|
|
6
14
|
## [4.0.0-next.0](https://github.com/R-Vision/rsdk/compare/v3.6.2-next.0...v4.0.0-next.0) (2023-10-26)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @rsdk/graphql
|
package/dist/graphql.config.js
CHANGED
|
@@ -11,9 +11,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.GraphQLConfig = void 0;
|
|
13
13
|
const core_1 = require("@rsdk/core");
|
|
14
|
-
let GraphQLConfig =
|
|
14
|
+
let GraphQLConfig = class GraphQLConfig extends core_1.Config {
|
|
15
15
|
playground;
|
|
16
16
|
};
|
|
17
|
+
exports.GraphQLConfig = GraphQLConfig;
|
|
17
18
|
__decorate([
|
|
18
19
|
(0, core_1.Property)('GRAPHQL_ENABLE_PLAYGROUND', new core_1.BoolParser(), {
|
|
19
20
|
defaultValue: false,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql.config.js","sourceRoot":"","sources":["../src/graphql.config.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAMoB;AAKb,IAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"graphql.config.js","sourceRoot":"","sources":["../src/graphql.config.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAMoB;AAKb,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,aAAM;IAKvC,UAAU,CAAW;CACtB,CAAA;AANY,sCAAa;AAKxB;IAJC,IAAA,eAAQ,EAAC,2BAA2B,EAAE,IAAI,iBAAU,EAAE,EAAE;QACvD,YAAY,EAAE,KAAK;QACnB,WAAW,EAAE,8CAA8C;KAC5D,CAAC;;iDACmB;wBALV,aAAa;IAHzB,IAAA,oBAAa,EAAC;QACb,IAAI,EAAE,CAAC,gBAAS,CAAC,cAAc,EAAE,gBAAS,CAAC,SAAS,EAAE,gBAAS,CAAC,OAAO,CAAC;KACzE,CAAC;GACW,aAAa,CAMzB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdk/graphql",
|
|
3
|
-
"version": "4.0.0-next.
|
|
3
|
+
"version": "4.0.0-next.2",
|
|
4
4
|
"description": "Plugin for graphql",
|
|
5
5
|
"license": "Apache License 2.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"@nestjs/apollo": "^12.0.7",
|
|
19
19
|
"@nestjs/common": "^10.1.3",
|
|
20
20
|
"@nestjs/graphql": "^12.0.8",
|
|
21
|
-
"@rsdk/common": "^
|
|
22
|
-
"@rsdk/core": "^4.0.0-next.
|
|
23
|
-
"@rsdk/logging": "^
|
|
21
|
+
"@rsdk/common": "^4.0.0-next.2",
|
|
22
|
+
"@rsdk/core": "^4.0.0-next.2",
|
|
23
|
+
"@rsdk/logging": "^4.0.0-next.2",
|
|
24
24
|
"graphql": "^16.6.0",
|
|
25
25
|
"graphql-subscriptions": "^2.0.0",
|
|
26
26
|
"rxjs": "^7.8.1"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "442be21d7300bdf6f3596a6fc3d9c2cd0a5e8ef3"
|
|
29
29
|
}
|