Skip to content

Commit 3d6bd70

Browse files
chore: fix schema
1 parent dfb3c11 commit 3d6bd70

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

packages/workspace-engine-sdk/src/schema.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3146,21 +3146,13 @@ export interface operations {
31463146
};
31473147
requestBody?: never;
31483148
responses: {
3149-
/** @description Paginated list of items */
3149+
/** @description The requested variables */
31503150
200: {
31513151
headers: {
31523152
[name: string]: unknown;
31533153
};
31543154
content: {
3155-
"application/json": {
3156-
items: components["schemas"]["ResourceVariable"][];
3157-
/** @description Maximum number of items returned */
3158-
limit: number;
3159-
/** @description Number of items skipped */
3160-
offset: number;
3161-
/** @description Total number of items available */
3162-
total: number;
3163-
};
3155+
"application/json": components["schemas"]["ResourceVariable"][];
31643156
};
31653157
};
31663158
/** @description Invalid request */

0 commit comments

Comments
 (0)