chore: Remove node_modules, dist, .env from tracking

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-02-10 18:09:40 +02:00
parent 2768650b42
commit 9f7c8faf60
3817 changed files with 0 additions and 856986 deletions

67
dist/client.d.ts vendored
View File

@@ -1,67 +0,0 @@
/**
* Confluence Cloud REST API v2 client.
* Uses basic auth with Atlassian API token.
*/
export interface Space {
id: string;
key: string;
name: string;
type: string;
status: string;
description?: string;
}
export interface Page {
id: string;
status: string;
title: string;
spaceId: string;
parentId?: string;
authorId: string;
createdAt: string;
version: {
number: number;
message?: string;
createdAt: string;
authorId?: string;
};
body?: {
storage?: {
representation: string;
value: string;
};
atlas_doc_format?: {
representation: string;
value: string;
};
};
_links?: {
webui?: string;
editui?: string;
};
}
export interface Comment {
id: string;
status: string;
title: string;
body?: {
storage?: {
representation: string;
value: string;
};
};
version: {
number: number;
createdAt: string;
};
}
export declare function listSpaces(limit?: number): Promise<Space[]>;
export declare function getSpace(spaceIdOrKey: string): Promise<Space>;
export declare function createSpace(key: string, name: string, description?: string): Promise<Space>;
export declare function searchPages(query: string, spaceId?: string, limit?: number): Promise<Page[]>;
export declare function getPage(pageId: string, includeBody?: boolean): Promise<Page>;
export declare function getPageByTitle(spaceId: string, title: string): Promise<Page | null>;
export declare function createPage(spaceId: string, title: string, body: string, parentId?: string): Promise<Page>;
export declare function updatePage(pageId: string, title: string, body: string, versionNumber: number, versionMessage?: string): Promise<Page>;
export declare function getPageComments(pageId: string, limit?: number): Promise<Comment[]>;
export declare function addPageComment(pageId: string, body: string): Promise<Comment>;
export declare function getWebUrl(page: Page): string;