Skip to content

Commit 53a9f47

Browse files
chore(ui): typegen
1 parent 72d244e commit 53a9f47

File tree

1 file changed

+6
-13
lines changed
  • invokeai/frontend/web/src/services/api

1 file changed

+6
-13
lines changed

invokeai/frontend/web/src/services/api/schema.ts

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2754,16 +2754,6 @@ export type components = {
27542754
*/
27552755
image_names: string[];
27562756
};
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-
};
27672757
/** Body_set_workflow_thumbnail */
27682758
Body_set_workflow_thumbnail: {
27692759
/**
@@ -24738,7 +24728,7 @@ export interface operations {
2473824728
get_client_state_by_key: {
2473924729
parameters: {
2474024730
query: {
24741-
/** @description Key to retrieve from client state persistence */
24731+
/** @description Key to get */
2474224732
key: string;
2474324733
};
2474424734
header?: never;
@@ -24769,14 +24759,17 @@ export interface operations {
2476924759
};
2477024760
set_client_state: {
2477124761
parameters: {
24772-
query?: never;
24762+
query: {
24763+
/** @description Key to set */
24764+
key: string;
24765+
};
2477324766
header?: never;
2477424767
path?: never;
2477524768
cookie?: never;
2477624769
};
2477724770
requestBody: {
2477824771
content: {
24779-
"application/json": components["schemas"]["Body_set_client_state"];
24772+
"application/json": components["schemas"]["JsonValue"];
2478024773
};
2478124774
};
2478224775
responses: {

0 commit comments

Comments
 (0)