@common-stack/server-stack 7.0.4-alpha.7 → 7.1.1-alpha.11
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/MainStackServer.cjs +6 -3
- package/lib/MainStackServer.cjs.map +1 -1
- package/lib/MainStackServer.d.ts +2 -1
- package/lib/MainStackServer.mjs +6 -3
- package/lib/MainStackServer.mjs.map +1 -1
- package/lib/api/root-schema.graphqls.cjs +1 -1
- package/lib/api/root-schema.graphqls.mjs +1 -1
- package/lib/api/sub-graph-schema-builder.cjs +149 -0
- package/lib/api/sub-graph-schema-builder.cjs.map +1 -0
- package/lib/api/sub-graph-schema-builder.d.ts +24 -0
- package/lib/api/sub-graph-schema-builder.mjs +149 -0
- package/lib/api/sub-graph-schema-builder.mjs.map +1 -0
- package/lib/interfaces/graphql-request-context.d.ts +15 -0
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/plugins/index.d.ts +1 -0
- package/lib/plugins/invalidateCachePlugin.cjs +33 -10
- package/lib/plugins/invalidateCachePlugin.cjs.map +1 -1
- package/lib/plugins/invalidateCachePlugin.mjs +33 -10
- package/lib/plugins/invalidateCachePlugin.mjs.map +1 -1
- package/lib/plugins/invalidateCachePlugin.test.d.ts +1 -0
- package/lib/plugins/response-cache-plugin.test.d.ts +1 -0
- package/lib/plugins/responseCachePlugin.cjs +64 -0
- package/lib/plugins/responseCachePlugin.cjs.map +1 -0
- package/lib/plugins/responseCachePlugin.d.ts +12 -0
- package/lib/plugins/responseCachePlugin.mjs +64 -0
- package/lib/plugins/responseCachePlugin.mjs.map +1 -0
- package/lib/servers/GraphqlServer.cjs +3 -34
- package/lib/servers/GraphqlServer.cjs.map +1 -1
- package/lib/servers/GraphqlServer.mjs +3 -34
- package/lib/servers/GraphqlServer.mjs.map +1 -1
- package/lib/utils/add-shareable-directive-to-schema.cjs +44 -0
- package/lib/utils/add-shareable-directive-to-schema.cjs.map +1 -0
- package/lib/utils/add-shareable-directive-to-schema.d.ts +1 -0
- package/lib/utils/add-shareable-directive-to-schema.mjs +44 -0
- package/lib/utils/add-shareable-directive-to-schema.mjs.map +1 -0
- package/lib/utils/add-shareable-directive-to-schema.test.d.ts +1 -0
- package/lib/utils/index.d.ts +2 -0
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/server-stack",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.1-alpha.11",
|
|
4
4
|
"description": "common core for higher packages to depend on",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -26,16 +26,17 @@
|
|
|
26
26
|
"@apollo/datasource-rest": "^6.3.0",
|
|
27
27
|
"@apollo/server": "^4.10.4",
|
|
28
28
|
"@apollo/server-plugin-response-cache": "^4.1.3",
|
|
29
|
+
"@apollo/subgraph": "^2.7.1",
|
|
29
30
|
"@apollo/utils.keyvadapter": "^3.1.0",
|
|
30
31
|
"@casl/ability": "^4.1.5",
|
|
31
32
|
"@cdm-logger/client": "^9.0.3",
|
|
32
33
|
"@cdm-logger/server": "^9.0.3",
|
|
33
34
|
"@cdmbase/graphql-type-uri": "^4.0.0",
|
|
34
|
-
"@common-stack/cache-api-server": "7.0.4-alpha.
|
|
35
|
-
"@common-stack/client-core": "7.
|
|
36
|
-
"@common-stack/core": "7.0.4-alpha.
|
|
37
|
-
"@common-stack/server-core": "7.0.4-alpha.
|
|
38
|
-
"@common-stack/store-mongo": "7.
|
|
35
|
+
"@common-stack/cache-api-server": "7.0.4-alpha.17",
|
|
36
|
+
"@common-stack/client-core": "7.1.1-alpha.3",
|
|
37
|
+
"@common-stack/core": "7.0.4-alpha.17",
|
|
38
|
+
"@common-stack/server-core": "7.0.4-alpha.17",
|
|
39
|
+
"@common-stack/store-mongo": "7.1.1-alpha.11",
|
|
39
40
|
"@graphql-tools/links": "~9.0.1",
|
|
40
41
|
"@graphql-tools/schema": "~10.0.6",
|
|
41
42
|
"@graphql-tools/stitch": "~9.2.10",
|
|
@@ -88,7 +89,7 @@
|
|
|
88
89
|
"publishConfig": {
|
|
89
90
|
"access": "public"
|
|
90
91
|
},
|
|
91
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "18b019c5c9c3b8e3936c3da042d4dae6b2dc3921",
|
|
92
93
|
"typescript": {
|
|
93
94
|
"definition": "lib/index.d.ts"
|
|
94
95
|
}
|