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"; export type AuthenticatorSalesforceConnection = { provider: "salesforce"; /** * The email of the Salesforce account this is for */ userEmail: string; /** * The url of your Salesforce instance, where you go to login. */ url: string; credentials: OAuthRefreshTokenCredentials; }; /** @internal */ export declare const AuthenticatorSalesforceConnection$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorSalesforceConnection$Outbound = { provider: "salesforce"; user_email: string; url: string; credentials: OAuthRefreshTokenCredentials$Outbound; }; /** @internal */ export declare const AuthenticatorSalesforceConnection$outboundSchema: z.ZodType; export declare function authenticatorSalesforceConnectionToJSON(authenticatorSalesforceConnection: AuthenticatorSalesforceConnection): string; export declare function authenticatorSalesforceConnectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatorsalesforceconnection.d.ts.map