@omnia/workplace 6.12.21-preview → 6.12.24-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/internal-do-not-import-from-here/apis/TranslatorProviderApi.d.ts +17 -0
- package/internal-do-not-import-from-here/apis/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/Constants.d.ts +9 -1
- package/internal-do-not-import-from-here/models/Constants.js +10 -2
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +2 -0
- package/internal-do-not-import-from-here/models/ManifestIds.js +10 -0
- package/internal-do-not-import-from-here/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/index.js +1 -0
- package/internal-do-not-import-from-here/models/texttranslator/AzureCognitiveTranslatorProvider.d.ts +5 -0
- package/internal-do-not-import-from-here/models/texttranslator/AzureCognitiveTranslatorProvider.js +1 -0
- package/internal-do-not-import-from-here/models/texttranslator/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/texttranslator/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ApiPath, TranslatorProviderSettings } from '@omnia/fx/models';
|
|
2
|
+
export interface ITranslatorProviderRegistrationApi {
|
|
3
|
+
registerTranslatorProvider: (providers: TranslatorProviderSettings | TranslatorProviderSettings[]) => void;
|
|
4
|
+
getAllTranslatorProviders: () => TranslatorProviderSettings[];
|
|
5
|
+
}
|
|
6
|
+
declare module '../models/WorkplaceApi' {
|
|
7
|
+
interface IWorkplaceApi {
|
|
8
|
+
translatorprovider: {
|
|
9
|
+
registration: Promise<ITranslatorProviderRegistrationApi>;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
interface IWorkplaceExtendApiManifest {
|
|
13
|
+
translatorprovider: {
|
|
14
|
+
registration: ApiPath;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -105,6 +105,13 @@ export declare const GovernanceDashboard: {
|
|
|
105
105
|
Total: Guid;
|
|
106
106
|
ActiveLastActivity: Guid;
|
|
107
107
|
InactiveLastActivity: Guid;
|
|
108
|
+
ReachId: Guid;
|
|
109
|
+
UnderuserdId: Guid;
|
|
110
|
+
ActiveUserReader: Guid;
|
|
111
|
+
ActiveUserContributor: Guid;
|
|
112
|
+
NoOfQuery: Guid;
|
|
113
|
+
AbandonedQuery: Guid;
|
|
114
|
+
NoResultQuery: Guid;
|
|
108
115
|
};
|
|
109
116
|
DashboardLayoutSettingsKey: string;
|
|
110
117
|
ActionButtonIds: {
|
|
@@ -187,7 +194,8 @@ export declare const SetupWizard: {
|
|
|
187
194
|
SettingsKey: string;
|
|
188
195
|
BasicIntranetTemplateId: string;
|
|
189
196
|
IntranetEssentialsTemplateId: string;
|
|
190
|
-
|
|
197
|
+
TenantIntranetEssentialsTemplateId: string;
|
|
198
|
+
TenantBasicIntranetTemplateId: string;
|
|
191
199
|
GeneralSettingsKey: string;
|
|
192
200
|
BrandingSettingsKey: string;
|
|
193
201
|
SharedLinkSettingsKey: string;
|
|
@@ -135,7 +135,14 @@ export var GovernanceDashboard = {
|
|
|
135
135
|
NewTeamworks: new Guid("47370cca-5518-44c2-91da-a083e78ec36a"),
|
|
136
136
|
Total: new Guid("e259e6da-2e8b-49e1-afd1-061d6582246e"),
|
|
137
137
|
ActiveLastActivity: new Guid("c42a3947-de82-4470-b5fd-9183872e181a"),
|
|
138
|
-
InactiveLastActivity: new Guid("2f2ce11d-f013-4a9d-b701-21469147187e")
|
|
138
|
+
InactiveLastActivity: new Guid("2f2ce11d-f013-4a9d-b701-21469147187e"),
|
|
139
|
+
ReachId: new Guid("7e7f0c21-f1e9-4b24-b1d6-77d75132fe8c"),
|
|
140
|
+
UnderuserdId: new Guid("f6b384b6-c764-420a-b8b3-192bcbe160de"),
|
|
141
|
+
ActiveUserReader: new Guid("ba54386a-c448-4556-a001-f8e71150616b"),
|
|
142
|
+
ActiveUserContributor: new Guid("994cce95-dd68-431b-9119-7afff8c68465"),
|
|
143
|
+
NoOfQuery: new Guid("c0b18c12-d3b5-4b29-8105-222d20d5522f"),
|
|
144
|
+
AbandonedQuery: new Guid("aa3d3355-e2a9-4c4c-a44a-5fb01493e7ae"),
|
|
145
|
+
NoResultQuery: new Guid("13786d92-6d16-402f-a961-d99ea4341601")
|
|
139
146
|
},
|
|
140
147
|
DashboardLayoutSettingsKey: "omnia.workplace.governancedashboard.layout",
|
|
141
148
|
ActionButtonIds: {
|
|
@@ -231,7 +238,8 @@ export var SetupWizard = {
|
|
|
231
238
|
SettingsKey: "owp_setupwizard_",
|
|
232
239
|
BasicIntranetTemplateId: "23D17EFE-E4AE-439D-A97D-CE184F7BC574",
|
|
233
240
|
IntranetEssentialsTemplateId: "B8C0608F-61F7-4C2A-9001-C26A7A0CB268",
|
|
234
|
-
|
|
241
|
+
TenantIntranetEssentialsTemplateId: "5470C05D-7115-4F86-BF6D-70FC51F3A1AD",
|
|
242
|
+
TenantBasicIntranetTemplateId: "87D71902-22F0-4DC3-9346-314CC5700C84",
|
|
235
243
|
GeneralSettingsKey: "SetupWizardGeneralSettings",
|
|
236
244
|
BrandingSettingsKey: "SetupWizardBrandingSettings",
|
|
237
245
|
SharedLinkSettingsKey: "SetupWizardSharedLinksSettings",
|
|
@@ -123,6 +123,7 @@ export declare class ResourceManifests {
|
|
|
123
123
|
static get SearchStatisticsMetricShared(): Guid;
|
|
124
124
|
static get SearchStatisticsMetricGroup(): Guid;
|
|
125
125
|
static get LinkHandlerSettingsRegistration(): Guid;
|
|
126
|
+
static get TranslatorProviderRegistration(): Guid;
|
|
126
127
|
}
|
|
127
128
|
export declare class WebComponentManifests {
|
|
128
129
|
static get FaviconSettings(): Guid;
|
|
@@ -437,6 +438,7 @@ export declare class WebComponentManifests {
|
|
|
437
438
|
static get TeamworkInactiveLastActivityMetricIndicator(): Guid;
|
|
438
439
|
static get TeamworkInactiveLastActivityMetricDetail(): Guid;
|
|
439
440
|
static get LinkHandlerJourney(): Guid;
|
|
441
|
+
static get AzureCognitiveProviderComponent(): Guid;
|
|
440
442
|
}
|
|
441
443
|
export declare class WebComponentElements {
|
|
442
444
|
static get AppProvisioningStepMember(): string;
|
|
@@ -586,6 +586,11 @@ var ResourceManifests = /** @class */ (function () {
|
|
|
586
586
|
enumerable: false,
|
|
587
587
|
configurable: true
|
|
588
588
|
});
|
|
589
|
+
Object.defineProperty(ResourceManifests, "TranslatorProviderRegistration", {
|
|
590
|
+
get: function () { return new Guid("94352c19-675f-4aa9-9a59-b216808bd9c5"); },
|
|
591
|
+
enumerable: false,
|
|
592
|
+
configurable: true
|
|
593
|
+
});
|
|
589
594
|
return ResourceManifests;
|
|
590
595
|
}());
|
|
591
596
|
export { ResourceManifests };
|
|
@@ -2155,6 +2160,11 @@ var WebComponentManifests = /** @class */ (function () {
|
|
|
2155
2160
|
enumerable: false,
|
|
2156
2161
|
configurable: true
|
|
2157
2162
|
});
|
|
2163
|
+
Object.defineProperty(WebComponentManifests, "AzureCognitiveProviderComponent", {
|
|
2164
|
+
get: function () { return new Guid("c32e69d5-bb4c-4b0e-9bb9-03af4dafcbca"); },
|
|
2165
|
+
enumerable: false,
|
|
2166
|
+
configurable: true
|
|
2167
|
+
});
|
|
2158
2168
|
return WebComponentManifests;
|
|
2159
2169
|
}());
|
|
2160
2170
|
export { WebComponentManifests };
|
package/internal-do-not-import-from-here/models/texttranslator/AzureCognitiveTranslatorProvider.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './AzureCognitiveTranslatorProvider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './AzureCognitiveTranslatorProvider';
|