persona-community-5/.pnpm-store/v3/files/e2/925668ef4fe800ede7e728faa7ff9acf1eb63da76935276cdd218a68582510cee0d4f42c2834ee5870491b2642094715f3f87eb935a2c24b2397aee955ca65
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

33 lines
670 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';
}