import { ClosedEnum } from "../../types/enums.js"; import * as components from "../components/index.js"; import * as z from "zod"; /** * Filter by type */ export declare const Type: { readonly Temporary: "TEMPORARY"; readonly Permanent: "PERMANENT"; readonly Stale: "STALE"; readonly Template: "TEMPLATE"; }; /** * Filter by type */ export type Type = ClosedEnum; /** * Filter by typeReason */ export declare const TypeReason: { readonly None: "NONE"; readonly StaleProbablyLaunched: "STALE_PROBABLY_LAUNCHED"; readonly StaleProbablyUnlaunched: "STALE_PROBABLY_UNLAUNCHED"; readonly StaleProbablyForgotten: "STALE_PROBABLY_FORGOTTEN"; readonly StaleNoRules: "STALE_NO_RULES"; readonly StaleProbablyDeadCheck: "STALE_PROBABLY_DEAD_CHECK"; }; /** * Filter by typeReason */ export type TypeReason = ClosedEnum; export type ConsoleV1GatesControllerGenListRequest = { /** * Filter by idType */ idType?: any | undefined; /** * Filter by type */ type?: Type | undefined; /** * Filter by typeReason */ typeReason?: TypeReason | undefined; /** * Name of the creator. */ creatorName?: string | null | undefined; /** * ID of the user who created the entity. */ creatorID?: string | null | undefined; /** * Filter by tags */ tags?: any | undefined; /** * Results per page */ limit?: any | undefined; /** * Page number */ page?: any | undefined; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * List gates success */ export type ConsoleV1GatesControllerGenListResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: Array; /** * Pagination metadata for checking if there is next page for example. */ pagination: components.PaginationResponseMetadataDto; }; /** @internal */ export declare const Type$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Type$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Type$ { /** @deprecated use `Type$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Temporary: "TEMPORARY"; readonly Permanent: "PERMANENT"; readonly Stale: "STALE"; readonly Template: "TEMPLATE"; }>; /** @deprecated use `Type$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Temporary: "TEMPORARY"; readonly Permanent: "PERMANENT"; readonly Stale: "STALE"; readonly Template: "TEMPLATE"; }>; } /** @internal */ export declare const TypeReason$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TypeReason$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TypeReason$ { /** @deprecated use `TypeReason$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly None: "NONE"; readonly StaleProbablyLaunched: "STALE_PROBABLY_LAUNCHED"; readonly StaleProbablyUnlaunched: "STALE_PROBABLY_UNLAUNCHED"; readonly StaleProbablyForgotten: "STALE_PROBABLY_FORGOTTEN"; readonly StaleNoRules: "STALE_NO_RULES"; readonly StaleProbablyDeadCheck: "STALE_PROBABLY_DEAD_CHECK"; }>; /** @deprecated use `TypeReason$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly None: "NONE"; readonly StaleProbablyLaunched: "STALE_PROBABLY_LAUNCHED"; readonly StaleProbablyUnlaunched: "STALE_PROBABLY_UNLAUNCHED"; readonly StaleProbablyForgotten: "STALE_PROBABLY_FORGOTTEN"; readonly StaleNoRules: "STALE_NO_RULES"; readonly StaleProbablyDeadCheck: "STALE_PROBABLY_DEAD_CHECK"; }>; } /** @internal */ export declare const ConsoleV1GatesControllerGenListRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1GatesControllerGenListRequest$Outbound = { idType?: any | undefined; type?: string | undefined; typeReason?: string | undefined; creatorName?: string | null | undefined; creatorID?: string | null | undefined; tags?: any | undefined; limit?: any | undefined; page?: any | undefined; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1GatesControllerGenListRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1GatesControllerGenListRequest$ { /** @deprecated use `ConsoleV1GatesControllerGenListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GatesControllerGenListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GatesControllerGenListRequest$Outbound` instead. */ type Outbound = ConsoleV1GatesControllerGenListRequest$Outbound; } /** @internal */ export declare const ConsoleV1GatesControllerGenListResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1GatesControllerGenListResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1GatesControllerGenListResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1GatesControllerGenListResponseBody$ { /** @deprecated use `ConsoleV1GatesControllerGenListResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GatesControllerGenListResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GatesControllerGenListResponseBody$Outbound` instead. */ type Outbound = ConsoleV1GatesControllerGenListResponseBody$Outbound; } //# sourceMappingURL=consolev1gatescontrollergenlist.d.ts.map