@sanity/cli 6.3.0 → 6.3.1

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.
Files changed (3) hide show
  1. package/README.md +82 -82
  2. package/oclif.manifest.json +329 -329
  3. package/package.json +7 -7
package/README.md CHANGED
@@ -140,7 +140,7 @@ EXAMPLES
140
140
  $ sanity backups disable production
141
141
  ```
142
142
 
143
- _See code: [src/commands/backups/disable.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/backups/disable.ts)_
143
+ _See code: [src/commands/backups/disable.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/backups/disable.ts)_
144
144
 
145
145
  ## `sanity backups download [DATASET]`
146
146
 
@@ -184,7 +184,7 @@ EXAMPLES
184
184
  $ sanity backups download production --backup-id 2024-01-01-backup-3 --out /path/to/file --overwrite
185
185
  ```
186
186
 
187
- _See code: [src/commands/backups/download.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/backups/download.ts)_
187
+ _See code: [src/commands/backups/download.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/backups/download.ts)_
188
188
 
189
189
  ## `sanity backups enable [DATASET]`
190
190
 
@@ -213,7 +213,7 @@ EXAMPLES
213
213
  $ sanity backups enable production
214
214
  ```
215
215
 
216
- _See code: [src/commands/backups/enable.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/backups/enable.ts)_
216
+ _See code: [src/commands/backups/enable.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/backups/enable.ts)_
217
217
 
218
218
  ## `sanity backups list [DATASET]`
219
219
 
@@ -255,7 +255,7 @@ EXAMPLES
255
255
  $ sanity backups list production --after 2024-01-31 --limit 10
256
256
  ```
257
257
 
258
- _See code: [src/commands/backups/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/backups/list.ts)_
258
+ _See code: [src/commands/backups/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/backups/list.ts)_
259
259
 
260
260
  ## `sanity blueprints add TYPE`
261
261
 
@@ -630,7 +630,7 @@ EXAMPLES
630
630
  $ sanity build --no-minify --source-maps
631
631
  ```
632
632
 
633
- _See code: [src/commands/build.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/build.ts)_
633
+ _See code: [src/commands/build.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/build.ts)_
634
634
 
635
635
  ## `sanity codemod [CODEMODNAME]`
636
636
 
@@ -661,7 +661,7 @@ EXAMPLES
661
661
  $ sanity codemod reactIconsV3 --dry
662
662
  ```
663
663
 
664
- _See code: [src/commands/codemod.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/codemod.ts)_
664
+ _See code: [src/commands/codemod.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/codemod.ts)_
665
665
 
666
666
  ## `sanity cors add ORIGIN`
667
667
 
@@ -701,7 +701,7 @@ EXAMPLES
701
701
  $ sanity cors add https://myapp.com --project-id abc123
702
702
  ```
703
703
 
704
- _See code: [src/commands/cors/add.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/cors/add.ts)_
704
+ _See code: [src/commands/cors/add.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/cors/add.ts)_
705
705
 
706
706
  ## `sanity cors delete [ORIGIN]`
707
707
 
@@ -734,7 +734,7 @@ EXAMPLES
734
734
  $ sanity cors delete --project-id abc123
735
735
  ```
736
736
 
737
- _See code: [src/commands/cors/delete.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/cors/delete.ts)_
737
+ _See code: [src/commands/cors/delete.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/cors/delete.ts)_
738
738
 
739
739
  ## `sanity cors list`
740
740
 
@@ -760,7 +760,7 @@ EXAMPLES
760
760
  $ sanity cors list --project-id abc123
761
761
  ```
762
762
 
763
- _See code: [src/commands/cors/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/cors/list.ts)_
763
+ _See code: [src/commands/cors/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/cors/list.ts)_
764
764
 
765
765
  ## `sanity datasets alias create [ALIASNAME] [TARGETDATASET]`
766
766
 
@@ -798,7 +798,7 @@ EXAMPLES
798
798
  $ sanity datasets alias create conference conf-2025
799
799
  ```
800
800
 
801
- _See code: [src/commands/datasets/alias/create.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/alias/create.ts)_
801
+ _See code: [src/commands/datasets/alias/create.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/alias/create.ts)_
802
802
 
803
803
  ## `sanity datasets alias delete ALIASNAME`
804
804
 
@@ -830,7 +830,7 @@ EXAMPLES
830
830
  $ sanity datasets alias delete conference --force
