@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
37 lines • 1.77 kB
TypeScript
import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type TabConnectionInstance = {
/**
* Identifies an extension app's unique connection key.
*/
connectionKey: string;
/**
* Identifies an extension app's connection instance.
*/
connectionValue: string;
};
/** @internal */
export declare const TabConnectionInstance$inboundSchema: z.ZodType<TabConnectionInstance, z.ZodTypeDef, unknown>;
/** @internal */
export type TabConnectionInstance$Outbound = {
connectionKey: string;
connectionValue: string;
};
/** @internal */
export declare const TabConnectionInstance$outboundSchema: z.ZodType<TabConnectionInstance$Outbound, z.ZodTypeDef, TabConnectionInstance>;
/**
* @internal
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
*/
export declare namespace TabConnectionInstance$ {
/** @deprecated use `TabConnectionInstance$inboundSchema` instead. */
const inboundSchema: z.ZodType<TabConnectionInstance, z.ZodTypeDef, unknown>;
/** @deprecated use `TabConnectionInstance$outboundSchema` instead. */
const outboundSchema: z.ZodType<TabConnectionInstance$Outbound, z.ZodTypeDef, TabConnectionInstance>;
/** @deprecated use `TabConnectionInstance$Outbound` instead. */
type Outbound = TabConnectionInstance$Outbound;
}
export declare function tabConnectionInstanceToJSON(tabConnectionInstance: TabConnectionInstance): string;
export declare function tabConnectionInstanceFromJSON(jsonString: string): SafeParseResult<TabConnectionInstance, SDKValidationError>;
//# sourceMappingURL=tabconnectioninstance.d.ts.map