import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { OAuthRefreshTokenCredentials, OAuthRefreshTokenCredentials$Outbound } from "./oauthrefreshtokencredentials.js"; import { OnedriveData, OnedriveData$Outbound } from "./onedrivedata.js"; export type AuthenticatorOnedriveConnection = { provider: "onedrive"; data: OnedriveData; /** * The email of the Onedrive account this is for */ userEmail: string; credentials: OAuthRefreshTokenCredentials; }; /** @internal */ export declare const AuthenticatorOnedriveConnection$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorOnedriveConnection$Outbound = { provider: "onedrive"; data: OnedriveData$Outbound; user_email: string; credentials: OAuthRefreshTokenCredentials$Outbound; }; /** @internal */ export declare const AuthenticatorOnedriveConnection$outboundSchema: z.ZodType; export declare function authenticatorOnedriveConnectionToJSON(authenticatorOnedriveConnection: AuthenticatorOnedriveConnection): string; export declare function authenticatorOnedriveConnectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatoronedriveconnection.d.ts.map