/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The provider identifier for the credentials */ export const ChatOrPushProviderEnum = { Slack: "slack", Discord: "discord", Msteams: "msteams", Mattermost: "mattermost", Ryver: "ryver", Zulip: "zulip", GrafanaOnCall: "grafana-on-call", Getstream: "getstream", RocketChat: "rocket-chat", WhatsappBusiness: "whatsapp-business", ChatWebhook: "chat-webhook", NovuSlack: "novu-slack", Fcm: "fcm", Apns: "apns", Expo: "expo", OneSignal: "one-signal", Pushpad: "pushpad", PushWebhook: "push-webhook", PusherBeams: "pusher-beams", Appio: "appio", } as const; /** * The provider identifier for the credentials */ export type ChatOrPushProviderEnum = ClosedEnum; /** @internal */ export const ChatOrPushProviderEnum$inboundSchema: z.ZodNativeEnum< typeof ChatOrPushProviderEnum > = z.nativeEnum(ChatOrPushProviderEnum); /** @internal */ export const ChatOrPushProviderEnum$outboundSchema: z.ZodNativeEnum< typeof ChatOrPushProviderEnum > = ChatOrPushProviderEnum$inboundSchema;