/** * Confluence space object */ export interface ConfluenceSpace { id: number; key: string; name: string; type?: string; description?: { plain?: { value: string; representation: string; }; view?: { value: string; representation: string; }; }; _links?: { self?: string; webui?: string; }; } /** * Parameters for listing spaces */ export interface GetSpacesParams { /** Starting index (0-based) */ start?: number; /** Maximum results per page */ limit?: number; /** Space type filter */ type?: 'global' | 'personal'; /** Space status */ status?: 'current' | 'archived'; /** Expand options */ expand?: string; } /** * Parameters for getting a single space */ export interface GetSpaceParams { /** Space key */ spaceKey: string; /** Expand options */ expand?: string; } //# sourceMappingURL=space.d.ts.map