@hestia-earth/api 0.25.74 → 0.25.76

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.
@@ -3,7 +3,6 @@ import { IFileMetadata, status, pipelineStatus } from '../../files/model/model';
3
3
  export interface IAggregationMetadata extends IFileMetadata {
4
4
  totalIterations?: number;
5
5
  currentIterations?: number;
6
- missingIterations?: number[];
7
6
  }
8
7
  export declare class Aggregation extends BaseModel {
9
8
  folder: string;
@@ -102,8 +102,9 @@ export interface IFileTodoItem extends IFileComment {
102
102
  }
103
103
  export interface IFileMetadata {
104
104
  slackThreadTs?: string;
105
- nodesPerType?: Record<NodeType, number>;
106
- recalculatedNodesPerType?: Record<NodeType, number>;
105
+ nodesPerType?: Partial<Record<NodeType, number>>;
106
+ indexedNodesPerType?: Partial<Record<NodeType, number>>;
107
+ recalculatedNodesPerType?: Partial<Record<NodeType, number>>;
107
108
  }
108
109
  export declare class File extends BaseModel {
109
110
  filename: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/api",
3
- "version": "0.25.74",
3
+ "version": "0.25.76",
4
4
  "description": "Hestia API definitions",
5
5
  "main": "dist/models.js",
6
6
  "typings": "dist/models.d.ts",