import * as z from "zod/v3"; import { CredentialsDto, CredentialsDto$Outbound } from "./credentialsdto.js"; import { StepFilterDto, StepFilterDto$Outbound } from "./stepfilterdto.js"; /** * Configurations for the integration */ export type UpdateIntegrationRequestDtoConfigurations = {}; export type UpdateIntegrationRequestDto = { name?: string | undefined; identifier?: string | undefined; environmentId?: string | undefined; /** * If the integration is active the validation on the credentials field will run */ active?: boolean | undefined; credentials?: CredentialsDto | undefined; check?: boolean | undefined; conditions?: Array | undefined; /** * Configurations for the integration */ configurations?: UpdateIntegrationRequestDtoConfigurations | undefined; }; /** @internal */ export type UpdateIntegrationRequestDtoConfigurations$Outbound = {}; /** @internal */ export declare const UpdateIntegrationRequestDtoConfigurations$outboundSchema: z.ZodType; export declare function updateIntegrationRequestDtoConfigurationsToJSON(updateIntegrationRequestDtoConfigurations: UpdateIntegrationRequestDtoConfigurations): string; /** @internal */ export type UpdateIntegrationRequestDto$Outbound = { name?: string | undefined; identifier?: string | undefined; _environmentId?: string | undefined; active?: boolean | undefined; credentials?: CredentialsDto$Outbound | undefined; check?: boolean | undefined; conditions?: Array | undefined; configurations?: UpdateIntegrationRequestDtoConfigurations$Outbound | undefined; }; /** @internal */ export declare const UpdateIntegrationRequestDto$outboundSchema: z.ZodType; export declare function updateIntegrationRequestDtoToJSON(updateIntegrationRequestDto: UpdateIntegrationRequestDto): string; //# sourceMappingURL=updateintegrationrequestdto.d.ts.map