-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusers.ts
52 lines (41 loc) · 1.1 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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import { APIPromise } from '../api-promise';
import { buildHeaders } from '../internal/headers';
import { RequestOptions } from '../internal/request-options';
export class Users extends APIResource {
/**
* Add a new user
*/
create(body: UserCreateParams, options?: RequestOptions): APIPromise<void> {
return this._client.post('/users', {
body,
...options,
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
});
}
/**
* Get all users
*/
list(options?: RequestOptions): APIPromise<UserListResponse> {
return this._client.get('/users', options);
}
}
export interface User {
id?: number;
email?: string;
name?: string;
}
export type UserListResponse = Array<User>;
export interface UserCreateParams {
id?: number;
email?: string;
name?: string;
}
export declare namespace Users {
export {
type User as User,
type UserListResponse as UserListResponse,
type UserCreateParams as UserCreateParams,
};
}