@omnia/workplace 6.10.19-preview → 6.10.22-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/StepProviderApi.d.ts +18 -0
- package/internal-do-not-import-from-here/apis/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +9 -0
- package/internal-do-not-import-from-here/models/ManifestIds.js +45 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ApiPath } from '@omnia/fx-models';
|
|
2
|
+
import { StepProvider } from '../../models';
|
|
3
|
+
export interface IStepProviderRegistrationApi {
|
|
4
|
+
registerStepProvider: (providers: StepProvider | StepProvider[]) => void;
|
|
5
|
+
getAllStepProviders: () => StepProvider[];
|
|
6
|
+
}
|
|
7
|
+
declare module '../models/WorkplaceApi' {
|
|
8
|
+
interface IQuickSetupApi {
|
|
9
|
+
stepprovider: {
|
|
10
|
+
registration: Promise<IStepProviderRegistrationApi>;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
interface IQuickSetupExtendApiManifest {
|
|
14
|
+
stepprovider: {
|
|
15
|
+
registration: ApiPath;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -39,6 +39,8 @@ export declare class ResourceManifests {
|
|
|
39
39
|
static get AnnoucementNotificationPanelRegistration(): Guid;
|
|
40
40
|
static get NotificationPanelRegistration(): Guid;
|
|
41
41
|
static get NotificationPanelRegistrationApi(): Guid;
|
|
42
|
+
static get QuickSetupRegistrationApi(): Guid;
|
|
43
|
+
static get QuickSetupStepRegistrationApi(): Guid;
|
|
42
44
|
static get NotificationPanelCore(): Guid;
|
|
43
45
|
static get AdminShortcutRegistration(): Guid;
|
|
44
46
|
static get ActionMenuCore(): Guid;
|
|
@@ -99,6 +101,7 @@ export declare class ResourceManifests {
|
|
|
99
101
|
static get UserProfileCardEditingHandlerRegistration(): Guid;
|
|
100
102
|
static get ActionButtonSignOffRequestHandler(): Guid;
|
|
101
103
|
static get ActionButtonSignOffRequestHandlerRegistration(): Guid;
|
|
104
|
+
static get QuickSetupCore(): Guid;
|
|
102
105
|
/**
|
|
103
106
|
* @deprecated this will be removed in 7.0
|
|
104
107
|
*/
|
|
@@ -407,6 +410,12 @@ export declare class WebComponentManifests {
|
|
|
407
410
|
static get MsTeamTabLayoutConfiguration(): Guid;
|
|
408
411
|
static get PostsFeed(): Guid;
|
|
409
412
|
static get PostsFeedSettings(): Guid;
|
|
413
|
+
static get QuickSetupWizardCore(): Guid;
|
|
414
|
+
static get QuickSetupWizardGeneralView(): Guid;
|
|
415
|
+
static get QuickSetupWizardBrandingView(): Guid;
|
|
416
|
+
static get QuickSetupWizardSharelinksView(): Guid;
|
|
417
|
+
static get QuickSetupWizardContentView(): Guid;
|
|
418
|
+
static get QuickSetupWizardReviewView(): Guid;
|
|
410
419
|
}
|
|
411
420
|
export declare class WebComponentElements {
|
|
412
421
|
static get AppProvisioningStepMember(): string;
|
|
@@ -186,6 +186,16 @@ var ResourceManifests = /** @class */ (function () {
|
|
|
186
186
|
enumerable: false,
|
|
187
187
|
configurable: true
|
|
188
188
|
});
|
|
189
|
+
Object.defineProperty(ResourceManifests, "QuickSetupRegistrationApi", {
|
|
190
|
+
get: function () { return new Guid('547bd43c-c628-47b2-b6aa-fddacbb0d25e'); },
|
|
191
|
+
enumerable: false,
|
|
192
|
+
configurable: true
|
|
193
|
+
});
|
|
194
|
+
Object.defineProperty(ResourceManifests, "QuickSetupStepRegistrationApi", {
|
|
195
|
+
get: function () { return new Guid('92ed9817-196c-4b89-9a61-e12e7c14b74f'); },
|
|
196
|
+
enumerable: false,
|
|
197
|
+
configurable: true
|
|
198
|
+
});
|
|
189
199
|
Object.defineProperty(ResourceManifests, "NotificationPanelCore", {
|
|
190
200
|
get: function () { return new Guid("00cc0c0d-8487-4d05-bb4f-6cc5d9b1a8ba"); },
|
|
191
201
|
enumerable: false,
|
|
@@ -487,6 +497,11 @@ var ResourceManifests = /** @class */ (function () {
|
|
|
487
497
|
enumerable: false,
|
|
488
498
|
configurable: true
|
|
489
499
|
});
|
|
500
|
+
Object.defineProperty(ResourceManifests, "QuickSetupCore", {
|
|
501
|
+
get: function () { return new Guid("a491ba6f-29e7-4ef8-9cc7-c8ca5915f3af"); },
|
|
502
|
+
enumerable: false,
|
|
503
|
+
configurable: true
|
|
504
|
+
});
|
|
490
505
|
Object.defineProperty(ResourceManifests, "AppTemplateWizardStore", {
|
|
491
506
|
/**
|
|
492
507
|
* @deprecated this will be removed in 7.0
|
|
@@ -2005,6 +2020,36 @@ var WebComponentManifests = /** @class */ (function () {
|
|
|
2005
2020
|
enumerable: false,
|
|
2006
2021
|
configurable: true
|
|
2007
2022
|
});
|
|
2023
|
+
Object.defineProperty(WebComponentManifests, "QuickSetupWizardCore", {
|
|
2024
|
+
get: function () { return new Guid("758d200f-91f3-4446-8662-07592f89eeba"); },
|
|
2025
|
+
enumerable: false,
|
|
2026
|
+
configurable: true
|
|
2027
|
+
});
|
|
2028
|
+
Object.defineProperty(WebComponentManifests, "QuickSetupWizardGeneralView", {
|
|
2029
|
+
get: function () { return new Guid("c5f83b2f-a21f-4210-b4f4-13ffda4ac129"); },
|
|
2030
|
+
enumerable: false,
|
|
2031
|
+
configurable: true
|
|
2032
|
+
});
|
|
2033
|
+
Object.defineProperty(WebComponentManifests, "QuickSetupWizardBrandingView", {
|
|
2034
|
+
get: function () { return new Guid("084f1e3e-f0f5-4f2b-a75d-67f629308bf8"); },
|
|
2035
|
+
enumerable: false,
|
|
2036
|
+
configurable: true
|
|
2037
|
+
});
|
|
2038
|
+
Object.defineProperty(WebComponentManifests, "QuickSetupWizardSharelinksView", {
|
|
2039
|
+
get: function () { return new Guid("4e6730e5-25f1-4d99-81d1-7368f7e72f35"); },
|
|
2040
|
+
enumerable: false,
|
|
2041
|
+
configurable: true
|
|
2042
|
+
});
|
|
2043
|
+
Object.defineProperty(WebComponentManifests, "QuickSetupWizardContentView", {
|
|
2044
|
+
get: function () { return new Guid("c6633522-ba83-4077-99b1-a4e9cde070c6"); },
|
|
2045
|
+
enumerable: false,
|
|
2046
|
+
configurable: true
|
|
2047
|
+
});
|
|
2048
|
+
Object.defineProperty(WebComponentManifests, "QuickSetupWizardReviewView", {
|
|
2049
|
+
get: function () { return new Guid("911b4198-52b7-4b80-9ed4-b96269dcf8f1"); },
|
|
2050
|
+
enumerable: false,
|
|
2051
|
+
configurable: true
|
|
2052
|
+
});
|
|
2008
2053
|
return WebComponentManifests;
|
|
2009
2054
|
}());
|
|
2010
2055
|
export { WebComponentManifests };
|