Update api spec (#434)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
06a646e558
commit
1744ab6385
File diff suppressed because it is too large
Load Diff
@ -6,12 +6,12 @@ class SupportTier(str, Enum):
|
|||||||
|
|
||||||
"""# Community support. """ # noqa: E501
|
"""# Community support. """ # noqa: E501
|
||||||
COMMUNITY = "community"
|
COMMUNITY = "community"
|
||||||
"""# Standard support. """ # noqa: E501
|
"""# Standard email support. """ # noqa: E501
|
||||||
STANDARD = "standard"
|
STANDARD_EMAIL = "standard_email"
|
||||||
|
"""# Priority email support. """ # noqa: E501
|
||||||
|
PRIORITY_EMAIL = "priority_email"
|
||||||
"""# Premium support. """ # noqa: E501
|
"""# Premium support. """ # noqa: E501
|
||||||
PREMIUM = "premium"
|
PREMIUM = "premium"
|
||||||
"""# Priority support. """ # noqa: E501
|
|
||||||
PRIORITY = "priority"
|
|
||||||
|
|
||||||
def __str__(self) -> str:
|
def __str__(self) -> str:
|
||||||
return str(self.value)
|
return str(self.value)
|
||||||
|
18
spec.json
18
spec.json
@ -33557,10 +33557,17 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Standard support.",
|
"description": "Standard email support.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"standard"
|
"standard_email"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Priority email support.",
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"priority_email"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -33569,13 +33576,6 @@
|
|||||||
"enum": [
|
"enum": [
|
||||||
"premium"
|
"premium"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "Priority support.",
|
|
||||||
"type": "string",
|
|
||||||
"enum": [
|
|
||||||
"priority"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user