dataset-types 3.2.4 → 3.2.6

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 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -52,6 +52,7 @@ export interface IDocumentEntityLink {
52
52
  export interface IConfigurationItem extends INamedEntity, ITimed {
53
53
  itemtype: string;
54
54
  active: boolean;
55
+ level: string;
55
56
  monitored: string;
56
57
  baseline: string;
57
58
  dimension: string;
@@ -202,6 +203,7 @@ export interface IDataGridAction<Type> {
202
203
  disabled?: IGridActionDisabled<Type>;
203
204
  onClick?: IGridAction<Type>;
204
205
  }
206
+ export type API_POST_FILE_SLICE = (filetype: string, content: string | ArrayBuffer, name: string, documenttype: string, level: string, sliceNumber: number, totalSlices: number, meta: any) => Promise<ICommandResult>;
205
207
  export interface IManageDataSetConfiguration {
206
208
  context: string;
207
209
  projectcontext: string;
@@ -231,7 +233,7 @@ export interface IManageDataSetConfiguration {
231
233
  createDocument?: (d: IDocument, stuff: any) => Promise<ICommandResult>;
232
234
  queryValidationData?: (datatype: string, entities: string[]) => Promise<ICommandResult>;
233
235
  queryRecords?: (documenttype: string, datatype: string, encoding: string) => Promise<ICommandResult>;
234
- postFileSlice?: (filetype: string, content: string | ArrayBuffer, name: string, documenttype: string, sliceNumber: number, totalSlices: number, meta: any) => Promise<ICommandResult>;
236
+ postFileSlice?: API_POST_FILE_SLICE;
235
237
  postReplay: {
236
238
  [datatype: string]: API_POST_REPLAY;
237
239
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.2.4",
3
+ "version": "3.2.6",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",