@omnia/fx-models 7.8.27-preview → 7.8.28-preview
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/Exposes.d.ts +0 -1
- package/Exposes.js +0 -1
- package/mediaflow/MediaflowSettings.d.ts +0 -2
- package/package.json +1 -1
- package/semanticsearch/SemanticSearchRequest.d.ts +0 -3
- package/semanticsearch/SemanticSearchRequest.js +0 -2
- package/semanticsearch/SemanticSearchResponse.d.ts +0 -25
- package/semanticsearch/SemanticSearchResponse.js +0 -10
- package/semanticsearch/index.d.ts +0 -2
- package/semanticsearch/index.js +0 -5
package/Exposes.d.ts
CHANGED
|
@@ -130,7 +130,6 @@ export * from "./bulkimportusers";
|
|
|
130
130
|
export * from "./linkstatus";
|
|
131
131
|
export * from "./statuscodelayout";
|
|
132
132
|
export * from "./analytics";
|
|
133
|
-
export * from "./semanticsearch";
|
|
134
133
|
export * from "./FilePicker";
|
|
135
134
|
export * from "./FileIdentifier";
|
|
136
135
|
export * from "./UserAgent";
|
package/Exposes.js
CHANGED
|
@@ -142,7 +142,6 @@ tslib_1.__exportStar(require("./bulkimportusers"), exports);
|
|
|
142
142
|
tslib_1.__exportStar(require("./linkstatus"), exports);
|
|
143
143
|
tslib_1.__exportStar(require("./statuscodelayout"), exports);
|
|
144
144
|
tslib_1.__exportStar(require("./analytics"), exports);
|
|
145
|
-
tslib_1.__exportStar(require("./semanticsearch"), exports);
|
|
146
145
|
//************************************************************************************ */
|
|
147
146
|
// End of folder exports
|
|
148
147
|
//************************************************************************************ */
|
package/package.json
CHANGED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { GuidValue } from "../Exposes";
|
|
2
|
-
export interface SemanticSearchJobResult {
|
|
3
|
-
id: GuidValue;
|
|
4
|
-
status: SemanticSearchJobStatus;
|
|
5
|
-
}
|
|
6
|
-
export interface SemanticSearchJobResultWithData<T> extends SemanticSearchJobResult {
|
|
7
|
-
result: T;
|
|
8
|
-
}
|
|
9
|
-
export interface SemanticSearchResult {
|
|
10
|
-
answer: string;
|
|
11
|
-
references: SemanticSearchReference[];
|
|
12
|
-
isUncertainAnswer: boolean;
|
|
13
|
-
}
|
|
14
|
-
export interface SemanticSearchReference {
|
|
15
|
-
id: string;
|
|
16
|
-
typeId: GuidValue;
|
|
17
|
-
content: string;
|
|
18
|
-
page: number;
|
|
19
|
-
}
|
|
20
|
-
export declare enum SemanticSearchJobStatus {
|
|
21
|
-
Created = 0,
|
|
22
|
-
Started = 1,
|
|
23
|
-
Finished = 2,
|
|
24
|
-
Error = 3
|
|
25
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SemanticSearchJobStatus = void 0;
|
|
4
|
-
var SemanticSearchJobStatus;
|
|
5
|
-
(function (SemanticSearchJobStatus) {
|
|
6
|
-
SemanticSearchJobStatus[SemanticSearchJobStatus["Created"] = 0] = "Created";
|
|
7
|
-
SemanticSearchJobStatus[SemanticSearchJobStatus["Started"] = 1] = "Started";
|
|
8
|
-
SemanticSearchJobStatus[SemanticSearchJobStatus["Finished"] = 2] = "Finished";
|
|
9
|
-
SemanticSearchJobStatus[SemanticSearchJobStatus["Error"] = 3] = "Error";
|
|
10
|
-
})(SemanticSearchJobStatus = exports.SemanticSearchJobStatus || (exports.SemanticSearchJobStatus = {}));
|
package/semanticsearch/index.js
DELETED