@icure/cardinal-sdk 2.4.4 → 2.6.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.
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/api/RoleApi.d.mts +6 -4
- package/cardinal-sdk-ts.d.mts +78 -78
- package/cardinal-sdk-ts.mjs +39335 -39225
- package/cardinal-sdk.mjs +68660 -69414
- package/filters/ContactFilters.d.mts +9 -26
- package/filters/DocumentFilters.d.mts +6 -12
- package/filters/HealthElementFilters.d.mts +15 -41
- package/filters/MaintenanceTaskFilters.d.mts +2 -8
- package/filters/MessageFilters.d.mts +8 -22
- package/filters/PatientFilters.d.mts +24 -62
- package/filters/ServiceFilters.d.mts +19 -52
- package/kotlin-kotlin-stdlib.mjs +10 -10
- package/model/Agenda.d.mts +4 -4
- package/model/Agenda.mjs +4 -4
- package/model/CalendarItem.d.mts +9 -9
- package/model/CalendarItem.mjs +6 -6
- package/model/Group.d.mts +1 -1
- package/model/Group.mjs +1 -1
- package/model/Patient.d.mts +3 -3
- package/model/Patient.mjs +3 -3
- package/model/Role.d.mts +16 -6
- package/model/Role.mjs +20 -5
- package/model/User.d.mts +6 -0
- package/model/User.mjs +11 -0
- package/model/base/CryptoActor.mjs +3 -3
- package/model/embed/Partnership.d.mts +60 -3
- package/model/embed/Partnership.mjs +85 -4
- package/model/embed/Service.d.mts +306 -0
- package/model/embed/Service.mjs +214 -0
- package/model/embed/form/template/Field.d.mts +1 -1
- package/model/embed/form/template/StructureElement.mjs +6 -6
- package/model/filter/predicate/Predicate.d.mts +1 -1
- package/model/filter/predicate/Predicate.mjs +3 -3
- package/model/security/Enable2faRequest.d.mts +20 -1
- package/model/security/Enable2faRequest.mjs +23 -1
- package/package.json +1 -1
|
@@ -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,
|
|
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) {
|
package/api/RoleApi.d.mts
CHANGED
|
@@ -36,26 +36,28 @@ export interface RoleApi {
|
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
38
|
* Creates a new role.
|
|
39
|
-
* @param name the [Role.name].
|
|
39
|
+
* @param name the [Role.name]. It can only contain uppercase characters A->Z, underscores and cannot be longer than 40 characters.
|
|
40
40
|
* @param permissions the set of permissions that this role will grant.
|
|
41
|
+
* @param description a short description (max 300 characters) for the role.
|
|
41
42
|
* @param inheritsUpTo the maximum level in the downward group hierarchy where this role can be accessed (null = any child group at
|
|
42
43
|
* any level, 0 = only the current group can access this role, 1 = only this group and children groups can access this role, etc...)
|
|
43
44
|
* @return the created role.
|
|
44
45
|
*/
|
|
45
|
-
createRole(name: string, permissions: Array<string>, options?: {
|
|
46
|
+
createRole(name: string, permissions: Array<string>, description: string | undefined, options?: {
|
|
46
47
|
inheritsUpTo?: number | undefined;
|
|
47
48
|
}): Promise<Role>;
|
|
48
49
|
/**
|
|
49
50
|
*
|
|
50
51
|
* Creates a new role in a specific group.
|
|
51
52
|
* @param groupId the id of the group.
|
|
52
|
-
* @param name the [Role.name].
|
|
53
|
+
* @param name the [Role.name]. It can only contain uppercase characters A->Z, underscores and cannot be longer than 40 characters.
|
|
54
|
+
* @param description a short description (max 300 characters) for the role.
|
|
53
55
|
* @param permissions the set of permissions that this role will grant.
|
|
54
56
|
* @param inheritsUpTo the maximum level in the downward group hierarchy where this role can be accessed (null = any child group at
|
|
55
57
|
* any level, 0 = only the current group can access this role, 1 = only this group and children groups can access this role, etc...)
|
|
56
58
|
* @return the created role.
|
|
57
59
|
*/
|
|
58
|
-
createRoleInGroup(groupId: string, name: string, permissions: Array<string>, options?: {
|
|
60
|
+
createRoleInGroup(groupId: string, name: string, permissions: Array<string>, description: string | undefined, options?: {
|
|
59
61
|
inheritsUpTo?: number | undefined;
|
|
60
62
|
}): Promise<Role>;
|
|
61
63
|
/**
|
package/cardinal-sdk-ts.d.mts
CHANGED
|
@@ -300,9 +300,9 @@ export declare namespace InternalContactFiltersObj {
|
|
|
300
300
|
byPatientSecretIdsOpeningDateForDataOwner(dataOwnerId: string, secretIds: Array<string>, options: any): BaseSortableFilterOptions<model.Contact>;
|
|
301
301
|
byPatientSecretIdsOpeningDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, secretIds: Array<string>, options: any): BaseSortableFilterOptions<model.Contact>;
|
|
302
302
|
byPatientSecretIdsOpeningDateForSelf(secretIds: Array<string>, options: any): SortableFilterOptions<model.Contact>;
|
|
303
|
-
byIdentifiersForSelf(identifiers: Array<model.Identifier>):
|
|
304
|
-
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>):
|
|
305
|
-
byIdentifiersForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, identifiers: Array<model.Identifier>):
|
|
303
|
+
byIdentifiersForSelf(identifiers: Array<model.Identifier>): FilterOptions<model.Contact>;
|
|
304
|
+
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>): BaseFilterOptions<model.Contact>;
|
|
305
|
+
byIdentifiersForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, identifiers: Array<model.Identifier>): BaseFilterOptions<model.Contact>;
|
|
306
306
|
byCodeAndOpeningDateForDataOwner(dataOwnerId: string, codeType: string, options: any): BaseSortableFilterOptions<model.Contact>;
|
|
307
307
|
byCodeAndOpeningDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any): BaseSortableFilterOptions<model.Contact>;
|
|
308
308
|
byCodeAndOpeningDateForSelf(codeType: string, options: any): SortableFilterOptions<model.Contact>;
|
|
@@ -318,12 +318,12 @@ export declare namespace InternalContactFiltersObj {
|
|
|
318
318
|
byServiceCodeForDataOwner(dataOwnerId: string, codeType: string, options: any): BaseFilterOptions<model.Contact>;
|
|
319
319
|
byServiceCodeForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any): BaseFilterOptions<model.Contact>;
|
|
320
320
|
byTagAndOpeningDateForSelf(tagType: string, options: any): SortableFilterOptions<model.Contact>;
|
|
321
|
-
byPatientsForDataOwner(dataOwnerId: string, patients: Array<model.Patient>):
|
|
322
|
-
byPatientsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, patients: Array<model.GroupScoped<model.Patient>>):
|
|
323
|
-
byPatientsForSelf(patients: Array<model.Patient>):
|
|
324
|
-
byPatientsSecretIdsForDataOwner(dataOwnerId: string, secretIds: Array<string>):
|
|
325
|
-
byPatientsSecretIdsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, secretIds: Array<string>):
|
|
326
|
-
byPatientsSecretIdsForSelf(secretIds: Array<string>):
|
|
321
|
+
byPatientsForDataOwner(dataOwnerId: string, patients: Array<model.Patient>): FilterOptions<model.Contact>;
|
|
322
|
+
byPatientsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, patients: Array<model.GroupScoped<model.Patient>>): FilterOptions<model.Contact>;
|
|
323
|
+
byPatientsForSelf(patients: Array<model.Patient>): FilterOptions<model.Contact>;
|
|
324
|
+
byPatientsSecretIdsForDataOwner(dataOwnerId: string, secretIds: Array<string>): BaseFilterOptions<model.Contact>;
|
|
325
|
+
byPatientsSecretIdsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, secretIds: Array<string>): BaseFilterOptions<model.Contact>;
|
|
326
|
+
byPatientsSecretIdsForSelf(secretIds: Array<string>): FilterOptions<model.Contact>;
|
|
327
327
|
byServiceIds(serviceIds: Array<string>): BaseSortableFilterOptions<model.Contact>;
|
|
328
328
|
private constructor();
|
|
329
329
|
}
|
|
@@ -377,12 +377,12 @@ export declare namespace InternalDocumentFiltersObj {
|
|
|
377
377
|
byOwningEntitySecretIdsAndTypeForDataOwner(dataOwnerId: string, documentType: string, secretIds: Array<string>): FilterOptions<model.Document>;
|
|
378
378
|
byOwningEntitySecretIdsAndTypeForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, documentType: string, secretIds: Array<string>): FilterOptions<model.Document>;
|
|
379
379
|
byOwningEntitySecretIdsAndTypeForSelf(documentType: string, secretIds: Array<string>): FilterOptions<model.Document>;
|
|
380
|
-
byCodeForDataOwner(dataOwnerId: string, codeType: string, options: any):
|
|
381
|
-
byCodeForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any):
|
|
380
|
+
byCodeForDataOwner(dataOwnerId: string, codeType: string, options: any): BaseFilterOptions<model.Document>;
|
|
381
|
+
byCodeForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any): BaseFilterOptions<model.Document>;
|
|
382
382
|
byCodeForSelf(codeType: string, options: any): SortableFilterOptions<model.Document>;
|
|
383
|
-
byTagForDataOwner(dataOwnerId: string, tagType: string, options: any):
|
|
384
|
-
byTagForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, tagType: string, options: any):
|
|
385
|
-
byTagForSelf(tagType: string, options: any):
|
|
383
|
+
byTagForDataOwner(dataOwnerId: string, tagType: string, options: any): BaseFilterOptions<model.Document>;
|
|
384
|
+
byTagForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, tagType: string, options: any): BaseFilterOptions<model.Document>;
|
|
385
|
+
byTagForSelf(tagType: string, options: any): FilterOptions<model.Document>;
|
|
386
386
|
private constructor();
|
|
387
387
|
}
|
|
388
388
|
}
|
|
@@ -460,21 +460,21 @@ export declare namespace InternalHealthElementFiltersObj {
|
|
|
460
460
|
allHealthElementsForDataOwner(dataOwnerId: string): BaseFilterOptions<model.HealthElement>;
|
|
461
461
|
allHealthElementsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup): BaseFilterOptions<model.HealthElement>;
|
|
462
462
|
allHealthElementsForSelf(): FilterOptions<model.HealthElement>;
|
|
463
|
-
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>):
|
|
464
|
-
byIdentifiersForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, identifiers: Array<model.Identifier>):
|
|
465
|
-
byIdentifiersForSelf(identifiers: Array<model.Identifier>):
|
|
466
|
-
byCodeForDataOwner(dataOwnerId: string, codeType: string, options: any):
|
|
467
|
-
byCodeForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any):
|
|
468
|
-
byCodeForSelf(codeType: string, options: any):
|
|
469
|
-
byTagForDataOwner(dataOwnerId: string, tagType: string, options: any):
|
|
470
|
-
byTagForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, tagType: string, options: any):
|
|
471
|
-
byTagForSelf(tagType: string, options: any):
|
|
472
|
-
byPatientsForDataOwner(dataOwnerId: string, patients: Array<model.Patient>):
|
|
473
|
-
byPatientsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, patients: Array<model.GroupScoped<model.Patient>>):
|
|
474
|
-
byPatientsForSelf(patients: Array<model.Patient>):
|
|
475
|
-
byPatientsSecretIdsForDataOwner(dataOwnerId: string, secretIds: Array<string>):
|
|
476
|
-
byPatientsSecretIdsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, secretIds: Array<string>):
|
|
477
|
-
byPatientsSecretIdsForSelf(secretIds: Array<string>):
|
|
463
|
+
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>): BaseFilterOptions<model.HealthElement>;
|
|
464
|
+
byIdentifiersForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, identifiers: Array<model.Identifier>): BaseFilterOptions<model.HealthElement>;
|
|
465
|
+
byIdentifiersForSelf(identifiers: Array<model.Identifier>): FilterOptions<model.HealthElement>;
|
|
466
|
+
byCodeForDataOwner(dataOwnerId: string, codeType: string, options: any): BaseFilterOptions<model.HealthElement>;
|
|
467
|
+
byCodeForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any): BaseFilterOptions<model.HealthElement>;
|
|
468
|
+
byCodeForSelf(codeType: string, options: any): FilterOptions<model.HealthElement>;
|
|
469
|
+
byTagForDataOwner(dataOwnerId: string, tagType: string, options: any): BaseFilterOptions<model.HealthElement>;
|
|
470
|
+
byTagForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, tagType: string, options: any): BaseFilterOptions<model.HealthElement>;
|
|
471
|
+
byTagForSelf(tagType: string, options: any): FilterOptions<model.HealthElement>;
|
|
472
|
+
byPatientsForDataOwner(dataOwnerId: string, patients: Array<model.Patient>): FilterOptions<model.HealthElement>;
|
|
473
|
+
byPatientsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, patients: Array<model.GroupScoped<model.Patient>>): FilterOptions<model.HealthElement>;
|
|
474
|
+
byPatientsForSelf(patients: Array<model.Patient>): FilterOptions<model.HealthElement>;
|
|
475
|
+
byPatientsSecretIdsForDataOwner(dataOwnerId: string, secretIds: Array<string>): BaseFilterOptions<model.HealthElement>;
|
|
476
|
+
byPatientsSecretIdsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, secretIds: Array<string>): BaseFilterOptions<model.HealthElement>;
|
|
477
|
+
byPatientsSecretIdsForSelf(secretIds: Array<string>): FilterOptions<model.HealthElement>;
|
|
478
478
|
byIds(ids: Array<string>): BaseSortableFilterOptions<model.HealthElement>;
|
|
479
479
|
byPatientsOpeningDateForDataOwner(dataOwnerId: string, patients: Array<model.Patient>, options: any): SortableFilterOptions<model.HealthElement>;
|
|
480
480
|
byPatientsOpeningDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, patients: Array<model.GroupScoped<model.Patient>>, options: any): SortableFilterOptions<model.HealthElement>;
|
|
@@ -521,8 +521,8 @@ export declare namespace InternalMaintenanceTaskFiltersObj {
|
|
|
521
521
|
}
|
|
522
522
|
abstract class constructor {
|
|
523
523
|
byIds(ids: Array<string>): BaseSortableFilterOptions<model.MaintenanceTask>;
|
|
524
|
-
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>):
|
|
525
|
-
byIdentifiersForSelf(identifiers: Array<model.Identifier>):
|
|
524
|
+
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>): BaseFilterOptions<model.MaintenanceTask>;
|
|
525
|
+
byIdentifiersForSelf(identifiers: Array<model.Identifier>): FilterOptions<model.MaintenanceTask>;
|
|
526
526
|
byTypeForDataOwner(dataOwnerId: string, type: string): BaseFilterOptions<model.MaintenanceTask>;
|
|
527
527
|
byTypeForSelf(type: string): FilterOptions<model.MaintenanceTask>;
|
|
528
528
|
afterDateForDataOwner(dataOwnerId: string, date: number): BaseSortableFilterOptions<model.MaintenanceTask>;
|
|
@@ -544,9 +544,9 @@ export declare namespace InternalMessageFiltersObj {
|
|
|
544
544
|
abstract class constructor {
|
|
545
545
|
allMessagesForDataOwner(dataOwnerId: string): BaseFilterOptions<model.Message>;
|
|
546
546
|
allMessagesForSelf(): FilterOptions<model.Message>;
|
|
547
|
-
byTransportGuidForDataOwner(dataOwnerId: string, transportGuid: string):
|
|
548
|
-
byTransportGuidForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, transportGuid: string):
|
|
549
|
-
byTransportGuidForSelf(transportGuid: string):
|
|
547
|
+
byTransportGuidForDataOwner(dataOwnerId: string, transportGuid: string): BaseFilterOptions<model.Message>;
|
|
548
|
+
byTransportGuidForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, transportGuid: string): BaseFilterOptions<model.Message>;
|
|
549
|
+
byTransportGuidForSelf(transportGuid: string): FilterOptions<model.Message>;
|
|
550
550
|
fromAddressForDataOwner(dataOwnerId: string, address: string): BaseFilterOptions<model.Message>;
|
|
551
551
|
fromAddressForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, address: string): BaseFilterOptions<model.Message>;
|
|
552
552
|
fromAddressForSelf(address: string): FilterOptions<model.Message>;
|
|
@@ -559,9 +559,9 @@ export declare namespace InternalMessageFiltersObj {
|
|
|
559
559
|
toAddressForDataOwner(dataOwnerId: string, address: string): BaseFilterOptions<model.Message>;
|
|
560
560
|
toAddressForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, address: string): BaseFilterOptions<model.Message>;
|
|
561
561
|
toAddressForSelf(address: string): FilterOptions<model.Message>;
|
|
562
|
-
byTransportGuidSentDateForDataOwner(dataOwnerId: string, transportGuid: string, from: Nullable<number>, to: Nullable<number>, options: any):
|
|
563
|
-
byTransportGuidSentDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, transportGuid: string, from: Nullable<number>, to: Nullable<number>, options: any):
|
|
564
|
-
byTransportGuidSentDateForSelf(transportGuid: string, from: Nullable<number>, to: Nullable<number>, options: any):
|
|
562
|
+
byTransportGuidSentDateForDataOwner(dataOwnerId: string, transportGuid: string, from: Nullable<number>, to: Nullable<number>, options: any): BaseFilterOptions<model.Message>;
|
|
563
|
+
byTransportGuidSentDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, transportGuid: string, from: Nullable<number>, to: Nullable<number>, options: any): BaseFilterOptions<model.Message>;
|
|
564
|
+
byTransportGuidSentDateForSelf(transportGuid: string, from: Nullable<number>, to: Nullable<number>, options: any): FilterOptions<model.Message>;
|
|
565
565
|
latestByTransportGuidForDataOwner(dataOwnerId: string, transportGuid: string): BaseFilterOptions<model.Message>;
|
|
566
566
|
latestByTransportGuidForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, transportGuid: string): BaseFilterOptions<model.Message>;
|
|
567
567
|
latestByTransportGuidForSelf(transportGuid: string): FilterOptions<model.Message>;
|
|
@@ -572,10 +572,10 @@ export declare namespace InternalMessageFiltersObj {
|
|
|
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>;
|
|
575
|
-
byCodeForSelf(codeType: string, options: any):
|
|
575
|
+
byCodeForSelf(codeType: string, options: any): FilterOptions<model.Message>;
|
|
576
576
|
byTagForDataOwner(dataOwnerId: string, tagType: string, options: any): BaseSortableFilterOptions<model.Message>;
|
|
577
577
|
byTagForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, tagType: string, options: any): BaseSortableFilterOptions<model.Message>;
|
|
578
|
-
byTagForSelf(tagType: string, options: any):
|
|
578
|
+
byTagForSelf(tagType: string, options: any): FilterOptions<model.Message>;
|
|
579
579
|
private constructor();
|
|
580
580
|
}
|
|
581
581
|
}
|
|
@@ -595,33 +595,33 @@ export declare namespace InternalPatientFiltersObj {
|
|
|
595
595
|
allPatientsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup): BaseFilterOptions<model.Patient>;
|
|
596
596
|
allPatientsForSelf(): FilterOptions<model.Patient>;
|
|
597
597
|
byIds(ids: Array<string>): SortableFilterOptions<model.Patient>;
|
|
598
|
-
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>):
|
|
599
|
-
byIdentifiersForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, identifiers: Array<model.Identifier>):
|
|
600
|
-
bySsinsForDataOwner(dataOwnerId: string, ssins: Array<string>):
|
|
601
|
-
bySsinsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, ssins: Array<string>):
|
|
602
|
-
byDateOfBirthBetweenForDataOwner(dataOwnerId: string, fromDate: number, toDate: number):
|
|
603
|
-
byDateOfBirthBetweenForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, fromDate: number, toDate: number):
|
|
598
|
+
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>): BaseFilterOptions<model.Patient>;
|
|
599
|
+
byIdentifiersForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, identifiers: Array<model.Identifier>): BaseFilterOptions<model.Patient>;
|
|
600
|
+
bySsinsForDataOwner(dataOwnerId: string, ssins: Array<string>): BaseFilterOptions<model.Patient>;
|
|
601
|
+
bySsinsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, ssins: Array<string>): BaseFilterOptions<model.Patient>;
|
|
602
|
+
byDateOfBirthBetweenForDataOwner(dataOwnerId: string, fromDate: number, toDate: number): BaseFilterOptions<model.Patient>;
|
|
603
|
+
byDateOfBirthBetweenForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, fromDate: number, toDate: number): BaseFilterOptions<model.Patient>;
|
|
604
604
|
byFuzzyNameForDataOwner(dataOwnerId: string, searchString: string): BaseFilterOptions<model.Patient>;
|
|
605
605
|
byFuzzyNameForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, searchString: string): BaseFilterOptions<model.Patient>;
|
|
606
|
-
byGenderEducationProfessionForDataOwner(dataOwnerId: string, gender: string, options: any):
|
|
607
|
-
byGenderEducationProfessionForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, gender: string, options: any):
|
|
606
|
+
byGenderEducationProfessionForDataOwner(dataOwnerId: string, gender: string, options: any): BaseFilterOptions<model.Patient>;
|
|
607
|
+
byGenderEducationProfessionForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, gender: string, options: any): BaseFilterOptions<model.Patient>;
|
|
608
608
|
byActiveForDataOwner(dataOwnerId: string, active: boolean): BaseFilterOptions<model.Patient>;
|
|
609
609
|
byActiveForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, active: boolean): BaseFilterOptions<model.Patient>;
|
|
610
|
-
byTelecomForDataOwner(dataOwnerId: string, searchString: string):
|
|
611
|
-
byTelecomForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, searchString: string):
|
|
612
|
-
byAddressPostalCodeHouseNumberForDataOwner(dataOwnerId: string, searchString: string, postalCode: string, options: any):
|
|
613
|
-
byAddressPostalCodeHouseNumberForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, searchString: string, postalCode: string, options: any):
|
|
614
|
-
byAddressForDataOwner(dataOwnerId: string, searchString: string):
|
|
615
|
-
byAddressForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, searchString: string):
|
|
616
|
-
byIdentifiersForSelf(identifiers: Array<model.Identifier>):
|
|
617
|
-
bySsinsForSelf(ssins: Array<string>):
|
|
618
|
-
byDateOfBirthBetweenForSelf(fromDate: number, toDate: number):
|
|
610
|
+
byTelecomForDataOwner(dataOwnerId: string, searchString: string): BaseFilterOptions<model.Patient>;
|
|
611
|
+
byTelecomForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, searchString: string): BaseFilterOptions<model.Patient>;
|
|
612
|
+
byAddressPostalCodeHouseNumberForDataOwner(dataOwnerId: string, searchString: string, postalCode: string, options: any): BaseFilterOptions<model.Patient>;
|
|
613
|
+
byAddressPostalCodeHouseNumberForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, searchString: string, postalCode: string, options: any): BaseFilterOptions<model.Patient>;
|
|
614
|
+
byAddressForDataOwner(dataOwnerId: string, searchString: string): BaseFilterOptions<model.Patient>;
|
|
615
|
+
byAddressForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, searchString: string): BaseFilterOptions<model.Patient>;
|
|
616
|
+
byIdentifiersForSelf(identifiers: Array<model.Identifier>): FilterOptions<model.Patient>;
|
|
617
|
+
bySsinsForSelf(ssins: Array<string>): FilterOptions<model.Patient>;
|
|
618
|
+
byDateOfBirthBetweenForSelf(fromDate: number, toDate: number): FilterOptions<model.Patient>;
|
|
619
619
|
byNameForSelf(searchString: string): FilterOptions<model.Patient>;
|
|
620
|
-
byGenderEducationProfessionForSelf(gender: string, options: any):
|
|
620
|
+
byGenderEducationProfessionForSelf(gender: string, options: any): FilterOptions<model.Patient>;
|
|
621
621
|
byActiveForSelf(active: boolean): FilterOptions<model.Patient>;
|
|
622
|
-
byTelecomForSelf(searchString: string):
|
|
623
|
-
byAddressPostalCodeHouseNumberForSelf(searchString: string, postalCode: string, options: any):
|
|
624
|
-
byAddressForSelf(searchString: string):
|
|
622
|
+
byTelecomForSelf(searchString: string): FilterOptions<model.Patient>;
|
|
623
|
+
byAddressPostalCodeHouseNumberForSelf(searchString: string, postalCode: string, options: any): FilterOptions<model.Patient>;
|
|
624
|
+
byAddressForSelf(searchString: string): FilterOptions<model.Patient>;
|
|
625
625
|
byTagForSelf(tagType: string, tagCode: Nullable<string>): FilterOptions<model.Patient>;
|
|
626
626
|
byTagForDataOwner(dataOwnerId: string, tagType: string, tagCode: Nullable<string>): BaseFilterOptions<model.Patient>;
|
|
627
627
|
byTagForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, tagType: string, tagCode: Nullable<string>): BaseFilterOptions<model.Patient>;
|
|
@@ -643,24 +643,24 @@ export declare namespace InternalServiceFiltersObj {
|
|
|
643
643
|
allServicesForDataOwner(dataOwnerId: string): BaseFilterOptions<model.Service>;
|
|
644
644
|
allServicesForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup): BaseFilterOptions<model.Service>;
|
|
645
645
|
allServicesForSelf(): FilterOptions<model.Service>;
|
|
646
|
-
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>):
|
|
647
|
-
byIdentifiersForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, identifiers: Array<model.Identifier>):
|
|
648
|
-
byCodeAndValueDateForDataOwner(dataOwnerId: string, codeType: string, options: any):
|
|
649
|
-
byCodeAndValueDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any):
|
|
650
|
-
byTagAndValueDateForDataOwner(dataOwnerId: string, tagType: string, options: any):
|
|
651
|
-
byTagAndValueDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, tagType: string, options: any):
|
|
652
|
-
byPatientsForDataOwner(dataOwnerId: string, patients: Array<model.Patient>):
|
|
653
|
-
byPatientsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, patients: Array<model.Patient>):
|
|
654
|
-
byPatientsSecretIdsForDataOwner(dataOwnerId: string, secretIds: Array<string>):
|
|
655
|
-
byPatientsSecretIdsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, secretIds: Array<string>):
|
|
656
|
-
byHealthElementIdFromSubContactForDataOwner(dataOwnerId: string, healthElementIds: Array<string>):
|
|
657
|
-
byHealthElementIdFromSubContactForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, healthElementIds: Array<string>):
|
|
658
|
-
byIdentifiersForSelf(identifiers: Array<model.Identifier>):
|
|
659
|
-
byCodeAndValueDateForSelf(codeType: string, options: any):
|
|
660
|
-
byTagAndValueDateForSelf(tagType: string, options: any):
|
|
661
|
-
byPatientsForSelf(patients: Array<model.Patient>):
|
|
662
|
-
byPatientsSecretIdsForSelf(secretIds: Array<string>):
|
|
663
|
-
byHealthElementIdFromSubContactForSelf(healthElementIds: Array<string>):
|
|
646
|
+
byIdentifiersForDataOwner(dataOwnerId: string, identifiers: Array<model.Identifier>): BaseFilterOptions<model.Service>;
|
|
647
|
+
byIdentifiersForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, identifiers: Array<model.Identifier>): BaseFilterOptions<model.Service>;
|
|
648
|
+
byCodeAndValueDateForDataOwner(dataOwnerId: string, codeType: string, options: any): BaseFilterOptions<model.Service>;
|
|
649
|
+
byCodeAndValueDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, codeType: string, options: any): BaseFilterOptions<model.Service>;
|
|
650
|
+
byTagAndValueDateForDataOwner(dataOwnerId: string, tagType: string, options: any): BaseFilterOptions<model.Service>;
|
|
651
|
+
byTagAndValueDateForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, tagType: string, options: any): BaseFilterOptions<model.Service>;
|
|
652
|
+
byPatientsForDataOwner(dataOwnerId: string, patients: Array<model.Patient>): FilterOptions<model.Service>;
|
|
653
|
+
byPatientsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, patients: Array<model.Patient>): FilterOptions<model.Service>;
|
|
654
|
+
byPatientsSecretIdsForDataOwner(dataOwnerId: string, secretIds: Array<string>): BaseFilterOptions<model.Service>;
|
|
655
|
+
byPatientsSecretIdsForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, secretIds: Array<string>): BaseFilterOptions<model.Service>;
|
|
656
|
+
byHealthElementIdFromSubContactForDataOwner(dataOwnerId: string, healthElementIds: Array<string>): BaseFilterOptions<model.Service>;
|
|
657
|
+
byHealthElementIdFromSubContactForDataOwnerInGroup(dataOwner: model.EntityReferenceInGroup, healthElementIds: Array<string>): BaseFilterOptions<model.Service>;
|
|
658
|
+
byIdentifiersForSelf(identifiers: Array<model.Identifier>): FilterOptions<model.Service>;
|
|
659
|
+
byCodeAndValueDateForSelf(codeType: string, options: any): FilterOptions<model.Service>;
|
|
660
|
+
byTagAndValueDateForSelf(tagType: string, options: any): FilterOptions<model.Service>;
|
|
661
|
+
byPatientsForSelf(patients: Array<model.Patient>): FilterOptions<model.Service>;
|
|
662
|
+
byPatientsSecretIdsForSelf(secretIds: Array<string>): FilterOptions<model.Service>;
|
|
663
|
+
byHealthElementIdFromSubContactForSelf(healthElementIds: Array<string>): FilterOptions<model.Service>;
|
|
664
664
|
byIds(ids: Array<string>): BaseSortableFilterOptions<model.Service>;
|
|
665
665
|
byAssociationId(associationId: string): BaseFilterOptions<model.Service>;
|
|
666
666
|
byQualifiedLink(linkValues: Array<string>, options: any): BaseFilterOptions<model.Service>;
|