831
831
  ```
832
832
 
833
- _See code: [src/commands/datasets/alias/delete.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/alias/delete.ts)_
833
+ _See code: [src/commands/datasets/alias/delete.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/alias/delete.ts)_
834
834
 
835
835
  ## `sanity datasets alias link [ALIASNAME] [TARGETDATASET]`
836
836
 
@@ -871,7 +871,7 @@ EXAMPLES
871
871
  $ sanity datasets alias link conference conf-2025 --force
872
872
  ```
873
873
 
874
- _See code: [src/commands/datasets/alias/link.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/alias/link.ts)_
874
+ _See code: [src/commands/datasets/alias/link.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/alias/link.ts)_
875
875
 
876
876
  ## `sanity datasets alias unlink [ALIASNAME]`
877
877
 
@@ -907,7 +907,7 @@ EXAMPLES
907
907
  $ sanity datasets alias unlink conference --force
908
908
  ```
909
909
 
910
- _See code: [src/commands/datasets/alias/unlink.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/alias/unlink.ts)_
910
+ _See code: [src/commands/datasets/alias/unlink.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/alias/unlink.ts)_
911
911
 
912
912
  ## `sanity datasets copy [SOURCE] [TARGET]`
913
913
 
@@ -971,7 +971,7 @@ EXAMPLES
971
971
  $ sanity datasets copy --list --offset 2 --limit 10
972
972
  ```
973
973
 
974
- _See code: [src/commands/datasets/copy.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/copy.ts)_
974
+ _See code: [src/commands/datasets/copy.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/copy.ts)_
975
975
 
976
976
  ## `sanity datasets create [NAME]`
977
977
 
@@ -1011,7 +1011,7 @@ EXAMPLES
1011
1011
  $ sanity datasets create my-dataset --visibility private
1012
1012
  ```
1013
1013
 
1014
- _See code: [src/commands/datasets/create.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/create.ts)_
1014
+ _See code: [src/commands/datasets/create.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/create.ts)_
1015
1015
 
1016
1016
  ## `sanity datasets delete DATASETNAME`
1017
1017
 
@@ -1043,7 +1043,7 @@ EXAMPLES
1043
1043
  $ sanity datasets delete my-dataset --force
1044
1044
  ```
1045
1045
 
1046
- _See code: [src/commands/datasets/delete.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/delete.ts)_
1046
+ _See code: [src/commands/datasets/delete.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/delete.ts)_
1047
1047
 
1048
1048
  ## `sanity datasets embeddings disable [DATASET]`
1049
1049
 
@@ -1068,7 +1068,7 @@ EXAMPLES
1068
1068
  $ sanity datasets embeddings disable production
1069
1069
  ```
1070
1070
 
1071
- _See code: [src/commands/datasets/embeddings/disable.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/embeddings/disable.ts)_
1071
+ _See code: [src/commands/datasets/embeddings/disable.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/embeddings/disable.ts)_
1072
1072
 
1073
1073
  ## `sanity datasets embeddings enable [DATASET]`
1074
1074
 
@@ -1105,7 +1105,7 @@ EXAMPLES
1105
1105
  $ sanity datasets embeddings enable production --wait
1106
1106
  ```
1107
1107
 
1108
- _See code: [src/commands/datasets/embeddings/enable.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/embeddings/enable.ts)_
1108
+ _See code: [src/commands/datasets/embeddings/enable.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/embeddings/enable.ts)_
1109
1109
 
1110
1110
  ## `sanity datasets embeddings status [DATASET]`
1111
1111
 
@@ -1130,7 +1130,7 @@ EXAMPLES
1130
1130
  $ sanity datasets embeddings status production
1131
1131
  ```
1132
1132
 
1133
- _See code: [src/commands/datasets/embeddings/status.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/embeddings/status.ts)_
1133
+ _See code: [src/commands/datasets/embeddings/status.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/embeddings/status.ts)_
1134
1134
 
1135
1135
  ## `sanity datasets export [NAME] [DESTINATION]`
1136
1136
 
@@ -1183,7 +1183,7 @@ EXAMPLES
1183
1183
  $ sanity datasets export staging staging.tar.gz --types products,shops
1184
1184
  ```
1185
1185
 
1186
- _See code: [src/commands/datasets/export.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/export.ts)_
1186
+ _See code: [src/commands/datasets/export.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/export.ts)_
1187
1187
 
1188
1188
  ## `sanity datasets import SOURCE [TARGETDATASET]`
1189
1189
 
@@ -1236,7 +1236,7 @@ EXAMPLES
1236
1236
  $ sanity datasets import -d staging -t someSecretToken my-dataset.ndjson
