elections-types 1.0.84 → 1.0.85

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.
@@ -8,7 +8,7 @@ export declare class FECFile {
8
8
  readonly form_type_id: FormTypeID;
9
9
  readonly amendment_type_id: AmendmentTypeID;
10
10
  readonly long_form_type_id: LongFormTypeID;
11
- readonly s3_filename: string;
11
+ readonly s3_id: string;
12
12
  [x: string]: any;
13
13
  constructor(fec_file: any);
14
14
  static is(fec_file: any): fec_file is FECFile;
@@ -9,7 +9,7 @@ export class FECFile {
9
9
  form_type_id;
10
10
  amendment_type_id;
11
11
  long_form_type_id;
12
- s3_filename;
12
+ s3_id;
13
13
  constructor(fec_file) {
14
14
  if (!FECFile.is(fec_file)) {
15
15
  throw Error("Invalid input.");
@@ -19,7 +19,7 @@ export class FECFile {
19
19
  this.form_type_id = fec_file.form_type_id;
20
20
  this.amendment_type_id = fec_file.amendment_type_id;
21
21
  this.long_form_type_id = fec_file.long_form_type_id;
22
- this.s3_filename = fec_file.s3_filename;
22
+ this.s3_id = fec_file.s3_id;
23
23
  }
24
24
  static is(fec_file) {
25
25
  return (fec_file !== undefined &&
@@ -28,6 +28,6 @@ export class FECFile {
28
28
  is_form_type_id(fec_file.form_type_id) &&
29
29
  is_amendment_type_id(fec_file.amendment_type_id) &&
30
30
  is_long_form_type_id(fec_file.long_form_type_id) &&
31
- (fec_file.s3_filename === undefined || typeof fec_file.s3_filename === "string"));
31
+ (fec_file.s3_id === undefined || typeof fec_file.s3_id === "string"));
32
32
  }
33
33
  }
@@ -9,7 +9,7 @@ export declare class Video {
9
9
  readonly tags?: string[];
10
10
  readonly duration?: number;
11
11
  readonly fetch_time: string;
12
- readonly s3_filename?: string;
12
+ readonly s3_id?: string;
13
13
  constructor(video: Video);
14
14
  static is(video: any): video is Video;
15
15
  }
@@ -9,7 +9,7 @@ export class Video {
9
9
  tags;
10
10
  duration;
11
11
  fetch_time;
12
- s3_filename;
12
+ s3_id;
13
13
  constructor(video) {
14
14
  if (!Video.is(video)) {
15
15
  throw Error("Invalid input.");
@@ -24,7 +24,7 @@ export class Video {
24
24
  this.tags = video.tags;
25
25
  this.duration = video.duration;
26
26
  this.fetch_time = video.fetch_time;
27
- this.s3_filename = video.s3_filename;
27
+ this.s3_id = video.s3_id;
28
28
  }
29
29
  static is(video) {
30
30
  return (video !== undefined &&
@@ -38,6 +38,6 @@ export class Video {
38
38
  (video.tags === undefined || Array.isArray(video.tags) && video.tags.map((tag) => typeof tag === "string")) &&
39
39
  (video.duration === undefined || typeof video.duration === "number" && !isNaN(video.duration)) &&
40
40
  typeof video.fetch_time === "string" &&
41
- (video.s3_filename === undefined || typeof video.s3_filename === "string"));
41
+ (video.s3_id === undefined || typeof video.s3_id === "string"));
42
42
  }
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elections-types",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "directories": {
@@ -14,7 +14,7 @@ export class FECFile {
14
14
  readonly form_type_id : FormTypeID
15
15
  readonly amendment_type_id : AmendmentTypeID
16
16
  readonly long_form_type_id : LongFormTypeID
17
- readonly s3_filename : string
17
+ readonly s3_id : string
18
18
  [x : string] : any
19
19
 
20
20
  constructor(fec_file : any) {
@@ -26,7 +26,7 @@ export class FECFile {
26
26
  this.form_type_id = fec_file.form_type_id
27
27
  this.amendment_type_id = fec_file.amendment_type_id
28
28
  this.long_form_type_id = fec_file.long_form_type_id
29
- this.s3_filename = fec_file.s3_filename
29
+ this.s3_id = fec_file.s3_id
30
30
  }
31
31
 
32
32
  static is(fec_file : any) : fec_file is FECFile {
@@ -37,7 +37,7 @@ export class FECFile {
37
37
  is_form_type_id(fec_file.form_type_id) &&
38
38
  is_amendment_type_id(fec_file.amendment_type_id) &&
39
39
  is_long_form_type_id(fec_file.long_form_type_id) &&
40
- (fec_file.s3_filename === undefined || typeof fec_file.s3_filename === "string")
40
+ (fec_file.s3_id === undefined || typeof fec_file.s3_id === "string")
41
41
  )
42
42
  }
43
43
  }
@@ -9,7 +9,7 @@ export class Video {
9
9
  readonly tags? : string[]
10
10
  readonly duration? : number
11
11
  readonly fetch_time : string
12
- readonly s3_filename? : string
12
+ readonly s3_id? : string
13
13
 
14
14
  constructor(video : Video) {
15
15
  if (!Video.is(video)) {
@@ -25,7 +25,7 @@ export class Video {
25
25
  this.tags = video.tags
26
26
  this.duration = video.duration
27
27
  this.fetch_time = video.fetch_time
28
- this.s3_filename = video.s3_filename
28
+ this.s3_id = video.s3_id
29
29
  }
30
30
 
31
31
  static is(video : any) : video is Video {
@@ -41,7 +41,7 @@ export class Video {
41
41
  (video.tags === undefined || Array.isArray(video.tags) && video.tags.map((tag : any) => typeof tag === "string")) &&
42
42
  (video.duration === undefined || typeof video.duration === "number" && !isNaN(video.duration)) &&
43
43
  typeof video.fetch_time === "string" &&
44
- (video.s3_filename === undefined || typeof video.s3_filename === "string")
44
+ (video.s3_id === undefined || typeof video.s3_id === "string")
45
45
  )
46
46
  }
47
47
  }