@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.
- package/clipper.common/common/definitions.d.ts +6 -1
- package/clipper.common/common/services/clipper.service.d.ts +4 -4
- package/esm2022/clipper.common/common/definitions.mjs +7 -1
- package/esm2022/clipper.common/common/services/clipper.service.mjs +5 -5
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +11 -5
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -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;
|
|
@@ -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
|
|
160
|
+
* Get deadlines snapshot based on the deadlines
|
|
161
161
|
*/
|
|
162
|
-
|
|
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
|
-
*
|
|
288
|
+
* Get the calendar snapshot
|
|
289
289
|
*/
|
|
290
|
-
|
|
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
|