@omnia/workplace 7.6.19-preview → 7.6.21-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.
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +4 -0
- package/internal-do-not-import-from-here/models/ManifestIds.js +4 -0
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRecurrence.d.ts +23 -0
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRecurrence.js +2 -0
- package/internal-do-not-import-from-here/models/signoffrequest/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/signoffrequest/index.js +1 -0
- package/package.json +1 -1
|
@@ -573,6 +573,10 @@ export declare class WebComponentManifests {
|
|
|
573
573
|
static get FormRollupFormView(): Guid;
|
|
574
574
|
static get FormRollupFormViewSettings(): Guid;
|
|
575
575
|
static get FormQuestionRenderer(): Guid;
|
|
576
|
+
static get RecurrenceSetting(): Guid;
|
|
577
|
+
static get RecurrenceSettingBlade(): Guid;
|
|
578
|
+
static get RecurrenceSettingEditBlade(): Guid;
|
|
579
|
+
static get RecurrenceSettingMenuBlade(): Guid;
|
|
576
580
|
}
|
|
577
581
|
export declare class WebComponentElements {
|
|
578
582
|
static get AppProvisioningStepMember(): string;
|
|
@@ -582,6 +582,10 @@ class WebComponentManifests {
|
|
|
582
582
|
static get FormRollupFormView() { return new fx_models_1.Guid("425bec81-142f-4b87-8cc6-3bab4f97cb34"); }
|
|
583
583
|
static get FormRollupFormViewSettings() { return new fx_models_1.Guid("29a51766-0fac-4235-abf8-7dd21cc8f36c"); }
|
|
584
584
|
static get FormQuestionRenderer() { return new fx_models_1.Guid("11358173-b7ce-479b-8535-50e99df19371"); }
|
|
585
|
+
static get RecurrenceSetting() { return new fx_models_1.Guid("21a8d6b5-24ea-41fd-b977-b665718dbf51"); }
|
|
586
|
+
static get RecurrenceSettingBlade() { return new fx_models_1.Guid("79d6ef7a-c850-4bec-9fa0-9cab5dadd303"); }
|
|
587
|
+
static get RecurrenceSettingEditBlade() { return new fx_models_1.Guid("5e42f28c-a69d-4706-aa55-a03d90d89526"); }
|
|
588
|
+
static get RecurrenceSettingMenuBlade() { return new fx_models_1.Guid("9d21164d-8d7a-4d4c-a1f2-548501daf508"); }
|
|
585
589
|
}
|
|
586
590
|
exports.WebComponentManifests = WebComponentManifests;
|
|
587
591
|
class WebComponentElements {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { GuidValue, Identity, MultilingualString } from "@omnia/fx/models";
|
|
2
|
+
import { RecurrenceSettings } from "../../../models/shared";
|
|
3
|
+
export interface SignOffRequestRecurrence extends SignOffRequestRecurrenceCreation {
|
|
4
|
+
id: GuidValue;
|
|
5
|
+
nextRequestDate: Date;
|
|
6
|
+
createdAt?: Date;
|
|
7
|
+
modifiedAt?: Date;
|
|
8
|
+
modifiedBy?: Identity;
|
|
9
|
+
}
|
|
10
|
+
export interface SignOffRequestRecurrenceCreation {
|
|
11
|
+
name: MultilingualString;
|
|
12
|
+
templateId: GuidValue;
|
|
13
|
+
typeId: GuidValue;
|
|
14
|
+
recurrenceSetting: RecurrenceTimeZoneSetting;
|
|
15
|
+
enterpriseProperties: {
|
|
16
|
+
[internalName: string]: any;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export interface RecurrenceTimeZoneSetting extends RecurrenceSettings {
|
|
20
|
+
hour: number;
|
|
21
|
+
minute: number;
|
|
22
|
+
timeZoneId: string;
|
|
23
|
+
}
|
|
@@ -17,3 +17,4 @@ tslib_1.__exportStar(require("./SignOffRequestType"), exports);
|
|
|
17
17
|
tslib_1.__exportStar(require("./SignOffRequestRollupViewSettings"), exports);
|
|
18
18
|
tslib_1.__exportStar(require("./SignOffRequestRollupBlockSettings"), exports);
|
|
19
19
|
tslib_1.__exportStar(require("./SignOffRequestRollupViewRendererComponent"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./SignOffRequestRecurrence"), exports);
|