committed by
GitHub
10 changed files with 263 additions and 27 deletions
@ -0,0 +1,66 @@ |
|||||
|
""" |
||||
|
The MIT License (MIT) |
||||
|
|
||||
|
Copyright (c) 2015-present Rapptz |
||||
|
|
||||
|
Permission is hereby granted, free of charge, to any person obtaining a |
||||
|
copy of this software and associated documentation files (the "Software"), |
||||
|
to deal in the Software without restriction, including without limitation |
||||
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
||||
|
and/or sell copies of the Software, and to permit persons to whom the |
||||
|
Software is furnished to do so, subject to the following conditions: |
||||
|
|
||||
|
The above copyright notice and this permission notice shall be included in |
||||
|
all copies or substantial portions of the Software. |
||||
|
|
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
||||
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
||||
|
DEALINGS IN THE SOFTWARE. |
||||
|
""" |
||||
|
|
||||
|
from __future__ import annotations |
||||
|
|
||||
|
from typing import TypedDict, List, Optional |
||||
|
|
||||
|
from .user import User |
||||
|
from .team import Team |
||||
|
from .snowflake import Snowflake |
||||
|
|
||||
|
class BaseAppInfo(TypedDict): |
||||
|
id: Snowflake |
||||
|
name: str |
||||
|
verify_key: str |
||||
|
icon: Optional[str] |
||||
|
summary: str |
||||
|
description: str |
||||
|
|
||||
|
class _AppInfoOptional(TypedDict, total=False): |
||||
|
team: Team |
||||
|
guild_id: Snowflake |
||||
|
primary_sku_id: Snowflake |
||||
|
slug: str |
||||
|
terms_of_service_url: str |
||||
|
privacy_policy_url: str |
||||
|
hook: bool |
||||
|
max_participants: int |
||||
|
|
||||
|
class AppInfo(BaseAppInfo, _AppInfoOptional): |
||||
|
rpc_origins: List[str] |
||||
|
owner: User |
||||
|
bot_public: bool |
||||
|
bot_require_code_grant: bool |
||||
|
|
||||
|
class _PartialAppInfoOptional(TypedDict, total=False): |
||||
|
rpc_origins: List[str] |
||||
|
cover_image: str |
||||
|
hook: bool |
||||
|
terms_of_service_url: str |
||||
|
privacy_policy_url: str |
||||
|
max_participants: int |
||||
|
|
||||
|
class PartialAppInfo(_PartialAppInfoOptional, BaseAppInfo): |
||||
|
pass |
@ -0,0 +1,43 @@ |
|||||
|
""" |
||||
|
The MIT License (MIT) |
||||
|
|
||||
|
Copyright (c) 2015-present Rapptz |
||||
|
|
||||
|
Permission is hereby granted, free of charge, to any person obtaining a |
||||
|
copy of this software and associated documentation files (the "Software"), |
||||
|
to deal in the Software without restriction, including without limitation |
||||
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
||||
|
and/or sell copies of the Software, and to permit persons to whom the |
||||
|
Software is furnished to do so, subject to the following conditions: |
||||
|
|
||||
|
The above copyright notice and this permission notice shall be included in |
||||
|
all copies or substantial portions of the Software. |
||||
|
|
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
||||
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
||||
|
DEALINGS IN THE SOFTWARE. |
||||
|
""" |
||||
|
|
||||
|
from __future__ import annotations |
||||
|
|
||||
|
from typing import TypedDict, List |
||||
|
|
||||
|
from .user import PartialUser |
||||
|
from .snowflake import Snowflake |
||||
|
|
||||
|
class TeamMember(TypedDict): |
||||
|
user: PartialUser |
||||
|
membership_state: int |
||||
|
permissions: List[str] |
||||
|
team_id: Snowflake |
||||
|
|
||||
|
class Team(TypedDict): |
||||
|
id: Snowflake |
||||
|
name: str |
||||
|
owner_id: Snowflake |
||||
|
members: List[TeamMember] |
||||
|
icon: str |
Loading…
Reference in new issue