summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk/js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sdk/js')
-rw-r--r--packages/sdk/js/src/v2/gen/types.gen.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts
index ce5a47f84..4d0b13539 100644
--- a/packages/sdk/js/src/v2/gen/types.gen.ts
+++ b/packages/sdk/js/src/v2/gen/types.gen.ts
@@ -1447,6 +1447,10 @@ export type Config = {
watcher?: {
ignore?: Array<string>
}
+ /**
+ * Enable or disable snapshot tracking. When false, filesystem snapshots are not recorded and undoing or reverting will not undo/redo file changes. Defaults to true.
+ */
+ snapshot?: boolean
plugin?: Array<
| string
| [
@@ -1457,10 +1461,6 @@ export type Config = {
]
>
/**
- * Enable or disable snapshot tracking. When false, filesystem snapshots are not recorded and undoing or reverting will not undo/redo file changes. Defaults to true.
- */
- snapshot?: boolean
- /**
* Control sharing behavior:'manual' allows manual sharing via commands, 'auto' enables automatic sharing, 'disabled' disables all sharing
*/
share?: "manual" | "auto" | "disabled"