triangle-utils 1.4.119 → 1.4.120
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.
|
@@ -10,6 +10,7 @@ export declare class GlobalConfig {
|
|
|
10
10
|
readonly s3_triage: string;
|
|
11
11
|
readonly super_federal_gov_api_keys: string;
|
|
12
12
|
readonly federal_gov_api_keys: string;
|
|
13
|
+
readonly federal_census_api_key: string;
|
|
13
14
|
readonly federal_lobby_api_key: string;
|
|
14
15
|
readonly scraping_bee_api_key: string;
|
|
15
16
|
readonly twitter_api_key: string;
|
|
@@ -10,6 +10,7 @@ export class GlobalConfig {
|
|
|
10
10
|
s3_triage;
|
|
11
11
|
super_federal_gov_api_keys;
|
|
12
12
|
federal_gov_api_keys;
|
|
13
|
+
federal_census_api_key;
|
|
13
14
|
federal_lobby_api_key;
|
|
14
15
|
scraping_bee_api_key;
|
|
15
16
|
twitter_api_key;
|
|
@@ -30,6 +31,7 @@ export class GlobalConfig {
|
|
|
30
31
|
this.s3_triage = global_config.s3_triage;
|
|
31
32
|
this.super_federal_gov_api_keys = global_config.super_federal_gov_api_keys;
|
|
32
33
|
this.federal_gov_api_keys = global_config.federal_gov_api_keys;
|
|
34
|
+
this.federal_census_api_key = global_config.federal_census_api_key;
|
|
33
35
|
this.federal_lobby_api_key = global_config.federal_lobby_api_key;
|
|
34
36
|
this.scraping_bee_api_key = global_config.scraping_bee_api_key;
|
|
35
37
|
this.twitter_api_key = global_config.twitter_api_key;
|
|
@@ -49,6 +51,7 @@ export class GlobalConfig {
|
|
|
49
51
|
typeof global_config.s3_triage === "string" &&
|
|
50
52
|
typeof global_config.super_federal_gov_api_keys === "string" &&
|
|
51
53
|
typeof global_config.federal_gov_api_keys === "string" &&
|
|
54
|
+
typeof global_config.federal_census_api_key === "string" &&
|
|
52
55
|
typeof global_config.federal_lobby_api_key === "string" &&
|
|
53
56
|
typeof global_config.scraping_bee_api_key === "string" &&
|
|
54
57
|
typeof global_config.twitter_api_key === "string" &&
|
package/package.json
CHANGED
|
@@ -10,6 +10,7 @@ export class GlobalConfig {
|
|
|
10
10
|
readonly s3_triage : string
|
|
11
11
|
readonly super_federal_gov_api_keys : string
|
|
12
12
|
readonly federal_gov_api_keys : string
|
|
13
|
+
readonly federal_census_api_key : string
|
|
13
14
|
readonly federal_lobby_api_key : string
|
|
14
15
|
readonly scraping_bee_api_key : string
|
|
15
16
|
readonly twitter_api_key : string
|
|
@@ -32,6 +33,7 @@ export class GlobalConfig {
|
|
|
32
33
|
this.s3_triage = global_config.s3_triage
|
|
33
34
|
this.super_federal_gov_api_keys = global_config.super_federal_gov_api_keys
|
|
34
35
|
this.federal_gov_api_keys = global_config.federal_gov_api_keys
|
|
36
|
+
this.federal_census_api_key = global_config.federal_census_api_key
|
|
35
37
|
this.federal_lobby_api_key = global_config.federal_lobby_api_key
|
|
36
38
|
this.scraping_bee_api_key = global_config.scraping_bee_api_key
|
|
37
39
|
this.twitter_api_key = global_config.twitter_api_key
|
|
@@ -53,6 +55,7 @@ export class GlobalConfig {
|
|
|
53
55
|
typeof global_config.s3_triage === "string" &&
|
|
54
56
|
typeof global_config.super_federal_gov_api_keys === "string" &&
|
|
55
57
|
typeof global_config.federal_gov_api_keys === "string" &&
|
|
58
|
+
typeof global_config.federal_census_api_key === "string" &&
|
|
56
59
|
typeof global_config.federal_lobby_api_key === "string" &&
|
|
57
60
|
typeof global_config.scraping_bee_api_key === "string" &&
|
|
58
61
|
typeof global_config.twitter_api_key === "string" &&
|