knowmax-quest-types 2.32.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.
- package/dist/ISecurityLabels.d.ts +13 -0
- package/dist/ISecurityLabels.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
|
@@ -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
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knowmax-quest-types",
|
|
3
|
-
"version": "2.
|
|
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.
|
|
30
|
+
"typescript": "5.7.2"
|
|
31
31
|
}
|
|
32
32
|
}
|