@ndla/types-backend 1.0.12 → 1.0.14

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.
@@ -171,6 +171,10 @@ export interface ITitleDTO {
171
171
  title: string;
172
172
  language: string;
173
173
  }
174
+ export interface ITranscriptionResultDTO {
175
+ status: string;
176
+ transcription?: string;
177
+ }
174
178
  export interface IUpdatedAudioMetaInformationDTO {
175
179
  revision: number;
176
180
  title: string;
@@ -1,4 +1,4 @@
1
- export type GrepResultDTO = (IGrepKompetansemaalSettDTO | IGrepKjerneelementDTO | IGrepLaererplanDTO | IGrepTverrfagligTemaDTO | IGrepKompetansemaalDTO);
1
+ export type GrepResultDTO = (IGrepKjerneelementDTO | IGrepKompetansemaalDTO | IGrepKompetansemaalSettDTO | IGrepLaererplanDTO | IGrepTverrfagligTemaDTO);
2
2
  export type GrepSort = ("-relevance" | "relevance" | "-title" | "title" | "-code" | "code");
3
3
  export interface IApiTaxonomyContextDTO {
4
4
  publicId: string;
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "devDependencies": {
28
28
  "typescript": "^5.3.3"
29
29
  },
30
- "version": "1.0.12"
30
+ "version": "1.0.14"
31
31
  }