persona-community-5/.pnpm-store/v3/files/89/a6762bc5536f7039fa53cf4ecb4cdcc6c9267d200490730b8617a15a3a7d3aef9fd280d65e4d4298151361366fb0aaae59e351356ab88a837ba1d5abff4491
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

30 lines
713 B
Plaintext

interface VersionParams {
organizationId: string;
name: string;
version: string;
}
export interface PrepareFileuploadParams extends VersionParams {
filesHash: string;
filename: string;
isUpsert?: boolean;
}
export interface PushApiParams extends VersionParams {
rootFilePath: string;
filePaths: string[];
branch?: string;
isUpsert?: boolean;
isPublic?: boolean;
batchId?: string;
batchSize?: number;
}
export interface PrepareFileuploadOKResponse {
filePath: string;
signedUploadUrl: string;
}
export interface NotFoundProblemResponse {
status: 404;
title: 'Not Found';
code: 'ORGANIZATION_NOT_FOUND' | 'API_VERSION_NOT_FOUND';
}
export {};