elections-types 1.1.14 → 1.1.15

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.
@@ -1,4 +1,4 @@
1
- import { YoutubeVideo } from "./YoutubeVideo.js";
1
+ import { YoutubeVideoAux } from "./YoutubeVideo.js";
2
2
  export declare class YoutubeVideoTag {
3
3
  readonly youtube_video_id: string;
4
4
  readonly tag_id: string;
@@ -9,7 +9,7 @@ export declare class YoutubeVideoTag {
9
9
  static is(youtube_video_tag: any): youtube_video_tag is YoutubeVideoTag;
10
10
  }
11
11
  export declare class YoutubeVideoTagAux extends YoutubeVideoTag {
12
- readonly youtube_video: YoutubeVideo;
12
+ readonly youtube_video: YoutubeVideoAux;
13
13
  constructor(youtube_video_tag: any);
14
14
  static is(youtube_video_tag: any): youtube_video_tag is YoutubeVideoTagAux;
15
15
  }
@@ -1,4 +1,4 @@
1
- import { YoutubeVideo } from "./YoutubeVideo.js";
1
+ import { YoutubeVideoAux } from "./YoutubeVideo.js";
2
2
  export class YoutubeVideoTag {
3
3
  youtube_video_id;
4
4
  tag_id;
@@ -32,6 +32,6 @@ export class YoutubeVideoTagAux extends YoutubeVideoTag {
32
32
  }
33
33
  static is(youtube_video_tag) {
34
34
  return (YoutubeVideoTag.is(youtube_video_tag) &&
35
- YoutubeVideo.is(youtube_video_tag.youtube_video));
35
+ YoutubeVideoAux.is(youtube_video_tag.youtube_video));
36
36
  }
37
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elections-types",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "directories": {
@@ -1,4 +1,4 @@
1
- import { YoutubeVideo } from "./YoutubeVideo"
1
+ import { YoutubeVideoAux } from "./YoutubeVideo"
2
2
 
3
3
  export class YoutubeVideoTag {
4
4
  readonly youtube_video_id : string
@@ -29,7 +29,7 @@ export class YoutubeVideoTag {
29
29
  }
30
30
 
31
31
  export class YoutubeVideoTagAux extends YoutubeVideoTag {
32
- readonly youtube_video : YoutubeVideo
32
+ readonly youtube_video : YoutubeVideoAux
33
33
 
34
34
  constructor(youtube_video_tag : any) {
35
35
  if (!YoutubeVideoTagAux.is(youtube_video_tag)) {
@@ -42,7 +42,7 @@ export class YoutubeVideoTagAux extends YoutubeVideoTag {
42
42
  static is(youtube_video_tag : any) : youtube_video_tag is YoutubeVideoTagAux {
43
43
  return (
44
44
  YoutubeVideoTag.is(youtube_video_tag) &&
45
- YoutubeVideo.is(youtube_video_tag.youtube_video)
45
+ YoutubeVideoAux.is(youtube_video_tag.youtube_video)
46
46
  )
47
47
  }
48
48
  }