@isograph/compiler 0.3.1 → 0.4.1
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/artifacts/linux-arm64/isograph_cli +0 -0
- package/artifacts/linux-x64/isograph_cli +0 -0
- package/artifacts/macos-arm64/isograph_cli +0 -0
- package/artifacts/macos-x64/isograph_cli +0 -0
- package/artifacts/win-x64/isograph_cli.exe +0 -0
- package/isograph-config-schema.json +83 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -56,6 +56,33 @@
|
|
|
56
56
|
"esmodule"
|
|
57
57
|
]
|
|
58
58
|
},
|
|
59
|
+
"ConfigFileOpenTelemetryOptions": {
|
|
60
|
+
"type": "object",
|
|
61
|
+
"properties": {
|
|
62
|
+
"collector_endpoint": {
|
|
63
|
+
"description": "OTLP collector endpoint (e.g., http://localhost:4317)",
|
|
64
|
+
"default": null,
|
|
65
|
+
"type": [
|
|
66
|
+
"string",
|
|
67
|
+
"null"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
"enable_tracing": {
|
|
71
|
+
"description": "Enable sending traces to a collector",
|
|
72
|
+
"default": false,
|
|
73
|
+
"type": "boolean"
|
|
74
|
+
},
|
|
75
|
+
"service_name": {
|
|
76
|
+
"description": "Service name for traces",
|
|
77
|
+
"default": null,
|
|
78
|
+
"type": [
|
|
79
|
+
"string",
|
|
80
|
+
"null"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"additionalProperties": false
|
|
85
|
+
},
|
|
59
86
|
"ConfigFileOptionalValidationLevel": {
|
|
60
87
|
"oneOf": [
|
|
61
88
|
{
|
|
@@ -117,6 +144,62 @@
|
|
|
117
144
|
"$ref": "#/definitions/ConfigFileOptionalValidationLevel"
|
|
118
145
|
}
|
|
119
146
|
]
|
|
147
|
+
},
|
|
148
|
+
"open_telemetry": {
|
|
149
|
+
"description": "OpenTelemetry tracing configuration",
|
|
150
|
+
"anyOf": [
|
|
151
|
+
{
|
|
152
|
+
"$ref": "#/definitions/ConfigFileOpenTelemetryOptions"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": "null"
|
|
156
|
+
}
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
"persisted_documents": {
|
|
160
|
+
"description": "Persisted documents options",
|
|
161
|
+
"anyOf": [
|
|
162
|
+
{
|
|
163
|
+
"$ref": "#/definitions/ConfigFilePersistedDocumentsOptions"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"type": "null"
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"additionalProperties": false
|
|
172
|
+
},
|
|
173
|
+
"ConfigFilePersistedDocumentsHashAlgorithm": {
|
|
174
|
+
"type": "string",
|
|
175
|
+
"enum": [
|
|
176
|
+
"md5",
|
|
177
|
+
"sha256"
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
"ConfigFilePersistedDocumentsOptions": {
|
|
181
|
+
"type": "object",
|
|
182
|
+
"properties": {
|
|
183
|
+
"algorithm": {
|
|
184
|
+
"description": "The hashing algorithm used to compute document hashes.",
|
|
185
|
+
"allOf": [
|
|
186
|
+
{
|
|
187
|
+
"$ref": "#/definitions/ConfigFilePersistedDocumentsHashAlgorithm"
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
"file": {
|
|
192
|
+
"description": "The file name for the persisted documents Defaults to `persisted_documents.json`",
|
|
193
|
+
"default": null,
|
|
194
|
+
"type": [
|
|
195
|
+
"string",
|
|
196
|
+
"null"
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
"include_extra_info": {
|
|
200
|
+
"description": "Include extra info to the operation text",
|
|
201
|
+
"default": false,
|
|
202
|
+
"type": "boolean"
|
|
120
203
|
}
|
|
121
204
|
},
|
|
122
205
|
"additionalProperties": false
|