@moxi.gmbh/moxi-typescriptmodels 0.1.2161-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 +6 -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;
|
|
@@ -545,6 +549,8 @@ export interface FindTokens {
|
|
|
545
549
|
}
|
|
546
550
|
|
|
547
551
|
export interface FindUsers {
|
|
552
|
+
accountFilter?: AccountFilter;
|
|
553
|
+
accountPermissionFilter?: AccountPermissionFilter;
|
|
548
554
|
term?: string;
|
|
549
555
|
}
|
|
550
556
|
|
package/package.json
CHANGED