@ndla/types-backend 0.2.77 → 0.2.78
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.
- package/build/search-api.d.ts +0 -10
- package/package.json +1 -1
package/build/search-api.d.ts
CHANGED
|
@@ -252,15 +252,5 @@ export interface ITitle {
|
|
|
252
252
|
title: string;
|
|
253
253
|
language: string;
|
|
254
254
|
}
|
|
255
|
-
export interface IValidationError {
|
|
256
|
-
code: string;
|
|
257
|
-
description: string;
|
|
258
|
-
messages: IValidationMessage[];
|
|
259
|
-
occuredAt: string;
|
|
260
|
-
}
|
|
261
|
-
export interface IValidationMessage {
|
|
262
|
-
field: string;
|
|
263
|
-
message: string;
|
|
264
|
-
}
|
|
265
255
|
export type LearningResourceType = ("standard" | "topic-article" | "frontpage-article" | "learningpath" | "concept" | "gloss");
|
|
266
256
|
export type SearchType = ("article" | "draft" | "learningpath" | "concept");
|
package/package.json
CHANGED