@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 CHANGED
@@ -78,6 +78,7 @@ export declare const Constants: {
78
78
  openai: {
79
79
  dallESettingsKey: string;
80
80
  textCompletionSettingsKey: string;
81
+ deploymentNameSettingKey: string;
81
82
  };
82
83
  };
83
84
  html: {
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.8.110-preview",
4
+ "version": "7.8.112-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"