@icure/cardinal-sdk 2.6.1 → 2.7.0

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.
@@ -367,7 +367,7 @@ function addFormatStructureForDate(structure) {
367
367
  function addFormatStructureForTime(structure) {
368
368
  this.u3z(structure);
369
369
  }
370
- initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
370
+ initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
371
371
  initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
372
372
  initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
373
373
  function set_fractionOfSecond(value) {
@@ -0,0 +1,6 @@
1
+ import { FilterOptionGroupWithViews } from '../model/filter/FilterOptionGroupWithViews.mjs';
2
+ export interface FilterApi {
3
+ getFilterOptionsDefinitions(): Promise<{
4
+ [key: string]: Array<FilterOptionGroupWithViews>;
5
+ }>;
6
+ }
@@ -0,0 +1 @@
1
+ export {};
package/api.d.mts CHANGED
@@ -45,6 +45,7 @@ export * from './api/HealthElementBasicInGroupApi.mjs';
45
45
  export * from './api/HealthElementInGroupApi.mjs';
46
46
  export * from './api/CalendarItemBasicInGroupApi.mjs';
47
47
  export * from './api/InvoiceFlavouredInGroupApi.mjs';
48
+ export * from './api/FilterApi.mjs';
48
49
  export * from './api/AccessLogFlavouredApi.mjs';
49
50
  export * from './api/MaintenanceTaskApi.mjs';
50
51
  export * from './api/AuthApi.mjs';
package/api.mjs CHANGED
@@ -45,6 +45,7 @@ export * from './api/HealthElementBasicInGroupApi.mjs';
45
45
  export * from './api/HealthElementInGroupApi.mjs';
46
46
  export * from './api/CalendarItemBasicInGroupApi.mjs';
47
47
  export * from './api/InvoiceFlavouredInGroupApi.mjs';
48
+ export * from './api/FilterApi.mjs';
48
49
  export * from './api/AccessLogFlavouredApi.mjs';
49
50
  export * from './api/MaintenanceTaskApi.mjs';
50
51
  export * from './api/AuthApi.mjs';
@@ -568,7 +568,7 @@ export declare namespace InternalMessageFiltersObj {
568
568
  byInvoiceIds(invoiceIds: Array<string>): BaseFilterOptions<model.Message>;
569
569
  byParentIds(parentIds: Array<string>): BaseFilterOptions<model.Message>;
570
570
  lifecycleBetweenForDataOwner(dataOwnerId: string, startTimestamp: Nullable<number>, endTimestamp: Nullable<number>, descending: boolean): BaseFilterOptions<model.Message>;
571
- lifecycleBetweenForDataOwnerInGroupInGroup(dataOwner: model.EntityReferenceInGroup, startTimestamp: Nullable<number>, endTimestamp: Nullable<number>, descending: boolean): BaseFilterOptions<model.Message>;
571
+ lifecycleBetweenForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, startTimestamp: Nullable<number>, endTimestamp: Nullable<number>, descending: boolean): BaseFilterOptions<model.Message>;
572
572
  lifecycleBetweenForSelf(startTimestamp: Nullable<number>, endTimestamp: Nullable<number>, descending: boolean): FilterOptions<model.Message>;
573
573
  byCodeForDataOwner(dataOwnerId: string, codeType: string, options: any): BaseSortableFilterOptions<model.Message>;
574
574
  byCodeForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any): BaseSortableFilterOptions<model.Message>;