@arsedizioni/ars-utils 18.2.410 → 18.2.411

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.
@@ -567,6 +567,13 @@ export declare class ClipperTeamInfo {
567
567
  created?: string | null;
568
568
  lastModified?: string | null;
569
569
  }
570
+ export declare enum ClipperCalendarState {
571
+ Open = 101,
572
+ Expired = 102,
573
+ Expiring = 103,
574
+ Closed = 104
575
+ }
576
+ export declare const ClipperCalendarStates: NameValueItem<ClipperCalendarState>[];
570
577
  export declare class ClipperSearchCalendarParams {
571
578
  id?: string | null;
572
579
  fromDate?: Date | null;
@@ -576,11 +583,7 @@ export declare class ClipperSearchCalendarParams {
576
583
  month?: number | null;
577
584
  year?: number | null;
578
585
  sortDescending?: boolean | null;
579
- showPrivateDeadlinesOnly?: boolean | null;
580
- showOpenDeadlinesOnly?: boolean | null;
581
- showExpiringDeadlinesOnly?: boolean | null;
582
- showExpiredDeadlinesOnly?: boolean | null;
583
- showClosedDeadlinesOnly?: boolean | null;
586
+ state?: ClipperCalendarState | null;
584
587
  recurrentOnly?: boolean | null;
585
588
  first?: number | null;
586
589
  count?: number | null;