@tyvm/knowhow-api-client 0.0.1 → 0.0.3
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.
- package/dist/client.d.ts +5 -0
- package/dist/client.js +11 -1
- package/dist/generated/openapi.d.ts +2210 -453
- package/dist/generated/openapi.json +13450 -0
- package/package.json +4 -3
|
@@ -19,15 +19,48 @@ declare namespace Components {
|
|
|
19
19
|
options: /* Make all properties in T optional */ PartialEmbeddingOptions;
|
|
20
20
|
provider?: string;
|
|
21
21
|
}
|
|
22
|
+
export interface AddCommentRequest {
|
|
23
|
+
comment: string;
|
|
24
|
+
isSystem?: boolean;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Simple API key passed in header or query parameter
|
|
28
|
+
*/
|
|
29
|
+
export interface ApiKeyAuthConfig {
|
|
30
|
+
type: "api_key";
|
|
31
|
+
location: "header" | "query";
|
|
32
|
+
keyName: string;
|
|
33
|
+
keySecretKey: string;
|
|
34
|
+
}
|
|
22
35
|
export interface ApproveSessionResponse {
|
|
23
36
|
success: boolean;
|
|
24
37
|
message: string;
|
|
25
38
|
}
|
|
39
|
+
export interface AuthStatusResponse {
|
|
40
|
+
isAuthenticated: boolean;
|
|
41
|
+
secretName: string;
|
|
42
|
+
secretType: "org" | "user";
|
|
43
|
+
createdAt?: string;
|
|
44
|
+
}
|
|
26
45
|
export interface AutoReloadSettings {
|
|
27
46
|
enabled: boolean;
|
|
28
47
|
threshold: number; // double
|
|
29
48
|
amount: number; // double
|
|
30
49
|
}
|
|
50
|
+
/**
|
|
51
|
+
* Basic Auth via Login URL
|
|
52
|
+
* Posts credentials to a login URL and extracts token from response
|
|
53
|
+
*/
|
|
54
|
+
export interface BasicAuthConfig {
|
|
55
|
+
type: "basic";
|
|
56
|
+
loginUrl: string;
|
|
57
|
+
usernameSecretKey: string;
|
|
58
|
+
passwordSecretKey: string;
|
|
59
|
+
jsonBodyTemplate: string;
|
|
60
|
+
responseTokenPath: string;
|
|
61
|
+
responseExpiryPath?: string;
|
|
62
|
+
headerLocation: string;
|
|
63
|
+
}
|
|
31
64
|
export interface ChatCompletionResponse {
|
|
32
65
|
choices: {
|
|
33
66
|
message: OutputMessage;
|
|
@@ -82,6 +115,7 @@ declare namespace Components {
|
|
|
82
115
|
env?: any;
|
|
83
116
|
url?: string;
|
|
84
117
|
secretMapping?: any;
|
|
118
|
+
authConfig?: any;
|
|
85
119
|
enabled?: boolean;
|
|
86
120
|
onConnectServiceId?: string;
|
|
87
121
|
}
|
|
@@ -95,6 +129,7 @@ declare namespace Components {
|
|
|
95
129
|
secretMapping?: any;
|
|
96
130
|
enabled?: boolean;
|
|
97
131
|
onConnectServiceId?: string;
|
|
132
|
+
authConfig?: /* Discriminated union of all auth config types */ McpAuthConfig;
|
|
98
133
|
}
|
|
99
134
|
export interface CreateSecretRequest {
|
|
100
135
|
name: string;
|
|
@@ -117,6 +152,15 @@ declare namespace Components {
|
|
|
117
152
|
expiresAt: string;
|
|
118
153
|
pollUrl: string;
|
|
119
154
|
}
|
|
155
|
+
export interface CreateTasksRequest {
|
|
156
|
+
orgUserId: string;
|
|
157
|
+
}
|
|
158
|
+
export interface CreateTasksResponse {
|
|
159
|
+
success: boolean;
|
|
160
|
+
message: string;
|
|
161
|
+
tasksCreated: number; // double
|
|
162
|
+
taskIds: string[];
|
|
163
|
+
}
|
|
120
164
|
export interface CreditBalance {
|
|
121
165
|
orgBalance?: number; // double
|
|
122
166
|
orgUserBalance?: number; // double
|
|
@@ -166,9 +210,9 @@ declare namespace Components {
|
|
|
166
210
|
description: string;
|
|
167
211
|
organizationId: string;
|
|
168
212
|
orgWorkers: string;
|
|
213
|
+
name: string;
|
|
169
214
|
updatedAt: string; // date-time
|
|
170
215
|
createdAt: string; // date-time
|
|
171
|
-
name: string;
|
|
172
216
|
id: string;
|
|
173
217
|
}
|
|
174
218
|
export interface DefaultSelectionPrisma36OrgCreditPurchasePayload {
|
|
@@ -177,46 +221,51 @@ declare namespace Components {
|
|
|
177
221
|
fundingMethod: N$16EnumsFundingMethod;
|
|
178
222
|
creditsAmount: number; // double
|
|
179
223
|
amountUsd: number; // double
|
|
180
|
-
status: string;
|
|
181
224
|
organizationId: string;
|
|
182
225
|
updatedAt: string; // date-time
|
|
183
226
|
createdAt: string; // date-time
|
|
227
|
+
status: string;
|
|
184
228
|
id: string;
|
|
185
229
|
}
|
|
186
230
|
export interface DefaultSelectionPrisma36OrgEmbeddingPayload {
|
|
187
231
|
chunkSize: number; // double
|
|
188
232
|
fileName: string;
|
|
189
|
-
description: string;
|
|
190
233
|
modelName: string;
|
|
234
|
+
description: string;
|
|
191
235
|
organizationId: string;
|
|
236
|
+
name: string;
|
|
237
|
+
updatedAt: string; // date-time
|
|
238
|
+
createdAt: string; // date-time
|
|
192
239
|
metadata: /**
|
|
193
240
|
* From https://github.com/sindresorhus/type-fest/
|
|
194
241
|
* Matches any valid JSON value.
|
|
195
242
|
*/
|
|
196
243
|
JsonValue;
|
|
197
|
-
updatedAt: string; // date-time
|
|
198
|
-
createdAt: string; // date-time
|
|
199
|
-
name: string;
|
|
200
244
|
id: string;
|
|
201
245
|
}
|
|
202
246
|
export interface DefaultSelectionPrisma36OrgFilePayload {
|
|
203
|
-
fileName: string;
|
|
204
247
|
folderPath: string;
|
|
248
|
+
fileName: string;
|
|
205
249
|
description: string;
|
|
206
250
|
organizationId: string;
|
|
251
|
+
name: string;
|
|
252
|
+
updatedAt: string; // date-time
|
|
253
|
+
createdAt: string; // date-time
|
|
207
254
|
metadata: /**
|
|
208
255
|
* From https://github.com/sindresorhus/type-fest/
|
|
209
256
|
* Matches any valid JSON value.
|
|
210
257
|
*/
|
|
211
258
|
JsonValue;
|
|
212
|
-
updatedAt: string; // date-time
|
|
213
|
-
createdAt: string; // date-time
|
|
214
|
-
name: string;
|
|
215
259
|
id: string;
|
|
216
260
|
}
|
|
217
261
|
export interface DefaultSelectionPrisma36OrgMcpServerPayload {
|
|
218
262
|
onConnectServiceId: string;
|
|
219
263
|
enabled: boolean;
|
|
264
|
+
authConfig: /**
|
|
265
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
266
|
+
* Matches any valid JSON value.
|
|
267
|
+
*/
|
|
268
|
+
JsonValue;
|
|
220
269
|
secretMapping: /**
|
|
221
270
|
* From https://github.com/sindresorhus/type-fest/
|
|
222
271
|
* Matches any valid JSON value.
|
|
@@ -232,20 +281,20 @@ declare namespace Components {
|
|
|
232
281
|
command: string;
|
|
233
282
|
uniqueName: string;
|
|
234
283
|
organizationId: string;
|
|
284
|
+
name: string;
|
|
235
285
|
updatedAt: string; // date-time
|
|
236
286
|
createdAt: string; // date-time
|
|
237
|
-
name: string;
|
|
238
287
|
id: string;
|
|
239
288
|
}
|
|
240
289
|
export interface DefaultSelectionPrisma36OrgPaymentMethodPayload {
|
|
241
290
|
fingerprint: string;
|
|
242
|
-
isDefault: boolean;
|
|
243
291
|
expiryYear: number; // double
|
|
244
292
|
expiryMonth: number; // double
|
|
245
293
|
brand: string;
|
|
246
294
|
last4: string;
|
|
247
295
|
stripePaymentMethodId: string;
|
|
248
296
|
type: string;
|
|
297
|
+
isDefault: boolean;
|
|
249
298
|
organizationId: string;
|
|
250
299
|
updatedAt: string; // date-time
|
|
251
300
|
createdAt: string; // date-time
|
|
@@ -264,15 +313,20 @@ declare namespace Components {
|
|
|
264
313
|
fundingMethod: N$16EnumsFundingMethod;
|
|
265
314
|
creditsAmount: number; // double
|
|
266
315
|
amountUsd: number; // double
|
|
267
|
-
status: string;
|
|
268
316
|
orgUserId: string;
|
|
269
317
|
updatedAt: string; // date-time
|
|
270
318
|
createdAt: string; // date-time
|
|
319
|
+
status: string;
|
|
271
320
|
id: string;
|
|
272
321
|
}
|
|
273
322
|
export interface DefaultSelectionPrisma36OrgUserMcpPayload {
|
|
274
323
|
onConnectServiceId: string;
|
|
275
324
|
enabled: boolean;
|
|
325
|
+
authConfig: /**
|
|
326
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
327
|
+
* Matches any valid JSON value.
|
|
328
|
+
*/
|
|
329
|
+
JsonValue;
|
|
276
330
|
secretMapping: /**
|
|
277
331
|
* From https://github.com/sindresorhus/type-fest/
|
|
278
332
|
* Matches any valid JSON value.
|
|
@@ -288,9 +342,37 @@ declare namespace Components {
|
|
|
288
342
|
command: string;
|
|
289
343
|
uniqueName: string;
|
|
290
344
|
orgUserId: string;
|
|
345
|
+
name: string;
|
|
291
346
|
updatedAt: string; // date-time
|
|
292
347
|
createdAt: string; // date-time
|
|
348
|
+
id: string;
|
|
349
|
+
}
|
|
350
|
+
export interface DefaultSelectionPrisma36OrgUserTaskPayload {
|
|
351
|
+
templateId: string;
|
|
352
|
+
failedAt: string; // date-time
|
|
353
|
+
dependsOn: /**
|
|
354
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
355
|
+
* Matches any valid JSON value.
|
|
356
|
+
*/
|
|
357
|
+
JsonValue;
|
|
358
|
+
completedAt: string; // date-time
|
|
359
|
+
dueDate: string; // date-time
|
|
360
|
+
priority: number; // double
|
|
361
|
+
requireChecks: boolean;
|
|
362
|
+
state: N$16EnumsTaskState;
|
|
363
|
+
parentId: string;
|
|
364
|
+
orgUserId: string;
|
|
365
|
+
orgId: string;
|
|
366
|
+
description: string;
|
|
367
|
+
deletedAt: string; // date-time
|
|
293
368
|
name: string;
|
|
369
|
+
updatedAt: string; // date-time
|
|
370
|
+
createdAt: string; // date-time
|
|
371
|
+
metadata: /**
|
|
372
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
373
|
+
* Matches any valid JSON value.
|
|
374
|
+
*/
|
|
375
|
+
JsonValue;
|
|
294
376
|
id: string;
|
|
295
377
|
}
|
|
296
378
|
export interface DefaultSelectionPrisma36OrgWorkerPayload {
|
|
@@ -298,28 +380,72 @@ declare namespace Components {
|
|
|
298
380
|
connected: boolean;
|
|
299
381
|
fsRoot: string;
|
|
300
382
|
userAgent: string;
|
|
301
|
-
orgId: string;
|
|
302
383
|
socketId: string;
|
|
384
|
+
orgId: string;
|
|
303
385
|
userId: string;
|
|
304
386
|
id: string;
|
|
305
387
|
}
|
|
306
388
|
export interface DefaultSelectionPrisma36OrganizationPayload {
|
|
389
|
+
coversUserExpenses: boolean;
|
|
307
390
|
billingEmail: string;
|
|
308
391
|
domain: string;
|
|
309
|
-
stripeCustomerId: string;
|
|
310
|
-
autoReloadAmount: number; // double
|
|
311
392
|
autoReloadThreshold: number; // double
|
|
312
393
|
autoReloadEnabled: boolean;
|
|
394
|
+
autoReloadAmount: number; // double
|
|
395
|
+
stripeCustomerId: string;
|
|
313
396
|
creditsUsd: number; // double
|
|
397
|
+
deletedAt: string; // date-time
|
|
398
|
+
name: string;
|
|
399
|
+
updatedAt: string; // date-time
|
|
400
|
+
createdAt: string; // date-time
|
|
314
401
|
metadata: /**
|
|
315
402
|
* From https://github.com/sindresorhus/type-fest/
|
|
316
403
|
* Matches any valid JSON value.
|
|
317
404
|
*/
|
|
318
405
|
JsonValue;
|
|
319
|
-
|
|
406
|
+
id: string;
|
|
407
|
+
}
|
|
408
|
+
export interface DefaultSelectionPrisma36TaskCheckPayload {
|
|
409
|
+
executedAt: string; // date-time
|
|
410
|
+
methodName: string;
|
|
411
|
+
className: string;
|
|
412
|
+
taskId: string;
|
|
413
|
+
state: N$16EnumsCheckState;
|
|
414
|
+
name: string;
|
|
320
415
|
updatedAt: string; // date-time
|
|
321
416
|
createdAt: string; // date-time
|
|
417
|
+
metadata: /**
|
|
418
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
419
|
+
* Matches any valid JSON value.
|
|
420
|
+
*/
|
|
421
|
+
JsonValue;
|
|
422
|
+
id: string;
|
|
423
|
+
result: /**
|
|
424
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
425
|
+
* Matches any valid JSON value.
|
|
426
|
+
*/
|
|
427
|
+
JsonValue;
|
|
428
|
+
error: string;
|
|
429
|
+
}
|
|
430
|
+
export interface DefaultSelectionPrisma36TaskTemplatePayload {
|
|
431
|
+
tasks: /**
|
|
432
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
433
|
+
* Matches any valid JSON value.
|
|
434
|
+
*/
|
|
435
|
+
JsonValue;
|
|
436
|
+
orgId: string;
|
|
437
|
+
isDefault: boolean;
|
|
438
|
+
isActive: boolean;
|
|
439
|
+
description: string;
|
|
440
|
+
deletedAt: string; // date-time
|
|
322
441
|
name: string;
|
|
442
|
+
updatedAt: string; // date-time
|
|
443
|
+
createdAt: string; // date-time
|
|
444
|
+
metadata: /**
|
|
445
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
446
|
+
* Matches any valid JSON value.
|
|
447
|
+
*/
|
|
448
|
+
JsonValue;
|
|
323
449
|
id: string;
|
|
324
450
|
}
|
|
325
451
|
export interface DefaultSelectionPrisma36UserCreditPurchasePayload {
|
|
@@ -328,26 +454,30 @@ declare namespace Components {
|
|
|
328
454
|
fundingMethod: N$16EnumsFundingMethod;
|
|
329
455
|
creditsAmount: number; // double
|
|
330
456
|
amountUsd: number; // double
|
|
331
|
-
status: string;
|
|
332
457
|
userId: string;
|
|
333
458
|
updatedAt: string; // date-time
|
|
334
459
|
createdAt: string; // date-time
|
|
460
|
+
status: string;
|
|
335
461
|
id: string;
|
|
336
462
|
}
|
|
337
463
|
export interface DefaultSelectionPrisma36UserPaymentMethodPayload {
|
|
338
464
|
fingerprint: string;
|
|
339
|
-
isDefault: boolean;
|
|
340
465
|
expiryYear: number; // double
|
|
341
466
|
expiryMonth: number; // double
|
|
342
467
|
brand: string;
|
|
343
468
|
last4: string;
|
|
344
469
|
stripePaymentMethodId: string;
|
|
345
470
|
type: string;
|
|
471
|
+
isDefault: boolean;
|
|
346
472
|
userId: string;
|
|
347
473
|
updatedAt: string; // date-time
|
|
348
474
|
createdAt: string; // date-time
|
|
349
475
|
id: string;
|
|
350
476
|
}
|
|
477
|
+
export interface ElevationRequest {
|
|
478
|
+
otpCode?: string;
|
|
479
|
+
recoveryCode?: string;
|
|
480
|
+
}
|
|
351
481
|
export interface EmbeddableAny {
|
|
352
482
|
id: string;
|
|
353
483
|
text: string;
|
|
@@ -376,6 +506,14 @@ declare namespace Components {
|
|
|
376
506
|
}
|
|
377
507
|
export type FilterTypePrismaOrgEmbeddingUpdateWithoutOrganizationInputOrgEmbeddingOptionalFieldsOrgEmbeddingExcludedFields = /* Construct a type with the properties of T except for those in type K. */ OmitPartialByPrismaOrgEmbeddingUpdateWithoutOrganizationInputOrgEmbeddingOptionalFieldsOrgEmbeddingExcludedFields;
|
|
378
508
|
export type FilterTypePrismaOrgFileUpdateWithoutOrganizationInputOrgFileOptionalFieldsOrgFileExcludedFields = /* Construct a type with the properties of T except for those in type K. */ OmitPartialByPrismaOrgFileUpdateWithoutOrganizationInputOrgFileOptionalFieldsOrgFileExcludedFields;
|
|
509
|
+
export interface Generate2FAResponse {
|
|
510
|
+
qrCodeDataUrl: string;
|
|
511
|
+
secret: string;
|
|
512
|
+
}
|
|
513
|
+
export interface Get2FAStatusResponse {
|
|
514
|
+
isEnabled: boolean;
|
|
515
|
+
enabledAt?: string; // date-time
|
|
516
|
+
}
|
|
379
517
|
export interface HealthCheckResponse {
|
|
380
518
|
status: "healthy" | "unhealthy" | "degraded";
|
|
381
519
|
timestamp: string;
|
|
@@ -389,6 +527,18 @@ declare namespace Components {
|
|
|
389
527
|
database: ServiceStatus;
|
|
390
528
|
};
|
|
391
529
|
}
|
|
530
|
+
export interface InitiateOAuthRequest {
|
|
531
|
+
mcpServerUrl: string;
|
|
532
|
+
secretName: string;
|
|
533
|
+
secretType: "org" | "user";
|
|
534
|
+
clientId?: string;
|
|
535
|
+
clientSecret?: string;
|
|
536
|
+
scopes?: string[];
|
|
537
|
+
}
|
|
538
|
+
export interface InitiateOAuthResponse {
|
|
539
|
+
authorizationUrl: string;
|
|
540
|
+
state: string;
|
|
541
|
+
}
|
|
392
542
|
/**
|
|
393
543
|
* Matches a JSON array.
|
|
394
544
|
* Unlike \`JsonArray\`, readonly arrays are assignable to this type.
|
|
@@ -481,11 +631,39 @@ declare namespace Components {
|
|
|
481
631
|
* From https://github.com/sindresorhus/type-fest/
|
|
482
632
|
* Matches a JSON array.
|
|
483
633
|
*/
|
|
484
|
-
JsonArray | null | null | null | null | null | null | null | null | null;
|
|
634
|
+
JsonArray | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null;
|
|
485
635
|
export interface LivenessResponse {
|
|
486
636
|
status: "live" | "dead";
|
|
487
637
|
timestamp: string;
|
|
488
638
|
}
|
|
639
|
+
export interface MarkCompletedRequest {
|
|
640
|
+
force?: boolean;
|
|
641
|
+
}
|
|
642
|
+
export interface MarkCompletedResponse {
|
|
643
|
+
success: boolean;
|
|
644
|
+
message: string;
|
|
645
|
+
task?: /**
|
|
646
|
+
* Model OrgUserTask
|
|
647
|
+
* Represents a task assigned to an org user
|
|
648
|
+
*/
|
|
649
|
+
OrgUserTask;
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* Discriminated union of all auth config types
|
|
653
|
+
*/
|
|
654
|
+
export type McpAuthConfig = /* Discriminated union of all auth config types */ /**
|
|
655
|
+
* OAuth 2.1 Dynamic Client Registration
|
|
656
|
+
* Backend handles the full OAuth flow automatically using discovery
|
|
657
|
+
*/
|
|
658
|
+
OAuth21DynamicAuthConfig | /**
|
|
659
|
+
* OAuth 2.1 Static Client Registration
|
|
660
|
+
* Uses pre-configured client ID and secret from org-secrets or org-user-secrets
|
|
661
|
+
*/
|
|
662
|
+
OAuth21StaticAuthConfig | /**
|
|
663
|
+
* Basic Auth via Login URL
|
|
664
|
+
* Posts credentials to a login URL and extracts token from response
|
|
665
|
+
*/
|
|
666
|
+
BasicAuthConfig | /* Simple API key passed in header or query parameter */ ApiKeyAuthConfig | /* No authentication required */ NoAuthConfig;
|
|
489
667
|
export interface Message {
|
|
490
668
|
role: "system" | "user" | "assistant" | "tool";
|
|
491
669
|
content?: string | MessageContent[];
|
|
@@ -502,14 +680,45 @@ declare namespace Components {
|
|
|
502
680
|
};
|
|
503
681
|
type: "image_url";
|
|
504
682
|
};
|
|
683
|
+
export type N$16EnumsCheckState = "PENDING" | "COMPLETED" | "FAILED" | "RUNNING";
|
|
505
684
|
export type N$16EnumsCliLoginSessionStatus = "PENDING" | "APPROVED" | "DENIED" | "EXPIRED" | "USED";
|
|
506
685
|
export type N$16EnumsFundingMethod = "STRIPE_PAYMENT_METHOD" | "USER_BALANCE";
|
|
686
|
+
export type N$16EnumsTaskState = "PENDING" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
507
687
|
export type N$16EnumsUserRole = "OWNER" | "ADMIN" | "MEMBER";
|
|
688
|
+
export type N$16EnumsWaitlistStatus = "PENDING" | "APPROVED" | "REJECTED";
|
|
689
|
+
/**
|
|
690
|
+
* No authentication required
|
|
691
|
+
*/
|
|
692
|
+
export interface NoAuthConfig {
|
|
693
|
+
type: "none";
|
|
694
|
+
}
|
|
508
695
|
export interface NullablePartialPickPrismaOrganizationUncheckedUpdateWithoutUsersInputOrganizationOptionalFields {
|
|
509
696
|
name?: string | PrismaStringFieldUpdateOperationsInput;
|
|
697
|
+
autoReloadAmount?: number /* double */ | PrismaNullableFloatFieldUpdateOperationsInput;
|
|
510
698
|
autoReloadEnabled?: boolean | PrismaBoolFieldUpdateOperationsInput;
|
|
511
699
|
autoReloadThreshold?: number /* double */ | PrismaNullableFloatFieldUpdateOperationsInput;
|
|
512
|
-
|
|
700
|
+
coversUserExpenses?: boolean | PrismaBoolFieldUpdateOperationsInput;
|
|
701
|
+
}
|
|
702
|
+
/**
|
|
703
|
+
* OAuth 2.1 Dynamic Client Registration
|
|
704
|
+
* Backend handles the full OAuth flow automatically using discovery
|
|
705
|
+
*/
|
|
706
|
+
export interface OAuth21DynamicAuthConfig {
|
|
707
|
+
type: "oauth2_dynamic";
|
|
708
|
+
discoveryUrl: string;
|
|
709
|
+
scopes?: string[];
|
|
710
|
+
}
|
|
711
|
+
/**
|
|
712
|
+
* OAuth 2.1 Static Client Registration
|
|
713
|
+
* Uses pre-configured client ID and secret from org-secrets or org-user-secrets
|
|
714
|
+
*/
|
|
715
|
+
export interface OAuth21StaticAuthConfig {
|
|
716
|
+
type: "oauth2_static";
|
|
717
|
+
tokenUrl: string;
|
|
718
|
+
authorizationUrl: string;
|
|
719
|
+
scopes?: string[];
|
|
720
|
+
clientIdSecretKey: string;
|
|
721
|
+
clientSecretSecretKey: string;
|
|
513
722
|
}
|
|
514
723
|
/**
|
|
515
724
|
* Construct a type with the properties of T except for those in type K.
|
|
@@ -612,6 +821,89 @@ declare namespace Components {
|
|
|
612
821
|
* Represents an MCP server configuration for a specific org user.
|
|
613
822
|
*/
|
|
614
823
|
export type OrgUserMcp = DefaultSelectionPrisma36OrgUserMcpPayload;
|
|
824
|
+
/**
|
|
825
|
+
* Model OrgUserTask
|
|
826
|
+
* Represents a task assigned to an org user
|
|
827
|
+
*/
|
|
828
|
+
export type OrgUserTask = DefaultSelectionPrisma36OrgUserTaskPayload;
|
|
829
|
+
export interface OrgUserTaskCreateData {
|
|
830
|
+
orgId: string;
|
|
831
|
+
orgUserId: string;
|
|
832
|
+
name: string;
|
|
833
|
+
description?: string;
|
|
834
|
+
parentId?: string;
|
|
835
|
+
dependsOn?: string[];
|
|
836
|
+
requireChecks?: boolean;
|
|
837
|
+
checks?: TaskCheckData[];
|
|
838
|
+
priority?: number; // double
|
|
839
|
+
dueDate?: string; // date-time
|
|
840
|
+
metadata?: any;
|
|
841
|
+
templateId?: string;
|
|
842
|
+
}
|
|
843
|
+
export interface OrgUserTaskUpdateData {
|
|
844
|
+
name?: string;
|
|
845
|
+
description?: string;
|
|
846
|
+
parentId?: string;
|
|
847
|
+
dependsOn?: string[];
|
|
848
|
+
state?: TaskState;
|
|
849
|
+
requireChecks?: boolean;
|
|
850
|
+
checks?: TaskCheckData[];
|
|
851
|
+
priority?: number; // double
|
|
852
|
+
dueDate?: string; // date-time
|
|
853
|
+
completedAt?: string; // date-time
|
|
854
|
+
failedAt?: string; // date-time
|
|
855
|
+
metadata?: any;
|
|
856
|
+
}
|
|
857
|
+
export interface OrgUserTaskWithRelations {
|
|
858
|
+
templateId: string;
|
|
859
|
+
failedAt: string; // date-time
|
|
860
|
+
dependsOn: /**
|
|
861
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
862
|
+
* Matches any valid JSON value.
|
|
863
|
+
*/
|
|
864
|
+
JsonValue;
|
|
865
|
+
completedAt: string; // date-time
|
|
866
|
+
dueDate: string; // date-time
|
|
867
|
+
priority: number; // double
|
|
868
|
+
requireChecks: boolean;
|
|
869
|
+
state: N$16EnumsTaskState;
|
|
870
|
+
parentId: string;
|
|
871
|
+
orgUserId: string;
|
|
872
|
+
orgId: string;
|
|
873
|
+
description: string;
|
|
874
|
+
deletedAt: string; // date-time
|
|
875
|
+
name: string;
|
|
876
|
+
updatedAt: string; // date-time
|
|
877
|
+
createdAt: string; // date-time
|
|
878
|
+
metadata: /**
|
|
879
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
880
|
+
* Matches any valid JSON value.
|
|
881
|
+
*/
|
|
882
|
+
JsonValue;
|
|
883
|
+
id: string;
|
|
884
|
+
organization: {
|
|
885
|
+
name: string;
|
|
886
|
+
id: string;
|
|
887
|
+
};
|
|
888
|
+
orgUser: {
|
|
889
|
+
userId: string;
|
|
890
|
+
id: string;
|
|
891
|
+
};
|
|
892
|
+
checks: /**
|
|
893
|
+
* Model TaskCheck
|
|
894
|
+
* Represents a check that needs to be executed for a task
|
|
895
|
+
*/
|
|
896
|
+
TaskCheck[];
|
|
897
|
+
comments: {
|
|
898
|
+
orgUser: {
|
|
899
|
+
userId: string;
|
|
900
|
+
};
|
|
901
|
+
createdAt: string; // date-time
|
|
902
|
+
isSystem: boolean;
|
|
903
|
+
comment: string;
|
|
904
|
+
id: string;
|
|
905
|
+
}[];
|
|
906
|
+
}
|
|
615
907
|
/**
|
|
616
908
|
* Model OrgWorker
|
|
617
909
|
*/
|
|
@@ -678,7 +970,6 @@ declare namespace Components {
|
|
|
678
970
|
* From T, pick a set of properties whose keys are in the union K
|
|
679
971
|
*/
|
|
680
972
|
export interface PickPartialByPrismaOrgEmbeddingUpdateWithoutOrganizationInputOrgEmbeddingOptionalFieldsExcludeKeyofPartialByPrismaOrgEmbeddingUpdateWithoutOrganizationInputOrgEmbeddingOptionalFieldsOrgEmbeddingExcludedFields {
|
|
681
|
-
name?: string | PrismaStringFieldUpdateOperationsInput;
|
|
682
973
|
metadata?: PrismaNullableJsonNullValueInput | /**
|
|
683
974
|
* Matches any valid value that can be used as an input for operations like
|
|
684
975
|
* create and update as the value of a JSON field. Unlike \`JsonValue\`, this
|
|
@@ -691,8 +982,9 @@ declare namespace Components {
|
|
|
691
982
|
* NULL value instead.
|
|
692
983
|
*/
|
|
693
984
|
InputJsonValue;
|
|
694
|
-
|
|
985
|
+
name?: string | PrismaStringFieldUpdateOperationsInput;
|
|
695
986
|
description?: string | PrismaNullableStringFieldUpdateOperationsInput;
|
|
987
|
+
modelName?: string | PrismaStringFieldUpdateOperationsInput;
|
|
696
988
|
fileName?: string | PrismaStringFieldUpdateOperationsInput;
|
|
697
989
|
chunkSize?: number /* double */ | PrismaIntFieldUpdateOperationsInput;
|
|
698
990
|
}
|
|
@@ -700,7 +992,6 @@ declare namespace Components {
|
|
|
700
992
|
* From T, pick a set of properties whose keys are in the union K
|
|
701
993
|
*/
|
|
702
994
|
export interface PickPartialByPrismaOrgFileUpdateWithoutOrganizationInputOrgFileOptionalFieldsExcludeKeyofPartialByPrismaOrgFileUpdateWithoutOrganizationInputOrgFileOptionalFieldsOrgFileExcludedFields {
|
|
703
|
-
name?: string | PrismaStringFieldUpdateOperationsInput;
|
|
704
995
|
metadata?: PrismaNullableJsonNullValueInput | /**
|
|
705
996
|
* Matches any valid value that can be used as an input for operations like
|
|
706
997
|
* create and update as the value of a JSON field. Unlike \`JsonValue\`, this
|
|
@@ -713,9 +1004,10 @@ declare namespace Components {
|
|
|
713
1004
|
* NULL value instead.
|
|
714
1005
|
*/
|
|
715
1006
|
InputJsonValue;
|
|
1007
|
+
name?: string | PrismaStringFieldUpdateOperationsInput;
|
|
716
1008
|
description?: string | PrismaNullableStringFieldUpdateOperationsInput;
|
|
717
|
-
folderPath?: string | PrismaStringFieldUpdateOperationsInput;
|
|
718
1009
|
fileName?: string | PrismaStringFieldUpdateOperationsInput;
|
|
1010
|
+
folderPath?: string | PrismaStringFieldUpdateOperationsInput;
|
|
719
1011
|
}
|
|
720
1012
|
export interface PrismaBoolFieldUpdateOperationsInput {
|
|
721
1013
|
set?: boolean;
|
|
@@ -785,6 +1077,7 @@ declare namespace Components {
|
|
|
785
1077
|
id?: string;
|
|
786
1078
|
}
|
|
787
1079
|
export interface PrismaOrgFileCreateWithoutOrganizationInput {
|
|
1080
|
+
folderPath?: string;
|
|
788
1081
|
updatedAt?: string /* date-time */ | string;
|
|
789
1082
|
createdAt?: string /* date-time */ | string;
|
|
790
1083
|
metadata?: PrismaNullableJsonNullValueInput | /**
|
|
@@ -800,7 +1093,6 @@ declare namespace Components {
|
|
|
800
1093
|
*/
|
|
801
1094
|
InputJsonValue;
|
|
802
1095
|
fileName: string;
|
|
803
|
-
folderPath?: string;
|
|
804
1096
|
description?: string | null;
|
|
805
1097
|
name: string;
|
|
806
1098
|
id?: string;
|
|
@@ -808,6 +1100,18 @@ declare namespace Components {
|
|
|
808
1100
|
export interface PrismaStringFieldUpdateOperationsInput {
|
|
809
1101
|
set?: string;
|
|
810
1102
|
}
|
|
1103
|
+
export interface ProbeRequest {
|
|
1104
|
+
url: string;
|
|
1105
|
+
}
|
|
1106
|
+
export interface ProbeResponse {
|
|
1107
|
+
url: string;
|
|
1108
|
+
supportsOAuth: boolean;
|
|
1109
|
+
discoveryUrl?: string;
|
|
1110
|
+
authorizationEndpoint?: string;
|
|
1111
|
+
tokenEndpoint?: string;
|
|
1112
|
+
scopes?: string[];
|
|
1113
|
+
requiresStaticCredentials?: boolean;
|
|
1114
|
+
}
|
|
811
1115
|
export interface PublicChatRequest {
|
|
812
1116
|
behaviorId: string;
|
|
813
1117
|
message: string;
|
|
@@ -826,6 +1130,32 @@ declare namespace Components {
|
|
|
826
1130
|
export interface RecordStringAny {
|
|
827
1131
|
[name: string]: any;
|
|
828
1132
|
}
|
|
1133
|
+
export interface RequestPasswordResetRequest {
|
|
1134
|
+
email: string;
|
|
1135
|
+
otpCode?: string;
|
|
1136
|
+
}
|
|
1137
|
+
export interface RequestPasswordResetResponse {
|
|
1138
|
+
success: boolean;
|
|
1139
|
+
message: string;
|
|
1140
|
+
requires2FA?: boolean;
|
|
1141
|
+
}
|
|
1142
|
+
export interface ResetPasswordRequest {
|
|
1143
|
+
email: string;
|
|
1144
|
+
sharedSecret: string;
|
|
1145
|
+
newPassword: string;
|
|
1146
|
+
}
|
|
1147
|
+
export interface ResetPasswordResponse {
|
|
1148
|
+
success: boolean;
|
|
1149
|
+
message: string;
|
|
1150
|
+
}
|
|
1151
|
+
export interface RunChecksResponse {
|
|
1152
|
+
success: boolean;
|
|
1153
|
+
message: string;
|
|
1154
|
+
allPassed?: boolean;
|
|
1155
|
+
passedChecks?: any[];
|
|
1156
|
+
failedChecks?: any[];
|
|
1157
|
+
results?: any[];
|
|
1158
|
+
}
|
|
829
1159
|
export interface SecretPathsResponse {
|
|
830
1160
|
availablePaths: string[];
|
|
831
1161
|
secretName: string;
|
|
@@ -856,6 +1186,106 @@ declare namespace Components {
|
|
|
856
1186
|
jwt?: string;
|
|
857
1187
|
status: CliLoginSessionStatus;
|
|
858
1188
|
}
|
|
1189
|
+
export interface Setup2FARequest {
|
|
1190
|
+
otpCode: string;
|
|
1191
|
+
}
|
|
1192
|
+
export interface Setup2FAResponse {
|
|
1193
|
+
success: boolean;
|
|
1194
|
+
recoveryCodes: string[];
|
|
1195
|
+
}
|
|
1196
|
+
/**
|
|
1197
|
+
* Model TaskCheck
|
|
1198
|
+
* Represents a check that needs to be executed for a task
|
|
1199
|
+
*/
|
|
1200
|
+
export type TaskCheck = DefaultSelectionPrisma36TaskCheckPayload;
|
|
1201
|
+
export interface TaskCheckData {
|
|
1202
|
+
name: string;
|
|
1203
|
+
className: string;
|
|
1204
|
+
methodName: string;
|
|
1205
|
+
metadata?: any;
|
|
1206
|
+
}
|
|
1207
|
+
export interface TaskData {
|
|
1208
|
+
name: string;
|
|
1209
|
+
description?: string;
|
|
1210
|
+
parentId?: string;
|
|
1211
|
+
dependsOn?: string[];
|
|
1212
|
+
requireChecks?: boolean;
|
|
1213
|
+
checks?: TaskCheckData[];
|
|
1214
|
+
priority?: number; // double
|
|
1215
|
+
dueDate?: string; // date-time
|
|
1216
|
+
metadata?: any;
|
|
1217
|
+
}
|
|
1218
|
+
export interface TaskListResponse {
|
|
1219
|
+
tasks: /**
|
|
1220
|
+
* Model OrgUserTask
|
|
1221
|
+
* Represents a task assigned to an org user
|
|
1222
|
+
*/
|
|
1223
|
+
OrgUserTask[];
|
|
1224
|
+
total: number; // double
|
|
1225
|
+
}
|
|
1226
|
+
export type TaskState = N$16EnumsTaskState;
|
|
1227
|
+
/**
|
|
1228
|
+
* Model TaskTemplate
|
|
1229
|
+
* Template for creating sets of tasks
|
|
1230
|
+
*/
|
|
1231
|
+
export type TaskTemplate = DefaultSelectionPrisma36TaskTemplatePayload;
|
|
1232
|
+
export interface TaskTemplateCreateData {
|
|
1233
|
+
orgId: string;
|
|
1234
|
+
name: string;
|
|
1235
|
+
description?: string;
|
|
1236
|
+
tasks: TaskData[];
|
|
1237
|
+
metadata?: any;
|
|
1238
|
+
isDefault?: boolean;
|
|
1239
|
+
}
|
|
1240
|
+
export interface TaskTemplateUpdateData {
|
|
1241
|
+
name?: string;
|
|
1242
|
+
description?: string;
|
|
1243
|
+
tasks?: TaskData[];
|
|
1244
|
+
metadata?: any;
|
|
1245
|
+
isDefault?: boolean;
|
|
1246
|
+
}
|
|
1247
|
+
export interface TaskTemplateWithRelations {
|
|
1248
|
+
tasks: /**
|
|
1249
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
1250
|
+
* Matches any valid JSON value.
|
|
1251
|
+
*/
|
|
1252
|
+
JsonValue;
|
|
1253
|
+
orgId: string;
|
|
1254
|
+
isDefault: boolean;
|
|
1255
|
+
isActive: boolean;
|
|
1256
|
+
description: string;
|
|
1257
|
+
deletedAt: string; // date-time
|
|
1258
|
+
name: string;
|
|
1259
|
+
updatedAt: string; // date-time
|
|
1260
|
+
createdAt: string; // date-time
|
|
1261
|
+
metadata: /**
|
|
1262
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
1263
|
+
* Matches any valid JSON value.
|
|
1264
|
+
*/
|
|
1265
|
+
JsonValue;
|
|
1266
|
+
id: string;
|
|
1267
|
+
organization: {
|
|
1268
|
+
name: string;
|
|
1269
|
+
id: string;
|
|
1270
|
+
};
|
|
1271
|
+
createdTasks: {
|
|
1272
|
+
orgUser: {
|
|
1273
|
+
userId: string;
|
|
1274
|
+
};
|
|
1275
|
+
createdAt: string; // date-time
|
|
1276
|
+
state: string;
|
|
1277
|
+
name: string;
|
|
1278
|
+
id: string;
|
|
1279
|
+
}[];
|
|
1280
|
+
}
|
|
1281
|
+
export interface TemplateListResponse {
|
|
1282
|
+
templates: /**
|
|
1283
|
+
* Model TaskTemplate
|
|
1284
|
+
* Template for creating sets of tasks
|
|
1285
|
+
*/
|
|
1286
|
+
TaskTemplate[];
|
|
1287
|
+
total: number; // double
|
|
1288
|
+
}
|
|
859
1289
|
export interface Tool {
|
|
860
1290
|
type: "function";
|
|
861
1291
|
function: {
|
|
@@ -899,6 +1329,7 @@ declare namespace Components {
|
|
|
899
1329
|
env?: any;
|
|
900
1330
|
url?: string;
|
|
901
1331
|
secretMapping?: any;
|
|
1332
|
+
authConfig?: any;
|
|
902
1333
|
enabled?: boolean;
|
|
903
1334
|
onConnectServiceId?: string;
|
|
904
1335
|
}
|
|
@@ -961,6 +1392,7 @@ declare namespace Components {
|
|
|
961
1392
|
secretMapping?: any;
|
|
962
1393
|
enabled?: boolean;
|
|
963
1394
|
onConnectServiceId?: string;
|
|
1395
|
+
authConfig?: /* Discriminated union of all auth config types */ McpAuthConfig;
|
|
964
1396
|
}
|
|
965
1397
|
export interface UpdateSecretRequest {
|
|
966
1398
|
value: string;
|
|
@@ -982,6 +1414,10 @@ declare namespace Components {
|
|
|
982
1414
|
createdAt: string; // date-time
|
|
983
1415
|
updatedAt: string; // date-time
|
|
984
1416
|
}
|
|
1417
|
+
export interface Verify2FARequest {
|
|
1418
|
+
otpCode?: string;
|
|
1419
|
+
recoveryCode?: string;
|
|
1420
|
+
}
|
|
985
1421
|
export interface VideoParse {
|
|
986
1422
|
frame: {
|
|
987
1423
|
timestamp: number; // double
|
|
@@ -991,6 +1427,7 @@ declare namespace Components {
|
|
|
991
1427
|
};
|
|
992
1428
|
transcription: string;
|
|
993
1429
|
}
|
|
1430
|
+
export type WaitlistStatus = N$16EnumsWaitlistStatus;
|
|
994
1431
|
}
|
|
995
1432
|
}
|
|
996
1433
|
declare namespace Paths {
|
|
@@ -1003,6 +1440,19 @@ declare namespace Paths {
|
|
|
1003
1440
|
}
|
|
1004
1441
|
}
|
|
1005
1442
|
}
|
|
1443
|
+
namespace AddComment {
|
|
1444
|
+
namespace Parameters {
|
|
1445
|
+
export type Id = string;
|
|
1446
|
+
}
|
|
1447
|
+
export interface PathParameters {
|
|
1448
|
+
id: Parameters.Id;
|
|
1449
|
+
}
|
|
1450
|
+
export type RequestBody = Components.Schemas.AddCommentRequest;
|
|
1451
|
+
namespace Responses {
|
|
1452
|
+
export interface $204 {
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1006
1456
|
namespace AddEmbeddingSource {
|
|
1007
1457
|
namespace Parameters {
|
|
1008
1458
|
export type Id = string;
|
|
@@ -1046,6 +1496,53 @@ declare namespace Paths {
|
|
|
1046
1496
|
}
|
|
1047
1497
|
}
|
|
1048
1498
|
}
|
|
1499
|
+
namespace ApproveWaitlist {
|
|
1500
|
+
namespace Parameters {
|
|
1501
|
+
export type WaitlistId = string;
|
|
1502
|
+
}
|
|
1503
|
+
export interface PathParameters {
|
|
1504
|
+
waitlistId: Parameters.WaitlistId;
|
|
1505
|
+
}
|
|
1506
|
+
namespace Responses {
|
|
1507
|
+
export interface $200 {
|
|
1508
|
+
message: string;
|
|
1509
|
+
}
|
|
1510
|
+
}
|
|
1511
|
+
}
|
|
1512
|
+
namespace ChangePassword {
|
|
1513
|
+
export interface RequestBody {
|
|
1514
|
+
newPassword: string;
|
|
1515
|
+
currentPassword: string;
|
|
1516
|
+
}
|
|
1517
|
+
namespace Responses {
|
|
1518
|
+
export interface $200 {
|
|
1519
|
+
message: string;
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1523
|
+
namespace CheckAuthStatus {
|
|
1524
|
+
namespace Parameters {
|
|
1525
|
+
export type SecretName = string;
|
|
1526
|
+
export type SecretType = "org" | "user";
|
|
1527
|
+
}
|
|
1528
|
+
export interface PathParameters {
|
|
1529
|
+
secretName: Parameters.SecretName;
|
|
1530
|
+
}
|
|
1531
|
+
export interface QueryParameters {
|
|
1532
|
+
secretType: Parameters.SecretType;
|
|
1533
|
+
}
|
|
1534
|
+
namespace Responses {
|
|
1535
|
+
export type $200 = Components.Schemas.AuthStatusResponse;
|
|
1536
|
+
}
|
|
1537
|
+
}
|
|
1538
|
+
namespace CheckAvailability {
|
|
1539
|
+
namespace Responses {
|
|
1540
|
+
export interface $200 {
|
|
1541
|
+
waitlistEnabled: boolean;
|
|
1542
|
+
remainingSpots: number; // double
|
|
1543
|
+
}
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1049
1546
|
namespace CleanupSessions {
|
|
1050
1547
|
namespace Responses {
|
|
1051
1548
|
export interface $200 {
|
|
@@ -1066,14 +1563,14 @@ declare namespace Paths {
|
|
|
1066
1563
|
externalId: string;
|
|
1067
1564
|
serviceId: string;
|
|
1068
1565
|
organizationId: string;
|
|
1566
|
+
deletedAt: string; // date-time
|
|
1567
|
+
updatedAt: string; // date-time
|
|
1568
|
+
createdAt: string; // date-time
|
|
1069
1569
|
metadata: /**
|
|
1070
1570
|
* From https://github.com/sindresorhus/type-fest/
|
|
1071
1571
|
* Matches any valid JSON value.
|
|
1072
1572
|
*/
|
|
1073
1573
|
Components.Schemas.JsonValue;
|
|
1074
|
-
deletedAt: string; // date-time
|
|
1075
|
-
updatedAt: string; // date-time
|
|
1076
|
-
createdAt: string; // date-time
|
|
1077
1574
|
id: string;
|
|
1078
1575
|
};
|
|
1079
1576
|
ok: boolean;
|
|
@@ -1092,14 +1589,14 @@ declare namespace Paths {
|
|
|
1092
1589
|
externalId: string;
|
|
1093
1590
|
serviceId: string;
|
|
1094
1591
|
organizationId: string;
|
|
1592
|
+
deletedAt: string; // date-time
|
|
1593
|
+
updatedAt: string; // date-time
|
|
1594
|
+
createdAt: string; // date-time
|
|
1095
1595
|
metadata: /**
|
|
1096
1596
|
* From https://github.com/sindresorhus/type-fest/
|
|
1097
1597
|
* Matches any valid JSON value.
|
|
1098
1598
|
*/
|
|
1099
1599
|
Components.Schemas.JsonValue;
|
|
1100
|
-
deletedAt: string; // date-time
|
|
1101
|
-
updatedAt: string; // date-time
|
|
1102
|
-
createdAt: string; // date-time
|
|
1103
1600
|
id: string;
|
|
1104
1601
|
};
|
|
1105
1602
|
ok: boolean;
|
|
@@ -1162,17 +1659,17 @@ declare namespace Paths {
|
|
|
1162
1659
|
export interface $200 {
|
|
1163
1660
|
chunkSize: number; // double
|
|
1164
1661
|
fileName: string;
|
|
1165
|
-
description: string;
|
|
1166
1662
|
modelName: string;
|
|
1663
|
+
description: string;
|
|
1167
1664
|
organizationId: string;
|
|
1665
|
+
name: string;
|
|
1666
|
+
updatedAt: string; // date-time
|
|
1667
|
+
createdAt: string; // date-time
|
|
1168
1668
|
metadata: /**
|
|
1169
1669
|
* From https://github.com/sindresorhus/type-fest/
|
|
1170
1670
|
* Matches any valid JSON value.
|
|
1171
1671
|
*/
|
|
1172
1672
|
Components.Schemas.JsonValue;
|
|
1173
|
-
updatedAt: string; // date-time
|
|
1174
|
-
createdAt: string; // date-time
|
|
1175
|
-
name: string;
|
|
1176
1673
|
id: string;
|
|
1177
1674
|
}
|
|
1178
1675
|
}
|
|
@@ -1219,22 +1716,23 @@ declare namespace Paths {
|
|
|
1219
1716
|
}
|
|
1220
1717
|
namespace Responses {
|
|
1221
1718
|
export interface $200 {
|
|
1719
|
+
coversUserExpenses: boolean;
|
|
1222
1720
|
billingEmail: string;
|
|
1223
1721
|
domain: string;
|
|
1224
|
-
stripeCustomerId: string;
|
|
1225
|
-
autoReloadAmount: number; // double
|
|
1226
1722
|
autoReloadThreshold: number; // double
|
|
1227
1723
|
autoReloadEnabled: boolean;
|
|
1724
|
+
autoReloadAmount: number; // double
|
|
1725
|
+
stripeCustomerId: string;
|
|
1228
1726
|
creditsUsd: number; // double
|
|
1727
|
+
deletedAt: string; // date-time
|
|
1728
|
+
name: string;
|
|
1729
|
+
updatedAt: string; // date-time
|
|
1730
|
+
createdAt: string; // date-time
|
|
1229
1731
|
metadata: /**
|
|
1230
1732
|
* From https://github.com/sindresorhus/type-fest/
|
|
1231
1733
|
* Matches any valid JSON value.
|
|
1232
1734
|
*/
|
|
1233
1735
|
Components.Schemas.JsonValue;
|
|
1234
|
-
deletedAt: string; // date-time
|
|
1235
|
-
updatedAt: string; // date-time
|
|
1236
|
-
createdAt: string; // date-time
|
|
1237
|
-
name: string;
|
|
1238
1736
|
id: string;
|
|
1239
1737
|
}
|
|
1240
1738
|
}
|
|
@@ -1260,6 +1758,44 @@ declare namespace Paths {
|
|
|
1260
1758
|
export type $200 = /* Model OrgUserChatSession */ Components.Schemas.OrgUserChatSession;
|
|
1261
1759
|
}
|
|
1262
1760
|
}
|
|
1761
|
+
namespace CreateTask {
|
|
1762
|
+
export type RequestBody = Components.Schemas.OrgUserTaskCreateData;
|
|
1763
|
+
namespace Responses {
|
|
1764
|
+
export type $200 = /**
|
|
1765
|
+
* Model OrgUserTask
|
|
1766
|
+
* Represents a task assigned to an org user
|
|
1767
|
+
*/
|
|
1768
|
+
Components.Schemas.OrgUserTask;
|
|
1769
|
+
}
|
|
1770
|
+
}
|
|
1771
|
+
namespace CreateTasks {
|
|
1772
|
+
namespace Parameters {
|
|
1773
|
+
export type Id = string;
|
|
1774
|
+
}
|
|
1775
|
+
export interface PathParameters {
|
|
1776
|
+
id: Parameters.Id;
|
|
1777
|
+
}
|
|
1778
|
+
export type RequestBody = Components.Schemas.CreateTasksRequest;
|
|
1779
|
+
namespace Responses {
|
|
1780
|
+
export type $200 = Components.Schemas.CreateTasksResponse;
|
|
1781
|
+
export interface $400 {
|
|
1782
|
+
error: string;
|
|
1783
|
+
}
|
|
1784
|
+
export interface $404 {
|
|
1785
|
+
error: string;
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1788
|
+
}
|
|
1789
|
+
namespace CreateTemplate {
|
|
1790
|
+
export type RequestBody = Components.Schemas.TaskTemplateCreateData;
|
|
1791
|
+
namespace Responses {
|
|
1792
|
+
export type $200 = /**
|
|
1793
|
+
* Model TaskTemplate
|
|
1794
|
+
* Template for creating sets of tasks
|
|
1795
|
+
*/
|
|
1796
|
+
Components.Schemas.TaskTemplate;
|
|
1797
|
+
}
|
|
1798
|
+
}
|
|
1263
1799
|
namespace CreateUserSecret {
|
|
1264
1800
|
export type RequestBody = Components.Schemas.CreateSecretRequest;
|
|
1265
1801
|
namespace Responses {
|
|
@@ -1292,6 +1828,20 @@ declare namespace Paths {
|
|
|
1292
1828
|
}
|
|
1293
1829
|
}
|
|
1294
1830
|
}
|
|
1831
|
+
namespace DeleteComment {
|
|
1832
|
+
namespace Parameters {
|
|
1833
|
+
export type CommentId = string;
|
|
1834
|
+
export type Id = string;
|
|
1835
|
+
}
|
|
1836
|
+
export interface PathParameters {
|
|
1837
|
+
id: Parameters.Id;
|
|
1838
|
+
commentId: Parameters.CommentId;
|
|
1839
|
+
}
|
|
1840
|
+
namespace Responses {
|
|
1841
|
+
export interface $204 {
|
|
1842
|
+
}
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1295
1845
|
namespace DeleteEmbeddingEntryById {
|
|
1296
1846
|
namespace Parameters {
|
|
1297
1847
|
export type Id = string;
|
|
@@ -1428,6 +1978,30 @@ declare namespace Paths {
|
|
|
1428
1978
|
}
|
|
1429
1979
|
}
|
|
1430
1980
|
}
|
|
1981
|
+
namespace DeleteTask {
|
|
1982
|
+
namespace Parameters {
|
|
1983
|
+
export type Id = string;
|
|
1984
|
+
}
|
|
1985
|
+
export interface PathParameters {
|
|
1986
|
+
id: Parameters.Id;
|
|
1987
|
+
}
|
|
1988
|
+
namespace Responses {
|
|
1989
|
+
export interface $204 {
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
namespace DeleteTemplate {
|
|
1994
|
+
namespace Parameters {
|
|
1995
|
+
export type Id = string;
|
|
1996
|
+
}
|
|
1997
|
+
export interface PathParameters {
|
|
1998
|
+
id: Parameters.Id;
|
|
1999
|
+
}
|
|
2000
|
+
namespace Responses {
|
|
2001
|
+
export interface $204 {
|
|
2002
|
+
}
|
|
2003
|
+
}
|
|
2004
|
+
}
|
|
1431
2005
|
namespace DeleteUserPaymentMethod {
|
|
1432
2006
|
namespace Parameters {
|
|
1433
2007
|
export type PaymentMethodId = string;
|
|
@@ -1453,6 +2027,19 @@ declare namespace Paths {
|
|
|
1453
2027
|
}
|
|
1454
2028
|
}
|
|
1455
2029
|
}
|
|
2030
|
+
namespace DeleteWaitlist {
|
|
2031
|
+
namespace Parameters {
|
|
2032
|
+
export type WaitlistId = string;
|
|
2033
|
+
}
|
|
2034
|
+
export interface PathParameters {
|
|
2035
|
+
waitlistId: Parameters.WaitlistId;
|
|
2036
|
+
}
|
|
2037
|
+
namespace Responses {
|
|
2038
|
+
export interface $200 {
|
|
2039
|
+
message: string;
|
|
2040
|
+
}
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
1456
2043
|
namespace DenySession {
|
|
1457
2044
|
namespace Parameters {
|
|
1458
2045
|
export type SessionId = string;
|
|
@@ -1470,6 +2057,32 @@ declare namespace Paths {
|
|
|
1470
2057
|
}
|
|
1471
2058
|
}
|
|
1472
2059
|
}
|
|
2060
|
+
namespace Disable2FA {
|
|
2061
|
+
export type RequestBody = Components.Schemas.ElevationRequest;
|
|
2062
|
+
namespace Responses {
|
|
2063
|
+
export interface $200 {
|
|
2064
|
+
success: boolean;
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
}
|
|
2068
|
+
namespace Generate2FA {
|
|
2069
|
+
namespace Responses {
|
|
2070
|
+
export type $200 = Components.Schemas.Generate2FAResponse;
|
|
2071
|
+
}
|
|
2072
|
+
}
|
|
2073
|
+
namespace GenerateReferralCode {
|
|
2074
|
+
namespace Responses {
|
|
2075
|
+
export interface $200 {
|
|
2076
|
+
message: string;
|
|
2077
|
+
referralCode: string;
|
|
2078
|
+
}
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2081
|
+
namespace Get2FAStatus {
|
|
2082
|
+
namespace Responses {
|
|
2083
|
+
export type $200 = Components.Schemas.Get2FAStatusResponse;
|
|
2084
|
+
}
|
|
2085
|
+
}
|
|
1473
2086
|
namespace GetAllEmbeddingEntries {
|
|
1474
2087
|
namespace Parameters {
|
|
1475
2088
|
export type Id = string;
|
|
@@ -1491,8 +2104,9 @@ declare namespace Paths {
|
|
|
1491
2104
|
namespace GetAllUsages {
|
|
1492
2105
|
namespace Responses {
|
|
1493
2106
|
export type $200 = {
|
|
1494
|
-
|
|
2107
|
+
fundedFrom: string;
|
|
1495
2108
|
attribution: string;
|
|
2109
|
+
usageDate: string; // date-time
|
|
1496
2110
|
totalUsdCost: number; // double
|
|
1497
2111
|
modelName: string;
|
|
1498
2112
|
providerName: string;
|
|
@@ -1530,8 +2144,8 @@ declare namespace Paths {
|
|
|
1530
2144
|
namespace Responses {
|
|
1531
2145
|
export type $200 = {
|
|
1532
2146
|
tasks?: {
|
|
1533
|
-
orgMessageId: string;
|
|
1534
2147
|
publicChatMessageId: string;
|
|
2148
|
+
orgMessageId: string;
|
|
1535
2149
|
orgUserChatMessageId: string;
|
|
1536
2150
|
inProgress: boolean;
|
|
1537
2151
|
threads: /**
|
|
@@ -1566,83 +2180,124 @@ declare namespace Paths {
|
|
|
1566
2180
|
namespace GetCurrentLoggedInUser {
|
|
1567
2181
|
namespace Responses {
|
|
1568
2182
|
export interface $200 {
|
|
2183
|
+
scopes: string[];
|
|
1569
2184
|
orgUser: {
|
|
1570
2185
|
organizationId: string;
|
|
1571
2186
|
role: number; // double
|
|
1572
2187
|
userId: string;
|
|
1573
2188
|
creditsUsd: number; // double
|
|
2189
|
+
deletedAt: string; // date-time
|
|
2190
|
+
updatedAt: string; // date-time
|
|
2191
|
+
createdAt: string; // date-time
|
|
1574
2192
|
metadata: /**
|
|
1575
2193
|
* From https://github.com/sindresorhus/type-fest/
|
|
1576
2194
|
* Matches any valid JSON value.
|
|
1577
2195
|
*/
|
|
1578
2196
|
Components.Schemas.JsonValue;
|
|
1579
|
-
deletedAt: string; // date-time
|
|
1580
|
-
updatedAt: string; // date-time
|
|
1581
|
-
createdAt: string; // date-time
|
|
1582
2197
|
id: string;
|
|
1583
2198
|
};
|
|
1584
2199
|
orgId: string;
|
|
1585
2200
|
user: {
|
|
1586
2201
|
orgs: {
|
|
1587
2202
|
organization: {
|
|
2203
|
+
coversUserExpenses: boolean;
|
|
1588
2204
|
billingEmail: string;
|
|
1589
2205
|
domain: string;
|
|
1590
|
-
stripeCustomerId: string;
|
|
1591
|
-
autoReloadAmount: number; // double
|
|
1592
2206
|
autoReloadThreshold: number; // double
|
|
1593
2207
|
autoReloadEnabled: boolean;
|
|
2208
|
+
autoReloadAmount: number; // double
|
|
2209
|
+
stripeCustomerId: string;
|
|
1594
2210
|
creditsUsd: number; // double
|
|
2211
|
+
deletedAt: string; // date-time
|
|
2212
|
+
name: string;
|
|
2213
|
+
updatedAt: string; // date-time
|
|
2214
|
+
createdAt: string; // date-time
|
|
1595
2215
|
metadata: /**
|
|
1596
2216
|
* From https://github.com/sindresorhus/type-fest/
|
|
1597
2217
|
* Matches any valid JSON value.
|
|
1598
2218
|
*/
|
|
1599
2219
|
Components.Schemas.JsonValue;
|
|
1600
|
-
deletedAt: string; // date-time
|
|
1601
|
-
updatedAt: string; // date-time
|
|
1602
|
-
createdAt: string; // date-time
|
|
1603
|
-
name: string;
|
|
1604
2220
|
id: string;
|
|
1605
2221
|
};
|
|
1606
2222
|
organizationId: string;
|
|
1607
2223
|
role: number; // double
|
|
1608
2224
|
userId: string;
|
|
1609
2225
|
creditsUsd: number; // double
|
|
2226
|
+
deletedAt: string; // date-time
|
|
2227
|
+
updatedAt: string; // date-time
|
|
2228
|
+
createdAt: string; // date-time
|
|
1610
2229
|
metadata: /**
|
|
1611
2230
|
* From https://github.com/sindresorhus/type-fest/
|
|
1612
2231
|
* Matches any valid JSON value.
|
|
1613
2232
|
*/
|
|
1614
2233
|
Components.Schemas.JsonValue;
|
|
1615
|
-
deletedAt: string; // date-time
|
|
1616
|
-
updatedAt: string; // date-time
|
|
1617
|
-
createdAt: string; // date-time
|
|
1618
2234
|
id: string;
|
|
1619
2235
|
}[];
|
|
1620
|
-
stripeCustomerId: string;
|
|
1621
|
-
autoReloadAmount: number; // double
|
|
1622
2236
|
autoReloadThreshold: number; // double
|
|
1623
2237
|
autoReloadEnabled: boolean;
|
|
2238
|
+
autoReloadAmount: number; // double
|
|
2239
|
+
stripeCustomerId: string;
|
|
2240
|
+
emailVerifiedAt: string; // date-time
|
|
2241
|
+
emailVerified: boolean;
|
|
1624
2242
|
creditsUsd: number; // double
|
|
2243
|
+
confirmedAt: string; // date-time
|
|
2244
|
+
isAdmin: boolean;
|
|
2245
|
+
confirmed: boolean;
|
|
2246
|
+
deletedAt: string; // date-time
|
|
2247
|
+
lastLogin: string; // date-time
|
|
2248
|
+
passwordHash: string;
|
|
2249
|
+
name: string;
|
|
2250
|
+
updatedAt: string; // date-time
|
|
2251
|
+
createdAt: string; // date-time
|
|
1625
2252
|
metadata: /**
|
|
1626
2253
|
* From https://github.com/sindresorhus/type-fest/
|
|
1627
2254
|
* Matches any valid JSON value.
|
|
1628
2255
|
*/
|
|
1629
2256
|
Components.Schemas.JsonValue;
|
|
1630
|
-
deletedAt: string; // date-time
|
|
1631
|
-
updatedAt: string; // date-time
|
|
1632
|
-
createdAt: string; // date-time
|
|
1633
|
-
confirmedAt: string; // date-time
|
|
1634
|
-
confirmed: boolean;
|
|
1635
|
-
emailVerifiedAt: string; // date-time
|
|
1636
|
-
emailVerified: boolean;
|
|
1637
|
-
name: string;
|
|
1638
|
-
lastLogin: string; // date-time
|
|
1639
|
-
passwordHash: string;
|
|
1640
2257
|
email: string;
|
|
1641
2258
|
id: string;
|
|
1642
2259
|
};
|
|
1643
2260
|
}
|
|
1644
2261
|
}
|
|
1645
2262
|
}
|
|
2263
|
+
namespace GetDefaultOnboardingTemplate {
|
|
2264
|
+
namespace Responses {
|
|
2265
|
+
export type $200 = {
|
|
2266
|
+
tasks: /**
|
|
2267
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
2268
|
+
* Matches any valid JSON value.
|
|
2269
|
+
*/
|
|
2270
|
+
Components.Schemas.JsonValue;
|
|
2271
|
+
orgId: string;
|
|
2272
|
+
isDefault: boolean;
|
|
2273
|
+
isActive: boolean;
|
|
2274
|
+
description: string;
|
|
2275
|
+
deletedAt: string; // date-time
|
|
2276
|
+
name: string;
|
|
2277
|
+
updatedAt: string; // date-time
|
|
2278
|
+
createdAt: string; // date-time
|
|
2279
|
+
metadata: /**
|
|
2280
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
2281
|
+
* Matches any valid JSON value.
|
|
2282
|
+
*/
|
|
2283
|
+
Components.Schemas.JsonValue;
|
|
2284
|
+
id: string;
|
|
2285
|
+
organization: {
|
|
2286
|
+
name: string;
|
|
2287
|
+
id: string;
|
|
2288
|
+
};
|
|
2289
|
+
createdTasks: {
|
|
2290
|
+
orgUser: {
|
|
2291
|
+
userId: string;
|
|
2292
|
+
};
|
|
2293
|
+
createdAt: string; // date-time
|
|
2294
|
+
state: string;
|
|
2295
|
+
name: string;
|
|
2296
|
+
id: string;
|
|
2297
|
+
}[];
|
|
2298
|
+
} | null;
|
|
2299
|
+
}
|
|
2300
|
+
}
|
|
1646
2301
|
namespace GetDetailedHealth {
|
|
1647
2302
|
namespace Responses {
|
|
1648
2303
|
export type $200 = Components.Schemas.HealthCheckResponse;
|
|
@@ -1813,22 +2468,23 @@ declare namespace Paths {
|
|
|
1813
2468
|
namespace Responses {
|
|
1814
2469
|
export type $200 = {
|
|
1815
2470
|
organization: {
|
|
2471
|
+
coversUserExpenses: boolean;
|
|
1816
2472
|
billingEmail: string;
|
|
1817
2473
|
domain: string;
|
|
1818
|
-
stripeCustomerId: string;
|
|
1819
|
-
autoReloadAmount: number; // double
|
|
1820
2474
|
autoReloadThreshold: number; // double
|
|
1821
2475
|
autoReloadEnabled: boolean;
|
|
2476
|
+
autoReloadAmount: number; // double
|
|
2477
|
+
stripeCustomerId: string;
|
|
1822
2478
|
creditsUsd: number; // double
|
|
2479
|
+
deletedAt: string; // date-time
|
|
2480
|
+
name: string;
|
|
2481
|
+
updatedAt: string; // date-time
|
|
2482
|
+
createdAt: string; // date-time
|
|
1823
2483
|
metadata: /**
|
|
1824
2484
|
* From https://github.com/sindresorhus/type-fest/
|
|
1825
2485
|
* Matches any valid JSON value.
|
|
1826
2486
|
*/
|
|
1827
2487
|
Components.Schemas.JsonValue;
|
|
1828
|
-
deletedAt: string; // date-time
|
|
1829
|
-
updatedAt: string; // date-time
|
|
1830
|
-
createdAt: string; // date-time
|
|
1831
|
-
name: string;
|
|
1832
2488
|
id: string;
|
|
1833
2489
|
};
|
|
1834
2490
|
expiresAt: string; // date-time
|
|
@@ -1888,29 +2544,14 @@ declare namespace Paths {
|
|
|
1888
2544
|
content: string;
|
|
1889
2545
|
orgBehaviorId: string;
|
|
1890
2546
|
orgServiceId: string;
|
|
2547
|
+
updatedAt: string; // date-time
|
|
2548
|
+
createdAt: string; // date-time
|
|
1891
2549
|
metadata: /**
|
|
1892
2550
|
* From https://github.com/sindresorhus/type-fest/
|
|
1893
2551
|
* Matches any valid JSON value.
|
|
1894
2552
|
*/
|
|
1895
2553
|
Components.Schemas.JsonValue;
|
|
1896
|
-
updatedAt: string; // date-time
|
|
1897
|
-
createdAt: string; // date-time
|
|
1898
2554
|
id: string;
|
|
1899
|
-
orgAgentTask: {
|
|
1900
|
-
orgMessageId: string;
|
|
1901
|
-
publicChatMessageId: string;
|
|
1902
|
-
orgUserChatMessageId: string;
|
|
1903
|
-
inProgress: boolean;
|
|
1904
|
-
threads: /**
|
|
1905
|
-
* From https://github.com/sindresorhus/type-fest/
|
|
1906
|
-
* Matches any valid JSON value.
|
|
1907
|
-
*/
|
|
1908
|
-
Components.Schemas.JsonValue;
|
|
1909
|
-
totalUsdCost: number; // double
|
|
1910
|
-
updatedAt: string; // date-time
|
|
1911
|
-
createdAt: string; // date-time
|
|
1912
|
-
id: string;
|
|
1913
|
-
}[];
|
|
1914
2555
|
orgBehavior: {
|
|
1915
2556
|
toolsDisabled: boolean;
|
|
1916
2557
|
sponsoredDailySpendLimit: number; // double
|
|
@@ -1928,34 +2569,49 @@ declare namespace Paths {
|
|
|
1928
2569
|
description: string;
|
|
1929
2570
|
organizationId: string;
|
|
1930
2571
|
orgWorkers: string;
|
|
2572
|
+
name: string;
|
|
1931
2573
|
updatedAt: string; // date-time
|
|
1932
2574
|
createdAt: string; // date-time
|
|
1933
|
-
name: string;
|
|
1934
2575
|
id: string;
|
|
1935
2576
|
};
|
|
2577
|
+
orgAgentTask: {
|
|
2578
|
+
publicChatMessageId: string;
|
|
2579
|
+
orgMessageId: string;
|
|
2580
|
+
orgUserChatMessageId: string;
|
|
2581
|
+
inProgress: boolean;
|
|
2582
|
+
threads: /**
|
|
2583
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
2584
|
+
* Matches any valid JSON value.
|
|
2585
|
+
*/
|
|
2586
|
+
Components.Schemas.JsonValue;
|
|
2587
|
+
totalUsdCost: number; // double
|
|
2588
|
+
updatedAt: string; // date-time
|
|
2589
|
+
createdAt: string; // date-time
|
|
2590
|
+
id: string;
|
|
2591
|
+
}[];
|
|
1936
2592
|
orgService: {
|
|
1937
2593
|
service: {
|
|
2594
|
+
name: string;
|
|
2595
|
+
updatedAt: string; // date-time
|
|
2596
|
+
createdAt: string; // date-time
|
|
1938
2597
|
metadata: /**
|
|
1939
2598
|
* From https://github.com/sindresorhus/type-fest/
|
|
1940
2599
|
* Matches any valid JSON value.
|
|
1941
2600
|
*/
|
|
1942
2601
|
Components.Schemas.JsonValue;
|
|
1943
|
-
updatedAt: string; // date-time
|
|
1944
|
-
createdAt: string; // date-time
|
|
1945
|
-
name: string;
|
|
1946
2602
|
id: string;
|
|
1947
2603
|
};
|
|
1948
2604
|
externalId: string;
|
|
1949
2605
|
serviceId: string;
|
|
1950
2606
|
organizationId: string;
|
|
2607
|
+
deletedAt: string; // date-time
|
|
2608
|
+
updatedAt: string; // date-time
|
|
2609
|
+
createdAt: string; // date-time
|
|
1951
2610
|
metadata: /**
|
|
1952
2611
|
* From https://github.com/sindresorhus/type-fest/
|
|
1953
2612
|
* Matches any valid JSON value.
|
|
1954
2613
|
*/
|
|
1955
2614
|
Components.Schemas.JsonValue;
|
|
1956
|
-
deletedAt: string; // date-time
|
|
1957
|
-
updatedAt: string; // date-time
|
|
1958
|
-
createdAt: string; // date-time
|
|
1959
2615
|
id: string;
|
|
1960
2616
|
};
|
|
1961
2617
|
organizationId: string;
|
|
@@ -1964,14 +2620,12 @@ declare namespace Paths {
|
|
|
1964
2620
|
}
|
|
1965
2621
|
namespace GetOrgMessages {
|
|
1966
2622
|
namespace Parameters {
|
|
1967
|
-
export type ChannelId = string;
|
|
1968
2623
|
export type Limit = number; // double
|
|
1969
2624
|
export type Offset = number; // double
|
|
1970
2625
|
export type OrgServiceId = string;
|
|
1971
2626
|
}
|
|
1972
2627
|
export interface QueryParameters {
|
|
1973
2628
|
orgServiceId?: Parameters.OrgServiceId;
|
|
1974
|
-
channelId?: Parameters.ChannelId;
|
|
1975
2629
|
limit?: Parameters.Limit /* double */;
|
|
1976
2630
|
offset?: Parameters.Offset /* double */;
|
|
1977
2631
|
}
|
|
@@ -1990,13 +2644,13 @@ declare namespace Paths {
|
|
|
1990
2644
|
content: string;
|
|
1991
2645
|
orgBehaviorId: string;
|
|
1992
2646
|
orgServiceId: string;
|
|
2647
|
+
updatedAt: string; // date-time
|
|
2648
|
+
createdAt: string; // date-time
|
|
1993
2649
|
metadata: /**
|
|
1994
2650
|
* From https://github.com/sindresorhus/type-fest/
|
|
1995
2651
|
* Matches any valid JSON value.
|
|
1996
2652
|
*/
|
|
1997
2653
|
Components.Schemas.JsonValue;
|
|
1998
|
-
updatedAt: string; // date-time
|
|
1999
|
-
createdAt: string; // date-time
|
|
2000
2654
|
id: string;
|
|
2001
2655
|
orgBehavior: {
|
|
2002
2656
|
toolsDisabled: boolean;
|
|
@@ -2015,34 +2669,34 @@ declare namespace Paths {
|
|
|
2015
2669
|
description: string;
|
|
2016
2670
|
organizationId: string;
|
|
2017
2671
|
orgWorkers: string;
|
|
2672
|
+
name: string;
|
|
2018
2673
|
updatedAt: string; // date-time
|
|
2019
2674
|
createdAt: string; // date-time
|
|
2020
|
-
name: string;
|
|
2021
2675
|
id: string;
|
|
2022
2676
|
};
|
|
2023
2677
|
orgService: {
|
|
2024
2678
|
service: {
|
|
2679
|
+
name: string;
|
|
2680
|
+
updatedAt: string; // date-time
|
|
2681
|
+
createdAt: string; // date-time
|
|
2025
2682
|
metadata: /**
|
|
2026
2683
|
* From https://github.com/sindresorhus/type-fest/
|
|
2027
2684
|
* Matches any valid JSON value.
|
|
2028
2685
|
*/
|
|
2029
2686
|
Components.Schemas.JsonValue;
|
|
2030
|
-
updatedAt: string; // date-time
|
|
2031
|
-
createdAt: string; // date-time
|
|
2032
|
-
name: string;
|
|
2033
2687
|
id: string;
|
|
2034
2688
|
};
|
|
2035
2689
|
externalId: string;
|
|
2036
2690
|
serviceId: string;
|
|
2037
2691
|
organizationId: string;
|
|
2692
|
+
deletedAt: string; // date-time
|
|
2693
|
+
updatedAt: string; // date-time
|
|
2694
|
+
createdAt: string; // date-time
|
|
2038
2695
|
metadata: /**
|
|
2039
2696
|
* From https://github.com/sindresorhus/type-fest/
|
|
2040
2697
|
* Matches any valid JSON value.
|
|
2041
2698
|
*/
|
|
2042
2699
|
Components.Schemas.JsonValue;
|
|
2043
|
-
deletedAt: string; // date-time
|
|
2044
|
-
updatedAt: string; // date-time
|
|
2045
|
-
createdAt: string; // date-time
|
|
2046
2700
|
id: string;
|
|
2047
2701
|
};
|
|
2048
2702
|
organizationId: string;
|
|
@@ -2058,13 +2712,13 @@ declare namespace Paths {
|
|
|
2058
2712
|
namespace Responses {
|
|
2059
2713
|
export interface $200 {
|
|
2060
2714
|
paymentMethods: {
|
|
2061
|
-
isDefault: boolean;
|
|
2062
2715
|
expiryYear: number; // double
|
|
2063
2716
|
expiryMonth: number; // double
|
|
2064
2717
|
brand: string;
|
|
2065
2718
|
last4: string;
|
|
2066
2719
|
stripePaymentMethodId: string;
|
|
2067
2720
|
type: string;
|
|
2721
|
+
isDefault: boolean;
|
|
2068
2722
|
organizationId: string;
|
|
2069
2723
|
id: string;
|
|
2070
2724
|
}[];
|
|
@@ -2091,27 +2745,27 @@ declare namespace Paths {
|
|
|
2091
2745
|
namespace Responses {
|
|
2092
2746
|
export type $200 = {
|
|
2093
2747
|
service: {
|
|
2748
|
+
name: string;
|
|
2749
|
+
updatedAt: string; // date-time
|
|
2750
|
+
createdAt: string; // date-time
|
|
2094
2751
|
metadata: /**
|
|
2095
2752
|
* From https://github.com/sindresorhus/type-fest/
|
|
2096
2753
|
* Matches any valid JSON value.
|
|
2097
2754
|
*/
|
|
2098
2755
|
Components.Schemas.JsonValue;
|
|
2099
|
-
updatedAt: string; // date-time
|
|
2100
|
-
createdAt: string; // date-time
|
|
2101
|
-
name: string;
|
|
2102
2756
|
id: string;
|
|
2103
2757
|
};
|
|
2104
2758
|
externalId: string;
|
|
2105
2759
|
serviceId: string;
|
|
2106
2760
|
organizationId: string;
|
|
2761
|
+
deletedAt: string; // date-time
|
|
2762
|
+
updatedAt: string; // date-time
|
|
2763
|
+
createdAt: string; // date-time
|
|
2107
2764
|
metadata: /**
|
|
2108
2765
|
* From https://github.com/sindresorhus/type-fest/
|
|
2109
2766
|
* Matches any valid JSON value.
|
|
2110
2767
|
*/
|
|
2111
2768
|
Components.Schemas.JsonValue;
|
|
2112
|
-
deletedAt: string; // date-time
|
|
2113
|
-
updatedAt: string; // date-time
|
|
2114
|
-
createdAt: string; // date-time
|
|
2115
2769
|
id: string;
|
|
2116
2770
|
}[];
|
|
2117
2771
|
}
|
|
@@ -2171,22 +2825,23 @@ declare namespace Paths {
|
|
|
2171
2825
|
namespace GetOrganizationsByUserId {
|
|
2172
2826
|
namespace Responses {
|
|
2173
2827
|
export type $200 = {
|
|
2828
|
+
coversUserExpenses: boolean;
|
|
2174
2829
|
billingEmail: string;
|
|
2175
2830
|
domain: string;
|
|
2176
|
-
stripeCustomerId: string;
|
|
2177
|
-
autoReloadAmount: number; // double
|
|
2178
2831
|
autoReloadThreshold: number; // double
|
|
2179
2832
|
autoReloadEnabled: boolean;
|
|
2833
|
+
autoReloadAmount: number; // double
|
|
2834
|
+
stripeCustomerId: string;
|
|
2180
2835
|
creditsUsd: number; // double
|
|
2836
|
+
deletedAt: string; // date-time
|
|
2837
|
+
name: string;
|
|
2838
|
+
updatedAt: string; // date-time
|
|
2839
|
+
createdAt: string; // date-time
|
|
2181
2840
|
metadata: /**
|
|
2182
2841
|
* From https://github.com/sindresorhus/type-fest/
|
|
2183
2842
|
* Matches any valid JSON value.
|
|
2184
2843
|
*/
|
|
2185
2844
|
Components.Schemas.JsonValue;
|
|
2186
|
-
deletedAt: string; // date-time
|
|
2187
|
-
updatedAt: string; // date-time
|
|
2188
|
-
createdAt: string; // date-time
|
|
2189
|
-
name: string;
|
|
2190
2845
|
id: string;
|
|
2191
2846
|
}[];
|
|
2192
2847
|
}
|
|
@@ -2195,22 +2850,23 @@ declare namespace Paths {
|
|
|
2195
2850
|
namespace Responses {
|
|
2196
2851
|
export type $200 = {
|
|
2197
2852
|
organization: {
|
|
2853
|
+
coversUserExpenses: boolean;
|
|
2198
2854
|
billingEmail: string;
|
|
2199
2855
|
domain: string;
|
|
2200
|
-
stripeCustomerId: string;
|
|
2201
|
-
autoReloadAmount: number; // double
|
|
2202
2856
|
autoReloadThreshold: number; // double
|
|
2203
2857
|
autoReloadEnabled: boolean;
|
|
2858
|
+
autoReloadAmount: number; // double
|
|
2859
|
+
stripeCustomerId: string;
|
|
2204
2860
|
creditsUsd: number; // double
|
|
2861
|
+
deletedAt: string; // date-time
|
|
2862
|
+
name: string;
|
|
2863
|
+
updatedAt: string; // date-time
|
|
2864
|
+
createdAt: string; // date-time
|
|
2205
2865
|
metadata: /**
|
|
2206
2866
|
* From https://github.com/sindresorhus/type-fest/
|
|
2207
2867
|
* Matches any valid JSON value.
|
|
2208
2868
|
*/
|
|
2209
2869
|
Components.Schemas.JsonValue;
|
|
2210
|
-
deletedAt: string; // date-time
|
|
2211
|
-
updatedAt: string; // date-time
|
|
2212
|
-
createdAt: string; // date-time
|
|
2213
|
-
name: string;
|
|
2214
2870
|
id: string;
|
|
2215
2871
|
};
|
|
2216
2872
|
expiresAt: string; // date-time
|
|
@@ -2247,6 +2903,14 @@ declare namespace Paths {
|
|
|
2247
2903
|
export type $503 = Components.Schemas.ReadinessResponse;
|
|
2248
2904
|
}
|
|
2249
2905
|
}
|
|
2906
|
+
namespace GetRemainingReferralCodes {
|
|
2907
|
+
namespace Responses {
|
|
2908
|
+
export interface $200 {
|
|
2909
|
+
limit: number; // double
|
|
2910
|
+
remaining: number; // double
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2913
|
+
}
|
|
2250
2914
|
namespace GetSessionStatus {
|
|
2251
2915
|
namespace Parameters {
|
|
2252
2916
|
export type SessionId = string;
|
|
@@ -2278,6 +2942,58 @@ declare namespace Paths {
|
|
|
2278
2942
|
}
|
|
2279
2943
|
}
|
|
2280
2944
|
}
|
|
2945
|
+
namespace GetTask {
|
|
2946
|
+
namespace Parameters {
|
|
2947
|
+
export type Id = string;
|
|
2948
|
+
}
|
|
2949
|
+
export interface PathParameters {
|
|
2950
|
+
id: Parameters.Id;
|
|
2951
|
+
}
|
|
2952
|
+
namespace Responses {
|
|
2953
|
+
export type $200 = Components.Schemas.OrgUserTaskWithRelations;
|
|
2954
|
+
}
|
|
2955
|
+
}
|
|
2956
|
+
namespace GetTasks {
|
|
2957
|
+
namespace Parameters {
|
|
2958
|
+
export type Limit = number; // double
|
|
2959
|
+
export type Offset = number; // double
|
|
2960
|
+
export type State = Components.Schemas.TaskState;
|
|
2961
|
+
}
|
|
2962
|
+
export interface QueryParameters {
|
|
2963
|
+
state?: Parameters.State;
|
|
2964
|
+
limit?: Parameters.Limit /* double */;
|
|
2965
|
+
offset?: Parameters.Offset /* double */;
|
|
2966
|
+
}
|
|
2967
|
+
namespace Responses {
|
|
2968
|
+
export type $200 = Components.Schemas.TaskListResponse;
|
|
2969
|
+
}
|
|
2970
|
+
}
|
|
2971
|
+
namespace GetTemplate {
|
|
2972
|
+
namespace Parameters {
|
|
2973
|
+
export type Id = string;
|
|
2974
|
+
}
|
|
2975
|
+
export interface PathParameters {
|
|
2976
|
+
id: Parameters.Id;
|
|
2977
|
+
}
|
|
2978
|
+
namespace Responses {
|
|
2979
|
+
export type $200 = Components.Schemas.TaskTemplateWithRelations;
|
|
2980
|
+
}
|
|
2981
|
+
}
|
|
2982
|
+
namespace GetTemplates {
|
|
2983
|
+
namespace Parameters {
|
|
2984
|
+
export type IncludeDefaults = boolean;
|
|
2985
|
+
export type Limit = number; // double
|
|
2986
|
+
export type Offset = number; // double
|
|
2987
|
+
}
|
|
2988
|
+
export interface QueryParameters {
|
|
2989
|
+
includeDefaults?: Parameters.IncludeDefaults;
|
|
2990
|
+
limit?: Parameters.Limit /* double */;
|
|
2991
|
+
offset?: Parameters.Offset /* double */;
|
|
2992
|
+
}
|
|
2993
|
+
namespace Responses {
|
|
2994
|
+
export type $200 = Components.Schemas.TemplateListResponse;
|
|
2995
|
+
}
|
|
2996
|
+
}
|
|
2281
2997
|
namespace GetTokenStatus {
|
|
2282
2998
|
namespace Responses {
|
|
2283
2999
|
export type $200 = {
|
|
@@ -2349,13 +3065,13 @@ declare namespace Paths {
|
|
|
2349
3065
|
namespace Responses {
|
|
2350
3066
|
export interface $200 {
|
|
2351
3067
|
paymentMethods: {
|
|
2352
|
-
isDefault: boolean;
|
|
2353
3068
|
expiryYear: number; // double
|
|
2354
3069
|
expiryMonth: number; // double
|
|
2355
3070
|
brand: string;
|
|
2356
3071
|
last4: string;
|
|
2357
3072
|
stripePaymentMethodId: string;
|
|
2358
3073
|
type: string;
|
|
3074
|
+
isDefault: boolean;
|
|
2359
3075
|
userId: string;
|
|
2360
3076
|
id: string;
|
|
2361
3077
|
}[];
|
|
@@ -2378,6 +3094,56 @@ declare namespace Paths {
|
|
|
2378
3094
|
export type $200 = Components.Schemas.SecretPathsResponse;
|
|
2379
3095
|
}
|
|
2380
3096
|
}
|
|
3097
|
+
namespace GetWaitlistByEmail {
|
|
3098
|
+
namespace Parameters {
|
|
3099
|
+
export type Email = string;
|
|
3100
|
+
}
|
|
3101
|
+
export interface PathParameters {
|
|
3102
|
+
email: Parameters.Email;
|
|
3103
|
+
}
|
|
3104
|
+
namespace Responses {
|
|
3105
|
+
export interface $200 {
|
|
3106
|
+
updatedAt: string; // date-time
|
|
3107
|
+
createdAt: string; // date-time
|
|
3108
|
+
metadata: /**
|
|
3109
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
3110
|
+
* Matches any valid JSON value.
|
|
3111
|
+
*/
|
|
3112
|
+
Components.Schemas.JsonValue;
|
|
3113
|
+
rejectedAt: string; // date-time
|
|
3114
|
+
approvedAt: string; // date-time
|
|
3115
|
+
requestedAt: string; // date-time
|
|
3116
|
+
status: Components.Schemas.N$16EnumsWaitlistStatus;
|
|
3117
|
+
email: string;
|
|
3118
|
+
id: string;
|
|
3119
|
+
}
|
|
3120
|
+
}
|
|
3121
|
+
}
|
|
3122
|
+
namespace GetWaitlistEntry {
|
|
3123
|
+
namespace Parameters {
|
|
3124
|
+
export type WaitlistId = string;
|
|
3125
|
+
}
|
|
3126
|
+
export interface PathParameters {
|
|
3127
|
+
waitlistId: Parameters.WaitlistId;
|
|
3128
|
+
}
|
|
3129
|
+
namespace Responses {
|
|
3130
|
+
export interface $200 {
|
|
3131
|
+
updatedAt: string; // date-time
|
|
3132
|
+
createdAt: string; // date-time
|
|
3133
|
+
metadata: /**
|
|
3134
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
3135
|
+
* Matches any valid JSON value.
|
|
3136
|
+
*/
|
|
3137
|
+
Components.Schemas.JsonValue;
|
|
3138
|
+
rejectedAt: string; // date-time
|
|
3139
|
+
approvedAt: string; // date-time
|
|
3140
|
+
requestedAt: string; // date-time
|
|
3141
|
+
status: Components.Schemas.N$16EnumsWaitlistStatus;
|
|
3142
|
+
email: string;
|
|
3143
|
+
id: string;
|
|
3144
|
+
}
|
|
3145
|
+
}
|
|
3146
|
+
}
|
|
2381
3147
|
namespace HandleGitHubEvent {
|
|
2382
3148
|
export type RequestBody = any;
|
|
2383
3149
|
namespace Responses {
|
|
@@ -2386,6 +3152,19 @@ declare namespace Paths {
|
|
|
2386
3152
|
}
|
|
2387
3153
|
}
|
|
2388
3154
|
}
|
|
3155
|
+
namespace HandleOAuthCallback {
|
|
3156
|
+
export interface RequestBody {
|
|
3157
|
+
state: string;
|
|
3158
|
+
code: string;
|
|
3159
|
+
}
|
|
3160
|
+
namespace Responses {
|
|
3161
|
+
export interface $200 {
|
|
3162
|
+
error?: string;
|
|
3163
|
+
message?: string;
|
|
3164
|
+
ok: boolean;
|
|
3165
|
+
}
|
|
3166
|
+
}
|
|
3167
|
+
}
|
|
2389
3168
|
namespace HandleSlackEvent {
|
|
2390
3169
|
export type RequestBody = any;
|
|
2391
3170
|
namespace Responses {
|
|
@@ -2408,6 +3187,12 @@ declare namespace Paths {
|
|
|
2408
3187
|
}
|
|
2409
3188
|
}
|
|
2410
3189
|
}
|
|
3190
|
+
namespace InitiateOAuthFlow {
|
|
3191
|
+
export type RequestBody = Components.Schemas.InitiateOAuthRequest;
|
|
3192
|
+
namespace Responses {
|
|
3193
|
+
export type $200 = Components.Schemas.InitiateOAuthResponse;
|
|
3194
|
+
}
|
|
3195
|
+
}
|
|
2411
3196
|
namespace InviteUser {
|
|
2412
3197
|
export interface RequestBody {
|
|
2413
3198
|
role: Components.Schemas.UserRole;
|
|
@@ -2426,6 +3211,17 @@ declare namespace Paths {
|
|
|
2426
3211
|
}
|
|
2427
3212
|
}
|
|
2428
3213
|
}
|
|
3214
|
+
namespace JoinWaitlist {
|
|
3215
|
+
export interface RequestBody {
|
|
3216
|
+
metadata?: any;
|
|
3217
|
+
email: string;
|
|
3218
|
+
}
|
|
3219
|
+
namespace Responses {
|
|
3220
|
+
export interface $201 {
|
|
3221
|
+
message: string;
|
|
3222
|
+
}
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
2429
3225
|
namespace ListOrgSecrets {
|
|
2430
3226
|
namespace Responses {
|
|
2431
3227
|
export type $200 = Components.Schemas.SecretResponse[];
|
|
@@ -2436,6 +3232,61 @@ declare namespace Paths {
|
|
|
2436
3232
|
export type $200 = Components.Schemas.UserSecretResponse[];
|
|
2437
3233
|
}
|
|
2438
3234
|
}
|
|
3235
|
+
namespace ListWaitlist {
|
|
3236
|
+
namespace Parameters {
|
|
3237
|
+
export type Limit = number; // double
|
|
3238
|
+
export type Offset = number; // double
|
|
3239
|
+
export type Status = Components.Schemas.WaitlistStatus;
|
|
3240
|
+
}
|
|
3241
|
+
export interface QueryParameters {
|
|
3242
|
+
status?: Parameters.Status;
|
|
3243
|
+
limit?: Parameters.Limit /* double */;
|
|
3244
|
+
offset?: Parameters.Offset /* double */;
|
|
3245
|
+
}
|
|
3246
|
+
namespace Responses {
|
|
3247
|
+
export interface $200 {
|
|
3248
|
+
offset: number; // double
|
|
3249
|
+
limit: number; // double
|
|
3250
|
+
total: number; // double
|
|
3251
|
+
entries: {
|
|
3252
|
+
updatedAt: string; // date-time
|
|
3253
|
+
createdAt: string; // date-time
|
|
3254
|
+
metadata: /**
|
|
3255
|
+
* From https://github.com/sindresorhus/type-fest/
|
|
3256
|
+
* Matches any valid JSON value.
|
|
3257
|
+
*/
|
|
3258
|
+
Components.Schemas.JsonValue;
|
|
3259
|
+
rejectedAt: string; // date-time
|
|
3260
|
+
approvedAt: string; // date-time
|
|
3261
|
+
requestedAt: string; // date-time
|
|
3262
|
+
status: Components.Schemas.N$16EnumsWaitlistStatus;
|
|
3263
|
+
email: string;
|
|
3264
|
+
id: string;
|
|
3265
|
+
}[];
|
|
3266
|
+
}
|
|
3267
|
+
}
|
|
3268
|
+
}
|
|
3269
|
+
namespace MarkCompleted {
|
|
3270
|
+
namespace Parameters {
|
|
3271
|
+
export type Id = string;
|
|
3272
|
+
}
|
|
3273
|
+
export interface PathParameters {
|
|
3274
|
+
id: Parameters.Id;
|
|
3275
|
+
}
|
|
3276
|
+
export type RequestBody = Components.Schemas.MarkCompletedRequest;
|
|
3277
|
+
namespace Responses {
|
|
3278
|
+
export type $200 = Components.Schemas.MarkCompletedResponse;
|
|
3279
|
+
export interface $400 {
|
|
3280
|
+
error: string;
|
|
3281
|
+
}
|
|
3282
|
+
export interface $403 {
|
|
3283
|
+
error: string;
|
|
3284
|
+
}
|
|
3285
|
+
export interface $404 {
|
|
3286
|
+
error: string;
|
|
3287
|
+
}
|
|
3288
|
+
}
|
|
3289
|
+
}
|
|
2439
3290
|
namespace MoveOrgFile {
|
|
2440
3291
|
namespace Parameters {
|
|
2441
3292
|
export type Id = string;
|
|
@@ -2467,6 +3318,12 @@ declare namespace Paths {
|
|
|
2467
3318
|
}
|
|
2468
3319
|
}
|
|
2469
3320
|
}
|
|
3321
|
+
namespace ProbeMcpServer {
|
|
3322
|
+
export type RequestBody = Components.Schemas.ProbeRequest;
|
|
3323
|
+
namespace Responses {
|
|
3324
|
+
export type $200 = Components.Schemas.ProbeResponse;
|
|
3325
|
+
}
|
|
3326
|
+
}
|
|
2470
3327
|
namespace ProxyChatCompletion {
|
|
2471
3328
|
export type RequestBody = /* Make all properties in T optional */ Components.Schemas.PartialCompletionOptions;
|
|
2472
3329
|
namespace Responses {
|
|
@@ -2523,9 +3380,21 @@ declare namespace Paths {
|
|
|
2523
3380
|
export type $200 = Components.Schemas.EmbeddingBaseAny[];
|
|
2524
3381
|
}
|
|
2525
3382
|
}
|
|
2526
|
-
namespace
|
|
2527
|
-
|
|
2528
|
-
|
|
3383
|
+
namespace RedeemReferralCode {
|
|
3384
|
+
export interface RequestBody {
|
|
3385
|
+
referralCode: string;
|
|
3386
|
+
email: string;
|
|
3387
|
+
}
|
|
3388
|
+
namespace Responses {
|
|
3389
|
+
export interface $200 {
|
|
3390
|
+
approved: boolean;
|
|
3391
|
+
message: string;
|
|
3392
|
+
}
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
namespace RefreshToken {
|
|
3396
|
+
namespace Responses {
|
|
3397
|
+
export type $200 = {
|
|
2529
3398
|
error?: any;
|
|
2530
3399
|
message: string;
|
|
2531
3400
|
ok: boolean;
|
|
@@ -2536,6 +3405,27 @@ declare namespace Paths {
|
|
|
2536
3405
|
};
|
|
2537
3406
|
}
|
|
2538
3407
|
}
|
|
3408
|
+
namespace RegenerateBackupCodes {
|
|
3409
|
+
export type RequestBody = Components.Schemas.ElevationRequest;
|
|
3410
|
+
namespace Responses {
|
|
3411
|
+
export interface $200 {
|
|
3412
|
+
recoveryCodes: string[];
|
|
3413
|
+
}
|
|
3414
|
+
}
|
|
3415
|
+
}
|
|
3416
|
+
namespace RejectWaitlist {
|
|
3417
|
+
namespace Parameters {
|
|
3418
|
+
export type WaitlistId = string;
|
|
3419
|
+
}
|
|
3420
|
+
export interface PathParameters {
|
|
3421
|
+
waitlistId: Parameters.WaitlistId;
|
|
3422
|
+
}
|
|
3423
|
+
namespace Responses {
|
|
3424
|
+
export interface $200 {
|
|
3425
|
+
message: string;
|
|
3426
|
+
}
|
|
3427
|
+
}
|
|
3428
|
+
}
|
|
2539
3429
|
namespace RemoveUserFromOrg {
|
|
2540
3430
|
namespace Parameters {
|
|
2541
3431
|
export type UserId = string;
|
|
@@ -2558,6 +3448,12 @@ declare namespace Paths {
|
|
|
2558
3448
|
}
|
|
2559
3449
|
}
|
|
2560
3450
|
}
|
|
3451
|
+
namespace RequestPasswordReset {
|
|
3452
|
+
export type RequestBody = Components.Schemas.RequestPasswordResetRequest;
|
|
3453
|
+
namespace Responses {
|
|
3454
|
+
export type $200 = Components.Schemas.RequestPasswordResetResponse;
|
|
3455
|
+
}
|
|
3456
|
+
}
|
|
2561
3457
|
namespace ResendVerificationEmail {
|
|
2562
3458
|
export interface RequestBody {
|
|
2563
3459
|
baseUrl?: string;
|
|
@@ -2568,6 +3464,32 @@ declare namespace Paths {
|
|
|
2568
3464
|
}
|
|
2569
3465
|
}
|
|
2570
3466
|
}
|
|
3467
|
+
namespace ResetPassword {
|
|
3468
|
+
export type RequestBody = Components.Schemas.ResetPasswordRequest;
|
|
3469
|
+
namespace Responses {
|
|
3470
|
+
export type $200 = Components.Schemas.ResetPasswordResponse;
|
|
3471
|
+
}
|
|
3472
|
+
}
|
|
3473
|
+
namespace RunChecks {
|
|
3474
|
+
namespace Parameters {
|
|
3475
|
+
export type Id = string;
|
|
3476
|
+
}
|
|
3477
|
+
export interface PathParameters {
|
|
3478
|
+
id: Parameters.Id;
|
|
3479
|
+
}
|
|
3480
|
+
namespace Responses {
|
|
3481
|
+
export type $200 = Components.Schemas.RunChecksResponse;
|
|
3482
|
+
export interface $400 {
|
|
3483
|
+
error: string;
|
|
3484
|
+
}
|
|
3485
|
+
export interface $403 {
|
|
3486
|
+
error: string;
|
|
3487
|
+
}
|
|
3488
|
+
export interface $404 {
|
|
3489
|
+
error: string;
|
|
3490
|
+
}
|
|
3491
|
+
}
|
|
3492
|
+
}
|
|
2571
3493
|
namespace SearchEmbeddingEntryById {
|
|
2572
3494
|
namespace Parameters {
|
|
2573
3495
|
export type Id = string;
|
|
@@ -2623,6 +3545,12 @@ declare namespace Paths {
|
|
|
2623
3545
|
}
|
|
2624
3546
|
}
|
|
2625
3547
|
}
|
|
3548
|
+
namespace Setup2FA {
|
|
3549
|
+
export type RequestBody = Components.Schemas.Setup2FARequest;
|
|
3550
|
+
namespace Responses {
|
|
3551
|
+
export type $200 = Components.Schemas.Setup2FAResponse;
|
|
3552
|
+
}
|
|
3553
|
+
}
|
|
2626
3554
|
namespace TestKnowhowTool {
|
|
2627
3555
|
export type RequestBody = Components.Schemas.ToolCallRequest;
|
|
2628
3556
|
namespace Responses {
|
|
@@ -2773,6 +3701,38 @@ declare namespace Paths {
|
|
|
2773
3701
|
Components.Schemas.Organization;
|
|
2774
3702
|
}
|
|
2775
3703
|
}
|
|
3704
|
+
namespace UpdateTask {
|
|
3705
|
+
namespace Parameters {
|
|
3706
|
+
export type Id = string;
|
|
3707
|
+
}
|
|
3708
|
+
export interface PathParameters {
|
|
3709
|
+
id: Parameters.Id;
|
|
3710
|
+
}
|
|
3711
|
+
export type RequestBody = Components.Schemas.OrgUserTaskUpdateData;
|
|
3712
|
+
namespace Responses {
|
|
3713
|
+
export type $200 = /**
|
|
3714
|
+
* Model OrgUserTask
|
|
3715
|
+
* Represents a task assigned to an org user
|
|
3716
|
+
*/
|
|
3717
|
+
Components.Schemas.OrgUserTask;
|
|
3718
|
+
}
|
|
3719
|
+
}
|
|
3720
|
+
namespace UpdateTemplate {
|
|
3721
|
+
namespace Parameters {
|
|
3722
|
+
export type Id = string;
|
|
3723
|
+
}
|
|
3724
|
+
export interface PathParameters {
|
|
3725
|
+
id: Parameters.Id;
|
|
3726
|
+
}
|
|
3727
|
+
export type RequestBody = Components.Schemas.TaskTemplateUpdateData;
|
|
3728
|
+
namespace Responses {
|
|
3729
|
+
export type $200 = /**
|
|
3730
|
+
* Model TaskTemplate
|
|
3731
|
+
* Template for creating sets of tasks
|
|
3732
|
+
*/
|
|
3733
|
+
Components.Schemas.TaskTemplate;
|
|
3734
|
+
}
|
|
3735
|
+
}
|
|
2776
3736
|
namespace UpdateUserSecret {
|
|
2777
3737
|
namespace Parameters {
|
|
2778
3738
|
export type Id = string;
|
|
@@ -2787,52 +3747,18 @@ declare namespace Paths {
|
|
|
2787
3747
|
}
|
|
2788
3748
|
namespace UserLogin {
|
|
2789
3749
|
export interface RequestBody {
|
|
3750
|
+
recoveryCode?: string;
|
|
3751
|
+
otpCode?: string;
|
|
3752
|
+
orgId?: string;
|
|
2790
3753
|
password: string;
|
|
2791
3754
|
email: string;
|
|
2792
3755
|
}
|
|
2793
3756
|
namespace Responses {
|
|
2794
3757
|
export interface $200 {
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
autoReloadEnabled: boolean;
|
|
2800
|
-
creditsUsd: number; // double
|
|
2801
|
-
metadata: /**
|
|
2802
|
-
* From https://github.com/sindresorhus/type-fest/
|
|
2803
|
-
* Matches any valid JSON value.
|
|
2804
|
-
*/
|
|
2805
|
-
Components.Schemas.JsonValue;
|
|
2806
|
-
deletedAt: string; // date-time
|
|
2807
|
-
updatedAt: string; // date-time
|
|
2808
|
-
createdAt: string; // date-time
|
|
2809
|
-
confirmedAt: string; // date-time
|
|
2810
|
-
confirmed: boolean;
|
|
2811
|
-
emailVerifiedAt: string; // date-time
|
|
2812
|
-
emailVerified: boolean;
|
|
2813
|
-
name: string;
|
|
2814
|
-
lastLogin: string; // date-time
|
|
2815
|
-
email: string;
|
|
2816
|
-
id: string;
|
|
2817
|
-
orgs: {
|
|
2818
|
-
organizationId: string;
|
|
2819
|
-
role: number; // double
|
|
2820
|
-
userId: string;
|
|
2821
|
-
creditsUsd: number; // double
|
|
2822
|
-
metadata: /**
|
|
2823
|
-
* From https://github.com/sindresorhus/type-fest/
|
|
2824
|
-
* Matches any valid JSON value.
|
|
2825
|
-
*/
|
|
2826
|
-
Components.Schemas.JsonValue;
|
|
2827
|
-
deletedAt: string; // date-time
|
|
2828
|
-
updatedAt: string; // date-time
|
|
2829
|
-
createdAt: string; // date-time
|
|
2830
|
-
id: string;
|
|
2831
|
-
}[];
|
|
2832
|
-
passwordHash: any;
|
|
2833
|
-
};
|
|
2834
|
-
organization: string;
|
|
2835
|
-
token: any;
|
|
3758
|
+
requires2FA?: boolean;
|
|
3759
|
+
user?: any;
|
|
3760
|
+
organization?: string;
|
|
3761
|
+
token?: string;
|
|
2836
3762
|
}
|
|
2837
3763
|
}
|
|
2838
3764
|
}
|
|
@@ -2843,25 +3769,26 @@ declare namespace Paths {
|
|
|
2843
3769
|
namespace Responses {
|
|
2844
3770
|
export interface $200 {
|
|
2845
3771
|
user: {
|
|
2846
|
-
stripeCustomerId: string;
|
|
2847
|
-
autoReloadAmount: number; // double
|
|
2848
3772
|
autoReloadThreshold: number; // double
|
|
2849
3773
|
autoReloadEnabled: boolean;
|
|
3774
|
+
autoReloadAmount: number; // double
|
|
3775
|
+
stripeCustomerId: string;
|
|
3776
|
+
emailVerifiedAt: string; // date-time
|
|
3777
|
+
emailVerified: boolean;
|
|
2850
3778
|
creditsUsd: number; // double
|
|
3779
|
+
confirmedAt: string; // date-time
|
|
3780
|
+
isAdmin: boolean;
|
|
3781
|
+
confirmed: boolean;
|
|
3782
|
+
deletedAt: string; // date-time
|
|
3783
|
+
lastLogin: string; // date-time
|
|
3784
|
+
name: string;
|
|
3785
|
+
updatedAt: string; // date-time
|
|
3786
|
+
createdAt: string; // date-time
|
|
2851
3787
|
metadata: /**
|
|
2852
3788
|
* From https://github.com/sindresorhus/type-fest/
|
|
2853
3789
|
* Matches any valid JSON value.
|
|
2854
3790
|
*/
|
|
2855
3791
|
Components.Schemas.JsonValue;
|
|
2856
|
-
deletedAt: string; // date-time
|
|
2857
|
-
updatedAt: string; // date-time
|
|
2858
|
-
createdAt: string; // date-time
|
|
2859
|
-
confirmedAt: string; // date-time
|
|
2860
|
-
confirmed: boolean;
|
|
2861
|
-
emailVerifiedAt: string; // date-time
|
|
2862
|
-
emailVerified: boolean;
|
|
2863
|
-
name: string;
|
|
2864
|
-
lastLogin: string; // date-time
|
|
2865
3792
|
email: string;
|
|
2866
3793
|
id: string;
|
|
2867
3794
|
orgs: {
|
|
@@ -2869,14 +3796,14 @@ declare namespace Paths {
|
|
|
2869
3796
|
role: number; // double
|
|
2870
3797
|
userId: string;
|
|
2871
3798
|
creditsUsd: number; // double
|
|
3799
|
+
deletedAt: string; // date-time
|
|
3800
|
+
updatedAt: string; // date-time
|
|
3801
|
+
createdAt: string; // date-time
|
|
2872
3802
|
metadata: /**
|
|
2873
3803
|
* From https://github.com/sindresorhus/type-fest/
|
|
2874
3804
|
* Matches any valid JSON value.
|
|
2875
3805
|
*/
|
|
2876
3806
|
Components.Schemas.JsonValue;
|
|
2877
|
-
deletedAt: string; // date-time
|
|
2878
|
-
updatedAt: string; // date-time
|
|
2879
|
-
createdAt: string; // date-time
|
|
2880
3807
|
id: string;
|
|
2881
3808
|
}[];
|
|
2882
3809
|
passwordHash: any;
|
|
@@ -2894,47 +3821,31 @@ declare namespace Paths {
|
|
|
2894
3821
|
}
|
|
2895
3822
|
namespace Responses {
|
|
2896
3823
|
export interface $201 {
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
userId: string;
|
|
2923
|
-
creditsUsd: number; // double
|
|
2924
|
-
metadata: /**
|
|
2925
|
-
* From https://github.com/sindresorhus/type-fest/
|
|
2926
|
-
* Matches any valid JSON value.
|
|
2927
|
-
*/
|
|
2928
|
-
Components.Schemas.JsonValue;
|
|
2929
|
-
deletedAt: string; // date-time
|
|
2930
|
-
updatedAt: string; // date-time
|
|
2931
|
-
createdAt: string; // date-time
|
|
2932
|
-
id: string;
|
|
2933
|
-
}[];
|
|
2934
|
-
passwordHash: any;
|
|
2935
|
-
};
|
|
2936
|
-
organization: string;
|
|
2937
|
-
token: any;
|
|
3824
|
+
requires2FA?: boolean;
|
|
3825
|
+
user?: any;
|
|
3826
|
+
organization?: string;
|
|
3827
|
+
token?: string;
|
|
3828
|
+
}
|
|
3829
|
+
}
|
|
3830
|
+
}
|
|
3831
|
+
namespace ValidateAuthConfig {
|
|
3832
|
+
export interface RequestBody {
|
|
3833
|
+
url?: string;
|
|
3834
|
+
authConfig: /* Discriminated union of all auth config types */ Components.Schemas.McpAuthConfig;
|
|
3835
|
+
}
|
|
3836
|
+
namespace Responses {
|
|
3837
|
+
export interface $200 {
|
|
3838
|
+
details?: any;
|
|
3839
|
+
message: string;
|
|
3840
|
+
success: boolean;
|
|
3841
|
+
}
|
|
3842
|
+
}
|
|
3843
|
+
}
|
|
3844
|
+
namespace Verify2FA {
|
|
3845
|
+
export type RequestBody = Components.Schemas.Verify2FARequest;
|
|
3846
|
+
namespace Responses {
|
|
3847
|
+
export interface $200 {
|
|
3848
|
+
success: boolean;
|
|
2938
3849
|
}
|
|
2939
3850
|
}
|
|
2940
3851
|
}
|
|
@@ -2967,6 +3878,97 @@ declare namespace Paths {
|
|
|
2967
3878
|
|
|
2968
3879
|
|
|
2969
3880
|
export interface OperationMethods {
|
|
3881
|
+
/**
|
|
3882
|
+
* ListWaitlist - List waitlist entries (admin only)
|
|
3883
|
+
*/
|
|
3884
|
+
'ListWaitlist'(
|
|
3885
|
+
parameters?: Parameters<Paths.ListWaitlist.QueryParameters> | null,
|
|
3886
|
+
data?: any,
|
|
3887
|
+
config?: AxiosRequestConfig
|
|
3888
|
+
): OperationResponse<Paths.ListWaitlist.Responses.$200>
|
|
3889
|
+
/**
|
|
3890
|
+
* GetWaitlistEntry - Get a specific waitlist entry by ID (admin only)
|
|
3891
|
+
*/
|
|
3892
|
+
'GetWaitlistEntry'(
|
|
3893
|
+
parameters?: Parameters<Paths.GetWaitlistEntry.PathParameters> | null,
|
|
3894
|
+
data?: any,
|
|
3895
|
+
config?: AxiosRequestConfig
|
|
3896
|
+
): OperationResponse<Paths.GetWaitlistEntry.Responses.$200>
|
|
3897
|
+
/**
|
|
3898
|
+
* DeleteWaitlist - Delete a waitlist entry (admin only)
|
|
3899
|
+
*/
|
|
3900
|
+
'DeleteWaitlist'(
|
|
3901
|
+
parameters?: Parameters<Paths.DeleteWaitlist.PathParameters> | null,
|
|
3902
|
+
data?: any,
|
|
3903
|
+
config?: AxiosRequestConfig
|
|
3904
|
+
): OperationResponse<Paths.DeleteWaitlist.Responses.$200>
|
|
3905
|
+
/**
|
|
3906
|
+
* GetWaitlistByEmail - Get a waitlist entry by email (admin only)
|
|
3907
|
+
*/
|
|
3908
|
+
'GetWaitlistByEmail'(
|
|
3909
|
+
parameters?: Parameters<Paths.GetWaitlistByEmail.PathParameters> | null,
|
|
3910
|
+
data?: any,
|
|
3911
|
+
config?: AxiosRequestConfig
|
|
3912
|
+
): OperationResponse<Paths.GetWaitlistByEmail.Responses.$200>
|
|
3913
|
+
/**
|
|
3914
|
+
* ApproveWaitlist - Approve a waitlist entry (admin only)
|
|
3915
|
+
*/
|
|
3916
|
+
'ApproveWaitlist'(
|
|
3917
|
+
parameters?: Parameters<Paths.ApproveWaitlist.PathParameters> | null,
|
|
3918
|
+
data?: any,
|
|
3919
|
+
config?: AxiosRequestConfig
|
|
3920
|
+
): OperationResponse<Paths.ApproveWaitlist.Responses.$200>
|
|
3921
|
+
/**
|
|
3922
|
+
* RejectWaitlist - Reject a waitlist entry (admin only)
|
|
3923
|
+
*/
|
|
3924
|
+
'RejectWaitlist'(
|
|
3925
|
+
parameters?: Parameters<Paths.RejectWaitlist.PathParameters> | null,
|
|
3926
|
+
data?: any,
|
|
3927
|
+
config?: AxiosRequestConfig
|
|
3928
|
+
): OperationResponse<Paths.RejectWaitlist.Responses.$200>
|
|
3929
|
+
/**
|
|
3930
|
+
* JoinWaitlist - Add current user to waitlist (public endpoint, used during signup overflow)
|
|
3931
|
+
*/
|
|
3932
|
+
'JoinWaitlist'(
|
|
3933
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3934
|
+
data?: Paths.JoinWaitlist.RequestBody,
|
|
3935
|
+
config?: AxiosRequestConfig
|
|
3936
|
+
): OperationResponse<Paths.JoinWaitlist.Responses.$201>
|
|
3937
|
+
/**
|
|
3938
|
+
* CheckAvailability - Check if signup spots are available (public endpoint)
|
|
3939
|
+
* Returns information about remaining spots based on MAX_USERS env var
|
|
3940
|
+
*/
|
|
3941
|
+
'CheckAvailability'(
|
|
3942
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3943
|
+
data?: any,
|
|
3944
|
+
config?: AxiosRequestConfig
|
|
3945
|
+
): OperationResponse<Paths.CheckAvailability.Responses.$200>
|
|
3946
|
+
/**
|
|
3947
|
+
* RedeemReferralCode - Redeem a referral code to auto-approve waitlist entry (public endpoint)
|
|
3948
|
+
* Creates or updates waitlist entry with APPROVED status
|
|
3949
|
+
*/
|
|
3950
|
+
'RedeemReferralCode'(
|
|
3951
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3952
|
+
data?: Paths.RedeemReferralCode.RequestBody,
|
|
3953
|
+
config?: AxiosRequestConfig
|
|
3954
|
+
): OperationResponse<Paths.RedeemReferralCode.Responses.$200>
|
|
3955
|
+
/**
|
|
3956
|
+
* GenerateReferralCode - Generate a new referral code for the authenticated user
|
|
3957
|
+
* Limit: Maximum 5 unused referral codes per user
|
|
3958
|
+
*/
|
|
3959
|
+
'GenerateReferralCode'(
|
|
3960
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3961
|
+
data?: any,
|
|
3962
|
+
config?: AxiosRequestConfig
|
|
3963
|
+
): OperationResponse<Paths.GenerateReferralCode.Responses.$200>
|
|
3964
|
+
/**
|
|
3965
|
+
* GetRemainingReferralCodes - Get count of remaining referral codes for the authenticated user
|
|
3966
|
+
*/
|
|
3967
|
+
'GetRemainingReferralCodes'(
|
|
3968
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3969
|
+
data?: any,
|
|
3970
|
+
config?: AxiosRequestConfig
|
|
3971
|
+
): OperationResponse<Paths.GetRemainingReferralCodes.Responses.$200>
|
|
2970
3972
|
/**
|
|
2971
3973
|
* UserSignup
|
|
2972
3974
|
*/
|
|
@@ -3032,17 +4034,143 @@ export interface OperationMethods {
|
|
|
3032
4034
|
config?: AxiosRequestConfig
|
|
3033
4035
|
): OperationResponse<Paths.ResendVerificationEmail.Responses.$200>
|
|
3034
4036
|
/**
|
|
3035
|
-
*
|
|
4037
|
+
* ChangePassword
|
|
3036
4038
|
*/
|
|
3037
|
-
'
|
|
4039
|
+
'ChangePassword'(
|
|
3038
4040
|
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3039
|
-
data?: Paths.
|
|
4041
|
+
data?: Paths.ChangePassword.RequestBody,
|
|
3040
4042
|
config?: AxiosRequestConfig
|
|
3041
|
-
): OperationResponse<Paths.
|
|
4043
|
+
): OperationResponse<Paths.ChangePassword.Responses.$200>
|
|
3042
4044
|
/**
|
|
3043
|
-
*
|
|
4045
|
+
* Get2FAStatus - Get 2FA status for the current user
|
|
3044
4046
|
*/
|
|
3045
|
-
'
|
|
4047
|
+
'Get2FAStatus'(
|
|
4048
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4049
|
+
data?: any,
|
|
4050
|
+
config?: AxiosRequestConfig
|
|
4051
|
+
): OperationResponse<Paths.Get2FAStatus.Responses.$200>
|
|
4052
|
+
/**
|
|
4053
|
+
* Generate2FA - Generate 2FA setup (QR code and secret)
|
|
4054
|
+
*/
|
|
4055
|
+
'Generate2FA'(
|
|
4056
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4057
|
+
data?: any,
|
|
4058
|
+
config?: AxiosRequestConfig
|
|
4059
|
+
): OperationResponse<Paths.Generate2FA.Responses.$200>
|
|
4060
|
+
/**
|
|
4061
|
+
* Setup2FA - Complete 2FA setup by verifying TOTP code
|
|
4062
|
+
*/
|
|
4063
|
+
'Setup2FA'(
|
|
4064
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4065
|
+
data?: Paths.Setup2FA.RequestBody,
|
|
4066
|
+
config?: AxiosRequestConfig
|
|
4067
|
+
): OperationResponse<Paths.Setup2FA.Responses.$200>
|
|
4068
|
+
/**
|
|
4069
|
+
* Verify2FA - Verify 2FA code and get elevated token
|
|
4070
|
+
*/
|
|
4071
|
+
'Verify2FA'(
|
|
4072
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4073
|
+
data?: Paths.Verify2FA.RequestBody,
|
|
4074
|
+
config?: AxiosRequestConfig
|
|
4075
|
+
): OperationResponse<Paths.Verify2FA.Responses.$200>
|
|
4076
|
+
/**
|
|
4077
|
+
* Disable2FA - Disable 2FA (requires elevated session)
|
|
4078
|
+
*/
|
|
4079
|
+
'Disable2FA'(
|
|
4080
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4081
|
+
data?: Paths.Disable2FA.RequestBody,
|
|
4082
|
+
config?: AxiosRequestConfig
|
|
4083
|
+
): OperationResponse<Paths.Disable2FA.Responses.$200>
|
|
4084
|
+
/**
|
|
4085
|
+
* RegenerateBackupCodes - Regenerate backup codes (requires elevated session)
|
|
4086
|
+
*/
|
|
4087
|
+
'RegenerateBackupCodes'(
|
|
4088
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4089
|
+
data?: Paths.RegenerateBackupCodes.RequestBody,
|
|
4090
|
+
config?: AxiosRequestConfig
|
|
4091
|
+
): OperationResponse<Paths.RegenerateBackupCodes.Responses.$200>
|
|
4092
|
+
/**
|
|
4093
|
+
* GetTemplates - Get all templates
|
|
4094
|
+
*
|
|
4095
|
+
* Get all task templates for the current organization
|
|
4096
|
+
*/
|
|
4097
|
+
'GetTemplates'(
|
|
4098
|
+
parameters?: Parameters<Paths.GetTemplates.QueryParameters> | null,
|
|
4099
|
+
data?: any,
|
|
4100
|
+
config?: AxiosRequestConfig
|
|
4101
|
+
): OperationResponse<Paths.GetTemplates.Responses.$200>
|
|
4102
|
+
/**
|
|
4103
|
+
* CreateTemplate - Create a new task template
|
|
4104
|
+
*
|
|
4105
|
+
* Create a new task template
|
|
4106
|
+
*/
|
|
4107
|
+
'CreateTemplate'(
|
|
4108
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4109
|
+
data?: Paths.CreateTemplate.RequestBody,
|
|
4110
|
+
config?: AxiosRequestConfig
|
|
4111
|
+
): OperationResponse<Paths.CreateTemplate.Responses.$200>
|
|
4112
|
+
/**
|
|
4113
|
+
* GetTemplate - Get template by ID
|
|
4114
|
+
*
|
|
4115
|
+
* Get a specific template by ID
|
|
4116
|
+
*/
|
|
4117
|
+
'GetTemplate'(
|
|
4118
|
+
parameters?: Parameters<Paths.GetTemplate.PathParameters> | null,
|
|
4119
|
+
data?: any,
|
|
4120
|
+
config?: AxiosRequestConfig
|
|
4121
|
+
): OperationResponse<Paths.GetTemplate.Responses.$200>
|
|
4122
|
+
/**
|
|
4123
|
+
* UpdateTemplate - Update template
|
|
4124
|
+
*
|
|
4125
|
+
* Update an existing template
|
|
4126
|
+
*/
|
|
4127
|
+
'UpdateTemplate'(
|
|
4128
|
+
parameters?: Parameters<Paths.UpdateTemplate.PathParameters> | null,
|
|
4129
|
+
data?: Paths.UpdateTemplate.RequestBody,
|
|
4130
|
+
config?: AxiosRequestConfig
|
|
4131
|
+
): OperationResponse<Paths.UpdateTemplate.Responses.$200>
|
|
4132
|
+
/**
|
|
4133
|
+
* DeleteTemplate - Delete template
|
|
4134
|
+
*
|
|
4135
|
+
* Delete a template
|
|
4136
|
+
*/
|
|
4137
|
+
'DeleteTemplate'(
|
|
4138
|
+
parameters?: Parameters<Paths.DeleteTemplate.PathParameters> | null,
|
|
4139
|
+
data?: any,
|
|
4140
|
+
config?: AxiosRequestConfig
|
|
4141
|
+
): OperationResponse<Paths.DeleteTemplate.Responses.$204>
|
|
4142
|
+
/**
|
|
4143
|
+
* CreateTasks - Create tasks from template
|
|
4144
|
+
*
|
|
4145
|
+
* Create tasks from a template for a specific org user
|
|
4146
|
+
*/
|
|
4147
|
+
'CreateTasks'(
|
|
4148
|
+
parameters?: Parameters<Paths.CreateTasks.PathParameters> | null,
|
|
4149
|
+
data?: Paths.CreateTasks.RequestBody,
|
|
4150
|
+
config?: AxiosRequestConfig
|
|
4151
|
+
): OperationResponse<Paths.CreateTasks.Responses.$200>
|
|
4152
|
+
/**
|
|
4153
|
+
* GetDefaultOnboardingTemplate - Get default onboarding template
|
|
4154
|
+
*
|
|
4155
|
+
* Get the default onboarding template for the organization
|
|
4156
|
+
*/
|
|
4157
|
+
'GetDefaultOnboardingTemplate'(
|
|
4158
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4159
|
+
data?: any,
|
|
4160
|
+
config?: AxiosRequestConfig
|
|
4161
|
+
): OperationResponse<Paths.GetDefaultOnboardingTemplate.Responses.$200>
|
|
4162
|
+
/**
|
|
4163
|
+
* ConnectSlackAccount
|
|
4164
|
+
*/
|
|
4165
|
+
'ConnectSlackAccount'(
|
|
4166
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4167
|
+
data?: Paths.ConnectSlackAccount.RequestBody,
|
|
4168
|
+
config?: AxiosRequestConfig
|
|
4169
|
+
): OperationResponse<Paths.ConnectSlackAccount.Responses.$200>
|
|
4170
|
+
/**
|
|
4171
|
+
* HandleSlackEvent
|
|
4172
|
+
*/
|
|
4173
|
+
'HandleSlackEvent'(
|
|
3046
4174
|
parameters?: Parameters<UnknownParamsObject> | null,
|
|
3047
4175
|
data?: Paths.HandleSlackEvent.RequestBody,
|
|
3048
4176
|
config?: AxiosRequestConfig
|
|
@@ -3143,6 +4271,22 @@ export interface OperationMethods {
|
|
|
3143
4271
|
data?: any,
|
|
3144
4272
|
config?: AxiosRequestConfig
|
|
3145
4273
|
): OperationResponse<Paths.GetAllUserSecretPaths.Responses.$200>
|
|
4274
|
+
/**
|
|
4275
|
+
* RequestPasswordReset - Request a password reset by email
|
|
4276
|
+
*/
|
|
4277
|
+
'RequestPasswordReset'(
|
|
4278
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4279
|
+
data?: Paths.RequestPasswordReset.RequestBody,
|
|
4280
|
+
config?: AxiosRequestConfig
|
|
4281
|
+
): OperationResponse<Paths.RequestPasswordReset.Responses.$200>
|
|
4282
|
+
/**
|
|
4283
|
+
* ResetPassword - Reset password using shared secret
|
|
4284
|
+
*/
|
|
4285
|
+
'ResetPassword'(
|
|
4286
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4287
|
+
data?: Paths.ResetPassword.RequestBody,
|
|
4288
|
+
config?: AxiosRequestConfig
|
|
4289
|
+
): OperationResponse<Paths.ResetPassword.Responses.$200>
|
|
3146
4290
|
/**
|
|
3147
4291
|
* GetOrganizationsByUserId
|
|
3148
4292
|
*/
|
|
@@ -3255,6 +4399,96 @@ export interface OperationMethods {
|
|
|
3255
4399
|
data?: any,
|
|
3256
4400
|
config?: AxiosRequestConfig
|
|
3257
4401
|
): OperationResponse<Paths.GetAllUsages.Responses.$200>
|
|
4402
|
+
/**
|
|
4403
|
+
* GetTasks - Get all tasks for current user
|
|
4404
|
+
*
|
|
4405
|
+
* Get all tasks for the current org user with optional filtering
|
|
4406
|
+
*/
|
|
4407
|
+
'GetTasks'(
|
|
4408
|
+
parameters?: Parameters<Paths.GetTasks.QueryParameters> | null,
|
|
4409
|
+
data?: any,
|
|
4410
|
+
config?: AxiosRequestConfig
|
|
4411
|
+
): OperationResponse<Paths.GetTasks.Responses.$200>
|
|
4412
|
+
/**
|
|
4413
|
+
* CreateTask - Create a new task
|
|
4414
|
+
*
|
|
4415
|
+
* Create a new task for the current org user
|
|
4416
|
+
*/
|
|
4417
|
+
'CreateTask'(
|
|
4418
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4419
|
+
data?: Paths.CreateTask.RequestBody,
|
|
4420
|
+
config?: AxiosRequestConfig
|
|
4421
|
+
): OperationResponse<Paths.CreateTask.Responses.$200>
|
|
4422
|
+
/**
|
|
4423
|
+
* GetTask - Get task by ID
|
|
4424
|
+
*
|
|
4425
|
+
* Get a specific task by ID
|
|
4426
|
+
*/
|
|
4427
|
+
'GetTask'(
|
|
4428
|
+
parameters?: Parameters<Paths.GetTask.PathParameters> | null,
|
|
4429
|
+
data?: any,
|
|
4430
|
+
config?: AxiosRequestConfig
|
|
4431
|
+
): OperationResponse<Paths.GetTask.Responses.$200>
|
|
4432
|
+
/**
|
|
4433
|
+
* UpdateTask - Update task
|
|
4434
|
+
*
|
|
4435
|
+
* Update an existing task
|
|
4436
|
+
*/
|
|
4437
|
+
'UpdateTask'(
|
|
4438
|
+
parameters?: Parameters<Paths.UpdateTask.PathParameters> | null,
|
|
4439
|
+
data?: Paths.UpdateTask.RequestBody,
|
|
4440
|
+
config?: AxiosRequestConfig
|
|
4441
|
+
): OperationResponse<Paths.UpdateTask.Responses.$200>
|
|
4442
|
+
/**
|
|
4443
|
+
* DeleteTask - Delete task
|
|
4444
|
+
*
|
|
4445
|
+
* Delete a task
|
|
4446
|
+
*/
|
|
4447
|
+
'DeleteTask'(
|
|
4448
|
+
parameters?: Parameters<Paths.DeleteTask.PathParameters> | null,
|
|
4449
|
+
data?: any,
|
|
4450
|
+
config?: AxiosRequestConfig
|
|
4451
|
+
): OperationResponse<Paths.DeleteTask.Responses.$204>
|
|
4452
|
+
/**
|
|
4453
|
+
* MarkCompleted - Mark task as completed
|
|
4454
|
+
*
|
|
4455
|
+
* Mark a task as completed (with optional force flag to skip check validation)
|
|
4456
|
+
*/
|
|
4457
|
+
'MarkCompleted'(
|
|
4458
|
+
parameters?: Parameters<Paths.MarkCompleted.PathParameters> | null,
|
|
4459
|
+
data?: Paths.MarkCompleted.RequestBody,
|
|
4460
|
+
config?: AxiosRequestConfig
|
|
4461
|
+
): OperationResponse<Paths.MarkCompleted.Responses.$200>
|
|
4462
|
+
/**
|
|
4463
|
+
* RunChecks - Run task checks
|
|
4464
|
+
*
|
|
4465
|
+
* Run checks for a task to validate completion requirements
|
|
4466
|
+
*/
|
|
4467
|
+
'RunChecks'(
|
|
4468
|
+
parameters?: Parameters<Paths.RunChecks.PathParameters> | null,
|
|
4469
|
+
data?: any,
|
|
4470
|
+
config?: AxiosRequestConfig
|
|
4471
|
+
): OperationResponse<Paths.RunChecks.Responses.$200>
|
|
4472
|
+
/**
|
|
4473
|
+
* AddComment - Add comment to task
|
|
4474
|
+
*
|
|
4475
|
+
* Add a comment to a task
|
|
4476
|
+
*/
|
|
4477
|
+
'AddComment'(
|
|
4478
|
+
parameters?: Parameters<Paths.AddComment.PathParameters> | null,
|
|
4479
|
+
data?: Paths.AddComment.RequestBody,
|
|
4480
|
+
config?: AxiosRequestConfig
|
|
4481
|
+
): OperationResponse<Paths.AddComment.Responses.$204>
|
|
4482
|
+
/**
|
|
4483
|
+
* DeleteComment - Delete comment from task
|
|
4484
|
+
*
|
|
4485
|
+
* Delete a comment from a task (only by comment owner)
|
|
4486
|
+
*/
|
|
4487
|
+
'DeleteComment'(
|
|
4488
|
+
parameters?: Parameters<Paths.DeleteComment.PathParameters> | null,
|
|
4489
|
+
data?: any,
|
|
4490
|
+
config?: AxiosRequestConfig
|
|
4491
|
+
): OperationResponse<Paths.DeleteComment.Responses.$204>
|
|
3258
4492
|
/**
|
|
3259
4493
|
* GetOrgUserMcps - Get all MCP server configurations for the current org user
|
|
3260
4494
|
*/
|
|
@@ -3295,6 +4529,15 @@ export interface OperationMethods {
|
|
|
3295
4529
|
data?: any,
|
|
3296
4530
|
config?: AxiosRequestConfig
|
|
3297
4531
|
): OperationResponse<Paths.DeleteOrgUserMcp.Responses.$204>
|
|
4532
|
+
/**
|
|
4533
|
+
* ValidateAuthConfig - Validate authentication configuration
|
|
4534
|
+
* Tests if the provided auth config can successfully authenticate
|
|
4535
|
+
*/
|
|
4536
|
+
'ValidateAuthConfig'(
|
|
4537
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4538
|
+
data?: Paths.ValidateAuthConfig.RequestBody,
|
|
4539
|
+
config?: AxiosRequestConfig
|
|
4540
|
+
): OperationResponse<Paths.ValidateAuthConfig.Responses.$200>
|
|
3298
4541
|
/**
|
|
3299
4542
|
* GetOrgServices
|
|
3300
4543
|
*/
|
|
@@ -3631,6 +4874,102 @@ export interface OperationMethods {
|
|
|
3631
4874
|
data?: any,
|
|
3632
4875
|
config?: AxiosRequestConfig
|
|
3633
4876
|
): OperationResponse<Paths.ProxyGetModels.Responses.$200>
|
|
4877
|
+
/**
|
|
4878
|
+
* GetChatSessions
|
|
4879
|
+
*/
|
|
4880
|
+
'GetChatSessions'(
|
|
4881
|
+
parameters?: Parameters<Paths.GetChatSessions.QueryParameters> | null,
|
|
4882
|
+
data?: any,
|
|
4883
|
+
config?: AxiosRequestConfig
|
|
4884
|
+
): OperationResponse<Paths.GetChatSessions.Responses.$200>
|
|
4885
|
+
/**
|
|
4886
|
+
* CreateChatSession
|
|
4887
|
+
*/
|
|
4888
|
+
'CreateChatSession'(
|
|
4889
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4890
|
+
data?: Paths.CreateChatSession.RequestBody,
|
|
4891
|
+
config?: AxiosRequestConfig
|
|
4892
|
+
): OperationResponse<Paths.CreateChatSession.Responses.$200>
|
|
4893
|
+
/**
|
|
4894
|
+
* GetChatSession
|
|
4895
|
+
*/
|
|
4896
|
+
'GetChatSession'(
|
|
4897
|
+
parameters?: Parameters<Paths.GetChatSession.PathParameters> | null,
|
|
4898
|
+
data?: any,
|
|
4899
|
+
config?: AxiosRequestConfig
|
|
4900
|
+
): OperationResponse<Paths.GetChatSession.Responses.$200>
|
|
4901
|
+
/**
|
|
4902
|
+
* UpdateChatSession
|
|
4903
|
+
*/
|
|
4904
|
+
'UpdateChatSession'(
|
|
4905
|
+
parameters?: Parameters<Paths.UpdateChatSession.PathParameters> | null,
|
|
4906
|
+
data?: Paths.UpdateChatSession.RequestBody,
|
|
4907
|
+
config?: AxiosRequestConfig
|
|
4908
|
+
): OperationResponse<Paths.UpdateChatSession.Responses.$200>
|
|
4909
|
+
/**
|
|
4910
|
+
* DeleteChatSession
|
|
4911
|
+
*/
|
|
4912
|
+
'DeleteChatSession'(
|
|
4913
|
+
parameters?: Parameters<Paths.DeleteChatSession.PathParameters> | null,
|
|
4914
|
+
data?: any,
|
|
4915
|
+
config?: AxiosRequestConfig
|
|
4916
|
+
): OperationResponse<Paths.DeleteChatSession.Responses.$204>
|
|
4917
|
+
/**
|
|
4918
|
+
* GetChatSessionMessages
|
|
4919
|
+
*/
|
|
4920
|
+
'GetChatSessionMessages'(
|
|
4921
|
+
parameters?: Parameters<Paths.GetChatSessionMessages.PathParameters> | null,
|
|
4922
|
+
data?: any,
|
|
4923
|
+
config?: AxiosRequestConfig
|
|
4924
|
+
): OperationResponse<Paths.GetChatSessionMessages.Responses.$200>
|
|
4925
|
+
/**
|
|
4926
|
+
* CreateChatMessage
|
|
4927
|
+
*/
|
|
4928
|
+
'CreateChatMessage'(
|
|
4929
|
+
parameters?: Parameters<Paths.CreateChatMessage.PathParameters> | null,
|
|
4930
|
+
data?: Paths.CreateChatMessage.RequestBody,
|
|
4931
|
+
config?: AxiosRequestConfig
|
|
4932
|
+
): OperationResponse<Paths.CreateChatMessage.Responses.$200>
|
|
4933
|
+
/**
|
|
4934
|
+
* DeleteChatMessage
|
|
4935
|
+
*/
|
|
4936
|
+
'DeleteChatMessage'(
|
|
4937
|
+
parameters?: Parameters<Paths.DeleteChatMessage.PathParameters> | null,
|
|
4938
|
+
data?: any,
|
|
4939
|
+
config?: AxiosRequestConfig
|
|
4940
|
+
): OperationResponse<Paths.DeleteChatMessage.Responses.$204>
|
|
4941
|
+
/**
|
|
4942
|
+
* PublicChat
|
|
4943
|
+
*/
|
|
4944
|
+
'PublicChat'(
|
|
4945
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4946
|
+
data?: Paths.PublicChat.RequestBody,
|
|
4947
|
+
config?: AxiosRequestConfig
|
|
4948
|
+
): OperationResponse<Paths.PublicChat.Responses.$200>
|
|
4949
|
+
/**
|
|
4950
|
+
* CreateSessionFromThread
|
|
4951
|
+
*/
|
|
4952
|
+
'CreateSessionFromThread'(
|
|
4953
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4954
|
+
data?: Paths.CreateSessionFromThread.RequestBody,
|
|
4955
|
+
config?: AxiosRequestConfig
|
|
4956
|
+
): OperationResponse<Paths.CreateSessionFromThread.Responses.$200>
|
|
4957
|
+
/**
|
|
4958
|
+
* CreateMessageTask
|
|
4959
|
+
*/
|
|
4960
|
+
'CreateMessageTask'(
|
|
4961
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4962
|
+
data?: Paths.CreateMessageTask.RequestBody,
|
|
4963
|
+
config?: AxiosRequestConfig
|
|
4964
|
+
): OperationResponse<Paths.CreateMessageTask.Responses.$200>
|
|
4965
|
+
/**
|
|
4966
|
+
* UpdateOrgTask
|
|
4967
|
+
*/
|
|
4968
|
+
'UpdateOrgTask'(
|
|
4969
|
+
parameters?: Parameters<Paths.UpdateOrgTask.PathParameters> | null,
|
|
4970
|
+
data?: Paths.UpdateOrgTask.RequestBody,
|
|
4971
|
+
config?: AxiosRequestConfig
|
|
4972
|
+
): OperationResponse<Paths.UpdateOrgTask.Responses.$200>
|
|
3634
4973
|
/**
|
|
3635
4974
|
* GetHealth - Basic health check
|
|
3636
4975
|
*
|
|
@@ -3671,6 +5010,39 @@ export interface OperationMethods {
|
|
|
3671
5010
|
data?: any,
|
|
3672
5011
|
config?: AxiosRequestConfig
|
|
3673
5012
|
): OperationResponse<Paths.GetLiveness.Responses.$200>
|
|
5013
|
+
/**
|
|
5014
|
+
* ProbeMcpServer - Probe an MCP server URL to detect OAuth capabilities
|
|
5015
|
+
*/
|
|
5016
|
+
'ProbeMcpServer'(
|
|
5017
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5018
|
+
data?: Paths.ProbeMcpServer.RequestBody,
|
|
5019
|
+
config?: AxiosRequestConfig
|
|
5020
|
+
): OperationResponse<Paths.ProbeMcpServer.Responses.$200>
|
|
5021
|
+
/**
|
|
5022
|
+
* InitiateOAuthFlow - Initiate OAuth flow for MCP server authentication
|
|
5023
|
+
*/
|
|
5024
|
+
'InitiateOAuthFlow'(
|
|
5025
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5026
|
+
data?: Paths.InitiateOAuthFlow.RequestBody,
|
|
5027
|
+
config?: AxiosRequestConfig
|
|
5028
|
+
): OperationResponse<Paths.InitiateOAuthFlow.Responses.$200>
|
|
5029
|
+
/**
|
|
5030
|
+
* HandleOAuthCallback - Handle OAuth callback - Complete the OAuth flow
|
|
5031
|
+
* Called by the frontend after OAuth provider redirects back
|
|
5032
|
+
*/
|
|
5033
|
+
'HandleOAuthCallback'(
|
|
5034
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5035
|
+
data?: Paths.HandleOAuthCallback.RequestBody,
|
|
5036
|
+
config?: AxiosRequestConfig
|
|
5037
|
+
): OperationResponse<Paths.HandleOAuthCallback.Responses.$200>
|
|
5038
|
+
/**
|
|
5039
|
+
* CheckAuthStatus - Check authentication status for a secret
|
|
5040
|
+
*/
|
|
5041
|
+
'CheckAuthStatus'(
|
|
5042
|
+
parameters?: Parameters<Paths.CheckAuthStatus.QueryParameters & Paths.CheckAuthStatus.PathParameters> | null,
|
|
5043
|
+
data?: any,
|
|
5044
|
+
config?: AxiosRequestConfig
|
|
5045
|
+
): OperationResponse<Paths.CheckAuthStatus.Responses.$200>
|
|
3674
5046
|
/**
|
|
3675
5047
|
* GetTokenStatus
|
|
3676
5048
|
*/
|
|
@@ -3984,117 +5356,21 @@ export interface OperationMethods {
|
|
|
3984
5356
|
config?: AxiosRequestConfig
|
|
3985
5357
|
): OperationResponse<Paths.CleanupSessions.Responses.$200>
|
|
3986
5358
|
/**
|
|
3987
|
-
*
|
|
5359
|
+
* CreateChatCompletion - Create a chat completion
|
|
3988
5360
|
*/
|
|
3989
|
-
'
|
|
3990
|
-
parameters?: Parameters<
|
|
3991
|
-
data?:
|
|
5361
|
+
'CreateChatCompletion'(
|
|
5362
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5363
|
+
data?: Paths.CreateChatCompletion.RequestBody,
|
|
3992
5364
|
config?: AxiosRequestConfig
|
|
3993
|
-
): OperationResponse<Paths.
|
|
5365
|
+
): OperationResponse<Paths.CreateChatCompletion.Responses.$200>
|
|
3994
5366
|
/**
|
|
3995
|
-
*
|
|
5367
|
+
* GetModels - Get available models, optionally filtered by type
|
|
3996
5368
|
*/
|
|
3997
|
-
'
|
|
3998
|
-
parameters?: Parameters<
|
|
3999
|
-
data?:
|
|
5369
|
+
'GetModels'(
|
|
5370
|
+
parameters?: Parameters<Paths.GetModels.QueryParameters> | null,
|
|
5371
|
+
data?: any,
|
|
4000
5372
|
config?: AxiosRequestConfig
|
|
4001
|
-
): OperationResponse<Paths.
|
|
4002
|
-
/**
|
|
4003
|
-
* GetChatSession
|
|
4004
|
-
*/
|
|
4005
|
-
'GetChatSession'(
|
|
4006
|
-
parameters?: Parameters<Paths.GetChatSession.PathParameters> | null,
|
|
4007
|
-
data?: any,
|
|
4008
|
-
config?: AxiosRequestConfig
|
|
4009
|
-
): OperationResponse<Paths.GetChatSession.Responses.$200>
|
|
4010
|
-
/**
|
|
4011
|
-
* UpdateChatSession
|
|
4012
|
-
*/
|
|
4013
|
-
'UpdateChatSession'(
|
|
4014
|
-
parameters?: Parameters<Paths.UpdateChatSession.PathParameters> | null,
|
|
4015
|
-
data?: Paths.UpdateChatSession.RequestBody,
|
|
4016
|
-
config?: AxiosRequestConfig
|
|
4017
|
-
): OperationResponse<Paths.UpdateChatSession.Responses.$200>
|
|
4018
|
-
/**
|
|
4019
|
-
* DeleteChatSession
|
|
4020
|
-
*/
|
|
4021
|
-
'DeleteChatSession'(
|
|
4022
|
-
parameters?: Parameters<Paths.DeleteChatSession.PathParameters> | null,
|
|
4023
|
-
data?: any,
|
|
4024
|
-
config?: AxiosRequestConfig
|
|
4025
|
-
): OperationResponse<Paths.DeleteChatSession.Responses.$204>
|
|
4026
|
-
/**
|
|
4027
|
-
* GetChatSessionMessages
|
|
4028
|
-
*/
|
|
4029
|
-
'GetChatSessionMessages'(
|
|
4030
|
-
parameters?: Parameters<Paths.GetChatSessionMessages.PathParameters> | null,
|
|
4031
|
-
data?: any,
|
|
4032
|
-
config?: AxiosRequestConfig
|
|
4033
|
-
): OperationResponse<Paths.GetChatSessionMessages.Responses.$200>
|
|
4034
|
-
/**
|
|
4035
|
-
* CreateChatMessage
|
|
4036
|
-
*/
|
|
4037
|
-
'CreateChatMessage'(
|
|
4038
|
-
parameters?: Parameters<Paths.CreateChatMessage.PathParameters> | null,
|
|
4039
|
-
data?: Paths.CreateChatMessage.RequestBody,
|
|
4040
|
-
config?: AxiosRequestConfig
|
|
4041
|
-
): OperationResponse<Paths.CreateChatMessage.Responses.$200>
|
|
4042
|
-
/**
|
|
4043
|
-
* DeleteChatMessage
|
|
4044
|
-
*/
|
|
4045
|
-
'DeleteChatMessage'(
|
|
4046
|
-
parameters?: Parameters<Paths.DeleteChatMessage.PathParameters> | null,
|
|
4047
|
-
data?: any,
|
|
4048
|
-
config?: AxiosRequestConfig
|
|
4049
|
-
): OperationResponse<Paths.DeleteChatMessage.Responses.$204>
|
|
4050
|
-
/**
|
|
4051
|
-
* PublicChat
|
|
4052
|
-
*/
|
|
4053
|
-
'PublicChat'(
|
|
4054
|
-
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4055
|
-
data?: Paths.PublicChat.RequestBody,
|
|
4056
|
-
config?: AxiosRequestConfig
|
|
4057
|
-
): OperationResponse<Paths.PublicChat.Responses.$200>
|
|
4058
|
-
/**
|
|
4059
|
-
* CreateSessionFromThread
|
|
4060
|
-
*/
|
|
4061
|
-
'CreateSessionFromThread'(
|
|
4062
|
-
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4063
|
-
data?: Paths.CreateSessionFromThread.RequestBody,
|
|
4064
|
-
config?: AxiosRequestConfig
|
|
4065
|
-
): OperationResponse<Paths.CreateSessionFromThread.Responses.$200>
|
|
4066
|
-
/**
|
|
4067
|
-
* CreateMessageTask
|
|
4068
|
-
*/
|
|
4069
|
-
'CreateMessageTask'(
|
|
4070
|
-
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4071
|
-
data?: Paths.CreateMessageTask.RequestBody,
|
|
4072
|
-
config?: AxiosRequestConfig
|
|
4073
|
-
): OperationResponse<Paths.CreateMessageTask.Responses.$200>
|
|
4074
|
-
/**
|
|
4075
|
-
* UpdateOrgTask
|
|
4076
|
-
*/
|
|
4077
|
-
'UpdateOrgTask'(
|
|
4078
|
-
parameters?: Parameters<Paths.UpdateOrgTask.PathParameters> | null,
|
|
4079
|
-
data?: Paths.UpdateOrgTask.RequestBody,
|
|
4080
|
-
config?: AxiosRequestConfig
|
|
4081
|
-
): OperationResponse<Paths.UpdateOrgTask.Responses.$200>
|
|
4082
|
-
/**
|
|
4083
|
-
* CreateChatCompletion - Create a chat completion
|
|
4084
|
-
*/
|
|
4085
|
-
'CreateChatCompletion'(
|
|
4086
|
-
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4087
|
-
data?: Paths.CreateChatCompletion.RequestBody,
|
|
4088
|
-
config?: AxiosRequestConfig
|
|
4089
|
-
): OperationResponse<Paths.CreateChatCompletion.Responses.$200>
|
|
4090
|
-
/**
|
|
4091
|
-
* GetModels - Get available models, optionally filtered by type
|
|
4092
|
-
*/
|
|
4093
|
-
'GetModels'(
|
|
4094
|
-
parameters?: Parameters<Paths.GetModels.QueryParameters> | null,
|
|
4095
|
-
data?: any,
|
|
4096
|
-
config?: AxiosRequestConfig
|
|
4097
|
-
): OperationResponse<Paths.GetModels.Responses.$200>
|
|
5373
|
+
): OperationResponse<Paths.GetModels.Responses.$200>
|
|
4098
5374
|
/**
|
|
4099
5375
|
* GetTools - Get available tools for the organization/user
|
|
4100
5376
|
*/
|
|
@@ -4122,6 +5398,117 @@ export interface OperationMethods {
|
|
|
4122
5398
|
}
|
|
4123
5399
|
|
|
4124
5400
|
export interface PathsDictionary {
|
|
5401
|
+
['/waitlist']: {
|
|
5402
|
+
/**
|
|
5403
|
+
* ListWaitlist - List waitlist entries (admin only)
|
|
5404
|
+
*/
|
|
5405
|
+
'get'(
|
|
5406
|
+
parameters?: Parameters<Paths.ListWaitlist.QueryParameters> | null,
|
|
5407
|
+
data?: any,
|
|
5408
|
+
config?: AxiosRequestConfig
|
|
5409
|
+
): OperationResponse<Paths.ListWaitlist.Responses.$200>
|
|
5410
|
+
}
|
|
5411
|
+
['/waitlist/{waitlistId}']: {
|
|
5412
|
+
/**
|
|
5413
|
+
* GetWaitlistEntry - Get a specific waitlist entry by ID (admin only)
|
|
5414
|
+
*/
|
|
5415
|
+
'get'(
|
|
5416
|
+
parameters?: Parameters<Paths.GetWaitlistEntry.PathParameters> | null,
|
|
5417
|
+
data?: any,
|
|
5418
|
+
config?: AxiosRequestConfig
|
|
5419
|
+
): OperationResponse<Paths.GetWaitlistEntry.Responses.$200>
|
|
5420
|
+
/**
|
|
5421
|
+
* DeleteWaitlist - Delete a waitlist entry (admin only)
|
|
5422
|
+
*/
|
|
5423
|
+
'delete'(
|
|
5424
|
+
parameters?: Parameters<Paths.DeleteWaitlist.PathParameters> | null,
|
|
5425
|
+
data?: any,
|
|
5426
|
+
config?: AxiosRequestConfig
|
|
5427
|
+
): OperationResponse<Paths.DeleteWaitlist.Responses.$200>
|
|
5428
|
+
}
|
|
5429
|
+
['/waitlist/email/{email}']: {
|
|
5430
|
+
/**
|
|
5431
|
+
* GetWaitlistByEmail - Get a waitlist entry by email (admin only)
|
|
5432
|
+
*/
|
|
5433
|
+
'get'(
|
|
5434
|
+
parameters?: Parameters<Paths.GetWaitlistByEmail.PathParameters> | null,
|
|
5435
|
+
data?: any,
|
|
5436
|
+
config?: AxiosRequestConfig
|
|
5437
|
+
): OperationResponse<Paths.GetWaitlistByEmail.Responses.$200>
|
|
5438
|
+
}
|
|
5439
|
+
['/waitlist/{waitlistId}/approve']: {
|
|
5440
|
+
/**
|
|
5441
|
+
* ApproveWaitlist - Approve a waitlist entry (admin only)
|
|
5442
|
+
*/
|
|
5443
|
+
'post'(
|
|
5444
|
+
parameters?: Parameters<Paths.ApproveWaitlist.PathParameters> | null,
|
|
5445
|
+
data?: any,
|
|
5446
|
+
config?: AxiosRequestConfig
|
|
5447
|
+
): OperationResponse<Paths.ApproveWaitlist.Responses.$200>
|
|
5448
|
+
}
|
|
5449
|
+
['/waitlist/{waitlistId}/reject']: {
|
|
5450
|
+
/**
|
|
5451
|
+
* RejectWaitlist - Reject a waitlist entry (admin only)
|
|
5452
|
+
*/
|
|
5453
|
+
'post'(
|
|
5454
|
+
parameters?: Parameters<Paths.RejectWaitlist.PathParameters> | null,
|
|
5455
|
+
data?: any,
|
|
5456
|
+
config?: AxiosRequestConfig
|
|
5457
|
+
): OperationResponse<Paths.RejectWaitlist.Responses.$200>
|
|
5458
|
+
}
|
|
5459
|
+
['/waitlist/join']: {
|
|
5460
|
+
/**
|
|
5461
|
+
* JoinWaitlist - Add current user to waitlist (public endpoint, used during signup overflow)
|
|
5462
|
+
*/
|
|
5463
|
+
'post'(
|
|
5464
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5465
|
+
data?: Paths.JoinWaitlist.RequestBody,
|
|
5466
|
+
config?: AxiosRequestConfig
|
|
5467
|
+
): OperationResponse<Paths.JoinWaitlist.Responses.$201>
|
|
5468
|
+
}
|
|
5469
|
+
['/waitlist/availability']: {
|
|
5470
|
+
/**
|
|
5471
|
+
* CheckAvailability - Check if signup spots are available (public endpoint)
|
|
5472
|
+
* Returns information about remaining spots based on MAX_USERS env var
|
|
5473
|
+
*/
|
|
5474
|
+
'get'(
|
|
5475
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5476
|
+
data?: any,
|
|
5477
|
+
config?: AxiosRequestConfig
|
|
5478
|
+
): OperationResponse<Paths.CheckAvailability.Responses.$200>
|
|
5479
|
+
}
|
|
5480
|
+
['/waitlist/redeem']: {
|
|
5481
|
+
/**
|
|
5482
|
+
* RedeemReferralCode - Redeem a referral code to auto-approve waitlist entry (public endpoint)
|
|
5483
|
+
* Creates or updates waitlist entry with APPROVED status
|
|
5484
|
+
*/
|
|
5485
|
+
'post'(
|
|
5486
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5487
|
+
data?: Paths.RedeemReferralCode.RequestBody,
|
|
5488
|
+
config?: AxiosRequestConfig
|
|
5489
|
+
): OperationResponse<Paths.RedeemReferralCode.Responses.$200>
|
|
5490
|
+
}
|
|
5491
|
+
['/waitlist/referrals/generate']: {
|
|
5492
|
+
/**
|
|
5493
|
+
* GenerateReferralCode - Generate a new referral code for the authenticated user
|
|
5494
|
+
* Limit: Maximum 5 unused referral codes per user
|
|
5495
|
+
*/
|
|
5496
|
+
'post'(
|
|
5497
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5498
|
+
data?: any,
|
|
5499
|
+
config?: AxiosRequestConfig
|
|
5500
|
+
): OperationResponse<Paths.GenerateReferralCode.Responses.$200>
|
|
5501
|
+
}
|
|
5502
|
+
['/waitlist/referrals/remaining']: {
|
|
5503
|
+
/**
|
|
5504
|
+
* GetRemainingReferralCodes - Get count of remaining referral codes for the authenticated user
|
|
5505
|
+
*/
|
|
5506
|
+
'get'(
|
|
5507
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5508
|
+
data?: any,
|
|
5509
|
+
config?: AxiosRequestConfig
|
|
5510
|
+
): OperationResponse<Paths.GetRemainingReferralCodes.Responses.$200>
|
|
5511
|
+
}
|
|
4125
5512
|
['/users/signup']: {
|
|
4126
5513
|
/**
|
|
4127
5514
|
* UserSignup
|
|
@@ -4200,6 +5587,154 @@ export interface PathsDictionary {
|
|
|
4200
5587
|
config?: AxiosRequestConfig
|
|
4201
5588
|
): OperationResponse<Paths.ResendVerificationEmail.Responses.$200>
|
|
4202
5589
|
}
|
|
5590
|
+
['/users/change-password']: {
|
|
5591
|
+
/**
|
|
5592
|
+
* ChangePassword
|
|
5593
|
+
*/
|
|
5594
|
+
'post'(
|
|
5595
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5596
|
+
data?: Paths.ChangePassword.RequestBody,
|
|
5597
|
+
config?: AxiosRequestConfig
|
|
5598
|
+
): OperationResponse<Paths.ChangePassword.Responses.$200>
|
|
5599
|
+
}
|
|
5600
|
+
['/two-factor/status']: {
|
|
5601
|
+
/**
|
|
5602
|
+
* Get2FAStatus - Get 2FA status for the current user
|
|
5603
|
+
*/
|
|
5604
|
+
'get'(
|
|
5605
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5606
|
+
data?: any,
|
|
5607
|
+
config?: AxiosRequestConfig
|
|
5608
|
+
): OperationResponse<Paths.Get2FAStatus.Responses.$200>
|
|
5609
|
+
}
|
|
5610
|
+
['/two-factor/generate']: {
|
|
5611
|
+
/**
|
|
5612
|
+
* Generate2FA - Generate 2FA setup (QR code and secret)
|
|
5613
|
+
*/
|
|
5614
|
+
'post'(
|
|
5615
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5616
|
+
data?: any,
|
|
5617
|
+
config?: AxiosRequestConfig
|
|
5618
|
+
): OperationResponse<Paths.Generate2FA.Responses.$200>
|
|
5619
|
+
}
|
|
5620
|
+
['/two-factor/setup']: {
|
|
5621
|
+
/**
|
|
5622
|
+
* Setup2FA - Complete 2FA setup by verifying TOTP code
|
|
5623
|
+
*/
|
|
5624
|
+
'post'(
|
|
5625
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5626
|
+
data?: Paths.Setup2FA.RequestBody,
|
|
5627
|
+
config?: AxiosRequestConfig
|
|
5628
|
+
): OperationResponse<Paths.Setup2FA.Responses.$200>
|
|
5629
|
+
}
|
|
5630
|
+
['/two-factor/verify']: {
|
|
5631
|
+
/**
|
|
5632
|
+
* Verify2FA - Verify 2FA code and get elevated token
|
|
5633
|
+
*/
|
|
5634
|
+
'post'(
|
|
5635
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5636
|
+
data?: Paths.Verify2FA.RequestBody,
|
|
5637
|
+
config?: AxiosRequestConfig
|
|
5638
|
+
): OperationResponse<Paths.Verify2FA.Responses.$200>
|
|
5639
|
+
}
|
|
5640
|
+
['/two-factor/disable']: {
|
|
5641
|
+
/**
|
|
5642
|
+
* Disable2FA - Disable 2FA (requires elevated session)
|
|
5643
|
+
*/
|
|
5644
|
+
'post'(
|
|
5645
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5646
|
+
data?: Paths.Disable2FA.RequestBody,
|
|
5647
|
+
config?: AxiosRequestConfig
|
|
5648
|
+
): OperationResponse<Paths.Disable2FA.Responses.$200>
|
|
5649
|
+
}
|
|
5650
|
+
['/two-factor/regenerate-backup-codes']: {
|
|
5651
|
+
/**
|
|
5652
|
+
* RegenerateBackupCodes - Regenerate backup codes (requires elevated session)
|
|
5653
|
+
*/
|
|
5654
|
+
'post'(
|
|
5655
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5656
|
+
data?: Paths.RegenerateBackupCodes.RequestBody,
|
|
5657
|
+
config?: AxiosRequestConfig
|
|
5658
|
+
): OperationResponse<Paths.RegenerateBackupCodes.Responses.$200>
|
|
5659
|
+
}
|
|
5660
|
+
['/task-templates']: {
|
|
5661
|
+
/**
|
|
5662
|
+
* CreateTemplate - Create a new task template
|
|
5663
|
+
*
|
|
5664
|
+
* Create a new task template
|
|
5665
|
+
*/
|
|
5666
|
+
'post'(
|
|
5667
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5668
|
+
data?: Paths.CreateTemplate.RequestBody,
|
|
5669
|
+
config?: AxiosRequestConfig
|
|
5670
|
+
): OperationResponse<Paths.CreateTemplate.Responses.$200>
|
|
5671
|
+
/**
|
|
5672
|
+
* GetTemplates - Get all templates
|
|
5673
|
+
*
|
|
5674
|
+
* Get all task templates for the current organization
|
|
5675
|
+
*/
|
|
5676
|
+
'get'(
|
|
5677
|
+
parameters?: Parameters<Paths.GetTemplates.QueryParameters> | null,
|
|
5678
|
+
data?: any,
|
|
5679
|
+
config?: AxiosRequestConfig
|
|
5680
|
+
): OperationResponse<Paths.GetTemplates.Responses.$200>
|
|
5681
|
+
}
|
|
5682
|
+
['/task-templates/{id}']: {
|
|
5683
|
+
/**
|
|
5684
|
+
* GetTemplate - Get template by ID
|
|
5685
|
+
*
|
|
5686
|
+
* Get a specific template by ID
|
|
5687
|
+
*/
|
|
5688
|
+
'get'(
|
|
5689
|
+
parameters?: Parameters<Paths.GetTemplate.PathParameters> | null,
|
|
5690
|
+
data?: any,
|
|
5691
|
+
config?: AxiosRequestConfig
|
|
5692
|
+
): OperationResponse<Paths.GetTemplate.Responses.$200>
|
|
5693
|
+
/**
|
|
5694
|
+
* UpdateTemplate - Update template
|
|
5695
|
+
*
|
|
5696
|
+
* Update an existing template
|
|
5697
|
+
*/
|
|
5698
|
+
'put'(
|
|
5699
|
+
parameters?: Parameters<Paths.UpdateTemplate.PathParameters> | null,
|
|
5700
|
+
data?: Paths.UpdateTemplate.RequestBody,
|
|
5701
|
+
config?: AxiosRequestConfig
|
|
5702
|
+
): OperationResponse<Paths.UpdateTemplate.Responses.$200>
|
|
5703
|
+
/**
|
|
5704
|
+
* DeleteTemplate - Delete template
|
|
5705
|
+
*
|
|
5706
|
+
* Delete a template
|
|
5707
|
+
*/
|
|
5708
|
+
'delete'(
|
|
5709
|
+
parameters?: Parameters<Paths.DeleteTemplate.PathParameters> | null,
|
|
5710
|
+
data?: any,
|
|
5711
|
+
config?: AxiosRequestConfig
|
|
5712
|
+
): OperationResponse<Paths.DeleteTemplate.Responses.$204>
|
|
5713
|
+
}
|
|
5714
|
+
['/task-templates/{id}/create-tasks']: {
|
|
5715
|
+
/**
|
|
5716
|
+
* CreateTasks - Create tasks from template
|
|
5717
|
+
*
|
|
5718
|
+
* Create tasks from a template for a specific org user
|
|
5719
|
+
*/
|
|
5720
|
+
'post'(
|
|
5721
|
+
parameters?: Parameters<Paths.CreateTasks.PathParameters> | null,
|
|
5722
|
+
data?: Paths.CreateTasks.RequestBody,
|
|
5723
|
+
config?: AxiosRequestConfig
|
|
5724
|
+
): OperationResponse<Paths.CreateTasks.Responses.$200>
|
|
5725
|
+
}
|
|
5726
|
+
['/task-templates/onboarding/default']: {
|
|
5727
|
+
/**
|
|
5728
|
+
* GetDefaultOnboardingTemplate - Get default onboarding template
|
|
5729
|
+
*
|
|
5730
|
+
* Get the default onboarding template for the organization
|
|
5731
|
+
*/
|
|
5732
|
+
'get'(
|
|
5733
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5734
|
+
data?: any,
|
|
5735
|
+
config?: AxiosRequestConfig
|
|
5736
|
+
): OperationResponse<Paths.GetDefaultOnboardingTemplate.Responses.$200>
|
|
5737
|
+
}
|
|
4203
5738
|
['/slack/connect']: {
|
|
4204
5739
|
/**
|
|
4205
5740
|
* ConnectSlackAccount
|
|
@@ -4332,6 +5867,26 @@ export interface PathsDictionary {
|
|
|
4332
5867
|
config?: AxiosRequestConfig
|
|
4333
5868
|
): OperationResponse<Paths.GetAllUserSecretPaths.Responses.$200>
|
|
4334
5869
|
}
|
|
5870
|
+
['/password-reset/request']: {
|
|
5871
|
+
/**
|
|
5872
|
+
* RequestPasswordReset - Request a password reset by email
|
|
5873
|
+
*/
|
|
5874
|
+
'post'(
|
|
5875
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5876
|
+
data?: Paths.RequestPasswordReset.RequestBody,
|
|
5877
|
+
config?: AxiosRequestConfig
|
|
5878
|
+
): OperationResponse<Paths.RequestPasswordReset.Responses.$200>
|
|
5879
|
+
}
|
|
5880
|
+
['/password-reset/reset']: {
|
|
5881
|
+
/**
|
|
5882
|
+
* ResetPassword - Reset password using shared secret
|
|
5883
|
+
*/
|
|
5884
|
+
'post'(
|
|
5885
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5886
|
+
data?: Paths.ResetPassword.RequestBody,
|
|
5887
|
+
config?: AxiosRequestConfig
|
|
5888
|
+
): OperationResponse<Paths.ResetPassword.Responses.$200>
|
|
5889
|
+
}
|
|
4335
5890
|
['/organizations']: {
|
|
4336
5891
|
/**
|
|
4337
5892
|
* CreateOrganization
|
|
@@ -4462,7 +6017,109 @@ export interface PathsDictionary {
|
|
|
4462
6017
|
parameters?: Parameters<UnknownParamsObject> | null,
|
|
4463
6018
|
data?: any,
|
|
4464
6019
|
config?: AxiosRequestConfig
|
|
4465
|
-
): OperationResponse<Paths.GetAllUsages.Responses.$200>
|
|
6020
|
+
): OperationResponse<Paths.GetAllUsages.Responses.$200>
|
|
6021
|
+
}
|
|
6022
|
+
['/org-user-tasks']: {
|
|
6023
|
+
/**
|
|
6024
|
+
* CreateTask - Create a new task
|
|
6025
|
+
*
|
|
6026
|
+
* Create a new task for the current org user
|
|
6027
|
+
*/
|
|
6028
|
+
'post'(
|
|
6029
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6030
|
+
data?: Paths.CreateTask.RequestBody,
|
|
6031
|
+
config?: AxiosRequestConfig
|
|
6032
|
+
): OperationResponse<Paths.CreateTask.Responses.$200>
|
|
6033
|
+
/**
|
|
6034
|
+
* GetTasks - Get all tasks for current user
|
|
6035
|
+
*
|
|
6036
|
+
* Get all tasks for the current org user with optional filtering
|
|
6037
|
+
*/
|
|
6038
|
+
'get'(
|
|
6039
|
+
parameters?: Parameters<Paths.GetTasks.QueryParameters> | null,
|
|
6040
|
+
data?: any,
|
|
6041
|
+
config?: AxiosRequestConfig
|
|
6042
|
+
): OperationResponse<Paths.GetTasks.Responses.$200>
|
|
6043
|
+
}
|
|
6044
|
+
['/org-user-tasks/{id}']: {
|
|
6045
|
+
/**
|
|
6046
|
+
* GetTask - Get task by ID
|
|
6047
|
+
*
|
|
6048
|
+
* Get a specific task by ID
|
|
6049
|
+
*/
|
|
6050
|
+
'get'(
|
|
6051
|
+
parameters?: Parameters<Paths.GetTask.PathParameters> | null,
|
|
6052
|
+
data?: any,
|
|
6053
|
+
config?: AxiosRequestConfig
|
|
6054
|
+
): OperationResponse<Paths.GetTask.Responses.$200>
|
|
6055
|
+
/**
|
|
6056
|
+
* UpdateTask - Update task
|
|
6057
|
+
*
|
|
6058
|
+
* Update an existing task
|
|
6059
|
+
*/
|
|
6060
|
+
'put'(
|
|
6061
|
+
parameters?: Parameters<Paths.UpdateTask.PathParameters> | null,
|
|
6062
|
+
data?: Paths.UpdateTask.RequestBody,
|
|
6063
|
+
config?: AxiosRequestConfig
|
|
6064
|
+
): OperationResponse<Paths.UpdateTask.Responses.$200>
|
|
6065
|
+
/**
|
|
6066
|
+
* DeleteTask - Delete task
|
|
6067
|
+
*
|
|
6068
|
+
* Delete a task
|
|
6069
|
+
*/
|
|
6070
|
+
'delete'(
|
|
6071
|
+
parameters?: Parameters<Paths.DeleteTask.PathParameters> | null,
|
|
6072
|
+
data?: any,
|
|
6073
|
+
config?: AxiosRequestConfig
|
|
6074
|
+
): OperationResponse<Paths.DeleteTask.Responses.$204>
|
|
6075
|
+
}
|
|
6076
|
+
['/org-user-tasks/{id}/complete']: {
|
|
6077
|
+
/**
|
|
6078
|
+
* MarkCompleted - Mark task as completed
|
|
6079
|
+
*
|
|
6080
|
+
* Mark a task as completed (with optional force flag to skip check validation)
|
|
6081
|
+
*/
|
|
6082
|
+
'post'(
|
|
6083
|
+
parameters?: Parameters<Paths.MarkCompleted.PathParameters> | null,
|
|
6084
|
+
data?: Paths.MarkCompleted.RequestBody,
|
|
6085
|
+
config?: AxiosRequestConfig
|
|
6086
|
+
): OperationResponse<Paths.MarkCompleted.Responses.$200>
|
|
6087
|
+
}
|
|
6088
|
+
['/org-user-tasks/{id}/run-checks']: {
|
|
6089
|
+
/**
|
|
6090
|
+
* RunChecks - Run task checks
|
|
6091
|
+
*
|
|
6092
|
+
* Run checks for a task to validate completion requirements
|
|
6093
|
+
*/
|
|
6094
|
+
'post'(
|
|
6095
|
+
parameters?: Parameters<Paths.RunChecks.PathParameters> | null,
|
|
6096
|
+
data?: any,
|
|
6097
|
+
config?: AxiosRequestConfig
|
|
6098
|
+
): OperationResponse<Paths.RunChecks.Responses.$200>
|
|
6099
|
+
}
|
|
6100
|
+
['/org-user-tasks/{id}/comments']: {
|
|
6101
|
+
/**
|
|
6102
|
+
* AddComment - Add comment to task
|
|
6103
|
+
*
|
|
6104
|
+
* Add a comment to a task
|
|
6105
|
+
*/
|
|
6106
|
+
'post'(
|
|
6107
|
+
parameters?: Parameters<Paths.AddComment.PathParameters> | null,
|
|
6108
|
+
data?: Paths.AddComment.RequestBody,
|
|
6109
|
+
config?: AxiosRequestConfig
|
|
6110
|
+
): OperationResponse<Paths.AddComment.Responses.$204>
|
|
6111
|
+
}
|
|
6112
|
+
['/org-user-tasks/{id}/comments/{commentId}']: {
|
|
6113
|
+
/**
|
|
6114
|
+
* DeleteComment - Delete comment from task
|
|
6115
|
+
*
|
|
6116
|
+
* Delete a comment from a task (only by comment owner)
|
|
6117
|
+
*/
|
|
6118
|
+
'delete'(
|
|
6119
|
+
parameters?: Parameters<Paths.DeleteComment.PathParameters> | null,
|
|
6120
|
+
data?: any,
|
|
6121
|
+
config?: AxiosRequestConfig
|
|
6122
|
+
): OperationResponse<Paths.DeleteComment.Responses.$204>
|
|
4466
6123
|
}
|
|
4467
6124
|
['/org-user-mcp']: {
|
|
4468
6125
|
/**
|
|
@@ -4508,6 +6165,17 @@ export interface PathsDictionary {
|
|
|
4508
6165
|
config?: AxiosRequestConfig
|
|
4509
6166
|
): OperationResponse<Paths.DeleteOrgUserMcp.Responses.$204>
|
|
4510
6167
|
}
|
|
6168
|
+
['/org-user-mcp/auth-check']: {
|
|
6169
|
+
/**
|
|
6170
|
+
* ValidateAuthConfig - Validate authentication configuration
|
|
6171
|
+
* Tests if the provided auth config can successfully authenticate
|
|
6172
|
+
*/
|
|
6173
|
+
'post'(
|
|
6174
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6175
|
+
data?: Paths.ValidateAuthConfig.RequestBody,
|
|
6176
|
+
config?: AxiosRequestConfig
|
|
6177
|
+
): OperationResponse<Paths.ValidateAuthConfig.Responses.$200>
|
|
6178
|
+
}
|
|
4511
6179
|
['/org-services']: {
|
|
4512
6180
|
/**
|
|
4513
6181
|
* GetOrgServices
|
|
@@ -4898,6 +6566,118 @@ export interface PathsDictionary {
|
|
|
4898
6566
|
config?: AxiosRequestConfig
|
|
4899
6567
|
): OperationResponse<Paths.ProxyGetModels.Responses.$200>
|
|
4900
6568
|
}
|
|
6569
|
+
['/chat/sessions']: {
|
|
6570
|
+
/**
|
|
6571
|
+
* GetChatSessions
|
|
6572
|
+
*/
|
|
6573
|
+
'get'(
|
|
6574
|
+
parameters?: Parameters<Paths.GetChatSessions.QueryParameters> | null,
|
|
6575
|
+
data?: any,
|
|
6576
|
+
config?: AxiosRequestConfig
|
|
6577
|
+
): OperationResponse<Paths.GetChatSessions.Responses.$200>
|
|
6578
|
+
/**
|
|
6579
|
+
* CreateChatSession
|
|
6580
|
+
*/
|
|
6581
|
+
'post'(
|
|
6582
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6583
|
+
data?: Paths.CreateChatSession.RequestBody,
|
|
6584
|
+
config?: AxiosRequestConfig
|
|
6585
|
+
): OperationResponse<Paths.CreateChatSession.Responses.$200>
|
|
6586
|
+
}
|
|
6587
|
+
['/chat/sessions/{sessionId}']: {
|
|
6588
|
+
/**
|
|
6589
|
+
* GetChatSession
|
|
6590
|
+
*/
|
|
6591
|
+
'get'(
|
|
6592
|
+
parameters?: Parameters<Paths.GetChatSession.PathParameters> | null,
|
|
6593
|
+
data?: any,
|
|
6594
|
+
config?: AxiosRequestConfig
|
|
6595
|
+
): OperationResponse<Paths.GetChatSession.Responses.$200>
|
|
6596
|
+
/**
|
|
6597
|
+
* UpdateChatSession
|
|
6598
|
+
*/
|
|
6599
|
+
'put'(
|
|
6600
|
+
parameters?: Parameters<Paths.UpdateChatSession.PathParameters> | null,
|
|
6601
|
+
data?: Paths.UpdateChatSession.RequestBody,
|
|
6602
|
+
config?: AxiosRequestConfig
|
|
6603
|
+
): OperationResponse<Paths.UpdateChatSession.Responses.$200>
|
|
6604
|
+
/**
|
|
6605
|
+
* DeleteChatSession
|
|
6606
|
+
*/
|
|
6607
|
+
'delete'(
|
|
6608
|
+
parameters?: Parameters<Paths.DeleteChatSession.PathParameters> | null,
|
|
6609
|
+
data?: any,
|
|
6610
|
+
config?: AxiosRequestConfig
|
|
6611
|
+
): OperationResponse<Paths.DeleteChatSession.Responses.$204>
|
|
6612
|
+
}
|
|
6613
|
+
['/chat/sessions/{sessionId}/messages']: {
|
|
6614
|
+
/**
|
|
6615
|
+
* GetChatSessionMessages
|
|
6616
|
+
*/
|
|
6617
|
+
'get'(
|
|
6618
|
+
parameters?: Parameters<Paths.GetChatSessionMessages.PathParameters> | null,
|
|
6619
|
+
data?: any,
|
|
6620
|
+
config?: AxiosRequestConfig
|
|
6621
|
+
): OperationResponse<Paths.GetChatSessionMessages.Responses.$200>
|
|
6622
|
+
/**
|
|
6623
|
+
* CreateChatMessage
|
|
6624
|
+
*/
|
|
6625
|
+
'post'(
|
|
6626
|
+
parameters?: Parameters<Paths.CreateChatMessage.PathParameters> | null,
|
|
6627
|
+
data?: Paths.CreateChatMessage.RequestBody,
|
|
6628
|
+
config?: AxiosRequestConfig
|
|
6629
|
+
): OperationResponse<Paths.CreateChatMessage.Responses.$200>
|
|
6630
|
+
}
|
|
6631
|
+
['/chat/sessions/{sessionId}/messages/{messageId}']: {
|
|
6632
|
+
/**
|
|
6633
|
+
* DeleteChatMessage
|
|
6634
|
+
*/
|
|
6635
|
+
'delete'(
|
|
6636
|
+
parameters?: Parameters<Paths.DeleteChatMessage.PathParameters> | null,
|
|
6637
|
+
data?: any,
|
|
6638
|
+
config?: AxiosRequestConfig
|
|
6639
|
+
): OperationResponse<Paths.DeleteChatMessage.Responses.$204>
|
|
6640
|
+
}
|
|
6641
|
+
['/chat/public']: {
|
|
6642
|
+
/**
|
|
6643
|
+
* PublicChat
|
|
6644
|
+
*/
|
|
6645
|
+
'post'(
|
|
6646
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6647
|
+
data?: Paths.PublicChat.RequestBody,
|
|
6648
|
+
config?: AxiosRequestConfig
|
|
6649
|
+
): OperationResponse<Paths.PublicChat.Responses.$200>
|
|
6650
|
+
}
|
|
6651
|
+
['/chat/sessions/from-thread']: {
|
|
6652
|
+
/**
|
|
6653
|
+
* CreateSessionFromThread
|
|
6654
|
+
*/
|
|
6655
|
+
'post'(
|
|
6656
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6657
|
+
data?: Paths.CreateSessionFromThread.RequestBody,
|
|
6658
|
+
config?: AxiosRequestConfig
|
|
6659
|
+
): OperationResponse<Paths.CreateSessionFromThread.Responses.$200>
|
|
6660
|
+
}
|
|
6661
|
+
['/chat/tasks']: {
|
|
6662
|
+
/**
|
|
6663
|
+
* CreateMessageTask
|
|
6664
|
+
*/
|
|
6665
|
+
'post'(
|
|
6666
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6667
|
+
data?: Paths.CreateMessageTask.RequestBody,
|
|
6668
|
+
config?: AxiosRequestConfig
|
|
6669
|
+
): OperationResponse<Paths.CreateMessageTask.Responses.$200>
|
|
6670
|
+
}
|
|
6671
|
+
['/chat/tasks/{taskId}']: {
|
|
6672
|
+
/**
|
|
6673
|
+
* UpdateOrgTask
|
|
6674
|
+
*/
|
|
6675
|
+
'put'(
|
|
6676
|
+
parameters?: Parameters<Paths.UpdateOrgTask.PathParameters> | null,
|
|
6677
|
+
data?: Paths.UpdateOrgTask.RequestBody,
|
|
6678
|
+
config?: AxiosRequestConfig
|
|
6679
|
+
): OperationResponse<Paths.UpdateOrgTask.Responses.$200>
|
|
6680
|
+
}
|
|
4901
6681
|
['/health']: {
|
|
4902
6682
|
/**
|
|
4903
6683
|
* GetHealth - Basic health check
|
|
@@ -4946,6 +6726,47 @@ export interface PathsDictionary {
|
|
|
4946
6726
|
config?: AxiosRequestConfig
|
|
4947
6727
|
): OperationResponse<Paths.GetLiveness.Responses.$200>
|
|
4948
6728
|
}
|
|
6729
|
+
['/mcp-auth/probe']: {
|
|
6730
|
+
/**
|
|
6731
|
+
* ProbeMcpServer - Probe an MCP server URL to detect OAuth capabilities
|
|
6732
|
+
*/
|
|
6733
|
+
'post'(
|
|
6734
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6735
|
+
data?: Paths.ProbeMcpServer.RequestBody,
|
|
6736
|
+
config?: AxiosRequestConfig
|
|
6737
|
+
): OperationResponse<Paths.ProbeMcpServer.Responses.$200>
|
|
6738
|
+
}
|
|
6739
|
+
['/mcp-auth/initiate']: {
|
|
6740
|
+
/**
|
|
6741
|
+
* InitiateOAuthFlow - Initiate OAuth flow for MCP server authentication
|
|
6742
|
+
*/
|
|
6743
|
+
'post'(
|
|
6744
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6745
|
+
data?: Paths.InitiateOAuthFlow.RequestBody,
|
|
6746
|
+
config?: AxiosRequestConfig
|
|
6747
|
+
): OperationResponse<Paths.InitiateOAuthFlow.Responses.$200>
|
|
6748
|
+
}
|
|
6749
|
+
['/mcp-auth/callback']: {
|
|
6750
|
+
/**
|
|
6751
|
+
* HandleOAuthCallback - Handle OAuth callback - Complete the OAuth flow
|
|
6752
|
+
* Called by the frontend after OAuth provider redirects back
|
|
6753
|
+
*/
|
|
6754
|
+
'post'(
|
|
6755
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
6756
|
+
data?: Paths.HandleOAuthCallback.RequestBody,
|
|
6757
|
+
config?: AxiosRequestConfig
|
|
6758
|
+
): OperationResponse<Paths.HandleOAuthCallback.Responses.$200>
|
|
6759
|
+
}
|
|
6760
|
+
['/mcp-auth/status/{secretName}']: {
|
|
6761
|
+
/**
|
|
6762
|
+
* CheckAuthStatus - Check authentication status for a secret
|
|
6763
|
+
*/
|
|
6764
|
+
'get'(
|
|
6765
|
+
parameters?: Parameters<Paths.CheckAuthStatus.QueryParameters & Paths.CheckAuthStatus.PathParameters> | null,
|
|
6766
|
+
data?: any,
|
|
6767
|
+
config?: AxiosRequestConfig
|
|
6768
|
+
): OperationResponse<Paths.CheckAuthStatus.Responses.$200>
|
|
6769
|
+
}
|
|
4949
6770
|
['/github/token-status']: {
|
|
4950
6771
|
/**
|
|
4951
6772
|
* GetTokenStatus
|
|
@@ -5314,118 +7135,6 @@ export interface PathsDictionary {
|
|
|
5314
7135
|
config?: AxiosRequestConfig
|
|
5315
7136
|
): OperationResponse<Paths.CleanupSessions.Responses.$200>
|
|
5316
7137
|
}
|
|
5317
|
-
['/chat/sessions']: {
|
|
5318
|
-
/**
|
|
5319
|
-
* GetChatSessions
|
|
5320
|
-
*/
|
|
5321
|
-
'get'(
|
|
5322
|
-
parameters?: Parameters<Paths.GetChatSessions.QueryParameters> | null,
|
|
5323
|
-
data?: any,
|
|
5324
|
-
config?: AxiosRequestConfig
|
|
5325
|
-
): OperationResponse<Paths.GetChatSessions.Responses.$200>
|
|
5326
|
-
/**
|
|
5327
|
-
* CreateChatSession
|
|
5328
|
-
*/
|
|
5329
|
-
'post'(
|
|
5330
|
-
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5331
|
-
data?: Paths.CreateChatSession.RequestBody,
|
|
5332
|
-
config?: AxiosRequestConfig
|
|
5333
|
-
): OperationResponse<Paths.CreateChatSession.Responses.$200>
|
|
5334
|
-
}
|
|
5335
|
-
['/chat/sessions/{sessionId}']: {
|
|
5336
|
-
/**
|
|
5337
|
-
* GetChatSession
|
|
5338
|
-
*/
|
|
5339
|
-
'get'(
|
|
5340
|
-
parameters?: Parameters<Paths.GetChatSession.PathParameters> | null,
|
|
5341
|
-
data?: any,
|
|
5342
|
-
config?: AxiosRequestConfig
|
|
5343
|
-
): OperationResponse<Paths.GetChatSession.Responses.$200>
|
|
5344
|
-
/**
|
|
5345
|
-
* UpdateChatSession
|
|
5346
|
-
*/
|
|
5347
|
-
'put'(
|
|
5348
|
-
parameters?: Parameters<Paths.UpdateChatSession.PathParameters> | null,
|
|
5349
|
-
data?: Paths.UpdateChatSession.RequestBody,
|
|
5350
|
-
config?: AxiosRequestConfig
|
|
5351
|
-
): OperationResponse<Paths.UpdateChatSession.Responses.$200>
|
|
5352
|
-
/**
|
|
5353
|
-
* DeleteChatSession
|
|
5354
|
-
*/
|
|
5355
|
-
'delete'(
|
|
5356
|
-
parameters?: Parameters<Paths.DeleteChatSession.PathParameters> | null,
|
|
5357
|
-
data?: any,
|
|
5358
|
-
config?: AxiosRequestConfig
|
|
5359
|
-
): OperationResponse<Paths.DeleteChatSession.Responses.$204>
|
|
5360
|
-
}
|
|
5361
|
-
['/chat/sessions/{sessionId}/messages']: {
|
|
5362
|
-
/**
|
|
5363
|
-
* GetChatSessionMessages
|
|
5364
|
-
*/
|
|
5365
|
-
'get'(
|
|
5366
|
-
parameters?: Parameters<Paths.GetChatSessionMessages.PathParameters> | null,
|
|
5367
|
-
data?: any,
|
|
5368
|
-
config?: AxiosRequestConfig
|
|
5369
|
-
): OperationResponse<Paths.GetChatSessionMessages.Responses.$200>
|
|
5370
|
-
/**
|
|
5371
|
-
* CreateChatMessage
|
|
5372
|
-
*/
|
|
5373
|
-
'post'(
|
|
5374
|
-
parameters?: Parameters<Paths.CreateChatMessage.PathParameters> | null,
|
|
5375
|
-
data?: Paths.CreateChatMessage.RequestBody,
|
|
5376
|
-
config?: AxiosRequestConfig
|
|
5377
|
-
): OperationResponse<Paths.CreateChatMessage.Responses.$200>
|
|
5378
|
-
}
|
|
5379
|
-
['/chat/sessions/{sessionId}/messages/{messageId}']: {
|
|
5380
|
-
/**
|
|
5381
|
-
* DeleteChatMessage
|
|
5382
|
-
*/
|
|
5383
|
-
'delete'(
|
|
5384
|
-
parameters?: Parameters<Paths.DeleteChatMessage.PathParameters> | null,
|
|
5385
|
-
data?: any,
|
|
5386
|
-
config?: AxiosRequestConfig
|
|
5387
|
-
): OperationResponse<Paths.DeleteChatMessage.Responses.$204>
|
|
5388
|
-
}
|
|
5389
|
-
['/chat/public']: {
|
|
5390
|
-
/**
|
|
5391
|
-
* PublicChat
|
|
5392
|
-
*/
|
|
5393
|
-
'post'(
|
|
5394
|
-
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5395
|
-
data?: Paths.PublicChat.RequestBody,
|
|
5396
|
-
config?: AxiosRequestConfig
|
|
5397
|
-
): OperationResponse<Paths.PublicChat.Responses.$200>
|
|
5398
|
-
}
|
|
5399
|
-
['/chat/sessions/from-thread']: {
|
|
5400
|
-
/**
|
|
5401
|
-
* CreateSessionFromThread
|
|
5402
|
-
*/
|
|
5403
|
-
'post'(
|
|
5404
|
-
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5405
|
-
data?: Paths.CreateSessionFromThread.RequestBody,
|
|
5406
|
-
config?: AxiosRequestConfig
|
|
5407
|
-
): OperationResponse<Paths.CreateSessionFromThread.Responses.$200>
|
|
5408
|
-
}
|
|
5409
|
-
['/chat/tasks']: {
|
|
5410
|
-
/**
|
|
5411
|
-
* CreateMessageTask
|
|
5412
|
-
*/
|
|
5413
|
-
'post'(
|
|
5414
|
-
parameters?: Parameters<UnknownParamsObject> | null,
|
|
5415
|
-
data?: Paths.CreateMessageTask.RequestBody,
|
|
5416
|
-
config?: AxiosRequestConfig
|
|
5417
|
-
): OperationResponse<Paths.CreateMessageTask.Responses.$200>
|
|
5418
|
-
}
|
|
5419
|
-
['/chat/tasks/{taskId}']: {
|
|
5420
|
-
/**
|
|
5421
|
-
* UpdateOrgTask
|
|
5422
|
-
*/
|
|
5423
|
-
'put'(
|
|
5424
|
-
parameters?: Parameters<Paths.UpdateOrgTask.PathParameters> | null,
|
|
5425
|
-
data?: Paths.UpdateOrgTask.RequestBody,
|
|
5426
|
-
config?: AxiosRequestConfig
|
|
5427
|
-
): OperationResponse<Paths.UpdateOrgTask.Responses.$200>
|
|
5428
|
-
}
|
|
5429
7138
|
['/ai/chat/completions']: {
|
|
5430
7139
|
/**
|
|
5431
7140
|
* CreateChatCompletion - Create a chat completion
|
|
@@ -5483,8 +7192,12 @@ export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
|
|
|
5483
7192
|
|
|
5484
7193
|
export type AICompletionOptions = Components.Schemas.AICompletionOptions;
|
|
5485
7194
|
export type AIEmbeddingOptions = Components.Schemas.AIEmbeddingOptions;
|
|
7195
|
+
export type AddCommentRequest = Components.Schemas.AddCommentRequest;
|
|
7196
|
+
export type ApiKeyAuthConfig = Components.Schemas.ApiKeyAuthConfig;
|
|
5486
7197
|
export type ApproveSessionResponse = Components.Schemas.ApproveSessionResponse;
|
|
7198
|
+
export type AuthStatusResponse = Components.Schemas.AuthStatusResponse;
|
|
5487
7199
|
export type AutoReloadSettings = Components.Schemas.AutoReloadSettings;
|
|
7200
|
+
export type BasicAuthConfig = Components.Schemas.BasicAuthConfig;
|
|
5488
7201
|
export type ChatCompletionResponse = Components.Schemas.ChatCompletionResponse;
|
|
5489
7202
|
export type CliLoginSessionStatus = Components.Schemas.CliLoginSessionStatus;
|
|
5490
7203
|
export type CompletionResponse = Components.Schemas.CompletionResponse;
|
|
@@ -5496,6 +7209,8 @@ export type CreateSecretRequest = Components.Schemas.CreateSecretRequest;
|
|
|
5496
7209
|
export type CreateSessionFromThreadRequest = Components.Schemas.CreateSessionFromThreadRequest;
|
|
5497
7210
|
export type CreateSessionRequest = Components.Schemas.CreateSessionRequest;
|
|
5498
7211
|
export type CreateSessionResponse = Components.Schemas.CreateSessionResponse;
|
|
7212
|
+
export type CreateTasksRequest = Components.Schemas.CreateTasksRequest;
|
|
7213
|
+
export type CreateTasksResponse = Components.Schemas.CreateTasksResponse;
|
|
5499
7214
|
export type CreditBalance = Components.Schemas.CreditBalance;
|
|
5500
7215
|
export type CreditBalanceResponse = Components.Schemas.CreditBalanceResponse;
|
|
5501
7216
|
export type CreditPurchaseRequest = Components.Schemas.CreditPurchaseRequest;
|
|
@@ -5509,16 +7224,24 @@ export type DefaultSelection_Prisma__36_OrgPaymentMethodPayload_ = Components.Sc
|
|
|
5509
7224
|
export type DefaultSelection_Prisma__36_OrgUserChatSessionPayload_ = Components.Schemas.DefaultSelectionPrisma36OrgUserChatSessionPayload;
|
|
5510
7225
|
export type DefaultSelection_Prisma__36_OrgUserCreditPurchasePayload_ = Components.Schemas.DefaultSelectionPrisma36OrgUserCreditPurchasePayload;
|
|
5511
7226
|
export type DefaultSelection_Prisma__36_OrgUserMcpPayload_ = Components.Schemas.DefaultSelectionPrisma36OrgUserMcpPayload;
|
|
7227
|
+
export type DefaultSelection_Prisma__36_OrgUserTaskPayload_ = Components.Schemas.DefaultSelectionPrisma36OrgUserTaskPayload;
|
|
5512
7228
|
export type DefaultSelection_Prisma__36_OrgWorkerPayload_ = Components.Schemas.DefaultSelectionPrisma36OrgWorkerPayload;
|
|
5513
7229
|
export type DefaultSelection_Prisma__36_OrganizationPayload_ = Components.Schemas.DefaultSelectionPrisma36OrganizationPayload;
|
|
7230
|
+
export type DefaultSelection_Prisma__36_TaskCheckPayload_ = Components.Schemas.DefaultSelectionPrisma36TaskCheckPayload;
|
|
7231
|
+
export type DefaultSelection_Prisma__36_TaskTemplatePayload_ = Components.Schemas.DefaultSelectionPrisma36TaskTemplatePayload;
|
|
5514
7232
|
export type DefaultSelection_Prisma__36_UserCreditPurchasePayload_ = Components.Schemas.DefaultSelectionPrisma36UserCreditPurchasePayload;
|
|
5515
7233
|
export type DefaultSelection_Prisma__36_UserPaymentMethodPayload_ = Components.Schemas.DefaultSelectionPrisma36UserPaymentMethodPayload;
|
|
7234
|
+
export type ElevationRequest = Components.Schemas.ElevationRequest;
|
|
5516
7235
|
export type Embeddable_any_ = Components.Schemas.EmbeddableAny;
|
|
5517
7236
|
export type EmbeddingBase_any_ = Components.Schemas.EmbeddingBaseAny;
|
|
5518
7237
|
export type EmbeddingResponse = Components.Schemas.EmbeddingResponse;
|
|
5519
7238
|
export type FilterType_Prisma_OrgEmbeddingUpdateWithoutOrganizationInput_OrgEmbeddingOptionalFields_OrgEmbeddingExcludedFields_ = Components.Schemas.FilterTypePrismaOrgEmbeddingUpdateWithoutOrganizationInputOrgEmbeddingOptionalFieldsOrgEmbeddingExcludedFields;
|
|
5520
7239
|
export type FilterType_Prisma_OrgFileUpdateWithoutOrganizationInput_OrgFileOptionalFields_OrgFileExcludedFields_ = Components.Schemas.FilterTypePrismaOrgFileUpdateWithoutOrganizationInputOrgFileOptionalFieldsOrgFileExcludedFields;
|
|
7240
|
+
export type Generate2FAResponse = Components.Schemas.Generate2FAResponse;
|
|
7241
|
+
export type Get2FAStatusResponse = Components.Schemas.Get2FAStatusResponse;
|
|
5521
7242
|
export type HealthCheckResponse = Components.Schemas.HealthCheckResponse;
|
|
7243
|
+
export type InitiateOAuthRequest = Components.Schemas.InitiateOAuthRequest;
|
|
7244
|
+
export type InitiateOAuthResponse = Components.Schemas.InitiateOAuthResponse;
|
|
5522
7245
|
export type InputJsonArray = Components.Schemas.InputJsonArray;
|
|
5523
7246
|
export type InputJsonObject = Components.Schemas.InputJsonObject;
|
|
5524
7247
|
export type InputJsonValue = Components.Schemas.InputJsonValue;
|
|
@@ -5526,12 +7249,21 @@ export type JsonArray = Components.Schemas.JsonArray;
|
|
|
5526
7249
|
export type JsonObject = Components.Schemas.JsonObject;
|
|
5527
7250
|
export type JsonValue = Components.Schemas.JsonValue;
|
|
5528
7251
|
export type LivenessResponse = Components.Schemas.LivenessResponse;
|
|
7252
|
+
export type MarkCompletedRequest = Components.Schemas.MarkCompletedRequest;
|
|
7253
|
+
export type MarkCompletedResponse = Components.Schemas.MarkCompletedResponse;
|
|
7254
|
+
export type McpAuthConfig = Components.Schemas.McpAuthConfig;
|
|
5529
7255
|
export type Message = Components.Schemas.Message;
|
|
5530
7256
|
export type MessageContent = Components.Schemas.MessageContent;
|
|
7257
|
+
export type N$16_Enums_CheckState = Components.Schemas.N$16EnumsCheckState;
|
|
5531
7258
|
export type N$16_Enums_CliLoginSessionStatus = Components.Schemas.N$16EnumsCliLoginSessionStatus;
|
|
5532
7259
|
export type N$16_Enums_FundingMethod = Components.Schemas.N$16EnumsFundingMethod;
|
|
7260
|
+
export type N$16_Enums_TaskState = Components.Schemas.N$16EnumsTaskState;
|
|
5533
7261
|
export type N$16_Enums_UserRole = Components.Schemas.N$16EnumsUserRole;
|
|
7262
|
+
export type N$16_Enums_WaitlistStatus = Components.Schemas.N$16EnumsWaitlistStatus;
|
|
7263
|
+
export type NoAuthConfig = Components.Schemas.NoAuthConfig;
|
|
5534
7264
|
export type NullablePartial_Pick_Prisma_OrganizationUncheckedUpdateWithoutUsersInput_OrganizationOptionalFields__ = Components.Schemas.NullablePartialPickPrismaOrganizationUncheckedUpdateWithoutUsersInputOrganizationOptionalFields;
|
|
7265
|
+
export type OAuth21DynamicAuthConfig = Components.Schemas.OAuth21DynamicAuthConfig;
|
|
7266
|
+
export type OAuth21StaticAuthConfig = Components.Schemas.OAuth21StaticAuthConfig;
|
|
5535
7267
|
export type Omit_EmbedSource_output_ = Components.Schemas.OmitEmbedSourceOutput;
|
|
5536
7268
|
export type Omit_PartialBy_Prisma_OrgEmbeddingUpdateWithoutOrganizationInput_OrgEmbeddingOptionalFields__OrgEmbeddingExcludedFields_ = Components.Schemas.OmitPartialByPrismaOrgEmbeddingUpdateWithoutOrganizationInputOrgEmbeddingOptionalFieldsOrgEmbeddingExcludedFields;
|
|
5537
7269
|
export type Omit_PartialBy_Prisma_OrgFileUpdateWithoutOrganizationInput_OrgFileOptionalFields__OrgFileExcludedFields_ = Components.Schemas.OmitPartialByPrismaOrgFileUpdateWithoutOrganizationInputOrgFileOptionalFieldsOrgFileExcludedFields;
|
|
@@ -5552,6 +7284,10 @@ export type OrgUserChatCompletion = Components.Schemas.OrgUserChatCompletion;
|
|
|
5552
7284
|
export type OrgUserChatSession = Components.Schemas.OrgUserChatSession;
|
|
5553
7285
|
export type OrgUserCreditPurchase = Components.Schemas.OrgUserCreditPurchase;
|
|
5554
7286
|
export type OrgUserMcp = Components.Schemas.OrgUserMcp;
|
|
7287
|
+
export type OrgUserTask = Components.Schemas.OrgUserTask;
|
|
7288
|
+
export type OrgUserTaskCreateData = Components.Schemas.OrgUserTaskCreateData;
|
|
7289
|
+
export type OrgUserTaskUpdateData = Components.Schemas.OrgUserTaskUpdateData;
|
|
7290
|
+
export type OrgUserTaskWithRelations = Components.Schemas.OrgUserTaskWithRelations;
|
|
5555
7291
|
export type OrgWorker = Components.Schemas.OrgWorker;
|
|
5556
7292
|
export type Organization = Components.Schemas.Organization;
|
|
5557
7293
|
export type OrganizationUpdateData = Components.Schemas.OrganizationUpdateData;
|
|
@@ -5573,15 +7309,34 @@ export type Prisma_NullableStringFieldUpdateOperationsInput = Components.Schemas
|
|
|
5573
7309
|
export type Prisma_OrgEmbeddingCreateWithoutOrganizationInput = Components.Schemas.PrismaOrgEmbeddingCreateWithoutOrganizationInput;
|
|
5574
7310
|
export type Prisma_OrgFileCreateWithoutOrganizationInput = Components.Schemas.PrismaOrgFileCreateWithoutOrganizationInput;
|
|
5575
7311
|
export type Prisma_StringFieldUpdateOperationsInput = Components.Schemas.PrismaStringFieldUpdateOperationsInput;
|
|
7312
|
+
export type ProbeRequest = Components.Schemas.ProbeRequest;
|
|
7313
|
+
export type ProbeResponse = Components.Schemas.ProbeResponse;
|
|
5576
7314
|
export type PublicChatRequest = Components.Schemas.PublicChatRequest;
|
|
5577
7315
|
export type PurchaseHistoryResponse = Components.Schemas.PurchaseHistoryResponse;
|
|
5578
7316
|
export type ReadinessResponse = Components.Schemas.ReadinessResponse;
|
|
5579
7317
|
export type Record_string_any_ = Components.Schemas.RecordStringAny;
|
|
7318
|
+
export type RequestPasswordResetRequest = Components.Schemas.RequestPasswordResetRequest;
|
|
7319
|
+
export type RequestPasswordResetResponse = Components.Schemas.RequestPasswordResetResponse;
|
|
7320
|
+
export type ResetPasswordRequest = Components.Schemas.ResetPasswordRequest;
|
|
7321
|
+
export type ResetPasswordResponse = Components.Schemas.ResetPasswordResponse;
|
|
7322
|
+
export type RunChecksResponse = Components.Schemas.RunChecksResponse;
|
|
5580
7323
|
export type SecretPathsResponse = Components.Schemas.SecretPathsResponse;
|
|
5581
7324
|
export type SecretResponse = Components.Schemas.SecretResponse;
|
|
5582
7325
|
export type ServiceStatus = Components.Schemas.ServiceStatus;
|
|
5583
7326
|
export type SessionStatusResponse = Components.Schemas.SessionStatusResponse;
|
|
5584
7327
|
export type SessionTokenResponse = Components.Schemas.SessionTokenResponse;
|
|
7328
|
+
export type Setup2FARequest = Components.Schemas.Setup2FARequest;
|
|
7329
|
+
export type Setup2FAResponse = Components.Schemas.Setup2FAResponse;
|
|
7330
|
+
export type TaskCheck = Components.Schemas.TaskCheck;
|
|
7331
|
+
export type TaskCheckData = Components.Schemas.TaskCheckData;
|
|
7332
|
+
export type TaskData = Components.Schemas.TaskData;
|
|
7333
|
+
export type TaskListResponse = Components.Schemas.TaskListResponse;
|
|
7334
|
+
export type TaskState = Components.Schemas.TaskState;
|
|
7335
|
+
export type TaskTemplate = Components.Schemas.TaskTemplate;
|
|
7336
|
+
export type TaskTemplateCreateData = Components.Schemas.TaskTemplateCreateData;
|
|
7337
|
+
export type TaskTemplateUpdateData = Components.Schemas.TaskTemplateUpdateData;
|
|
7338
|
+
export type TaskTemplateWithRelations = Components.Schemas.TaskTemplateWithRelations;
|
|
7339
|
+
export type TemplateListResponse = Components.Schemas.TemplateListResponse;
|
|
5585
7340
|
export type Tool = Components.Schemas.Tool;
|
|
5586
7341
|
export type ToolCall = Components.Schemas.ToolCall;
|
|
5587
7342
|
export type ToolCallRequest = Components.Schemas.ToolCallRequest;
|
|
@@ -5595,4 +7350,6 @@ export type UserCreditPurchase = Components.Schemas.UserCreditPurchase;
|
|
|
5595
7350
|
export type UserPaymentMethod = Components.Schemas.UserPaymentMethod;
|
|
5596
7351
|
export type UserRole = Components.Schemas.UserRole;
|
|
5597
7352
|
export type UserSecretResponse = Components.Schemas.UserSecretResponse;
|
|
7353
|
+
export type Verify2FARequest = Components.Schemas.Verify2FARequest;
|
|
5598
7354
|
export type VideoParse = Components.Schemas.VideoParse;
|
|
7355
|
+
export type WaitlistStatus = Components.Schemas.WaitlistStatus;
|