Skip to content

Commit

Permalink
fix: allow null when updating dataset/kvs/rq name (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan authored Nov 1, 2024
1 parent 78ea0d2 commit 0034c2e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/resource_clients/dataset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export interface DatasetStats {
}

export interface DatasetClientUpdateOptions {
name: string;
name?: string | null;
title?: string;
}

Expand Down
2 changes: 1 addition & 1 deletion src/resource_clients/key_value_store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export interface KeyValueStoreStats {
}

export interface KeyValueClientUpdateOptions {
name: string;
name?: string | null;
title?: string;
}

Expand Down
2 changes: 1 addition & 1 deletion src/resource_clients/request_queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ export interface RequestQueueStats {
}

export interface RequestQueueClientUpdateOptions {
name: string;
name?: string | null;
title?: string;
}

Expand Down

0 comments on commit 0034c2e

Please sign in to comment.