1237
1237
  ```
1238
1238
 
1239
- _See code: [src/commands/datasets/import.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/import.ts)_
1239
+ _See code: [src/commands/datasets/import.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/import.ts)_
1240
1240
 
1241
1241
  ## `sanity datasets list`
1242
1242
 
@@ -1262,7 +1262,7 @@ EXAMPLES
1262
1262
  $ sanity datasets list --project-id abc123
1263
1263
  ```
1264
1264
 
1265
- _See code: [src/commands/datasets/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/list.ts)_
1265
+ _See code: [src/commands/datasets/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/list.ts)_
1266
1266
 
1267
1267
  ## `sanity datasets visibility get DATASET`
1268
1268
 
@@ -1287,7 +1287,7 @@ EXAMPLES
1287
1287
  $ sanity datasets visibility get my-dataset
1288
1288
  ```
1289
1289
 
1290
- _See code: [src/commands/datasets/visibility/get.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/visibility/get.ts)_
1290
+ _See code: [src/commands/datasets/visibility/get.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/visibility/get.ts)_
1291
1291
 
1292
1292
  ## `sanity datasets visibility set DATASET MODE`
1293
1293
 
@@ -1317,7 +1317,7 @@ EXAMPLES
1317
1317
  $ sanity datasets visibility set my-dataset public
1318
1318
  ```
1319
1319
 
1320
- _See code: [src/commands/datasets/visibility/set.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/datasets/visibility/set.ts)_
1320
+ _See code: [src/commands/datasets/visibility/set.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/datasets/visibility/set.ts)_
1321
1321
 
1322
1322
  ## `sanity debug`
1323
1323
 
@@ -1340,7 +1340,7 @@ EXAMPLES
1340
1340
  $ sanity debug --secrets
1341
1341
  ```
1342
1342
 
1343
- _See code: [src/commands/debug.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/debug.ts)_
1343
+ _See code: [src/commands/debug.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/debug.ts)_
1344
1344
 
1345
1345
  ## `sanity deploy [SOURCEDIR]`
1346
1346
 
@@ -1387,7 +1387,7 @@ EXAMPLES
1387
1387
  $ sanity deploy --external
1388
1388
  ```
1389
1389
 
1390
- _See code: [src/commands/deploy.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/deploy.ts)_
1390
+ _See code: [src/commands/deploy.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/deploy.ts)_
1391
1391
 
1392
1392
  ## `sanity dev`
1393
1393
 
@@ -1414,7 +1414,7 @@ EXAMPLES
1414
1414
  $ sanity dev --load-in-dashboard
1415
1415
  ```
1416
1416
 
1417
- _See code: [src/commands/dev.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/dev.ts)_
1417
+ _See code: [src/commands/dev.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/dev.ts)_
1418
1418
 
1419
1419
  ## `sanity docs browse`
1420
1420
 
@@ -1428,7 +1428,7 @@ DESCRIPTION
1428
1428
  Open Sanity docs in a web browser
1429
1429
  ```
1430
1430
 
1431
- _See code: [src/commands/docs/browse.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/docs/browse.ts)_
1431
+ _See code: [src/commands/docs/browse.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/docs/browse.ts)_
1432
1432
 
1433
1433
  ## `sanity docs read PATH`
1434
1434
 
@@ -1465,7 +1465,7 @@ EXAMPLES
1465
1465
  $ sanity docs read https://www.sanity.io/docs/studio/installation -w
1466
1466
  ```
1467
1467
 
1468
- _See code: [src/commands/docs/read.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/docs/read.ts)_
1468
+ _See code: [src/commands/docs/read.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/docs/read.ts)_
1469
1469
 
1470
1470
  ## `sanity docs search QUERY`
1471
1471
 
@@ -1498,7 +1498,7 @@ EXAMPLES
1498
1498
  $ sanity docs search "deployment" --limit=5
1499
1499
  ```
1500
1500
 
1501
- _See code: [src/commands/docs/search.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/docs/search.ts)_
1501
+ _See code: [src/commands/docs/search.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/docs/search.ts)_
1502
1502
 
1503
1503
  ## `sanity doctor [CHECKS]`
1504
1504
 
@@ -1529,7 +1529,7 @@ EXAMPLES
1529
1529
  $ sanity doctor cli
1530
1530
  ```
1531
1531
 
1532
- _See code: [src/commands/doctor.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/doctor.ts)_
1532
+ _See code: [src/commands/doctor.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/doctor.ts)_
1533
1533
 
1534
1534
  ## `sanity documents create [FILE]`
1535
1535
 
@@ -1580,7 +1580,7 @@ EXAMPLES
1580
1580
  $ sanity documents create myDocument.json --project-id abc123
1581
1581
  ```
