knowmax-quest-types 2.31.0 → 2.33.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.
@@ -10,4 +10,6 @@ export interface IMetadataValueSuggestionItem {
10
10
  value: string;
11
11
  /** Value with marking of query. */
12
12
  highlightedValue: string;
13
+ /** Optional domain value label of selected value in Knowmax Octa. */
14
+ octaDomainValueLabel?: string;
13
15
  }
@@ -0,0 +1,13 @@
1
+ /** Describes labels provided by a security label provider of labels that grant access to a specific Knowmax Quest document. */
2
+ export interface ISecurityLabels {
3
+ /** Quest id to which these securitylabels apply. */
4
+ questId: string;
5
+ /** Collection of security labels that match with given Quest id. */
6
+ labels: string[];
7
+ /** Collection of labels for security modules that match with given Quest id. */
8
+ modules: string[];
9
+ /** Date time of last modification of these labels. */
10
+ modified: string;
11
+ /** Describes origin of security labels. */
12
+ origin: string;
13
+ }
@@ -0,0 +1 @@
1
+ export {};
package/dist/index.d.ts CHANGED
@@ -30,3 +30,4 @@ export * from './IDocumentAlternativeInfo';
30
30
  export * from './IDocumentPredecessor';
31
31
  export * from './metadata';
32
32
  export * from './IListRequest';
33
+ export * from './ISecurityLabels';
package/dist/index.js CHANGED
@@ -30,3 +30,4 @@ export * from './IDocumentAlternativeInfo';
30
30
  export * from './IDocumentPredecessor';
31
31
  export * from './metadata';
32
32
  export * from './IListRequest';
33
+ export * from './ISecurityLabels';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knowmax-quest-types",
3
- "version": "2.31.0",
3
+ "version": "2.33.0",
4
4
  "description": "Contains type definitions for communicating with Knowmax Quest.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -27,6 +27,6 @@
27
27
  "rimraf": "6.0.1",
28
28
  "ts-jest": "^29.2.5",
29
29
  "ts-node": "^10.9.2",
30
- "typescript": "5.6.3"
30
+ "typescript": "5.7.2"
31
31
  }
32
32
  }