import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AccessTokenCredentials, AccessTokenCredentials$Outbound } from "./accesstokencredentials.js"; export type AuthenticatorNotionConnection = { provider: "notion"; workspaceId: string; workspaceName: string; /** * The email of the Notion account this is for */ userEmail: string; credentials: AccessTokenCredentials; }; /** @internal */ export declare const AuthenticatorNotionConnection$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorNotionConnection$Outbound = { provider: "notion"; workspace_id: string; workspace_name: string; user_email: string; credentials: AccessTokenCredentials$Outbound; }; /** @internal */ export declare const AuthenticatorNotionConnection$outboundSchema: z.ZodType; export declare function authenticatorNotionConnectionToJSON(authenticatorNotionConnection: AuthenticatorNotionConnection): string; export declare function authenticatorNotionConnectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatornotionconnection.d.ts.map