@sanity/client 7.0.1-canary.2 → 7.2.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.
Files changed (41) hide show
  1. package/README.md +516 -40
  2. package/dist/_chunks-cjs/config.cjs +14 -0
  3. package/dist/_chunks-cjs/config.cjs.map +1 -1
  4. package/dist/_chunks-es/config.js +15 -1
  5. package/dist/_chunks-es/config.js.map +1 -1
  6. package/dist/index.browser.cjs +850 -7
  7. package/dist/index.browser.cjs.map +1 -1
  8. package/dist/index.browser.d.cts +2601 -1622
  9. package/dist/index.browser.d.ts +2601 -1622
  10. package/dist/index.browser.js +852 -7
  11. package/dist/index.browser.js.map +1 -1
  12. package/dist/index.cjs +839 -8
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +2601 -1622
  15. package/dist/index.d.ts +2601 -1622
  16. package/dist/index.js +842 -9
  17. package/dist/index.js.map +1 -1
  18. package/dist/stega.browser.d.cts +2612 -1633
  19. package/dist/stega.browser.d.ts +2612 -1633
  20. package/dist/stega.d.cts +2612 -1633
  21. package/dist/stega.d.ts +2612 -1633
  22. package/package.json +3 -1
  23. package/src/SanityClient.ts +626 -1106
  24. package/src/agent/actions/AgentActionsClient.ts +111 -0
  25. package/src/agent/actions/commonTypes.ts +336 -0
  26. package/src/agent/actions/generate.ts +274 -0
  27. package/src/agent/actions/transform.ts +215 -0
  28. package/src/agent/actions/translate.ts +165 -0
  29. package/src/assets/AssetsClient.ts +2 -86
  30. package/src/data/dataMethods.ts +127 -3
  31. package/src/data/transaction.ts +1 -1
  32. package/src/datasets/DatasetsClient.ts +2 -64
  33. package/src/projects/ProjectsClient.ts +4 -46
  34. package/src/releases/ReleasesClient.ts +687 -0
  35. package/src/releases/createRelease.ts +53 -0
  36. package/src/types.ts +245 -1
  37. package/src/users/UsersClient.ts +2 -24
  38. package/src/util/createVersionId.ts +79 -0
  39. package/src/validators.ts +23 -1
  40. package/umd/sanityClient.js +915 -6
  41. package/umd/sanityClient.min.js +2 -2
