knowmax-quest-types 2.27.1 → 2.28.0

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.
@@ -6,4 +6,10 @@ export interface IMetadata {
6
6
  description?: string;
7
7
  /** Origin of value. Possible values: Document, DocumentVersion, DocumentNode, Dynamic, DynamicIndexable, Collection */
8
8
  origin?: string;
9
+ /** If set this value can't be changed. Only set for metadata of documentversion(nodes). Metadata of document and collections is always mutable. */
10
+ immutable?: boolean;
11
+ modified?: string;
12
+ modifiedBy?: string;
13
+ created?: string;
14
+ createdBy?: string;
9
15
  }
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "knowmax-quest-types",
3
- "version": "2.27.1",
3
+ "version": "2.28.0",
4
4
  "description": "Contains type definitions for communicating with Knowmax Quest.",
5
+ "type": "module",
5
6
  "main": "./dist/index.js",
6
7
  "types": "./dist/index.d.ts",
7
8
  "scripts": {
@@ -23,9 +24,9 @@
23
24
  "devDependencies": {
24
25
  "@jest/globals": "^29.7.0",
25
26
  "jest": "^29.7.0",
26
- "rimraf": "5.0.5",
27
- "ts-jest": "^29.1.2",
27
+ "rimraf": "5.0.7",
28
+ "ts-jest": "^29.1.5",
28
29
  "ts-node": "^10.9.2",
29
- "typescript": "5.4.5"
30
+ "typescript": "5.5.2"
30
31
  }
31
- }
32
+ }