|
977 | 977 | "view_nsfw_guilds" |
978 | 978 | ] |
979 | 979 | }, |
| 980 | + "StickersResponse": { |
| 981 | + "type": "array", |
| 982 | + "items": { |
| 983 | + "$ref": "#/components/schemas/StickerResponse" |
| 984 | + } |
| 985 | + }, |
| 986 | + "StickerResponse": { |
| 987 | + "type": "object", |
| 988 | + "properties": { |
| 989 | + "id": { |
| 990 | + "description": "A Twitter-like snowflake, except the epoch is 2015-01-01T00:00:00.000Z\n```\nIf we have a snowflake '266241948824764416' we can represent it as binary:\n\n64 22 17 12 0\n 000000111011000111100001101001000101000000 00001 00000 000000000000\n number of ms since Discord epoch worker pid increment\n```", |
| 991 | + "type": "string" |
| 992 | + }, |
| 993 | + "pack_id": { |
| 994 | + "description": "A Twitter-like snowflake, except the epoch is 2015-01-01T00:00:00.000Z\n```\nIf we have a snowflake '266241948824764416' we can represent it as binary:\n\n64 22 17 12 0\n 000000111011000111100001101001000101000000 00001 00000 000000000000\n number of ms since Discord epoch worker pid increment\n```", |
| 995 | + "type": "string" |
| 996 | + }, |
| 997 | + "name": { |
| 998 | + "type": "string" |
| 999 | + }, |
| 1000 | + "description": { |
| 1001 | + "type": "string", |
| 1002 | + "nullable": true |
| 1003 | + }, |
| 1004 | + "tags": { |
| 1005 | + "type": "string" |
| 1006 | + }, |
| 1007 | + "type": { |
| 1008 | + "$ref": "#/components/schemas/StickerType" |
| 1009 | + }, |
| 1010 | + "format_type": { |
| 1011 | + "$ref": "#/components/schemas/StickerFormatType" |
| 1012 | + }, |
| 1013 | + "available": { |
| 1014 | + "type": "boolean" |
| 1015 | + }, |
| 1016 | + "guild_id": { |
| 1017 | + "description": "A Twitter-like snowflake, except the epoch is 2015-01-01T00:00:00.000Z\n```\nIf we have a snowflake '266241948824764416' we can represent it as binary:\n\n64 22 17 12 0\n 000000111011000111100001101001000101000000 00001 00000 000000000000\n number of ms since Discord epoch worker pid increment\n```", |
| 1018 | + "type": "string" |
| 1019 | + }, |
| 1020 | + "user": { |
| 1021 | + "$ref": "#/components/schemas/PartialUser" |
| 1022 | + }, |
| 1023 | + "sort_value": { |
| 1024 | + "type": "integer" |
| 1025 | + } |
| 1026 | + }, |
| 1027 | + "required": [ |
| 1028 | + "description", |
| 1029 | + "format_type", |
| 1030 | + "id", |
| 1031 | + "name", |
| 1032 | + "tags", |
| 1033 | + "type" |
| 1034 | + ] |
| 1035 | + }, |
980 | 1036 | "IdentifySchema": { |
981 | 1037 | "type": "object", |
982 | 1038 | "properties": { |
|
3161 | 3217 | "$ref": "#/components/schemas/Channel" |
3162 | 3218 | } |
3163 | 3219 | }, |
3164 | | - "APIEmojiArray": { |
3165 | | - "type": "array", |
3166 | | - "items": { |
3167 | | - "$ref": "#/components/schemas/Emoji" |
3168 | | - } |
3169 | | - }, |
3170 | 3220 | "APIMemberArray": { |
3171 | 3221 | "type": "array", |
3172 | 3222 | "items": { |
|
3185 | 3235 | "flags": { |
3186 | 3236 | "type": "integer" |
3187 | 3237 | }, |
3188 | | - "mute": { |
3189 | | - "type": "boolean" |
3190 | | - }, |
3191 | | - "deaf": { |
3192 | | - "type": "boolean" |
3193 | | - }, |
3194 | 3238 | "nick": { |
3195 | 3239 | "type": "string" |
3196 | 3240 | }, |
|
3201 | 3245 | "pending": { |
3202 | 3246 | "type": "boolean" |
3203 | 3247 | }, |
| 3248 | + "deaf": { |
| 3249 | + "type": "boolean" |
| 3250 | + }, |
| 3251 | + "mute": { |
| 3252 | + "type": "boolean" |
| 3253 | + }, |
3204 | 3254 | "premium_since": { |
3205 | 3255 | "type": "integer" |
3206 | 3256 | }, |
|
3425 | 3475 | "$ref": "#/components/schemas/Role" |
3426 | 3476 | } |
3427 | 3477 | }, |
3428 | | - "APIStickerArray": { |
3429 | | - "type": "array", |
3430 | | - "items": { |
3431 | | - "$ref": "#/components/schemas/Sticker" |
3432 | | - } |
3433 | | - }, |
3434 | 3478 | "APITemplateArray": { |
3435 | 3479 | "type": "array", |
3436 | 3480 | "items": { |
|
3474 | 3518 | "user" |
3475 | 3519 | ] |
3476 | 3520 | }, |
3477 | | - "APIStickerPackArray": { |
3478 | | - "type": "array", |
3479 | | - "items": { |
3480 | | - "$ref": "#/components/schemas/StickerPack" |
3481 | | - } |
3482 | | - }, |
3483 | 3521 | "APIConnectionsConfiguration": { |
3484 | 3522 | "type": "object" |
3485 | 3523 | }, |
|
11740 | 11778 | "flags": { |
11741 | 11779 | "type": "integer" |
11742 | 11780 | }, |
11743 | | - "mute": { |
11744 | | - "type": "boolean" |
11745 | | - }, |
11746 | | - "deaf": { |
11747 | | - "type": "boolean" |
11748 | | - }, |
11749 | 11781 | "nick": { |
11750 | 11782 | "type": "string" |
11751 | 11783 | }, |
|
11756 | 11788 | "pending": { |
11757 | 11789 | "type": "boolean" |
11758 | 11790 | }, |
| 11791 | + "deaf": { |
| 11792 | + "type": "boolean" |
| 11793 | + }, |
| 11794 | + "mute": { |
| 11795 | + "type": "boolean" |
| 11796 | + }, |
11759 | 11797 | "premium_since": { |
11760 | 11798 | "type": "integer" |
11761 | 11799 | }, |
|
11993 | 12031 | } |
11994 | 12032 | } |
11995 | 12033 | }, |
| 12034 | + "PartialUser": { |
| 12035 | + "type": "object", |
| 12036 | + "properties": { |
| 12037 | + "id": { |
| 12038 | + "description": "A Twitter-like snowflake, except the epoch is 2015-01-01T00:00:00.000Z\n```\nIf we have a snowflake '266241948824764416' we can represent it as binary:\n\n64 22 17 12 0\n 000000111011000111100001101001000101000000 00001 00000 000000000000\n number of ms since Discord epoch worker pid increment\n```", |
| 12039 | + "type": "string" |
| 12040 | + }, |
| 12041 | + "username": { |
| 12042 | + "type": "string" |
| 12043 | + }, |
| 12044 | + "discriminator": { |
| 12045 | + "type": "string" |
| 12046 | + }, |
| 12047 | + "global_name": { |
| 12048 | + "type": "string", |
| 12049 | + "nullable": true |
| 12050 | + }, |
| 12051 | + "avatar": { |
| 12052 | + "type": "string", |
| 12053 | + "nullable": true |
| 12054 | + }, |
| 12055 | + "avatar_decoration_data": { |
| 12056 | + "anyOf": [ |
| 12057 | + { |
| 12058 | + "$ref": "#/components/schemas/AvatarDecorationData" |
| 12059 | + }, |
| 12060 | + { |
| 12061 | + "type": "null" |
| 12062 | + } |
| 12063 | + ] |
| 12064 | + }, |
| 12065 | + "collectibles": { |
| 12066 | + "anyOf": [ |
| 12067 | + { |
| 12068 | + "$ref": "#/components/schemas/Collectibles" |
| 12069 | + }, |
| 12070 | + { |
| 12071 | + "type": "null" |
| 12072 | + } |
| 12073 | + ] |
| 12074 | + }, |
| 12075 | + "display_name_styles": { |
| 12076 | + "anyOf": [ |
| 12077 | + { |
| 12078 | + "$ref": "#/components/schemas/DisplayNameStyle" |
| 12079 | + }, |
| 12080 | + { |
| 12081 | + "type": "null" |
| 12082 | + } |
| 12083 | + ] |
| 12084 | + }, |
| 12085 | + "primary_guild": { |
| 12086 | + "anyOf": [ |
| 12087 | + { |
| 12088 | + "$ref": "#/components/schemas/PrimaryGuild" |
| 12089 | + }, |
| 12090 | + { |
| 12091 | + "type": "null" |
| 12092 | + } |
| 12093 | + ] |
| 12094 | + }, |
| 12095 | + "bot": { |
| 12096 | + "type": "boolean" |
| 12097 | + }, |
| 12098 | + "system": { |
| 12099 | + "type": "boolean" |
| 12100 | + }, |
| 12101 | + "banner": { |
| 12102 | + "type": "string", |
| 12103 | + "nullable": true |
| 12104 | + }, |
| 12105 | + "accent_color": { |
| 12106 | + "type": "integer", |
| 12107 | + "nullable": true |
| 12108 | + }, |
| 12109 | + "public_flags": { |
| 12110 | + "type": "integer" |
| 12111 | + } |
| 12112 | + }, |
| 12113 | + "required": [ |
| 12114 | + "avatar", |
| 12115 | + "discriminator", |
| 12116 | + "id", |
| 12117 | + "username" |
| 12118 | + ] |
| 12119 | + }, |
11996 | 12120 | "Classification": { |
11997 | 12121 | "type": "object", |
11998 | 12122 | "properties": { |
|
12880 | 13004 | "type" |
12881 | 13005 | ] |
12882 | 13006 | }, |
12883 | | - "PartialUser": { |
12884 | | - "type": "object", |
12885 | | - "properties": { |
12886 | | - "id": { |
12887 | | - "description": "A Twitter-like snowflake, except the epoch is 2015-01-01T00:00:00.000Z\n```\nIf we have a snowflake '266241948824764416' we can represent it as binary:\n\n64 22 17 12 0\n 000000111011000111100001101001000101000000 00001 00000 000000000000\n number of ms since Discord epoch worker pid increment\n```", |
12888 | | - "type": "string" |
12889 | | - }, |
12890 | | - "username": { |
12891 | | - "type": "string" |
12892 | | - }, |
12893 | | - "discriminator": { |
12894 | | - "type": "string" |
12895 | | - }, |
12896 | | - "global_name": { |
12897 | | - "type": "string", |
12898 | | - "nullable": true |
12899 | | - }, |
12900 | | - "avatar": { |
12901 | | - "type": "string", |
12902 | | - "nullable": true |
12903 | | - }, |
12904 | | - "avatar_decoration_data": { |
12905 | | - "anyOf": [ |
12906 | | - { |
12907 | | - "$ref": "#/components/schemas/AvatarDecorationData" |
12908 | | - }, |
12909 | | - { |
12910 | | - "type": "null" |
12911 | | - } |
12912 | | - ] |
12913 | | - }, |
12914 | | - "collectibles": { |
12915 | | - "anyOf": [ |
12916 | | - { |
12917 | | - "$ref": "#/components/schemas/Collectibles" |
12918 | | - }, |
12919 | | - { |
12920 | | - "type": "null" |
12921 | | - } |
12922 | | - ] |
12923 | | - }, |
12924 | | - "display_name_styles": { |
12925 | | - "anyOf": [ |
12926 | | - { |
12927 | | - "$ref": "#/components/schemas/DisplayNameStyle" |
12928 | | - }, |
12929 | | - { |
12930 | | - "type": "null" |
12931 | | - } |
12932 | | - ] |
12933 | | - }, |
12934 | | - "primary_guild": { |
12935 | | - "anyOf": [ |
12936 | | - { |
12937 | | - "$ref": "#/components/schemas/PrimaryGuild" |
12938 | | - }, |
12939 | | - { |
12940 | | - "type": "null" |
12941 | | - } |
12942 | | - ] |
12943 | | - }, |
12944 | | - "bot": { |
12945 | | - "type": "boolean" |
12946 | | - }, |
12947 | | - "system": { |
12948 | | - "type": "boolean" |
12949 | | - }, |
12950 | | - "banner": { |
12951 | | - "type": "string", |
12952 | | - "nullable": true |
12953 | | - }, |
12954 | | - "accent_color": { |
12955 | | - "type": "integer", |
12956 | | - "nullable": true |
12957 | | - }, |
12958 | | - "public_flags": { |
12959 | | - "type": "integer" |
12960 | | - } |
12961 | | - }, |
12962 | | - "required": [ |
12963 | | - "avatar", |
12964 | | - "discriminator", |
12965 | | - "id", |
12966 | | - "username" |
12967 | | - ] |
12968 | | - }, |
12969 | 13007 | "HubGuild": { |
12970 | 13008 | "type": "object", |
12971 | 13009 | "properties": { |
|
16435 | 16473 | ] |
16436 | 16474 | } |
16437 | 16475 | }, |
| 16476 | + "/users/@me/billing/location-info/": { |
| 16477 | + "get": { |
| 16478 | + "security": [ |
| 16479 | + { |
| 16480 | + "bearer": [] |
| 16481 | + } |
| 16482 | + ], |
| 16483 | + "responses": { |
| 16484 | + "default": { |
| 16485 | + "description": "No description available" |
| 16486 | + } |
| 16487 | + }, |
| 16488 | + "tags": [ |
| 16489 | + "users" |
| 16490 | + ] |
| 16491 | + } |
| 16492 | + }, |
| 16493 | + "/users/@me/billing/country-code/": { |
| 16494 | + "get": { |
| 16495 | + "security": [ |
| 16496 | + { |
| 16497 | + "bearer": [] |
| 16498 | + } |
| 16499 | + ], |
| 16500 | + "responses": { |
| 16501 | + "default": { |
| 16502 | + "description": "No description available" |
| 16503 | + } |
| 16504 | + }, |
| 16505 | + "tags": [ |
| 16506 | + "users" |
| 16507 | + ] |
| 16508 | + } |
| 16509 | + }, |
16438 | 16510 | "/users/@me/applications/{application_id}/entitlements/": { |
16439 | 16511 | "get": { |
16440 | 16512 | "security": [ |
|
17109 | 17181 | "content": { |
17110 | 17182 | "application/json": { |
17111 | 17183 | "schema": { |
17112 | | - "$ref": "#/components/schemas/APIStickerPackArray" |
| 17184 | + "$ref": "#/components/schemas/StickersResponse" |
17113 | 17185 | } |
17114 | 17186 | } |
17115 | 17187 | } |
|
19742 | 19814 | "content": { |
19743 | 19815 | "application/json": { |
19744 | 19816 | "schema": { |
19745 | | - "$ref": "#/components/schemas/APIStickerArray" |
| 19817 | + "$ref": "#/components/schemas/StickersResponse" |
19746 | 19818 | } |
19747 | 19819 | } |
19748 | 19820 | } |
|
0 commit comments