@moxi.gmbh/moxi-typescriptmodels 0.1.2151-test-server → 0.1.2171-test-server
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/common.d.ts +7 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -104,6 +104,10 @@ export interface AccountPermissionCommand extends UserUpdate {
|
|
|
104
104
|
accountId?: string;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
export interface AccountPermissionFilter {
|
|
108
|
+
roles?: AccountRole[];
|
|
109
|
+
}
|
|
110
|
+
|
|
107
111
|
export interface AccountRef {
|
|
108
112
|
accountId?: string;
|
|
109
113
|
name?: string;
|
|
@@ -475,6 +479,7 @@ export interface FindAccounts {
|
|
|
475
479
|
}
|
|
476
480
|
|
|
477
481
|
export interface FindDuplicateRides {
|
|
482
|
+
accountId?: string;
|
|
478
483
|
appointmentTime?: string;
|
|
479
484
|
hourRange?: number;
|
|
480
485
|
patientBirthDay?: string;
|
|
@@ -544,6 +549,8 @@ export interface FindTokens {
|
|
|
544
549
|
}
|
|
545
550
|
|
|
546
551
|
export interface FindUsers {
|
|
552
|
+
accountFilter?: AccountFilter;
|
|
553
|
+
accountPermissionFilter?: AccountPermissionFilter;
|
|
547
554
|
term?: string;
|
|
548
555
|
}
|
|
549
556
|
|
package/package.json
CHANGED