1582
1582
 
1583
- _See code: [src/commands/documents/create.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/documents/create.ts)_
1583
+ _See code: [src/commands/documents/create.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/documents/create.ts)_
1584
1584
 
1585
1585
  ## `sanity documents delete ID [IDS]`
1586
1586
 
@@ -1623,7 +1623,7 @@ EXAMPLES
1623
1623
  $ sanity documents delete myDocId --project-id abc123
1624
1624
  ```
1625
1625
 
1626
- _See code: [src/commands/documents/delete.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/documents/delete.ts)_
1626
+ _See code: [src/commands/documents/delete.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/documents/delete.ts)_
1627
1627
 
1628
1628
  ## `sanity documents get DOCUMENTID`
1629
1629
 
@@ -1664,7 +1664,7 @@ EXAMPLES
1664
1664
  $ sanity documents get myDocId --project-id abc123
1665
1665
  ```
1666
1666
 
1667
- _See code: [src/commands/documents/get.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/documents/get.ts)_
1667
+ _See code: [src/commands/documents/get.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/documents/get.ts)_
1668
1668
 
1669
1669
  ## `sanity documents query QUERY`
1670
1670
 
@@ -1707,7 +1707,7 @@ EXAMPLES
1707
1707
  $ sanity documents query '*[_type == "post"]' --project-id abc123 --dataset production
1708
1708
  ```
1709
1709
 
1710
- _See code: [src/commands/documents/query.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/documents/query.ts)_
1710
+ _See code: [src/commands/documents/query.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/documents/query.ts)_
1711
1711
 
1712
1712
  ## `sanity documents validate`
1713
1713
 
@@ -1761,7 +1761,7 @@ EXAMPLES
1761
1761
  $ sanity documents validate --project-id abc123 --dataset production
1762
1762
  ```
1763
1763
 
1764
- _See code: [src/commands/documents/validate.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/documents/validate.ts)_
1764
+ _See code: [src/commands/documents/validate.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/documents/validate.ts)_
1765
1765
 
1766
1766
  ## `sanity exec SCRIPT`
1767
1767
 
@@ -1802,7 +1802,7 @@ EXAMPLES
1802
1802
  $ sanity exec --mock-browser-env myscript.js -- --dry-run positional-argument
1803
1803
  ```
1804
1804
 
1805
- _See code: [src/commands/exec.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/exec.ts)_
1805
+ _See code: [src/commands/exec.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/exec.ts)_
1806
1806
 
1807
1807
  ## `sanity functions add`
1808
1808
 
@@ -2101,7 +2101,7 @@ EXAMPLES
2101
2101
  $ sanity graphql deploy --playground
2102
2102
  ```
2103
2103
 
2104
- _See code: [src/commands/graphql/deploy.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/graphql/deploy.ts)_
2104
+ _See code: [src/commands/graphql/deploy.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/graphql/deploy.ts)_
2105
2105
 
2106
2106
  ## `sanity graphql list`
2107
2107
 
@@ -2127,7 +2127,7 @@ EXAMPLES
2127
2127
  $ sanity graphql list --project-id abc123
2128
2128
  ```
2129
2129
 
2130
- _See code: [src/commands/graphql/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/graphql/list.ts)_
2130
+ _See code: [src/commands/graphql/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/graphql/list.ts)_
2131
2131
 
2132
2132
  ## `sanity graphql undeploy`
2133
2133
 
@@ -2175,7 +2175,7 @@ EXAMPLES
2175
2175
  $ sanity graphql undeploy --project-id abc123 --dataset production
2176
2176
  ```
2177
2177
 
2178
- _See code: [src/commands/graphql/undeploy.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/graphql/undeploy.ts)_
2178
+ _See code: [src/commands/graphql/undeploy.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/graphql/undeploy.ts)_
2179
2179
 
2180
2180
  ## `sanity help [COMMAND]`
2181
2181
 
@@ -2224,7 +2224,7 @@ EXAMPLES
2224
2224
  $ sanity hooks attempt abc123 --project-id projectId
2225
2225
  ```
2226
2226
 
2227
- _See code: [src/commands/hooks/attempt.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/hooks/attempt.ts)_
2227
+ _See code: [src/commands/hooks/attempt.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/hooks/attempt.ts)_
2228
2228
 
2229
2229
  ## `sanity hooks create`
2230
2230
 
@@ -2250,7 +2250,7 @@ EXAMPLES
2250
2250
  $ sanity hooks create --project-id abc123
2251
2251
  ```
2252
2252
 
