@omnia/workplace 6.13.46-preview → 6.13.48-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.
@@ -18,8 +18,8 @@ export interface SignOffRequestRollupBlockDisplaySettings {
18
18
  noResultText?: MultilingualString;
19
19
  }
20
20
  export interface SignOffRequestRollupBlockFilterSettings {
21
- filters: Array<RollupFilter>;
22
- searchBoxSettings: SignOffRequestRollupSearchboxSettings;
21
+ filters?: Array<RollupFilter>;
22
+ searchBoxSettings?: SignOffRequestRollupSearchboxSettings;
23
23
  hideFilterByDefault: boolean;
24
24
  saveFilterState: boolean;
25
25
  }
@@ -36,8 +36,8 @@ export interface SignOffRequestRollupSearchboxSettings {
36
36
  filled: boolean;
37
37
  }
38
38
  export interface SignOffRequestRollupPagingSettings {
39
- pagingType: RollupEnums.PagingType;
40
- itemLimit: number;
39
+ pagingType?: RollupEnums.PagingType;
40
+ itemLimit?: number;
41
41
  }
42
42
  export declare enum SignOffRequestScopedQueryTypes {
43
43
  AllRequests = 1,
@@ -56,5 +56,6 @@ export declare class SignOffRequestRollupConstants {
56
56
  RequestSentTo: string;
57
57
  RequestsCompleted: string;
58
58
  TotalNoOfRequests: string;
59
+ Type: string;
59
60
  };
60
61
  }
@@ -17,7 +17,8 @@ var SignOffRequestRollupConstants = /** @class */ (function () {
17
17
  MyProgressStatus: "myprogressstatus_e5cf0e05-ca74-4b99-b93f-0f30d80f4df6",
18
18
  RequestSentTo: "requestsentto_b9be8445-ee17-492e-bfde-2d666acbc4bb",
19
19
  RequestsCompleted: "requestscompleted_fbcde06b-d3c9-4dc5-a68e-28410273adc5",
20
- TotalNoOfRequests: "totalnoofrequests_95f47b9c-9a38-4db2-b7a8-1899e6cac359"
20
+ TotalNoOfRequests: "totalnoofrequests_95f47b9c-9a38-4db2-b7a8-1899e6cac359",
21
+ Type: "type_54830454-80c5-4be5-8fd7-d08c94367eb7",
21
22
  };
22
23
  return SignOffRequestRollupConstants;
23
24
  }());
@@ -4,12 +4,14 @@ export interface ISignOffRequestTypeUpdatableProperties {
4
4
  title?: MultilingualString;
5
5
  enterprisePropertySetId: GuidValue;
6
6
  signOffRequestTemplates: Array<GuidValue>;
7
+ sendEmailInWorkflows: boolean;
7
8
  }
8
9
  export interface SignOffRequestType {
9
10
  id: GuidValue;
10
11
  title?: MultilingualString;
11
12
  enterprisePropertySetId: GuidValue;
12
13
  signOffRequestTemplates: Array<SignOffRequestTemplate>;
14
+ sendEmailInWorkflows: boolean;
13
15
  createdBy?: Identity;
14
16
  createdAt?: Date;
15
17
  modifiedBy?: Identity;
@@ -3,4 +3,5 @@ export interface SignOffRequestTypeCreateModel {
3
3
  title: MultilingualString;
4
4
  enterprisePropertySetId: GuidValue;
5
5
  signOffRequestTemplates: Array<GuidValue>;
6
+ sendEmailInWorkflows: boolean;
6
7
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "6.13.46-preview",
4
+ "version": "6.13.48-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"