run api extractor
This commit is contained in:
parent
9ca1b41a01
commit
ba685850df
|
@ -3421,8 +3421,8 @@ type UsersUpdateMemoRequest = operations['users___update-memo']['requestBody']['
|
||||||
// Warnings were encountered during analysis:
|
// Warnings were encountered during analysis:
|
||||||
//
|
//
|
||||||
// src/entities.ts:50:2 - (ae-forgotten-export) The symbol "ModerationLogPayloads" needs to be exported by the entry point index.d.ts
|
// src/entities.ts:50:2 - (ae-forgotten-export) The symbol "ModerationLogPayloads" needs to be exported by the entry point index.d.ts
|
||||||
// src/streaming.types.ts:220:4 - (ae-forgotten-export) The symbol "ReversiUpdateKey" needs to be exported by the entry point index.d.ts
|
// src/streaming.types.ts:228:4 - (ae-forgotten-export) The symbol "ReversiUpdateKey" needs to be exported by the entry point index.d.ts
|
||||||
// src/streaming.types.ts:230:4 - (ae-forgotten-export) The symbol "ReversiUpdateSettings" needs to be exported by the entry point index.d.ts
|
// src/streaming.types.ts:238:4 - (ae-forgotten-export) The symbol "ReversiUpdateSettings" needs to be exported by the entry point index.d.ts
|
||||||
|
|
||||||
// (No @packageDocumentation comment for this package)
|
// (No @packageDocumentation comment for this package)
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ export type Channels = {
|
||||||
params: {
|
params: {
|
||||||
withRenotes?: boolean;
|
withRenotes?: boolean;
|
||||||
withFiles?: boolean;
|
withFiles?: boolean;
|
||||||
minimize?: boolean,
|
minimize?: boolean;
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
@ -85,7 +85,7 @@ export type Channels = {
|
||||||
withRenotes?: boolean;
|
withRenotes?: boolean;
|
||||||
withReplies?: boolean;
|
withReplies?: boolean;
|
||||||
withFiles?: boolean;
|
withFiles?: boolean;
|
||||||
minimize?: boolean,
|
minimize?: boolean;
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
@ -97,7 +97,7 @@ export type Channels = {
|
||||||
withRenotes?: boolean;
|
withRenotes?: boolean;
|
||||||
withReplies?: boolean;
|
withReplies?: boolean;
|
||||||
withFiles?: boolean;
|
withFiles?: boolean;
|
||||||
minimize?: boolean,
|
minimize?: boolean;
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
@ -108,7 +108,7 @@ export type Channels = {
|
||||||
params: {
|
params: {
|
||||||
withRenotes?: boolean;
|
withRenotes?: boolean;
|
||||||
withFiles?: boolean;
|
withFiles?: boolean;
|
||||||
minimize?: boolean,
|
minimize?: boolean;
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
@ -120,7 +120,7 @@ export type Channels = {
|
||||||
listId: string;
|
listId: string;
|
||||||
withFiles?: boolean;
|
withFiles?: boolean;
|
||||||
withRenotes?: boolean;
|
withRenotes?: boolean;
|
||||||
minimize?: boolean,
|
minimize?: boolean;
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
@ -139,7 +139,7 @@ export type Channels = {
|
||||||
roleTimeline: {
|
roleTimeline: {
|
||||||
params: {
|
params: {
|
||||||
roleId: string;
|
roleId: string;
|
||||||
minimize?: boolean,
|
minimize?: boolean;
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
@ -149,7 +149,7 @@ export type Channels = {
|
||||||
antenna: {
|
antenna: {
|
||||||
params: {
|
params: {
|
||||||
antennaId: string;
|
antennaId: string;
|
||||||
minimize?: boolean,
|
minimize?: boolean;
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
@ -159,7 +159,7 @@ export type Channels = {
|
||||||
channel: {
|
channel: {
|
||||||
params: {
|
params: {
|
||||||
channelId: string;
|
channelId: string;
|
||||||
minimize?: boolean,
|
minimize?: boolean;
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
|
Loading…
Reference in New Issue