2253
- _See code: [src/commands/hooks/create.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/hooks/create.ts)_
2253
+ _See code: [src/commands/hooks/create.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/hooks/create.ts)_
2254
2254
 
2255
2255
  ## `sanity hooks delete [NAME]`
2256
2256
 
@@ -2283,7 +2283,7 @@ EXAMPLES
2283
2283
  $ sanity hooks delete --project-id abc123
2284
2284
  ```
2285
2285
 
2286
- _See code: [src/commands/hooks/delete.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/hooks/delete.ts)_
2286
+ _See code: [src/commands/hooks/delete.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/hooks/delete.ts)_
2287
2287
 
2288
2288
  ## `sanity hooks list`
2289
2289
 
@@ -2309,7 +2309,7 @@ EXAMPLES
2309
2309
  $ sanity hooks list --project-id abc123
2310
2310
  ```
2311
2311
 
2312
- _See code: [src/commands/hooks/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/hooks/list.ts)_
2312
+ _See code: [src/commands/hooks/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/hooks/list.ts)_
2313
2313
 
2314
2314
  ## `sanity hooks logs [NAME]`
2315
2315
 
@@ -2345,7 +2345,7 @@ EXAMPLES
2345
2345
  $ sanity hooks logs --project-id abc123
2346
2346
  ```
2347
2347
 
2348
- _See code: [src/commands/hooks/logs.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/hooks/logs.ts)_
2348
+ _See code: [src/commands/hooks/logs.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/hooks/logs.ts)_
2349
2349
 
2350
2350
  ## `sanity init`
2351
2351
 
@@ -2415,7 +2415,7 @@ EXAMPLES
2415
2415
  --output-path /Users/espenh/movies-unlimited
2416
2416
  ```
2417
2417
 
2418
- _See code: [src/commands/init.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/init.ts)_
2418
+ _See code: [src/commands/init.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/init.ts)_
2419
2419
 
2420
2420
  ## `sanity install [PACKAGES]`
2421
2421
 
@@ -2439,7 +2439,7 @@ EXAMPLES
2439
2439
  $ sanity install some-package another-package
2440
2440
  ```
2441
2441
 
2442
- _See code: [src/commands/install.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/install.ts)_
2442
+ _See code: [src/commands/install.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/install.ts)_
2443
2443
 
2444
2444
  ## `sanity learn`
2445
2445
 
@@ -2453,7 +2453,7 @@ DESCRIPTION
2453
2453
  Opens Sanity Learn in your web browser
2454
2454
  ```
2455
2455
 
2456
- _See code: [src/commands/learn.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/learn.ts)_
2456
+ _See code: [src/commands/learn.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/learn.ts)_
2457
2457
 
2458
2458
  ## `sanity login`
2459
2459
 
@@ -2490,7 +2490,7 @@ EXAMPLES
2490
2490
  $ sanity login --sso my-organization --sso-provider "Okta SSO"
2491
2491
  ```
2492
2492
 
2493
- _See code: [src/commands/login.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/login.ts)_
2493
+ _See code: [src/commands/login.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/login.ts)_
2494
2494
 
2495
2495
  ## `sanity logout`
2496
2496
 
@@ -2504,7 +2504,7 @@ DESCRIPTION
2504
2504
  Logs out the CLI from the current user session
2505
2505
  ```
2506
2506
 
2507
- _See code: [src/commands/logout.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/logout.ts)_
2507
+ _See code: [src/commands/logout.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/logout.ts)_
2508
2508
 
2509
2509
  ## `sanity manage`
2510
2510
 
@@ -2518,7 +2518,7 @@ DESCRIPTION
2518
2518
  Opens project management interface in your web browser
2519
2519
  ```
2520
2520
 
2521
- _See code: [src/commands/manage.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/manage.ts)_
2521
+ _See code: [src/commands/manage.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/manage.ts)_
2522
2522
 
2523
2523
  ## `sanity manifest extract`
2524
2524
 
@@ -2546,7 +2546,7 @@ EXAMPLES
2546
2546
  $ sanity manifest extract --path /public/static
2547
2547
  ```
2548
2548
 
2549
- _See code: [src/commands/manifest/extract.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/manifest/extract.ts)_
2549
+ _See code: [src/commands/manifest/extract.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/manifest/extract.ts)_
2550
2550
 
2551
2551
  ## `sanity mcp configure`
2552
2552
 
@@ -2565,7 +2565,7 @@ EXAMPLES
2565
2565
  $ sanity mcp configure
