knowmax-quest-types 2.19.0 → 2.20.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/ICollectionNode.d.ts +3 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -32,8 +32,10 @@ export interface ICollectionNode<T extends ICollectionNode<T> = ICollectionNode<
|
|
|
32
32
|
referenceValid?: boolean;
|
|
33
33
|
/** Indicates if referenced Quest document could be located exactly. */
|
|
34
34
|
referenceExact?: boolean;
|
|
35
|
-
/**
|
|
35
|
+
/** Indicates if reference Quest document has a cover. */
|
|
36
36
|
referenceCover?: boolean;
|
|
37
|
+
/** Indicates if reference Quest document root node has child nodes. If false, this document only has contents on document root node. If true document has child nodes and thus a toc. */
|
|
38
|
+
referenceRootChildNodes?: boolean;
|
|
37
39
|
/** License information for user calling method that returns this CollectionNodeInfoEx. Only applies to nodes with a valid document reference. Possible values: Unknown, Enabled, Disabled. */
|
|
38
40
|
license?: string;
|
|
39
41
|
/** Indicates if this node or any node in it's childs is enabled by license (and thus has a valid document reference). */
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -43,3 +43,4 @@ __exportStar(require("./IMetadataForQuestId"), exports);
|
|
|
43
43
|
__exportStar(require("./IMetadataValueSuggestion"), exports);
|
|
44
44
|
__exportStar(require("./IDocumentAlternativeInfo"), exports);
|
|
45
45
|
__exportStar(require("./metadata"), exports);
|
|
46
|
+
__exportStar(require("./IListRequest"), exports);
|