dataset-types 3.0.18 → 3.0.20
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 +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -225,7 +225,7 @@ export interface IManageDataSetConfiguration {
|
|
|
225
225
|
validators: any;
|
|
226
226
|
}
|
|
227
227
|
export type API_POST_REPLAY = (source: string, logs: ILog[]) => Promise<ICommandResult>;
|
|
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) => 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>;
|
|
229
229
|
export interface IDataTypeMeta {
|
|
230
230
|
property: string;
|
|
231
231
|
description: string;
|
|
@@ -271,4 +271,10 @@ export interface IMenuAction {
|
|
|
271
271
|
isActive?: boolean;
|
|
272
272
|
click?: () => void;
|
|
273
273
|
}
|
|
274
|
+
export interface ITenant extends INamedEntity, ITimed {
|
|
275
|
+
lat: string;
|
|
276
|
+
lon: string;
|
|
277
|
+
underlay: string;
|
|
278
|
+
epsg: string;
|
|
279
|
+
}
|
|
274
280
|
export {};
|