@ndla/types-backend 0.2.54 → 0.2.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -152,7 +152,7 @@ export interface ITagsSearchResult {
152
152
  export interface IUpdateImageMetaInformation {
153
153
  language: string;
154
154
  title?: string;
155
- alttext?: (null | string);
155
+ alttext: UpdateOrDeleteString;
156
156
  copyright?: ICopyright;
157
157
  tags?: string[];
158
158
  caption?: string;
@@ -168,3 +168,4 @@ export interface IValidationMessage {
168
168
  field: string;
169
169
  message: string;
170
170
  }
171
+ export type UpdateOrDeleteString = (null | undefined | string);
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "devDependencies": {
28
28
  "typescript": "^5.0.2"
29
29
  },
30
- "version": "0.2.54"
30
+ "version": "0.2.55"
31
31
  }