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 `standard` and `retrospective` incidents are returned */ export declare const QueryParamIncidentMode: { readonly Standard: "standard"; readonly Retrospective: "retrospective"; readonly Test: "test"; readonly Tutorial: "tutorial"; readonly Stream: "stream"; }; /** * Filter to actions from incidents of the given mode. If not set, only actions from `standard` and `retrospective` incidents are returned */ export type QueryParamIncidentMode = ClosedEnum; export type ActionsV2NumberListRequest = { /** * Find actions related to this incident */ incidentId?: string | undefined; /** * Filter to actions from incidents of the given mode. If not set, only actions from `standard` and `retrospective` incidents are returned */ incidentMode?: QueryParamIncidentMode | undefined; }; /** @internal */ export declare const QueryParamIncidentMode$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const QueryParamIncidentMode$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 QueryParamIncidentMode$ { /** @deprecated use `QueryParamIncidentMode$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Standard: "standard"; readonly Retrospective: "retrospective"; readonly Test: "test"; readonly Tutorial: "tutorial"; readonly Stream: "stream"; }>; /** @deprecated use `QueryParamIncidentMode$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Standard: "standard"; readonly Retrospective: "retrospective"; readonly Test: "test"; readonly Tutorial: "tutorial"; readonly Stream: "stream"; }>; } /** @internal */ export declare const ActionsV2NumberListRequest$inboundSchema: z.ZodType; /** @internal */ export type ActionsV2NumberListRequest$Outbound = { incident_id?: string | undefined; incident_mode?: string | undefined; }; /** @internal */ export declare const ActionsV2NumberListRequest$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 ActionsV2NumberListRequest$ { /** @deprecated use `ActionsV2NumberListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ActionsV2NumberListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ActionsV2NumberListRequest$Outbound` instead. */ type Outbound = ActionsV2NumberListRequest$Outbound; } //# sourceMappingURL=actionsv2numberlist.d.ts.map