triangle-utils 1.4.110 → 1.4.111
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.
|
@@ -3,6 +3,7 @@ export class GlobalConfig {
|
|
|
3
3
|
cognito_user_pool_id;
|
|
4
4
|
secret_key;
|
|
5
5
|
auth_url;
|
|
6
|
+
s3_triangle;
|
|
6
7
|
s3_elections;
|
|
7
8
|
s3_prism;
|
|
8
9
|
s3_scout;
|
|
@@ -22,6 +23,7 @@ export class GlobalConfig {
|
|
|
22
23
|
this.cognito_user_pool_id = global_config.cognito_user_pool_id;
|
|
23
24
|
this.secret_key = global_config.secret_key;
|
|
24
25
|
this.auth_url = global_config.auth_url;
|
|
26
|
+
this.s3_triangle = global_config.s3_triangle;
|
|
25
27
|
this.s3_elections = global_config.s3_elections;
|
|
26
28
|
this.s3_prism = global_config.s3_prism;
|
|
27
29
|
this.s3_scout = global_config.s3_scout;
|
|
@@ -40,6 +42,7 @@ export class GlobalConfig {
|
|
|
40
42
|
typeof global_config.cognito_user_pool_id === "string" &&
|
|
41
43
|
typeof global_config.secret_key === "string" &&
|
|
42
44
|
typeof global_config.auth_url === "string" &&
|
|
45
|
+
typeof global_config.s3_triangle === "string" &&
|
|
43
46
|
typeof global_config.s3_elections === "string" &&
|
|
44
47
|
typeof global_config.s3_prism === "string" &&
|
|
45
48
|
typeof global_config.s3_scout === "string" &&
|
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@ export class GlobalConfig {
|
|
|
3
3
|
readonly cognito_user_pool_id : string
|
|
4
4
|
readonly secret_key : string
|
|
5
5
|
readonly auth_url : string
|
|
6
|
+
readonly s3_triangle : string
|
|
6
7
|
readonly s3_elections : string
|
|
7
8
|
readonly s3_prism : string
|
|
8
9
|
readonly s3_scout : string
|
|
@@ -24,6 +25,7 @@ export class GlobalConfig {
|
|
|
24
25
|
this.cognito_user_pool_id = global_config.cognito_user_pool_id
|
|
25
26
|
this.secret_key = global_config.secret_key
|
|
26
27
|
this.auth_url = global_config.auth_url
|
|
28
|
+
this.s3_triangle = global_config.s3_triangle
|
|
27
29
|
this.s3_elections = global_config.s3_elections
|
|
28
30
|
this.s3_prism = global_config.s3_prism
|
|
29
31
|
this.s3_scout = global_config.s3_scout
|
|
@@ -44,6 +46,7 @@ export class GlobalConfig {
|
|
|
44
46
|
typeof global_config.cognito_user_pool_id === "string" &&
|
|
45
47
|
typeof global_config.secret_key === "string" &&
|
|
46
48
|
typeof global_config.auth_url === "string" &&
|
|
49
|
+
typeof global_config.s3_triangle === "string" &&
|
|
47
50
|
typeof global_config.s3_elections === "string" &&
|
|
48
51
|
typeof global_config.s3_prism === "string" &&
|
|
49
52
|
typeof global_config.s3_scout === "string" &&
|