triangle-types 1.0.258 → 1.0.259

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,6 @@ export declare class WebDocument {
2
2
  readonly web_document_id: string;
3
3
  readonly web_domain_id: string;
4
4
  readonly url: string;
5
- readonly domain: string;
6
5
  readonly title: string;
7
6
  readonly description: string;
8
7
  readonly time: string;
@@ -2,7 +2,6 @@ export class WebDocument {
2
2
  web_document_id;
3
3
  web_domain_id;
4
4
  url;
5
- domain;
6
5
  title;
7
6
  description;
8
7
  time;
@@ -16,7 +15,6 @@ export class WebDocument {
16
15
  this.web_document_id = web_document.web_document_id;
17
16
  this.web_domain_id = web_document.web_domain_id;
18
17
  this.url = web_document.url;
19
- this.domain = web_document.domain;
20
18
  this.title = web_document.title;
21
19
  this.description = web_document.description;
22
20
  this.time = web_document.time;
@@ -29,7 +27,6 @@ export class WebDocument {
29
27
  typeof web_document.web_document_id === "string" &&
30
28
  typeof web_document.web_domain_id === "string" &&
31
29
  typeof web_document.url === "string" &&
32
- typeof web_document.domain === "string" &&
33
30
  typeof web_document.title === "string" &&
34
31
  typeof web_document.description === "string" &&
35
32
  typeof web_document.time === "string" &&
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triangle-types",
3
- "version": "1.0.258",
3
+ "version": "1.0.259",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {
@@ -2,7 +2,6 @@ export class WebDocument {
2
2
  readonly web_document_id : string
3
3
  readonly web_domain_id : string
4
4
  readonly url : string
5
- readonly domain : string
6
5
  readonly title : string
7
6
  readonly description : string
8
7
  readonly time : string
@@ -17,7 +16,6 @@ export class WebDocument {
17
16
  this.web_document_id = web_document.web_document_id
18
17
  this.web_domain_id = web_document.web_domain_id
19
18
  this.url = web_document.url
20
- this.domain = web_document.domain
21
19
  this.title = web_document.title
22
20
  this.description = web_document.description
23
21
  this.time = web_document.time
@@ -32,7 +30,6 @@ export class WebDocument {
32
30
  typeof web_document.web_document_id === "string" &&
33
31
  typeof web_document.web_domain_id === "string" &&
34
32
  typeof web_document.url === "string" &&
35
- typeof web_document.domain === "string" &&
36
33
  typeof web_document.title === "string" &&
37
34
  typeof web_document.description === "string" &&
38
35
  typeof web_document.time === "string" &&