@omnia/workplace 6.12.103-preview → 6.12.105-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.
|
@@ -446,6 +446,8 @@ export declare class WebComponentManifests {
|
|
|
446
446
|
static get QRCodeSettings(): Guid;
|
|
447
447
|
static get TenantSetupWizardNode(): Guid;
|
|
448
448
|
static get BusinessProfileSetupWizardNode(): Guid;
|
|
449
|
+
static get TeamworkPermissionInput(): Guid;
|
|
450
|
+
static get TeamworkPermissionInputBlade(): Guid;
|
|
449
451
|
}
|
|
450
452
|
export declare class WebComponentElements {
|
|
451
453
|
static get AppProvisioningStepMember(): string;
|
|
@@ -2200,6 +2200,16 @@ var WebComponentManifests = /** @class */ (function () {
|
|
|
2200
2200
|
enumerable: false,
|
|
2201
2201
|
configurable: true
|
|
2202
2202
|
});
|
|
2203
|
+
Object.defineProperty(WebComponentManifests, "TeamworkPermissionInput", {
|
|
2204
|
+
get: function () { return new Guid("240a15bb-2845-4ace-8408-6bc1d251b859"); },
|
|
2205
|
+
enumerable: false,
|
|
2206
|
+
configurable: true
|
|
2207
|
+
});
|
|
2208
|
+
Object.defineProperty(WebComponentManifests, "TeamworkPermissionInputBlade", {
|
|
2209
|
+
get: function () { return new Guid("7cf438e9-8c47-440d-9958-202477c11551"); },
|
|
2210
|
+
enumerable: false,
|
|
2211
|
+
configurable: true
|
|
2212
|
+
});
|
|
2203
2213
|
return WebComponentManifests;
|
|
2204
2214
|
}());
|
|
2205
2215
|
export { WebComponentManifests };
|
package/internal-do-not-import-from-here/models/apps/TeamCollaborationAppInstanceProperties.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ export interface TeamCollaborationAppInstanceProperties extends TeamCollaboratio
|
|
|
16
16
|
members?: Array<Identity>;
|
|
17
17
|
readers?: Array<Identity>;
|
|
18
18
|
membership?: Membership;
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated Stop using this one. This is wrong implementation and is stop working now and will be removed in 7.0
|
|
21
|
+
* */
|
|
19
22
|
appAdministrators: Array<string>;
|
|
20
23
|
msTeamCloningSettings?: MicrosoftTeamCloningInformation;
|
|
21
24
|
}
|