@arsedizioni/ars-utils 18.2.422 → 18.2.424

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