@icure/cardinal-sdk 2.0.0-PREVIEW-13 → 2.0.0-PREVIEW-15

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.
@@ -58,6 +58,7 @@ export interface CalendarItemApi {
58
58
  filterCalendarItemsBy(filter: FilterOptions<CalendarItem>): Promise<PaginatedListIterator<DecryptedCalendarItem>>;
59
59
  filterCalendarItemsBySorted(filter: SortableFilterOptions<CalendarItem>): Promise<PaginatedListIterator<DecryptedCalendarItem>>;
60
60
  createCalendarItem(entity: DecryptedCalendarItem): Promise<DecryptedCalendarItem>;
61
+ bookCalendarItemCheckingAvailability(entity: DecryptedCalendarItem): Promise<DecryptedCalendarItem>;
61
62
  undeleteCalendarItemById(id: string, rev: string): Promise<DecryptedCalendarItem>;
62
63
  undeleteCalendarItem(calendarItem: CalendarItem): Promise<DecryptedCalendarItem>;
63
64
  modifyCalendarItem(entity: DecryptedCalendarItem): Promise<DecryptedCalendarItem>;
@@ -21,6 +21,7 @@ export interface CalendarItemBasicApi {
21
21
  deleteCalendarItems(calendarItems: Array<CalendarItem>): Promise<Array<StoredDocumentIdentifier>>;
22
22
  purgeCalendarItem(calendarItem: CalendarItem): Promise<void>;
23
23
  createCalendarItem(entity: EncryptedCalendarItem): Promise<EncryptedCalendarItem>;
24
+ bookCalendarItemCheckingAvailability(entity: EncryptedCalendarItem): Promise<EncryptedCalendarItem>;
24
25
  undeleteCalendarItemById(id: string, rev: string): Promise<EncryptedCalendarItem>;
25
26
  undeleteCalendarItem(calendarItem: CalendarItem): Promise<EncryptedCalendarItem>;
26
27
  modifyCalendarItem(entity: EncryptedCalendarItem): Promise<EncryptedCalendarItem>;
@@ -19,6 +19,7 @@ export interface CalendarItemFlavouredApi<E extends CalendarItem> {
19
19
  filterCalendarItemsBy(filter: FilterOptions<CalendarItem>): Promise<PaginatedListIterator<E>>;
20
20
  filterCalendarItemsBySorted(filter: SortableFilterOptions<CalendarItem>): Promise<PaginatedListIterator<E>>;
21
21
  createCalendarItem(entity: E): Promise<E>;
22
+ bookCalendarItemCheckingAvailability(entity: E): Promise<E>;
22
23
  undeleteCalendarItemById(id: string, rev: string): Promise<E>;
23
24
  undeleteCalendarItem(calendarItem: CalendarItem): Promise<E>;
24
25
  modifyCalendarItem(entity: E): Promise<E>;
@@ -55,6 +55,7 @@ export declare namespace InternalSdkInitializers.$metadata$ {
55
55
  private constructor();
56
56
  }
57
57
  }
58
+ export declare const internalDefaultCryptoService: { get(): XCryptoService; };
58
59
  export declare function spkiHexKeyToFingerprintV1(key: string): string;
59
60
  export declare function spkiHexKeyToFingerprintV2(key: string): string;
60
61
  export declare function fingerprintV1ToFingerprintV2(fingerprint: string): string;