dataset-types 3.2.3 → 3.2.5

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 -0
  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;
@@ -125,6 +126,7 @@ export interface ILog {
125
126
  projectcontext: string;
126
127
  entity?: string;
127
128
  recordstatus?: string;
129
+ level?: string;
128
130
  user?: string;
129
131
  createdat?: string;
130
132
  effective?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.2.3",
3
+ "version": "3.2.5",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",