-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeco.gen.ts
More file actions
11514 lines (10588 loc) · 295 KB
/
Copy pathdeco.gen.ts
File metadata and controls
11514 lines (10588 loc) · 295 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Generated types - do not edit manually
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String = string;
export type String_1 = "user" | "assistant" | "system";
export type String_2 = string;
export type String_3 = string;
/**
* The name of the attachment, usually the file name
*/
export type String_4 = string;
/**
* Media type of the attachment
*/
export type String_5 = string;
/**
* URL of the attachment (hosted file or Data URL)
*/
export type String_6 = string;
/**
* Additional attachments to be sent along with the message
*/
export type Array_1 = Object_1[];
/**
* Array of messages for the conversation
*/
export type Array = Object[];
/**
* Skip transaction creation
*/
export type Boolean = boolean;
/**
* Model ID to use for generation (defaults to workspace default)
*/
export type String_7 = string;
/**
* Maximum number of tokens to generate
*/
export type Number = number;
/**
* Temperature for the generation
*/
export type Number_1 = number;
export type String_8 = string;
export type Array_2 = String_8[];
export interface AI_GENERATEInput {
messages: Array;
skipTransaction?: Boolean;
model?: String_7;
maxTokens?: Number;
temperature?: Number_1;
tools?: Object_2;
}
export interface Object {
id?: String;
role: String_1;
content: String_2;
createdAt?: String_3;
experimental_attachments?: Array_1;
}
export interface Object_1 {
name?: String_4;
contentType?: String_5;
url: String_6;
}
/**
* Tools available for the generation
*/
export interface Object_2 {
[k: string]: Array_2;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* The generated text response
*/
export type String_9 = string;
/**
* Number of tokens in the prompt
*/
export type Number_2 = number;
/**
* Number of tokens in the completion
*/
export type Number_3 = number;
/**
* Total number of tokens used
*/
export type Number_4 = number;
/**
* Transaction ID
*/
export type String_10 = string;
/**
* Reason why generation finished
*/
export type String_11 = string;
export interface AI_GENERATEOutput {
text: String_9;
usage: Object_3;
finishReason?: String_11;
}
/**
* Token usage information
*/
export interface Object_3 {
promptTokens: Number_2;
completionTokens: Number_3;
totalTokens: Number_4;
transactionId?: String_10;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_12 = string;
export type String_13 = "user" | "assistant" | "system";
export type String_14 = string;
export type String_15 = string;
/**
* The name of the attachment, usually the file name
*/
export type String_16 = string;
/**
* Media type of the attachment
*/
export type String_17 = string;
/**
* URL of the attachment (hosted file or Data URL)
*/
export type String_18 = string;
/**
* Additional attachments to be sent along with the message
*/
export type Array_4 = Object_5[];
/**
* Array of messages for the conversation
*/
export type Array_3 = Object_4[];
/**
* Skip transaction creation
*/
export type Boolean_1 = boolean;
/**
* Model ID to use for generation (defaults to workspace default)
*/
export type String_19 = string;
/**
* Maximum number of tokens to generate
*/
export type Number_5 = number;
/**
* Temperature for the generation
*/
export type Number_6 = number;
export type String_20 = string;
export type Array_5 = String_20[];
export interface AI_GENERATE_OBJECTInput {
messages: Array_3;
schema: Object_6;
skipTransaction?: Boolean_1;
model?: String_19;
maxTokens?: Number_5;
temperature?: Number_6;
tools?: Object_7;
}
export interface Object_4 {
id?: String_12;
role: String_13;
content: String_14;
createdAt?: String_15;
experimental_attachments?: Array_4;
}
export interface Object_5 {
name?: String_16;
contentType?: String_17;
url: String_18;
}
/**
* JSON Schema that defines the structure of the object to generate
*/
export interface Object_6 {
[k: string]: unknown;
}
/**
* Tools available for the generation
*/
export interface Object_7 {
[k: string]: Array_5;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* Number of tokens in the prompt
*/
export type Number_7 = number;
/**
* Number of tokens in the completion
*/
export type Number_8 = number;
/**
* Total number of tokens used
*/
export type Number_9 = number;
/**
* Transaction ID
*/
export type String_21 = string;
/**
* Reason why generation finished
*/
export type String_22 = string;
export interface AI_GENERATE_OBJECTOutput {
/**
* The generated object according to the provided schema
*/
object?: {
[k: string]: unknown;
};
usage: Object_8;
finishReason?: String_22;
}
/**
* Token usage information
*/
export interface Object_8 {
promptTokens: Number_7;
completionTokens: Number_8;
totalTokens: Number_9;
transactionId?: String_21;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* If true, the query will be run against the legacy database
*/
export type Boolean_2 = boolean;
export interface DATABASES_GET_METAInput {
_legacy?: Boolean_2;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type Number_10 = number;
export interface DATABASES_GET_METAOutput {
bytes?: Number_10;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* If true, only shows what would be migrated without executing
*/
export type Boolean_3 = boolean;
export type String_23 = string;
/**
* Specific tables to migrate. If not provided, all tables will be migrated
*/
export type Array_6 = String_23[];
/**
* Number of rows to migrate per batch
*/
export type Number_11 = number;
export interface DATABASES_MIGRATEInput {
dryRun?: Boolean_3;
tables?: Array_6;
batchSize?: Number_11;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type Boolean_4 = boolean;
export type String_24 = string;
export type Number_12 = number;
export type String_25 = "success" | "error" | "skipped";
export type String_26 = string;
export type Array_7 = Object_9[];
export type Number_13 = number;
export type Number_14 = number;
export interface DATABASES_MIGRATEOutput {
success: Boolean_4;
migratedTables: Array_7;
totalRowsMigrated: Number_13;
executionTimeMs: Number_14;
}
export interface Object_9 {
tableName: String_24;
rowCount: Number_12;
status: String_25;
error?: String_26;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* The date to recover to
*/
export type String_27 = string;
/**
* If true, the query will be run against the legacy database
*/
export type Boolean_5 = boolean;
export interface DATABASES_RECOVERYInput {
date: String_27;
_legacy?: Boolean_5;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type Boolean_6 = boolean;
export interface DATABASES_RECOVERYOutput {
success: Boolean_6;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* The SQL query to run
*/
export type String_28 = string;
/**
* The parameters to pass to the SQL query
*/
export type Array_8 = unknown[];
/**
* If true, the query will be run against the legacy database
*/
export type Boolean_7 = boolean;
export interface DATABASES_RUN_SQLInput {
sql: String_28;
params?: Array_8;
_legacy?: Boolean_7;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type Boolean_8 = boolean;
export type Number_15 = number;
export type Number_16 = number;
export type Number_17 = number;
export type Number_18 = number;
export type Number_19 = number;
export type Boolean_9 = boolean;
export type String_29 = "WNAM" | "ENAM" | "WEUR" | "EEUR" | "APAC" | "OC";
export type Number_20 = number;
export type Number_21 = number;
export type Array_10 = unknown[];
export type Boolean_10 = boolean;
export type Array_9 = Object_10[];
export interface DATABASES_RUN_SQLOutput {
result: Array_9;
}
export interface Object_10 {
meta?: Object_11;
results?: Array_10;
success?: Boolean_10;
}
export interface Object_11 {
changed_db?: Boolean_8;
changes?: Number_15;
duration?: Number_16;
last_row_id?: Number_17;
rows_read?: Number_18;
rows_written?: Number_19;
served_by_primary?: Boolean_9;
served_by_region?: String_29;
size_after?: Number_20;
timings?: Object_12;
}
export interface Object_12 {
sql_duration_ms?: Number_21;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface DECO_CHAT_VIEWS_LISTInput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_30 = string;
export type String_31 = string;
export type String_32 = string;
export type String_33 = string;
export type String_34 = string;
export type String_35 = string;
export type String_36 = string;
export type String_37 = string;
export type String_38 = string;
export type Array_12 = String_38[];
export type String_39 = string;
export type Array_13 = String_39[];
export type Array_11 = Object_13[];
export interface DECO_CHAT_VIEWS_LISTOutput {
views: Array_11;
}
export interface Object_13 {
id?: String_30;
name?: String_31;
title: String_32;
description?: String_33;
icon: String_34;
url?: String_35;
mimeTypePattern?: String_36;
resourceName?: String_37;
tools?: Array_12;
rules?: Array_13;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_40 = string;
export type String_41 = "HTTP";
export type String_42 = string;
export type String_43 = string;
export type String_44 = "SSE";
export type String_45 = string;
export type String_46 = string;
export type String_47 = string;
export type String_48 = "Websocket";
export type String_49 = string;
export type String_50 = string;
export type String_51 = "Deco";
export type String_52 = string;
export type String_53 = string;
export type String_54 = "INNATE";
export type String_55 = string;
export type String_56 = string;
export type String_57 = string;
export type Integer = number;
export type String_58 = string;
export interface INTEGRATIONS_CALL_TOOLInput {
id?: String_40;
connection?: Object_14 | Object_15 | Object_17 | Object_18 | Object_19;
params: Object_20;
}
export interface Object_14 {
type: String_41;
url: String_42;
token?: String_43;
}
export interface Object_15 {
type: String_44;
url: String_45;
token?: String_46;
headers?: Object_16;
}
export interface Object_16 {
[k: string]: String_47;
}
export interface Object_17 {
type: String_48;
url: String_49;
token?: String_50;
}
export interface Object_18 {
type: String_51;
tenant: String_52;
token?: String_53;
}
export interface Object_19 {
type: String_54;
name: String_55;
workspace?: String_56;
}
export interface Object_20 {
_meta?: Object_21;
name: String_58;
arguments?: Object_22;
[k: string]: unknown;
}
export interface Object_21 {
progressToken?: String_57 | Integer;
[k: string]: unknown;
}
export interface Object_22 {
[k: string]: unknown;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface INTEGRATIONS_CALL_TOOLOutput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_59 = "HTTP";
export type String_60 = string;
export type String_61 = string;
export type String_62 = "SSE";
export type String_63 = string;
export type String_64 = string;
export type String_65 = string;
export type String_66 = "Websocket";
export type String_67 = string;
export type String_68 = string;
export type String_69 = "Deco";
export type String_70 = string;
export type String_71 = string;
export type String_72 = "INNATE";
export type String_73 = string;
export type String_74 = string;
/**
* Whether to ignore the cache when listing tools
*/
export type Boolean_11 = boolean;
export interface INTEGRATIONS_LIST_TOOLSInput {
connection: Object_23 | Object_24 | Object_26 | Object_27 | Object_28;
ignoreCache?: Boolean_11;
}
export interface Object_23 {
type: String_59;
url: String_60;
token?: String_61;
}
export interface Object_24 {
type: String_62;
url: String_63;
token?: String_64;
headers?: Object_25;
}
export interface Object_25 {
[k: string]: String_65;
}
export interface Object_26 {
type: String_66;
url: String_67;
token?: String_68;
}
export interface Object_27 {
type: String_69;
tenant: String_70;
token?: String_71;
}
export interface Object_28 {
type: String_72;
name: String_73;
workspace?: String_74;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface INTEGRATIONS_LIST_TOOLSOutput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface MY_INVITES_LISTInput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type Array_14 = unknown[];
export interface MY_INVITES_LISTOutput {
items: Array_14;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface PROFILES_GETInput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface PROFILES_GETOutput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type StringNull = String_75 | Null;
export type String_75 = string;
export type Null = null;
export type String_76 = string;
export type NumberNull = Number_22 | Null_1;
export type Number_22 = number;
export type Null_1 = null;
export type BooleanNull = Boolean_12 | Null_2;
export type Boolean_12 = boolean;
export type Null_2 = null;
export type StringNull_1 = String_77 | Null_3;
export type String_77 = string;
export type Null_3 = null;
export interface PROFILES_UPDATEInput {
name?: StringNull;
email?: String_76;
deco_user_id?: NumberNull;
is_new_user?: BooleanNull;
phone?: StringNull_1;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface PROFILES_UPDATEOutput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_78 = string;
export type String_79 = string;
export interface PROJECT_ACTIVITY_REGISTERInput {
org: String_78;
project: String_79;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface PROJECT_ACTIVITY_REGISTEROutput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_80 = string;
export interface PROJECTS_LISTInput {
org: String_80;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface PROJECTS_LISTOutput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type Integer_1 = number;
export interface PROJECTS_RECENTInput {
limit?: Integer_1;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_81 = string;
export type String_82 = string;
export type String_83 = string;
export type StringNull_2 = String_84 | Null_4;
export type String_84 = string;
export type Null_4 = null;
export type Number_23 = number;
export type String_85 = string;
export type StringNull_3 = String_86 | Null_5;
export type String_86 = string;
export type Null_5 = null;
export type String_87 = string;
export type Array_15 = Object_29[];
export interface PROJECTS_RECENTOutput {
items: Array_15;
}
export interface Object_29 {
id: String_81;
title: String_82;
slug: String_83;
avatar_url: StringNull_2;
org: Object_30;
last_accessed_at?: String_87;
}
export interface Object_30 {
id: Number_23;
slug: String_85;
avatar_url?: StringNull_3;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* The name of the app to get
*/
export type String_88 = string;
/**
* The id of the app to get
*/
export type String_89 = string;
export interface REGISTRY_GET_APPInput {
name?: String_88;
id?: String_89;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_90 = string;
export type String_91 = string;
export type String_92 = string;
export type String_93 = string;
export type String_94 = string;
export type String_95 = string;
export type String_96 = string;
export type String_97 = string;
export type String_98 = "HTTP";
export type String_99 = string;
export type String_100 = string;
export type String_101 = "SSE";
export type String_102 = string;
export type String_103 = string;
export type String_104 = string;
export type String_105 = "Websocket";
export type String_106 = string;
export type String_107 = string;
export type String_108 = "Deco";
export type String_109 = string;
export type String_110 = string;
export type String_111 = "INNATE";
export type String_112 = string;
export type String_113 = string;
export type String_114 = string;
export type String_115 = string;
export type Boolean_13 = boolean;
export type String_116 = string;
export type Boolean_14 = boolean;
export type String_117 = string;
export type String_118 = string;
export type String_119 = string;
export type Array_16 = Object_37[];
export type Null_6 = null;
export interface REGISTRY_GET_APPOutput {
id: String_90;
workspace: String_91;
scopeId: String_92;
scopeName: String_93;
appName: String_94;
name: String_95;
description?: String_96;
icon?: String_97;
connection: Object_31 | Object_32 | Object_34 | Object_35 | Object_36;
createdAt: String_114;
updatedAt: String_115;
unlisted: Boolean_13;
friendlyName?: String_116;
verified?: Boolean_14;
tools?: Array_16;
metadata?: Object_41 | Null_6;
}
export interface Object_31 {
type: String_98;
url: String_99;
token?: String_100;
}
export interface Object_32 {
type: String_101;
url: String_102;
token?: String_103;
headers?: Object_33;
}
export interface Object_33 {
[k: string]: String_104;
}
export interface Object_34 {
type: String_105;
url: String_106;
token?: String_107;
}
export interface Object_35 {
type: String_108;
tenant: String_109;
token?: String_110;
}
export interface Object_36 {
type: String_111;
name: String_112;
workspace?: String_113;
}
export interface Object_37 {
id: String_117;
name: String_118;
description?: String_119;
inputSchema: Object_38;
outputSchema?: Object_39;
metadata?: Object_40;
}
export interface Object_38 {
[k: string]: unknown;
}
export interface Object_39 {
[k: string]: unknown;
}
export interface Object_40 {
[k: string]: unknown;
}
export interface Object_41 {
[k: string]: unknown;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_120 = string;
export interface TEAM_INVITE_ACCEPTInput {
id: String_120;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface TEAM_INVITE_ACCEPTOutput {}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type String_121 = string;
export interface TEAM_INVITE_DELETEInput {
id: String_121;
}
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface TEAM_INVITE_DELETEOutput {}