Skip to content

Commit

Permalink
chore(weave): fix object delete typing (#3468)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtarpenning authored Jan 22, 2025
1 parent 84cb396 commit 100d145
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,11 @@ export type TraceObjCreateRes = {
export type TraceObjDeleteReq = {
project_id: string;
object_id: string;
digests: string[];
digests?: string[];
};

export type TraceObjDeleteRes = {
num_deleted?: number;
detail?: string;
};

export type TraceRefsReadBatchReq = {
Expand Down

0 comments on commit 100d145

Please sign in to comment.