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