triangle-utils 1.4.76 → 1.4.77
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.
|
@@ -5,6 +5,7 @@ export declare class GlobalConfig {
|
|
|
5
5
|
readonly auth_url: string;
|
|
6
6
|
readonly s3_elections: string;
|
|
7
7
|
readonly s3_prism: string;
|
|
8
|
+
readonly s3_scout: string;
|
|
8
9
|
readonly s3_triage: string;
|
|
9
10
|
readonly super_federal_gov_api_keys: string;
|
|
10
11
|
readonly federal_gov_api_keys: string;
|
|
@@ -5,6 +5,7 @@ export class GlobalConfig {
|
|
|
5
5
|
auth_url;
|
|
6
6
|
s3_elections;
|
|
7
7
|
s3_prism;
|
|
8
|
+
s3_scout;
|
|
8
9
|
s3_triage;
|
|
9
10
|
super_federal_gov_api_keys;
|
|
10
11
|
federal_gov_api_keys;
|
|
@@ -23,6 +24,7 @@ export class GlobalConfig {
|
|
|
23
24
|
this.auth_url = global_config.auth_url;
|
|
24
25
|
this.s3_elections = global_config.s3_elections;
|
|
25
26
|
this.s3_prism = global_config.s3_prism;
|
|
27
|
+
this.s3_scout = global_config.s3_scout;
|
|
26
28
|
this.s3_triage = global_config.s3_triage;
|
|
27
29
|
this.super_federal_gov_api_keys = global_config.super_federal_gov_api_keys;
|
|
28
30
|
this.federal_gov_api_keys = global_config.federal_gov_api_keys;
|
|
@@ -40,6 +42,7 @@ export class GlobalConfig {
|
|
|
40
42
|
typeof global_config.auth_url === "string" &&
|
|
41
43
|
typeof global_config.s3_elections === "string" &&
|
|
42
44
|
typeof global_config.s3_prism === "string" &&
|
|
45
|
+
typeof global_config.s3_scout === "string" &&
|
|
43
46
|
typeof global_config.s3_triage === "string" &&
|
|
44
47
|
typeof global_config.super_federal_gov_api_keys === "string" &&
|
|
45
48
|
typeof global_config.federal_gov_api_keys === "string" &&
|
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ export class GlobalConfig {
|
|
|
5
5
|
readonly auth_url : string
|
|
6
6
|
readonly s3_elections : string
|
|
7
7
|
readonly s3_prism : string
|
|
8
|
+
readonly s3_scout : string
|
|
8
9
|
readonly s3_triage : string
|
|
9
10
|
readonly super_federal_gov_api_keys : string
|
|
10
11
|
readonly federal_gov_api_keys : string
|
|
@@ -25,6 +26,7 @@ export class GlobalConfig {
|
|
|
25
26
|
this.auth_url = global_config.auth_url
|
|
26
27
|
this.s3_elections = global_config.s3_elections
|
|
27
28
|
this.s3_prism = global_config.s3_prism
|
|
29
|
+
this.s3_scout = global_config.s3_scout
|
|
28
30
|
this.s3_triage = global_config.s3_triage
|
|
29
31
|
this.super_federal_gov_api_keys = global_config.super_federal_gov_api_keys
|
|
30
32
|
this.federal_gov_api_keys = global_config.federal_gov_api_keys
|
|
@@ -44,6 +46,7 @@ export class GlobalConfig {
|
|
|
44
46
|
typeof global_config.auth_url === "string" &&
|
|
45
47
|
typeof global_config.s3_elections === "string" &&
|
|
46
48
|
typeof global_config.s3_prism === "string" &&
|
|
49
|
+
typeof global_config.s3_scout === "string" &&
|
|
47
50
|
typeof global_config.s3_triage === "string" &&
|
|
48
51
|
typeof global_config.super_federal_gov_api_keys === "string" &&
|
|
49
52
|
typeof global_config.federal_gov_api_keys === "string" &&
|