import * as z from "zod"; export type GetGameSteamSummaryRequest = { steamid?: string | undefined; id?: string | undefined; id3?: string | undefined; key?: string | undefined; }; export declare const GetGameSteamSummaryRequest$zodSchema: z.ZodType; export type GetGameSteamSummaryBadGatewayDetails = {}; export declare const GetGameSteamSummaryBadGatewayDetails$zodSchema: z.ZodType; /** * 上游服务错误。在向 Steam 的官方 API 请求数据时遇到了问题。这可能是他们的服务暂时中断,请稍后重试。 */ export type GetGameSteamSummaryBadGatewayResponseBody = { code?: string | undefined; details?: GetGameSteamSummaryBadGatewayDetails | undefined; message?: string | undefined; }; export declare const GetGameSteamSummaryBadGatewayResponseBody$zodSchema: z.ZodType; export type GetGameSteamSummaryNotFoundDetails = {}; export declare const GetGameSteamSummaryNotFoundDetails$zodSchema: z.ZodType; /** * 用户未找到。根据你提供的 SteamID 未能找到对应的用户,或者该用户资料为完全私密。 */ export type GetGameSteamSummaryNotFoundResponseBody = { code?: string | undefined; details?: GetGameSteamSummaryNotFoundDetails | undefined; message?: string | undefined; }; export declare const GetGameSteamSummaryNotFoundResponseBody$zodSchema: z.ZodType; export type GetGameSteamSummaryUnauthorizedDetails = {}; export declare const GetGameSteamSummaryUnauthorizedDetails$zodSchema: z.ZodType; /** * 认证失败。你提供的 Steam Web API Key 无效或已过期,或者你没有提供 Key。请检查你的 Key。 */ export type GetGameSteamSummaryUnauthorizedResponseBody = { code?: string | undefined; details?: GetGameSteamSummaryUnauthorizedDetails | undefined; message?: string | undefined; }; export declare const GetGameSteamSummaryUnauthorizedResponseBody$zodSchema: z.ZodType; export type GetGameSteamSummaryBadRequestDetails = {}; export declare const GetGameSteamSummaryBadRequestDetails$zodSchema: z.ZodType; /** * 请求失败。请检查你是否提供了 `steamid`、`id` 或 `id3` 中的任意一个参数。 */ export type GetGameSteamSummaryBadRequestResponseBody = { code?: string | undefined; details?: GetGameSteamSummaryBadRequestDetails | undefined; message?: string | undefined; }; export declare const GetGameSteamSummaryBadRequestResponseBody$zodSchema: z.ZodType; /** * 查询成功!返回用户的 Steam 公开资料摘要。 */ export type GetGameSteamSummaryResponseBody = { avatar?: string | undefined; avatarfull?: string | undefined; avatarmedium?: string | undefined; communityvisibilitystate?: number | undefined; loccountrycode?: string | undefined; personaname?: string | undefined; personastate?: number | undefined; primaryclanid?: string | undefined; profilestate?: number | undefined; profileurl?: string | undefined; realname?: string | undefined; steamid?: string | undefined; timecreated?: number | undefined; timecreated_str?: string | undefined; }; export declare const GetGameSteamSummaryResponseBody$zodSchema: z.ZodType; export type GetGameSteamSummaryResponse = GetGameSteamSummaryResponseBody | GetGameSteamSummaryBadRequestResponseBody | GetGameSteamSummaryUnauthorizedResponseBody | GetGameSteamSummaryNotFoundResponseBody | GetGameSteamSummaryBadGatewayResponseBody; export declare const GetGameSteamSummaryResponse$zodSchema: z.ZodType; //# sourceMappingURL=getgamesteamsummaryop.d.ts.map