@seamapi/blueprint
Version:
Build tools for the Seam API using this blueprint.
4 lines (3 loc) • 301 B
TypeScript
export type SeamWorkspaceScope = 'none' | 'optional' | 'required';
export type SeamAuthMethod = 'api_key' | 'personal_access_token' | 'console_session_token' | 'client_session_token' | 'publishable_key';
export declare const mapOpenapiToSeamAuthMethod: (method: string) => SeamAuthMethod | undefined;