Skip to content

Commit

Permalink
Upgrade @samchon/openapi
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Nov 11, 2024
1 parent f3e3c2b commit 30c7cea
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 22 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
"homepage": "https://typia.io",
"dependencies": {
"@samchon/openapi": "^1.2.0",
"@samchon/openapi": "^1.2.2",
"commander": "^10.0.0",
"comment-json": "^4.2.3",
"inquirer": "^8.2.5",
Expand Down
7 changes: 1 addition & 6 deletions test/schemas/llm/type/ConstantAtomicSimple.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@
{
"type": "boolean",
"enum": [
false
]
},
{
"type": "boolean",
"enum": [
false,
true
]
},
Expand Down
24 changes: 12 additions & 12 deletions test/schemas/llm/type/TupleHierarchical.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,20 @@
"items": {
"oneOf": [
{
"type": "boolean"
"type": "boolean",
"nullable": true
},
{
"type": "null"
},
{
"type": "number"
"type": "number",
"nullable": true
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
"type": "boolean",
"nullable": true
},
{
"type": "array",
Expand All @@ -46,12 +43,14 @@
]
},
"minItems": 2,
"maxItems": 2
"maxItems": 2,
"nullable": true
}
]
},
"minItems": 3,
"maxItems": 3
"maxItems": 3,
"nullable": true
},
{
"type": "array",
Expand Down Expand Up @@ -114,7 +113,8 @@
]
},
"minItems": 2,
"maxItems": 2
"maxItems": 2,
"nullable": true
}
]
},
Expand Down
3 changes: 2 additions & 1 deletion test/schemas/llm/type/TupleRestArray.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
}
]
},
"minItems": 2
"minItems": 2,
"maxItems": 2
}
3 changes: 2 additions & 1 deletion test/schemas/llm/type/TupleRestAtomic.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
}
]
},
"minItems": 2
"minItems": 2,
"maxItems": 2
}
3 changes: 2 additions & 1 deletion test/schemas/llm/type/TupleRestObject.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
}
]
},
"minItems": 2
"minItems": 2,
"maxItems": 2
}

0 comments on commit 30c7cea

Please sign in to comment.