(update files after merge)

This commit is contained in:
Olivier 'reivilibre
2025-11-13 15:55:25 +00:00
parent 236de8f071
commit c007695e04
2 changed files with 2899 additions and 13 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -12,10 +12,13 @@
"additionalProperties": true "additionalProperties": true
}, },
"session_counts": { "session_counts": {
"description": "How many sessions the user has. Not populated if it's not a user logging in.", "description": "How many sessions the user has.\n Not populated if it's not a user logging in.",
"allOf": [ "anyOf": [
{ {
"$ref": "#/definitions/SessionCounts" "$ref": "#/definitions/SessionCounts"
},
{
"type": "null"
} }
] ]
}, },
@@ -43,34 +46,34 @@
"SessionCounts": { "SessionCounts": {
"description": "Information about how many sessions the user has", "description": "Information about how many sessions the user has",
"type": "object", "type": "object",
"required": [
"compat",
"oauth2",
"personal",
"total"
],
"properties": { "properties": {
"total": { "total": {
"type": "integer", "type": "integer",
"format": "uint64", "format": "uint64",
"minimum": 0.0 "minimum": 0
}, },
"oauth2": { "oauth2": {
"type": "integer", "type": "integer",
"format": "uint64", "format": "uint64",
"minimum": 0.0 "minimum": 0
}, },
"compat": { "compat": {
"type": "integer", "type": "integer",
"format": "uint64", "format": "uint64",
"minimum": 0.0 "minimum": 0
}, },
"personal": { "personal": {
"type": "integer", "type": "integer",
"format": "uint64", "format": "uint64",
"minimum": 0.0 "minimum": 0
} }
} },
"required": [
"total",
"oauth2",
"compat",
"personal"
]
}, },
"GrantType": { "GrantType": {
"type": "string", "type": "string",