triangle-types 1.0.214 → 1.0.215

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.
@@ -2,7 +2,7 @@ import { FragmentTypeID } from "../fragments/Fragment.js";
2
2
  export declare class TenantDocument {
3
3
  readonly tenant_id: string;
4
4
  readonly document_id: string;
5
- readonly file_extension_id: string;
5
+ readonly file_suffix_id: string;
6
6
  readonly name: string;
7
7
  readonly path: string;
8
8
  readonly fragment_type_id?: FragmentTypeID;
@@ -2,7 +2,7 @@ import { is_fragment_type_id } from "../fragments/Fragment.js";
2
2
  export class TenantDocument {
3
3
  tenant_id;
4
4
  document_id;
5
- file_extension_id;
5
+ file_suffix_id;
6
6
  name;
7
7
  path;
8
8
  fragment_type_id;
@@ -16,7 +16,7 @@ export class TenantDocument {
16
16
  }
17
17
  this.tenant_id = tenant_document.tenant_id;
18
18
  this.document_id = tenant_document.document_id;
19
- this.file_extension_id = tenant_document.file_extension_id;
19
+ this.file_suffix_id = tenant_document.file_suffix_id;
20
20
  this.name = tenant_document.name;
21
21
  this.path = tenant_document.path;
22
22
  this.fragment_type_id = tenant_document.fragment_type_id;
@@ -29,7 +29,7 @@ export class TenantDocument {
29
29
  return (tenant_document !== undefined &&
30
30
  typeof tenant_document.tenant_id === "string" &&
31
31
  typeof tenant_document.document_id === "string" &&
32
- typeof tenant_document.file_extension_id === "string" &&
32
+ typeof tenant_document.file_suffix_id === "string" &&
33
33
  typeof tenant_document.name === "string" &&
34
34
  typeof tenant_document.path === "string" &&
35
35
  (tenant_document.fragment_type_id === undefined || is_fragment_type_id(tenant_document.fragment_type_id)) &&
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triangle-types",
3
- "version": "1.0.214",
3
+ "version": "1.0.215",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {
@@ -3,7 +3,7 @@ import { FragmentTypeID, is_fragment_type_id } from "../fragments/Fragment"
3
3
  export class TenantDocument {
4
4
  readonly tenant_id : string
5
5
  readonly document_id : string
6
- readonly file_extension_id : string
6
+ readonly file_suffix_id : string
7
7
  readonly name : string
8
8
  readonly path : string
9
9
  readonly fragment_type_id? : FragmentTypeID
@@ -19,7 +19,7 @@ export class TenantDocument {
19
19
  }
20
20
  this.tenant_id = tenant_document.tenant_id
21
21
  this.document_id = tenant_document.document_id
22
- this.file_extension_id = tenant_document.file_extension_id
22
+ this.file_suffix_id = tenant_document.file_suffix_id
23
23
  this.name = tenant_document.name
24
24
  this.path = tenant_document.path
25
25
  this.fragment_type_id = tenant_document.fragment_type_id
@@ -34,7 +34,7 @@ export class TenantDocument {
34
34
  tenant_document !== undefined &&
35
35
  typeof tenant_document.tenant_id === "string" &&
36
36
  typeof tenant_document.document_id === "string" &&
37
- typeof tenant_document.file_extension_id === "string" &&
37
+ typeof tenant_document.file_suffix_id === "string" &&
38
38
  typeof tenant_document.name === "string" &&
39
39
  typeof tenant_document.path === "string" &&
40
40
  (tenant_document.fragment_type_id === undefined || is_fragment_type_id(tenant_document.fragment_type_id)) &&