fixing ordering checkpoint

This commit is contained in:
2026-05-14 03:21:12 -04:00
parent 3d918a1acc
commit 3034406706
14 changed files with 89 additions and 85 deletions

View File

@ -127,7 +127,7 @@ fn test_library_api() {
"forward": true
}
},
"compiledPropertyNames": ["name", "target", "type"],
"compiledPropertyNames": ["type", "name", "target"],
"properties": {
"name": { "type": "string" },
"target": {
@ -140,19 +140,19 @@ fn test_library_api() {
"type": "object"
},
"source_schema.filter": {
"compiledPropertyNames": ["$and", "$or", "name", "target", "type"],
"compiledPropertyNames": ["type", "name", "target", "$and", "$or"],
"properties": {
"$and": {
"type": ["array", "null"],
"items": {
"compiledPropertyNames": ["$and", "$or", "name", "target", "type"],
"compiledPropertyNames": ["type", "name", "target", "$and", "$or"],
"type": "source_schema.filter"
}
},
"$or": {
"type": ["array", "null"],
"items": {
"compiledPropertyNames": ["$and", "$or", "name", "target", "type"],
"compiledPropertyNames": ["type", "name", "target", "$and", "$or"],
"type": "source_schema.filter"
}
},
@ -193,19 +193,19 @@ fn test_library_api() {
"type": "object"
},
"target_schema.filter": {
"compiledPropertyNames": ["$and", "$or", "value"],
"compiledPropertyNames": ["value", "$and", "$or"],
"properties": {
"$and": {
"type": ["array", "null"],
"items": {
"compiledPropertyNames": ["$and", "$or", "value"],
"compiledPropertyNames": ["value", "$and", "$or"],
"type": "target_schema.filter"
}
},
"$or": {
"type": ["array", "null"],
"items": {
"compiledPropertyNames": ["$and", "$or", "value"],
"compiledPropertyNames": ["value", "$and", "$or"],
"type": "target_schema.filter"
}
},