Files
klz-cables.com/.pnpm-store/v10/files/99/32adae8b2a56d85d5d0c606c5e73a1d3e5552e84ddf4d9cbb2b10b95d3ed286e7728a823444dd0c1263ae156f48cd0f59054cd09ff0af44b9d0f56483ae0b1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

45 lines
1.1 KiB
Plaintext

import { WebSocketAuthModes } from "../../../realtime/types.js";
import { RestCommand } from "../../types.js";
//#region src/rest/commands/server/info.d.ts
type ServerInfoOutput = {
project: {
project_name: string;
default_language: string;
public_registration: boolean;
public_registration_verify_email: boolean;
};
mcp_enabled?: boolean;
ai_enabled?: boolean;
rateLimit?: {
points: number;
duration: number;
} | false;
rateLimitGlobal?: {
points: number;
duration: number;
} | false;
queryLimit?: {
default: number;
max: number;
};
websocket?: {
rest: {
authentication: WebSocketAuthModes;
path: string;
} | false;
graphql: {
authentication: WebSocketAuthModes;
path: string;
} | false;
heartbeat: number | false;
} | false;
};
/**
* Get information about the current installation.
* @returns Information about the current installation.
*/
declare const serverInfo: <Schema>() => RestCommand<ServerInfoOutput, Schema>;
//#endregion
export { ServerInfoOutput, serverInfo };
//# sourceMappingURL=info.d.ts.map