Merge upstream (Misskey)
This commit is contained in:
commit
6b95582c74
2
.github/workflows/storybook.yml
vendored
2
.github/workflows/storybook.yml
vendored
@ -15,6 +15,8 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
# chromatic is not likely to be available for fork repositories, so we disable for fork repositories.
|
||||||
|
if: github.repository == 'misskey-dev/misskey'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
17
CHANGELOG.md
17
CHANGELOG.md
@ -1,3 +1,18 @@
|
|||||||
|
## 2024.11.1
|
||||||
|
|
||||||
|
### General
|
||||||
|
-
|
||||||
|
|
||||||
|
### Client
|
||||||
|
- Fix: 画面サイズが変わった際にナビゲーションバーが自動で折りたたまれない問題を修正
|
||||||
|
- Fix: サーバー情報メニューに区切り線が不足していたのを修正
|
||||||
|
|
||||||
|
### Server
|
||||||
|
- Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 )
|
||||||
|
- Fix: 起動前の疎通チェックが機能しなくなっていた問題を修正
|
||||||
|
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/737)
|
||||||
|
|
||||||
|
|
||||||
## 2024.11.0
|
## 2024.11.0
|
||||||
|
|
||||||
### Note
|
### Note
|
||||||
@ -37,7 +52,7 @@
|
|||||||
- Fix: デッキのタイムラインカラムで「センシティブなファイルを含むノートを表示」設定が使用できなかった問題を修正
|
- Fix: デッキのタイムラインカラムで「センシティブなファイルを含むノートを表示」設定が使用できなかった問題を修正
|
||||||
- Fix: Encode RSS urls with escape sequences before fetching allowing query parameters to be used
|
- Fix: Encode RSS urls with escape sequences before fetching allowing query parameters to be used
|
||||||
- Fix: リンク切れを修正
|
- Fix: リンク切れを修正
|
||||||
= Fix: ノート投稿ボタンにホバー時のスタイルが適用されていないのを修正
|
- Fix: ノート投稿ボタンにホバー時のスタイルが適用されていないのを修正
|
||||||
(Cherry-picked from https://github.com/taiyme/misskey/pull/305)
|
(Cherry-picked from https://github.com/taiyme/misskey/pull/305)
|
||||||
- Fix: メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正
|
- Fix: メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正
|
||||||
- Fix: 画面幅が狭い環境でデザインが崩れる問題を修正
|
- Fix: 画面幅が狭い環境でデザインが崩れる問題を修正
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"version": "2024.11.0",
|
"version": "2024.11.1-alpha.0",
|
||||||
"prefix": "switch",
|
"prefix": "switch",
|
||||||
"codename": "nasubi",
|
"codename": "nasubi",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -53,4 +53,4 @@ const promises = Array
|
|||||||
connectToPostgres()
|
connectToPostgres()
|
||||||
]);
|
]);
|
||||||
|
|
||||||
await Promise.allSettled(promises);
|
await Promise.all(promises);
|
||||||
|
@ -53,7 +53,7 @@ export class S3Service {
|
|||||||
? `${objectStorageUseSSL ? 'https' : 'http'}://${objectStorageEndpoint}`
|
? `${objectStorageUseSSL ? 'https' : 'http'}://${objectStorageEndpoint}`
|
||||||
: `${objectStorageUseSSL ? 'https' : 'http'}://example.net`; // dummy url to select http(s) agent
|
: `${objectStorageUseSSL ? 'https' : 'http'}://example.net`; // dummy url to select http(s) agent
|
||||||
|
|
||||||
const agent = this.httpRequestService.getAgentByUrl(new URL(u), !objectStorageUseSSL);
|
const agent = this.httpRequestService.getAgentByUrl(new URL(u), !objectStorageUseSSL, true);
|
||||||
const handlerOption: NodeHttpHandlerOptions = {};
|
const handlerOption: NodeHttpHandlerOptions = {};
|
||||||
if (objectStorageUseSSL) {
|
if (objectStorageUseSSL) {
|
||||||
handlerOption.httpsAgent = agent as https.Agent;
|
handlerOption.httpsAgent = agent as https.Agent;
|
||||||
|
@ -189,14 +189,12 @@ export class WebAuthnService {
|
|||||||
*/
|
*/
|
||||||
@bindThis
|
@bindThis
|
||||||
public async verifySignInWithPasskeyAuthentication(context: string, response: AuthenticationResponseJSON): Promise<MiUser['id'] | null> {
|
public async verifySignInWithPasskeyAuthentication(context: string, response: AuthenticationResponseJSON): Promise<MiUser['id'] | null> {
|
||||||
const challenge = await this.redisClient.get(`webauthn:challenge:${context}`);
|
const challenge = await this.redisClient.getdel(`webauthn:challenge:${context}`);
|
||||||
|
|
||||||
if (!challenge) {
|
if (!challenge) {
|
||||||
throw new IdentifiableError('2d16e51c-007b-4edd-afd2-f7dd02c947f6', `challenge '${context}' not found`);
|
throw new IdentifiableError('2d16e51c-007b-4edd-afd2-f7dd02c947f6', `challenge '${context}' not found`);
|
||||||
}
|
}
|
||||||
|
|
||||||
await this.redisClient.del(`webauthn:challenge:${context}`);
|
|
||||||
|
|
||||||
const key = await this.userSecurityKeysRepository.findOneBy({
|
const key = await this.userSecurityKeysRepository.findOneBy({
|
||||||
id: response.id,
|
id: response.id,
|
||||||
});
|
});
|
||||||
|
@ -183,7 +183,7 @@ export function genOpenapiSpec(config: Config, includeSelfRef = false) {
|
|||||||
},
|
},
|
||||||
...(endpoint.meta.limit ? {
|
...(endpoint.meta.limit ? {
|
||||||
'429': {
|
'429': {
|
||||||
description: 'To many requests',
|
description: 'Too many requests',
|
||||||
content: {
|
content: {
|
||||||
'application/json': {
|
'application/json': {
|
||||||
schema: {
|
schema: {
|
||||||
|
@ -592,7 +592,10 @@ export class ClientServerService {
|
|||||||
reply.header('X-Robots-Tag', 'noai');
|
reply.header('X-Robots-Tag', 'noai');
|
||||||
}
|
}
|
||||||
|
|
||||||
const _user = await this.userEntityService.pack(user);
|
const _user = await this.userEntityService.pack(user, null, {
|
||||||
|
schema: 'UserDetailed',
|
||||||
|
userProfile: profile,
|
||||||
|
});
|
||||||
|
|
||||||
return await reply.view('user', {
|
return await reply.view('user', {
|
||||||
user, profile, me,
|
user, profile, me,
|
||||||
|
@ -384,6 +384,7 @@ const patrons = [
|
|||||||
'こまつぶり',
|
'こまつぶり',
|
||||||
'まゆつな空高',
|
'まゆつな空高',
|
||||||
'asata',
|
'asata',
|
||||||
|
'ruru',
|
||||||
];
|
];
|
||||||
|
|
||||||
const thereIsTreasure = ref($i && !claimedAchievements.includes('foundTreasure'));
|
const thereIsTreasure = ref($i && !claimedAchievements.includes('foundTreasure'));
|
||||||
|
@ -119,7 +119,7 @@ export function openInstanceMenu(ev: MouseEvent) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!instance.impressumUrl && !instance.tosUrl && !instance.privacyPolicyUrl) {
|
if (instance.impressumUrl != null || instance.tosUrl != null || instance.privacyPolicyUrl != null) {
|
||||||
menuItems.push({ type: 'divider' });
|
menuItems.push({ type: 'divider' });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||||||
</component>
|
</component>
|
||||||
</template>
|
</template>
|
||||||
<div :class="$style.divider"></div>
|
<div :class="$style.divider"></div>
|
||||||
<MkA v-if="$i.isAdmin || $i.isModerator" v-tooltip.noDelay.right="i18n.ts.controlPanel" :class="$style.item" :activeClass="$style.active" to="/admin">
|
<MkA v-if="$i != null && ($i.isAdmin || $i.isModerator)" v-tooltip.noDelay.right="i18n.ts.controlPanel" :class="$style.item" :activeClass="$style.active" to="/admin">
|
||||||
<i :class="$style.itemIcon" class="ti ti-dashboard ti-fw"></i><span :class="$style.itemText">{{ i18n.ts.controlPanel }}</span>
|
<i :class="$style.itemIcon" class="ti ti-dashboard ti-fw"></i><span :class="$style.itemText">{{ i18n.ts.controlPanel }}</span>
|
||||||
</MkA>
|
</MkA>
|
||||||
<button class="_button" :class="$style.item" @click="more">
|
<button class="_button" :class="$style.item" @click="more">
|
||||||
@ -48,10 +48,10 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||||||
</MkA>
|
</MkA>
|
||||||
</div>
|
</div>
|
||||||
<div :class="$style.bottom">
|
<div :class="$style.bottom">
|
||||||
<button v-tooltip.noDelay.right="i18n.ts.note" class="_button" :class="[$style.post]" data-cy-open-post-form @click="os.post">
|
<button v-tooltip.noDelay.right="i18n.ts.note" class="_button" :class="[$style.post]" data-cy-open-post-form @click="() => { os.post(); }">
|
||||||
<i class="ti ti-pencil ti-fw" :class="$style.postIcon"></i><span :class="$style.postText">{{ i18n.ts.note }}</span>
|
<i class="ti ti-pencil ti-fw" :class="$style.postIcon"></i><span :class="$style.postText">{{ i18n.ts.note }}</span>
|
||||||
</button>
|
</button>
|
||||||
<button v-tooltip.noDelay.right="`${i18n.ts.account}: @${$i.username}`" class="_button" :class="[$style.account]" @click="openAccountMenu">
|
<button v-if="$i != null" v-tooltip.noDelay.right="`${i18n.ts.account}: @${$i.username}`" class="_button" :class="[$style.account]" @click="openAccountMenu">
|
||||||
<MkAvatar :user="$i" :class="$style.avatar"/><MkAcct class="_nowrap" :class="$style.acct" :user="$i"/>
|
<MkAvatar :user="$i" :class="$style.avatar"/><MkAcct class="_nowrap" :class="$style.acct" :user="$i"/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
@ -83,8 +83,12 @@ import { $i, openAccountMenu as openAccountMenu_ } from '@/account.js';
|
|||||||
import { defaultStore } from '@/store.js';
|
import { defaultStore } from '@/store.js';
|
||||||
import { i18n } from '@/i18n.js';
|
import { i18n } from '@/i18n.js';
|
||||||
import { instance } from '@/instance.js';
|
import { instance } from '@/instance.js';
|
||||||
|
import { getHTMLElementOrNull } from '@/scripts/get-dom-node-or-null.js';
|
||||||
|
|
||||||
const iconOnly = ref(false);
|
const forceIconOnly = ref(window.innerWidth <= 1279);
|
||||||
|
const iconOnly = computed(() => {
|
||||||
|
return forceIconOnly.value || (defaultStore.reactiveState.menuDisplay.value === 'sideIcon');
|
||||||
|
});
|
||||||
|
|
||||||
const menu = computed(() => defaultStore.state.menu);
|
const menu = computed(() => defaultStore.state.menu);
|
||||||
const otherMenuItemIndicated = computed(() => {
|
const otherMenuItemIndicated = computed(() => {
|
||||||
@ -95,14 +99,10 @@ const otherMenuItemIndicated = computed(() => {
|
|||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
const forceIconOnly = window.innerWidth <= 1279;
|
|
||||||
|
|
||||||
function calcViewState() {
|
function calcViewState() {
|
||||||
iconOnly.value = forceIconOnly || (defaultStore.state.menuDisplay === 'sideIcon');
|
forceIconOnly.value = window.innerWidth <= 1279;
|
||||||
}
|
}
|
||||||
|
|
||||||
calcViewState();
|
|
||||||
|
|
||||||
window.addEventListener('resize', calcViewState);
|
window.addEventListener('resize', calcViewState);
|
||||||
|
|
||||||
watch(defaultStore.reactiveState.menuDisplay, () => {
|
watch(defaultStore.reactiveState.menuDisplay, () => {
|
||||||
@ -120,8 +120,10 @@ function openAccountMenu(ev: MouseEvent) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function more(ev: MouseEvent) {
|
function more(ev: MouseEvent) {
|
||||||
|
const target = getHTMLElementOrNull(ev.currentTarget ?? ev.target);
|
||||||
|
if (!target) return;
|
||||||
const { dispose } = os.popup(defineAsyncComponent(() => import('@/components/MkLaunchPad.vue')), {
|
const { dispose } = os.popup(defineAsyncComponent(() => import('@/components/MkLaunchPad.vue')), {
|
||||||
src: ev.currentTarget ?? ev.target,
|
src: target,
|
||||||
}, {
|
}, {
|
||||||
closed: () => dispose(),
|
closed: () => dispose(),
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"name": "misskey-js",
|
"name": "misskey-js",
|
||||||
"version": "2024.11.0",
|
"version": "2024.11.1-alpha.0",
|
||||||
"description": "Misskey SDK for JavaScript",
|
"description": "Misskey SDK for JavaScript",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "./built/index.js",
|
"main": "./built/index.js",
|
||||||
|
@ -10633,7 +10633,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -11152,7 +11152,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -11219,7 +11219,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -11613,7 +11613,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -11673,7 +11673,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -11796,7 +11796,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -13391,7 +13391,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -14224,7 +14224,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -14571,7 +14571,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -14696,7 +14696,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -15191,7 +15191,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -15665,7 +15665,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -15725,7 +15725,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -15788,7 +15788,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -15847,7 +15847,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -15907,7 +15907,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -16414,7 +16414,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -16689,7 +16689,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -17949,7 +17949,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18010,7 +18010,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18061,7 +18061,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18112,7 +18112,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18163,7 +18163,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18214,7 +18214,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18265,7 +18265,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18316,7 +18316,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18553,7 +18553,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18613,7 +18613,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18672,7 +18672,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18731,7 +18731,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18790,7 +18790,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18858,7 +18858,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -18926,7 +18926,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -19918,7 +19918,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -20155,7 +20155,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -20215,7 +20215,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -20585,7 +20585,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -21064,7 +21064,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -21232,7 +21232,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -21729,7 +21729,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -21857,7 +21857,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -21915,7 +21915,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -22575,7 +22575,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -23009,7 +23009,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -23253,7 +23253,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -23389,7 +23389,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -23527,7 +23527,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -23661,7 +23661,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -23993,7 +23993,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -24060,7 +24060,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -24390,7 +24390,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -24940,7 +24940,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -26219,7 +26219,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -27509,7 +27509,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
@ -27623,7 +27623,7 @@ export type operations = {
|
|||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description To many requests */
|
/** @description Too many requests */
|
||||||
429: {
|
429: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['Error'];
|
'application/json': components['schemas']['Error'];
|
||||||
|
Loading…
Reference in New Issue
Block a user