dataset-types 3.2.2 → 3.2.4

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 +2 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -90,7 +90,7 @@ export interface IFileService {
90
90
  getContainerName: (tenantid: string, context: string, level: string, log: boolean, txMode: string) => string;
91
91
  }
92
92
  export interface ILogService {
93
- archive: (context: string, projectcontext: string, submissionid: string, username: string, log: ILog[], processingtype?: string) => Promise<string>;
93
+ archive: (context: string, projectcontext: string, level: string, submissionid: string, username: string, log: ILog[], processingtype?: string) => Promise<string>;
94
94
  list: () => Promise<string[]>;
95
95
  }
96
96
  export interface ISecurityMonitorService {
@@ -125,6 +125,7 @@ export interface ILog {
125
125
  projectcontext: string;
126
126
  entity?: string;
127
127
  recordstatus?: string;
128
+ level?: string;
128
129
  user?: string;
129
130
  createdat?: string;
130
131
  effective?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.2.2",
3
+ "version": "3.2.4",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",