@omnia/workplace 7.0.12-dev → 7.0.13-dev

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.
@@ -86,10 +86,6 @@ export declare namespace WorkspaceApp {
86
86
  class AppTemplateInfo {
87
87
  static id: Guid;
88
88
  }
89
- /***
90
- * @deprecated Removed in 7.0
91
- * */
92
- const appRoutePrefix = "_wp";
93
89
  class ux {
94
90
  static navBarVListColorClass: string;
95
91
  }
@@ -102,10 +102,6 @@ var WorkspaceApp;
102
102
  }
103
103
  AppTemplateInfo.id = new fx_models_1.Guid("1ff049ac-bf98-4533-913a-450bcd0d7550");
104
104
  WorkspaceApp.AppTemplateInfo = AppTemplateInfo;
105
- /***
106
- * @deprecated Removed in 7.0
107
- * */
108
- WorkspaceApp.appRoutePrefix = "_wp";
109
105
  class ux {
110
106
  }
111
107
  ux.navBarVListColorClass = "wp-navbar-v-list";
@@ -99,10 +99,6 @@ export declare class ResourceManifests {
99
99
  static get UserProfileCardEditingHandlerRegistration(): Guid;
100
100
  static get ActionButtonSignOffRequestHandler(): Guid;
101
101
  static get ActionButtonSignOffRequestHandlerRegistration(): Guid;
102
- /**
103
- * @deprecated this will be removed in 7.0
104
- */
105
- static get AppTemplateWizardStore(): Guid;
106
102
  /**
107
103
  * @deprecated this will be removed in 7.0
108
104
  */
@@ -106,10 +106,6 @@ class ResourceManifests {
106
106
  static get UserProfileCardEditingHandlerRegistration() { return new fx_models_1.Guid("2411590a-62da-4203-af50-9f514089c126"); }
107
107
  static get ActionButtonSignOffRequestHandler() { return new fx_models_1.Guid("2675e44e-dd92-4784-a5bc-2b4c8d060589"); }
108
108
  static get ActionButtonSignOffRequestHandlerRegistration() { return new fx_models_1.Guid("735da897-1665-42e6-9b30-60e978198ef8"); }
109
- /**
110
- * @deprecated this will be removed in 7.0
111
- */
112
- static get AppTemplateWizardStore() { return new fx_models_1.Guid("dc78c1f2-3fb6-4cc7-9552-b2f0b6b54dc0"); }
113
109
  /**
114
110
  * @deprecated this will be removed in 7.0
115
111
  */
@@ -3,12 +3,3 @@ import { TeamCollaborationAppTemplateProperties } from ".";
3
3
  export interface TeamCollaborationAppTemplate extends AppTemplate {
4
4
  properties: TeamCollaborationAppTemplateProperties;
5
5
  }
6
- /**
7
- * @deprecated this will be removed in 7.0
8
- *
9
- * */
10
- export interface ProvisionEnterpriseProperties {
11
- team: boolean;
12
- yammer: boolean;
13
- facebook: boolean;
14
- }
@@ -7,7 +7,6 @@ export * from "./TeamProvisioning";
7
7
  export * from "./SiteDesign";
8
8
  export * from "./MSTeamsInfo";
9
9
  export * from "./TeamCollaborationAppInstance";
10
- export * from "./OfficeNamingPolicyValidationResult";
11
10
  export * from "./MSTeamsChannel";
12
11
  export * from "./MSTeamsProperties";
13
12
  export * from "./MSTeamsApps";
@@ -10,7 +10,6 @@ tslib_1.__exportStar(require("./TeamProvisioning"), exports);
10
10
  tslib_1.__exportStar(require("./SiteDesign"), exports);
11
11
  tslib_1.__exportStar(require("./MSTeamsInfo"), exports);
12
12
  tslib_1.__exportStar(require("./TeamCollaborationAppInstance"), exports);
13
- tslib_1.__exportStar(require("./OfficeNamingPolicyValidationResult"), exports);
14
13
  tslib_1.__exportStar(require("./MSTeamsChannel"), exports);
15
14
  tslib_1.__exportStar(require("./MSTeamsProperties"), exports);
16
15
  tslib_1.__exportStar(require("./MSTeamsApps"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.0.12-dev",
4
+ "version": "7.0.13-dev",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -1,28 +0,0 @@
1
- /**
2
- * @deprecated This will be removed in 7.0. This is more likely an internal model and will not be used anywhere outside workplace
3
- * */
4
- export interface OfficeNamingPolicyValidationResult {
5
- alias: AliasValidationResult;
6
- siteName: SiteNameValidationResult;
7
- isValid: boolean;
8
- }
9
- /**
10
- * @deprecated This will be removed in 7.0. This is more likely an internal model and will not be used anywhere outside workplace
11
- * */
12
- export interface AliasValidationResult {
13
- blockedWord: string;
14
- isExist: boolean;
15
- isInvalid: boolean;
16
- suggestedAlias: string;
17
- prefix: string;
18
- suffix: string;
19
- }
20
- /**
21
- * @deprecated This will be removed in 7.0. This is more likely an internal model and will not be used anywhere outside workplace
22
- * */
23
- export interface SiteNameValidationResult {
24
- blockedWord: string;
25
- isInvalid: boolean;
26
- prefix: string;
27
- suffix: string;
28
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });