Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
vendorpull https://github.com/sourcemeta/vendorpull 1dcbac42809cf87cb5b045106b863e17ad84ba02
uwebsockets https://github.com/uNetworking/uWebSockets v20.74.0
core https://github.com/sourcemeta/core 45dd685ea143672fa7384e210f64f8b6de13487e
blaze https://github.com/sourcemeta/blaze 644a3582f3015a92cccdb5ca582c9b2c97e93878
jsonbinpack https://github.com/sourcemeta/jsonbinpack 0c2340990bf31c630155991a93306990d9d94fd4
core https://github.com/sourcemeta/core 6d1acddbe4888f0ca3b98a13f13f7b1fa44be964
blaze https://github.com/sourcemeta/blaze ed6889f138b0b446cce79e5adb4c7facaefd6846
jsonbinpack https://github.com/sourcemeta/jsonbinpack 5e0e10c4550a2e5d4c13af037d3bb295acb19726
hydra https://github.com/sourcemeta/hydra c86d2165a2f27f838837af1a5af24b1055a35317
codegen https://github.com/sourcemeta/codegen 10466c0216d36cdc65cf8e951f1dcf85cc580502
jsonschema https://github.com/sourcemeta/jsonschema c15220ffa8c168ab17ba2c02e11d95504e463ddb
codegen https://github.com/sourcemeta/codegen f1c1cc50799b69ce8a5bb970e606f229b7fe60a1
jsonschema https://github.com/sourcemeta/jsonschema v14.6.0
bootstrap https://github.com/twbs/bootstrap v5.3.3
bootstrap-icons https://github.com/twbs/icons v1.11.3
collections/sourcemeta/std/v0 https://github.com/sourcemeta/std v0.4.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"relativePointer",
"dialect",
"baseDialect",
"propertyName"
"propertyName",
"orphan"
],
"properties": {
"type": {
Expand Down Expand Up @@ -77,6 +78,9 @@
},
"propertyName": {
"type": "boolean"
},
"orphan": {
"type": "boolean"
}
},
"additionalProperties": false
Expand Down
2 changes: 2 additions & 0 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ GET /self/v1/api/schemas/locations/{path}
| `/static/*/position/2` | Integer | Yes | Ending line number |
| `/static/*/position/3` | Integer | Yes | Ending column number |
| `/static/*/propertyName` | Boolean | Yes | Whether the location applies to a property name |
| `/static/*/orphan` | Boolean | Yes | Whether the location is inside a definitions container |
| `/dynamic` | Object | Yes | Dynamic URI locations within the schema |
| `/dynamic/*` | Object | Yes | Metadata for a specific URI location |
| `/dynamic/*/base` | String | Yes | The base URI of the location |
Expand All @@ -348,6 +349,7 @@ GET /self/v1/api/schemas/locations/{path}
| `/dynamic/*/position/2` | Integer | Yes | Ending line number |
| `/dynamic/*/position/3` | Integer | Yes | Ending column number |
| `/dynamic/*/propertyName` | Boolean | Yes | Whether the location applies to a property name |
| `/dynamic/*/orphan` | Boolean | Yes | Whether the location is inside a definitions container |

=== "404"

Expand Down
58 changes: 46 additions & 12 deletions vendor/blaze/src/compiler/compile.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions vendor/blaze/src/compiler/include/sourcemeta/blaze/compiler.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions vendor/blaze/src/linter/include/sourcemeta/blaze/linter.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions vendor/blaze/src/linter/valid_default.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions vendor/blaze/src/linter/valid_examples.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions vendor/codegen/src/generator/typescript.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions vendor/codegen/src/ir/include/sourcemeta/codegen/ir.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion vendor/codegen/src/ir/ir.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 17 additions & 3 deletions vendor/codegen/src/ir/ir_default_compiler.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading