@arsedizioni/ars-utils 18.2.422 → 18.2.423
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.
|
@@ -595,6 +595,11 @@ export interface ClipperSearchCalendarResult {
|
|
|
595
595
|
teams: NameValueItem<string>[];
|
|
596
596
|
total: number;
|
|
597
597
|
}
|
|
598
|
+
export declare enum RecurrenceType {
|
|
599
|
+
Year = 1,
|
|
600
|
+
Month = 2,
|
|
601
|
+
Day = 3
|
|
602
|
+
}
|
|
598
603
|
export interface ClipperDeadlineInfo {
|
|
599
604
|
id: string;
|
|
600
605
|
companyId?: number | null;
|
|
@@ -618,7 +623,7 @@ export interface ClipperDeadlineInfo {
|
|
|
618
623
|
isClosable?: boolean | null;
|
|
619
624
|
isPrivate?: boolean | null;
|
|
620
625
|
isRecurrent?: boolean | null;
|
|
621
|
-
recurrencePatternType?:
|
|
626
|
+
recurrencePatternType?: RecurrenceType | null;
|
|
622
627
|
recurrenceFrequency?: number | null;
|
|
623
628
|
recurrenceEndOfMonth?: boolean | null;
|
|
624
629
|
recurrenceNewId?: string | null;
|