knowmax-quest-types 2.21.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export interface IReferenceInfoOptions {
|
|
2
|
-
/** Get information for
|
|
2
|
+
/** Get information for document versions marked offline. Specific version required. */
|
|
3
3
|
allowOffline?: boolean;
|
|
4
|
-
/** Get information for
|
|
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;
|