dataset-types 3.0.17 → 3.0.19
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.
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -118,6 +118,9 @@ export interface ILog {
|
|
|
118
118
|
context: string;
|
|
119
119
|
projectcontext: string;
|
|
120
120
|
entity?: string;
|
|
121
|
+
recordstatus?: string;
|
|
122
|
+
user?: string;
|
|
123
|
+
createdat?: string;
|
|
121
124
|
};
|
|
122
125
|
document?: IDocument;
|
|
123
126
|
processing?: any[];
|
|
@@ -222,7 +225,7 @@ export interface IManageDataSetConfiguration {
|
|
|
222
225
|
validators: any;
|
|
223
226
|
}
|
|
224
227
|
export type API_POST_REPLAY = (source: string, logs: ILog[]) => Promise<ICommandResult>;
|
|
225
|
-
export type HOOK_USE_DATA = (context: string, projectcontext: string, datatype: string | undefined, entity: string, entities: string[], timeperiod: IDayRange | null, hash: number, page: number, pageSize: number, transform: ((d: any) => any) | null, allentities: boolean) => IResults<any>;
|
|
228
|
+
export type HOOK_USE_DATA = (context: string, projectcontext: string, datatype: string | undefined, entity: string, entities: string[], timeperiod: IDayRange | null, hash: number, page: number, pageSize: number, transform: ((d: any) => any) | null, allentities: boolean, where: any) => IResults<any>;
|
|
226
229
|
export interface IDataTypeMeta {
|
|
227
230
|
property: string;
|
|
228
231
|
description: string;
|