@arsedizioni/ars-utils 18.2.421 → 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?: number | null;
626
+ recurrencePatternType?: RecurrenceType | null;
622
627
  recurrenceFrequency?: number | null;
623
628
  recurrenceEndOfMonth?: boolean | null;
624
629
  recurrenceNewId?: string | null;
@@ -157,9 +157,9 @@ export declare class ClipperService implements OnDestroy {
157
157
  */
158
158
  jurisArticles(params: ClipperSearchParams): import("rxjs").Observable<ApiResult<ClipperSearchResult>>;
159
159
  /**
160
- * Get calendar snapshot based on the deadlines
160
+ * Get deadlines snapshot based on the deadlines
161
161
  */
162
- calendarSnapshot(params: any): import("rxjs").Observable<ApiResult<any>>;
162
+ deadlinesSnapshot(params: ClipperSearchCalendarParams): import("rxjs").Observable<ApiResult<ClipperSearchCalendarSnapshotResult>>;
163
163
  /**
164
164
  * Retrieve the taxonomy
165
165
  */
@@ -285,9 +285,9 @@ export declare class ClipperService implements OnDestroy {
285
285
  */
286
286
  queryCalendar(params: ClipperSearchCalendarParams): import("rxjs").Observable<ApiResult<ClipperSearchCalendarResult>>;
287
287
  /**
288
- * Query calendar snapshot
288
+ * Get the calendar snapshot
289
289
  */
290
- getCalendarSnapshot(params: ClipperSearchCalendarParams): import("rxjs").Observable<ApiResult<ClipperSearchCalendarSnapshotResult>>;
290
+ calendarSnapshot(params: ClipperSearchCalendarParams): import("rxjs").Observable<ApiResult<ClipperSearchCalendarSnapshotResult>>;
291
291
  /**
292
292
  * Delete one or more items
293
293
  * @param ids: ids to delete