@vercel/sdk
Version:
<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>
26 lines • 950 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
/**
* Provider synchronization errors, when synchronization is required.
*/
export type ConnectServiceSyncError = {
/**
* Human-readable provider synchronization error.
*/
message: string;
/**
* Connector fields that caused the synchronization error.
*/
fields?: Array<string> | undefined;
/**
* Provider-specific error details that are safe to expose.
*/
vendor?: {
[k: string]: any;
} | undefined;
};
/** @internal */
export declare const ConnectServiceSyncError$inboundSchema: z.ZodType<ConnectServiceSyncError, z.ZodTypeDef, unknown>;
export declare function connectServiceSyncErrorFromJSON(jsonString: string): SafeParseResult<ConnectServiceSyncError, SDKValidationError>;
//# sourceMappingURL=connectservicesyncerror.d.ts.map