@ndla/types-backend 1.0.121 → 1.0.122

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.
@@ -367,6 +367,8 @@ export type components = {
367
367
  created: string;
368
368
  /** @description The time of last update for the audio-file */
369
369
  updated: string;
370
+ /** @description The time the audio was released from its source */
371
+ released: string;
370
372
  };
371
373
  /**
372
374
  * AudioSummaryDTO
@@ -395,6 +397,8 @@ export type components = {
395
397
  series?: components["schemas"]["SeriesSummaryDTO"];
396
398
  /** @description The time and date of last update */
397
399
  lastUpdated: string;
400
+ /** @description The time the audio was released from its source */
401
+ released: string;
398
402
  };
399
403
  /**
400
404
  * AudioSummarySearchResultDTO
@@ -546,6 +550,8 @@ export type components = {
546
550
  seriesId?: number;
547
551
  /** @description Manuscript for the audio */
548
552
  manuscript?: string;
553
+ /** @description The time the audio was released from its source */
554
+ released?: string;
549
555
  };
550
556
  /**
551
557
  * NewPodcastMetaDTO
@@ -558,8 +564,6 @@ export type components = {
558
564
  coverPhotoId: string;
559
565
  /** @description Cover photo alttext for the podcast */
560
566
  coverPhotoAltText: string;
561
- /** @description The time the podcast was released from its source */
562
- released?: string;
563
567
  };
564
568
  /**
565
569
  * NewSeriesDTO
@@ -616,8 +620,6 @@ export type components = {
616
620
  coverPhoto: components["schemas"]["CoverPhotoDTO"];
617
621
  /** @description ISO 639-1 code that represents the language used in the title */
618
622
  language: string;
619
- /** @description The time the podcast was released from its source */
620
- released?: string;
621
623
  };
622
624
  /**
623
625
  * SearchParamsDTO
@@ -831,6 +833,8 @@ export type components = {
831
833
  seriesId?: number;
832
834
  /** @description Manuscript for the audio */
833
835
  manuscript?: string;
836
+ /** @description The time the audio was released from its source */
837
+ released?: string;
834
838
  };
835
839
  /**
836
840
  * ValidationErrorBody
package/package.json CHANGED
@@ -32,6 +32,6 @@
32
32
  "tsx": "^4.21.0",
33
33
  "typescript": "^5.9.3"
34
34
  },
35
- "version": "1.0.121",
35
+ "version": "1.0.122",
36
36
  "packageManager": "yarn@4.10.3"
37
37
  }