triangle-types 1.0.224 → 1.0.225

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.
@@ -18,7 +18,7 @@ export class YoutubeVideoTag {
18
18
  typeof youtube_video_tag.youtube_video_id === "string" &&
19
19
  typeof youtube_video_tag.tag_id === "string" &&
20
20
  typeof youtube_video_tag.time === "string" &&
21
- (youtube_video_tag.is_relevant === undefined || typeof youtube_video_tag.relevance === "boolean"));
21
+ (youtube_video_tag.is_relevant === undefined || typeof youtube_video_tag.is_relevant === "boolean"));
22
22
  }
23
23
  }
24
24
  export class YoutubeVideoTagAux extends YoutubeVideoTag {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triangle-types",
3
- "version": "1.0.224",
3
+ "version": "1.0.225",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {
@@ -23,7 +23,7 @@ export class YoutubeVideoTag {
23
23
  typeof youtube_video_tag.youtube_video_id === "string" &&
24
24
  typeof youtube_video_tag.tag_id === "string" &&
25
25
  typeof youtube_video_tag.time === "string" &&
26
- (youtube_video_tag.is_relevant === undefined || typeof youtube_video_tag.relevance === "boolean")
26
+ (youtube_video_tag.is_relevant === undefined || typeof youtube_video_tag.is_relevant === "boolean")
27
27
  )
28
28
  }
29
29
  }