We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b96dd58 commit 6b3bb19Copy full SHA for 6b3bb19
2 files changed
packages/openapi/api.yaml
@@ -5054,6 +5054,7 @@ components:
5054
type: array
5055
source:
5056
enum:
5057
+ - cell_manager
5058
- code-mode
5059
- file-watch
5060
- frontend
packages/openapi/src/api.ts
@@ -6432,7 +6432,12 @@ export interface components {
6432
| components["schemas"]["SetConfig"]
6433
)[];
6434
/** @enum {unknown} */
6435
- source: "code-mode" | "file-watch" | "frontend" | "kernel";
+ source:
6436
+ | "cell_manager"
6437
+ | "code-mode"
6438
+ | "file-watch"
6439
+ | "frontend"
6440
+ | "kernel";
6441
/** @default null */
6442
version?: number | null;
6443
};
0 commit comments