dataset-types 3.2.0 → 3.2.1

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 +5 -5
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -77,16 +77,16 @@ export interface IModelService {
77
77
  }
78
78
  export interface IFileService {
79
79
  download2: (tenant: string, context: string, log: boolean, txmode: string, //production/development/test
80
- filetype: string, reference: string, encoding: BufferEncoding) => Promise<String | null>;
81
- downloadToFile: (localfilename: string, tenantid: string, context: string, log: boolean, filetype: string, reference: string, txmode: string) => Promise<any>;
80
+ filetype: string, level: string, reference: string, encoding: BufferEncoding) => Promise<String | null>;
81
+ downloadToFile: (localfilename: string, tenantid: string, context: string, log: boolean, filetype: string, level: string, reference: string, txmode: string) => Promise<any>;
82
82
  sendBlock: (tenantid: string, context: string, log: boolean, txmode: string, //production/development/test
83
- filetype: string, content: string, key: string, //blob id
83
+ filetype: string, level: string, content: string, key: string, //blob id
84
84
  sliceNumber: number, totalSlices: number, meta: any, //meta data
85
85
  tags: any) => void;
86
86
  copy: (sourceContainer: string, sourceFile: string, targetContainer: string, targetFile: string) => Promise<void>;
87
- list: (tenantid: string, context: string, log: boolean, page: number, pageSize: number, term: string, mode: string, recordtype: string, enabled: boolean, order: string) => Promise<IDatasetFiles>;
87
+ list: (tenantid: string, context: string, log: boolean, page: number, pageSize: number, term: string, mode: string, recordtype: string, level: string, enabled: boolean, order: string) => Promise<IDatasetFiles>;
88
88
  remove: (tenantid: string, context: string, mode: string, name: string) => Promise<boolean>;
89
- setMeta: (tenantid: string, context: string, mode: string, name: string, status: string) => Promise<boolean>;
89
+ setMeta: (tenantid: string, context: string, level: string, mode: string, name: string, status: string) => Promise<boolean>;
90
90
  getContainerName: (tenantid: string, context: string, log: boolean, txMode: string) => string;
91
91
  }
92
92
  export interface ILogService {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",