knowmax-quest-types 2.15.0 → 2.15.2

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.
@@ -1,6 +1,8 @@
1
1
  export interface ICollectionNode<T extends ICollectionNode<T> = ICollectionNode<any>> {
2
2
  /** Numeric identification of node. */
3
3
  id: number;
4
+ /** Id of collection to which node belongs. */
5
+ collectionId: number;
4
6
  /** Id of parent node. */
5
7
  parentId?: number;
6
8
  sequence: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knowmax-quest-types",
3
- "version": "2.15.0",
3
+ "version": "2.15.2",
4
4
  "description": "Contains type definitions for communicating with Knowmax Quest.",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -23,7 +23,7 @@
23
23
  "@types/mocha": "10.0.1",
24
24
  "chai": "4.3.7",
25
25
  "mocha": "10.2.0",
26
- "rimraf": "5.0.0",
26
+ "rimraf": "5.0.1",
27
27
  "ts-mocha": "10.0.0",
28
28
  "typescript": "4.9.5"
29
29
  }