@hestia-earth/api 0.25.75 → 0.25.77
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,9 +102,9 @@ export interface IFileTodoItem extends IFileComment {
|
|
|
102
102
|
}
|
|
103
103
|
export interface IFileMetadata {
|
|
104
104
|
slackThreadTs?: string;
|
|
105
|
-
nodesPerType?: Record<NodeType, number
|
|
106
|
-
indexedNodesPerType?: Record<NodeType, number
|
|
107
|
-
recalculatedNodesPerType?: Record<NodeType, number
|
|
105
|
+
nodesPerType?: Partial<Record<NodeType, number>>;
|
|
106
|
+
indexedNodesPerType?: Partial<Record<NodeType, number>>;
|
|
107
|
+
recalculatedNodesPerType?: Partial<Record<NodeType, number>>;
|
|
108
108
|
}
|
|
109
109
|
export declare class File extends BaseModel {
|
|
110
110
|
filename: string;
|