@teodorruskvi/chat-core 0.1.45 → 0.1.47

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.
@@ -0,0 +1,4037 @@
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+ export interface paths {
6
+ "/": {
7
+ parameters: {
8
+ query?: never;
9
+ header?: never;
10
+ path?: never;
11
+ cookie?: never;
12
+ };
13
+ /** Root */
14
+ get: operations["root__get"];
15
+ put?: never;
16
+ post?: never;
17
+ delete?: never;
18
+ options?: never;
19
+ head?: never;
20
+ patch?: never;
21
+ trace?: never;
22
+ };
23
+ "/health": {
24
+ parameters: {
25
+ query?: never;
26
+ header?: never;
27
+ path?: never;
28
+ cookie?: never;
29
+ };
30
+ /** Health */
31
+ get: operations["health_health_get"];
32
+ put?: never;
33
+ post?: never;
34
+ delete?: never;
35
+ options?: never;
36
+ head?: never;
37
+ patch?: never;
38
+ trace?: never;
39
+ };
40
+ "/runs/files": {
41
+ parameters: {
42
+ query?: never;
43
+ header?: never;
44
+ path?: never;
45
+ cookie?: never;
46
+ };
47
+ /**
48
+ * List Files
49
+ * @description List files belonging to the current user with optional thread filtering.
50
+ */
51
+ get: operations["list_files_runs_files_get"];
52
+ put?: never;
53
+ post?: never;
54
+ delete?: never;
55
+ options?: never;
56
+ head?: never;
57
+ patch?: never;
58
+ trace?: never;
59
+ };
60
+ "/runs/files/{file_id}": {
61
+ parameters: {
62
+ query?: never;
63
+ header?: never;
64
+ path?: never;
65
+ cookie?: never;
66
+ };
67
+ /**
68
+ * Files Get File Metadata
69
+ * @description Return metadata for a single file.
70
+ */
71
+ get: operations["files_get_file_metadata_runs_files__file_id__get"];
72
+ put?: never;
73
+ post?: never;
74
+ /**
75
+ * Delete File Metadata And Blob
76
+ * @description Delete file metadata and underlying blob for the current user.
77
+ */
78
+ delete: operations["delete_file_metadata_and_blob_runs_files__file_id__delete"];
79
+ options?: never;
80
+ head?: never;
81
+ patch?: never;
82
+ trace?: never;
83
+ };
84
+ "/runs/files/{file_id}/view": {
85
+ parameters: {
86
+ query?: never;
87
+ header?: never;
88
+ path?: never;
89
+ cookie?: never;
90
+ };
91
+ /**
92
+ * Files View File
93
+ * @description View file content inline (alias for /content).
94
+ */
95
+ get: operations["files_view_file_runs_files__file_id__view_get"];
96
+ put?: never;
97
+ post?: never;
98
+ delete?: never;
99
+ options?: never;
100
+ head?: never;
101
+ patch?: never;
102
+ trace?: never;
103
+ };
104
+ "/runs/files/{file_id}/download": {
105
+ parameters: {
106
+ query?: never;
107
+ header?: never;
108
+ path?: never;
109
+ cookie?: never;
110
+ };
111
+ /**
112
+ * Files Download File
113
+ * @description Send the file as an attachment for download.
114
+ */
115
+ get: operations["files_download_file_runs_files__file_id__download_get"];
116
+ put?: never;
117
+ post?: never;
118
+ delete?: never;
119
+ options?: never;
120
+ head?: never;
121
+ patch?: never;
122
+ trace?: never;
123
+ };
124
+ "/runs/files/upload-form": {
125
+ parameters: {
126
+ query?: never;
127
+ header?: never;
128
+ path?: never;
129
+ cookie?: never;
130
+ };
131
+ get?: never;
132
+ put?: never;
133
+ /**
134
+ * Upload File Form
135
+ * @description Upload one or more files using multipart form data.
136
+ *
137
+ * Supports:
138
+ * - single upload: `file`
139
+ * - batch upload: `files`
140
+ */
141
+ post: operations["upload_file_form_runs_files_upload_form_post"];
142
+ delete?: never;
143
+ options?: never;
144
+ head?: never;
145
+ patch?: never;
146
+ trace?: never;
147
+ };
148
+ "/runs/files/knowledgebase/ainav": {
149
+ parameters: {
150
+ query?: never;
151
+ header?: never;
152
+ path?: never;
153
+ cookie?: never;
154
+ };
155
+ get?: never;
156
+ put?: never;
157
+ /**
158
+ * Create Knowledge Base File
159
+ * @description Upload the built-in AINAV knowledge base PDF to the user's file store.
160
+ */
161
+ post: operations["create_knowledge_base_file_runs_files_knowledgebase_ainav_post"];
162
+ delete?: never;
163
+ options?: never;
164
+ head?: never;
165
+ patch?: never;
166
+ trace?: never;
167
+ };
168
+ "/runs/agents": {
169
+ parameters: {
170
+ query?: never;
171
+ header?: never;
172
+ path?: never;
173
+ cookie?: never;
174
+ };
175
+ /** List Agents */
176
+ get: operations["list_agents_runs_agents_get"];
177
+ put?: never;
178
+ post?: never;
179
+ delete?: never;
180
+ options?: never;
181
+ head?: never;
182
+ patch?: never;
183
+ trace?: never;
184
+ };
185
+ "/runs/agents/{agent_id}": {
186
+ parameters: {
187
+ query?: never;
188
+ header?: never;
189
+ path?: never;
190
+ cookie?: never;
191
+ };
192
+ /** Get Agent */
193
+ get: operations["get_agent_runs_agents__agent_id__get"];
194
+ put?: never;
195
+ post?: never;
196
+ delete?: never;
197
+ options?: never;
198
+ head?: never;
199
+ patch?: never;
200
+ trace?: never;
201
+ };
202
+ "/runs/agents/{agent_id}/schema": {
203
+ parameters: {
204
+ query?: never;
205
+ header?: never;
206
+ path?: never;
207
+ cookie?: never;
208
+ };
209
+ /** Get Agent Schema */
210
+ get: operations["get_agent_schema_runs_agents__agent_id__schema_get"];
211
+ put?: never;
212
+ post?: never;
213
+ delete?: never;
214
+ options?: never;
215
+ head?: never;
216
+ patch?: never;
217
+ trace?: never;
218
+ };
219
+ "/runs/store/items": {
220
+ parameters: {
221
+ query?: never;
222
+ header?: never;
223
+ path?: never;
224
+ cookie?: never;
225
+ };
226
+ /** Get Item Endpoint */
227
+ get: operations["get_item_endpoint_runs_store_items_get"];
228
+ /** Put Item Endpoint */
229
+ put: operations["put_item_endpoint_runs_store_items_put"];
230
+ post?: never;
231
+ /** Delete Item Endpoint */
232
+ delete: operations["delete_item_endpoint_runs_store_items_delete"];
233
+ options?: never;
234
+ head?: never;
235
+ patch?: never;
236
+ trace?: never;
237
+ };
238
+ "/runs/store/items/bulk-delete": {
239
+ parameters: {
240
+ query?: never;
241
+ header?: never;
242
+ path?: never;
243
+ cookie?: never;
244
+ };
245
+ get?: never;
246
+ put?: never;
247
+ /** Bulk Delete Items Endpoint */
248
+ post: operations["bulk_delete_items_endpoint_runs_store_items_bulk_delete_post"];
249
+ delete?: never;
250
+ options?: never;
251
+ head?: never;
252
+ patch?: never;
253
+ trace?: never;
254
+ };
255
+ "/runs/store/items/search": {
256
+ parameters: {
257
+ query?: never;
258
+ header?: never;
259
+ path?: never;
260
+ cookie?: never;
261
+ };
262
+ get?: never;
263
+ put?: never;
264
+ /** Search Items Endpoint */
265
+ post: operations["search_items_endpoint_runs_store_items_search_post"];
266
+ delete?: never;
267
+ options?: never;
268
+ head?: never;
269
+ patch?: never;
270
+ trace?: never;
271
+ };
272
+ "/runs/store/namespaces": {
273
+ parameters: {
274
+ query?: never;
275
+ header?: never;
276
+ path?: never;
277
+ cookie?: never;
278
+ };
279
+ get?: never;
280
+ put?: never;
281
+ /** List Namespaces Endpoint */
282
+ post: operations["list_namespaces_endpoint_runs_store_namespaces_post"];
283
+ delete?: never;
284
+ options?: never;
285
+ head?: never;
286
+ patch?: never;
287
+ trace?: never;
288
+ };
289
+ "/runs/threads/search": {
290
+ parameters: {
291
+ query?: never;
292
+ header?: never;
293
+ path?: never;
294
+ cookie?: never;
295
+ };
296
+ get?: never;
297
+ put?: never;
298
+ /**
299
+ * Search Threads
300
+ * @description Search threads with filters.
301
+ */
302
+ post: operations["search_threads_runs_threads_search_post"];
303
+ delete?: never;
304
+ options?: never;
305
+ head?: never;
306
+ patch?: never;
307
+ trace?: never;
308
+ };
309
+ "/runs/threads": {
310
+ parameters: {
311
+ query?: never;
312
+ header?: never;
313
+ path?: never;
314
+ cookie?: never;
315
+ };
316
+ /**
317
+ * List Threads
318
+ * @description List threads for the current user.
319
+ */
320
+ get: operations["list_threads_runs_threads_get"];
321
+ put?: never;
322
+ /**
323
+ * Create Thread
324
+ * @description Create a new thread.
325
+ */
326
+ post: operations["create_thread_runs_threads_post"];
327
+ delete?: never;
328
+ options?: never;
329
+ head?: never;
330
+ patch?: never;
331
+ trace?: never;
332
+ };
333
+ "/runs/threads/shared": {
334
+ parameters: {
335
+ query?: never;
336
+ header?: never;
337
+ path?: never;
338
+ cookie?: never;
339
+ };
340
+ /**
341
+ * List Shared Threads
342
+ * @description List threads shared with the current user.
343
+ */
344
+ get: operations["list_shared_threads_runs_threads_shared_get"];
345
+ put?: never;
346
+ post?: never;
347
+ delete?: never;
348
+ options?: never;
349
+ head?: never;
350
+ patch?: never;
351
+ trace?: never;
352
+ };
353
+ "/runs/threads/{thread_id}/share": {
354
+ parameters: {
355
+ query?: never;
356
+ header?: never;
357
+ path?: never;
358
+ cookie?: never;
359
+ };
360
+ get?: never;
361
+ put?: never;
362
+ /**
363
+ * Share Thread
364
+ * @description Share a thread with another user.
365
+ */
366
+ post: operations["share_thread_runs_threads__thread_id__share_post"];
367
+ delete?: never;
368
+ options?: never;
369
+ head?: never;
370
+ patch?: never;
371
+ trace?: never;
372
+ };
373
+ "/runs/threads/{thread_id}/unshare": {
374
+ parameters: {
375
+ query?: never;
376
+ header?: never;
377
+ path?: never;
378
+ cookie?: never;
379
+ };
380
+ get?: never;
381
+ put?: never;
382
+ /**
383
+ * Unshare Thread
384
+ * @description Unshare a thread from a user.
385
+ */
386
+ post: operations["unshare_thread_runs_threads__thread_id__unshare_post"];
387
+ delete?: never;
388
+ options?: never;
389
+ head?: never;
390
+ patch?: never;
391
+ trace?: never;
392
+ };
393
+ "/runs/threads/{thread_id}/fork": {
394
+ parameters: {
395
+ query?: never;
396
+ header?: never;
397
+ path?: never;
398
+ cookie?: never;
399
+ };
400
+ get?: never;
401
+ put?: never;
402
+ /**
403
+ * Fork Thread
404
+ * @description Fork a thread to create a personal copy.
405
+ */
406
+ post: operations["fork_thread_runs_threads__thread_id__fork_post"];
407
+ delete?: never;
408
+ options?: never;
409
+ head?: never;
410
+ patch?: never;
411
+ trace?: never;
412
+ };
413
+ "/runs/threads/{thread_id}/request-access": {
414
+ parameters: {
415
+ query?: never;
416
+ header?: never;
417
+ path?: never;
418
+ cookie?: never;
419
+ };
420
+ get?: never;
421
+ put?: never;
422
+ /**
423
+ * Request Thread Access
424
+ * @description Request access to a thread owned by another user. Stores request persistently.
425
+ */
426
+ post: operations["request_thread_access_runs_threads__thread_id__request_access_post"];
427
+ delete?: never;
428
+ options?: never;
429
+ head?: never;
430
+ patch?: never;
431
+ trace?: never;
432
+ };
433
+ "/runs/threads/{thread_id}/approve-access/{requester_id}": {
434
+ parameters: {
435
+ query?: never;
436
+ header?: never;
437
+ path?: never;
438
+ cookie?: never;
439
+ };
440
+ get?: never;
441
+ put?: never;
442
+ /**
443
+ * Approve Thread Access
444
+ * @description Approve access request for a thread (owner only). Updates the persistent request.
445
+ */
446
+ post: operations["approve_thread_access_runs_threads__thread_id__approve_access__requester_id__post"];
447
+ delete?: never;
448
+ options?: never;
449
+ head?: never;
450
+ patch?: never;
451
+ trace?: never;
452
+ };
453
+ "/runs/threads/{thread_id}/deny-access/{requester_id}": {
454
+ parameters: {
455
+ query?: never;
456
+ header?: never;
457
+ path?: never;
458
+ cookie?: never;
459
+ };
460
+ get?: never;
461
+ put?: never;
462
+ /**
463
+ * Deny Thread Access
464
+ * @description Deny access request for a thread (owner only).
465
+ */
466
+ post: operations["deny_thread_access_runs_threads__thread_id__deny_access__requester_id__post"];
467
+ delete?: never;
468
+ options?: never;
469
+ head?: never;
470
+ patch?: never;
471
+ trace?: never;
472
+ };
473
+ "/runs/threads/{thread_id}/access-requests": {
474
+ parameters: {
475
+ query?: never;
476
+ header?: never;
477
+ path?: never;
478
+ cookie?: never;
479
+ };
480
+ /**
481
+ * List Access Requests
482
+ * @description List access requests for a thread (owner only).
483
+ */
484
+ get: operations["list_access_requests_runs_threads__thread_id__access_requests_get"];
485
+ put?: never;
486
+ post?: never;
487
+ delete?: never;
488
+ options?: never;
489
+ head?: never;
490
+ patch?: never;
491
+ trace?: never;
492
+ };
493
+ "/runs/threads/my-access-requests": {
494
+ parameters: {
495
+ query?: never;
496
+ header?: never;
497
+ path?: never;
498
+ cookie?: never;
499
+ };
500
+ /**
501
+ * My Access Requests
502
+ * @description List my own access requests (as a requester).
503
+ */
504
+ get: operations["my_access_requests_runs_threads_my_access_requests_get"];
505
+ put?: never;
506
+ post?: never;
507
+ delete?: never;
508
+ options?: never;
509
+ head?: never;
510
+ patch?: never;
511
+ trace?: never;
512
+ };
513
+ "/runs/threads/{thread_id}/revoke-access/{user_id_to_revoke}": {
514
+ parameters: {
515
+ query?: never;
516
+ header?: never;
517
+ path?: never;
518
+ cookie?: never;
519
+ };
520
+ get?: never;
521
+ put?: never;
522
+ /**
523
+ * Revoke Thread Access
524
+ * @description Revoke access for a user (owner only). Removes them from shared_with and marks request as revoked.
525
+ */
526
+ post: operations["revoke_thread_access_runs_threads__thread_id__revoke_access__user_id_to_revoke__post"];
527
+ delete?: never;
528
+ options?: never;
529
+ head?: never;
530
+ patch?: never;
531
+ trace?: never;
532
+ };
533
+ "/runs/threads/{thread_id}": {
534
+ parameters: {
535
+ query?: never;
536
+ header?: never;
537
+ path?: never;
538
+ cookie?: never;
539
+ };
540
+ get?: never;
541
+ /** Update Thread */
542
+ put: operations["update_thread_runs_threads__thread_id__put"];
543
+ post?: never;
544
+ /** Delete Thread */
545
+ delete: operations["delete_thread_runs_threads__thread_id__delete"];
546
+ options?: never;
547
+ head?: never;
548
+ patch?: never;
549
+ trace?: never;
550
+ };
551
+ "/runs/threads/{thread_id}/info": {
552
+ parameters: {
553
+ query?: never;
554
+ header?: never;
555
+ path?: never;
556
+ cookie?: never;
557
+ };
558
+ /** Thread Info */
559
+ get: operations["thread_info_runs_threads__thread_id__info_get"];
560
+ put?: never;
561
+ post?: never;
562
+ delete?: never;
563
+ options?: never;
564
+ head?: never;
565
+ patch?: never;
566
+ trace?: never;
567
+ };
568
+ "/runs/threads/{thread_id}/state": {
569
+ parameters: {
570
+ query?: never;
571
+ header?: never;
572
+ path?: never;
573
+ cookie?: never;
574
+ };
575
+ /**
576
+ * Get State
577
+ * @description Get the latest checkpoint state (or specific checkpoint if checkpoint_id provided).
578
+ *
579
+ * Returns a single CheckpointSnapshot with full message history.
580
+ * This is simpler than /state/history which returns multiple checkpoints.
581
+ */
582
+ get: operations["get_state_runs_threads__thread_id__state_get"];
583
+ put?: never;
584
+ post?: never;
585
+ delete?: never;
586
+ options?: never;
587
+ head?: never;
588
+ patch?: never;
589
+ trace?: never;
590
+ };
591
+ "/runs/threads/{thread_id}/state/history": {
592
+ parameters: {
593
+ query?: never;
594
+ header?: never;
595
+ path?: never;
596
+ cookie?: never;
597
+ };
598
+ /**
599
+ * Get State History
600
+ * @description Get checkpoint history for a thread.
601
+ *
602
+ * Returns values@1 payload with checkpoint snapshots (newest first). Use
603
+ * `latestCheckpointId` or any snapshot's `config.configurable.checkpoint_id`
604
+ * with `/threads/{thread_id}/state?checkpoint_id=<id>` to recover a prior state.
605
+ */
606
+ get: operations["get_state_history_runs_threads__thread_id__state_history_get"];
607
+ put?: never;
608
+ post?: never;
609
+ delete?: never;
610
+ options?: never;
611
+ head?: never;
612
+ patch?: never;
613
+ trace?: never;
614
+ };
615
+ "/runs/stream": {
616
+ parameters: {
617
+ query?: never;
618
+ header?: never;
619
+ path?: never;
620
+ cookie?: never;
621
+ };
622
+ get?: never;
623
+ put?: never;
624
+ /**
625
+ * Create And Stream Run
626
+ * @description Create a run and stream response events via SSE.
627
+ */
628
+ post: operations["create_and_stream_run_runs_stream_post"];
629
+ delete?: never;
630
+ options?: never;
631
+ head?: never;
632
+ patch?: never;
633
+ trace?: never;
634
+ };
635
+ "/runs/wait": {
636
+ parameters: {
637
+ query?: never;
638
+ header?: never;
639
+ path?: never;
640
+ cookie?: never;
641
+ };
642
+ get?: never;
643
+ put?: never;
644
+ /**
645
+ * Create And Wait Run
646
+ * @description Create a run, wait for completion, and return the result.
647
+ */
648
+ post: operations["create_and_wait_run_runs_wait_post"];
649
+ delete?: never;
650
+ options?: never;
651
+ head?: never;
652
+ patch?: never;
653
+ trace?: never;
654
+ };
655
+ "/runs": {
656
+ parameters: {
657
+ query?: never;
658
+ header?: never;
659
+ path?: never;
660
+ cookie?: never;
661
+ };
662
+ get?: never;
663
+ put?: never;
664
+ /**
665
+ * Create Run
666
+ * @description Create and start a new managed background run.
667
+ */
668
+ post: operations["create_run_runs_post"];
669
+ delete?: never;
670
+ options?: never;
671
+ head?: never;
672
+ patch?: never;
673
+ trace?: never;
674
+ };
675
+ "/runs/{run_id}": {
676
+ parameters: {
677
+ query?: never;
678
+ header?: never;
679
+ path?: never;
680
+ cookie?: never;
681
+ };
682
+ /**
683
+ * Get Run
684
+ * @description Get managed run details and status.
685
+ */
686
+ get: operations["get_run_runs__run_id__get"];
687
+ put?: never;
688
+ post?: never;
689
+ /**
690
+ * Delete Run
691
+ * @description Delete a run and associated checkpoint data.
692
+ */
693
+ delete: operations["delete_run_runs__run_id__delete"];
694
+ options?: never;
695
+ head?: never;
696
+ /**
697
+ * Patch Run
698
+ * @description Partially update run properties.
699
+ */
700
+ patch: operations["patch_run_runs__run_id__patch"];
701
+ trace?: never;
702
+ };
703
+ "/runs/{run_id}/wait": {
704
+ parameters: {
705
+ query?: never;
706
+ header?: never;
707
+ path?: never;
708
+ cookie?: never;
709
+ };
710
+ /**
711
+ * Wait Existing Run
712
+ * @description Wait for an existing managed run to complete.
713
+ */
714
+ get: operations["wait_existing_run_runs__run_id__wait_get"];
715
+ put?: never;
716
+ post?: never;
717
+ delete?: never;
718
+ options?: never;
719
+ head?: never;
720
+ patch?: never;
721
+ trace?: never;
722
+ };
723
+ "/runs/{run_id}/stream": {
724
+ parameters: {
725
+ query?: never;
726
+ header?: never;
727
+ path?: never;
728
+ cookie?: never;
729
+ };
730
+ /**
731
+ * Stream Existing Run
732
+ * @description Join the output stream of an existing managed run.
733
+ */
734
+ get: operations["stream_existing_run_runs__run_id__stream_get"];
735
+ put?: never;
736
+ post?: never;
737
+ delete?: never;
738
+ options?: never;
739
+ head?: never;
740
+ patch?: never;
741
+ trace?: never;
742
+ };
743
+ "/runs/{run_id}/submit": {
744
+ parameters: {
745
+ query?: never;
746
+ header?: never;
747
+ path?: never;
748
+ cookie?: never;
749
+ };
750
+ get?: never;
751
+ put?: never;
752
+ /**
753
+ * Submit Run Input
754
+ * @description Submit human input for a run awaiting action.
755
+ */
756
+ post: operations["submit_run_input_runs__run_id__submit_post"];
757
+ delete?: never;
758
+ options?: never;
759
+ head?: never;
760
+ patch?: never;
761
+ trace?: never;
762
+ };
763
+ "/runs/{run_id}/cancel": {
764
+ parameters: {
765
+ query?: never;
766
+ header?: never;
767
+ path?: never;
768
+ cookie?: never;
769
+ };
770
+ get?: never;
771
+ put?: never;
772
+ /**
773
+ * Cancel Run
774
+ * @description Cancel a running or pending execution.
775
+ */
776
+ post: operations["cancel_run_runs__run_id__cancel_post"];
777
+ delete?: never;
778
+ options?: never;
779
+ head?: never;
780
+ patch?: never;
781
+ trace?: never;
782
+ };
783
+ "/runs/search": {
784
+ parameters: {
785
+ query?: never;
786
+ header?: never;
787
+ path?: never;
788
+ cookie?: never;
789
+ };
790
+ get?: never;
791
+ put?: never;
792
+ /**
793
+ * Search Runs
794
+ * @description Search runs with Agent Protocol compatible filters.
795
+ */
796
+ post: operations["search_runs_runs_search_post"];
797
+ delete?: never;
798
+ options?: never;
799
+ head?: never;
800
+ patch?: never;
801
+ trace?: never;
802
+ };
803
+ "/runs/{run_id}/state/history": {
804
+ parameters: {
805
+ query?: never;
806
+ header?: never;
807
+ path?: never;
808
+ cookie?: never;
809
+ };
810
+ /**
811
+ * Get Run History
812
+ * @description Get LangGraph state history for a run.
813
+ */
814
+ get: operations["get_run_history_runs__run_id__state_history_get"];
815
+ put?: never;
816
+ post?: never;
817
+ delete?: never;
818
+ options?: never;
819
+ head?: never;
820
+ patch?: never;
821
+ trace?: never;
822
+ };
823
+ "/runs/{run_id}/state": {
824
+ parameters: {
825
+ query?: never;
826
+ header?: never;
827
+ path?: never;
828
+ cookie?: never;
829
+ };
830
+ /**
831
+ * Get Run State
832
+ * @description Get latest or specific checkpoint state for a run.
833
+ */
834
+ get: operations["get_run_state_runs__run_id__state_get"];
835
+ put?: never;
836
+ post?: never;
837
+ delete?: never;
838
+ options?: never;
839
+ head?: never;
840
+ patch?: never;
841
+ trace?: never;
842
+ };
843
+ "/inav/issues/": {
844
+ parameters: {
845
+ query?: never;
846
+ header?: never;
847
+ path?: never;
848
+ cookie?: never;
849
+ };
850
+ /**
851
+ * Fetch all issues for a node
852
+ * @description Retrieve all issues for the specified INAV node. If no node_id is provided, uses the default node from context.
853
+ */
854
+ get: operations["get_issues_inav_issues__get"];
855
+ put?: never;
856
+ /**
857
+ * Create a new issue
858
+ * @description Create a new issue for the specified INAV node.
859
+ */
860
+ post: operations["create_issue_inav_issues__post"];
861
+ delete?: never;
862
+ options?: never;
863
+ head?: never;
864
+ patch?: never;
865
+ trace?: never;
866
+ };
867
+ "/inav/issues/{issue_id}": {
868
+ parameters: {
869
+ query?: never;
870
+ header?: never;
871
+ path?: never;
872
+ cookie?: never;
873
+ };
874
+ /**
875
+ * Get a specific issue
876
+ * @description Retrieve details of a specific issue by ID.
877
+ */
878
+ get: operations["get_issue_inav_issues__issue_id__get"];
879
+ /**
880
+ * Update an existing issue
881
+ * @description Update an existing issue by ID.
882
+ */
883
+ put: operations["update_issue_inav_issues__issue_id__put"];
884
+ post?: never;
885
+ /**
886
+ * Delete an issue
887
+ * @description Delete an issue by ID from the specified node.
888
+ */
889
+ delete: operations["delete_issue_inav_issues__issue_id__delete"];
890
+ options?: never;
891
+ head?: never;
892
+ patch?: never;
893
+ trace?: never;
894
+ };
895
+ "/inav/issues/batch/save": {
896
+ parameters: {
897
+ query?: never;
898
+ header?: never;
899
+ path?: never;
900
+ cookie?: never;
901
+ };
902
+ get?: never;
903
+ put?: never;
904
+ /**
905
+ * Batch save issues
906
+ * @description Create or update multiple issues at once.
907
+ */
908
+ post: operations["batch_save_issues_inav_issues_batch_save_post"];
909
+ delete?: never;
910
+ options?: never;
911
+ head?: never;
912
+ patch?: never;
913
+ trace?: never;
914
+ };
915
+ "/api/v1/inav/portfolios": {
916
+ parameters: {
917
+ query?: never;
918
+ header?: never;
919
+ path?: never;
920
+ cookie?: never;
921
+ };
922
+ /** List Portfolios */
923
+ get: operations["list_portfolios_api_v1_inav_portfolios_get"];
924
+ put?: never;
925
+ /** Create Portfolio */
926
+ post: operations["create_portfolio_api_v1_inav_portfolios_post"];
927
+ delete?: never;
928
+ options?: never;
929
+ head?: never;
930
+ patch?: never;
931
+ trace?: never;
932
+ };
933
+ "/api/v1/inav/portfolios/{portfolio_name}/tree": {
934
+ parameters: {
935
+ query?: never;
936
+ header?: never;
937
+ path?: never;
938
+ cookie?: never;
939
+ };
940
+ /** Read Portfolio Tree */
941
+ get: operations["read_portfolio_tree_api_v1_inav_portfolios__portfolio_name__tree_get"];
942
+ put?: never;
943
+ post?: never;
944
+ delete?: never;
945
+ options?: never;
946
+ head?: never;
947
+ patch?: never;
948
+ trace?: never;
949
+ };
950
+ "/api/v1/inav/nodes/{node_id}": {
951
+ parameters: {
952
+ query?: never;
953
+ header?: never;
954
+ path?: never;
955
+ cookie?: never;
956
+ };
957
+ /** Read Node */
958
+ get: operations["read_node_api_v1_inav_nodes__node_id__get"];
959
+ put?: never;
960
+ post?: never;
961
+ delete?: never;
962
+ options?: never;
963
+ head?: never;
964
+ patch?: never;
965
+ trace?: never;
966
+ };
967
+ "/api/v1/inav/nodes": {
968
+ parameters: {
969
+ query?: never;
970
+ header?: never;
971
+ path?: never;
972
+ cookie?: never;
973
+ };
974
+ /** List Nodes */
975
+ get: operations["list_nodes_api_v1_inav_nodes_get"];
976
+ put?: never;
977
+ /** Create Node */
978
+ post: operations["create_node_api_v1_inav_nodes_post"];
979
+ delete?: never;
980
+ options?: never;
981
+ head?: never;
982
+ patch?: never;
983
+ trace?: never;
984
+ };
985
+ "/auth/login": {
986
+ parameters: {
987
+ query?: never;
988
+ header?: never;
989
+ path?: never;
990
+ cookie?: never;
991
+ };
992
+ get?: never;
993
+ put?: never;
994
+ /**
995
+ * Login
996
+ * @description Authenticate against SmartOrg using provided username/password.
997
+ *
998
+ * Returns a JWT token on success. The token is stateless - the backend does NOT
999
+ * store the SmartOrg client. Instead, create a new client per-request using the token.
1000
+ */
1001
+ post: operations["login_auth_login_post"];
1002
+ delete?: never;
1003
+ options?: never;
1004
+ head?: never;
1005
+ patch?: never;
1006
+ trace?: never;
1007
+ };
1008
+ "/auth/users": {
1009
+ parameters: {
1010
+ query?: never;
1011
+ header?: never;
1012
+ path?: never;
1013
+ cookie?: never;
1014
+ };
1015
+ /**
1016
+ * List Users
1017
+ * @description List all users in the SmartOrg instance.
1018
+ */
1019
+ get: operations["list_users_auth_users_get"];
1020
+ put?: never;
1021
+ post?: never;
1022
+ delete?: never;
1023
+ options?: never;
1024
+ head?: never;
1025
+ patch?: never;
1026
+ trace?: never;
1027
+ };
1028
+ "/auth/users/{user_id}": {
1029
+ parameters: {
1030
+ query?: never;
1031
+ header?: never;
1032
+ path?: never;
1033
+ cookie?: never;
1034
+ };
1035
+ /**
1036
+ * Get User By Id
1037
+ * @description Get user details by ID (for showing thread owner info).
1038
+ */
1039
+ get: operations["get_user_by_id_auth_users__user_id__get"];
1040
+ put?: never;
1041
+ post?: never;
1042
+ delete?: never;
1043
+ options?: never;
1044
+ head?: never;
1045
+ patch?: never;
1046
+ trace?: never;
1047
+ };
1048
+ "/auth/logout": {
1049
+ parameters: {
1050
+ query?: never;
1051
+ header?: never;
1052
+ path?: never;
1053
+ cookie?: never;
1054
+ };
1055
+ get?: never;
1056
+ put?: never;
1057
+ /**
1058
+ * Logout
1059
+ * @description Logout user - in stateless mode, just return success.
1060
+ *
1061
+ * The frontend will remove the token from localStorage.
1062
+ * Token expiration on SmartOrg server is handled automatically.
1063
+ */
1064
+ post: operations["logout_auth_logout_post"];
1065
+ delete?: never;
1066
+ options?: never;
1067
+ head?: never;
1068
+ patch?: never;
1069
+ trace?: never;
1070
+ };
1071
+ "/auth/me": {
1072
+ parameters: {
1073
+ query?: never;
1074
+ header?: never;
1075
+ path?: never;
1076
+ cookie?: never;
1077
+ };
1078
+ /**
1079
+ * Get Me
1080
+ * @description Return full user profile matching SmartOrg client format.
1081
+ */
1082
+ get: operations["get_me_auth_me_get"];
1083
+ put?: never;
1084
+ post?: never;
1085
+ delete?: never;
1086
+ options?: never;
1087
+ head?: never;
1088
+ patch?: never;
1089
+ trace?: never;
1090
+ };
1091
+ }
1092
+ export type webhooks = Record<string, never>;
1093
+ export interface components {
1094
+ schemas: {
1095
+ /** AccessRequestRequest */
1096
+ AccessRequestRequest: {
1097
+ /** Message */
1098
+ message?: string | null;
1099
+ } & {
1100
+ [key: string]: unknown;
1101
+ };
1102
+ /**
1103
+ * BatchIssuesRequest
1104
+ * @description Request model for batch operations on issues
1105
+ */
1106
+ BatchIssuesRequest: {
1107
+ /** Issues */
1108
+ issues: components["schemas"]["Issue"][];
1109
+ /** Nodeid */
1110
+ nodeId?: string | null;
1111
+ };
1112
+ /** Body_upload_file_form_runs_files_upload_form_post */
1113
+ Body_upload_file_form_runs_files_upload_form_post: {
1114
+ /** File */
1115
+ file?: string | null;
1116
+ /** Files */
1117
+ files?: string[] | null;
1118
+ /** Thread Id */
1119
+ thread_id?: string | null;
1120
+ /** Key Prefix */
1121
+ key_prefix?: string | null;
1122
+ };
1123
+ /**
1124
+ * ChatPayload
1125
+ * @description Structured payload for generic chat interactions + Serti extensions.
1126
+ */
1127
+ ChatPayload: {
1128
+ /** Activeagent */
1129
+ activeAgent?: string | null;
1130
+ /** Modelname */
1131
+ modelName?: string | null;
1132
+ /** Uploadedfiles */
1133
+ uploadedFiles?: unknown[] | null;
1134
+ /** Messages */
1135
+ messages?: unknown[] | null;
1136
+ /** Maxresearchloops */
1137
+ maxResearchLoops?: number | null;
1138
+ /** Maxconcurrentresearchunits */
1139
+ maxConcurrentResearchUnits?: number | null;
1140
+ /**
1141
+ * Creativitylevel
1142
+ * @default medium
1143
+ */
1144
+ creativityLevel: ("low" | "medium" | "high") | null;
1145
+ /** Description */
1146
+ description?: string | null;
1147
+ nodeContext?: components["schemas"]["NodeContext"] | null;
1148
+ project?: components["schemas"]["ProjectInfo"] | null;
1149
+ /** Actionmenuitem */
1150
+ actionMenuItem?: string | {
1151
+ [key: string]: unknown;
1152
+ } | null;
1153
+ /** Availableactionmenuitems */
1154
+ availableActionMenuItems?: {
1155
+ [key: string]: unknown;
1156
+ }[] | null;
1157
+ /** Menumode */
1158
+ menuMode?: ("global" | "menu" | "full") | null;
1159
+ /** Inavnodeissues */
1160
+ inavNodeIssues?: {
1161
+ [key: string]: unknown;
1162
+ }[] | null;
1163
+ /** Inavnodedescription */
1164
+ inavNodeDescription?: string | null;
1165
+ /** Companyid */
1166
+ companyId?: number | null;
1167
+ /** Companyname */
1168
+ companyName?: string | null;
1169
+ } & {
1170
+ [key: string]: unknown;
1171
+ };
1172
+ /** ChatRequest */
1173
+ ChatRequest: {
1174
+ /** Threadid */
1175
+ threadId?: string | null;
1176
+ /** Checkpointid */
1177
+ checkpointId?: string | null;
1178
+ /** Checkpointns */
1179
+ checkpointNs?: string | null;
1180
+ /**
1181
+ * Edit
1182
+ * @default false
1183
+ */
1184
+ edit: boolean;
1185
+ /** Branchlabel */
1186
+ branchLabel?: string | null;
1187
+ command?: components["schemas"]["StreamCommand"] | null;
1188
+ /** Timelinecheckpoints */
1189
+ timelineCheckpoints?: components["schemas"]["TimelineCheckpoint"][];
1190
+ /** Nodefilter */
1191
+ nodeFilter?: string | string[] | null;
1192
+ payload?: components["schemas"]["ChatPayload"] | null;
1193
+ /** Config */
1194
+ config?: {
1195
+ [key: string]: unknown;
1196
+ } | null;
1197
+ /** Eventschemas */
1198
+ eventSchemas?: unknown[] | null;
1199
+ };
1200
+ /**
1201
+ * CreateIssueRequest
1202
+ * @description Request model for creating a new issue
1203
+ */
1204
+ CreateIssueRequest: {
1205
+ /** Title */
1206
+ title: string;
1207
+ /** Name */
1208
+ name?: string | null;
1209
+ /** Description */
1210
+ description?: string | null;
1211
+ /** Status */
1212
+ status?: number | string | null;
1213
+ /** Type */
1214
+ type?: string | null;
1215
+ /** Ignorance */
1216
+ ignorance?: number | null;
1217
+ /** Impact */
1218
+ impact?: number | null;
1219
+ /** Nodeid */
1220
+ nodeId?: string | null;
1221
+ };
1222
+ /** CreateNodeRequest */
1223
+ CreateNodeRequest: {
1224
+ /** Parentnodeid */
1225
+ parentNodeID: string;
1226
+ /** Newnodename */
1227
+ newNodeName: string;
1228
+ /**
1229
+ * Templatename
1230
+ * @default TamSamSomV1
1231
+ */
1232
+ templateName: string;
1233
+ /**
1234
+ * Platformorleaf
1235
+ * @default Leaf
1236
+ */
1237
+ platformOrLeaf: string;
1238
+ /** Parenttags */
1239
+ parentTags?: string[] | null;
1240
+ /** Newnodetags */
1241
+ newNodeTags?: string[] | null;
1242
+ /** Newnodedropdowntags */
1243
+ newNodeDropdownTags?: string[] | null;
1244
+ };
1245
+ /** CreatePortfolioRequest */
1246
+ CreatePortfolioRequest: {
1247
+ /** Portfolioname */
1248
+ portfolioName: string;
1249
+ };
1250
+ /** CreateThreadRequest */
1251
+ CreateThreadRequest: {
1252
+ /** Title */
1253
+ title?: string | null;
1254
+ project?: components["schemas"]["ProjectInfo"] | null;
1255
+ } & {
1256
+ [key: string]: unknown;
1257
+ };
1258
+ /**
1259
+ * Envelope
1260
+ * @description Generic response envelope
1261
+ */
1262
+ Envelope: {
1263
+ /** Data */
1264
+ data: unknown;
1265
+ };
1266
+ /** ForkThreadRequest */
1267
+ ForkThreadRequest: {
1268
+ /** Checkpointid */
1269
+ checkpointId?: string | null;
1270
+ /** Branchname */
1271
+ branchName?: string | null;
1272
+ } & {
1273
+ [key: string]: unknown;
1274
+ };
1275
+ /** HTTPValidationError */
1276
+ HTTPValidationError: {
1277
+ /** Detail */
1278
+ detail?: components["schemas"]["ValidationError"][];
1279
+ };
1280
+ /** Issue */
1281
+ Issue: {
1282
+ /** Id */
1283
+ _id?: string;
1284
+ /**
1285
+ * Title
1286
+ * @description The short, punchy title of the issue.
1287
+ * @default
1288
+ */
1289
+ title: string;
1290
+ /**
1291
+ * Issuedescription
1292
+ * @description Detailed description of the issue.
1293
+ * @default
1294
+ */
1295
+ issueDescription: string;
1296
+ /**
1297
+ * Name
1298
+ * @description Internal name field. Auto-populated from issueDescription. Do not provide this in tool calls.
1299
+ * @default
1300
+ */
1301
+ name: string;
1302
+ /**
1303
+ * Status
1304
+ * @default 1
1305
+ */
1306
+ status: number;
1307
+ /**
1308
+ * Ignorance
1309
+ * @default 0
1310
+ */
1311
+ ignorance: number;
1312
+ /**
1313
+ * Impact
1314
+ * @default 0
1315
+ */
1316
+ impact: number;
1317
+ /**
1318
+ * Calcimpact
1319
+ * @default 0
1320
+ */
1321
+ calcImpact: number;
1322
+ /**
1323
+ * Score
1324
+ * @default 0
1325
+ */
1326
+ score: number;
1327
+ /**
1328
+ * Type
1329
+ * @default default
1330
+ */
1331
+ type: string;
1332
+ /**
1333
+ * Color
1334
+ * @default #add8e6
1335
+ */
1336
+ color: string;
1337
+ /**
1338
+ * Colorpalette
1339
+ * @default default
1340
+ */
1341
+ colorPalette: string;
1342
+ /**
1343
+ * Issuetype
1344
+ * @default Manage
1345
+ */
1346
+ issueType: string;
1347
+ /**
1348
+ * Issuezone
1349
+ * @default Manage
1350
+ */
1351
+ issueZone: string;
1352
+ /**
1353
+ * Issuecolor
1354
+ * @default #CFFFEE
1355
+ */
1356
+ issueColor: string;
1357
+ /**
1358
+ * Isdfv
1359
+ * @default false
1360
+ */
1361
+ isDfv: boolean;
1362
+ /**
1363
+ * Isswot
1364
+ * @default false
1365
+ */
1366
+ isSwot: boolean;
1367
+ /**
1368
+ * Ispotentialshowstopper
1369
+ * @default false
1370
+ */
1371
+ isPotentialShowStopper: boolean;
1372
+ /**
1373
+ * Initerationplan
1374
+ * @default false
1375
+ */
1376
+ inIterationPlan: boolean;
1377
+ /**
1378
+ * Includeinsprint
1379
+ * @default false
1380
+ */
1381
+ includeInSprint: boolean;
1382
+ /**
1383
+ * Notitle
1384
+ * @default false
1385
+ */
1386
+ noTitle: boolean;
1387
+ /**
1388
+ * Isheightupdated
1389
+ * @default false
1390
+ */
1391
+ isHeightUpdated: boolean;
1392
+ /** Abilitytolaunch */
1393
+ abilityToLaunch?: {
1394
+ [key: string]: unknown;
1395
+ };
1396
+ /** Abilitytolaunchbefore */
1397
+ abilityToLaunchBefore?: {
1398
+ [key: string]: unknown;
1399
+ };
1400
+ /** Impactmappinglist */
1401
+ impactMappingList?: unknown[];
1402
+ /** Impactmappinglistbefore */
1403
+ impactMappingListBefore?: unknown[];
1404
+ /** Experiments */
1405
+ experiments?: unknown[];
1406
+ /** Experimentdata */
1407
+ experimentData?: unknown[];
1408
+ /** Startdate */
1409
+ startDate?: string | null;
1410
+ /** Createdat */
1411
+ createdAt?: string;
1412
+ /** Updatedat */
1413
+ updatedAt?: string;
1414
+ } & {
1415
+ [key: string]: unknown;
1416
+ };
1417
+ /** LoginRequest */
1418
+ LoginRequest: {
1419
+ /** User Id */
1420
+ user_id: string;
1421
+ /** Password */
1422
+ password: string;
1423
+ /** Server */
1424
+ server?: string | null;
1425
+ };
1426
+ /**
1427
+ * NodeContext
1428
+ * @description Context about the currently selected node in the workspace.
1429
+ */
1430
+ NodeContext: {
1431
+ /** Nodeid */
1432
+ nodeId: string;
1433
+ /** Name */
1434
+ name?: string | null;
1435
+ /** Treeid */
1436
+ treeId?: string | null;
1437
+ };
1438
+ /** ProjectInfo */
1439
+ ProjectInfo: {
1440
+ /** Id */
1441
+ id: string;
1442
+ /** Name */
1443
+ name: string;
1444
+ };
1445
+ /** ShareThreadRequest */
1446
+ ShareThreadRequest: {
1447
+ /** Sharedwithuserid */
1448
+ sharedWithUserId: string;
1449
+ /**
1450
+ * Permissionlevel
1451
+ * @default read
1452
+ */
1453
+ permissionLevel: string | null;
1454
+ } & {
1455
+ [key: string]: unknown;
1456
+ };
1457
+ /** StoreBulkDeleteRequest */
1458
+ StoreBulkDeleteRequest: {
1459
+ /**
1460
+ * Namespace
1461
+ * @description Namespace path segments.
1462
+ */
1463
+ namespace?: string[] | null;
1464
+ /**
1465
+ * Keys
1466
+ * @description Item keys to delete.
1467
+ */
1468
+ keys?: string[];
1469
+ };
1470
+ /** StoreDeleteRequest */
1471
+ StoreDeleteRequest: {
1472
+ /**
1473
+ * Namespace
1474
+ * @description Namespace path segments.
1475
+ */
1476
+ namespace?: string[] | null;
1477
+ /**
1478
+ * Key
1479
+ * @description Item key within the namespace.
1480
+ */
1481
+ key: string;
1482
+ };
1483
+ /** StoreListNamespacesRequest */
1484
+ StoreListNamespacesRequest: {
1485
+ /**
1486
+ * Prefix
1487
+ * @description Namespace prefix segments.
1488
+ */
1489
+ prefix?: string[] | null;
1490
+ /**
1491
+ * Suffix
1492
+ * @description Namespace suffix segments.
1493
+ */
1494
+ suffix?: string[] | null;
1495
+ /** Max Depth */
1496
+ max_depth?: number | null;
1497
+ /**
1498
+ * Limit
1499
+ * @default 100
1500
+ */
1501
+ limit: number;
1502
+ /**
1503
+ * Offset
1504
+ * @default 0
1505
+ */
1506
+ offset: number;
1507
+ };
1508
+ /** StorePutRequest */
1509
+ StorePutRequest: {
1510
+ /**
1511
+ * Namespace
1512
+ * @description Namespace path segments.
1513
+ */
1514
+ namespace: string[];
1515
+ /**
1516
+ * Key
1517
+ * @description Item key within the namespace.
1518
+ */
1519
+ key: string;
1520
+ /**
1521
+ * Value
1522
+ * @description JSON object to store.
1523
+ */
1524
+ value: {
1525
+ [key: string]: unknown;
1526
+ };
1527
+ /**
1528
+ * Index
1529
+ * @description Optional embedding index fields for semantic search. Use false to skip indexing.
1530
+ */
1531
+ index?: string[] | boolean | null;
1532
+ };
1533
+ /** StoreSearchRequest */
1534
+ StoreSearchRequest: {
1535
+ /**
1536
+ * Namespace Prefix
1537
+ * @description Namespace prefix segments to filter by.
1538
+ */
1539
+ namespace_prefix?: string[] | null;
1540
+ /**
1541
+ * Key Prefix
1542
+ * @description Optional item key prefix filter (e.g. '/files/').
1543
+ */
1544
+ key_prefix?: string | null;
1545
+ /**
1546
+ * Filter
1547
+ * @description Optional key-value filter over stored value.
1548
+ */
1549
+ filter?: {
1550
+ [key: string]: unknown;
1551
+ } | null;
1552
+ /**
1553
+ * Query
1554
+ * @description Optional semantic query string. If provided, vector search is used when store index is configured.
1555
+ */
1556
+ query?: string | null;
1557
+ /**
1558
+ * Limit
1559
+ * @default 10
1560
+ */
1561
+ limit: number;
1562
+ /**
1563
+ * Offset
1564
+ * @default 0
1565
+ */
1566
+ offset: number;
1567
+ };
1568
+ /**
1569
+ * StreamCommand
1570
+ * @description Command for controlling stream execution (resume, goto, etc.).
1571
+ */
1572
+ StreamCommand: {
1573
+ /**
1574
+ * Kind
1575
+ * @enum {string}
1576
+ */
1577
+ kind: "resume" | "goto";
1578
+ /** Value */
1579
+ value?: {
1580
+ [key: string]: unknown;
1581
+ } | null;
1582
+ /** Node */
1583
+ node?: string | null;
1584
+ };
1585
+ /** TimelineCheckpoint */
1586
+ TimelineCheckpoint: {
1587
+ /** Id */
1588
+ id: string;
1589
+ /** Messageid */
1590
+ messageId?: string | null;
1591
+ /** Step */
1592
+ step?: number | null;
1593
+ /** Source */
1594
+ source?: string | null;
1595
+ /** Createdat */
1596
+ createdAt?: string | null;
1597
+ /** Next */
1598
+ next?: string | null;
1599
+ /** Parentconfig */
1600
+ parentConfig?: {
1601
+ [key: string]: unknown;
1602
+ } | null;
1603
+ };
1604
+ /**
1605
+ * UpdateIssueRequest
1606
+ * @description Request model for updating an existing issue
1607
+ */
1608
+ UpdateIssueRequest: {
1609
+ /** Id */
1610
+ id?: string | null;
1611
+ /** Title */
1612
+ title?: string | null;
1613
+ /** Name */
1614
+ name?: string | null;
1615
+ /** Description */
1616
+ description?: string | null;
1617
+ /** Status */
1618
+ status?: number | string | null;
1619
+ /** Type */
1620
+ type?: string | null;
1621
+ /** Ignorance */
1622
+ ignorance?: number | null;
1623
+ /** Impact */
1624
+ impact?: number | null;
1625
+ /** Nodeid */
1626
+ nodeId?: string | null;
1627
+ };
1628
+ /** UpdateThreadRequest */
1629
+ UpdateThreadRequest: {
1630
+ /** Title */
1631
+ title: string;
1632
+ } & {
1633
+ [key: string]: unknown;
1634
+ };
1635
+ /** ValidationError */
1636
+ ValidationError: {
1637
+ /** Location */
1638
+ loc: (string | number)[];
1639
+ /** Message */
1640
+ msg: string;
1641
+ /** Error Type */
1642
+ type: string;
1643
+ };
1644
+ };
1645
+ responses: never;
1646
+ parameters: never;
1647
+ requestBodies: never;
1648
+ headers: never;
1649
+ pathItems: never;
1650
+ }
1651
+ export type $defs = Record<string, never>;
1652
+ export interface operations {
1653
+ root__get: {
1654
+ parameters: {
1655
+ query?: never;
1656
+ header?: never;
1657
+ path?: never;
1658
+ cookie?: never;
1659
+ };
1660
+ requestBody?: never;
1661
+ responses: {
1662
+ /** @description Successful Response */
1663
+ 200: {
1664
+ headers: {
1665
+ [name: string]: unknown;
1666
+ };
1667
+ content: {
1668
+ "application/json": unknown;
1669
+ };
1670
+ };
1671
+ };
1672
+ };
1673
+ health_health_get: {
1674
+ parameters: {
1675
+ query?: never;
1676
+ header?: never;
1677
+ path?: never;
1678
+ cookie?: never;
1679
+ };
1680
+ requestBody?: never;
1681
+ responses: {
1682
+ /** @description Successful Response */
1683
+ 200: {
1684
+ headers: {
1685
+ [name: string]: unknown;
1686
+ };
1687
+ content: {
1688
+ "application/json": unknown;
1689
+ };
1690
+ };
1691
+ };
1692
+ };
1693
+ list_files_runs_files_get: {
1694
+ parameters: {
1695
+ query?: {
1696
+ thread_id?: string | null;
1697
+ limit?: number;
1698
+ offset?: number;
1699
+ };
1700
+ header?: never;
1701
+ path?: never;
1702
+ cookie?: never;
1703
+ };
1704
+ requestBody?: never;
1705
+ responses: {
1706
+ /** @description Successful Response */
1707
+ 200: {
1708
+ headers: {
1709
+ [name: string]: unknown;
1710
+ };
1711
+ content: {
1712
+ "application/json": {
1713
+ [key: string]: unknown;
1714
+ }[];
1715
+ };
1716
+ };
1717
+ /** @description Validation Error */
1718
+ 422: {
1719
+ headers: {
1720
+ [name: string]: unknown;
1721
+ };
1722
+ content: {
1723
+ "application/json": components["schemas"]["HTTPValidationError"];
1724
+ };
1725
+ };
1726
+ };
1727
+ };
1728
+ files_get_file_metadata_runs_files__file_id__get: {
1729
+ parameters: {
1730
+ query?: never;
1731
+ header?: never;
1732
+ path: {
1733
+ file_id: string;
1734
+ };
1735
+ cookie?: never;
1736
+ };
1737
+ requestBody?: never;
1738
+ responses: {
1739
+ /** @description Successful Response */
1740
+ 200: {
1741
+ headers: {
1742
+ [name: string]: unknown;
1743
+ };
1744
+ content: {
1745
+ "application/json": {
1746
+ [key: string]: unknown;
1747
+ };
1748
+ };
1749
+ };
1750
+ /** @description Validation Error */
1751
+ 422: {
1752
+ headers: {
1753
+ [name: string]: unknown;
1754
+ };
1755
+ content: {
1756
+ "application/json": components["schemas"]["HTTPValidationError"];
1757
+ };
1758
+ };
1759
+ };
1760
+ };
1761
+ delete_file_metadata_and_blob_runs_files__file_id__delete: {
1762
+ parameters: {
1763
+ query?: never;
1764
+ header?: never;
1765
+ path: {
1766
+ file_id: string;
1767
+ };
1768
+ cookie?: never;
1769
+ };
1770
+ requestBody?: never;
1771
+ responses: {
1772
+ /** @description Successful Response */
1773
+ 200: {
1774
+ headers: {
1775
+ [name: string]: unknown;
1776
+ };
1777
+ content: {
1778
+ "application/json": {
1779
+ [key: string]: unknown;
1780
+ };
1781
+ };
1782
+ };
1783
+ /** @description Validation Error */
1784
+ 422: {
1785
+ headers: {
1786
+ [name: string]: unknown;
1787
+ };
1788
+ content: {
1789
+ "application/json": components["schemas"]["HTTPValidationError"];
1790
+ };
1791
+ };
1792
+ };
1793
+ };
1794
+ files_view_file_runs_files__file_id__view_get: {
1795
+ parameters: {
1796
+ query?: never;
1797
+ header?: never;
1798
+ path: {
1799
+ file_id: string;
1800
+ };
1801
+ cookie?: never;
1802
+ };
1803
+ requestBody?: never;
1804
+ responses: {
1805
+ /** @description Successful Response */
1806
+ 200: {
1807
+ headers: {
1808
+ [name: string]: unknown;
1809
+ };
1810
+ content: {
1811
+ "application/json": unknown;
1812
+ };
1813
+ };
1814
+ /** @description Validation Error */
1815
+ 422: {
1816
+ headers: {
1817
+ [name: string]: unknown;
1818
+ };
1819
+ content: {
1820
+ "application/json": components["schemas"]["HTTPValidationError"];
1821
+ };
1822
+ };
1823
+ };
1824
+ };
1825
+ files_download_file_runs_files__file_id__download_get: {
1826
+ parameters: {
1827
+ query?: never;
1828
+ header?: never;
1829
+ path: {
1830
+ file_id: string;
1831
+ };
1832
+ cookie?: never;
1833
+ };
1834
+ requestBody?: never;
1835
+ responses: {
1836
+ /** @description Successful Response */
1837
+ 200: {
1838
+ headers: {
1839
+ [name: string]: unknown;
1840
+ };
1841
+ content: {
1842
+ "application/json": unknown;
1843
+ };
1844
+ };
1845
+ /** @description Validation Error */
1846
+ 422: {
1847
+ headers: {
1848
+ [name: string]: unknown;
1849
+ };
1850
+ content: {
1851
+ "application/json": components["schemas"]["HTTPValidationError"];
1852
+ };
1853
+ };
1854
+ };
1855
+ };
1856
+ upload_file_form_runs_files_upload_form_post: {
1857
+ parameters: {
1858
+ query?: never;
1859
+ header?: never;
1860
+ path?: never;
1861
+ cookie?: never;
1862
+ };
1863
+ requestBody?: {
1864
+ content: {
1865
+ "multipart/form-data": components["schemas"]["Body_upload_file_form_runs_files_upload_form_post"];
1866
+ };
1867
+ };
1868
+ responses: {
1869
+ /** @description Successful Response */
1870
+ 200: {
1871
+ headers: {
1872
+ [name: string]: unknown;
1873
+ };
1874
+ content: {
1875
+ "application/json": {
1876
+ [key: string]: unknown;
1877
+ };
1878
+ };
1879
+ };
1880
+ /** @description Validation Error */
1881
+ 422: {
1882
+ headers: {
1883
+ [name: string]: unknown;
1884
+ };
1885
+ content: {
1886
+ "application/json": components["schemas"]["HTTPValidationError"];
1887
+ };
1888
+ };
1889
+ };
1890
+ };
1891
+ create_knowledge_base_file_runs_files_knowledgebase_ainav_post: {
1892
+ parameters: {
1893
+ query?: {
1894
+ thread_id?: string | null;
1895
+ };
1896
+ header?: never;
1897
+ path?: never;
1898
+ cookie?: never;
1899
+ };
1900
+ requestBody?: never;
1901
+ responses: {
1902
+ /** @description Successful Response */
1903
+ 200: {
1904
+ headers: {
1905
+ [name: string]: unknown;
1906
+ };
1907
+ content: {
1908
+ "application/json": {
1909
+ [key: string]: unknown;
1910
+ };
1911
+ };
1912
+ };
1913
+ /** @description Validation Error */
1914
+ 422: {
1915
+ headers: {
1916
+ [name: string]: unknown;
1917
+ };
1918
+ content: {
1919
+ "application/json": components["schemas"]["HTTPValidationError"];
1920
+ };
1921
+ };
1922
+ };
1923
+ };
1924
+ list_agents_runs_agents_get: {
1925
+ parameters: {
1926
+ query?: never;
1927
+ header?: never;
1928
+ path?: never;
1929
+ cookie?: never;
1930
+ };
1931
+ requestBody?: never;
1932
+ responses: {
1933
+ /** @description Successful Response */
1934
+ 200: {
1935
+ headers: {
1936
+ [name: string]: unknown;
1937
+ };
1938
+ content: {
1939
+ "application/json": {
1940
+ [key: string]: unknown;
1941
+ };
1942
+ };
1943
+ };
1944
+ };
1945
+ };
1946
+ get_agent_runs_agents__agent_id__get: {
1947
+ parameters: {
1948
+ query?: never;
1949
+ header?: never;
1950
+ path: {
1951
+ agent_id: string;
1952
+ };
1953
+ cookie?: never;
1954
+ };
1955
+ requestBody?: never;
1956
+ responses: {
1957
+ /** @description Successful Response */
1958
+ 200: {
1959
+ headers: {
1960
+ [name: string]: unknown;
1961
+ };
1962
+ content: {
1963
+ "application/json": {
1964
+ [key: string]: unknown;
1965
+ };
1966
+ };
1967
+ };
1968
+ /** @description Validation Error */
1969
+ 422: {
1970
+ headers: {
1971
+ [name: string]: unknown;
1972
+ };
1973
+ content: {
1974
+ "application/json": components["schemas"]["HTTPValidationError"];
1975
+ };
1976
+ };
1977
+ };
1978
+ };
1979
+ get_agent_schema_runs_agents__agent_id__schema_get: {
1980
+ parameters: {
1981
+ query?: never;
1982
+ header?: never;
1983
+ path: {
1984
+ agent_id: string;
1985
+ };
1986
+ cookie?: never;
1987
+ };
1988
+ requestBody?: never;
1989
+ responses: {
1990
+ /** @description Successful Response */
1991
+ 200: {
1992
+ headers: {
1993
+ [name: string]: unknown;
1994
+ };
1995
+ content: {
1996
+ "application/json": {
1997
+ [key: string]: unknown;
1998
+ };
1999
+ };
2000
+ };
2001
+ /** @description Validation Error */
2002
+ 422: {
2003
+ headers: {
2004
+ [name: string]: unknown;
2005
+ };
2006
+ content: {
2007
+ "application/json": components["schemas"]["HTTPValidationError"];
2008
+ };
2009
+ };
2010
+ };
2011
+ };
2012
+ get_item_endpoint_runs_store_items_get: {
2013
+ parameters: {
2014
+ query: {
2015
+ key: string;
2016
+ };
2017
+ header?: never;
2018
+ path?: never;
2019
+ cookie?: never;
2020
+ };
2021
+ requestBody?: {
2022
+ content: {
2023
+ "application/json": string[] | null;
2024
+ };
2025
+ };
2026
+ responses: {
2027
+ /** @description Successful Response */
2028
+ 200: {
2029
+ headers: {
2030
+ [name: string]: unknown;
2031
+ };
2032
+ content: {
2033
+ "application/json": {
2034
+ [key: string]: unknown;
2035
+ };
2036
+ };
2037
+ };
2038
+ /** @description Validation Error */
2039
+ 422: {
2040
+ headers: {
2041
+ [name: string]: unknown;
2042
+ };
2043
+ content: {
2044
+ "application/json": components["schemas"]["HTTPValidationError"];
2045
+ };
2046
+ };
2047
+ };
2048
+ };
2049
+ put_item_endpoint_runs_store_items_put: {
2050
+ parameters: {
2051
+ query?: never;
2052
+ header?: never;
2053
+ path?: never;
2054
+ cookie?: never;
2055
+ };
2056
+ requestBody: {
2057
+ content: {
2058
+ "application/json": components["schemas"]["StorePutRequest"];
2059
+ };
2060
+ };
2061
+ responses: {
2062
+ /** @description Successful Response */
2063
+ 200: {
2064
+ headers: {
2065
+ [name: string]: unknown;
2066
+ };
2067
+ content: {
2068
+ "application/json": {
2069
+ [key: string]: unknown;
2070
+ };
2071
+ };
2072
+ };
2073
+ /** @description Validation Error */
2074
+ 422: {
2075
+ headers: {
2076
+ [name: string]: unknown;
2077
+ };
2078
+ content: {
2079
+ "application/json": components["schemas"]["HTTPValidationError"];
2080
+ };
2081
+ };
2082
+ };
2083
+ };
2084
+ delete_item_endpoint_runs_store_items_delete: {
2085
+ parameters: {
2086
+ query?: never;
2087
+ header?: never;
2088
+ path?: never;
2089
+ cookie?: never;
2090
+ };
2091
+ requestBody: {
2092
+ content: {
2093
+ "application/json": components["schemas"]["StoreDeleteRequest"];
2094
+ };
2095
+ };
2096
+ responses: {
2097
+ /** @description Successful Response */
2098
+ 200: {
2099
+ headers: {
2100
+ [name: string]: unknown;
2101
+ };
2102
+ content: {
2103
+ "application/json": {
2104
+ [key: string]: unknown;
2105
+ };
2106
+ };
2107
+ };
2108
+ /** @description Validation Error */
2109
+ 422: {
2110
+ headers: {
2111
+ [name: string]: unknown;
2112
+ };
2113
+ content: {
2114
+ "application/json": components["schemas"]["HTTPValidationError"];
2115
+ };
2116
+ };
2117
+ };
2118
+ };
2119
+ bulk_delete_items_endpoint_runs_store_items_bulk_delete_post: {
2120
+ parameters: {
2121
+ query?: never;
2122
+ header?: never;
2123
+ path?: never;
2124
+ cookie?: never;
2125
+ };
2126
+ requestBody: {
2127
+ content: {
2128
+ "application/json": components["schemas"]["StoreBulkDeleteRequest"];
2129
+ };
2130
+ };
2131
+ responses: {
2132
+ /** @description Successful Response */
2133
+ 200: {
2134
+ headers: {
2135
+ [name: string]: unknown;
2136
+ };
2137
+ content: {
2138
+ "application/json": {
2139
+ [key: string]: unknown;
2140
+ };
2141
+ };
2142
+ };
2143
+ /** @description Validation Error */
2144
+ 422: {
2145
+ headers: {
2146
+ [name: string]: unknown;
2147
+ };
2148
+ content: {
2149
+ "application/json": components["schemas"]["HTTPValidationError"];
2150
+ };
2151
+ };
2152
+ };
2153
+ };
2154
+ search_items_endpoint_runs_store_items_search_post: {
2155
+ parameters: {
2156
+ query?: never;
2157
+ header?: never;
2158
+ path?: never;
2159
+ cookie?: never;
2160
+ };
2161
+ requestBody: {
2162
+ content: {
2163
+ "application/json": components["schemas"]["StoreSearchRequest"];
2164
+ };
2165
+ };
2166
+ responses: {
2167
+ /** @description Successful Response */
2168
+ 200: {
2169
+ headers: {
2170
+ [name: string]: unknown;
2171
+ };
2172
+ content: {
2173
+ "application/json": {
2174
+ [key: string]: unknown;
2175
+ };
2176
+ };
2177
+ };
2178
+ /** @description Validation Error */
2179
+ 422: {
2180
+ headers: {
2181
+ [name: string]: unknown;
2182
+ };
2183
+ content: {
2184
+ "application/json": components["schemas"]["HTTPValidationError"];
2185
+ };
2186
+ };
2187
+ };
2188
+ };
2189
+ list_namespaces_endpoint_runs_store_namespaces_post: {
2190
+ parameters: {
2191
+ query?: never;
2192
+ header?: never;
2193
+ path?: never;
2194
+ cookie?: never;
2195
+ };
2196
+ requestBody: {
2197
+ content: {
2198
+ "application/json": components["schemas"]["StoreListNamespacesRequest"];
2199
+ };
2200
+ };
2201
+ responses: {
2202
+ /** @description Successful Response */
2203
+ 200: {
2204
+ headers: {
2205
+ [name: string]: unknown;
2206
+ };
2207
+ content: {
2208
+ "application/json": {
2209
+ [key: string]: unknown;
2210
+ };
2211
+ };
2212
+ };
2213
+ /** @description Validation Error */
2214
+ 422: {
2215
+ headers: {
2216
+ [name: string]: unknown;
2217
+ };
2218
+ content: {
2219
+ "application/json": components["schemas"]["HTTPValidationError"];
2220
+ };
2221
+ };
2222
+ };
2223
+ };
2224
+ search_threads_runs_threads_search_post: {
2225
+ parameters: {
2226
+ query?: never;
2227
+ header?: never;
2228
+ path?: never;
2229
+ cookie?: never;
2230
+ };
2231
+ requestBody?: {
2232
+ content: {
2233
+ "application/json": {
2234
+ [key: string]: unknown;
2235
+ };
2236
+ };
2237
+ };
2238
+ responses: {
2239
+ /** @description Successful Response */
2240
+ 200: {
2241
+ headers: {
2242
+ [name: string]: unknown;
2243
+ };
2244
+ content: {
2245
+ "application/json": {
2246
+ [key: string]: unknown;
2247
+ };
2248
+ };
2249
+ };
2250
+ /** @description Validation Error */
2251
+ 422: {
2252
+ headers: {
2253
+ [name: string]: unknown;
2254
+ };
2255
+ content: {
2256
+ "application/json": components["schemas"]["HTTPValidationError"];
2257
+ };
2258
+ };
2259
+ };
2260
+ };
2261
+ list_threads_runs_threads_get: {
2262
+ parameters: {
2263
+ query?: {
2264
+ limit?: number;
2265
+ offset?: number;
2266
+ project_id?: string | null;
2267
+ };
2268
+ header?: never;
2269
+ path?: never;
2270
+ cookie?: never;
2271
+ };
2272
+ requestBody?: never;
2273
+ responses: {
2274
+ /** @description Successful Response */
2275
+ 200: {
2276
+ headers: {
2277
+ [name: string]: unknown;
2278
+ };
2279
+ content: {
2280
+ "application/json": {
2281
+ [key: string]: unknown;
2282
+ };
2283
+ };
2284
+ };
2285
+ /** @description Validation Error */
2286
+ 422: {
2287
+ headers: {
2288
+ [name: string]: unknown;
2289
+ };
2290
+ content: {
2291
+ "application/json": components["schemas"]["HTTPValidationError"];
2292
+ };
2293
+ };
2294
+ };
2295
+ };
2296
+ create_thread_runs_threads_post: {
2297
+ parameters: {
2298
+ query?: never;
2299
+ header?: never;
2300
+ path?: never;
2301
+ cookie?: never;
2302
+ };
2303
+ requestBody?: {
2304
+ content: {
2305
+ "application/json": components["schemas"]["CreateThreadRequest"] | null;
2306
+ };
2307
+ };
2308
+ responses: {
2309
+ /** @description Successful Response */
2310
+ 201: {
2311
+ headers: {
2312
+ [name: string]: unknown;
2313
+ };
2314
+ content: {
2315
+ "application/json": {
2316
+ [key: string]: unknown;
2317
+ };
2318
+ };
2319
+ };
2320
+ /** @description Validation Error */
2321
+ 422: {
2322
+ headers: {
2323
+ [name: string]: unknown;
2324
+ };
2325
+ content: {
2326
+ "application/json": components["schemas"]["HTTPValidationError"];
2327
+ };
2328
+ };
2329
+ };
2330
+ };
2331
+ list_shared_threads_runs_threads_shared_get: {
2332
+ parameters: {
2333
+ query?: {
2334
+ /** @description Filter by project ID */
2335
+ project_id?: string | null;
2336
+ };
2337
+ header?: never;
2338
+ path?: never;
2339
+ cookie?: never;
2340
+ };
2341
+ requestBody?: never;
2342
+ responses: {
2343
+ /** @description Successful Response */
2344
+ 200: {
2345
+ headers: {
2346
+ [name: string]: unknown;
2347
+ };
2348
+ content: {
2349
+ "application/json": {
2350
+ [key: string]: unknown;
2351
+ };
2352
+ };
2353
+ };
2354
+ /** @description Validation Error */
2355
+ 422: {
2356
+ headers: {
2357
+ [name: string]: unknown;
2358
+ };
2359
+ content: {
2360
+ "application/json": components["schemas"]["HTTPValidationError"];
2361
+ };
2362
+ };
2363
+ };
2364
+ };
2365
+ share_thread_runs_threads__thread_id__share_post: {
2366
+ parameters: {
2367
+ query?: never;
2368
+ header?: never;
2369
+ path: {
2370
+ thread_id: string;
2371
+ };
2372
+ cookie?: never;
2373
+ };
2374
+ requestBody: {
2375
+ content: {
2376
+ "application/json": components["schemas"]["ShareThreadRequest"];
2377
+ };
2378
+ };
2379
+ responses: {
2380
+ /** @description Successful Response */
2381
+ 200: {
2382
+ headers: {
2383
+ [name: string]: unknown;
2384
+ };
2385
+ content: {
2386
+ "application/json": {
2387
+ [key: string]: unknown;
2388
+ };
2389
+ };
2390
+ };
2391
+ /** @description Validation Error */
2392
+ 422: {
2393
+ headers: {
2394
+ [name: string]: unknown;
2395
+ };
2396
+ content: {
2397
+ "application/json": components["schemas"]["HTTPValidationError"];
2398
+ };
2399
+ };
2400
+ };
2401
+ };
2402
+ unshare_thread_runs_threads__thread_id__unshare_post: {
2403
+ parameters: {
2404
+ query: {
2405
+ share_with_user_id: string;
2406
+ };
2407
+ header?: never;
2408
+ path: {
2409
+ thread_id: string;
2410
+ };
2411
+ cookie?: never;
2412
+ };
2413
+ requestBody?: never;
2414
+ responses: {
2415
+ /** @description Successful Response */
2416
+ 200: {
2417
+ headers: {
2418
+ [name: string]: unknown;
2419
+ };
2420
+ content: {
2421
+ "application/json": {
2422
+ [key: string]: unknown;
2423
+ };
2424
+ };
2425
+ };
2426
+ /** @description Validation Error */
2427
+ 422: {
2428
+ headers: {
2429
+ [name: string]: unknown;
2430
+ };
2431
+ content: {
2432
+ "application/json": components["schemas"]["HTTPValidationError"];
2433
+ };
2434
+ };
2435
+ };
2436
+ };
2437
+ fork_thread_runs_threads__thread_id__fork_post: {
2438
+ parameters: {
2439
+ query?: never;
2440
+ header?: never;
2441
+ path: {
2442
+ thread_id: string;
2443
+ };
2444
+ cookie?: never;
2445
+ };
2446
+ requestBody: {
2447
+ content: {
2448
+ "application/json": components["schemas"]["ForkThreadRequest"];
2449
+ };
2450
+ };
2451
+ responses: {
2452
+ /** @description Successful Response */
2453
+ 200: {
2454
+ headers: {
2455
+ [name: string]: unknown;
2456
+ };
2457
+ content: {
2458
+ "application/json": {
2459
+ [key: string]: unknown;
2460
+ };
2461
+ };
2462
+ };
2463
+ /** @description Validation Error */
2464
+ 422: {
2465
+ headers: {
2466
+ [name: string]: unknown;
2467
+ };
2468
+ content: {
2469
+ "application/json": components["schemas"]["HTTPValidationError"];
2470
+ };
2471
+ };
2472
+ };
2473
+ };
2474
+ request_thread_access_runs_threads__thread_id__request_access_post: {
2475
+ parameters: {
2476
+ query?: never;
2477
+ header?: never;
2478
+ path: {
2479
+ thread_id: string;
2480
+ };
2481
+ cookie?: never;
2482
+ };
2483
+ requestBody: {
2484
+ content: {
2485
+ "application/json": components["schemas"]["AccessRequestRequest"];
2486
+ };
2487
+ };
2488
+ responses: {
2489
+ /** @description Successful Response */
2490
+ 200: {
2491
+ headers: {
2492
+ [name: string]: unknown;
2493
+ };
2494
+ content: {
2495
+ "application/json": {
2496
+ [key: string]: unknown;
2497
+ };
2498
+ };
2499
+ };
2500
+ /** @description Validation Error */
2501
+ 422: {
2502
+ headers: {
2503
+ [name: string]: unknown;
2504
+ };
2505
+ content: {
2506
+ "application/json": components["schemas"]["HTTPValidationError"];
2507
+ };
2508
+ };
2509
+ };
2510
+ };
2511
+ approve_thread_access_runs_threads__thread_id__approve_access__requester_id__post: {
2512
+ parameters: {
2513
+ query?: {
2514
+ /** @description Permission level: read or write */
2515
+ permission?: string;
2516
+ /** @description Optional message to requester */
2517
+ response_message?: string | null;
2518
+ };
2519
+ header?: never;
2520
+ path: {
2521
+ thread_id: string;
2522
+ requester_id: string;
2523
+ };
2524
+ cookie?: never;
2525
+ };
2526
+ requestBody?: never;
2527
+ responses: {
2528
+ /** @description Successful Response */
2529
+ 200: {
2530
+ headers: {
2531
+ [name: string]: unknown;
2532
+ };
2533
+ content: {
2534
+ "application/json": {
2535
+ [key: string]: unknown;
2536
+ };
2537
+ };
2538
+ };
2539
+ /** @description Validation Error */
2540
+ 422: {
2541
+ headers: {
2542
+ [name: string]: unknown;
2543
+ };
2544
+ content: {
2545
+ "application/json": components["schemas"]["HTTPValidationError"];
2546
+ };
2547
+ };
2548
+ };
2549
+ };
2550
+ deny_thread_access_runs_threads__thread_id__deny_access__requester_id__post: {
2551
+ parameters: {
2552
+ query?: {
2553
+ /** @description Optional message to requester */
2554
+ response_message?: string | null;
2555
+ };
2556
+ header?: never;
2557
+ path: {
2558
+ thread_id: string;
2559
+ requester_id: string;
2560
+ };
2561
+ cookie?: never;
2562
+ };
2563
+ requestBody?: never;
2564
+ responses: {
2565
+ /** @description Successful Response */
2566
+ 200: {
2567
+ headers: {
2568
+ [name: string]: unknown;
2569
+ };
2570
+ content: {
2571
+ "application/json": {
2572
+ [key: string]: unknown;
2573
+ };
2574
+ };
2575
+ };
2576
+ /** @description Validation Error */
2577
+ 422: {
2578
+ headers: {
2579
+ [name: string]: unknown;
2580
+ };
2581
+ content: {
2582
+ "application/json": components["schemas"]["HTTPValidationError"];
2583
+ };
2584
+ };
2585
+ };
2586
+ };
2587
+ list_access_requests_runs_threads__thread_id__access_requests_get: {
2588
+ parameters: {
2589
+ query?: {
2590
+ /** @description Filter by status: pending, approved, denied, revoked */
2591
+ status?: string | null;
2592
+ };
2593
+ header?: never;
2594
+ path: {
2595
+ thread_id: string;
2596
+ };
2597
+ cookie?: never;
2598
+ };
2599
+ requestBody?: never;
2600
+ responses: {
2601
+ /** @description Successful Response */
2602
+ 200: {
2603
+ headers: {
2604
+ [name: string]: unknown;
2605
+ };
2606
+ content: {
2607
+ "application/json": {
2608
+ [key: string]: unknown;
2609
+ };
2610
+ };
2611
+ };
2612
+ /** @description Validation Error */
2613
+ 422: {
2614
+ headers: {
2615
+ [name: string]: unknown;
2616
+ };
2617
+ content: {
2618
+ "application/json": components["schemas"]["HTTPValidationError"];
2619
+ };
2620
+ };
2621
+ };
2622
+ };
2623
+ my_access_requests_runs_threads_my_access_requests_get: {
2624
+ parameters: {
2625
+ query?: {
2626
+ /** @description Filter by status: pending, approved, denied, revoked */
2627
+ status?: string | null;
2628
+ };
2629
+ header?: never;
2630
+ path?: never;
2631
+ cookie?: never;
2632
+ };
2633
+ requestBody?: never;
2634
+ responses: {
2635
+ /** @description Successful Response */
2636
+ 200: {
2637
+ headers: {
2638
+ [name: string]: unknown;
2639
+ };
2640
+ content: {
2641
+ "application/json": {
2642
+ [key: string]: unknown;
2643
+ };
2644
+ };
2645
+ };
2646
+ /** @description Validation Error */
2647
+ 422: {
2648
+ headers: {
2649
+ [name: string]: unknown;
2650
+ };
2651
+ content: {
2652
+ "application/json": components["schemas"]["HTTPValidationError"];
2653
+ };
2654
+ };
2655
+ };
2656
+ };
2657
+ revoke_thread_access_runs_threads__thread_id__revoke_access__user_id_to_revoke__post: {
2658
+ parameters: {
2659
+ query?: never;
2660
+ header?: never;
2661
+ path: {
2662
+ thread_id: string;
2663
+ user_id_to_revoke: string;
2664
+ };
2665
+ cookie?: never;
2666
+ };
2667
+ requestBody?: never;
2668
+ responses: {
2669
+ /** @description Successful Response */
2670
+ 200: {
2671
+ headers: {
2672
+ [name: string]: unknown;
2673
+ };
2674
+ content: {
2675
+ "application/json": {
2676
+ [key: string]: unknown;
2677
+ };
2678
+ };
2679
+ };
2680
+ /** @description Validation Error */
2681
+ 422: {
2682
+ headers: {
2683
+ [name: string]: unknown;
2684
+ };
2685
+ content: {
2686
+ "application/json": components["schemas"]["HTTPValidationError"];
2687
+ };
2688
+ };
2689
+ };
2690
+ };
2691
+ update_thread_runs_threads__thread_id__put: {
2692
+ parameters: {
2693
+ query?: never;
2694
+ header?: never;
2695
+ path: {
2696
+ thread_id: string;
2697
+ };
2698
+ cookie?: never;
2699
+ };
2700
+ requestBody: {
2701
+ content: {
2702
+ "application/json": components["schemas"]["UpdateThreadRequest"];
2703
+ };
2704
+ };
2705
+ responses: {
2706
+ /** @description Successful Response */
2707
+ 200: {
2708
+ headers: {
2709
+ [name: string]: unknown;
2710
+ };
2711
+ content: {
2712
+ "application/json": {
2713
+ [key: string]: unknown;
2714
+ };
2715
+ };
2716
+ };
2717
+ /** @description Validation Error */
2718
+ 422: {
2719
+ headers: {
2720
+ [name: string]: unknown;
2721
+ };
2722
+ content: {
2723
+ "application/json": components["schemas"]["HTTPValidationError"];
2724
+ };
2725
+ };
2726
+ };
2727
+ };
2728
+ delete_thread_runs_threads__thread_id__delete: {
2729
+ parameters: {
2730
+ query?: never;
2731
+ header?: never;
2732
+ path: {
2733
+ thread_id: string;
2734
+ };
2735
+ cookie?: never;
2736
+ };
2737
+ requestBody?: never;
2738
+ responses: {
2739
+ /** @description Successful Response */
2740
+ 200: {
2741
+ headers: {
2742
+ [name: string]: unknown;
2743
+ };
2744
+ content: {
2745
+ "application/json": {
2746
+ [key: string]: unknown;
2747
+ };
2748
+ };
2749
+ };
2750
+ /** @description Validation Error */
2751
+ 422: {
2752
+ headers: {
2753
+ [name: string]: unknown;
2754
+ };
2755
+ content: {
2756
+ "application/json": components["schemas"]["HTTPValidationError"];
2757
+ };
2758
+ };
2759
+ };
2760
+ };
2761
+ thread_info_runs_threads__thread_id__info_get: {
2762
+ parameters: {
2763
+ query?: never;
2764
+ header?: never;
2765
+ path: {
2766
+ thread_id: string;
2767
+ };
2768
+ cookie?: never;
2769
+ };
2770
+ requestBody?: never;
2771
+ responses: {
2772
+ /** @description Successful Response */
2773
+ 200: {
2774
+ headers: {
2775
+ [name: string]: unknown;
2776
+ };
2777
+ content: {
2778
+ "application/json": {
2779
+ [key: string]: unknown;
2780
+ };
2781
+ };
2782
+ };
2783
+ /** @description Validation Error */
2784
+ 422: {
2785
+ headers: {
2786
+ [name: string]: unknown;
2787
+ };
2788
+ content: {
2789
+ "application/json": components["schemas"]["HTTPValidationError"];
2790
+ };
2791
+ };
2792
+ };
2793
+ };
2794
+ get_state_runs_threads__thread_id__state_get: {
2795
+ parameters: {
2796
+ query?: {
2797
+ checkpoint_id?: string | null;
2798
+ checkpoint_ns?: string | null;
2799
+ };
2800
+ header?: never;
2801
+ path: {
2802
+ thread_id: string;
2803
+ };
2804
+ cookie?: never;
2805
+ };
2806
+ requestBody?: never;
2807
+ responses: {
2808
+ /** @description Successful Response */
2809
+ 200: {
2810
+ headers: {
2811
+ [name: string]: unknown;
2812
+ };
2813
+ content: {
2814
+ "application/json": {
2815
+ [key: string]: unknown;
2816
+ };
2817
+ };
2818
+ };
2819
+ /** @description Validation Error */
2820
+ 422: {
2821
+ headers: {
2822
+ [name: string]: unknown;
2823
+ };
2824
+ content: {
2825
+ "application/json": components["schemas"]["HTTPValidationError"];
2826
+ };
2827
+ };
2828
+ };
2829
+ };
2830
+ get_state_history_runs_threads__thread_id__state_history_get: {
2831
+ parameters: {
2832
+ query?: {
2833
+ checkpoint_id?: string | null;
2834
+ limit?: number;
2835
+ /** @description Include full checkpoint values payload. Defaults to false (config-only snapshots). */
2836
+ include_values?: boolean;
2837
+ };
2838
+ header?: never;
2839
+ path: {
2840
+ thread_id: string;
2841
+ };
2842
+ cookie?: never;
2843
+ };
2844
+ requestBody?: never;
2845
+ responses: {
2846
+ /** @description Successful Response */
2847
+ 200: {
2848
+ headers: {
2849
+ [name: string]: unknown;
2850
+ };
2851
+ content: {
2852
+ "application/json": {
2853
+ [key: string]: unknown;
2854
+ };
2855
+ };
2856
+ };
2857
+ /** @description Validation Error */
2858
+ 422: {
2859
+ headers: {
2860
+ [name: string]: unknown;
2861
+ };
2862
+ content: {
2863
+ "application/json": components["schemas"]["HTTPValidationError"];
2864
+ };
2865
+ };
2866
+ };
2867
+ };
2868
+ create_and_stream_run_runs_stream_post: {
2869
+ parameters: {
2870
+ query?: never;
2871
+ header?: never;
2872
+ path?: never;
2873
+ cookie?: never;
2874
+ };
2875
+ requestBody: {
2876
+ content: {
2877
+ "application/json": components["schemas"]["ChatRequest"];
2878
+ };
2879
+ };
2880
+ responses: {
2881
+ /** @description Successful Response */
2882
+ 200: {
2883
+ headers: {
2884
+ [name: string]: unknown;
2885
+ };
2886
+ content: {
2887
+ "application/json": unknown;
2888
+ };
2889
+ };
2890
+ /** @description Validation Error */
2891
+ 422: {
2892
+ headers: {
2893
+ [name: string]: unknown;
2894
+ };
2895
+ content: {
2896
+ "application/json": components["schemas"]["HTTPValidationError"];
2897
+ };
2898
+ };
2899
+ };
2900
+ };
2901
+ create_and_wait_run_runs_wait_post: {
2902
+ parameters: {
2903
+ query?: never;
2904
+ header?: never;
2905
+ path?: never;
2906
+ cookie?: never;
2907
+ };
2908
+ requestBody: {
2909
+ content: {
2910
+ "application/json": {
2911
+ [key: string]: unknown;
2912
+ };
2913
+ };
2914
+ };
2915
+ responses: {
2916
+ /** @description Successful Response */
2917
+ 200: {
2918
+ headers: {
2919
+ [name: string]: unknown;
2920
+ };
2921
+ content: {
2922
+ "application/json": {
2923
+ [key: string]: unknown;
2924
+ };
2925
+ };
2926
+ };
2927
+ /** @description Validation Error */
2928
+ 422: {
2929
+ headers: {
2930
+ [name: string]: unknown;
2931
+ };
2932
+ content: {
2933
+ "application/json": components["schemas"]["HTTPValidationError"];
2934
+ };
2935
+ };
2936
+ };
2937
+ };
2938
+ create_run_runs_post: {
2939
+ parameters: {
2940
+ query?: never;
2941
+ header?: never;
2942
+ path?: never;
2943
+ cookie?: never;
2944
+ };
2945
+ requestBody: {
2946
+ content: {
2947
+ "application/json": {
2948
+ [key: string]: unknown;
2949
+ };
2950
+ };
2951
+ };
2952
+ responses: {
2953
+ /** @description Successful Response */
2954
+ 201: {
2955
+ headers: {
2956
+ [name: string]: unknown;
2957
+ };
2958
+ content: {
2959
+ "application/json": {
2960
+ [key: string]: unknown;
2961
+ };
2962
+ };
2963
+ };
2964
+ /** @description Validation Error */
2965
+ 422: {
2966
+ headers: {
2967
+ [name: string]: unknown;
2968
+ };
2969
+ content: {
2970
+ "application/json": components["schemas"]["HTTPValidationError"];
2971
+ };
2972
+ };
2973
+ };
2974
+ };
2975
+ get_run_runs__run_id__get: {
2976
+ parameters: {
2977
+ query?: never;
2978
+ header?: never;
2979
+ path: {
2980
+ run_id: string;
2981
+ };
2982
+ cookie?: never;
2983
+ };
2984
+ requestBody?: never;
2985
+ responses: {
2986
+ /** @description Successful Response */
2987
+ 200: {
2988
+ headers: {
2989
+ [name: string]: unknown;
2990
+ };
2991
+ content: {
2992
+ "application/json": {
2993
+ [key: string]: unknown;
2994
+ };
2995
+ };
2996
+ };
2997
+ /** @description Validation Error */
2998
+ 422: {
2999
+ headers: {
3000
+ [name: string]: unknown;
3001
+ };
3002
+ content: {
3003
+ "application/json": components["schemas"]["HTTPValidationError"];
3004
+ };
3005
+ };
3006
+ };
3007
+ };
3008
+ delete_run_runs__run_id__delete: {
3009
+ parameters: {
3010
+ query?: never;
3011
+ header?: never;
3012
+ path: {
3013
+ run_id: string;
3014
+ };
3015
+ cookie?: never;
3016
+ };
3017
+ requestBody?: never;
3018
+ responses: {
3019
+ /** @description Successful Response */
3020
+ 204: {
3021
+ headers: {
3022
+ [name: string]: unknown;
3023
+ };
3024
+ content?: never;
3025
+ };
3026
+ /** @description Validation Error */
3027
+ 422: {
3028
+ headers: {
3029
+ [name: string]: unknown;
3030
+ };
3031
+ content: {
3032
+ "application/json": components["schemas"]["HTTPValidationError"];
3033
+ };
3034
+ };
3035
+ };
3036
+ };
3037
+ patch_run_runs__run_id__patch: {
3038
+ parameters: {
3039
+ query?: never;
3040
+ header?: never;
3041
+ path: {
3042
+ run_id: string;
3043
+ };
3044
+ cookie?: never;
3045
+ };
3046
+ requestBody: {
3047
+ content: {
3048
+ "application/json": {
3049
+ [key: string]: unknown;
3050
+ };
3051
+ };
3052
+ };
3053
+ responses: {
3054
+ /** @description Successful Response */
3055
+ 200: {
3056
+ headers: {
3057
+ [name: string]: unknown;
3058
+ };
3059
+ content: {
3060
+ "application/json": {
3061
+ [key: string]: unknown;
3062
+ };
3063
+ };
3064
+ };
3065
+ /** @description Validation Error */
3066
+ 422: {
3067
+ headers: {
3068
+ [name: string]: unknown;
3069
+ };
3070
+ content: {
3071
+ "application/json": components["schemas"]["HTTPValidationError"];
3072
+ };
3073
+ };
3074
+ };
3075
+ };
3076
+ wait_existing_run_runs__run_id__wait_get: {
3077
+ parameters: {
3078
+ query?: {
3079
+ timeout?: number;
3080
+ };
3081
+ header?: never;
3082
+ path: {
3083
+ run_id: string;
3084
+ };
3085
+ cookie?: never;
3086
+ };
3087
+ requestBody?: never;
3088
+ responses: {
3089
+ /** @description Successful Response */
3090
+ 200: {
3091
+ headers: {
3092
+ [name: string]: unknown;
3093
+ };
3094
+ content: {
3095
+ "application/json": {
3096
+ [key: string]: unknown;
3097
+ };
3098
+ };
3099
+ };
3100
+ /** @description Validation Error */
3101
+ 422: {
3102
+ headers: {
3103
+ [name: string]: unknown;
3104
+ };
3105
+ content: {
3106
+ "application/json": components["schemas"]["HTTPValidationError"];
3107
+ };
3108
+ };
3109
+ };
3110
+ };
3111
+ stream_existing_run_runs__run_id__stream_get: {
3112
+ parameters: {
3113
+ query?: never;
3114
+ header?: never;
3115
+ path: {
3116
+ run_id: string;
3117
+ };
3118
+ cookie?: never;
3119
+ };
3120
+ requestBody?: never;
3121
+ responses: {
3122
+ /** @description Successful Response */
3123
+ 200: {
3124
+ headers: {
3125
+ [name: string]: unknown;
3126
+ };
3127
+ content: {
3128
+ "application/json": unknown;
3129
+ };
3130
+ };
3131
+ /** @description Validation Error */
3132
+ 422: {
3133
+ headers: {
3134
+ [name: string]: unknown;
3135
+ };
3136
+ content: {
3137
+ "application/json": components["schemas"]["HTTPValidationError"];
3138
+ };
3139
+ };
3140
+ };
3141
+ };
3142
+ submit_run_input_runs__run_id__submit_post: {
3143
+ parameters: {
3144
+ query?: never;
3145
+ header?: never;
3146
+ path: {
3147
+ run_id: string;
3148
+ };
3149
+ cookie?: never;
3150
+ };
3151
+ requestBody: {
3152
+ content: {
3153
+ "application/json": {
3154
+ [key: string]: unknown;
3155
+ };
3156
+ };
3157
+ };
3158
+ responses: {
3159
+ /** @description Successful Response */
3160
+ 200: {
3161
+ headers: {
3162
+ [name: string]: unknown;
3163
+ };
3164
+ content: {
3165
+ "application/json": {
3166
+ [key: string]: unknown;
3167
+ };
3168
+ };
3169
+ };
3170
+ /** @description Validation Error */
3171
+ 422: {
3172
+ headers: {
3173
+ [name: string]: unknown;
3174
+ };
3175
+ content: {
3176
+ "application/json": components["schemas"]["HTTPValidationError"];
3177
+ };
3178
+ };
3179
+ };
3180
+ };
3181
+ cancel_run_runs__run_id__cancel_post: {
3182
+ parameters: {
3183
+ query?: never;
3184
+ header?: never;
3185
+ path: {
3186
+ run_id: string;
3187
+ };
3188
+ cookie?: never;
3189
+ };
3190
+ requestBody?: never;
3191
+ responses: {
3192
+ /** @description Successful Response */
3193
+ 200: {
3194
+ headers: {
3195
+ [name: string]: unknown;
3196
+ };
3197
+ content: {
3198
+ "application/json": {
3199
+ [key: string]: unknown;
3200
+ };
3201
+ };
3202
+ };
3203
+ /** @description Validation Error */
3204
+ 422: {
3205
+ headers: {
3206
+ [name: string]: unknown;
3207
+ };
3208
+ content: {
3209
+ "application/json": components["schemas"]["HTTPValidationError"];
3210
+ };
3211
+ };
3212
+ };
3213
+ };
3214
+ search_runs_runs_search_post: {
3215
+ parameters: {
3216
+ query?: never;
3217
+ header?: never;
3218
+ path?: never;
3219
+ cookie?: never;
3220
+ };
3221
+ requestBody: {
3222
+ content: {
3223
+ "application/json": {
3224
+ [key: string]: unknown;
3225
+ };
3226
+ };
3227
+ };
3228
+ responses: {
3229
+ /** @description Successful Response */
3230
+ 200: {
3231
+ headers: {
3232
+ [name: string]: unknown;
3233
+ };
3234
+ content: {
3235
+ "application/json": {
3236
+ [key: string]: unknown;
3237
+ };
3238
+ };
3239
+ };
3240
+ /** @description Validation Error */
3241
+ 422: {
3242
+ headers: {
3243
+ [name: string]: unknown;
3244
+ };
3245
+ content: {
3246
+ "application/json": components["schemas"]["HTTPValidationError"];
3247
+ };
3248
+ };
3249
+ };
3250
+ };
3251
+ get_run_history_runs__run_id__state_history_get: {
3252
+ parameters: {
3253
+ query?: {
3254
+ checkpoint_id?: string | null;
3255
+ limit?: number;
3256
+ };
3257
+ header?: never;
3258
+ path: {
3259
+ run_id: string;
3260
+ };
3261
+ cookie?: never;
3262
+ };
3263
+ requestBody?: never;
3264
+ responses: {
3265
+ /** @description Successful Response */
3266
+ 200: {
3267
+ headers: {
3268
+ [name: string]: unknown;
3269
+ };
3270
+ content: {
3271
+ "application/json": {
3272
+ [key: string]: unknown;
3273
+ };
3274
+ };
3275
+ };
3276
+ /** @description Validation Error */
3277
+ 422: {
3278
+ headers: {
3279
+ [name: string]: unknown;
3280
+ };
3281
+ content: {
3282
+ "application/json": components["schemas"]["HTTPValidationError"];
3283
+ };
3284
+ };
3285
+ };
3286
+ };
3287
+ get_run_state_runs__run_id__state_get: {
3288
+ parameters: {
3289
+ query?: {
3290
+ checkpoint_id?: string | null;
3291
+ checkpoint_ns?: string | null;
3292
+ };
3293
+ header?: never;
3294
+ path: {
3295
+ run_id: string;
3296
+ };
3297
+ cookie?: never;
3298
+ };
3299
+ requestBody?: never;
3300
+ responses: {
3301
+ /** @description Successful Response */
3302
+ 200: {
3303
+ headers: {
3304
+ [name: string]: unknown;
3305
+ };
3306
+ content: {
3307
+ "application/json": {
3308
+ [key: string]: unknown;
3309
+ };
3310
+ };
3311
+ };
3312
+ /** @description Validation Error */
3313
+ 422: {
3314
+ headers: {
3315
+ [name: string]: unknown;
3316
+ };
3317
+ content: {
3318
+ "application/json": components["schemas"]["HTTPValidationError"];
3319
+ };
3320
+ };
3321
+ };
3322
+ };
3323
+ get_issues_inav_issues__get: {
3324
+ parameters: {
3325
+ query?: {
3326
+ /** @description INAV node identifier */
3327
+ nodeId?: string | null;
3328
+ };
3329
+ header?: never;
3330
+ path?: never;
3331
+ cookie?: never;
3332
+ };
3333
+ requestBody?: never;
3334
+ responses: {
3335
+ /** @description Successful Response */
3336
+ 200: {
3337
+ headers: {
3338
+ [name: string]: unknown;
3339
+ };
3340
+ content: {
3341
+ "application/json": components["schemas"]["Envelope"];
3342
+ };
3343
+ };
3344
+ /** @description Unauthorized */
3345
+ 401: {
3346
+ headers: {
3347
+ [name: string]: unknown;
3348
+ };
3349
+ content?: never;
3350
+ };
3351
+ /** @description Validation Error */
3352
+ 422: {
3353
+ headers: {
3354
+ [name: string]: unknown;
3355
+ };
3356
+ content: {
3357
+ "application/json": components["schemas"]["HTTPValidationError"];
3358
+ };
3359
+ };
3360
+ /** @description Internal server error */
3361
+ 500: {
3362
+ headers: {
3363
+ [name: string]: unknown;
3364
+ };
3365
+ content?: never;
3366
+ };
3367
+ };
3368
+ };
3369
+ create_issue_inav_issues__post: {
3370
+ parameters: {
3371
+ query?: never;
3372
+ header?: never;
3373
+ path?: never;
3374
+ cookie?: never;
3375
+ };
3376
+ requestBody: {
3377
+ content: {
3378
+ "application/json": components["schemas"]["CreateIssueRequest"];
3379
+ };
3380
+ };
3381
+ responses: {
3382
+ /** @description Successful Response */
3383
+ 200: {
3384
+ headers: {
3385
+ [name: string]: unknown;
3386
+ };
3387
+ content: {
3388
+ "application/json": components["schemas"]["Envelope"];
3389
+ };
3390
+ };
3391
+ /** @description Unauthorized */
3392
+ 401: {
3393
+ headers: {
3394
+ [name: string]: unknown;
3395
+ };
3396
+ content?: never;
3397
+ };
3398
+ /** @description Validation Error */
3399
+ 422: {
3400
+ headers: {
3401
+ [name: string]: unknown;
3402
+ };
3403
+ content: {
3404
+ "application/json": components["schemas"]["HTTPValidationError"];
3405
+ };
3406
+ };
3407
+ /** @description Internal server error */
3408
+ 500: {
3409
+ headers: {
3410
+ [name: string]: unknown;
3411
+ };
3412
+ content?: never;
3413
+ };
3414
+ };
3415
+ };
3416
+ get_issue_inav_issues__issue_id__get: {
3417
+ parameters: {
3418
+ query?: {
3419
+ /** @description INAV node identifier */
3420
+ nodeId?: string | null;
3421
+ };
3422
+ header?: never;
3423
+ path: {
3424
+ issue_id: string;
3425
+ };
3426
+ cookie?: never;
3427
+ };
3428
+ requestBody?: never;
3429
+ responses: {
3430
+ /** @description Successful Response */
3431
+ 200: {
3432
+ headers: {
3433
+ [name: string]: unknown;
3434
+ };
3435
+ content: {
3436
+ "application/json": components["schemas"]["Envelope"];
3437
+ };
3438
+ };
3439
+ /** @description Unauthorized */
3440
+ 401: {
3441
+ headers: {
3442
+ [name: string]: unknown;
3443
+ };
3444
+ content?: never;
3445
+ };
3446
+ /** @description Validation Error */
3447
+ 422: {
3448
+ headers: {
3449
+ [name: string]: unknown;
3450
+ };
3451
+ content: {
3452
+ "application/json": components["schemas"]["HTTPValidationError"];
3453
+ };
3454
+ };
3455
+ /** @description Internal server error */
3456
+ 500: {
3457
+ headers: {
3458
+ [name: string]: unknown;
3459
+ };
3460
+ content?: never;
3461
+ };
3462
+ };
3463
+ };
3464
+ update_issue_inav_issues__issue_id__put: {
3465
+ parameters: {
3466
+ query?: never;
3467
+ header?: never;
3468
+ path: {
3469
+ issue_id: string;
3470
+ };
3471
+ cookie?: never;
3472
+ };
3473
+ requestBody: {
3474
+ content: {
3475
+ "application/json": components["schemas"]["UpdateIssueRequest"];
3476
+ };
3477
+ };
3478
+ responses: {
3479
+ /** @description Successful Response */
3480
+ 200: {
3481
+ headers: {
3482
+ [name: string]: unknown;
3483
+ };
3484
+ content: {
3485
+ "application/json": components["schemas"]["Envelope"];
3486
+ };
3487
+ };
3488
+ /** @description Unauthorized */
3489
+ 401: {
3490
+ headers: {
3491
+ [name: string]: unknown;
3492
+ };
3493
+ content?: never;
3494
+ };
3495
+ /** @description Validation Error */
3496
+ 422: {
3497
+ headers: {
3498
+ [name: string]: unknown;
3499
+ };
3500
+ content: {
3501
+ "application/json": components["schemas"]["HTTPValidationError"];
3502
+ };
3503
+ };
3504
+ /** @description Internal server error */
3505
+ 500: {
3506
+ headers: {
3507
+ [name: string]: unknown;
3508
+ };
3509
+ content?: never;
3510
+ };
3511
+ };
3512
+ };
3513
+ delete_issue_inav_issues__issue_id__delete: {
3514
+ parameters: {
3515
+ query?: {
3516
+ /** @description INAV node identifier */
3517
+ nodeId?: string | null;
3518
+ };
3519
+ header?: never;
3520
+ path: {
3521
+ issue_id: string;
3522
+ };
3523
+ cookie?: never;
3524
+ };
3525
+ requestBody?: never;
3526
+ responses: {
3527
+ /** @description Successful Response */
3528
+ 200: {
3529
+ headers: {
3530
+ [name: string]: unknown;
3531
+ };
3532
+ content: {
3533
+ "application/json": components["schemas"]["Envelope"];
3534
+ };
3535
+ };
3536
+ /** @description Unauthorized */
3537
+ 401: {
3538
+ headers: {
3539
+ [name: string]: unknown;
3540
+ };
3541
+ content?: never;
3542
+ };
3543
+ /** @description Validation Error */
3544
+ 422: {
3545
+ headers: {
3546
+ [name: string]: unknown;
3547
+ };
3548
+ content: {
3549
+ "application/json": components["schemas"]["HTTPValidationError"];
3550
+ };
3551
+ };
3552
+ /** @description Internal server error */
3553
+ 500: {
3554
+ headers: {
3555
+ [name: string]: unknown;
3556
+ };
3557
+ content?: never;
3558
+ };
3559
+ };
3560
+ };
3561
+ batch_save_issues_inav_issues_batch_save_post: {
3562
+ parameters: {
3563
+ query?: never;
3564
+ header?: never;
3565
+ path?: never;
3566
+ cookie?: never;
3567
+ };
3568
+ requestBody: {
3569
+ content: {
3570
+ "application/json": components["schemas"]["BatchIssuesRequest"];
3571
+ };
3572
+ };
3573
+ responses: {
3574
+ /** @description Successful Response */
3575
+ 200: {
3576
+ headers: {
3577
+ [name: string]: unknown;
3578
+ };
3579
+ content: {
3580
+ "application/json": components["schemas"]["Envelope"];
3581
+ };
3582
+ };
3583
+ /** @description Unauthorized */
3584
+ 401: {
3585
+ headers: {
3586
+ [name: string]: unknown;
3587
+ };
3588
+ content?: never;
3589
+ };
3590
+ /** @description Validation Error */
3591
+ 422: {
3592
+ headers: {
3593
+ [name: string]: unknown;
3594
+ };
3595
+ content: {
3596
+ "application/json": components["schemas"]["HTTPValidationError"];
3597
+ };
3598
+ };
3599
+ /** @description Internal server error */
3600
+ 500: {
3601
+ headers: {
3602
+ [name: string]: unknown;
3603
+ };
3604
+ content?: never;
3605
+ };
3606
+ };
3607
+ };
3608
+ list_portfolios_api_v1_inav_portfolios_get: {
3609
+ parameters: {
3610
+ query?: never;
3611
+ header?: never;
3612
+ path?: never;
3613
+ cookie?: never;
3614
+ };
3615
+ requestBody?: never;
3616
+ responses: {
3617
+ /** @description Successful Response */
3618
+ 200: {
3619
+ headers: {
3620
+ [name: string]: unknown;
3621
+ };
3622
+ content: {
3623
+ "application/json": unknown;
3624
+ };
3625
+ };
3626
+ /** @description Bad request */
3627
+ 400: {
3628
+ headers: {
3629
+ [name: string]: unknown;
3630
+ };
3631
+ content?: never;
3632
+ };
3633
+ /** @description Not found */
3634
+ 404: {
3635
+ headers: {
3636
+ [name: string]: unknown;
3637
+ };
3638
+ content?: never;
3639
+ };
3640
+ /** @description Internal error */
3641
+ 500: {
3642
+ headers: {
3643
+ [name: string]: unknown;
3644
+ };
3645
+ content?: never;
3646
+ };
3647
+ };
3648
+ };
3649
+ create_portfolio_api_v1_inav_portfolios_post: {
3650
+ parameters: {
3651
+ query?: never;
3652
+ header?: never;
3653
+ path?: never;
3654
+ cookie?: never;
3655
+ };
3656
+ requestBody: {
3657
+ content: {
3658
+ "application/json": components["schemas"]["CreatePortfolioRequest"];
3659
+ };
3660
+ };
3661
+ responses: {
3662
+ /** @description Successful Response */
3663
+ 200: {
3664
+ headers: {
3665
+ [name: string]: unknown;
3666
+ };
3667
+ content: {
3668
+ "application/json": unknown;
3669
+ };
3670
+ };
3671
+ /** @description Bad request */
3672
+ 400: {
3673
+ headers: {
3674
+ [name: string]: unknown;
3675
+ };
3676
+ content?: never;
3677
+ };
3678
+ /** @description Not found */
3679
+ 404: {
3680
+ headers: {
3681
+ [name: string]: unknown;
3682
+ };
3683
+ content?: never;
3684
+ };
3685
+ /** @description Validation Error */
3686
+ 422: {
3687
+ headers: {
3688
+ [name: string]: unknown;
3689
+ };
3690
+ content: {
3691
+ "application/json": components["schemas"]["HTTPValidationError"];
3692
+ };
3693
+ };
3694
+ /** @description Internal error */
3695
+ 500: {
3696
+ headers: {
3697
+ [name: string]: unknown;
3698
+ };
3699
+ content?: never;
3700
+ };
3701
+ };
3702
+ };
3703
+ read_portfolio_tree_api_v1_inav_portfolios__portfolio_name__tree_get: {
3704
+ parameters: {
3705
+ query?: never;
3706
+ header?: never;
3707
+ path: {
3708
+ portfolio_name: string;
3709
+ };
3710
+ cookie?: never;
3711
+ };
3712
+ requestBody?: never;
3713
+ responses: {
3714
+ /** @description Successful Response */
3715
+ 200: {
3716
+ headers: {
3717
+ [name: string]: unknown;
3718
+ };
3719
+ content: {
3720
+ "application/json": unknown;
3721
+ };
3722
+ };
3723
+ /** @description Bad request */
3724
+ 400: {
3725
+ headers: {
3726
+ [name: string]: unknown;
3727
+ };
3728
+ content?: never;
3729
+ };
3730
+ /** @description Not found */
3731
+ 404: {
3732
+ headers: {
3733
+ [name: string]: unknown;
3734
+ };
3735
+ content?: never;
3736
+ };
3737
+ /** @description Validation Error */
3738
+ 422: {
3739
+ headers: {
3740
+ [name: string]: unknown;
3741
+ };
3742
+ content: {
3743
+ "application/json": components["schemas"]["HTTPValidationError"];
3744
+ };
3745
+ };
3746
+ /** @description Internal error */
3747
+ 500: {
3748
+ headers: {
3749
+ [name: string]: unknown;
3750
+ };
3751
+ content?: never;
3752
+ };
3753
+ };
3754
+ };
3755
+ read_node_api_v1_inav_nodes__node_id__get: {
3756
+ parameters: {
3757
+ query?: never;
3758
+ header?: never;
3759
+ path: {
3760
+ node_id: string;
3761
+ };
3762
+ cookie?: never;
3763
+ };
3764
+ requestBody?: never;
3765
+ responses: {
3766
+ /** @description Successful Response */
3767
+ 200: {
3768
+ headers: {
3769
+ [name: string]: unknown;
3770
+ };
3771
+ content: {
3772
+ "application/json": unknown;
3773
+ };
3774
+ };
3775
+ /** @description Bad request */
3776
+ 400: {
3777
+ headers: {
3778
+ [name: string]: unknown;
3779
+ };
3780
+ content?: never;
3781
+ };
3782
+ /** @description Not found */
3783
+ 404: {
3784
+ headers: {
3785
+ [name: string]: unknown;
3786
+ };
3787
+ content?: never;
3788
+ };
3789
+ /** @description Validation Error */
3790
+ 422: {
3791
+ headers: {
3792
+ [name: string]: unknown;
3793
+ };
3794
+ content: {
3795
+ "application/json": components["schemas"]["HTTPValidationError"];
3796
+ };
3797
+ };
3798
+ /** @description Internal error */
3799
+ 500: {
3800
+ headers: {
3801
+ [name: string]: unknown;
3802
+ };
3803
+ content?: never;
3804
+ };
3805
+ };
3806
+ };
3807
+ list_nodes_api_v1_inav_nodes_get: {
3808
+ parameters: {
3809
+ query?: {
3810
+ portfolioName?: string | null;
3811
+ };
3812
+ header?: never;
3813
+ path?: never;
3814
+ cookie?: never;
3815
+ };
3816
+ requestBody?: never;
3817
+ responses: {
3818
+ /** @description Successful Response */
3819
+ 200: {
3820
+ headers: {
3821
+ [name: string]: unknown;
3822
+ };
3823
+ content: {
3824
+ "application/json": unknown;
3825
+ };
3826
+ };
3827
+ /** @description Bad request */
3828
+ 400: {
3829
+ headers: {
3830
+ [name: string]: unknown;
3831
+ };
3832
+ content?: never;
3833
+ };
3834
+ /** @description Not found */
3835
+ 404: {
3836
+ headers: {
3837
+ [name: string]: unknown;
3838
+ };
3839
+ content?: never;
3840
+ };
3841
+ /** @description Validation Error */
3842
+ 422: {
3843
+ headers: {
3844
+ [name: string]: unknown;
3845
+ };
3846
+ content: {
3847
+ "application/json": components["schemas"]["HTTPValidationError"];
3848
+ };
3849
+ };
3850
+ /** @description Internal error */
3851
+ 500: {
3852
+ headers: {
3853
+ [name: string]: unknown;
3854
+ };
3855
+ content?: never;
3856
+ };
3857
+ };
3858
+ };
3859
+ create_node_api_v1_inav_nodes_post: {
3860
+ parameters: {
3861
+ query?: never;
3862
+ header?: never;
3863
+ path?: never;
3864
+ cookie?: never;
3865
+ };
3866
+ requestBody: {
3867
+ content: {
3868
+ "application/json": components["schemas"]["CreateNodeRequest"];
3869
+ };
3870
+ };
3871
+ responses: {
3872
+ /** @description Successful Response */
3873
+ 200: {
3874
+ headers: {
3875
+ [name: string]: unknown;
3876
+ };
3877
+ content: {
3878
+ "application/json": unknown;
3879
+ };
3880
+ };
3881
+ /** @description Bad request */
3882
+ 400: {
3883
+ headers: {
3884
+ [name: string]: unknown;
3885
+ };
3886
+ content?: never;
3887
+ };
3888
+ /** @description Not found */
3889
+ 404: {
3890
+ headers: {
3891
+ [name: string]: unknown;
3892
+ };
3893
+ content?: never;
3894
+ };
3895
+ /** @description Validation Error */
3896
+ 422: {
3897
+ headers: {
3898
+ [name: string]: unknown;
3899
+ };
3900
+ content: {
3901
+ "application/json": components["schemas"]["HTTPValidationError"];
3902
+ };
3903
+ };
3904
+ /** @description Internal error */
3905
+ 500: {
3906
+ headers: {
3907
+ [name: string]: unknown;
3908
+ };
3909
+ content?: never;
3910
+ };
3911
+ };
3912
+ };
3913
+ login_auth_login_post: {
3914
+ parameters: {
3915
+ query?: never;
3916
+ header?: never;
3917
+ path?: never;
3918
+ cookie?: never;
3919
+ };
3920
+ requestBody: {
3921
+ content: {
3922
+ "application/json": components["schemas"]["LoginRequest"];
3923
+ };
3924
+ };
3925
+ responses: {
3926
+ /** @description Successful Response */
3927
+ 200: {
3928
+ headers: {
3929
+ [name: string]: unknown;
3930
+ };
3931
+ content: {
3932
+ "application/json": unknown;
3933
+ };
3934
+ };
3935
+ /** @description Validation Error */
3936
+ 422: {
3937
+ headers: {
3938
+ [name: string]: unknown;
3939
+ };
3940
+ content: {
3941
+ "application/json": components["schemas"]["HTTPValidationError"];
3942
+ };
3943
+ };
3944
+ };
3945
+ };
3946
+ list_users_auth_users_get: {
3947
+ parameters: {
3948
+ query?: never;
3949
+ header?: never;
3950
+ path?: never;
3951
+ cookie?: never;
3952
+ };
3953
+ requestBody?: never;
3954
+ responses: {
3955
+ /** @description Successful Response */
3956
+ 200: {
3957
+ headers: {
3958
+ [name: string]: unknown;
3959
+ };
3960
+ content: {
3961
+ "application/json": unknown;
3962
+ };
3963
+ };
3964
+ };
3965
+ };
3966
+ get_user_by_id_auth_users__user_id__get: {
3967
+ parameters: {
3968
+ query?: never;
3969
+ header?: never;
3970
+ path: {
3971
+ user_id: string;
3972
+ };
3973
+ cookie?: never;
3974
+ };
3975
+ requestBody?: never;
3976
+ responses: {
3977
+ /** @description Successful Response */
3978
+ 200: {
3979
+ headers: {
3980
+ [name: string]: unknown;
3981
+ };
3982
+ content: {
3983
+ "application/json": unknown;
3984
+ };
3985
+ };
3986
+ /** @description Validation Error */
3987
+ 422: {
3988
+ headers: {
3989
+ [name: string]: unknown;
3990
+ };
3991
+ content: {
3992
+ "application/json": components["schemas"]["HTTPValidationError"];
3993
+ };
3994
+ };
3995
+ };
3996
+ };
3997
+ logout_auth_logout_post: {
3998
+ parameters: {
3999
+ query?: never;
4000
+ header?: never;
4001
+ path?: never;
4002
+ cookie?: never;
4003
+ };
4004
+ requestBody?: never;
4005
+ responses: {
4006
+ /** @description Successful Response */
4007
+ 200: {
4008
+ headers: {
4009
+ [name: string]: unknown;
4010
+ };
4011
+ content: {
4012
+ "application/json": unknown;
4013
+ };
4014
+ };
4015
+ };
4016
+ };
4017
+ get_me_auth_me_get: {
4018
+ parameters: {
4019
+ query?: never;
4020
+ header?: never;
4021
+ path?: never;
4022
+ cookie?: never;
4023
+ };
4024
+ requestBody?: never;
4025
+ responses: {
4026
+ /** @description Successful Response */
4027
+ 200: {
4028
+ headers: {
4029
+ [name: string]: unknown;
4030
+ };
4031
+ content: {
4032
+ "application/json": unknown;
4033
+ };
4034
+ };
4035
+ };
4036
+ };
4037
+ }