import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1MetricsControllerUpdateMetricRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; metricsUpdateContractDto: components.MetricsUpdateContractDto; }; /** * Update metric response */ export type ConsoleV1MetricsControllerUpdateMetricResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.ExternalMetricDefinitionContractDto; }; /** @internal */ export declare const ConsoleV1MetricsControllerUpdateMetricRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricsControllerUpdateMetricRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; MetricsUpdateContractDto: components.MetricsUpdateContractDto$Outbound; }; /** @internal */ export declare const ConsoleV1MetricsControllerUpdateMetricRequest$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 ConsoleV1MetricsControllerUpdateMetricRequest$ { /** @deprecated use `ConsoleV1MetricsControllerUpdateMetricRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerUpdateMetricRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerUpdateMetricRequest$Outbound` instead. */ type Outbound = ConsoleV1MetricsControllerUpdateMetricRequest$Outbound; } /** @internal */ export declare const ConsoleV1MetricsControllerUpdateMetricResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricsControllerUpdateMetricResponseBody$Outbound = { message: string; data: components.ExternalMetricDefinitionContractDto$Outbound; }; /** @internal */ export declare const ConsoleV1MetricsControllerUpdateMetricResponseBody$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 ConsoleV1MetricsControllerUpdateMetricResponseBody$ { /** @deprecated use `ConsoleV1MetricsControllerUpdateMetricResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerUpdateMetricResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerUpdateMetricResponseBody$Outbound` instead. */ type Outbound = ConsoleV1MetricsControllerUpdateMetricResponseBody$Outbound; } //# sourceMappingURL=consolev1metricscontrollerupdatemetric.d.ts.map