ltcai 5.5.0 → 5.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -14
- package/docs/CHANGELOG.md +31 -0
- package/frontend/openapi.json +677 -3
- package/frontend/src/api/client.ts +36 -0
- package/frontend/src/api/openapi.ts +573 -4
- package/frontend/src/pages/Act.tsx +202 -5
- package/frontend/src/routes.ts +1 -0
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/runtime/multi_agent.py +1 -1
- package/latticeai/__init__.py +1 -1
- package/latticeai/api/review_queue.py +158 -0
- package/latticeai/app_factory.py +28 -0
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +86 -1
- package/latticeai/services/review_queue.py +255 -0
- package/latticeai/services/run_executor.py +33 -0
- package/latticeai/services/triggers.py +30 -1
- package/package.json +1 -1
- package/src-tauri/Cargo.lock +1 -1
- package/src-tauri/Cargo.toml +1 -1
- package/src-tauri/tauri.conf.json +1 -1
- package/static/app/asset-manifest.json +5 -5
- package/static/app/assets/index-xMFu94cX.js +16 -0
- package/static/app/assets/index-xMFu94cX.js.map +1 -0
- package/static/app/assets/index-xRn29gI8.css +2 -0
- package/static/app/index.html +2 -2
- package/static/app/assets/index-C7vzwUjU.js +0 -16
- package/static/app/assets/index-C7vzwUjU.js.map +0 -1
- package/static/app/assets/index-HN4f2wbe.css +0 -2
|
@@ -190,6 +190,23 @@ export interface paths {
|
|
|
190
190
|
patch?: never;
|
|
191
191
|
trace?: never;
|
|
192
192
|
};
|
|
193
|
+
"/admin/log-retention": {
|
|
194
|
+
parameters: {
|
|
195
|
+
query?: never;
|
|
196
|
+
header?: never;
|
|
197
|
+
path?: never;
|
|
198
|
+
cookie?: never;
|
|
199
|
+
};
|
|
200
|
+
/** Admin Log Retention */
|
|
201
|
+
get: operations["admin_log_retention_admin_log_retention_get"];
|
|
202
|
+
put?: never;
|
|
203
|
+
post?: never;
|
|
204
|
+
delete?: never;
|
|
205
|
+
options?: never;
|
|
206
|
+
head?: never;
|
|
207
|
+
patch?: never;
|
|
208
|
+
trace?: never;
|
|
209
|
+
};
|
|
193
210
|
"/admin/policies": {
|
|
194
211
|
parameters: {
|
|
195
212
|
query?: never;
|
|
@@ -1794,6 +1811,109 @@ export interface paths {
|
|
|
1794
1811
|
patch?: never;
|
|
1795
1812
|
trace?: never;
|
|
1796
1813
|
};
|
|
1814
|
+
"/automation/reviews": {
|
|
1815
|
+
parameters: {
|
|
1816
|
+
query?: never;
|
|
1817
|
+
header?: never;
|
|
1818
|
+
path?: never;
|
|
1819
|
+
cookie?: never;
|
|
1820
|
+
};
|
|
1821
|
+
/** List Items */
|
|
1822
|
+
get: operations["list_items_automation_reviews_get"];
|
|
1823
|
+
put?: never;
|
|
1824
|
+
/** Create Item */
|
|
1825
|
+
post: operations["create_item_automation_reviews_post"];
|
|
1826
|
+
delete?: never;
|
|
1827
|
+
options?: never;
|
|
1828
|
+
head?: never;
|
|
1829
|
+
patch?: never;
|
|
1830
|
+
trace?: never;
|
|
1831
|
+
};
|
|
1832
|
+
"/automation/reviews/{item_id}": {
|
|
1833
|
+
parameters: {
|
|
1834
|
+
query?: never;
|
|
1835
|
+
header?: never;
|
|
1836
|
+
path?: never;
|
|
1837
|
+
cookie?: never;
|
|
1838
|
+
};
|
|
1839
|
+
/** Get Item */
|
|
1840
|
+
get: operations["get_item_automation_reviews__item_id__get"];
|
|
1841
|
+
put?: never;
|
|
1842
|
+
post?: never;
|
|
1843
|
+
delete?: never;
|
|
1844
|
+
options?: never;
|
|
1845
|
+
head?: never;
|
|
1846
|
+
patch?: never;
|
|
1847
|
+
trace?: never;
|
|
1848
|
+
};
|
|
1849
|
+
"/automation/reviews/{item_id}/approve": {
|
|
1850
|
+
parameters: {
|
|
1851
|
+
query?: never;
|
|
1852
|
+
header?: never;
|
|
1853
|
+
path?: never;
|
|
1854
|
+
cookie?: never;
|
|
1855
|
+
};
|
|
1856
|
+
get?: never;
|
|
1857
|
+
put?: never;
|
|
1858
|
+
/** Approve Item */
|
|
1859
|
+
post: operations["approve_item_automation_reviews__item_id__approve_post"];
|
|
1860
|
+
delete?: never;
|
|
1861
|
+
options?: never;
|
|
1862
|
+
head?: never;
|
|
1863
|
+
patch?: never;
|
|
1864
|
+
trace?: never;
|
|
1865
|
+
};
|
|
1866
|
+
"/automation/reviews/{item_id}/dismiss": {
|
|
1867
|
+
parameters: {
|
|
1868
|
+
query?: never;
|
|
1869
|
+
header?: never;
|
|
1870
|
+
path?: never;
|
|
1871
|
+
cookie?: never;
|
|
1872
|
+
};
|
|
1873
|
+
get?: never;
|
|
1874
|
+
put?: never;
|
|
1875
|
+
/** Dismiss Item */
|
|
1876
|
+
post: operations["dismiss_item_automation_reviews__item_id__dismiss_post"];
|
|
1877
|
+
delete?: never;
|
|
1878
|
+
options?: never;
|
|
1879
|
+
head?: never;
|
|
1880
|
+
patch?: never;
|
|
1881
|
+
trace?: never;
|
|
1882
|
+
};
|
|
1883
|
+
"/automation/reviews/{item_id}/run_now": {
|
|
1884
|
+
parameters: {
|
|
1885
|
+
query?: never;
|
|
1886
|
+
header?: never;
|
|
1887
|
+
path?: never;
|
|
1888
|
+
cookie?: never;
|
|
1889
|
+
};
|
|
1890
|
+
get?: never;
|
|
1891
|
+
put?: never;
|
|
1892
|
+
/** Run Now Item */
|
|
1893
|
+
post: operations["run_now_item_automation_reviews__item_id__run_now_post"];
|
|
1894
|
+
delete?: never;
|
|
1895
|
+
options?: never;
|
|
1896
|
+
head?: never;
|
|
1897
|
+
patch?: never;
|
|
1898
|
+
trace?: never;
|
|
1899
|
+
};
|
|
1900
|
+
"/automation/reviews/{item_id}/snooze": {
|
|
1901
|
+
parameters: {
|
|
1902
|
+
query?: never;
|
|
1903
|
+
header?: never;
|
|
1904
|
+
path?: never;
|
|
1905
|
+
cookie?: never;
|
|
1906
|
+
};
|
|
1907
|
+
get?: never;
|
|
1908
|
+
put?: never;
|
|
1909
|
+
/** Snooze Item */
|
|
1910
|
+
post: operations["snooze_item_automation_reviews__item_id__snooze_post"];
|
|
1911
|
+
delete?: never;
|
|
1912
|
+
options?: never;
|
|
1913
|
+
head?: never;
|
|
1914
|
+
patch?: never;
|
|
1915
|
+
trace?: never;
|
|
1916
|
+
};
|
|
1797
1917
|
"/chat": {
|
|
1798
1918
|
parameters: {
|
|
1799
1919
|
query?: never;
|
|
@@ -3117,9 +3237,8 @@ export interface paths {
|
|
|
3117
3237
|
* Model Recommendations
|
|
3118
3238
|
* @description Hardware-aware tri-state model recommendation for this machine.
|
|
3119
3239
|
*
|
|
3120
|
-
*
|
|
3121
|
-
*
|
|
3122
|
-
* grouped by family. Used by the onboarding and model-picker UIs.
|
|
3240
|
+
* 5.2.0: now includes rich capability fields (hf_repo_id, verification,
|
|
3241
|
+
* hardware, load_strategy, license, safety_notes) from the structured registry.
|
|
3123
3242
|
*/
|
|
3124
3243
|
get: operations["model_recommendations_models_recommendations_get"];
|
|
3125
3244
|
put?: never;
|
|
@@ -4566,6 +4685,40 @@ export interface paths {
|
|
|
4566
4685
|
patch?: never;
|
|
4567
4686
|
trace?: never;
|
|
4568
4687
|
};
|
|
4688
|
+
"/workflows/api/automation/recipes": {
|
|
4689
|
+
parameters: {
|
|
4690
|
+
query?: never;
|
|
4691
|
+
header?: never;
|
|
4692
|
+
path?: never;
|
|
4693
|
+
cookie?: never;
|
|
4694
|
+
};
|
|
4695
|
+
/** Automation Recipes */
|
|
4696
|
+
get: operations["automation_recipes_workflows_api_automation_recipes_get"];
|
|
4697
|
+
put?: never;
|
|
4698
|
+
post?: never;
|
|
4699
|
+
delete?: never;
|
|
4700
|
+
options?: never;
|
|
4701
|
+
head?: never;
|
|
4702
|
+
patch?: never;
|
|
4703
|
+
trace?: never;
|
|
4704
|
+
};
|
|
4705
|
+
"/workflows/api/automation/recipes/{recipe_id}": {
|
|
4706
|
+
parameters: {
|
|
4707
|
+
query?: never;
|
|
4708
|
+
header?: never;
|
|
4709
|
+
path?: never;
|
|
4710
|
+
cookie?: never;
|
|
4711
|
+
};
|
|
4712
|
+
get?: never;
|
|
4713
|
+
put?: never;
|
|
4714
|
+
/** Install Automation Recipe */
|
|
4715
|
+
post: operations["install_automation_recipe_workflows_api_automation_recipes__recipe_id__post"];
|
|
4716
|
+
delete?: never;
|
|
4717
|
+
options?: never;
|
|
4718
|
+
head?: never;
|
|
4719
|
+
patch?: never;
|
|
4720
|
+
trace?: never;
|
|
4721
|
+
};
|
|
4569
4722
|
"/workflows/api/definitions": {
|
|
4570
4723
|
parameters: {
|
|
4571
4724
|
query?: never;
|
|
@@ -5676,6 +5829,8 @@ export interface components {
|
|
|
5676
5829
|
user_email?: string | null;
|
|
5677
5830
|
/** User Nickname */
|
|
5678
5831
|
user_nickname?: string | null;
|
|
5832
|
+
/** Workspace Id */
|
|
5833
|
+
workspace_id?: string | null;
|
|
5679
5834
|
};
|
|
5680
5835
|
/** AgentResumeRequest */
|
|
5681
5836
|
AgentResumeRequest: {
|
|
@@ -5736,6 +5891,11 @@ export interface components {
|
|
|
5736
5891
|
};
|
|
5737
5892
|
/** ChatRequest */
|
|
5738
5893
|
ChatRequest: {
|
|
5894
|
+
/**
|
|
5895
|
+
* Allow File Context
|
|
5896
|
+
* @default false
|
|
5897
|
+
*/
|
|
5898
|
+
allow_file_context: boolean;
|
|
5739
5899
|
/** Client Url */
|
|
5740
5900
|
client_url?: string | null;
|
|
5741
5901
|
/** Context */
|
|
@@ -5780,6 +5940,34 @@ export interface components {
|
|
|
5780
5940
|
/** Scope */
|
|
5781
5941
|
scope: string;
|
|
5782
5942
|
};
|
|
5943
|
+
/** CreateReviewItemRequest */
|
|
5944
|
+
CreateReviewItemRequest: {
|
|
5945
|
+
/**
|
|
5946
|
+
* Kind
|
|
5947
|
+
* @default suggestion
|
|
5948
|
+
*/
|
|
5949
|
+
kind: string;
|
|
5950
|
+
/** Payload */
|
|
5951
|
+
payload?: {
|
|
5952
|
+
[key: string]: unknown;
|
|
5953
|
+
};
|
|
5954
|
+
/** Provenance */
|
|
5955
|
+
provenance?: {
|
|
5956
|
+
[key: string]: unknown;
|
|
5957
|
+
};
|
|
5958
|
+
/**
|
|
5959
|
+
* Source
|
|
5960
|
+
* @default workflow_run
|
|
5961
|
+
*/
|
|
5962
|
+
source: string;
|
|
5963
|
+
/**
|
|
5964
|
+
* Summary
|
|
5965
|
+
* @default
|
|
5966
|
+
*/
|
|
5967
|
+
summary: string;
|
|
5968
|
+
/** Title */
|
|
5969
|
+
title: string;
|
|
5970
|
+
};
|
|
5783
5971
|
/** CuAgentRequest */
|
|
5784
5972
|
CuAgentRequest: {
|
|
5785
5973
|
/** Conversation Id */
|
|
@@ -6452,6 +6640,11 @@ export interface components {
|
|
|
6452
6640
|
};
|
|
6453
6641
|
/** PullModelRequest */
|
|
6454
6642
|
PullModelRequest: {
|
|
6643
|
+
/**
|
|
6644
|
+
* Allow Download
|
|
6645
|
+
* @default false
|
|
6646
|
+
*/
|
|
6647
|
+
allow_download: boolean;
|
|
6455
6648
|
/** Model */
|
|
6456
6649
|
model: string;
|
|
6457
6650
|
};
|
|
@@ -6526,6 +6719,55 @@ export interface components {
|
|
|
6526
6719
|
*/
|
|
6527
6720
|
verify: boolean;
|
|
6528
6721
|
};
|
|
6722
|
+
/** ReviewItem */
|
|
6723
|
+
ReviewItem: {
|
|
6724
|
+
/** Created At */
|
|
6725
|
+
created_at?: string | null;
|
|
6726
|
+
/** Effective Status */
|
|
6727
|
+
effective_status: string;
|
|
6728
|
+
/** Id */
|
|
6729
|
+
id: string;
|
|
6730
|
+
/**
|
|
6731
|
+
* Kind
|
|
6732
|
+
* @default suggestion
|
|
6733
|
+
*/
|
|
6734
|
+
kind: string;
|
|
6735
|
+
/** Payload */
|
|
6736
|
+
payload?: {
|
|
6737
|
+
[key: string]: unknown;
|
|
6738
|
+
};
|
|
6739
|
+
/** Provenance */
|
|
6740
|
+
provenance?: {
|
|
6741
|
+
[key: string]: unknown;
|
|
6742
|
+
};
|
|
6743
|
+
/** Snoozed Until */
|
|
6744
|
+
snoozed_until?: string | null;
|
|
6745
|
+
/**
|
|
6746
|
+
* Source
|
|
6747
|
+
* @default workflow_run
|
|
6748
|
+
*/
|
|
6749
|
+
source: string;
|
|
6750
|
+
/** Status */
|
|
6751
|
+
status: string;
|
|
6752
|
+
/**
|
|
6753
|
+
* Summary
|
|
6754
|
+
* @default
|
|
6755
|
+
*/
|
|
6756
|
+
summary: string;
|
|
6757
|
+
/** Title */
|
|
6758
|
+
title: string;
|
|
6759
|
+
/** Updated At */
|
|
6760
|
+
updated_at?: string | null;
|
|
6761
|
+
/** User Email */
|
|
6762
|
+
user_email?: string | null;
|
|
6763
|
+
/** Workspace Id */
|
|
6764
|
+
workspace_id?: string | null;
|
|
6765
|
+
};
|
|
6766
|
+
/** ReviewItemList */
|
|
6767
|
+
ReviewItemList: {
|
|
6768
|
+
/** Items */
|
|
6769
|
+
items?: components["schemas"]["ReviewItem"][];
|
|
6770
|
+
};
|
|
6529
6771
|
/** SQLiteToPostgresRequest */
|
|
6530
6772
|
SQLiteToPostgresRequest: {
|
|
6531
6773
|
/**
|
|
@@ -6574,6 +6816,11 @@ export interface components {
|
|
|
6574
6816
|
/** Skill */
|
|
6575
6817
|
skill: string;
|
|
6576
6818
|
};
|
|
6819
|
+
/** SnoozeRequest */
|
|
6820
|
+
SnoozeRequest: {
|
|
6821
|
+
/** Until */
|
|
6822
|
+
until: string;
|
|
6823
|
+
};
|
|
6577
6824
|
/** SsoConfigUpdate */
|
|
6578
6825
|
SsoConfigUpdate: {
|
|
6579
6826
|
/** Client Id */
|
|
@@ -7006,6 +7253,14 @@ export interface components {
|
|
|
7006
7253
|
[key: string]: unknown;
|
|
7007
7254
|
};
|
|
7008
7255
|
};
|
|
7256
|
+
/** WorkflowRecipeInstallRequest */
|
|
7257
|
+
WorkflowRecipeInstallRequest: {
|
|
7258
|
+
/**
|
|
7259
|
+
* Enabled
|
|
7260
|
+
* @default false
|
|
7261
|
+
*/
|
|
7262
|
+
enabled: boolean;
|
|
7263
|
+
};
|
|
7009
7264
|
/** WorkflowResumeRequest */
|
|
7010
7265
|
WorkflowResumeRequest: {
|
|
7011
7266
|
/**
|
|
@@ -7489,7 +7744,13 @@ export interface operations {
|
|
|
7489
7744
|
};
|
|
7490
7745
|
admin_audit_admin_audit_get: {
|
|
7491
7746
|
parameters: {
|
|
7492
|
-
query?:
|
|
7747
|
+
query?: {
|
|
7748
|
+
q?: string | null;
|
|
7749
|
+
actor?: string | null;
|
|
7750
|
+
action?: string | null;
|
|
7751
|
+
severity?: string | null;
|
|
7752
|
+
limit?: number;
|
|
7753
|
+
};
|
|
7493
7754
|
header?: never;
|
|
7494
7755
|
path?: never;
|
|
7495
7756
|
cookie?: never;
|
|
@@ -7505,6 +7766,15 @@ export interface operations {
|
|
|
7505
7766
|
"application/json": unknown;
|
|
7506
7767
|
};
|
|
7507
7768
|
};
|
|
7769
|
+
/** @description Validation Error */
|
|
7770
|
+
422: {
|
|
7771
|
+
headers: {
|
|
7772
|
+
[name: string]: unknown;
|
|
7773
|
+
};
|
|
7774
|
+
content: {
|
|
7775
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
7776
|
+
};
|
|
7777
|
+
};
|
|
7508
7778
|
};
|
|
7509
7779
|
};
|
|
7510
7780
|
admin_enterprise_overview_admin_enterprise_get: {
|
|
@@ -7567,6 +7837,26 @@ export interface operations {
|
|
|
7567
7837
|
};
|
|
7568
7838
|
};
|
|
7569
7839
|
};
|
|
7840
|
+
admin_log_retention_admin_log_retention_get: {
|
|
7841
|
+
parameters: {
|
|
7842
|
+
query?: never;
|
|
7843
|
+
header?: never;
|
|
7844
|
+
path?: never;
|
|
7845
|
+
cookie?: never;
|
|
7846
|
+
};
|
|
7847
|
+
requestBody?: never;
|
|
7848
|
+
responses: {
|
|
7849
|
+
/** @description Successful Response */
|
|
7850
|
+
200: {
|
|
7851
|
+
headers: {
|
|
7852
|
+
[name: string]: unknown;
|
|
7853
|
+
};
|
|
7854
|
+
content: {
|
|
7855
|
+
"application/json": unknown;
|
|
7856
|
+
};
|
|
7857
|
+
};
|
|
7858
|
+
};
|
|
7859
|
+
};
|
|
7570
7860
|
admin_policies_admin_policies_get: {
|
|
7571
7861
|
parameters: {
|
|
7572
7862
|
query?: never;
|
|
@@ -10540,6 +10830,230 @@ export interface operations {
|
|
|
10540
10830
|
};
|
|
10541
10831
|
};
|
|
10542
10832
|
};
|
|
10833
|
+
list_items_automation_reviews_get: {
|
|
10834
|
+
parameters: {
|
|
10835
|
+
query?: {
|
|
10836
|
+
status?: string | null;
|
|
10837
|
+
source?: string | null;
|
|
10838
|
+
};
|
|
10839
|
+
header?: never;
|
|
10840
|
+
path?: never;
|
|
10841
|
+
cookie?: never;
|
|
10842
|
+
};
|
|
10843
|
+
requestBody?: never;
|
|
10844
|
+
responses: {
|
|
10845
|
+
/** @description Successful Response */
|
|
10846
|
+
200: {
|
|
10847
|
+
headers: {
|
|
10848
|
+
[name: string]: unknown;
|
|
10849
|
+
};
|
|
10850
|
+
content: {
|
|
10851
|
+
"application/json": components["schemas"]["ReviewItemList"];
|
|
10852
|
+
};
|
|
10853
|
+
};
|
|
10854
|
+
/** @description Validation Error */
|
|
10855
|
+
422: {
|
|
10856
|
+
headers: {
|
|
10857
|
+
[name: string]: unknown;
|
|
10858
|
+
};
|
|
10859
|
+
content: {
|
|
10860
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10861
|
+
};
|
|
10862
|
+
};
|
|
10863
|
+
};
|
|
10864
|
+
};
|
|
10865
|
+
create_item_automation_reviews_post: {
|
|
10866
|
+
parameters: {
|
|
10867
|
+
query?: never;
|
|
10868
|
+
header?: never;
|
|
10869
|
+
path?: never;
|
|
10870
|
+
cookie?: never;
|
|
10871
|
+
};
|
|
10872
|
+
requestBody: {
|
|
10873
|
+
content: {
|
|
10874
|
+
"application/json": components["schemas"]["CreateReviewItemRequest"];
|
|
10875
|
+
};
|
|
10876
|
+
};
|
|
10877
|
+
responses: {
|
|
10878
|
+
/** @description Successful Response */
|
|
10879
|
+
200: {
|
|
10880
|
+
headers: {
|
|
10881
|
+
[name: string]: unknown;
|
|
10882
|
+
};
|
|
10883
|
+
content: {
|
|
10884
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
10885
|
+
};
|
|
10886
|
+
};
|
|
10887
|
+
/** @description Validation Error */
|
|
10888
|
+
422: {
|
|
10889
|
+
headers: {
|
|
10890
|
+
[name: string]: unknown;
|
|
10891
|
+
};
|
|
10892
|
+
content: {
|
|
10893
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10894
|
+
};
|
|
10895
|
+
};
|
|
10896
|
+
};
|
|
10897
|
+
};
|
|
10898
|
+
get_item_automation_reviews__item_id__get: {
|
|
10899
|
+
parameters: {
|
|
10900
|
+
query?: never;
|
|
10901
|
+
header?: never;
|
|
10902
|
+
path: {
|
|
10903
|
+
item_id: string;
|
|
10904
|
+
};
|
|
10905
|
+
cookie?: never;
|
|
10906
|
+
};
|
|
10907
|
+
requestBody?: never;
|
|
10908
|
+
responses: {
|
|
10909
|
+
/** @description Successful Response */
|
|
10910
|
+
200: {
|
|
10911
|
+
headers: {
|
|
10912
|
+
[name: string]: unknown;
|
|
10913
|
+
};
|
|
10914
|
+
content: {
|
|
10915
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
10916
|
+
};
|
|
10917
|
+
};
|
|
10918
|
+
/** @description Validation Error */
|
|
10919
|
+
422: {
|
|
10920
|
+
headers: {
|
|
10921
|
+
[name: string]: unknown;
|
|
10922
|
+
};
|
|
10923
|
+
content: {
|
|
10924
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10925
|
+
};
|
|
10926
|
+
};
|
|
10927
|
+
};
|
|
10928
|
+
};
|
|
10929
|
+
approve_item_automation_reviews__item_id__approve_post: {
|
|
10930
|
+
parameters: {
|
|
10931
|
+
query?: never;
|
|
10932
|
+
header?: never;
|
|
10933
|
+
path: {
|
|
10934
|
+
item_id: string;
|
|
10935
|
+
};
|
|
10936
|
+
cookie?: never;
|
|
10937
|
+
};
|
|
10938
|
+
requestBody?: never;
|
|
10939
|
+
responses: {
|
|
10940
|
+
/** @description Successful Response */
|
|
10941
|
+
200: {
|
|
10942
|
+
headers: {
|
|
10943
|
+
[name: string]: unknown;
|
|
10944
|
+
};
|
|
10945
|
+
content: {
|
|
10946
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
10947
|
+
};
|
|
10948
|
+
};
|
|
10949
|
+
/** @description Validation Error */
|
|
10950
|
+
422: {
|
|
10951
|
+
headers: {
|
|
10952
|
+
[name: string]: unknown;
|
|
10953
|
+
};
|
|
10954
|
+
content: {
|
|
10955
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10956
|
+
};
|
|
10957
|
+
};
|
|
10958
|
+
};
|
|
10959
|
+
};
|
|
10960
|
+
dismiss_item_automation_reviews__item_id__dismiss_post: {
|
|
10961
|
+
parameters: {
|
|
10962
|
+
query?: never;
|
|
10963
|
+
header?: never;
|
|
10964
|
+
path: {
|
|
10965
|
+
item_id: string;
|
|
10966
|
+
};
|
|
10967
|
+
cookie?: never;
|
|
10968
|
+
};
|
|
10969
|
+
requestBody?: never;
|
|
10970
|
+
responses: {
|
|
10971
|
+
/** @description Successful Response */
|
|
10972
|
+
200: {
|
|
10973
|
+
headers: {
|
|
10974
|
+
[name: string]: unknown;
|
|
10975
|
+
};
|
|
10976
|
+
content: {
|
|
10977
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
10978
|
+
};
|
|
10979
|
+
};
|
|
10980
|
+
/** @description Validation Error */
|
|
10981
|
+
422: {
|
|
10982
|
+
headers: {
|
|
10983
|
+
[name: string]: unknown;
|
|
10984
|
+
};
|
|
10985
|
+
content: {
|
|
10986
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10987
|
+
};
|
|
10988
|
+
};
|
|
10989
|
+
};
|
|
10990
|
+
};
|
|
10991
|
+
run_now_item_automation_reviews__item_id__run_now_post: {
|
|
10992
|
+
parameters: {
|
|
10993
|
+
query?: never;
|
|
10994
|
+
header?: never;
|
|
10995
|
+
path: {
|
|
10996
|
+
item_id: string;
|
|
10997
|
+
};
|
|
10998
|
+
cookie?: never;
|
|
10999
|
+
};
|
|
11000
|
+
requestBody?: never;
|
|
11001
|
+
responses: {
|
|
11002
|
+
/** @description Successful Response */
|
|
11003
|
+
200: {
|
|
11004
|
+
headers: {
|
|
11005
|
+
[name: string]: unknown;
|
|
11006
|
+
};
|
|
11007
|
+
content: {
|
|
11008
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
11009
|
+
};
|
|
11010
|
+
};
|
|
11011
|
+
/** @description Validation Error */
|
|
11012
|
+
422: {
|
|
11013
|
+
headers: {
|
|
11014
|
+
[name: string]: unknown;
|
|
11015
|
+
};
|
|
11016
|
+
content: {
|
|
11017
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11018
|
+
};
|
|
11019
|
+
};
|
|
11020
|
+
};
|
|
11021
|
+
};
|
|
11022
|
+
snooze_item_automation_reviews__item_id__snooze_post: {
|
|
11023
|
+
parameters: {
|
|
11024
|
+
query?: never;
|
|
11025
|
+
header?: never;
|
|
11026
|
+
path: {
|
|
11027
|
+
item_id: string;
|
|
11028
|
+
};
|
|
11029
|
+
cookie?: never;
|
|
11030
|
+
};
|
|
11031
|
+
requestBody: {
|
|
11032
|
+
content: {
|
|
11033
|
+
"application/json": components["schemas"]["SnoozeRequest"];
|
|
11034
|
+
};
|
|
11035
|
+
};
|
|
11036
|
+
responses: {
|
|
11037
|
+
/** @description Successful Response */
|
|
11038
|
+
200: {
|
|
11039
|
+
headers: {
|
|
11040
|
+
[name: string]: unknown;
|
|
11041
|
+
};
|
|
11042
|
+
content: {
|
|
11043
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
11044
|
+
};
|
|
11045
|
+
};
|
|
11046
|
+
/** @description Validation Error */
|
|
11047
|
+
422: {
|
|
11048
|
+
headers: {
|
|
11049
|
+
[name: string]: unknown;
|
|
11050
|
+
};
|
|
11051
|
+
content: {
|
|
11052
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11053
|
+
};
|
|
11054
|
+
};
|
|
11055
|
+
};
|
|
11056
|
+
};
|
|
10543
11057
|
chat_page_chat_get: {
|
|
10544
11058
|
parameters: {
|
|
10545
11059
|
query?: never;
|
|
@@ -15169,6 +15683,61 @@ export interface operations {
|
|
|
15169
15683
|
};
|
|
15170
15684
|
};
|
|
15171
15685
|
};
|
|
15686
|
+
automation_recipes_workflows_api_automation_recipes_get: {
|
|
15687
|
+
parameters: {
|
|
15688
|
+
query?: never;
|
|
15689
|
+
header?: never;
|
|
15690
|
+
path?: never;
|
|
15691
|
+
cookie?: never;
|
|
15692
|
+
};
|
|
15693
|
+
requestBody?: never;
|
|
15694
|
+
responses: {
|
|
15695
|
+
/** @description Successful Response */
|
|
15696
|
+
200: {
|
|
15697
|
+
headers: {
|
|
15698
|
+
[name: string]: unknown;
|
|
15699
|
+
};
|
|
15700
|
+
content: {
|
|
15701
|
+
"application/json": unknown;
|
|
15702
|
+
};
|
|
15703
|
+
};
|
|
15704
|
+
};
|
|
15705
|
+
};
|
|
15706
|
+
install_automation_recipe_workflows_api_automation_recipes__recipe_id__post: {
|
|
15707
|
+
parameters: {
|
|
15708
|
+
query?: never;
|
|
15709
|
+
header?: never;
|
|
15710
|
+
path: {
|
|
15711
|
+
recipe_id: string;
|
|
15712
|
+
};
|
|
15713
|
+
cookie?: never;
|
|
15714
|
+
};
|
|
15715
|
+
requestBody: {
|
|
15716
|
+
content: {
|
|
15717
|
+
"application/json": components["schemas"]["WorkflowRecipeInstallRequest"];
|
|
15718
|
+
};
|
|
15719
|
+
};
|
|
15720
|
+
responses: {
|
|
15721
|
+
/** @description Successful Response */
|
|
15722
|
+
200: {
|
|
15723
|
+
headers: {
|
|
15724
|
+
[name: string]: unknown;
|
|
15725
|
+
};
|
|
15726
|
+
content: {
|
|
15727
|
+
"application/json": unknown;
|
|
15728
|
+
};
|
|
15729
|
+
};
|
|
15730
|
+
/** @description Validation Error */
|
|
15731
|
+
422: {
|
|
15732
|
+
headers: {
|
|
15733
|
+
[name: string]: unknown;
|
|
15734
|
+
};
|
|
15735
|
+
content: {
|
|
15736
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
15737
|
+
};
|
|
15738
|
+
};
|
|
15739
|
+
};
|
|
15740
|
+
};
|
|
15172
15741
|
list_definitions_workflows_api_definitions_get: {
|
|
15173
15742
|
parameters: {
|
|
15174
15743
|
query?: {
|