(update files after merge)

This commit is contained in:
Olivier 'reivilibre
2025-11-13 15:55:25 +00:00
parent 16f443eba0
commit 1690570015
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
},
"session_counts": {
"description": "How many sessions the user has. Not populated if it's not a user logging in.",
"allOf": [
"description": "How many sessions the user has.\n Not populated if it's not a user logging in.",
"anyOf": [
{
"$ref": "#/definitions/SessionCounts"
},
{
"type": "null"
}
]
},
@@ -43,34 +46,34 @@
"SessionCounts": {
"description": "Information about how many sessions the user has",
"type": "object",
"required": [
"compat",
"oauth2",
"personal",
"total"
],
"properties": {
"total": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
"minimum": 0
},
"oauth2": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
"minimum": 0
},
"compat": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
"minimum": 0
},
"personal": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
"minimum": 0
}
}
},
"required": [
"total",
"oauth2",
"compat",
"personal"
]
},
"GrantType": {
"type": "string",