-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathinvites.ts
More file actions
215 lines (188 loc) · 4.95 KB
/
Copy pathinvites.ts
File metadata and controls
215 lines (188 loc) · 4.95 KB
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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../core/resource';
import { APIPromise } from '../../../core/api-promise';
import {
ConversationCursorPage,
type ConversationCursorPageParams,
PagePromise,
} from '../../../core/pagination';
import { RequestOptions } from '../../../internal/request-options';
import { path } from '../../../internal/utils/path';
export class Invites extends APIResource {
/**
* Create an invite for a user to the organization. The invite must be accepted by
* the user before they have access to the organization.
*
* @example
* ```ts
* const invite =
* await client.admin.organization.invites.create({
* email: 'email',
* role: 'reader',
* });
* ```
*/
create(body: InviteCreateParams, options?: RequestOptions): APIPromise<Invite> {
return this._client.post('/organization/invites', {
body,
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Retrieves an invite.
*
* @example
* ```ts
* const invite =
* await client.admin.organization.invites.retrieve(
* 'invite_id',
* );
* ```
*/
retrieve(inviteID: string, options?: RequestOptions): APIPromise<Invite> {
return this._client.get(path`/organization/invites/${inviteID}`, {
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Returns a list of invites in the organization.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const invite of client.admin.organization.invites.list()) {
* // ...
* }
* ```
*/
list(
query: InviteListParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<InvitesPage, Invite> {
return this._client.getAPIList('/organization/invites', ConversationCursorPage<Invite>, {
query,
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Delete an invite. If the invite has already been accepted, it cannot be deleted.
*
* @example
* ```ts
* const invite =
* await client.admin.organization.invites.delete(
* 'invite_id',
* );
* ```
*/
delete(inviteID: string, options?: RequestOptions): APIPromise<InviteDeleteResponse> {
return this._client.delete(path`/organization/invites/${inviteID}`, {
...options,
__security: { adminAPIKeyAuth: true },
});
}
}
export type InvitesPage = ConversationCursorPage<Invite>;
/**
* Represents an individual `invite` to the organization.
*/
export interface Invite {
/**
* The identifier, which can be referenced in API endpoints
*/
id: string;
/**
* The Unix timestamp (in seconds) of when the invite was sent.
*/
created_at: number;
/**
* The email address of the individual to whom the invite was sent
*/
email: string;
/**
* The object type, which is always `organization.invite`
*/
object: 'organization.invite';
/**
* The projects that were granted membership upon acceptance of the invite.
*/
projects: Array<Invite.Project>;
/**
* `owner` or `reader`
*/
role: 'owner' | 'reader';
/**
* `accepted`,`expired`, or `pending`
*/
status: 'accepted' | 'expired' | 'pending';
/**
* The Unix timestamp (in seconds) of when the invite was accepted.
*/
accepted_at?: number | null;
/**
* The Unix timestamp (in seconds) of when the invite expires.
*/
expires_at?: number | null;
}
export namespace Invite {
export interface Project {
/**
* Project's public ID
*/
id: string;
/**
* Project membership role
*/
role: 'member' | 'owner';
}
}
export interface InviteDeleteResponse {
id: string;
deleted: boolean;
/**
* The object type, which is always `organization.invite.deleted`
*/
object: 'organization.invite.deleted';
}
export interface InviteCreateParams {
/**
* Send an email to this address
*/
email: string;
/**
* `owner` or `reader`
*/
role: 'reader' | 'owner';
/**
* An array of projects to which membership is granted at the same time the org
* invite is accepted. If omitted, the user will be invited to the default project
* for compatibility with legacy behavior. If empty list is passed, the user will
* not be invited to any projects, including the default one.
*/
projects?: Array<InviteCreateParams.Project>;
}
export namespace InviteCreateParams {
export interface Project {
/**
* Project's public ID
*/
id: string;
/**
* Project membership role
*/
role: 'member' | 'owner';
}
}
export interface InviteListParams extends ConversationCursorPageParams {}
export declare namespace Invites {
export {
type Invite as Invite,
type InviteDeleteResponse as InviteDeleteResponse,
type InvitesPage as InvitesPage,
type InviteCreateParams as InviteCreateParams,
type InviteListParams as InviteListParams,
};
}