@moxi.gmbh/moxi-typescriptmodels 0.1.2161-test-server → 0.1.2181-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.
Files changed (2) hide show
  1. package/common.d.ts +6 -1
  2. 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;
@@ -477,7 +481,6 @@ export interface FindAccounts {
477
481
  export interface FindDuplicateRides {
478
482
  accountId?: string;
479
483
  appointmentTime?: string;
480
- hourRange?: number;
481
484
  patientBirthDay?: string;
482
485
  patientFirstName?: string;
483
486
  patientLastName?: string;
@@ -545,6 +548,8 @@ export interface FindTokens {
545
548
  }
546
549
 
547
550
  export interface FindUsers {
551
+ accountFilter?: AccountFilter;
552
+ accountPermissionFilter?: AccountPermissionFilter;
548
553
  term?: string;
549
554
  }
550
555
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.1.2161-test-server",
3
+ "version": "0.1.2181-test-server",
4
4
  "types": "common.d.ts"
5
5
  }