@hestia-earth/api 0.14.0 → 0.14.2

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.
@@ -77,6 +77,10 @@ export interface IFileComment {
77
77
  user: User;
78
78
  readonly isOwner?: boolean;
79
79
  }
80
+ export interface IFileTodoItem extends IFileComment {
81
+ index: number;
82
+ isChecked: boolean;
83
+ }
80
84
  export declare class File extends BaseModel {
81
85
  filename: string;
82
86
  filepath: string;
@@ -93,6 +97,7 @@ export declare class File extends BaseModel {
93
97
  schemaOutdated?: boolean;
94
98
  glossaryOutdated?: boolean;
95
99
  comments?: IFileComment[];
100
+ todos?: IFileTodoItem[];
96
101
  metadata?: {
97
102
  slackThreadTs?: string;
98
103
  };
@@ -7,6 +7,7 @@ export declare enum ReconciliationLevel {
7
7
  export declare class Reconciliation extends BaseModel {
8
8
  idExpected: string;
9
9
  idRecalculated: string;
10
+ dataPrivate: boolean;
10
11
  name: string;
11
12
  level?: ReconciliationLevel;
12
13
  details?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/api",
3
- "version": "0.14.0",
3
+ "version": "0.14.2",
4
4
  "description": "Hestia API definitions",
5
5
  "main": "dist/models.js",
6
6
  "typings": "dist/models.d.ts",
@@ -80,6 +80,7 @@
80
80
  "express-recaptcha": "^5.1.0",
81
81
  "express-redis-cache": "^1.1.3",
82
82
  "express-session": "^1.17.2",
83
+ "http2-express-bridge": "^1.0.7",
83
84
  "husky": "^4.3.8",
84
85
  "js-levenshtein": "^1.1.6",
85
86
  "lodash.get": "^4.4.2",