Skip to content

Commit

Permalink
Merge pull request #3 from nulib/collection-rep-image
Browse files Browse the repository at this point in the history
Allow work_id on collection representative image to be null
  • Loading branch information
kdid authored Feb 3, 2023
2 parents 67b4536 + 33f8fac commit 277bd33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nulib/dcapi-types",
"version": "2.0.0-rc.3",
"version": "2.0.0-rc.4",
"description": "Northwestern University Libraries Digital Collections API Typescript types",
"main": "index.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ export interface components {
title: string;
visibility: components["schemas"]["Visibility"];
};
CollectionRepresentativeImage: {
CollectionRepresentativeImage: ({
/** Format: uuid */
work_id: string;
work_id: string | null;
/** Format: uri */
url: string;
} | null;
}) | null;
ControlledTerm: {
id: string;
facet: string;
Expand Down

0 comments on commit 277bd33

Please sign in to comment.