@sanity/cli 3.45.1-mmm-can.140 → 3.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.mts CHANGED
@@ -109,6 +109,7 @@ export declare interface CliConfig {
109
109
  }
110
110
  graphql?: GraphQLAPIConfig[]
111
111
  vite?: UserViteConfig
112
+ autoUpdates?: boolean
112
113
  }
113
114
 
114
115
  declare type CliConfigResult =
package/lib/index.d.ts CHANGED
@@ -109,6 +109,7 @@ export declare interface CliConfig {
109
109
  }
110
110
  graphql?: GraphQLAPIConfig[]
111
111
  vite?: UserViteConfig
112
+ autoUpdates?: boolean
112
113
  }
113
114
 
114
115
  declare type CliConfigResult =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/cli",
3
- "version": "3.45.1-mmm-can.140+b568754a34",
3
+ "version": "3.46.0",
4
4
  "description": "Sanity CLI tool for managing Sanity installations, managing plugins, schemas and datasets",
5
5
  "keywords": [
6
6
  "sanity",
@@ -57,32 +57,32 @@
57
57
  },
58
58
  "dependencies": {
59
59
  "@babel/traverse": "^7.23.5",
60
- "@sanity/client": "^6.19.1",
61
- "@sanity/codegen": "3.45.1-mmm-can.140+b568754a34",
60
+ "@sanity/client": "^6.20.0",
61
+ "@sanity/codegen": "3.46.0",
62
62
  "@sanity/telemetry": "^0.7.7",
63
- "@sanity/util": "3.45.1-mmm-can.140+b568754a34",
63
+ "@sanity/util": "3.46.0",
64
64
  "chalk": "^4.1.2",
65
65
  "debug": "^4.3.4",
66
66
  "decompress": "^4.2.0",
67
67
  "esbuild": "^0.21.0",
68
68
  "esbuild-register": "^3.4.1",
69
- "get-it": "^8.5.0",
69
+ "get-it": "^8.6.0",
70
70
  "groq-js": "^1.9.0",
71
71
  "node-machine-id": "^1.1.12",
72
72
  "pkg-dir": "^5.0.0",
73
- "prettier": "^3.2.5",
73
+ "prettier": "^3.3.0",
74
74
  "semver": "^7.3.5",
75
75
  "silver-fleece": "1.1.0",
76
76
  "validate-npm-package-name": "^3.0.0"
77
77
  },
78
78
  "devDependencies": {
79
79
  "@jest/globals": "^29.7.0",
80
- "@repo/package.config": "3.45.0",
80
+ "@repo/package.config": "3.46.0",
81
81
  "@rexxars/gitconfiglocal": "^3.0.1",
82
82
  "@rollup/plugin-node-resolve": "^15.2.3",
83
83
  "@sanity/eslint-config-studio": "^4.0.0",
84
84
  "@sanity/generate-help-url": "^3.0.0",
85
- "@sanity/types": "3.45.1-mmm-can.140+b568754a34",
85
+ "@sanity/types": "3.46.0",
86
86
  "@types/babel__traverse": "^7.20.5",
87
87
  "@types/configstore": "^5.0.1",
88
88
  "@types/cpx": "^1.5.2",
@@ -135,5 +135,5 @@
135
135
  "engines": {
136
136
  "node": ">=18"
137
137
  },
138
- "gitHead": "b568754a34f46fc1428f339b256b5531d1dec200"
138
+ "gitHead": "8ed31fab813aa77caa45f79f5ef8cdc8247d18d6"
139
139
  }
package/src/types.ts CHANGED
@@ -310,6 +310,8 @@ export interface CliConfig {
310
310
  graphql?: GraphQLAPIConfig[]
311
311
 
312
312
  vite?: UserViteConfig
313
+
314
+ autoUpdates?: boolean
313
315
  }
314
316
 
315
317
  export type UserViteConfig =