@isograph/compiler 0.0.0-main-bdb28ffc → 0.0.0-main-7f26b15a
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 +45 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -117,6 +117,51 @@
|
|
|
117
117
|
"$ref": "#/definitions/ConfigFileOptionalValidationLevel"
|
|
118
118
|
}
|
|
119
119
|
]
|
|
120
|
+
},
|
|
121
|
+
"persisted_documents": {
|
|
122
|
+
"description": "Persisted documents options",
|
|
123
|
+
"anyOf": [
|
|
124
|
+
{
|
|
125
|
+
"$ref": "#/definitions/ConfigFilePersistedDocumentsOptions"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"type": "null"
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"additionalProperties": false
|
|
134
|
+
},
|
|
135
|
+
"ConfigFilePersistedDocumentsHashAlgorithm": {
|
|
136
|
+
"type": "string",
|
|
137
|
+
"enum": [
|
|
138
|
+
"md5",
|
|
139
|
+
"sha256"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
"ConfigFilePersistedDocumentsOptions": {
|
|
143
|
+
"type": "object",
|
|
144
|
+
"properties": {
|
|
145
|
+
"algorithm": {
|
|
146
|
+
"description": "The hashing algorithm used to compute document hashes.",
|
|
147
|
+
"allOf": [
|
|
148
|
+
{
|
|
149
|
+
"$ref": "#/definitions/ConfigFilePersistedDocumentsHashAlgorithm"
|
|
150
|
+
}
|
|
151
|
+
]
|
|
152
|
+
},
|
|
153
|
+
"file": {
|
|
154
|
+
"description": "The file name for the persisted documents Defaults to `persisted_documents.json`",
|
|
155
|
+
"default": null,
|
|
156
|
+
"type": [
|
|
157
|
+
"string",
|
|
158
|
+
"null"
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
"include_extra_info": {
|
|
162
|
+
"description": "Include extra info to the operation text",
|
|
163
|
+
"default": false,
|
|
164
|
+
"type": "boolean"
|
|
120
165
|
}
|
|
121
166
|
},
|
|
122
167
|
"additionalProperties": false
|
package/package.json
CHANGED