@omnia/management-system 7.1.57-preview → 7.1.59-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.
@@ -113,8 +113,6 @@ export declare class OPMWebComponentManifests {
113
113
  static get ProcessRollupSettings(): Guid;
114
114
  static get ProcessRollupListView(): Guid;
115
115
  static get ProcessRollupListViewSettings(): Guid;
116
- static get ProcessRollupListWithImageView(): Guid;
117
- static get ProcessRollupListWithImageViewSettings(): Guid;
118
116
  static get PropertiesBlock(): Guid;
119
117
  static get PropertiesBlockSettings(): Guid;
120
118
  static get TitleBlock(): Guid;
@@ -121,8 +121,6 @@ class OPMWebComponentManifests {
121
121
  static get ProcessRollupSettings() { return new fx_models_1.Guid("0aec18e0-41d3-4148-b08a-0c123d83b4cb"); }
122
122
  static get ProcessRollupListView() { return new fx_models_1.Guid("6fa93477-75b3-4dd0-a626-62a484905ecd"); }
123
123
  static get ProcessRollupListViewSettings() { return new fx_models_1.Guid("d5ea454b-d65b-45c3-9c77-9e01f684c1e2"); }
124
- static get ProcessRollupListWithImageView() { return new fx_models_1.Guid("2232a029-a476-4583-b8fe-2481c16fa611"); }
125
- static get ProcessRollupListWithImageViewSettings() { return new fx_models_1.Guid("c62447c2-a13a-4c87-98dd-9672c10fd8a4"); }
126
124
  static get PropertiesBlock() { return new fx_models_1.Guid("6fbb96f3-40e7-45ee-b99e-68533a993bd4"); }
127
125
  static get PropertiesBlockSettings() { return new fx_models_1.Guid("bdab3f12-f9b8-4891-847f-a7a84ff8e27e"); }
128
126
  static get TitleBlock() { return new fx_models_1.Guid("3d5e86a2-8f75-4928-85a0-8a7d1e7414b4"); }
@@ -6,7 +6,11 @@ export declare enum ReviewReminderScheduleTypes {
6
6
  /**
7
7
  * Document's date time enterprise property definition
8
8
  * */
9
- Property = 1
9
+ Property = 1,
10
+ /**
11
+ * Specific time after approving document
12
+ * */
13
+ TimeAfterApproving = 2
10
14
  }
11
15
  export interface ReviewReminderSchedule {
12
16
  type: ReviewReminderScheduleTypes;
@@ -12,6 +12,10 @@ var ReviewReminderScheduleTypes;
12
12
  * Document's date time enterprise property definition
13
13
  * */
14
14
  ReviewReminderScheduleTypes[ReviewReminderScheduleTypes["Property"] = 1] = "Property";
15
+ /**
16
+ * Specific time after approving document
17
+ * */
18
+ ReviewReminderScheduleTypes[ReviewReminderScheduleTypes["TimeAfterApproving"] = 2] = "TimeAfterApproving";
15
19
  })(ReviewReminderScheduleTypes = exports.ReviewReminderScheduleTypes || (exports.ReviewReminderScheduleTypes = {}));
16
20
  /**
17
21
  * NOTE: whenever an new property is added in settings, we need to define its initial value in factory
@@ -36,6 +40,15 @@ exports.ReviewReminderScheduleFactory = {
36
40
  }
37
41
  };
38
42
  break;
43
+ case ReviewReminderScheduleTypes.TimeAfterApproving:
44
+ settings = {
45
+ type: ReviewReminderScheduleTypes.TimeAfterApproving,
46
+ settings: {
47
+ type: fx_models_1.TimePeriodTypes.Months,
48
+ value: 1
49
+ }
50
+ };
51
+ break;
39
52
  }
40
53
  return settings;
41
54
  }
@@ -0,0 +1,6 @@
1
+ import { ReviewReminderSchedule, ReviewReminderScheduleTypes } from "./ReviewReminderSchedule";
2
+ import { TimePeriodSettings } from "@omnia/fx-models";
3
+ export interface TimeAfterApprovingSchedule extends ReviewReminderSchedule {
4
+ type: ReviewReminderScheduleTypes.TimeAfterApproving;
5
+ settings: TimePeriodSettings;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
1
1
  export * from "./PropertySchedule";
2
2
  export * from "./ReviewReminderSchedule";
3
3
  export * from "./TimeAfterPublishingSchedule";
4
+ export * from "./TimeAfterApprovingSchedule";
@@ -4,3 +4,4 @@ const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./PropertySchedule"), exports);
5
5
  tslib_1.__exportStar(require("./ReviewReminderSchedule"), exports);
6
6
  tslib_1.__exportStar(require("./TimeAfterPublishingSchedule"), exports);
7
+ tslib_1.__exportStar(require("./TimeAfterApprovingSchedule"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/management-system",
3
3
  "license": "MIT",
4
- "version": "7.1.57-preview",
4
+ "version": "7.1.59-preview",
5
5
  "description": "Omnia Management System.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"