dataset-types 3.0.25 → 3.0.27

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.
Files changed (2) hide show
  1. package/index.d.ts +3 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -54,7 +54,8 @@ export interface IConfigurationItem extends INamedEntity, ITimed {
54
54
  baseline: string;
55
55
  dimension: string;
56
56
  datatypes: string;
57
- group: string;
57
+ group?: string;
58
+ grouping: string;
58
59
  }
59
60
  export type IPermission = String;
60
61
  export interface IRolePermission {
@@ -229,7 +230,7 @@ export interface IManageDataSetConfiguration {
229
230
  }
230
231
  export type API_POST_SAMPLE = (source: string) => Promise<ICommandResult>;
231
232
  export type API_POST_REPLAY = (source: string, logs: ILog[]) => Promise<ICommandResult>;
232
- 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>;
233
+ export type HOOK_USE_DATA = (context: string, projectcontext: string, datatype: string | undefined, documenttype: 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>;
233
234
  export interface IDataTypeMeta {
234
235
  property: string;
235
236
  description: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.0.25",
3
+ "version": "3.0.27",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",