File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed
invokeai/frontend/web/src/services/api Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -2754,16 +2754,6 @@ export type components = {
2754
2754
*/
2755
2755
image_names: string[];
2756
2756
};
2757
- /** Body_set_client_state */
2758
- Body_set_client_state: {
2759
- /**
2760
- * Key
2761
- * @description Key to set
2762
- */
2763
- key: string;
2764
- /** @description Value of the key */
2765
- value: components["schemas"]["JsonValue"];
2766
- };
2767
2757
/** Body_set_workflow_thumbnail */
2768
2758
Body_set_workflow_thumbnail: {
2769
2759
/**
@@ -24738,7 +24728,7 @@ export interface operations {
24738
24728
get_client_state_by_key: {
24739
24729
parameters: {
24740
24730
query: {
24741
- /** @description Key to retrieve from client state persistence */
24731
+ /** @description Key to get */
24742
24732
key: string;
24743
24733
};
24744
24734
header?: never;
@@ -24769,14 +24759,17 @@ export interface operations {
24769
24759
};
24770
24760
set_client_state: {
24771
24761
parameters: {
24772
- query?: never;
24762
+ query: {
24763
+ /** @description Key to set */
24764
+ key: string;
24765
+ };
24773
24766
header?: never;
24774
24767
path?: never;
24775
24768
cookie?: never;
24776
24769
};
24777
24770
requestBody: {
24778
24771
content: {
24779
- "application/json": components["schemas"]["Body_set_client_state "];
24772
+ "application/json": components["schemas"]["JsonValue "];
24780
24773
};
24781
24774
};
24782
24775
responses: {
You can’t perform that action at this time.
0 commit comments