package/README.md CHANGED
@@ -91,6 +91,7 @@ export async function updateDocumentTitle(_id, title) {
91
91
  - [Delete documents](#delete-documents)
92
92
  - [Multiple mutations in a transaction](#multiple-mutations-in-a-transaction)
93
93
  - [Clientless patches \& transactions](#clientless-patches--transactions)
94
+ - [Release and version operations](#release-and-version-operations)
94
95
  - [Uploading assets](#uploading-assets)
95
96
  - [Examples: Uploading assets from Node.js](#examples-uploading-assets-from-nodejs)
96
97
  - [Examples: Uploading assets from the Browser](#examples-uploading-assets-from-the-browser)
@@ -106,11 +107,32 @@ export async function updateDocumentTitle(_id, title) {
106
107
  - [Action options](#action-options)
107
108
  - [Create Action](#create-action)
108
109
  - [Delete Action](#delete-action)
109
- - [Discard Action](#discard-action)
110
110
  - [Edit Action](#edit-action)
111
111
  - [Publish Action](#publish-action)
112
- - [ReplaceDraft Action](#replacedraft-action)
113
112
  - [Unpublish Action](#unpublish-action)
113
+ - [Agent Actions API](#agent-actions-api)
114
+ - [Overview](#overview)
115
+ - [Generating Content](#generating-content)
116
+ - [Example: Using GROQ in instructionParams](#example-using-groq-in-instructionparams)
117
+ - [Example: Using the async flag](#example-using-the-async-flag)
118
+ - [Transforming Documents](#transforming-documents)
119
+ - [Example: Field-based transformation](#example-field-based-transformation)
120
+ - [Translating Documents](#translating-documents)
121
+ - [Example: Storing language in a field](#example-storing-language-in-a-field)
122
+ - [Version actions](#version-actions)
123
+ - [Create Version Action](#create-version)
124
+ - [Discard Version Action](#discard-version)
125
+ - [Replace Version Action](#replace-version)
126
+ - [Unpublish Version Action](#unpublish-action)
127
+ - [Release Actions](#release-actions)
128
+ - [Create Release Action](#create-release)
129
+ - [Edit Release Action](#edit-release)
130
+ - [Published Release Action](#publish-release)
131
+ - [Schedule Release Action](#schedule-release)
132
+ - [Unschedule Release Action](#unarchive-release)
133
+ - [Archive Release Action](#archive-release)
134
+ - [Unarchive Release Action](#unarchive-release)
135
+ - [Delete Release Action](#delete-release)
114
136
  - [License](#license)
115
137
  - [From `v5`](#from-v5)
116
138
  - [The default `useCdn` is changed to `true`](#the-default-usecdn-is-changed-to-true)
@@ -1284,6 +1306,113 @@ client.mutate(transaction)
1284
1306
 
1285
1307
  An important note on this approach is that you cannot call `commit()` on transactions or patches instantiated this way, instead you have to pass them to `client.mutate()`
1286
1308
 
1309
+ ### Release and version operations
1310
+
1311
+ Release and version actions can be taken directly using the client's [actions API](#version-actions). Additionally, helper methods are provided which abstract some esoteric nomenclature with the release and version processing.
1312
+
1313
+ 0. Setup the client
1314
+
1315
+ ```js
1316
+ import {createClient} from '@sanity/client'
1317
+
1318
+ const client = createClient({
1319
+ projectId: 'your-project-id',
1320
+ dataset: 'bikeshop',
1321
+ })
1322
+ ```
1323
+
1324
+ 1. Create a new release
1325
+
1326
+ ```js
1327
+ const {releaseId} = await client.release.create({
1328
+ metadata: {
1329
+ title: 'New bike drop'
1330
+ releaseType: 'scheduled'
1331
+ }
1332
+ })
1333
+ ```
1334
+
1335
+ 2. Create a new document into the release
1336
+
1337
+ ```js
1338
+ client.createVersion({
1339
+ document: {
1340
+ _type: 'bike',
1341
+ name: 'Upgraded black bike',
1342
+ },
1343
+ releaseId,
1344
+ publishedId: 'bike-123',
1345
+ })
1346
+ ```
1347
+
1348
+ 3. Mark a document to be unpublished when the release is run
1349
+
1350
+ ```js
1351
+ client.unpublishVersion({
1352
+ publishedId: 'old-red-bike',
1353
+ releaseId,
1354
+ })
1355
+ ```
1356
+
1357
+ 4. List the release and all the documents within the release
1358
+
1359
+ ```js
1360
+ const newBikesRelease = await client.releases.get({releaseId})
1361
+ /**
1362
+ * {
1363
+ * _type: 'system.release',
1364
+ * _id: '_.releases.releaseId',
1365
+ * name: 'releaseId',
1366
+ * state: 'active',
1367
+ * metadata: {
1368
+ * name: 'New bike drop',
1369
+ * releaseType: 'scheduled'
1370
+ * }
1371
+ * }
1372
+ */
1373
+
1374
+ const releaseDocuments = await client.releases.getDocuments({
1375
+ releaseId,
1376
+ })
1377
+
1378
+ /**
1379
+ * Returns a list of documents eg.
1380
+ *
1381
+ * [{
1382
+ * _type: 'bike',
1383
+ * _id: 'versions.releaseId.bike-123',
1384
+ * name: 'Upgraded black bike',
1385
+ * ...
1386
+ * },
1387
+ * {
1388
+ * _type: 'bike',
1389
+ * _id: 'versions.releaseId.old-red-bike',
1390
+ * _system: {
1391
+ * delete: true
1392
+ * }
1393
+ * }]
1394
+ */
1395
+ ```
1396
+
1397
+ 5. Schedule the release (to run in 1 hours time)
1398
+
1399
+ ```js
1400
+ client.release.schedule({
1401
+ releaseId,
1402
+ publishAt: new Date(Date.now() + 3600000).toISOString(),
1403
+ })
1404
+ ```
1405
+
1406
+ 6. After the release has run, check and delete the release
1407
+
1408
+ ```js
1409
+ const runRelease = await client.releases.get({releaseId})
1410
+
1411
+ if (runRelease.state === 'published' && !runRelease.error) {
1412
+ client.releases.delete({releaseId})
1413
+ }
1414
+ ```
1415
+
1287
1416
  ### Actions
1288
1417
 
1289
1418
  The Actions API provides a new interface for creating, updating and publishing documents. It is a wrapper around the [Actions API](https://www.sanity.io/docs/http-actions).
@@ -1343,27 +1472,6 @@ client
1343
1472
  })
1344
1473
  ```
1345
1474
 
1346
- #### Discard Action
1347
-
1348
- A draft document can be deleted by specifying a discard action type:
1349
-
1350
- ```js
1351
- client
1352
- .action(
1353
- {
1354
- actionType: 'sanity.action.document.discard',
1355
- draftId: 'draft.bike-123',
1356
- },
1357
- actionOptions,
1358
- )
1359
- .then(() => {
1360
- console.log('Bike draft deleted')
1361
- })
1362
- .catch((err) => {
1363
- console.error('Discard failed: ', err.message)
1364
- })
1365
- ```
1366
-
1367
1475
  #### Edit Action
1368
1476
 
1369
1477
  A patch can be applied to an existing document draft or create a new one by specifying an edit action type:
@@ -1410,47 +1518,268 @@ client
1410
1518
  })
1411
1519
  ```
1412
1520
 
1413
- #### ReplaceDraft Action
1521
+ #### Unpublish Action
1414
1522
 
1415
- An existing document draft can be deleted and replaced by a new one by specifying a replaceDraft action type:
1523
+ A published document can be retracted by specifying an unpublish action type:
1416
1524
 
1417
1525
  ```js
1418
1526
  client
1419
1527
  .action(
1420
1528
  {
1421
- actionType: 'sanity.action.document.replaceDraft',
1529
+ actionType: 'sanity.action.document.unpublish',
1530
+ draftId: 'draft.bike-123',
1422
1531
  publishedId: 'bike-123',
1423
- attributes: {name: 'Sanity Tandem Extraordinaire', _type: 'bike', seats: 1},
1424
1532
  },
1425
1533
  actionOptions,
1426
1534
  )
1427
1535
  .then(() => {
1428
- console.log('Bike draft replaced')
1536
+ console.log('Bike draft unpublished')
1429
1537
  })
1430
1538
  .catch((err) => {
1431
- console.error('Replace draft failed: ', err.message)
1539
+ console.error('Unpublish draft failed: ', err.message)
1432
1540
  })
1433
1541
  ```
1434
1542
 
1435
- #### Unpublish Action
1543
+ ## Version actions
1436
1544
 
1437
- A published document can be retracted by specifying an unpublish action type:
1545
+ ### Create version
1546
+
1547
+ Create a draft or release version of a published document.
1548
+
1549
+ ```js
1550
+ client.action(
1551
+ {
1552
+ actionType: 'sanity.action.document.version.create',
1553
+ publishedId: 'bike-123',
1554
+ document: {
1555
+ _id: 'versions.new-bike-release.bike-123'
1556
+ _type: 'bike'
1557
+ }
1558
+ }
1559
+ ).then(() => {
1560
+ console.log('Copy of published `bike-123` created in release `new-bike-release`')
1561
+ }).catch((err) => {
1562
+ console.error('Create version failed: ', err.message)
1563
+ })
1564
+ ```
1565
+
1566
+ > [!NOTE]
1567
+ > Replacing `versions.<releaseId>` with `drafts` will create a new draft version from the published document.
1568
+
1569
+ ### Discard version
1570
+
1571
+ Discard a draft or release version.
1438
1572
 
1439
1573
  ```js
1440
1574
  client
1441
- .action(
1442
- {
1443
- actionType: 'sanity.action.document.unpublish',
1444
- draftId: 'draft.bike-123',
1445
- publishedId: 'bike-123',
1575
+ .action({
1576
+ actionType: 'sanity.action.document.version.discard',
1577
+ versionId: 'versions.new-bike-release.bike-123',
1578
+ })
1579
+ .then(() => {
1580
+ console.log('Discarded the version of `bike-123` within the `new-bike-release` release')
1581
+ })
1582
+ .catch((err) => {
1583
+ console.error('Discard version failed: ', err.message)
1584
+ })
1585
+ ```
1586
+
1587
+ ### Replace version
1588
+
1589
+ Replaces the contents of an existing draft or release version document.
1590
+
1591
+ ```js
1592
+ client
1593
+ .action({
1594
+ actionType: 'sanity.action.document.version.replace',
1595
+ document: {
1596
+ _id: 'versions.new-bike-release.bike-123',
1597
+ color: 'red',
1598
+ _type: 'bike',
1446
1599
  },
1447
- actionOptions,
1448
- )
1600
+ })
1449
1601
  .then(() => {
1450
- console.log('Bike draft unpublished')
1602
+ console.log('Replaced the existing `bike-123` document within the `new-bike-release` release')
1451
1603
  })
1452
1604
  .catch((err) => {
1453
- console.error('Unpublish draft failed: ', err.message)
1605
+ console.error('Replace version failed: ', err.message)
1606
+ })
1607
+ ```
1608
+
1609
+ ### Unpublish version
1610
+
1611
+ Marks a document to be unpublished when the release it is part of is run.
1612
+
1613
+ ```js
1614
+ client
1615
+ .action({
1616
+ actionType: 'sanity.action.document.version.unpublish',
1617
+ publishedId: 'bike-123',
1618
+ versionId: 'versions.new-bike-release.bike-123',
1619
+ })
1620
+ .then(() => {
1621
+ console.log('`bike-123` will be unpublished when `new-bike-release` release is run')
1622
+ })
1623
+ .catch((err) => {
1624
+ console.error('Unpublish version failed: ', err.message)
1625
+ })
1626
+ ```
1627
+
1628
+ ## Release Actions
1629
+
1630
+ ### Create release
1631
+
1632
+ Create a new release.
1633
+
1634
+ ```js
1635
+ client
1636
+ .action({
1637
+ actionType: 'sanity.action.release.create',
1638
+ releaseId: 'new-bikes-release',
1639
+ metadata: {
1640
+ title: 'New bikes',
1641
+ releaseType: 'undecided',
1642
+ },
1643
+ })
1644
+ .then(() => {
1645
+ console.log('`new-bikes-release` created')
1646
+ })
1647
+ .catch((err) => {
1648
+ console.error('Create release failed: ', err.message)
1649
+ })
1650
+ ```
1651
+
1652
+ ### Edit release
1653
+
1654
+ Edit the metadata on an existing release.
1655
+
1656
+ ```js
1657
+ client
1658
+ .action({
1659
+ actionType: 'sanity.action.release.edit',
1660
+ releaseId: 'new-bikes-release',
1661
+ patch: {
1662
+ set: {
1663
+ metadata: {
1664
+ releaseType: 'asap',
1665
+ },
1666
+ },
1667
+ },
1668
+ })
1669
+ .then(() => {
1670
+ console.log('`new-bikes-release` changed to `asap` release type')
1671
+ })
1672
+ .catch((err) => {
1673
+ console.error('Edit release failed: ', err.message)
1674
+ })
1675
+ ```
1676
+
1677
+ ### Publish release
1678
+
1679
+ Publish all document versions within a release.
1680
+
1681
+ ```js
1682
+ client
1683
+ .action({
1684
+ actionType: 'sanity.action.release.publish',
1685
+ releaseId: 'new-bikes-release',
1686
+ })
1687
+ .then(() => {
1688
+ console.log('`new-bikes-release` published')
1689
+ })
1690
+ .catch((err) => {
1691
+ console.error('Publish release failed: ', err.message)
1692
+ })
1693
+ ```
1694
+
1695
+ ### Schedule release
1696
+
1697
+ Schedule a release to be run now or in the future
1698
+
1699
+ ```js
1700
+ client
1701
+ .action({
1702
+ actionType: 'sanity.action.release.schedule',
1703
+ releaseId: 'new-bikes-release',
1704
+ publishAt: '2025-01-01T00:00:00.000Z',
1705
+ })
1706
+ .then(() => {
1707
+ console.log('`new-bikes-release` scheduled')
1708
+ })
1709
+ .catch((err) => {
1710
+ console.error('Schedule release failed: ', err.message)
1711
+ })
1712
+ ```
1713
+
1714
+ ### Unschedule release
1715
+
1716
+ Unschedule a currently scheduled release, to stop the release being run.
1717
+
1718
+ ```js
1719
+ client
1720
+ .action({
1721
+ actionType: 'sanity.action.release.unschedule',
1722
+ releaseId: 'new-bikes-release',
1723
+ })
1724
+ .then(() => {
1725
+ console.log('`new-bikes-release` unscheduled')
1726
+ })
1727
+ .catch((err) => {
1728
+ console.error('Unschedule release failed: ', err.message)
1729
+ })
1730
+ ```
1731
+
1732
+ ### Archive release
1733
+
1734
+ Mark an active (not published) release as archived.
1735
+
1736
+ ```js
1737
+ client
1738
+ .action({
1739
+ actionType: 'sanity.action.release.archive',
1740
+ releaseId: 'new-bikes-release',
1741
+ })
1742
+ .then(() => {
1743
+ console.log('`new-bikes-release` archived')
1744
+ })
1745
+ .catch((err) => {
1746
+ console.error('Archive release failed: ', err.message)
1747
+ })
1748
+ ```
1749
+
1750
+ ### Unarchive release
1751
+
1752
+ Once a release has been archived, the archive process may be undone by unarchiving the release.
1753
+
1754
+ ```js
1755
+ client
1756
+ .action({
1757
+ actionType: 'sanity.action.release.unarchive',
1758
+ releaseId: 'new-bikes-release',
1759
+ })
1760
+ .then(() => {
1761
+ console.log('`new-bikes-release` unarchived')
1762
+ })
1763
+ .catch((err) => {
1764
+ console.error('Unarchive release failed: ', err.message)
1765
+ })
1766
+ ```
1767
+
1768
+ ### Delete release
1769
+
1770
+ An archived release can be deleted, which will remove the system release document permanently from the dataset.
1771
+
1772
+ ```js
1773
+ client
1774
+ .action({
1775
+ actionType: 'sanity.action.release.delete',
1776
+ releaseId: 'new-bikes-release',
1777
+ })
1778
+ .then(() => {
1779
+ console.log('`new-bikes-release` deleted')
1780
+ })
1781
+ .catch((err) => {
1782
+ console.error('Delete release failed: ', err.message)
1454
1783
  })
1455
1784
  ```
1456
1785
 
@@ -1632,6 +1961,153 @@ client.config({dataset: 'newDataset'})
1632
1961
 
1633
1962
  Set client configuration. Required options are `projectId` and `dataset`.
1634
1963
 
1964
+ ### Agent Actions API
1965
+
1966
+ The Agent Actions API provides programmatic access to AI-powered content generation, transformation, and translation for your Sanity documents. These APIs are available on the `client.agent.action` namespace.
1967
+
1968
+ > **Note:** These APIs are currently in beta and may change in future releases.
1969
+
1970
+ #### Overview
1971
+
1972
+ Agent Actions allow you to:
1973
+
1974
+ - **Generate** new content for a document or specific fields using LLM instructions.
1975
+ - **Transform** a document based on instructions, optionally copying from a source document.
1976
+ - **Translate** a document or fields from one language to another, with support for style guides and protected phrases.
1977
+
1978
+ All methods are available in both Promise and Observable forms:
1979
+
1980
+ - `client.agent.action.generate`, `client.agent.action.transform`, `client.agent.action.translate` (Promise-based)
1981
+ - `client.observable.agent.action.generate`, etc. (Observable-based, for streaming or RxJS use)
1982
+
1983
+ ---
1984
+
1985
+ #### Generating Content
1986
+
1987
+ ```ts
1988
+ const result = await client.agent.action.generate({
1989
+ schemaId: 'your-schema-id',
1990
+ documentId: 'your-document-id',
1991
+ instruction: 'Write a summary for the following topic: $topic',
1992
+ instructionParams: {
1993
+ topic: 'Grapefruit',
1994
+ },
1995
+ target: {path: ['body']},
1996
+ })
1997
+ ```
1998
+
1999
+ - **schemaId**: The schema identifier for the document type.
2000
+ - **documentId**: The ID of the document to generate content for.
2001
+ - **instruction**: A string template describing what to generate. Use `$variable` for dynamic values.
2002
+ - **instructionParams**: Values for variables in the instruction. Supports constants, fields, documents, or GROQ queries.
2003
+ - **target**: (Optional) Specifies which fields or paths to generate content for.
2004
+
2005
+ ##### Example: Using GROQ in instructionParams
2006
+
2007
+ ```ts
2008
+ await client.agent.action.generate({
2009
+ schemaId,
2010
+ documentId,
2011
+ instruction: 'Generate a title based on these: $list',
2012
+ instructionParams: {
2013
+ list: {
2014
+ type: 'groq',
2015
+ query: '*[_type==$type].title',
2016
+ params: {type: 'article'},
2017
+ },
2018
+ },
2019
+ target: {path: ['body']},
2020
+ })
2021
+ ```
2022
+
2023
+ #### Example: Using the async flag
2024
+
2025
+ The `async` parameter allows you to fire and forget and will not wait for a response from the LLMj, this works also in the Transform and Translate APIs.
2026
+
2027
+ ```ts
2028
+ const result = await client.agent.action.generate({
2029
+ schemaId: 'article',
2030
+ documentId: 'article-123',
2031
+ instruction: 'Write a comprehensive article about $topic',
2032
+ instructionParams: {
2033
+ topic: 'Climate Change',
2034
+ },
2035
+ target: {path: ['body']},
2036
+ async: true, // Enable async mode for long-running tasks or where you don't want to wait for the result
2037
+ })
2038
+
2039
+ // result will return back the document id
2040
+ console.log('Generation task started:', result._id)
2041
+ ```
2042
+
2043
+ #### Transforming Documents
2044
+
2045
+ ```ts
2046
+ const result = await client.agent.action.transform({
2047
+ schemaId: 'your-schema-id',
2048
+ documentId: 'source-document-id',
2049
+ instruction: 'Transform the content to a more formal tone.',
2050
+ targetDocument: {operation: 'edit', _id: 'target-document-id'},
2051
+ target: {path: ['body']},
2052
+ })
2053
+ ```
2054
+
2055
+ - **schemaId**: The schema identifier for the document type.
2056
+ - **documentId**: The source document ID.
2057
+ - **instruction**: A string template describing the transformation.
2058
+ - **targetDocument**: (Optional) Specify a different document to write the result to, or create a new one.
2059
+ - **target**: (Optional) Specifies which fields or paths to transform.
2060
+
2061
+ ##### Example: Field-based transformation
2062
+
2063
+ ```ts
2064
+ await client.agent.action.transform({
2065
+ schemaId,
2066
+ documentId,
2067
+ instruction: 'Summarize the following field: $content',
2068
+ instructionParams: {
2069
+ content: {type: 'field', path: ['body']},
2070
+ },
2071
+ target: {path: ['body']},
2072
+ })
2073
+ ```
2074
+
2075
+ ---
2076
+
2077
+ #### Translating Documents
2078
+
2079
+ ```ts
2080
+ const result = await client.agent.action.translate({
2081
+ schemaId: 'your-schema-id',
2082
+ documentId: 'source-document-id',
2083
+ fromLanguage: {id: 'en', title: 'English'},
2084
+ toLanguage: {id: 'es', title: 'Spanish'},
2085
+ styleGuide: 'Use a friendly tone.',
2086
+ protectedPhrases: ['Sanity', 'Grapefruit'],
2087
+ target: {path: ['body']},
2088
+ })
2089
+ ```
2090
+
2091
+ - **schemaId**: The schema identifier for the document type.
2092
+ - **documentId**: The source document ID.
2093
+ - **fromLanguage**: (Optional) The source language code and title.
2094
+ - **toLanguage**: The target language code and title.
2095
+ - **styleGuide**: (Optional) Instructions for translation style.
2096
+ - **protectedPhrases**: (Optional) Array of phrases to leave untranslated.
2097
+ - **target**: (Optional) Specifies which fields or paths to translate.
2098
+
2099
+ ##### Example: Storing language in a field
2100
+
2101
+ ```ts
2102
+ await client.agent.action.translate({
2103
+ schemaId,
2104
+ documentId,
2105
+ toLanguage: {id: 'fr', title: 'French'},
2106
+ languageFieldPath: ['language'],
2107
+ target: {path: ['body']},
2108
+ })
2109
+ ```
2110
+
1635
2111
  ## License
1636
2112
 
1637
2113
  MIT © [Sanity.io](https://www.sanity.io/)
@@ -24,6 +24,18 @@ const VALID_ASSET_TYPES = ["image", "file"], VALID_INSERT_LOCATIONS = ["before",
24
24
  if (!doc._id)
25
25
  throw new Error(`${op}() requires that the document contains an ID ("_id" property)`);
26
26
  validateDocumentId(op, doc._id);
27
+ }, validateDocumentType = (op, type) => {
28
+ if (typeof type != "string")
29
+ throw new Error(`\`${op}()\`: \`${type}\` is not a valid document type`);
30
+ }, requireDocumentType = (op, doc) => {
31
+ if (!doc._type)
32
+ throw new Error(`\`${op}()\` requires that the document contains a type (\`_type\` property)`);
33
+ validateDocumentType(op, doc._type);
34
+ }, validateVersionIdMatch = (builtVersionId, document) => {
35
+ if (document._id && document._id !== builtVersionId)
36
+ throw new Error(
37
+ `The provided document ID (\`${document._id}\`) does not match the generated version ID (\`${builtVersionId}\`)`
38
+ );
27
39
  }, validateInsert = (at, selector, items) => {
28
40
  const signature = "insert(at, selector, items)";
29
41
  if (VALID_INSERT_LOCATIONS.indexOf(at) === -1) {
@@ -166,6 +178,7 @@ exports.printNoDefaultExport = printNoDefaultExport;
166
178
  exports.printPreviewDraftsDeprecationWarning = printPreviewDraftsDeprecationWarning;
167
179
  exports.requestTag = requestTag;
168
180
  exports.requireDocumentId = requireDocumentId;
181
+ exports.requireDocumentType = requireDocumentType;
169
182
  exports.resourceConfig = resourceConfig;
170
183
  exports.resourceGuard = resourceGuard;
171
184
  exports.validateApiPerspective = validateApiPerspective;
@@ -173,4 +186,5 @@ exports.validateAssetType = validateAssetType;
173
186
  exports.validateDocumentId = validateDocumentId;
174
187
  exports.validateInsert = validateInsert;
175
188
  exports.validateObject = validateObject;
189
+ exports.validateVersionIdMatch = validateVersionIdMatch;
176
190
  //# sourceMappingURL=config.cjs.map