@ndla/types-backend 0.2.72 → 0.2.73

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.
@@ -124,24 +124,24 @@ export interface INewArticle {
124
124
  title: string;
125
125
  published?: string;
126
126
  content?: string;
127
- tags: string[];
127
+ tags?: string[];
128
128
  introduction?: string;
129
129
  metaDescription?: string;
130
130
  metaImage?: INewArticleMetaImage;
131
131
  visualElement?: string;
132
132
  copyright?: IDraftCopyright;
133
- requiredLibraries: IRequiredLibrary[];
133
+ requiredLibraries?: IRequiredLibrary[];
134
134
  articleType: string;
135
- notes: string[];
136
- editorLabels: string[];
137
- grepCodes: string[];
138
- conceptIds: number[];
135
+ notes?: string[];
136
+ editorLabels?: string[];
137
+ grepCodes?: string[];
138
+ conceptIds?: number[];
139
139
  availability?: string;
140
140
  relatedContent: (IRelatedContentLink | number)[];
141
141
  revisionMeta?: IRevisionMeta[];
142
142
  responsibleId?: string;
143
143
  slug?: string;
144
- comments: INewComment[];
144
+ comments?: INewComment[];
145
145
  prioritized?: boolean;
146
146
  priority?: string;
147
147
  }
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "devDependencies": {
28
28
  "typescript": "^5.3.3"
29
29
  },
30
- "version": "0.2.72"
30
+ "version": "0.2.73"
31
31
  }