2566
2566
  ```
2567
2567
 
2568
- _See code: [src/commands/mcp/configure.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/mcp/configure.ts)_
2568
+ _See code: [src/commands/mcp/configure.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/mcp/configure.ts)_
2569
2569
 
2570
2570
  ## `sanity media create-aspect`
2571
2571
 
@@ -2584,7 +2584,7 @@ EXAMPLES
2584
2584
  $ sanity media create-aspect
2585
2585
  ```
2586
2586
 
2587
- _See code: [src/commands/media/create-aspect.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/media/create-aspect.ts)_
2587
+ _See code: [src/commands/media/create-aspect.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/media/create-aspect.ts)_
2588
2588
 
2589
2589
  ## `sanity media delete-aspect ASPECTNAME`
2590
2590
 
@@ -2613,7 +2613,7 @@ EXAMPLES
2613
2613
  $ sanity media delete-aspect someAspect
2614
2614
  ```
2615
2615
 
2616
- _See code: [src/commands/media/delete-aspect.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/media/delete-aspect.ts)_
2616
+ _See code: [src/commands/media/delete-aspect.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/media/delete-aspect.ts)_
2617
2617
 
2618
2618
  ## `sanity media deploy-aspect [ASPECTNAME]`
2619
2619
 
@@ -2646,7 +2646,7 @@ EXAMPLES
2646
2646
  $ sanity media deploy-aspect --all
2647
2647
  ```
2648
2648
 
2649
- _See code: [src/commands/media/deploy-aspect.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/media/deploy-aspect.ts)_
2649
+ _See code: [src/commands/media/deploy-aspect.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/media/deploy-aspect.ts)_
2650
2650
 
2651
2651
  ## `sanity media export [DESTINATION]`
2652
2652
 
@@ -2687,7 +2687,7 @@ EXAMPLES
2687
2687
  $ sanity media export --media-library-id my-library-id
2688
2688
  ```
2689
2689
 
2690
- _See code: [src/commands/media/export.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/media/export.ts)_
2690
+ _See code: [src/commands/media/export.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/media/export.ts)_
2691
2691
 
2692
2692
  ## `sanity media import SOURCE`
2693
2693
 
@@ -2725,7 +2725,7 @@ EXAMPLES
2725
2725
  $ sanity media import products --replace-aspects
2726
2726
  ```
2727
2727
 
2728
- _See code: [src/commands/media/import.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/media/import.ts)_
2728
+ _See code: [src/commands/media/import.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/media/import.ts)_
2729
2729
 
2730
2730
  ## `sanity migrations create [TITLE]`
2731
2731
 
@@ -2751,7 +2751,7 @@ EXAMPLES
2751
2751
  $ sanity migrations create "Rename field from location to address"
2752
2752
  ```
2753
2753
 
2754
- _See code: [@sanity/migrate](https://github.com/sanity-io/migrate/blob/v6.1.0/src/commands/migrations/create.ts)_
2754
+ _See code: [@sanity/migrate](https://github.com/sanity-io/migrate/blob/v6.1.1/src/commands/migrations/create.ts)_
2755
2755
 
2756
2756
  ## `sanity migrations list`
2757
2757
 
@@ -2770,7 +2770,7 @@ EXAMPLES
2770
2770
  $ sanity migrations list
2771
2771
  ```
2772
2772
 
