@coveo/platform-client 40.5.0 → 40.6.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/cjs/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.js +7 -0
- package/dist/cjs/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.js.map +1 -1
- package/dist/esm/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.js +6 -1
- package/dist/esm/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.js.map +1 -1
- package/dist/types/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.d.ts +9 -0
- package/package.json +1 -1
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MetadataIndexedBy = void 0;
|
|
4
|
+
var MetadataIndexedBy;
|
|
5
|
+
(function (MetadataIndexedBy) {
|
|
6
|
+
MetadataIndexedBy["NONE"] = "NONE";
|
|
7
|
+
MetadataIndexedBy["FIELD"] = "FIELD";
|
|
8
|
+
MetadataIndexedBy["MAPPING"] = "MAPPING";
|
|
9
|
+
})(MetadataIndexedBy = exports.MetadataIndexedBy || (exports.MetadataIndexedBy = {}));
|
|
3
10
|
//# sourceMappingURL=SourcesMetadataInterfaces.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SourcesMetadataInterfaces.js","sourceRoot":"","sources":["../../../../../src/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"SourcesMetadataInterfaces.js","sourceRoot":"","sources":["../../../../../src/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.ts"],"names":[],"mappings":";;;AAEA,IAAY,iBAIX;AAJD,WAAY,iBAAiB;IACzB,kCAAa,CAAA;IACb,oCAAe,CAAA;IACf,wCAAmB,CAAA;AACvB,CAAC,EAJW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAI5B"}
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export
|
|
1
|
+
export var MetadataIndexedBy;
|
|
2
|
+
(function (MetadataIndexedBy) {
|
|
3
|
+
MetadataIndexedBy["NONE"] = "NONE";
|
|
4
|
+
MetadataIndexedBy["FIELD"] = "FIELD";
|
|
5
|
+
MetadataIndexedBy["MAPPING"] = "MAPPING";
|
|
6
|
+
})(MetadataIndexedBy = MetadataIndexedBy || (MetadataIndexedBy = {}));
|
|
2
7
|
//# sourceMappingURL=SourcesMetadataInterfaces.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SourcesMetadataInterfaces.js","sourceRoot":"","sources":["../../../../../src/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"SourcesMetadataInterfaces.js","sourceRoot":"","sources":["../../../../../src/resources/Sources/SourcesMetadata/SourcesMetadataInterfaces.ts"],"names":[],"mappings":"AAEA,MAAM,CAAN,IAAY,iBAIX;AAJD,WAAY,iBAAiB;IACzB,kCAAa,CAAA;IACb,oCAAe,CAAA;IACf,wCAAmB,CAAA;AACvB,CAAC,EAJW,iBAAiB,GAAjB,iBAAiB,KAAjB,iBAAiB,QAI5B"}
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { PageModel } from '../../BaseInterfaces.js';
|
|
2
|
+
export declare enum MetadataIndexedBy {
|
|
3
|
+
NONE = "NONE",
|
|
4
|
+
FIELD = "FIELD",
|
|
5
|
+
MAPPING = "MAPPING"
|
|
6
|
+
}
|
|
2
7
|
export interface MetadataPageModel extends PageModel {
|
|
3
8
|
items: Metadata[];
|
|
4
9
|
creationDate: number;
|
|
@@ -37,6 +42,10 @@ export interface Metadata {
|
|
|
37
42
|
* Whether the origin is mapped or not.
|
|
38
43
|
*/
|
|
39
44
|
isMapped: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* How is the metadata indexed
|
|
47
|
+
*/
|
|
48
|
+
indexedBy: MetadataIndexedBy;
|
|
40
49
|
}
|
|
41
50
|
export interface MetadataReportStatus {
|
|
42
51
|
/**
|