summary refs log tree commit diff
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-01-11 17:46:53 +0100
committerRory& <root@rory.gay>2026-01-11 17:46:53 +0100
commit3133c50e55859be16ccaab463bb96afabbcc5330 (patch)
treef761913240baff87fa91ca8f7344b78529c72577
parentExclude captcha response schemas, KeySchema (diff)
downloadserver-ts-3133c50e55859be16ccaab463bb96afabbcc5330.tar.xz
Forgot to include assets
-rw-r--r--assets/openapi.json179
-rw-r--r--assets/schemas.json187
2 files changed, 0 insertions, 366 deletions
diff --git a/assets/openapi.json b/assets/openapi.json

index 92823b8f..c08c2810 100644 --- a/assets/openapi.json +++ b/assets/openapi.json
@@ -171,46 +171,6 @@ "token_type" ] }, - "KeySchema": { - "type": "object", - "properties": { - "_type": { - "type": [ - "string", - "integer", - "object" - ] - }, - "_output": { - "type": [ - "string", - "integer", - "object" - ] - }, - "_input": {}, - "_def": {}, - "description": { - "type": "string" - }, - "~standard": { - "$ref": "#/components/schemas/StandardSchemaV1.Props<any,string|number|symbol>" - }, - "spa": { - "description": "Alias of safeParseAsync", - "type": "object", - "additionalProperties": false - } - }, - "required": [ - "_def", - "_input", - "_output", - "_type", - "spa", - "~standard" - ] - }, "RouteResponse": { "type": "object", "properties": { @@ -226,80 +186,6 @@ } } }, - "hcaptchaResponse": { - "type": "object", - "properties": { - "success": { - "type": "boolean" - }, - "challenge_ts": { - "type": "string" - }, - "hostname": { - "type": "string" - }, - "credit": { - "type": "boolean" - }, - "error-codes": { - "type": "array", - "items": { - "type": "string" - } - }, - "score": { - "type": "integer" - }, - "score_reason": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "challenge_ts", - "credit", - "error-codes", - "hostname", - "score", - "score_reason", - "success" - ] - }, - "recaptchaResponse": { - "type": "object", - "properties": { - "success": { - "type": "boolean" - }, - "score": { - "type": "integer" - }, - "action": { - "type": "string" - }, - "challenge_ts": { - "type": "string" - }, - "hostname": { - "type": "string" - }, - "error-codes": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "action", - "challenge_ts", - "hostname", - "score", - "success" - ] - }, "FieldErrorResponse": { "type": "object", "properties": { @@ -319,71 +205,6 @@ "message" ] }, - "AbuseIpDbBlacklistResponse": { - "type": "object", - "properties": { - "meta": { - "type": "object", - "properties": { - "generatedAt": { - "type": "string", - "default": "2020-09-24T19:54:11+00:00" - } - }, - "additionalProperties": false, - "required": [ - "generatedAt" - ] - }, - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "ipAddress": { - "type": "string", - "default": "5.188.10.179" - }, - "abuseConfidenceScore": { - "type": "integer", - "default": 100 - }, - "lastReportedAt": { - "type": "string", - "default": "2020-09-24T19:17:02+00:00" - } - }, - "additionalProperties": false, - "required": [ - "abuseConfidenceScore", - "ipAddress", - "lastReportedAt" - ] - }, - "default": [ - { - "ipAddress": "5.188.10.179", - "abuseConfidenceScore": 100, - "lastReportedAt": "2020-09-24T19:17:02+00:00" - }, - { - "ipAddress": "185.222.209.14", - "abuseConfidenceScore": 100, - "lastReportedAt": "2020-09-24T19:17:02+00:00" - }, - { - "ipAddress": "191.96.249.183", - "abuseConfidenceScore": 100, - "lastReportedAt": "2020-09-24T19:17:01+00:00" - } - ] - } - }, - "required": [ - "data", - "meta" - ] - }, "InteractionSchema": { "type": "object", "properties": { diff --git a/assets/schemas.json b/assets/schemas.json
index 8cb3da25..6d334cfd 100644 --- a/assets/schemas.json +++ b/assets/schemas.json
@@ -152,48 +152,6 @@ ], "$schema": "http://json-schema.org/draft-07/schema#" }, - "KeySchema": { - "type": "object", - "properties": { - "_type": { - "type": [ - "string", - "integer", - "object" - ] - }, - "_output": { - "type": [ - "string", - "integer", - "object" - ] - }, - "_input": {}, - "_def": {}, - "description": { - "type": "string" - }, - "~standard": { - "$ref": "#/definitions/StandardSchemaV1.Props<any,string|number|symbol>" - }, - "spa": { - "description": "Alias of safeParseAsync", - "type": "object", - "additionalProperties": false - } - }, - "additionalProperties": false, - "required": [ - "_def", - "_input", - "_output", - "_type", - "spa", - "~standard" - ], - "$schema": "http://json-schema.org/draft-07/schema#" - }, "RouteResponse": { "type": "object", "properties": { @@ -211,84 +169,6 @@ "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#" }, - "hcaptchaResponse": { - "type": "object", - "properties": { - "success": { - "type": "boolean" - }, - "challenge_ts": { - "type": "string" - }, - "hostname": { - "type": "string" - }, - "credit": { - "type": "boolean" - }, - "error-codes": { - "type": "array", - "items": { - "type": "string" - } - }, - "score": { - "type": "integer" - }, - "score_reason": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "additionalProperties": false, - "required": [ - "challenge_ts", - "credit", - "error-codes", - "hostname", - "score", - "score_reason", - "success" - ], - "$schema": "http://json-schema.org/draft-07/schema#" - }, - "recaptchaResponse": { - "type": "object", - "properties": { - "success": { - "type": "boolean" - }, - "score": { - "type": "integer" - }, - "action": { - "type": "string" - }, - "challenge_ts": { - "type": "string" - }, - "hostname": { - "type": "string" - }, - "error-codes": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "additionalProperties": false, - "required": [ - "action", - "challenge_ts", - "hostname", - "score", - "success" - ], - "$schema": "http://json-schema.org/draft-07/schema#" - }, "FieldErrorResponse": { "type": "object", "properties": { @@ -310,73 +190,6 @@ ], "$schema": "http://json-schema.org/draft-07/schema#" }, - "AbuseIpDbBlacklistResponse": { - "type": "object", - "properties": { - "meta": { - "type": "object", - "properties": { - "generatedAt": { - "type": "string", - "default": "2020-09-24T19:54:11+00:00" - } - }, - "additionalProperties": false, - "required": [ - "generatedAt" - ] - }, - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "ipAddress": { - "type": "string", - "default": "5.188.10.179" - }, - "abuseConfidenceScore": { - "type": "integer", - "default": 100 - }, - "lastReportedAt": { - "type": "string", - "default": "2020-09-24T19:17:02+00:00" - } - }, - "additionalProperties": false, - "required": [ - "abuseConfidenceScore", - "ipAddress", - "lastReportedAt" - ] - }, - "default": [ - { - "ipAddress": "5.188.10.179", - "abuseConfidenceScore": 100, - "lastReportedAt": "2020-09-24T19:17:02+00:00" - }, - { - "ipAddress": "185.222.209.14", - "abuseConfidenceScore": 100, - "lastReportedAt": "2020-09-24T19:17:02+00:00" - }, - { - "ipAddress": "191.96.249.183", - "abuseConfidenceScore": 100, - "lastReportedAt": "2020-09-24T19:17:01+00:00" - } - ] - } - }, - "additionalProperties": false, - "required": [ - "data", - "meta" - ], - "$schema": "http://json-schema.org/draft-07/schema#" - }, "InteractionSchema": { "type": "object", "properties": {