Initial commit: Add project files
ci / backend (push) Failing after 12s
ci / frontend (push) Failing after 19s
ci / static (push) Failing after 45s

This commit is contained in:
2026-08-02 05:15:36 +09:00
commit dcd1322d41
636 changed files with 122352 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "K-ArtSell CRUD Resource Contract v2",
"contractVersion": "2.0",
"required": [
"resourceId",
"querySchemaVersion",
"responseSchemaVersion",
"permissionPolicy",
"concurrencyMode",
"idempotencyMode",
"sensitiveFields"
],
"properties": {
"concurrencyMode": {
"enum": [
"NONE",
"ETAG_IF_MATCH"
]
},
"idempotencyMode": {
"enum": [
"NONE",
"IDEMPOTENCY_KEY"
]
},
"queryOwnership": {
"const": "VUE_ROUTER"
},
"serverStateOwnership": {
"const": "TANSTACK_QUERY"
},
"formOwnership": {
"const": "VEE_VALIDATE_ZOD"
}
}
}