-
Notifications
You must be signed in to change notification settings - Fork 390
Expand file tree
/
Copy pathdata-contracts.ts
More file actions
406 lines (344 loc) · 9.65 KB
/
data-contracts.ts
File metadata and controls
406 lines (344 loc) · 9.65 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
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
/* eslint-disable */
/* tslint:disable */
// @ts-nocheck
/*
* ---------------------------------------------------------------
* ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ##
* ## ##
* ## AUTHOR: acacode ##
* ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
* ---------------------------------------------------------------
*/
/** SHARED when the shard is in the general pool; DEDICATED when it is pinned to specific organizations. */
export enum OrganizationAvailableShardClass {
SHARED = "SHARED",
DEDICATED = "DEDICATED",
}
export enum OrganizationInviteStatus {
PENDING = "PENDING",
ACCEPTED = "ACCEPTED",
REJECTED = "REJECTED",
EXPIRED = "EXPIRED",
}
export enum ManagementTokenDuration {
Value30D = "30D",
Value60D = "60D",
Value90D = "90D",
}
export enum TenantStatusType {
ACTIVE = "ACTIVE",
ARCHIVED = "ARCHIVED",
}
export enum OrganizationMemberRoleType {
OWNER = "OWNER",
}
export interface APIControlPlaneMetadata {
/**
* the inactivity timeout to log out for user sessions in milliseconds
* @example 3600000
*/
inactivityLogoutMs?: number;
auth?: APIMetaAuth;
/**
* the Pylon app ID for usepylon.com chat support
* @example "12345678-1234-1234-1234-123456789012"
*/
pylonAppId?: string;
posthog?: APIMetaPosthog;
/**
* whether or not users can sign up for this instance
* @example true
*/
allowSignup?: boolean;
/**
* whether or not users can invite other users to this instance
* @example true
*/
allowInvites?: boolean;
/**
* whether or not users can create new tenants
* @example true
*/
allowCreateTenant?: boolean;
/**
* whether or not users can change their password
* @example true
*/
allowChangePassword?: boolean;
/**
* whether or not observability (trace collection) is enabled on this instance
* @example false
*/
observabilityEnabled?: boolean;
}
import type { APIMetaAuth } from '@/lib/api/generated/data-contracts';
import type { APIMetaPosthog } from '@/lib/api/generated/data-contracts';
import type { APIErrors } from '@/lib/api/generated/data-contracts';
import type { APIError } from '@/lib/api/generated/data-contracts';
import type { PaginationResponse } from '@/lib/api/generated/data-contracts';
import type { APIResourceMeta } from '@/lib/api/generated/data-contracts';
export type ListAPIMetaIntegration = APIMetaIntegration[];
import type { APIMetaIntegration } from '@/lib/api/generated/data-contracts';
import type { User } from '@/lib/api/generated/data-contracts';
import type { UserLoginRequest } from '@/lib/api/generated/data-contracts';
import type { UserChangePasswordRequest } from '@/lib/api/generated/data-contracts';
import type { UserRegisterRequest } from '@/lib/api/generated/data-contracts';
export interface Organization {
metadata: APIResourceMeta;
/** Name of the organization */
name: string;
tenants?: OrganizationTenant[];
members?: OrganizationMember[];
/**
* Time of inactivity to force log out a user (ms)
* @format int64
*/
inactivity_timeout?: number;
}
export interface OrganizationForUser {
metadata: APIResourceMeta;
/** Name of the organization */
name: string;
tenants: OrganizationTenant[];
/** Whether the user is the owner of the organization */
isOwner: boolean;
}
export interface OrganizationForUserList {
rows: OrganizationForUser[];
pagination: PaginationResponse;
}
export interface CreateOrganizationRequest {
/**
* Name of the organization
* @minLength 1
* @maxLength 256
*/
name: string;
}
export interface UpdateOrganizationRequest {
/**
* Name of the organization
* @minLength 1
* @maxLength 256
*/
name?: string;
/** Inactivity timeout */
inactivity_timeout?: string;
}
export interface OrganizationMember {
metadata: APIResourceMeta;
/** Type/role of the member in the organization */
role: OrganizationMemberRoleType;
/**
* Email of the user
* @format email
*/
email: string;
}
export interface OrganizationMemberList {
rows: OrganizationMember[];
pagination: PaginationResponse;
}
export interface RemoveOrganizationMembersRequest {
/**
* Array of user emails to remove from the organization
* @minItems 1
*/
emails: string[];
}
export interface OrganizationTenant {
/**
* ID of the tenant
* @format uuid
*/
id: string;
/** Name of the tenant */
name?: string;
/** Slug of the tenant */
slug?: string;
/** Status of the tenant */
status: TenantStatusType;
/**
* The timestamp at which the tenant was archived
* @format date-time
*/
archivedAt?: string;
/** Control-plane shard region for the tenant (e.g. aws:us-west-2). */
region?: string;
}
export interface OrganizationTenantList {
rows: OrganizationTenant[];
}
export interface CreateNewTenantForOrganizationRequest {
/** The name of the tenant. */
name: string;
/** The slug of the tenant. */
slug: string;
/**
* Optional shard region (e.g. aws:us-east-1). When omitted, the server picks one.
* @example "aws:us-east-1"
*/
region?: string;
}
export interface CreateManagementTokenRequest {
/** The name of the management token. */
name: string;
/** @default "30D" */
duration?: ManagementTokenDuration;
}
export interface CreateManagementTokenResponse {
/** The token of the management token. */
token: string;
}
export interface ManagementToken {
/**
* The ID of the management token.
* @format uuid
*/
id: string;
/** The name of the management token. */
name: string;
/**
* The timestamp at which the management token expires
* @format date-time
*/
expiresAt?: string;
}
export interface CreateOrganizationSsoDomainRequest {
/** @format uri */
ssoDomain: string;
}
export interface ManagementTokenList {
rows: ManagementToken[];
}
export interface OrganizationInvite {
metadata: APIResourceMeta;
/**
* The ID of the organization
* @format uuid
*/
organizationId: string;
/**
* The email of the inviter
* @format email
*/
inviterEmail: string;
/**
* The email of the invitee
* @format email
*/
inviteeEmail: string;
/**
* The timestamp at which the invite expires
* @format date-time
*/
expires: string;
/** The status of the invite */
status: OrganizationInviteStatus;
/** The role of the invitee */
role: OrganizationMemberRoleType;
}
export interface OrganizationInviteList {
rows: OrganizationInvite[];
}
export interface CreateOrganizationInviteRequest {
/**
* The email of the invitee
* @format email
*/
inviteeEmail: string;
/** The role of the invitee */
role: OrganizationMemberRoleType;
}
export interface AcceptOrganizationInviteRequest {
/**
* The ID of the organization invite
* @format uuid
*/
id: string;
}
export interface RejectOrganizationInviteRequest {
/**
* The ID of the organization invite
* @format uuid
*/
id: string;
}
import type { TenantMemberRole } from '@/lib/api/generated/data-contracts';
import type { UserTenantPublic } from '@/lib/api/generated/data-contracts';
import type { TenantMember } from '@/lib/api/generated/data-contracts';
import type { TenantMemberList } from '@/lib/api/generated/data-contracts';
import type { UpdateTenantMemberRequest } from '@/lib/api/generated/data-contracts';
import type { TenantInvite } from '@/lib/api/generated/data-contracts';
import type { TenantInviteList } from '@/lib/api/generated/data-contracts';
import type { CreateTenantInviteRequest } from '@/lib/api/generated/data-contracts';
import type { UpdateTenantInviteRequest } from '@/lib/api/generated/data-contracts';
import type { AcceptInviteRequest as AcceptTenantInviteRequest } from '@/lib/api/generated/data-contracts';
import type { RejectInviteRequest as RejectTenantInviteRequest } from '@/lib/api/generated/data-contracts';
import type { UserTenantMembershipsList } from '@/lib/api/generated/data-contracts';
export interface TenantExchangeToken {
/** The signed exchange token for the tenant */
token: string;
/** The API URL embedded in the token claims */
apiUrl: string;
/**
* Timestamp at which the token expires
* @format date-time
*/
expiresAt: string;
}
export interface APIToken {
metadata: APIResourceMeta;
/** The name of the API token */
name: string;
/**
* The timestamp at which the token expires
* @format date-time
*/
expiresAt: string;
}
export interface APITokenList {
rows: APIToken[];
pagination?: PaginationResponse;
}
export interface CreateTenantAPITokenRequest {
/** The name of the API token */
name: string;
/** The duration for which the token should be valid (e.g., "30d", "90d") */
expiresIn?: string;
}
export interface CreateTenantAPITokenResponse {
/** The generated API token */
token: string;
}
export interface OrganizationAvailableShard {
/** Cloud provider for this deployment target (e.g. aws). */
provider: string;
/** Region within the provider (e.g. us-east-1). */
region: string;
/** SHARED when the shard is in the general pool; DEDICATED when it is pinned to specific organizations. */
shardClass: OrganizationAvailableShardClass;
}
export interface OrganizationAvailableShardList {
rows: OrganizationAvailableShard[];
}
export interface SsoDomain {
/**
* @format uri
* @example "acme.com"
*/
ssoDomain: string;
/** @example false */
verified: boolean;
/** @format uuid */
verificationToken: string;
}
export type SsoDomainArray = SsoDomain[];
export interface SsoConfig {
/** @example false */
forceSSO: boolean;
}
export interface OrganizationEntitlements {
/** @example false */
canSSO: boolean;
}