import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Filter to actions from incidents of the given mode. If not set, only actions from `real` incidents are returned */ export declare const IncidentMode: { readonly Real: "real"; readonly Test: "test"; readonly Tutorial: "tutorial"; }; /** * Filter to actions from incidents of the given mode. If not set, only actions from `real` incidents are returned */ export type IncidentMode = ClosedEnum; export type ActionsV1NumberListRequest = { /** * Find actions related to this incident */ incidentId?: string | undefined; /** * Filter to actions marked as being follow up actions */ isFollowUp?: boolean | undefined; /** * Filter to actions from incidents of the given mode. If not set, only actions from `real` incidents are returned */ incidentMode?: IncidentMode | undefined; }; /** @internal */ export declare const IncidentMode$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const IncidentMode$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 IncidentMode$ { /** @deprecated use `IncidentMode$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Real: "real"; readonly Test: "test"; readonly Tutorial: "tutorial"; }>; /** @deprecated use `IncidentMode$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Real: "real"; readonly Test: "test"; readonly Tutorial: "tutorial"; }>; } /** @internal */ export declare const ActionsV1NumberListRequest$inboundSchema: z.ZodType; /** @internal */ export type ActionsV1NumberListRequest$Outbound = { incident_id?: string | undefined; is_follow_up?: boolean | undefined; incident_mode?: string | undefined; }; /** @internal */ export declare const ActionsV1NumberListRequest$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 ActionsV1NumberListRequest$ { /** @deprecated use `ActionsV1NumberListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ActionsV1NumberListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ActionsV1NumberListRequest$Outbound` instead. */ type Outbound = ActionsV1NumberListRequest$Outbound; } //# sourceMappingURL=actionsv1numberlist.d.ts.map