import * as z from "zod"; export type GetGameMinecraftHistoryidRequest = { name?: string | undefined; uuid?: string | undefined; }; export declare const GetGameMinecraftHistoryidRequest$zodSchema: z.ZodType; export type GetGameMinecraftHistoryidBadGatewayDetails = {}; export declare const GetGameMinecraftHistoryidBadGatewayDetails$zodSchema: z.ZodType; /** * 服务暂时不可用,请稍后重试。 */ export type GetGameMinecraftHistoryidBadGatewayResponseBody = { code?: string | undefined; details?: GetGameMinecraftHistoryidBadGatewayDetails | undefined; message?: string | undefined; }; export declare const GetGameMinecraftHistoryidBadGatewayResponseBody$zodSchema: z.ZodType; export type GetGameMinecraftHistoryidNotFoundDetails = {}; export declare const GetGameMinecraftHistoryidNotFoundDetails$zodSchema: z.ZodType; /** * 用户未找到。我们根据你提供的 UUID 未能找到对应的 Minecraft 玩家。请确认 UUID 是否正确。 */ export type GetGameMinecraftHistoryidNotFoundResponseBody = { code?: string | undefined; details?: GetGameMinecraftHistoryidNotFoundDetails | undefined; message?: string | undefined; }; export declare const GetGameMinecraftHistoryidNotFoundResponseBody$zodSchema: z.ZodType; export type GetGameMinecraftHistoryidBadRequestDetails = {}; export declare const GetGameMinecraftHistoryidBadRequestDetails$zodSchema: z.ZodType; /** * 请求失败。请检查你是否提供了 `name` 或 `uuid` 参数中的至少一个。 */ export type GetGameMinecraftHistoryidBadRequestResponseBody = { code?: string | undefined; details?: GetGameMinecraftHistoryidBadRequestDetails | undefined; message?: string | undefined; }; export declare const GetGameMinecraftHistoryidBadRequestResponseBody$zodSchema: z.ZodType; export type ResultHistory = { name?: string | undefined; changedToAt?: string | undefined; }; export declare const ResultHistory$zodSchema: z.ZodType; export type GetGameMinecraftHistoryidResult = { id?: string | undefined; uuid?: string | undefined; name_num?: number | undefined; history?: Array | undefined; }; export declare const GetGameMinecraftHistoryidResult$zodSchema: z.ZodType; export type History = { changedToAt?: string | undefined; name?: string | undefined; }; export declare const History$zodSchema: z.ZodType; /** * 响应结构根据查询参数不同而变化 */ export type GetGameMinecraftHistoryidResponseBody = { query?: string | undefined; count?: number | undefined; results?: Array | undefined; id?: string | undefined; uuid?: string | undefined; name_num?: number | undefined; history?: Array | undefined; }; export declare const GetGameMinecraftHistoryidResponseBody$zodSchema: z.ZodType; export type GetGameMinecraftHistoryidResponse = GetGameMinecraftHistoryidResponseBody | GetGameMinecraftHistoryidBadRequestResponseBody | GetGameMinecraftHistoryidNotFoundResponseBody | GetGameMinecraftHistoryidBadGatewayResponseBody; export declare const GetGameMinecraftHistoryidResponse$zodSchema: z.ZodType; //# sourceMappingURL=getgameminecrafthistoryidop.d.ts.map