-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeco.gen.ts
More file actions
7349 lines (6647 loc) · 187 KB
/
Copy pathdeco.gen.ts
File metadata and controls
7349 lines (6647 loc) · 187 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 = "HTTP";
export type String_1 = string;
export type String_2 = string;
export type String_3 = "SSE";
export type String_4 = string;
export type String_5 = string;
export type String_6 = string;
export type String_7 = "Websocket";
export type String_8 = string;
export type String_9 = string;
export type String_10 = "Deco";
export type String_11 = string;
export type String_12 = string;
export type String_13 = "INNATE";
export type String_14 = string;
export type String_15 = string;
export type String_16 = string;
export type Integer = number;
export type String_17 = string;
export interface INTEGRATIONS_CALL_TOOLInput {
connection: Object | Object_1 | Object_3 | Object_4 | Object_5;
params: Object_6;
}
export interface Object {
type: String;
url: String_1;
token?: String_2;
}
export interface Object_1 {
type: String_3;
url: String_4;
token?: String_5;
headers?: Object_2;
}
export interface Object_2 {
[k: string]: String_6;
}
export interface Object_3 {
type: String_7;
url: String_8;
token?: String_9;
}
export interface Object_4 {
type: String_10;
tenant: String_11;
token?: String_12;
}
export interface Object_5 {
type: String_13;
name: String_14;
workspace?: String_15;
}
export interface Object_6 {
_meta?: Object_7;
name: String_17;
arguments?: Object_8;
[k: string]: unknown;
}
export interface Object_7 {
progressToken?: String_16 | Integer;
[k: string]: unknown;
}
export interface Object_8 {
[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_18 = "HTTP";
export type String_19 = string;
export type String_20 = string;
export type String_21 = "SSE";
export type String_22 = string;
export type String_23 = string;
export type String_24 = string;
export type String_25 = "Websocket";
export type String_26 = string;
export type String_27 = string;
export type String_28 = "Deco";
export type String_29 = string;
export type String_30 = string;
export type String_31 = "INNATE";
export type String_32 = string;
export type String_33 = string;
/**
* Whether to ignore the cache when listing tools
*/
export type Boolean = boolean;
export interface INTEGRATIONS_LIST_TOOLSInput {
connection: Object_9 | Object_10 | Object_12 | Object_13 | Object_14;
ignoreCache?: Boolean;
}
export interface Object_9 {
type: String_18;
url: String_19;
token?: String_20;
}
export interface Object_10 {
type: String_21;
url: String_22;
token?: String_23;
headers?: Object_11;
}
export interface Object_11 {
[k: string]: String_24;
}
export interface Object_12 {
type: String_25;
url: String_26;
token?: String_27;
}
export interface Object_13 {
type: String_28;
tenant: String_29;
token?: String_30;
}
export interface Object_14 {
type: String_31;
name: String_32;
workspace?: String_33;
}
/* 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 = unknown[];
export interface MY_INVITES_LISTOutput {
items: Array;
}
/* 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_34 | Null;
export type String_34 = string;
export type Null = null;
export type String_35 = string;
export type NumberNull = Number | Null_1;
export type Number = number;
export type Null_1 = null;
export type BooleanNull = Boolean_1 | Null_2;
export type Boolean_1 = boolean;
export type Null_2 = null;
export type StringNull_1 = String_36 | Null_3;
export type String_36 = string;
export type Null_3 = null;
export interface PROFILES_UPDATEInput {
name?: StringNull;
email?: String_35;
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_37 = string;
export interface TEAM_INVITE_ACCEPTInput {
id: String_37;
}
/* 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_38 = string;
export interface TEAM_INVITE_DELETEInput {
id: String_38;
}
/* 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 {}
/* 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_1 = number;
export interface TEAM_MEMBER_ACTIVITY_REGISTERInput {
teamId: Number_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 TEAM_MEMBER_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 Number_2 = number;
export type Boolean_2 = boolean;
export interface TEAM_MEMBERS_GETInput {
teamId: Number_2;
withActivity?: 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 interface TEAM_MEMBERS_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 String_39 = string;
export type String_40 = string;
export type Number_3 = number;
export type String_41 = string;
export type Array_2 = Object_16[];
export type Array_1 = Object_15[];
export interface TEAM_MEMBERS_INVITEInput {
teamId: String_39;
invitees: Array_1;
}
export interface Object_15 {
email: String_40;
roles: Array_2;
}
export interface Object_16 {
id: Number_3;
name: String_41;
}
/* 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_MEMBERS_INVITEOutput {}
/* 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_4 = number;
export type Number_5 = number;
export interface TEAM_MEMBERS_REMOVEInput {
teamId: Number_4;
memberId: Number_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 interface TEAM_MEMBERS_REMOVEOutput {}
/* 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_6 = number;
export type Number_7 = number;
export type Boolean_3 = boolean;
export interface TEAM_MEMBERS_UPDATEInput {
teamId: Number_6;
memberId: Number_7;
data: Object_17;
}
export interface Object_17 {
admin?: Boolean_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.
*/
export interface TEAM_MEMBERS_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 Number_8 = number;
export type String_42 = string;
export type Number_9 = number;
export type String_43 = "grant" | "revoke";
export interface TEAM_MEMBERS_UPDATE_ROLEInput {
teamId: Number_8;
userId: String_42;
roleId: Number_9;
action: String_43;
}
/* 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_MEMBERS_UPDATE_ROLEOutput {}
/* 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 type String_44 = string;
export type String_45 = string;
export type String_46 = string;
export type String_47 = "allow" | "deny";
export type String_48 = string;
export type Array_3 = Object_20[];
export type String_49 = string;
export type Array_4 = String_49[];
export type String_50 = string;
export type String_51 = "grant" | "revoke";
/**
* Only send member actions for changes (diff between original and current state)
* Members who already have the role and remain selected: no action needed (maintains access)
* Members who don't have the role and remain unselected: no action needed (maintains no access)
*/
export type Array_5 = Object_21[];
export interface TEAM_ROLE_CREATEInput {
teamId: Number_10;
roleData: Object_18;
}
export interface Object_18 {
name: String_44;
description?: String_45;
tools: Object_19;
agents?: Array_4;
members?: Array_5;
}
export interface Object_19 {
[k: string]: Array_3;
}
export interface Object_20 {
toolName: String_46;
effect: String_47;
policyId?: String_48;
}
export interface Object_21 {
user_id: String_50;
action: String_51;
}
/* 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_ROLE_CREATEOutput {}
/* 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_11 = number;
export type Number_12 = number;
export interface TEAM_ROLE_DELETEInput {
teamId: Number_11;
roleId: Number_12;
}
/* 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_ROLE_DELETEOutput {}
/* 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_13 = number;
export type Number_14 = number;
export interface TEAM_ROLE_GETInput {
teamId: Number_13;
roleId: Number_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 TEAM_ROLE_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 Number_15 = number;
export type Number_16 = number;
export type String_52 = string;
export type String_53 = string;
export type String_54 = string;
export type String_55 = "allow" | "deny";
export type String_56 = string;
export type Array_6 = Object_24[];
export type String_57 = string;
export type Array_7 = String_57[];
export type String_58 = string;
export type String_59 = "grant" | "revoke";
/**
* Only send member actions for changes (diff between original and current state)
* Members who already have the role and remain selected: no action needed (maintains access)
* Members who don't have the role and remain unselected: no action needed (maintains no access)
*/
export type Array_8 = Object_25[];
export interface TEAM_ROLE_UPDATEInput {
teamId: Number_15;
roleId: Number_16;
roleData: Object_22;
}
export interface Object_22 {
name: String_52;
description?: String_53;
tools: Object_23;
agents?: Array_7;
members?: Array_8;
}
export interface Object_23 {
[k: string]: Array_6;
}
export interface Object_24 {
toolName: String_54;
effect: String_55;
policyId?: String_56;
}
export interface Object_25 {
user_id: String_58;
action: String_59;
}
/* 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_ROLE_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 Number_17 = number;
export interface TEAM_ROLES_LISTInput {
teamId: Number_17;
}
/* 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_9 = unknown[];
export interface TEAM_ROLES_LISTOutput {
items: Array_9;
}
/* 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_60 = string;
export type String_61 = string;
export type String_62 = string;
export interface TEAMS_CREATEInput {
name: String_60;
slug?: String_61;
stripe_subscription_id?: String_62;
}
/* 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 TEAMS_CREATEOutput {}
/* 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_18 = number;
export interface TEAMS_DELETEInput {
teamId: Number_18;
}
/* 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 TEAMS_DELETEOutput {}
/* 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_63 = string;
export interface TEAMS_GETInput {
slug: String_63;
}
/* 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 TEAMS_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 String_64 = string;
export interface TEAMS_GET_THEMEInput {
slug: String_64;
}
/* 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 TEAMS_GET_THEMEOutput {}
/* 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 TEAMS_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_10 = unknown[];
export interface TEAMS_LISTOutput {
items: Array_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.
*/
/**
* The id of the team to update
*/
export type Number_19 = number;
/**
* Team name
*/
export type String_65 = string;
/**
* Team URL slug
*/
export type String_66 = string;
export type String_67 = string;
/**
* Main background color of the application (OKLCH/hex format)
*/
export type String_68 = string;
/**
* Main text color on background (OKLCH/hex format)
*/
export type String_69 = string;
/**
* Background color for cards and panels (OKLCH/hex format)
*/
export type String_70 = string;
/**
* Text color on cards and panels (OKLCH/hex format)
*/
export type String_71 = string;
/**
* Background color for popovers and dropdowns (OKLCH/hex format)
*/
export type String_72 = string;
/**
* Text color in popovers and dropdowns (OKLCH/hex format)
*/
export type String_73 = string;
/**
* Primary brand color for buttons and highlights (OKLCH/hex format)
*/
export type String_74 = string;
/**
* Text color on primary elements (OKLCH/hex format)
*/
export type String_75 = string;
/**
* Lighter variant of primary color (OKLCH/hex format)
*/
export type String_76 = string;
/**
* Darker variant of primary color (OKLCH/hex format)
*/
export type String_77 = string;
/**
* Secondary color for less prominent elements (OKLCH/hex format)
*/
export type String_78 = string;
/**
* Text color on secondary elements (OKLCH/hex format)
*/
export type String_79 = string;
/**
* Muted background color for subtle elements (OKLCH/hex format)
*/
export type String_80 = string;
/**
* Muted text color for secondary text (OKLCH/hex format)
*/
export type String_81 = string;
/**
* Accent color for interactive elements (OKLCH/hex format)
*/
export type String_82 = string;
/**
* Text color on accent elements (OKLCH/hex format)
*/
export type String_83 = string;
/**
* Color for destructive actions and errors (OKLCH/hex format)
*/
export type String_84 = string;
/**
* Text color on destructive elements (OKLCH/hex format)
*/
export type String_85 = string;
/**
* Color for success states and positive actions (OKLCH/hex format)
*/
export type String_86 = string;
/**
* Text color on success elements (OKLCH/hex format)
*/
export type String_87 = string;
/**
* Color for warning states and caution indicators (OKLCH/hex format)
*/
export type String_88 = string;
/**
* Text color on warning elements (OKLCH/hex format)
*/
export type String_89 = string;
/**
* Border color for elements (OKLCH/hex format)
*/
export type String_90 = string;
/**
* Border color for input fields (OKLCH/hex format)
*/
export type String_91 = string;
/**
* Background color for sidebar navigation (OKLCH/hex format)
*/
export type String_92 = string;
/**
* Background color for splash screen animation (OKLCH/hex format)
*/
export type String_93 = string;
/**
* URL to team avatar/logo image
*/
export type String_94 = string;
/**
* Use a Google Fonts font
*/
export type String_95 = "Google Fonts";
/**
* Name of the Google Font (e.g., 'Inter', 'Roboto', 'Open Sans')
*/
export type String_96 = string;
/**
* Use a custom uploaded font
*/
export type String_97 = "Custom";
/**
* Display name for the custom font
*/
export type String_98 = string;
/**
* URL to the custom font file
*/
export type String_99 = string;
export interface TEAMS_UPDATEInput {
id: Number_19;
data: Object_26;
}
export interface Object_26 {
name?: String_65;
slug?: String_66;
stripe_subscription_id?: String_67;
theme?: Object_27;
}
/**
* Theme configuration for the workspace. Only include the properties you want to change - existing values will be preserved.
*/
export interface Object_27 {
variables?: Object_28;
picture?: String_94;
/**
* Font configuration for the workspace
*/
font?: Object_29 | Object_30;
}
/**
* CSS custom properties for theme colors. Use OKLCH format (preferred) or hex colors.
*/
export interface Object_28 {
"--background"?: String_68;
"--foreground"?: String_69;
"--card"?: String_70;
"--card-foreground"?: String_71;
"--popover"?: String_72;
"--popover-foreground"?: String_73;
"--primary"?: String_74;
"--primary-foreground"?: String_75;
"--primary-light"?: String_76;
"--primary-dark"?: String_77;
"--secondary"?: String_78;
"--secondary-foreground"?: String_79;
"--muted"?: String_80;
"--muted-foreground"?: String_81;
"--accent"?: String_82;
"--accent-foreground"?: String_83;
"--destructive"?: String_84;
"--destructive-foreground"?: String_85;
"--success"?: String_86;
"--success-foreground"?: String_87;
"--warning"?: String_88;
"--warning-foreground"?: String_89;
"--border"?: String_90;
"--input"?: String_91;
"--sidebar"?: String_92;
"--splash"?: String_93;
}
export interface Object_29 {
type: String_95;
name: String_96;
}
export interface Object_30 {
type: String_97;
name: String_98;
url: String_99;
}
/* 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 TEAMS_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.
*/
/**
* Unique identifier for the agent
*/
export type String_100 = string;
/**
* Human-readable name of the agent
*/
export type String_101 = string;
/**
* URL to the agent's avatar image
*/
export type String_102 = string;
/**
* System prompt/instructions for the agent
*/
export type String_103 = string;
/**
* Brief description of the agent's purpose or capabilities
*/
export type String_104 = string;
export type String_105 = string;
/**
* Tool names for a given integrationId. Add an empty array for enabling all tools of this integration. This should prevent bugs
*/
export type Array_11 = String_105[];
/**