knowmax-quest-types 2.20.0 → 2.22.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.
@@ -13,6 +13,8 @@ export interface IDocumentVersion {
13
13
  * because it was inferred because this document is the latest online version for a document without expliciet document version marked as current.
14
14
  */
15
15
  current: boolean;
16
+ /** Original - non inferred - current setting. Set to undefined for automatic inference by Knowmax Quest. */
17
+ originalCurrent?: boolean;
16
18
  /** Reflects inferred value indiciating whether this version is considered archive. It's true in case document to which version belongs
17
19
  * was explicitly marked archive or in case this version is older than current version for this document.
18
20
  */
@@ -1,7 +1,7 @@
1
1
  export interface IReferenceInfoOptions {
2
- /** Get information for documents marked offline. Specific version required. */
2
+ /** Get information for document versions marked offline. Specific version required. */
3
3
  allowOffline?: boolean;
4
- /** Get information for documents marked invalid. Specific version required. */
4
+ /** Get information for document versions marked invalid. Specific version required. */
5
5
  allowInvalid?: boolean;
6
6
  /** Include information about requested version. */
7
7
  includeDocumentVersion?: boolean;
@@ -1,4 +1,8 @@
1
1
  export interface IVersionMapOptions {
2
+ /** Get information for document versions marked offline. Specific version required. */
3
+ allowOffline?: boolean;
4
+ /** Get information for document versions marked invalid. Specific version required. */
5
+ allowInvalid?: boolean;
2
6
  includePredecessors?: boolean;
3
7
  includeSuccessors?: boolean;
4
8
  maxLevels?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knowmax-quest-types",
3
- "version": "2.20.0",
3
+ "version": "2.22.0",
4
4
  "description": "Contains type definitions for communicating with Knowmax Quest.",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {