@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.
Files changed (38) hide show
  1. package/lib/MainStackServer.cjs +6 -3
  2. package/lib/MainStackServer.cjs.map +1 -1
  3. package/lib/MainStackServer.d.ts +2 -1
  4. package/lib/MainStackServer.mjs +6 -3
  5. package/lib/MainStackServer.mjs.map +1 -1
  6. package/lib/api/root-schema.graphqls.cjs +1 -1
  7. package/lib/api/root-schema.graphqls.mjs +1 -1
  8. package/lib/api/sub-graph-schema-builder.cjs +149 -0
  9. package/lib/api/sub-graph-schema-builder.cjs.map +1 -0
  10. package/lib/api/sub-graph-schema-builder.d.ts +24 -0
  11. package/lib/api/sub-graph-schema-builder.mjs +149 -0
  12. package/lib/api/sub-graph-schema-builder.mjs.map +1 -0
  13. package/lib/interfaces/graphql-request-context.d.ts +15 -0
  14. package/lib/interfaces/index.d.ts +1 -0
  15. package/lib/plugins/index.d.ts +1 -0
  16. package/lib/plugins/invalidateCachePlugin.cjs +33 -10
  17. package/lib/plugins/invalidateCachePlugin.cjs.map +1 -1
  18. package/lib/plugins/invalidateCachePlugin.mjs +33 -10
  19. package/lib/plugins/invalidateCachePlugin.mjs.map +1 -1
  20. package/lib/plugins/invalidateCachePlugin.test.d.ts +1 -0
  21. package/lib/plugins/response-cache-plugin.test.d.ts +1 -0
  22. package/lib/plugins/responseCachePlugin.cjs +64 -0
  23. package/lib/plugins/responseCachePlugin.cjs.map +1 -0
  24. package/lib/plugins/responseCachePlugin.d.ts +12 -0
  25. package/lib/plugins/responseCachePlugin.mjs +64 -0
  26. package/lib/plugins/responseCachePlugin.mjs.map +1 -0
  27. package/lib/servers/GraphqlServer.cjs +3 -34
  28. package/lib/servers/GraphqlServer.cjs.map +1 -1
  29. package/lib/servers/GraphqlServer.mjs +3 -34
  30. package/lib/servers/GraphqlServer.mjs.map +1 -1
  31. package/lib/utils/add-shareable-directive-to-schema.cjs +44 -0
  32. package/lib/utils/add-shareable-directive-to-schema.cjs.map +1 -0
  33. package/lib/utils/add-shareable-directive-to-schema.d.ts +1 -0
  34. package/lib/utils/add-shareable-directive-to-schema.mjs +44 -0
  35. package/lib/utils/add-shareable-directive-to-schema.mjs.map +1 -0
  36. package/lib/utils/add-shareable-directive-to-schema.test.d.ts +1 -0
  37. package/lib/utils/index.d.ts +2 -0
  38. package/package.json +8 -7
@@ -0,0 +1,2 @@
1
+ export * from './migrations';
2
+ export * from './add-shareable-directive-to-schema';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/server-stack",
3
- "version": "7.0.4-alpha.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.7",
35
- "@common-stack/client-core": "7.0.4-alpha.6",
36
- "@common-stack/core": "7.0.4-alpha.6",
37
- "@common-stack/server-core": "7.0.4-alpha.7",
38
- "@common-stack/store-mongo": "7.0.4-alpha.6",
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": "7e104c5fa18cbce2c32cd60de26b45a94f387081",
92
+ "gitHead": "18b019c5c9c3b8e3936c3da042d4dae6b2dc3921",
92
93
  "typescript": {
93
94
  "definition": "lib/index.d.ts"
94
95
  }