knowmax-quest-types 2.38.0 → 2.39.0-beta.1
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/ICollection.d.ts +1 -1
- package/dist/ICollectionDocumentReference.d.ts +1 -1
- package/dist/IDataCompare.d.ts +1 -1
- package/dist/IDocumentAlternative.d.ts +1 -1
- package/dist/IDocumentNode.d.ts +1 -1
- package/dist/IDocumentWithVersionInfo.d.ts +1 -1
- package/dist/IImportLog.d.ts +1 -1
- package/dist/IMetadataForNodes.d.ts +1 -1
- package/dist/IMetadataForQuestId.d.ts +1 -1
- package/dist/IReference.d.ts +1 -1
- package/dist/IReferenceInfo.d.ts +1 -1
- package/dist/IResource.d.ts +1 -1
- package/dist/IVersionMapItem.d.ts +1 -1
- package/package.json +5 -1
package/dist/ICollection.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ICollection } from ".";
|
|
1
|
+
import type { ICollection } from ".";
|
|
2
2
|
export interface ICollectionDocumentReference {
|
|
3
3
|
collection: ICollection;
|
|
4
4
|
/** Describes version of document that is referenced from this collection. Null in case current version is referenced. */
|
package/dist/IDataCompare.d.ts
CHANGED
package/dist/IDocumentNode.d.ts
CHANGED
package/dist/IImportLog.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IMetadataForQuestId } from ".";
|
|
1
|
+
import type { IMetadataForQuestId } from ".";
|
|
2
2
|
/** Metadata for a collection of nodes within a document version. */
|
|
3
3
|
export interface IMetadataForNodes {
|
|
4
4
|
/** Identification of document to which these nodes belong. Without version specification. */
|
package/dist/IReference.d.ts
CHANGED
package/dist/IReferenceInfo.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IDocument, IDocumentVersion, IDocumentNode, IMetadata, IFavoriteInfo, ICollectionDocumentReference, ICoverInfo, IResource, IDocumentAlternativeInfo } from '.';
|
|
1
|
+
import type { IDocument, IDocumentVersion, IDocumentNode, IMetadata, IFavoriteInfo, ICollectionDocumentReference, ICoverInfo, IResource, IDocumentAlternativeInfo } from '.';
|
|
2
2
|
export interface IReferenceInfo<T extends IDocumentNode<T> = IDocumentNode<any>> {
|
|
3
3
|
/** Originally requested Quest id. */
|
|
4
4
|
requestedQuestId: string;
|
package/dist/IResource.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knowmax-quest-types",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.39.0-beta.1",
|
|
4
4
|
"description": "Contains type definitions for communicating with Knowmax Quest.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
"knowmax",
|
|
20
20
|
"quest"
|
|
21
21
|
],
|
|
22
|
+
"jest": {
|
|
23
|
+
"preset": "ts-jest/presets/default-esm",
|
|
24
|
+
"extensionsToTreatAsEsm": [".ts"]
|
|
25
|
+
},
|
|
22
26
|
"author": "Knowmax BV",
|
|
23
27
|
"license": "MIT",
|
|
24
28
|
"devDependencies": {
|