fix api report
This commit is contained in:
parent
9a9692d6d2
commit
aabecdfba8
|
@ -1565,7 +1565,7 @@ export type Endpoints = {
|
||||||
receiveAnnouncementEmail?: boolean;
|
receiveAnnouncementEmail?: boolean;
|
||||||
alwaysMarkNsfw?: boolean;
|
alwaysMarkNsfw?: boolean;
|
||||||
mutedWords?: string[][];
|
mutedWords?: string[][];
|
||||||
mutingNotificationTypes?: Notification_2['type'][];
|
notificationRecieveConfig?: any;
|
||||||
emailNotificationTypes?: string[];
|
emailNotificationTypes?: string[];
|
||||||
alsoKnownAs?: string[];
|
alsoKnownAs?: string[];
|
||||||
};
|
};
|
||||||
|
@ -2496,7 +2496,22 @@ type MeDetailed = UserDetailed & {
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
isExplorable: boolean;
|
isExplorable: boolean;
|
||||||
mutedWords: string[][];
|
mutedWords: string[][];
|
||||||
mutingNotificationTypes: string[];
|
notificationRecieveConfig: {
|
||||||
|
[notificationType in typeof notificationTypes_2[number]]?: {
|
||||||
|
type: 'all';
|
||||||
|
} | {
|
||||||
|
type: 'never';
|
||||||
|
} | {
|
||||||
|
type: 'following';
|
||||||
|
} | {
|
||||||
|
type: 'follower';
|
||||||
|
} | {
|
||||||
|
type: 'mutualFollow';
|
||||||
|
} | {
|
||||||
|
type: 'list';
|
||||||
|
userListId: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
noCrawle: boolean;
|
noCrawle: boolean;
|
||||||
receiveAnnouncementEmail: boolean;
|
receiveAnnouncementEmail: boolean;
|
||||||
usePasswordLessLogin: boolean;
|
usePasswordLessLogin: boolean;
|
||||||
|
@ -2571,6 +2586,9 @@ type ModerationLog = {
|
||||||
} | {
|
} | {
|
||||||
type: 'unassignRole';
|
type: 'unassignRole';
|
||||||
info: ModerationLogPayloads['unassignRole'];
|
info: ModerationLogPayloads['unassignRole'];
|
||||||
|
} | {
|
||||||
|
type: 'createRole';
|
||||||
|
info: ModerationLogPayloads['createRole'];
|
||||||
} | {
|
} | {
|
||||||
type: 'updateRole';
|
type: 'updateRole';
|
||||||
info: ModerationLogPayloads['updateRole'];
|
info: ModerationLogPayloads['updateRole'];
|
||||||
|
@ -2622,10 +2640,22 @@ type ModerationLog = {
|
||||||
} | {
|
} | {
|
||||||
type: 'unmarkSensitiveDriveFile';
|
type: 'unmarkSensitiveDriveFile';
|
||||||
info: ModerationLogPayloads['unmarkSensitiveDriveFile'];
|
info: ModerationLogPayloads['unmarkSensitiveDriveFile'];
|
||||||
|
} | {
|
||||||
|
type: 'createInvitation';
|
||||||
|
info: ModerationLogPayloads['createInvitation'];
|
||||||
|
} | {
|
||||||
|
type: 'createAd';
|
||||||
|
info: ModerationLogPayloads['createAd'];
|
||||||
|
} | {
|
||||||
|
type: 'updateAd';
|
||||||
|
info: ModerationLogPayloads['updateAd'];
|
||||||
|
} | {
|
||||||
|
type: 'deleteAd';
|
||||||
|
info: ModerationLogPayloads['deleteAd'];
|
||||||
});
|
});
|
||||||
|
|
||||||
// @public (undocumented)
|
// @public (undocumented)
|
||||||
export const moderationLogTypes: readonly ["updateServerSettings", "suspend", "unsuspend", "updateUserNote", "addCustomEmoji", "updateCustomEmoji", "deleteCustomEmoji", "assignRole", "unassignRole", "updateRole", "deleteRole", "clearQueue", "promoteQueue", "deleteDriveFile", "deleteNote", "createGlobalAnnouncement", "createUserAnnouncement", "updateGlobalAnnouncement", "updateUserAnnouncement", "deleteGlobalAnnouncement", "deleteUserAnnouncement", "resetPassword", "suspendRemoteInstance", "unsuspendRemoteInstance", "markSensitiveDriveFile", "unmarkSensitiveDriveFile"];
|
export const moderationLogTypes: readonly ["updateServerSettings", "suspend", "unsuspend", "updateUserNote", "addCustomEmoji", "updateCustomEmoji", "deleteCustomEmoji", "assignRole", "unassignRole", "createRole", "updateRole", "deleteRole", "clearQueue", "promoteQueue", "deleteDriveFile", "deleteNote", "createGlobalAnnouncement", "createUserAnnouncement", "updateGlobalAnnouncement", "updateUserAnnouncement", "deleteGlobalAnnouncement", "deleteUserAnnouncement", "resetPassword", "suspendRemoteInstance", "unsuspendRemoteInstance", "markSensitiveDriveFile", "unmarkSensitiveDriveFile", "resolveAbuseReport", "createInvitation", "createAd", "updateAd", "deleteAd"];
|
||||||
|
|
||||||
// @public (undocumented)
|
// @public (undocumented)
|
||||||
export const mutedNoteReasons: readonly ["word", "manual", "spam", "other"];
|
export const mutedNoteReasons: readonly ["word", "manual", "spam", "other"];
|
||||||
|
@ -2634,6 +2664,7 @@ export const mutedNoteReasons: readonly ["word", "manual", "spam", "other"];
|
||||||
type Note = {
|
type Note = {
|
||||||
id: ID;
|
id: ID;
|
||||||
createdAt: DateString;
|
createdAt: DateString;
|
||||||
|
updatedAt?: DateString | null;
|
||||||
text: string | null;
|
text: string | null;
|
||||||
cw: string | null;
|
cw: string | null;
|
||||||
user: User;
|
user: User;
|
||||||
|
@ -2974,7 +3005,8 @@ type UserSorting = '+follower' | '-follower' | '+createdAt' | '-createdAt' | '+u
|
||||||
// src/api.types.ts:16:32 - (ae-forgotten-export) The symbol "TODO" needs to be exported by the entry point index.d.ts
|
// src/api.types.ts:16:32 - (ae-forgotten-export) The symbol "TODO" needs to be exported by the entry point index.d.ts
|
||||||
// src/api.types.ts:18:25 - (ae-forgotten-export) The symbol "NoParams" needs to be exported by the entry point index.d.ts
|
// src/api.types.ts:18:25 - (ae-forgotten-export) The symbol "NoParams" needs to be exported by the entry point index.d.ts
|
||||||
// src/api.types.ts:635:18 - (ae-forgotten-export) The symbol "ShowUserReq" needs to be exported by the entry point index.d.ts
|
// src/api.types.ts:635:18 - (ae-forgotten-export) The symbol "ShowUserReq" needs to be exported by the entry point index.d.ts
|
||||||
// src/entities.ts:587:2 - (ae-forgotten-export) The symbol "ModerationLogPayloads" needs to be exported by the entry point index.d.ts
|
// src/entities.ts:110:2 - (ae-forgotten-export) The symbol "notificationTypes_2" needs to be exported by the entry point index.d.ts
|
||||||
|
// src/entities.ts:603:2 - (ae-forgotten-export) The symbol "ModerationLogPayloads" needs to be exported by the entry point index.d.ts
|
||||||
// src/streaming.types.ts:33:4 - (ae-forgotten-export) The symbol "FIXME" needs to be exported by the entry point index.d.ts
|
// src/streaming.types.ts:33:4 - (ae-forgotten-export) The symbol "FIXME" needs to be exported by the entry point index.d.ts
|
||||||
|
|
||||||
// (No @packageDocumentation comment for this package)
|
// (No @packageDocumentation comment for this package)
|
||||||
|
|
Loading…
Reference in a new issue