Automated spec update (140116)

This commit is contained in:
Nelly (automation bot) 2025-08-20 01:13:55 +00:00
parent 976faf177d
commit 68a1e96553
2 changed files with 92 additions and 2 deletions

View file

@ -21845,12 +21845,16 @@
"base_mix": { "base_mix": {
"type": "integer", "type": "integer",
"format": "int32" "format": "int32"
},
"base_theme": {
"$ref": "#/components/schemas/MessageShareCustomUserThemeBaseTheme"
} }
}, },
"required": [ "required": [
"colors", "colors",
"gradient_angle", "gradient_angle",
"base_mix" "base_mix",
"base_theme"
] ]
}, },
"CustomClientThemeShareRequest": { "CustomClientThemeShareRequest": {
@ -21877,6 +21881,16 @@
"minimum": 0, "minimum": 0,
"maximum": 100, "maximum": 100,
"format": "int32" "format": "int32"
},
"base_theme": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/MessageShareCustomUserThemeBaseTheme"
}
]
} }
}, },
"required": [ "required": [
@ -30802,6 +30816,37 @@
"is_renewal" "is_renewal"
] ]
}, },
"MessageShareCustomUserThemeBaseTheme": {
"type": "integer",
"oneOf": [
{
"title": "UNSET",
"description": "No base theme",
"const": 0
},
{
"title": "DARK",
"description": "Dark base theme",
"const": 1
},
{
"title": "LIGHT",
"description": "Light base theme",
"const": 2
},
{
"title": "DARKER",
"description": "Darker base theme",
"const": 3
},
{
"title": "MIDNIGHT",
"description": "Midnight base theme",
"const": 4
}
],
"format": "int32"
},
"MessageSnapshotResponse": { "MessageSnapshotResponse": {
"type": "object", "type": "object",
"properties": { "properties": {

View file

@ -22275,12 +22275,16 @@
"base_mix": { "base_mix": {
"type": "integer", "type": "integer",
"format": "int32" "format": "int32"
},
"base_theme": {
"$ref": "#/components/schemas/MessageShareCustomUserThemeBaseTheme"
} }
}, },
"required": [ "required": [
"colors", "colors",
"gradient_angle", "gradient_angle",
"base_mix" "base_mix",
"base_theme"
] ]
}, },
"CustomClientThemeShareRequest": { "CustomClientThemeShareRequest": {
@ -22307,6 +22311,16 @@
"minimum": 0, "minimum": 0,
"maximum": 100, "maximum": 100,
"format": "int32" "format": "int32"
},
"base_theme": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/MessageShareCustomUserThemeBaseTheme"
}
]
} }
}, },
"required": [ "required": [
@ -31409,6 +31423,37 @@
"is_renewal" "is_renewal"
] ]
}, },
"MessageShareCustomUserThemeBaseTheme": {
"type": "integer",
"oneOf": [
{
"title": "UNSET",
"description": "No base theme",
"const": 0
},
{
"title": "DARK",
"description": "Dark base theme",
"const": 1
},
{
"title": "LIGHT",
"description": "Light base theme",
"const": 2
},
{
"title": "DARKER",
"description": "Darker base theme",
"const": 3
},
{
"title": "MIDNIGHT",
"description": "Midnight base theme",
"const": 4
}
],
"format": "int32"
},
"MessageSnapshotResponse": { "MessageSnapshotResponse": {
"type": "object", "type": "object",
"properties": { "properties": {