import * as z from "zod/v3"; import { SlackChannelEndpointDto, SlackChannelEndpointDto$Outbound } from "./slackchannelendpointdto.js"; /** * Rich context object with id and optional data */ export type CreateSlackChannelEndpointDtoContext2 = { id: string; /** * Optional additional context data */ data?: { [k: string]: any; } | undefined; }; export type CreateSlackChannelEndpointDtoContext = CreateSlackChannelEndpointDtoContext2 | string; export type CreateSlackChannelEndpointDto = { /** * The unique identifier for the channel endpoint. If not provided, one will be generated automatically. */ identifier?: string | undefined; /** * The subscriber ID to which the channel endpoint is linked */ subscriberId: string; context?: { [k: string]: CreateSlackChannelEndpointDtoContext2 | string; } | undefined; /** * The identifier of the integration to use for this channel endpoint. */ integrationIdentifier: string; /** * The identifier of the channel connection to use for this channel endpoint. */ connectionIdentifier?: string | undefined; /** * Type of channel endpoint */ type: "slack_channel"; /** * Slack channel endpoint data */ endpoint: SlackChannelEndpointDto; }; /** @internal */ export type CreateSlackChannelEndpointDtoContext2$Outbound = { id: string; data?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const CreateSlackChannelEndpointDtoContext2$outboundSchema: z.ZodType; export declare function createSlackChannelEndpointDtoContext2ToJSON(createSlackChannelEndpointDtoContext2: CreateSlackChannelEndpointDtoContext2): string; /** @internal */ export type CreateSlackChannelEndpointDtoContext$Outbound = CreateSlackChannelEndpointDtoContext2$Outbound | string; /** @internal */ export declare const CreateSlackChannelEndpointDtoContext$outboundSchema: z.ZodType; export declare function createSlackChannelEndpointDtoContextToJSON(createSlackChannelEndpointDtoContext: CreateSlackChannelEndpointDtoContext): string; /** @internal */ export type CreateSlackChannelEndpointDto$Outbound = { identifier?: string | undefined; subscriberId: string; context?: { [k: string]: CreateSlackChannelEndpointDtoContext2$Outbound | string; } | undefined; integrationIdentifier: string; connectionIdentifier?: string | undefined; type: "slack_channel"; endpoint: SlackChannelEndpointDto$Outbound; }; /** @internal */ export declare const CreateSlackChannelEndpointDto$outboundSchema: z.ZodType; export declare function createSlackChannelEndpointDtoToJSON(createSlackChannelEndpointDto: CreateSlackChannelEndpointDto): string; //# sourceMappingURL=createslackchannelendpointdto.d.ts.map