@omnia/workplace 7.6.28-preview → 7.6.30-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.
@@ -181,5 +181,8 @@ export declare module FormsLocalization {
181
181
  };
182
182
  };
183
183
  Status: string;
184
+ ErrorMessages: {
185
+ Unauthorized: string;
186
+ };
184
187
  }
185
188
  }
@@ -4,6 +4,7 @@ export interface FormActionHandlerSettings extends FormBuilderSettings {
4
4
  selectedTypeId: number;
5
5
  scopeType: FormScopeTypes;
6
6
  scopeId: GuidValue;
7
+ businessProfileId: GuidValue;
7
8
  }
8
9
  export interface FormBuilderSettings {
9
10
  allowMultiQuestions: boolean;
@@ -24,7 +25,7 @@ export interface FormBase {
24
25
  [internalName: string]: any;
25
26
  };
26
27
  }
27
- export interface CreateFormRequest extends FormBase {
28
+ export interface CreateFormRequest extends Form {
28
29
  generateLayoutIfEmpty?: boolean;
29
30
  }
30
31
  export interface Form extends FormBase {
@@ -0,0 +1,4 @@
1
+ import { DialogModel } from "@omnia/fx/ux";
2
+ export interface FormDialogModel extends DialogModel {
3
+ errorMessage?: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -6,3 +6,4 @@ export * from "./FormType";
6
6
  export * from "./components";
7
7
  export * from "./FormQuery";
8
8
  export * from "./FormApi";
9
+ export * from "./FormDialogModel";
@@ -9,3 +9,4 @@ tslib_1.__exportStar(require("./FormType"), exports);
9
9
  tslib_1.__exportStar(require("./components"), exports);
10
10
  tslib_1.__exportStar(require("./FormQuery"), exports);
11
11
  tslib_1.__exportStar(require("./FormApi"), exports);
12
+ tslib_1.__exportStar(require("./FormDialogModel"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.6.28-preview",
4
+ "version": "7.6.30-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"