@omnia/fx-models 7.8.110-preview → 7.8.112-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/Constants.d.ts +1 -0
- package/Constants.js +1 -0
- package/ManifestIds.d.ts +3 -0
- package/ManifestIds.js +7 -1
- package/azure-openai/settings/OpenAISettings.d.ts +3 -0
- package/package.json +1 -1
package/Constants.d.ts
CHANGED
package/Constants.js
CHANGED
|
@@ -109,6 +109,7 @@ exports.Constants = {
|
|
|
109
109
|
openai: {
|
|
110
110
|
dallESettingsKey: "omnia.openai.dalle.settings",
|
|
111
111
|
textCompletionSettingsKey: "omnia.openai.textcompletion.settings",
|
|
112
|
+
deploymentNameSettingKey: "omnia.openai.deploymentname.settings",
|
|
112
113
|
}
|
|
113
114
|
},
|
|
114
115
|
html: {
|
package/ManifestIds.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/m
|
|
|
2
2
|
export declare class OmniaService {
|
|
3
3
|
static get Id(): Guid;
|
|
4
4
|
}
|
|
5
|
+
export declare class AnalyticService {
|
|
6
|
+
static get Id(): Guid;
|
|
7
|
+
}
|
|
5
8
|
export declare class OmniaGroupManifests {
|
|
6
9
|
static get FxConsole(): Guid;
|
|
7
10
|
static get Fx(): Guid;
|
package/ManifestIds.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OmniaWebComponentManifests = exports.OmniaResourceManifests = exports.OmniaGroupManifests = exports.OmniaService = void 0;
|
|
3
|
+
exports.OmniaWebComponentManifests = exports.OmniaResourceManifests = exports.OmniaGroupManifests = exports.AnalyticService = exports.OmniaService = void 0;
|
|
4
4
|
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
|
|
5
5
|
class OmniaService {
|
|
6
6
|
static get Id() {
|
|
@@ -8,6 +8,12 @@ class OmniaService {
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
exports.OmniaService = OmniaService;
|
|
11
|
+
class AnalyticService {
|
|
12
|
+
static get Id() {
|
|
13
|
+
return new models_1.Guid("a6a9556c-26c7-45e3-b21b-3f163c6bd9a4");
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.AnalyticService = AnalyticService;
|
|
11
17
|
class OmniaGroupManifests {
|
|
12
18
|
static get FxConsole() {
|
|
13
19
|
return new models_1.Guid("a7545e1c-9704-4a11-97df-25943ea19390");
|
|
@@ -7,5 +7,8 @@ export interface DallESetting {
|
|
|
7
7
|
apiBaseUrl: string;
|
|
8
8
|
apiVersion: string;
|
|
9
9
|
}
|
|
10
|
+
export interface DeploymentNameSetting {
|
|
11
|
+
deploymentName: string;
|
|
12
|
+
}
|
|
10
13
|
export declare const azureTextCompletionVersion: readonly ["2023-03-15-preview", "2022-12-01"];
|
|
11
14
|
export declare const azureDallEVersion: readonly ["2022-08-03-preview"];
|
package/package.json
CHANGED