jormungandr-bite/packages/iceshrimp-sdk/markdown/iceshrimp-sdk.entities.liteinstancemetadata.md
Laura Hausmann 91dddc439f
[sdk] Rename iceshrimp-js package to iceshrimp-sdk
This resolves possible confusion between iceshrimp-js (this project) and iceshrimp-sdk (the package)
2024-07-23 23:15:19 +02:00

1.3 KiB

Home > iceshrimp-sdk > entities > LiteInstanceMetadata

entities.LiteInstanceMetadata type

Signature:

export type LiteInstanceMetadata = {
    maintainerName: string | null;
    maintainerEmail: string | null;
    version: string;
    name: string | null;
    uri: string;
    description: string | null;
    tosUrl: string | null;
    disableRegistration: boolean;
    disableLocalTimeline: boolean;
    disableRecommendedTimeline: boolean;
    disableGlobalTimeline: boolean;
    driveCapacityPerLocalUserMb: number;
    driveCapacityPerRemoteUserMb: number;
    enableHcaptcha: boolean;
    hcaptchaSiteKey: string | null;
    enableRecaptcha: boolean;
    recaptchaSiteKey: string | null;
    swPublickey: string | null;
    maxNoteTextLength: number;
    enableEmail: boolean;
    enableGithubIntegration: boolean;
    enableDiscordIntegration: boolean;
    searchEngine: string;
    emojis: CustomEmoji[];
    images: {
        error: string;
        notFound: string;
        info: string;
    };
};

References: CustomEmoji