knowmax-quest-types 2.8.1 → 2.9.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.
- package/dist/IDocumentWithVersionInfo.d.ts +1 -0
- package/dist/IMetadata.d.ts +1 -1
- package/dist/IMetadataForNodes.d.ts +10 -0
- package/dist/IMetadataForNodes.js +2 -0
- package/dist/IMetadataForQuestId.d.ts +6 -0
- package/dist/IMetadataForQuestId.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +4 -4
package/dist/IMetadata.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IMetadataForQuestId } from ".";
|
|
2
|
+
/** Metadata for a collection of nodes within a document version. */
|
|
3
|
+
export interface IMetadataForNodes {
|
|
4
|
+
/** Identification of document to which these nodes belong. Without version specification. */
|
|
5
|
+
questId: string;
|
|
6
|
+
/** Version number of document version to which these nodes belong. */
|
|
7
|
+
version: number;
|
|
8
|
+
/** All hierarchically child nodes of document node specified by questId. */
|
|
9
|
+
nodes: IMetadataForQuestId[];
|
|
10
|
+
}
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -38,3 +38,5 @@ __exportStar(require("./IResource"), exports);
|
|
|
38
38
|
__exportStar(require("./IImportLog"), exports);
|
|
39
39
|
__exportStar(require("./IReference"), exports);
|
|
40
40
|
__exportStar(require("./IDocumentAlternative"), exports);
|
|
41
|
+
__exportStar(require("./IMetadataForNodes"), exports);
|
|
42
|
+
__exportStar(require("./IMetadataForQuestId"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knowmax-quest-types",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "Contains type definitions for communicating with Knowmax Quest.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"author": "Knowmax BV",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/chai": "4.3.
|
|
22
|
+
"@types/chai": "4.3.3",
|
|
23
23
|
"@types/mocha": "9.1.0",
|
|
24
|
-
"chai": "
|
|
24
|
+
"chai": "4.3.6",
|
|
25
25
|
"mocha": "9.2.2",
|
|
26
26
|
"rimraf": "^3.0.2",
|
|
27
27
|
"ts-mocha": "9.0.2",
|
|
28
|
-
"typescript": "4.
|
|
28
|
+
"typescript": "4.8.4"
|
|
29
29
|
}
|
|
30
30
|
}
|