-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.ts
282 lines (241 loc) · 6.84 KB
/
users.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import { isRequestOptions } from '../core';
import * as Core from '../core';
import { UsersPage, type UsersPageParams } from '../pagination';
export class Users extends APIResource {
/**
* Modify a given `User`.
*
* Fields not included in the request body will not be modified.
*/
update(body: UserUpdateParams, options?: Core.RequestOptions): Core.APIPromise<unknown> {
return this._client.put('/users', { body, ...options });
}
/**
* Retrieve a list of `users`.
*/
list(
query?: UserListParams,
options?: Core.RequestOptions,
): Core.PagePromise<ListUsersResponseUsersUsersPage, ListUsersResponse.User>;
list(
options?: Core.RequestOptions,
): Core.PagePromise<ListUsersResponseUsersUsersPage, ListUsersResponse.User>;
list(
query: UserListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.PagePromise<ListUsersResponseUsersUsersPage, ListUsersResponse.User> {
if (isRequestOptions(query)) {
return this.list({}, query);
}
return this._client.getAPIList('/users', ListUsersResponseUsersUsersPage, { query, ...options });
}
/**
* Delete a given `user`.
*/
deactivate(body: UserDeactivateParams, options?: Core.RequestOptions): Core.APIPromise<unknown> {
return this._client.delete('/users', { body, ...options });
}
/**
* Invite users to the tenant. This checks if the user is already in the tenant and
* if not, creates the user. We will return a list of user emails that were
* successfully created (including existing users).
*/
invite(body: UserInviteParams, options?: Core.RequestOptions): Core.APIPromise<InviteUsersResponse> {
return this._client.post('/users', { body, ...options });
}
}
export class ListUsersResponseUsersUsersPage extends UsersPage<ListUsersResponse.User> {}
export interface InviteUsersResponse {
/**
* Details of the errors occurred while inviting users, where keys are the emails
* and values are the error messages
*/
error_details: Record<string, string>;
/**
* List of emails of the invited users
*/
invited_user_emails: Array<string>;
}
export interface ListUsersResponse {
/**
* List of users
*/
users: Array<ListUsersResponse.User>;
/**
* Cursor for the beginning of the next page
*/
next_cursor?: string | null;
}
export namespace ListUsersResponse {
/**
* The schema used for listing existing (activated / deactivated) users. Need to
* keep in sync with `frontend/src/types/admin.ts`.
*/
export interface User {
id: string;
/**
* The email of the user
*/
email: string;
/**
* Flag indicating if the user is a tenant admin
*/
is_tenant_admin?: boolean;
/**
* Per agent level roles for the user. If a user is granted any role under `roles`,
* then the user has that role for all the agents. Only the roles that need to be
* updated should be part of this.
*/
per_agent_roles?: Array<User.PerAgentRole>;
/**
* The user level roles of the user.
*/
roles?: Array<'AGENT_USER'>;
}
export namespace User {
/**
* The schema used to capture agent level roles
*/
export interface PerAgentRole {
/**
* ID of the agent on which to grant/revoke the role.
*/
agent_id: string;
/**
* When set to true, the roles will be granted o/w revoked.
*/
grant: boolean;
/**
* The roles that are granted/revoked
*/
roles: Array<'AGENT_USER'>;
}
}
}
/**
* The schema used for creating new users or updating existing users. Need to keep
* in sync with `frontend/src/types/admin.ts`.
*/
export interface NewUser {
/**
* The email of the user
*/
email: string;
/**
* Flag indicating if the user is a tenant admin
*/
is_tenant_admin?: boolean;
/**
* Per agent level roles for the user. If a user is granted any role under `roles`,
* then the user has that role for all the agents. Only the roles that need to be
* updated should be part of this.
*/
per_agent_roles?: Array<NewUser.PerAgentRole>;
/**
* The user level roles of the user.
*/
roles?: Array<'AGENT_USER'>;
}
export namespace NewUser {
/**
* The schema used to capture agent level roles
*/
export interface PerAgentRole {
/**
* ID of the agent on which to grant/revoke the role.
*/
agent_id: string;
/**
* When set to true, the roles will be granted o/w revoked.
*/
grant: boolean;
/**
* The roles that are granted/revoked
*/
roles: Array<'AGENT_USER'>;
}
}
export type UserUpdateResponse = unknown;
export type UserDeactivateResponse = unknown;
export interface UserUpdateParams {
/**
* The email of the user
*/
email: string;
/**
* Flag indicating if the user is a tenant admin
*/
is_tenant_admin?: boolean;
/**
* Per agent level roles for the user. If a user is granted any role under `roles`,
* then the user has that role for all the agents. Only the roles that need to be
* updated should be part of this.
*/
per_agent_roles?: Array<UserUpdateParams.PerAgentRole>;
/**
* The user level roles of the user.
*/
roles?: Array<'AGENT_USER'>;
}
export namespace UserUpdateParams {
/**
* The schema used to capture agent level roles
*/
export interface PerAgentRole {
/**
* ID of the agent on which to grant/revoke the role.
*/
agent_id: string;
/**
* When set to true, the roles will be granted o/w revoked.
*/
grant: boolean;
/**
* The roles that are granted/revoked
*/
roles: Array<'AGENT_USER'>;
}
}
export interface UserListParams extends UsersPageParams {
/**
* When set to true, return deactivated users instead.
*/
deactivated?: boolean;
/**
* Query to filter users by email
*/
search?: string;
}
export interface UserDeactivateParams {
/**
* The email of the user
*/
email: string;
}
export interface UserInviteParams {
/**
* List of new users to be invited
*/
new_users: Array<NewUser>;
/**
* The short name of the tenant
*/
tenant_short_name: string;
}
Users.ListUsersResponseUsersUsersPage = ListUsersResponseUsersUsersPage;
export declare namespace Users {
export {
type InviteUsersResponse as InviteUsersResponse,
type ListUsersResponse as ListUsersResponse,
type NewUser as NewUser,
type UserUpdateResponse as UserUpdateResponse,
type UserDeactivateResponse as UserDeactivateResponse,
ListUsersResponseUsersUsersPage as ListUsersResponseUsersUsersPage,
type UserUpdateParams as UserUpdateParams,
type UserListParams as UserListParams,
type UserDeactivateParams as UserDeactivateParams,
type UserInviteParams as UserInviteParams,
};
}