@digitalsamba/embedded-api-mcp-server
Version:
Digital Samba Embedded API MCP Server - Model Context Protocol server for Digital Samba's Embedded API
26 lines • 530 B
TypeScript
/**
* Content library types and interfaces for the Digital Samba API
*
* @module types/content
*/
export interface Library {
id: string;
external_id?: string;
name: string;
created_at: string;
}
export interface LibraryFolder {
id: string;
external_id?: string;
description?: string;
created_at: string;
}
export interface LibraryFile {
id: string;
folder_id?: string;
name: string;
type: string;
size: number;
created_at: string;
}
//# sourceMappingURL=content.d.ts.map