triangle-types 1.0.216 → 1.0.217
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,7 +5,7 @@ export declare class TenantDocument {
|
|
|
5
5
|
readonly file_suffix_id: string;
|
|
6
6
|
readonly name: string;
|
|
7
7
|
readonly fragment_type_id?: FragmentTypeID;
|
|
8
|
-
readonly s3_id_zip
|
|
8
|
+
readonly s3_id_zip?: string;
|
|
9
9
|
readonly s3_id: string;
|
|
10
10
|
readonly s3_id_json?: string;
|
|
11
11
|
readonly s3_id_txt?: string;
|
|
@@ -30,7 +30,7 @@ export class TenantDocument {
|
|
|
30
30
|
typeof tenant_document.file_suffix_id === "string" &&
|
|
31
31
|
typeof tenant_document.name === "string" &&
|
|
32
32
|
(tenant_document.fragment_type_id === undefined || is_fragment_type_id(tenant_document.fragment_type_id)) &&
|
|
33
|
-
typeof tenant_document.s3_id_zip === "string" &&
|
|
33
|
+
(tenant_document.s3_id_zip === undefined || typeof tenant_document.s3_id_zip === "string") &&
|
|
34
34
|
typeof tenant_document.s3_id === "string" &&
|
|
35
35
|
(tenant_document.s3_id_json === undefined || typeof tenant_document.s3_id_json === "string") &&
|
|
36
36
|
(tenant_document.s3_id_txt === undefined || typeof tenant_document.s3_id_txt === "string"));
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ export class TenantDocument {
|
|
|
6
6
|
readonly file_suffix_id : string
|
|
7
7
|
readonly name : string
|
|
8
8
|
readonly fragment_type_id? : FragmentTypeID
|
|
9
|
-
readonly s3_id_zip : string
|
|
9
|
+
readonly s3_id_zip? : string
|
|
10
10
|
readonly s3_id : string
|
|
11
11
|
readonly s3_id_json? : string
|
|
12
12
|
readonly s3_id_txt? : string
|
|
@@ -35,7 +35,7 @@ export class TenantDocument {
|
|
|
35
35
|
typeof tenant_document.file_suffix_id === "string" &&
|
|
36
36
|
typeof tenant_document.name === "string" &&
|
|
37
37
|
(tenant_document.fragment_type_id === undefined || is_fragment_type_id(tenant_document.fragment_type_id)) &&
|
|
38
|
-
typeof tenant_document.s3_id_zip === "string" &&
|
|
38
|
+
(tenant_document.s3_id_zip === undefined || typeof tenant_document.s3_id_zip === "string") &&
|
|
39
39
|
typeof tenant_document.s3_id === "string" &&
|
|
40
40
|
(tenant_document.s3_id_json === undefined || typeof tenant_document.s3_id_json === "string") &&
|
|
41
41
|
(tenant_document.s3_id_txt === undefined || typeof tenant_document.s3_id_txt === "string")
|