ltcai 5.5.0 → 6.0.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 +43 -24
- package/docs/CHANGELOG.md +69 -0
- package/frontend/openapi.json +716 -3
- package/frontend/src/api/client.ts +119 -2
- package/frontend/src/api/openapi.ts +621 -4
- package/frontend/src/components/FirstRunGuide.tsx +3 -3
- package/frontend/src/features/review/ReviewCard.tsx +91 -0
- package/frontend/src/features/review/ReviewInbox.tsx +112 -0
- package/frontend/src/features/review/reviewHelpers.ts +69 -0
- package/frontend/src/i18n.ts +8 -8
- package/frontend/src/pages/Act.tsx +28 -3
- package/frontend/src/routes.ts +2 -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 +162 -0
- package/latticeai/app_factory.py +235 -456
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +86 -1
- package/latticeai/runtime/app_context_runtime.py +13 -0
- package/latticeai/runtime/automation_runtime.py +64 -0
- package/latticeai/runtime/bootstrap.py +48 -0
- package/latticeai/runtime/context_runtime.py +43 -0
- package/latticeai/runtime/hooks_runtime.py +77 -0
- package/latticeai/runtime/lifespan_runtime.py +138 -0
- package/latticeai/runtime/persistence_runtime.py +87 -0
- package/latticeai/runtime/platform_services_runtime.py +39 -0
- package/latticeai/runtime/router_registration.py +570 -0
- package/latticeai/runtime/web_runtime.py +65 -0
- package/latticeai/services/review_queue.py +271 -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-D2zafMYb.js +16 -0
- package/static/app/assets/index-D2zafMYb.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,126 @@ 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
|
+
};
|
|
1917
|
+
"/automation/reviews/{item_id}/unsnooze": {
|
|
1918
|
+
parameters: {
|
|
1919
|
+
query?: never;
|
|
1920
|
+
header?: never;
|
|
1921
|
+
path?: never;
|
|
1922
|
+
cookie?: never;
|
|
1923
|
+
};
|
|
1924
|
+
get?: never;
|
|
1925
|
+
put?: never;
|
|
1926
|
+
/** Unsnooze Item */
|
|
1927
|
+
post: operations["unsnooze_item_automation_reviews__item_id__unsnooze_post"];
|
|
1928
|
+
delete?: never;
|
|
1929
|
+
options?: never;
|
|
1930
|
+
head?: never;
|
|
1931
|
+
patch?: never;
|
|
1932
|
+
trace?: never;
|
|
1933
|
+
};
|
|
1797
1934
|
"/chat": {
|
|
1798
1935
|
parameters: {
|
|
1799
1936
|
query?: never;
|
|
@@ -3117,9 +3254,8 @@ export interface paths {
|
|
|
3117
3254
|
* Model Recommendations
|
|
3118
3255
|
* @description Hardware-aware tri-state model recommendation for this machine.
|
|
3119
3256
|
*
|
|
3120
|
-
*
|
|
3121
|
-
*
|
|
3122
|
-
* grouped by family. Used by the onboarding and model-picker UIs.
|
|
3257
|
+
* 5.2.0: now includes rich capability fields (hf_repo_id, verification,
|
|
3258
|
+
* hardware, load_strategy, license, safety_notes) from the structured registry.
|
|
3123
3259
|
*/
|
|
3124
3260
|
get: operations["model_recommendations_models_recommendations_get"];
|
|
3125
3261
|
put?: never;
|
|
@@ -4566,6 +4702,40 @@ export interface paths {
|
|
|
4566
4702
|
patch?: never;
|
|
4567
4703
|
trace?: never;
|
|
4568
4704
|
};
|
|
4705
|
+
"/workflows/api/automation/recipes": {
|
|
4706
|
+
parameters: {
|
|
4707
|
+
query?: never;
|
|
4708
|
+
header?: never;
|
|
4709
|
+
path?: never;
|
|
4710
|
+
cookie?: never;
|
|
4711
|
+
};
|
|
4712
|
+
/** Automation Recipes */
|
|
4713
|
+
get: operations["automation_recipes_workflows_api_automation_recipes_get"];
|
|
4714
|
+
put?: never;
|
|
4715
|
+
post?: never;
|
|
4716
|
+
delete?: never;
|
|
4717
|
+
options?: never;
|
|
4718
|
+
head?: never;
|
|
4719
|
+
patch?: never;
|
|
4720
|
+
trace?: never;
|
|
4721
|
+
};
|
|
4722
|
+
"/workflows/api/automation/recipes/{recipe_id}": {
|
|
4723
|
+
parameters: {
|
|
4724
|
+
query?: never;
|
|
4725
|
+
header?: never;
|
|
4726
|
+
path?: never;
|
|
4727
|
+
cookie?: never;
|
|
4728
|
+
};
|
|
4729
|
+
get?: never;
|
|
4730
|
+
put?: never;
|
|
4731
|
+
/** Install Automation Recipe */
|
|
4732
|
+
post: operations["install_automation_recipe_workflows_api_automation_recipes__recipe_id__post"];
|
|
4733
|
+
delete?: never;
|
|
4734
|
+
options?: never;
|
|
4735
|
+
head?: never;
|
|
4736
|
+
patch?: never;
|
|
4737
|
+
trace?: never;
|
|
4738
|
+
};
|
|
4569
4739
|
"/workflows/api/definitions": {
|
|
4570
4740
|
parameters: {
|
|
4571
4741
|
query?: never;
|
|
@@ -5676,6 +5846,8 @@ export interface components {
|
|
|
5676
5846
|
user_email?: string | null;
|
|
5677
5847
|
/** User Nickname */
|
|
5678
5848
|
user_nickname?: string | null;
|
|
5849
|
+
/** Workspace Id */
|
|
5850
|
+
workspace_id?: string | null;
|
|
5679
5851
|
};
|
|
5680
5852
|
/** AgentResumeRequest */
|
|
5681
5853
|
AgentResumeRequest: {
|
|
@@ -5736,6 +5908,11 @@ export interface components {
|
|
|
5736
5908
|
};
|
|
5737
5909
|
/** ChatRequest */
|
|
5738
5910
|
ChatRequest: {
|
|
5911
|
+
/**
|
|
5912
|
+
* Allow File Context
|
|
5913
|
+
* @default false
|
|
5914
|
+
*/
|
|
5915
|
+
allow_file_context: boolean;
|
|
5739
5916
|
/** Client Url */
|
|
5740
5917
|
client_url?: string | null;
|
|
5741
5918
|
/** Context */
|
|
@@ -5780,6 +5957,34 @@ export interface components {
|
|
|
5780
5957
|
/** Scope */
|
|
5781
5958
|
scope: string;
|
|
5782
5959
|
};
|
|
5960
|
+
/** CreateReviewItemRequest */
|
|
5961
|
+
CreateReviewItemRequest: {
|
|
5962
|
+
/**
|
|
5963
|
+
* Kind
|
|
5964
|
+
* @default suggestion
|
|
5965
|
+
*/
|
|
5966
|
+
kind: string;
|
|
5967
|
+
/** Payload */
|
|
5968
|
+
payload?: {
|
|
5969
|
+
[key: string]: unknown;
|
|
5970
|
+
};
|
|
5971
|
+
/** Provenance */
|
|
5972
|
+
provenance?: {
|
|
5973
|
+
[key: string]: unknown;
|
|
5974
|
+
};
|
|
5975
|
+
/**
|
|
5976
|
+
* Source
|
|
5977
|
+
* @default workflow_run
|
|
5978
|
+
*/
|
|
5979
|
+
source: string;
|
|
5980
|
+
/**
|
|
5981
|
+
* Summary
|
|
5982
|
+
* @default
|
|
5983
|
+
*/
|
|
5984
|
+
summary: string;
|
|
5985
|
+
/** Title */
|
|
5986
|
+
title: string;
|
|
5987
|
+
};
|
|
5783
5988
|
/** CuAgentRequest */
|
|
5784
5989
|
CuAgentRequest: {
|
|
5785
5990
|
/** Conversation Id */
|
|
@@ -6452,6 +6657,11 @@ export interface components {
|
|
|
6452
6657
|
};
|
|
6453
6658
|
/** PullModelRequest */
|
|
6454
6659
|
PullModelRequest: {
|
|
6660
|
+
/**
|
|
6661
|
+
* Allow Download
|
|
6662
|
+
* @default false
|
|
6663
|
+
*/
|
|
6664
|
+
allow_download: boolean;
|
|
6455
6665
|
/** Model */
|
|
6456
6666
|
model: string;
|
|
6457
6667
|
};
|
|
@@ -6526,6 +6736,55 @@ export interface components {
|
|
|
6526
6736
|
*/
|
|
6527
6737
|
verify: boolean;
|
|
6528
6738
|
};
|
|
6739
|
+
/** ReviewItem */
|
|
6740
|
+
ReviewItem: {
|
|
6741
|
+
/** Created At */
|
|
6742
|
+
created_at?: string | null;
|
|
6743
|
+
/** Effective Status */
|
|
6744
|
+
effective_status: string;
|
|
6745
|
+
/** Id */
|
|
6746
|
+
id: string;
|
|
6747
|
+
/**
|
|
6748
|
+
* Kind
|
|
6749
|
+
* @default suggestion
|
|
6750
|
+
*/
|
|
6751
|
+
kind: string;
|
|
6752
|
+
/** Payload */
|
|
6753
|
+
payload?: {
|
|
6754
|
+
[key: string]: unknown;
|
|
6755
|
+
};
|
|
6756
|
+
/** Provenance */
|
|
6757
|
+
provenance?: {
|
|
6758
|
+
[key: string]: unknown;
|
|
6759
|
+
};
|
|
6760
|
+
/** Snoozed Until */
|
|
6761
|
+
snoozed_until?: string | null;
|
|
6762
|
+
/**
|
|
6763
|
+
* Source
|
|
6764
|
+
* @default workflow_run
|
|
6765
|
+
*/
|
|
6766
|
+
source: string;
|
|
6767
|
+
/** Status */
|
|
6768
|
+
status: string;
|
|
6769
|
+
/**
|
|
6770
|
+
* Summary
|
|
6771
|
+
* @default
|
|
6772
|
+
*/
|
|
6773
|
+
summary: string;
|
|
6774
|
+
/** Title */
|
|
6775
|
+
title: string;
|
|
6776
|
+
/** Updated At */
|
|
6777
|
+
updated_at?: string | null;
|
|
6778
|
+
/** User Email */
|
|
6779
|
+
user_email?: string | null;
|
|
6780
|
+
/** Workspace Id */
|
|
6781
|
+
workspace_id?: string | null;
|
|
6782
|
+
};
|
|
6783
|
+
/** ReviewItemList */
|
|
6784
|
+
ReviewItemList: {
|
|
6785
|
+
/** Items */
|
|
6786
|
+
items?: components["schemas"]["ReviewItem"][];
|
|
6787
|
+
};
|
|
6529
6788
|
/** SQLiteToPostgresRequest */
|
|
6530
6789
|
SQLiteToPostgresRequest: {
|
|
6531
6790
|
/**
|
|
@@ -6574,6 +6833,11 @@ export interface components {
|
|
|
6574
6833
|
/** Skill */
|
|
6575
6834
|
skill: string;
|
|
6576
6835
|
};
|
|
6836
|
+
/** SnoozeRequest */
|
|
6837
|
+
SnoozeRequest: {
|
|
6838
|
+
/** Until */
|
|
6839
|
+
until: string;
|
|
6840
|
+
};
|
|
6577
6841
|
/** SsoConfigUpdate */
|
|
6578
6842
|
SsoConfigUpdate: {
|
|
6579
6843
|
/** Client Id */
|
|
@@ -7006,6 +7270,14 @@ export interface components {
|
|
|
7006
7270
|
[key: string]: unknown;
|
|
7007
7271
|
};
|
|
7008
7272
|
};
|
|
7273
|
+
/** WorkflowRecipeInstallRequest */
|
|
7274
|
+
WorkflowRecipeInstallRequest: {
|
|
7275
|
+
/**
|
|
7276
|
+
* Enabled
|
|
7277
|
+
* @default false
|
|
7278
|
+
*/
|
|
7279
|
+
enabled: boolean;
|
|
7280
|
+
};
|
|
7009
7281
|
/** WorkflowResumeRequest */
|
|
7010
7282
|
WorkflowResumeRequest: {
|
|
7011
7283
|
/**
|
|
@@ -7489,7 +7761,13 @@ export interface operations {
|
|
|
7489
7761
|
};
|
|
7490
7762
|
admin_audit_admin_audit_get: {
|
|
7491
7763
|
parameters: {
|
|
7492
|
-
query?:
|
|
7764
|
+
query?: {
|
|
7765
|
+
q?: string | null;
|
|
7766
|
+
actor?: string | null;
|
|
7767
|
+
action?: string | null;
|
|
7768
|
+
severity?: string | null;
|
|
7769
|
+
limit?: number;
|
|
7770
|
+
};
|
|
7493
7771
|
header?: never;
|
|
7494
7772
|
path?: never;
|
|
7495
7773
|
cookie?: never;
|
|
@@ -7505,6 +7783,15 @@ export interface operations {
|
|
|
7505
7783
|
"application/json": unknown;
|
|
7506
7784
|
};
|
|
7507
7785
|
};
|
|
7786
|
+
/** @description Validation Error */
|
|
7787
|
+
422: {
|
|
7788
|
+
headers: {
|
|
7789
|
+
[name: string]: unknown;
|
|
7790
|
+
};
|
|
7791
|
+
content: {
|
|
7792
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
7793
|
+
};
|
|
7794
|
+
};
|
|
7508
7795
|
};
|
|
7509
7796
|
};
|
|
7510
7797
|
admin_enterprise_overview_admin_enterprise_get: {
|
|
@@ -7567,6 +7854,26 @@ export interface operations {
|
|
|
7567
7854
|
};
|
|
7568
7855
|
};
|
|
7569
7856
|
};
|
|
7857
|
+
admin_log_retention_admin_log_retention_get: {
|
|
7858
|
+
parameters: {
|
|
7859
|
+
query?: never;
|
|
7860
|
+
header?: never;
|
|
7861
|
+
path?: never;
|
|
7862
|
+
cookie?: never;
|
|
7863
|
+
};
|
|
7864
|
+
requestBody?: never;
|
|
7865
|
+
responses: {
|
|
7866
|
+
/** @description Successful Response */
|
|
7867
|
+
200: {
|
|
7868
|
+
headers: {
|
|
7869
|
+
[name: string]: unknown;
|
|
7870
|
+
};
|
|
7871
|
+
content: {
|
|
7872
|
+
"application/json": unknown;
|
|
7873
|
+
};
|
|
7874
|
+
};
|
|
7875
|
+
};
|
|
7876
|
+
};
|
|
7570
7877
|
admin_policies_admin_policies_get: {
|
|
7571
7878
|
parameters: {
|
|
7572
7879
|
query?: never;
|
|
@@ -10540,6 +10847,261 @@ export interface operations {
|
|
|
10540
10847
|
};
|
|
10541
10848
|
};
|
|
10542
10849
|
};
|
|
10850
|
+
list_items_automation_reviews_get: {
|
|
10851
|
+
parameters: {
|
|
10852
|
+
query?: {
|
|
10853
|
+
status?: string | null;
|
|
10854
|
+
source?: string | null;
|
|
10855
|
+
};
|
|
10856
|
+
header?: never;
|
|
10857
|
+
path?: never;
|
|
10858
|
+
cookie?: never;
|
|
10859
|
+
};
|
|
10860
|
+
requestBody?: never;
|
|
10861
|
+
responses: {
|
|
10862
|
+
/** @description Successful Response */
|
|
10863
|
+
200: {
|
|
10864
|
+
headers: {
|
|
10865
|
+
[name: string]: unknown;
|
|
10866
|
+
};
|
|
10867
|
+
content: {
|
|
10868
|
+
"application/json": components["schemas"]["ReviewItemList"];
|
|
10869
|
+
};
|
|
10870
|
+
};
|
|
10871
|
+
/** @description Validation Error */
|
|
10872
|
+
422: {
|
|
10873
|
+
headers: {
|
|
10874
|
+
[name: string]: unknown;
|
|
10875
|
+
};
|
|
10876
|
+
content: {
|
|
10877
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10878
|
+
};
|
|
10879
|
+
};
|
|
10880
|
+
};
|
|
10881
|
+
};
|
|
10882
|
+
create_item_automation_reviews_post: {
|
|
10883
|
+
parameters: {
|
|
10884
|
+
query?: never;
|
|
10885
|
+
header?: never;
|
|
10886
|
+
path?: never;
|
|
10887
|
+
cookie?: never;
|
|
10888
|
+
};
|
|
10889
|
+
requestBody: {
|
|
10890
|
+
content: {
|
|
10891
|
+
"application/json": components["schemas"]["CreateReviewItemRequest"];
|
|
10892
|
+
};
|
|
10893
|
+
};
|
|
10894
|
+
responses: {
|
|
10895
|
+
/** @description Successful Response */
|
|
10896
|
+
200: {
|
|
10897
|
+
headers: {
|
|
10898
|
+
[name: string]: unknown;
|
|
10899
|
+
};
|
|
10900
|
+
content: {
|
|
10901
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
10902
|
+
};
|
|
10903
|
+
};
|
|
10904
|
+
/** @description Validation Error */
|
|
10905
|
+
422: {
|
|
10906
|
+
headers: {
|
|
10907
|
+
[name: string]: unknown;
|
|
10908
|
+
};
|
|
10909
|
+
content: {
|
|
10910
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10911
|
+
};
|
|
10912
|
+
};
|
|
10913
|
+
};
|
|
10914
|
+
};
|
|
10915
|
+
get_item_automation_reviews__item_id__get: {
|
|
10916
|
+
parameters: {
|
|
10917
|
+
query?: never;
|
|
10918
|
+
header?: never;
|
|
10919
|
+
path: {
|
|
10920
|
+
item_id: string;
|
|
10921
|
+
};
|
|
10922
|
+
cookie?: never;
|
|
10923
|
+
};
|
|
10924
|
+
requestBody?: never;
|
|
10925
|
+
responses: {
|
|
10926
|
+
/** @description Successful Response */
|
|
10927
|
+
200: {
|
|
10928
|
+
headers: {
|
|
10929
|
+
[name: string]: unknown;
|
|
10930
|
+
};
|
|
10931
|
+
content: {
|
|
10932
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
10933
|
+
};
|
|
10934
|
+
};
|
|
10935
|
+
/** @description Validation Error */
|
|
10936
|
+
422: {
|
|
10937
|
+
headers: {
|
|
10938
|
+
[name: string]: unknown;
|
|
10939
|
+
};
|
|
10940
|
+
content: {
|
|
10941
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10942
|
+
};
|
|
10943
|
+
};
|
|
10944
|
+
};
|
|
10945
|
+
};
|
|
10946
|
+
approve_item_automation_reviews__item_id__approve_post: {
|
|
10947
|
+
parameters: {
|
|
10948
|
+
query?: never;
|
|
10949
|
+
header?: never;
|
|
10950
|
+
path: {
|
|
10951
|
+
item_id: string;
|
|
10952
|
+
};
|
|
10953
|
+
cookie?: never;
|
|
10954
|
+
};
|
|
10955
|
+
requestBody?: never;
|
|
10956
|
+
responses: {
|
|
10957
|
+
/** @description Successful Response */
|
|
10958
|
+
200: {
|
|
10959
|
+
headers: {
|
|
10960
|
+
[name: string]: unknown;
|
|
10961
|
+
};
|
|
10962
|
+
content: {
|
|
10963
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
10964
|
+
};
|
|
10965
|
+
};
|
|
10966
|
+
/** @description Validation Error */
|
|
10967
|
+
422: {
|
|
10968
|
+
headers: {
|
|
10969
|
+
[name: string]: unknown;
|
|
10970
|
+
};
|
|
10971
|
+
content: {
|
|
10972
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
10973
|
+
};
|
|
10974
|
+
};
|
|
10975
|
+
};
|
|
10976
|
+
};
|
|
10977
|
+
dismiss_item_automation_reviews__item_id__dismiss_post: {
|
|
10978
|
+
parameters: {
|
|
10979
|
+
query?: never;
|
|
10980
|
+
header?: never;
|
|
10981
|
+
path: {
|
|
10982
|
+
item_id: string;
|
|
10983
|
+
};
|
|
10984
|
+
cookie?: never;
|
|
10985
|
+
};
|
|
10986
|
+
requestBody?: never;
|
|
10987
|
+
responses: {
|
|
10988
|
+
/** @description Successful Response */
|
|
10989
|
+
200: {
|
|
10990
|
+
headers: {
|
|
10991
|
+
[name: string]: unknown;
|
|
10992
|
+
};
|
|
10993
|
+
content: {
|
|
10994
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
10995
|
+
};
|
|
10996
|
+
};
|
|
10997
|
+
/** @description Validation Error */
|
|
10998
|
+
422: {
|
|
10999
|
+
headers: {
|
|
11000
|
+
[name: string]: unknown;
|
|
11001
|
+
};
|
|
11002
|
+
content: {
|
|
11003
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11004
|
+
};
|
|
11005
|
+
};
|
|
11006
|
+
};
|
|
11007
|
+
};
|
|
11008
|
+
run_now_item_automation_reviews__item_id__run_now_post: {
|
|
11009
|
+
parameters: {
|
|
11010
|
+
query?: never;
|
|
11011
|
+
header?: never;
|
|
11012
|
+
path: {
|
|
11013
|
+
item_id: string;
|
|
11014
|
+
};
|
|
11015
|
+
cookie?: never;
|
|
11016
|
+
};
|
|
11017
|
+
requestBody?: never;
|
|
11018
|
+
responses: {
|
|
11019
|
+
/** @description Successful Response */
|
|
11020
|
+
200: {
|
|
11021
|
+
headers: {
|
|
11022
|
+
[name: string]: unknown;
|
|
11023
|
+
};
|
|
11024
|
+
content: {
|
|
11025
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
11026
|
+
};
|
|
11027
|
+
};
|
|
11028
|
+
/** @description Validation Error */
|
|
11029
|
+
422: {
|
|
11030
|
+
headers: {
|
|
11031
|
+
[name: string]: unknown;
|
|
11032
|
+
};
|
|
11033
|
+
content: {
|
|
11034
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11035
|
+
};
|
|
11036
|
+
};
|
|
11037
|
+
};
|
|
11038
|
+
};
|
|
11039
|
+
snooze_item_automation_reviews__item_id__snooze_post: {
|
|
11040
|
+
parameters: {
|
|
11041
|
+
query?: never;
|
|
11042
|
+
header?: never;
|
|
11043
|
+
path: {
|
|
11044
|
+
item_id: string;
|
|
11045
|
+
};
|
|
11046
|
+
cookie?: never;
|
|
11047
|
+
};
|
|
11048
|
+
requestBody: {
|
|
11049
|
+
content: {
|
|
11050
|
+
"application/json": components["schemas"]["SnoozeRequest"];
|
|
11051
|
+
};
|
|
11052
|
+
};
|
|
11053
|
+
responses: {
|
|
11054
|
+
/** @description Successful Response */
|
|
11055
|
+
200: {
|
|
11056
|
+
headers: {
|
|
11057
|
+
[name: string]: unknown;
|
|
11058
|
+
};
|
|
11059
|
+
content: {
|
|
11060
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
11061
|
+
};
|
|
11062
|
+
};
|
|
11063
|
+
/** @description Validation Error */
|
|
11064
|
+
422: {
|
|
11065
|
+
headers: {
|
|
11066
|
+
[name: string]: unknown;
|
|
11067
|
+
};
|
|
11068
|
+
content: {
|
|
11069
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11070
|
+
};
|
|
11071
|
+
};
|
|
11072
|
+
};
|
|
11073
|
+
};
|
|
11074
|
+
unsnooze_item_automation_reviews__item_id__unsnooze_post: {
|
|
11075
|
+
parameters: {
|
|
11076
|
+
query?: never;
|
|
11077
|
+
header?: never;
|
|
11078
|
+
path: {
|
|
11079
|
+
item_id: string;
|
|
11080
|
+
};
|
|
11081
|
+
cookie?: never;
|
|
11082
|
+
};
|
|
11083
|
+
requestBody?: never;
|
|
11084
|
+
responses: {
|
|
11085
|
+
/** @description Successful Response */
|
|
11086
|
+
200: {
|
|
11087
|
+
headers: {
|
|
11088
|
+
[name: string]: unknown;
|
|
11089
|
+
};
|
|
11090
|
+
content: {
|
|
11091
|
+
"application/json": components["schemas"]["ReviewItem"];
|
|
11092
|
+
};
|
|
11093
|
+
};
|
|
11094
|
+
/** @description Validation Error */
|
|
11095
|
+
422: {
|
|
11096
|
+
headers: {
|
|
11097
|
+
[name: string]: unknown;
|
|
11098
|
+
};
|
|
11099
|
+
content: {
|
|
11100
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
11101
|
+
};
|
|
11102
|
+
};
|
|
11103
|
+
};
|
|
11104
|
+
};
|
|
10543
11105
|
chat_page_chat_get: {
|
|
10544
11106
|
parameters: {
|
|
10545
11107
|
query?: never;
|
|
@@ -15169,6 +15731,61 @@ export interface operations {
|
|
|
15169
15731
|
};
|
|
15170
15732
|
};
|
|
15171
15733
|
};
|
|
15734
|
+
automation_recipes_workflows_api_automation_recipes_get: {
|
|
15735
|
+
parameters: {
|
|
15736
|
+
query?: never;
|
|
15737
|
+
header?: never;
|
|
15738
|
+
path?: never;
|
|
15739
|
+
cookie?: never;
|
|
15740
|
+
};
|
|
15741
|
+
requestBody?: never;
|
|
15742
|
+
responses: {
|
|
15743
|
+
/** @description Successful Response */
|
|
15744
|
+
200: {
|
|
15745
|
+
headers: {
|
|
15746
|
+
[name: string]: unknown;
|
|
15747
|
+
};
|
|
15748
|
+
content: {
|
|
15749
|
+
"application/json": unknown;
|
|
15750
|
+
};
|
|
15751
|
+
};
|
|
15752
|
+
};
|
|
15753
|
+
};
|
|
15754
|
+
install_automation_recipe_workflows_api_automation_recipes__recipe_id__post: {
|
|
15755
|
+
parameters: {
|
|
15756
|
+
query?: never;
|
|
15757
|
+
header?: never;
|
|
15758
|
+
path: {
|
|
15759
|
+
recipe_id: string;
|
|
15760
|
+
};
|
|
15761
|
+
cookie?: never;
|
|
15762
|
+
};
|
|
15763
|
+
requestBody: {
|
|
15764
|
+
content: {
|
|
15765
|
+
"application/json": components["schemas"]["WorkflowRecipeInstallRequest"];
|
|
15766
|
+
};
|
|
15767
|
+
};
|
|
15768
|
+
responses: {
|
|
15769
|
+
/** @description Successful Response */
|
|
15770
|
+
200: {
|
|
15771
|
+
headers: {
|
|
15772
|
+
[name: string]: unknown;
|
|
15773
|
+
};
|
|
15774
|
+
content: {
|
|
15775
|
+
"application/json": unknown;
|
|
15776
|
+
};
|
|
15777
|
+
};
|
|
15778
|
+
/** @description Validation Error */
|
|
15779
|
+
422: {
|
|
15780
|
+
headers: {
|
|
15781
|
+
[name: string]: unknown;
|
|
15782
|
+
};
|
|
15783
|
+
content: {
|
|
15784
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
15785
|
+
};
|
|
15786
|
+
};
|
|
15787
|
+
};
|
|
15788
|
+
};
|
|
15172
15789
|
list_definitions_workflows_api_definitions_get: {
|
|
15173
15790
|
parameters: {
|
|
15174
15791
|
query?: {
|