@graphql-hive/gateway 2.0.0-alpha-a57076229f707b5b888a8b1877e893388fcd67d6 → 2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4
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 +34 -91
- package/dist/bin.cjs +2 -1
- package/dist/bin.js +2 -1
- package/dist/{cli-BQ10GobO.cjs → cli-Be2W1qf0.cjs} +133 -17
- package/dist/{cli-CpJrCTMy.js → cli-eXE2psgp.js} +133 -17
- package/dist/index.cjs +2 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +2 -1
- package/package.json +24 -22
package/dist/index.d.cts
CHANGED
@@ -268,9 +268,14 @@ declare let cli: Command<[], {
|
|
268
268
|
port?: number | undefined;
|
269
269
|
polling?: number | undefined;
|
270
270
|
maskedErrors: string | boolean | string[] | [];
|
271
|
+
opentelemetry?: string | true | undefined;
|
272
|
+
opentelemetryExporterType: "otlp-http" | "otlp-grpc";
|
271
273
|
hiveRegistryToken?: string | undefined;
|
272
274
|
hiveUsageTarget?: string | undefined;
|
275
|
+
hiveTarget?: string | undefined;
|
276
|
+
hiveAccessToken?: string | undefined;
|
273
277
|
hiveUsageAccessToken?: string | undefined;
|
278
|
+
hiveTraceAccessToken?: string | undefined;
|
274
279
|
hivePersistedDocumentsEndpoint?: string | undefined;
|
275
280
|
hivePersistedDocumentsToken?: string | undefined;
|
276
281
|
hiveCdnEndpoint?: string | undefined;
|
@@ -287,9 +292,14 @@ declare function run(userCtx: Partial<CLIContext>): Promise<Command<[], {
|
|
287
292
|
port?: number | undefined;
|
288
293
|
polling?: number | undefined;
|
289
294
|
maskedErrors: string | boolean | string[] | [];
|
295
|
+
opentelemetry?: string | true | undefined;
|
296
|
+
opentelemetryExporterType: "otlp-http" | "otlp-grpc";
|
290
297
|
hiveRegistryToken?: string | undefined;
|
291
298
|
hiveUsageTarget?: string | undefined;
|
299
|
+
hiveTarget?: string | undefined;
|
300
|
+
hiveAccessToken?: string | undefined;
|
292
301
|
hiveUsageAccessToken?: string | undefined;
|
302
|
+
hiveTraceAccessToken?: string | undefined;
|
293
303
|
hivePersistedDocumentsEndpoint?: string | undefined;
|
294
304
|
hivePersistedDocumentsToken?: string | undefined;
|
295
305
|
hiveCdnEndpoint?: string | undefined;
|
package/dist/index.d.ts
CHANGED
@@ -268,9 +268,14 @@ declare let cli: Command<[], {
|
|
268
268
|
port?: number | undefined;
|
269
269
|
polling?: number | undefined;
|
270
270
|
maskedErrors: string | boolean | string[] | [];
|
271
|
+
opentelemetry?: string | true | undefined;
|
272
|
+
opentelemetryExporterType: "otlp-http" | "otlp-grpc";
|
271
273
|
hiveRegistryToken?: string | undefined;
|
272
274
|
hiveUsageTarget?: string | undefined;
|
275
|
+
hiveTarget?: string | undefined;
|
276
|
+
hiveAccessToken?: string | undefined;
|
273
277
|
hiveUsageAccessToken?: string | undefined;
|
278
|
+
hiveTraceAccessToken?: string | undefined;
|
274
279
|
hivePersistedDocumentsEndpoint?: string | undefined;
|
275
280
|
hivePersistedDocumentsToken?: string | undefined;
|
276
281
|
hiveCdnEndpoint?: string | undefined;
|
@@ -287,9 +292,14 @@ declare function run(userCtx: Partial<CLIContext>): Promise<Command<[], {
|
|
287
292
|
port?: number | undefined;
|
288
293
|
polling?: number | undefined;
|
289
294
|
maskedErrors: string | boolean | string[] | [];
|
295
|
+
opentelemetry?: string | true | undefined;
|
296
|
+
opentelemetryExporterType: "otlp-http" | "otlp-grpc";
|
290
297
|
hiveRegistryToken?: string | undefined;
|
291
298
|
hiveUsageTarget?: string | undefined;
|
299
|
+
hiveTarget?: string | undefined;
|
300
|
+
hiveAccessToken?: string | undefined;
|
292
301
|
hiveUsageAccessToken?: string | undefined;
|
302
|
+
hiveTraceAccessToken?: string | undefined;
|
293
303
|
hivePersistedDocumentsEndpoint?: string | undefined;
|
294
304
|
hivePersistedDocumentsToken?: string | undefined;
|
295
305
|
hiveCdnEndpoint?: string | undefined;
|
package/dist/index.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export { b as defaultOptions, d as defineConfig, e as enableModuleCachingIfPossible, a as getBuiltinPluginsFromConfig, g as getCacheInstanceFromConfig, h as handleNodeWarnings, r as run } from './cli-
|
1
|
+
export { b as defaultOptions, d as defineConfig, e as enableModuleCachingIfPossible, a as getBuiltinPluginsFromConfig, g as getCacheInstanceFromConfig, h as handleNodeWarnings, r as run } from './cli-eXE2psgp.js';
|
2
2
|
export * from '@graphql-hive/logger';
|
3
3
|
export * from '@graphql-hive/gateway-runtime';
|
4
4
|
export { PubSub } from '@graphql-hive/pubsub';
|
@@ -29,6 +29,7 @@ import 'node:url';
|
|
29
29
|
import 'node:fs';
|
30
30
|
import 'node:http';
|
31
31
|
import 'node:https';
|
32
|
+
import '@opentelemetry/sdk-trace-base';
|
32
33
|
import '@graphql-tools/utils';
|
33
34
|
import '@graphql-tools/code-file-loader';
|
34
35
|
import '@graphql-tools/graphql-file-loader';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@graphql-hive/gateway",
|
3
|
-
"version": "2.0.0-alpha-
|
3
|
+
"version": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
4
4
|
"type": "module",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -49,32 +49,32 @@
|
|
49
49
|
},
|
50
50
|
"dependencies": {
|
51
51
|
"@commander-js/extra-typings": "^13.1.0",
|
52
|
-
"@envelop/core": "^5.
|
52
|
+
"@envelop/core": "^5.3.0",
|
53
53
|
"@escape.tech/graphql-armor-block-field-suggestions": "^3.0.0",
|
54
54
|
"@escape.tech/graphql-armor-max-depth": "^2.4.0",
|
55
55
|
"@escape.tech/graphql-armor-max-tokens": "^2.5.0",
|
56
|
-
"@graphql-hive/gateway-runtime": "2.0.0-alpha-
|
57
|
-
"@graphql-hive/importer": "2.0.0-alpha-
|
58
|
-
"@graphql-hive/logger": "1.0.
|
59
|
-
"@graphql-hive/plugin-aws-sigv4": "2.0.0-alpha-
|
60
|
-
"@graphql-hive/plugin-deduplicate-request": "2.0.0-alpha-
|
61
|
-
"@graphql-hive/pubsub": "2.0.0-alpha-
|
56
|
+
"@graphql-hive/gateway-runtime": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
57
|
+
"@graphql-hive/importer": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
58
|
+
"@graphql-hive/logger": "1.0.1-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
59
|
+
"@graphql-hive/plugin-aws-sigv4": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
60
|
+
"@graphql-hive/plugin-deduplicate-request": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
61
|
+
"@graphql-hive/pubsub": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
62
62
|
"@graphql-mesh/cache-cfw-kv": "^0.105.5",
|
63
63
|
"@graphql-mesh/cache-localforage": "^0.105.6",
|
64
64
|
"@graphql-mesh/cache-redis": "^0.104.5",
|
65
65
|
"@graphql-mesh/cache-upstash-redis": "^0.1.5",
|
66
66
|
"@graphql-mesh/cross-helpers": "^0.4.10",
|
67
|
-
"@graphql-mesh/hmac-upstream-signature": "2.0.0-alpha-
|
67
|
+
"@graphql-mesh/hmac-upstream-signature": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
68
68
|
"@graphql-mesh/plugin-http-cache": "^0.105.6",
|
69
69
|
"@graphql-mesh/plugin-jit": "^0.2.5",
|
70
|
-
"@graphql-mesh/plugin-jwt-auth": "2.0.0-alpha-
|
71
|
-
"@graphql-mesh/plugin-opentelemetry": "2.0.0-alpha-
|
72
|
-
"@graphql-mesh/plugin-prometheus": "2.0.0-alpha-
|
70
|
+
"@graphql-mesh/plugin-jwt-auth": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
71
|
+
"@graphql-mesh/plugin-opentelemetry": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
72
|
+
"@graphql-mesh/plugin-prometheus": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
73
73
|
"@graphql-mesh/plugin-rate-limit": "^0.104.5",
|
74
74
|
"@graphql-mesh/plugin-snapshot": "^0.104.5",
|
75
|
-
"@graphql-mesh/transport-http": "1.0.0-alpha-
|
76
|
-
"@graphql-mesh/transport-http-callback": "1.0.0-alpha-
|
77
|
-
"@graphql-mesh/transport-ws": "2.0.0-alpha-
|
75
|
+
"@graphql-mesh/transport-http": "1.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
76
|
+
"@graphql-mesh/transport-http-callback": "1.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
77
|
+
"@graphql-mesh/transport-ws": "2.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
78
78
|
"@graphql-mesh/types": "^0.104.5",
|
79
79
|
"@graphql-mesh/utils": "^0.104.5",
|
80
80
|
"@graphql-tools/code-file-loader": "^8.1.15",
|
@@ -84,6 +84,7 @@
|
|
84
84
|
"@graphql-yoga/render-graphiql": "^5.15.1",
|
85
85
|
"@opentelemetry/api": "^1.9.0",
|
86
86
|
"@opentelemetry/api-logs": "^0.202.0",
|
87
|
+
"@opentelemetry/context-async-hooks": "^2.0.1",
|
87
88
|
"@opentelemetry/context-zone": "^2.0.1",
|
88
89
|
"@opentelemetry/core": "^2.0.1",
|
89
90
|
"@opentelemetry/exporter-jaeger": "^2.0.1",
|
@@ -93,15 +94,16 @@
|
|
93
94
|
"@opentelemetry/sampler-jaeger-remote": "^0.202.0",
|
94
95
|
"@opentelemetry/sdk-logs": "^0.202.0",
|
95
96
|
"@opentelemetry/sdk-metrics": "^2.0.1",
|
97
|
+
"@opentelemetry/sdk-trace-base": "^2.0.1",
|
96
98
|
"commander": "^13.1.0",
|
97
|
-
"dotenv": "^
|
99
|
+
"dotenv": "^17.2.0",
|
98
100
|
"graphql-ws": "^6.0.4",
|
99
101
|
"graphql-yoga": "^5.15.1",
|
100
102
|
"tslib": "^2.8.1",
|
101
|
-
"ws": "^8.18.
|
103
|
+
"ws": "^8.18.3"
|
102
104
|
},
|
103
105
|
"devDependencies": {
|
104
|
-
"@graphql-mesh/transport-common": "1.0.0-alpha-
|
106
|
+
"@graphql-mesh/transport-common": "1.0.0-alpha-be69ab8fa8cf618e4bf67dad92091aff852be2a4",
|
105
107
|
"@graphql-mesh/transport-soap": "^0.10.6",
|
106
108
|
"@graphql-tools/executor": "^1.4.7",
|
107
109
|
"@rollup/plugin-commonjs": "^28.0.0",
|
@@ -110,19 +112,19 @@
|
|
110
112
|
"@rollup/plugin-sucrase": "^5.0.2",
|
111
113
|
"@tsconfig/node18": "^18.2.4",
|
112
114
|
"@types/adm-zip": "^0.5.5",
|
113
|
-
"@types/bun": "1.2.
|
115
|
+
"@types/bun": "1.2.18",
|
114
116
|
"@types/ws": "^8.5.12",
|
115
117
|
"@whatwg-node/fetch": "^0.10.8",
|
116
118
|
"adm-zip": "^0.5.15",
|
117
|
-
"bun": "^1.2.
|
119
|
+
"bun": "^1.2.18",
|
118
120
|
"graphql": "^16.9.0",
|
119
121
|
"parse-duration": "^2.0.0",
|
120
|
-
"pkgroll": "2.
|
122
|
+
"pkgroll": "2.14.3",
|
121
123
|
"postject": "^1.0.0-alpha.6",
|
122
124
|
"rimraf": "^6.0.1",
|
123
125
|
"rollup": "4.44.0",
|
124
126
|
"rollup-plugin-tsconfig-paths": "^1.5.2",
|
125
|
-
"tsx": "4.
|
127
|
+
"tsx": "4.20.3"
|
126
128
|
},
|
127
129
|
"sideEffects": false
|
128
130
|
}
|