@omnia/wcm 7.10.0-preview.41 → 7.10.0-preview.43
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.
- package/internal-do-not-import-from-here/core/loc/PageRollupLocalization.d.ts +1 -0
- package/internal-do-not-import-from-here/core/loc/PublishingAppLocalization.d.ts +1 -1
- package/internal-do-not-import-from-here/fx/models/document/DocumentDurableInfo.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupEnums.d.ts +3 -1
- package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupEnums.js +2 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare module PageRollupEnums {
|
|
2
2
|
enum DatePeriods {
|
|
3
|
+
NoLimit = 0,
|
|
3
4
|
OneWeekFromToday = 1,
|
|
4
5
|
TwoWeeksFromToday = 2,
|
|
5
6
|
OneMonthFromToday = 3,
|
|
@@ -46,7 +47,8 @@ export declare module PageRollupEnums {
|
|
|
46
47
|
WaitingForApproval = 2,
|
|
47
48
|
ScheduleForPublishing = 4,
|
|
48
49
|
UnpublishedChanges = 8,
|
|
49
|
-
ScheduleForArchiving = 16
|
|
50
|
+
ScheduleForArchiving = 16,
|
|
51
|
+
WaitingForDeletion = 32
|
|
50
52
|
}
|
|
51
53
|
enum VersionStatus {
|
|
52
54
|
Any = 0,
|
|
@@ -5,6 +5,7 @@ var PageRollupEnums;
|
|
|
5
5
|
(function (PageRollupEnums) {
|
|
6
6
|
let DatePeriods;
|
|
7
7
|
(function (DatePeriods) {
|
|
8
|
+
DatePeriods[DatePeriods["NoLimit"] = 0] = "NoLimit";
|
|
8
9
|
DatePeriods[DatePeriods["OneWeekFromToday"] = 1] = "OneWeekFromToday";
|
|
9
10
|
DatePeriods[DatePeriods["TwoWeeksFromToday"] = 2] = "TwoWeeksFromToday";
|
|
10
11
|
DatePeriods[DatePeriods["OneMonthFromToday"] = 3] = "OneMonthFromToday";
|
|
@@ -59,6 +60,7 @@ var PageRollupEnums;
|
|
|
59
60
|
WorkflowStatus[WorkflowStatus["ScheduleForPublishing"] = 4] = "ScheduleForPublishing";
|
|
60
61
|
WorkflowStatus[WorkflowStatus["UnpublishedChanges"] = 8] = "UnpublishedChanges";
|
|
61
62
|
WorkflowStatus[WorkflowStatus["ScheduleForArchiving"] = 16] = "ScheduleForArchiving";
|
|
63
|
+
WorkflowStatus[WorkflowStatus["WaitingForDeletion"] = 32] = "WaitingForDeletion";
|
|
62
64
|
})(WorkflowStatus = PageRollupEnums.WorkflowStatus || (PageRollupEnums.WorkflowStatus = {}));
|
|
63
65
|
let VersionStatus;
|
|
64
66
|
(function (VersionStatus) {
|