@budibase/types 2.33.3 → 2.33.5

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.
@@ -12,7 +12,10 @@ export interface UserDetails {
12
12
  }
13
13
  export interface BulkUserRequest {
14
14
  delete?: {
15
- userIds: string[];
15
+ users: Array<{
16
+ userId: string;
17
+ email: string;
18
+ }>;
16
19
  };
17
20
  create?: {
18
21
  roles?: any[];
@@ -7,4 +7,3 @@ export * from "./schedule";
7
7
  export * from "./templates";
8
8
  export * from "./environmentVariables";
9
9
  export * from "./auditLogs";
10
- export * from "./tenantInfo";
@@ -25,6 +25,10 @@ export interface UserSSO {
25
25
  }
26
26
  export type SSOUser = User & UserSSO;
27
27
  export declare function isSSOUser(user: User): user is SSOUser;
28
+ export interface UserIdentifier {
29
+ userId: string;
30
+ email: string;
31
+ }
28
32
  export interface User extends Document {
29
33
  tenantId: string;
30
34
  email: string;