triangle-types 1.0.206 → 1.0.207
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.
|
@@ -25,7 +25,7 @@ export class WebArticleTag {
|
|
|
25
25
|
typeof web_article_tag.tag_id === "string" &&
|
|
26
26
|
typeof web_article_tag.url === "string" &&
|
|
27
27
|
typeof web_article_tag.domain === "string" &&
|
|
28
|
-
web_article_tag.date === "string" &&
|
|
28
|
+
typeof web_article_tag.date === "string" &&
|
|
29
29
|
(web_article_tag.is_relevant === undefined || typeof web_article_tag.is_relevant === "boolean") &&
|
|
30
30
|
(web_article_tag.sentiment_id === undefined || typeof web_article_tag.sentiment_id === "string"));
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@ export class WebArticleTag {
|
|
|
30
30
|
typeof web_article_tag.tag_id === "string" &&
|
|
31
31
|
typeof web_article_tag.url === "string" &&
|
|
32
32
|
typeof web_article_tag.domain === "string" &&
|
|
33
|
-
web_article_tag.date === "string" &&
|
|
33
|
+
typeof web_article_tag.date === "string" &&
|
|
34
34
|
(web_article_tag.is_relevant === undefined || typeof web_article_tag.is_relevant === "boolean") &&
|
|
35
35
|
(web_article_tag.sentiment_id === undefined || typeof web_article_tag.sentiment_id === "string")
|
|
36
36
|
)
|