2773
- _See code: [@sanity/migrate](https://github.com/sanity-io/migrate/blob/v6.1.0/src/commands/migrations/list.ts)_
2773
+ _See code: [@sanity/migrate](https://github.com/sanity-io/migrate/blob/v6.1.1/src/commands/migrations/list.ts)_
2774
2774
 
2775
2775
  ## `sanity migrations run [ID]`
2776
2776
 
@@ -2814,7 +2814,7 @@ EXAMPLES
2814
2814
  $ sanity migrations run <id> --from-export=production.tar.gz --no-dry-run --project xyz --dataset staging
2815
2815
  ```
2816
2816
 
2817
- _See code: [@sanity/migrate](https://github.com/sanity-io/migrate/blob/v6.1.0/src/commands/migrations/run.ts)_
2817
+ _See code: [@sanity/migrate](https://github.com/sanity-io/migrate/blob/v6.1.1/src/commands/migrations/run.ts)_
2818
2818
 
2819
2819
  ## `sanity openapi get SLUG`
2820
2820
 
@@ -2853,7 +2853,7 @@ EXAMPLES
2853
2853
  $ sanity openapi get query > query-api.yaml
2854
2854
  ```
2855
2855
 
2856
- _See code: [src/commands/openapi/get.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/openapi/get.ts)_
2856
+ _See code: [src/commands/openapi/get.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/openapi/get.ts)_
2857
2857
 
2858
2858
  ## `sanity openapi list`
2859
2859
 
@@ -2884,7 +2884,7 @@ EXAMPLES
2884
2884
  $ sanity openapi list --web
2885
2885
  ```
2886
2886
 
2887
- _See code: [src/commands/openapi/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/openapi/list.ts)_
2887
+ _See code: [src/commands/openapi/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/openapi/list.ts)_
2888
2888
 
2889
2889
  ## `sanity preview [OUTPUTDIR]`
2890
2890
 
@@ -2912,7 +2912,7 @@ EXAMPLES
2912
2912
  $ sanity preview some/build-output-dir
2913
2913
  ```
2914
2914
 
2915
- _See code: [src/commands/preview.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/preview.ts)_
2915
+ _See code: [src/commands/preview.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/preview.ts)_
2916
2916
 
2917
2917
  ## `sanity projects create [PROJECTNAME]`
2918
2918
 
@@ -2960,7 +2960,7 @@ EXAMPLES
2960
2960
  $ sanity projects create "CI Project" --yes --json
2961
2961
  ```
2962
2962
 
2963
- _See code: [src/commands/projects/create.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/projects/create.ts)_
2963
+ _See code: [src/commands/projects/create.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/projects/create.ts)_
2964
2964
 
2965
2965
  ## `sanity projects list`
2966
2966
 
@@ -2989,7 +2989,7 @@ EXAMPLES
2989
2989
  $ sanity projects list --sort=members --order=asc
2990
2990
  ```
2991
2991
 
2992
- _See code: [src/commands/projects/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/projects/list.ts)_
2992
+ _See code: [src/commands/projects/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/projects/list.ts)_
2993
2993
 
2994
2994
  ## `sanity schemas delete`
2995
2995
 
@@ -3021,7 +3021,7 @@ EXAMPLES
3021
3021
  sanity.workspace.schema.workspaceName,prefix.sanity.workspace.schema.otherWorkspace
3022
3022
  ```
3023
3023
 
3024
- _See code: [src/commands/schemas/delete.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/schemas/delete.ts)_
3024
+ _See code: [src/commands/schemas/delete.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/schemas/delete.ts)_
3025
3025
 
3026
3026
  ## `sanity schemas deploy`
3027
3027
 
@@ -3057,7 +3057,7 @@ EXAMPLES
3057
3057
  $ sanity schemas deploy --workspace default
3058
3058
  ```
3059
3059
 
3060
- _See code: [src/commands/schemas/deploy.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/schemas/deploy.ts)_
3060
+ _See code: [src/commands/schemas/deploy.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/schemas/deploy.ts)_
3061
3061
 
3062
3062
  ## `sanity schemas extract`
3063
3063
 
@@ -3096,7 +3096,7 @@ EXAMPLES
3096
3096
  $ sanity schemas extract --watch --watch-patterns "lib/**/*.ts"
3097
3097
  ```
3098
3098
 
3099
- _See code: [src/commands/schemas/extract.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/schemas/extract.ts)_
3099
+ _See code: [src/commands/schemas/extract.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/schemas/extract.ts)_
3100
3100
 
3101
3101
  ## `sanity schemas list`
3102
3102
 
@@ -3136,7 +3136,7 @@ EXAMPLES
3136
3136
  $ sanity schemas list --json --id _.schemas.workspaceName
3137
3137
  ```
3138
3138
 
3139
- _See code: [src/commands/schemas/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/schemas/list.ts)_
3139
+ _See code: [src/commands/schemas/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/schemas/list.ts)_
3140
3140
 
3141
3141
  ## `sanity schemas validate`
3142
3142
 
@@ -3179,7 +3179,7 @@ EXAMPLES
3179
3179
  $ sanity schemas validate --debug-metafile-path metafile.json
3180
3180
  ```
3181
3181
 
3182
- _See code: [src/commands/schemas/validate.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/schemas/validate.ts)_
3182
+ _See code: [src/commands/schemas/validate.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/schemas/validate.ts)_
3183
3183
 
3184
3184
  ## `sanity telemetry disable`
3185
3185
 
@@ -3198,7 +3198,7 @@ EXAMPLES
3198
3198
  $ sanity telemetry telemetry disable
3199
3199
  ```
3200
3200
 
3201
- _See code: [src/commands/telemetry/disable.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/telemetry/disable.ts)_
3201
+ _See code: [src/commands/telemetry/disable.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/telemetry/disable.ts)_
3202
3202
 
3203
3203
  ## `sanity telemetry enable`
3204
3204
 
@@ -3217,7 +3217,7 @@ EXAMPLES
3217
3217
  $ sanity telemetry telemetry enable
3218
3218
  ```
3219
3219
 
3220
- _See code: [src/commands/telemetry/enable.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/telemetry/enable.ts)_
3220
+ _See code: [src/commands/telemetry/enable.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/telemetry/enable.ts)_
3221
3221
 
3222
3222
  ## `sanity telemetry status`
3223
3223
 
@@ -3236,7 +3236,7 @@ EXAMPLES
3236
3236
  $ sanity telemetry telemetry status
3237
3237
  ```
3238
3238
 
3239
- _See code: [src/commands/telemetry/status.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/telemetry/status.ts)_
3239
+ _See code: [src/commands/telemetry/status.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/telemetry/status.ts)_
3240
3240
 
3241
3241
  ## `sanity tokens add [LABEL]`
3242
3242
 
@@ -3282,7 +3282,7 @@ EXAMPLES
3282
3282
  $ sanity tokens add "My Token" --project-id abc123 --role=editor
3283
3283
  ```
3284
3284
 
3285
- _See code: [src/commands/tokens/add.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/tokens/add.ts)_
3285
+ _See code: [src/commands/tokens/add.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/tokens/add.ts)_
3286
3286
 
3287
3287
  ## `sanity tokens delete [TOKENID]`
3288
3288
 
@@ -3322,7 +3322,7 @@ EXAMPLES
3322
3322
  $ sanity tokens delete --project-id abc123
3323
3323
  ```
3324
3324
 
3325
- _See code: [src/commands/tokens/delete.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/tokens/delete.ts)_
3325
+ _See code: [src/commands/tokens/delete.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/tokens/delete.ts)_
3326
3326
 
3327
3327
  ## `sanity tokens list`
3328
3328
 
@@ -3355,7 +3355,7 @@ EXAMPLES
3355
3355
  $ sanity tokens list --project-id abc123
3356
3356
  ```
3357
3357
 
3358
- _See code: [src/commands/tokens/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/tokens/list.ts)_
3358
+ _See code: [src/commands/tokens/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/tokens/list.ts)_
3359
3359
 
3360
3360
  ## `sanity typegen generate`
3361
3361
 
@@ -3401,7 +3401,7 @@ EXAMPLES
3401
3401
  $ sanity typegen generate
3402
3402
  ```
3403
3403
 
3404
- _See code: [@sanity/codegen](https://github.com/sanity-io/codegen/blob/v6.0.1/src/commands/typegen/generate.ts)_
3404
+ _See code: [@sanity/codegen](https://github.com/sanity-io/codegen/blob/v6.0.2/src/commands/typegen/generate.ts)_
3405
3405
 
3406
3406
  ## `sanity undeploy`
3407
3407
 
@@ -3418,7 +3418,7 @@ DESCRIPTION
3418
3418
  Removes the deployed Sanity Studio/App from Sanity hosting
3419
3419
  ```
3420
3420
 
3421
- _See code: [src/commands/undeploy.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/undeploy.ts)_
3421
+ _See code: [src/commands/undeploy.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/undeploy.ts)_
3422
3422
 
3423
3423
  ## `sanity users invite [EMAIL]`
3424
3424
 
@@ -3458,7 +3458,7 @@ EXAMPLES
3458
3458
  $ sanity users invite pippi@sanity.io --project-id abc123
3459
3459
  ```
3460
3460
 
3461
- _See code: [src/commands/users/invite.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/users/invite.ts)_
3461
+ _See code: [src/commands/users/invite.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/users/invite.ts)_
3462
3462
 
3463
3463
  ## `sanity users list`
3464
3464
 
@@ -3500,7 +3500,7 @@ EXAMPLES
3500
3500
  $ sanity users list --project-id abc123
3501
3501
  ```
3502
3502
 
3503
- _See code: [src/commands/users/list.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/users/list.ts)_
3503
+ _See code: [src/commands/users/list.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/users/list.ts)_
3504
3504
 
3505
3505
  ## `sanity versions`
3506
3506
 
@@ -3517,6 +3517,6 @@ EXAMPLES
3517
3517
  $ sanity versions
3518
3518
  ```
3519
3519
 
3520
- _See code: [src/commands/versions.ts](https://github.com/sanity-io/cli/blob/v6.2.1/src/commands/versions.ts)_
3520
+ _See code: [src/commands/versions.ts](https://github.com/sanity-io/cli/blob/v6.3.0/src/commands/versions.ts)_
3521
3521
 
3522
3522
  <!-- commandsstop -->