@confed/sanity-types 0.1.3-2512052005 → 0.1.3-2512101606

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 (2) hide show
  1. package/package.json +1 -1
  2. package/sanity.types.ts +8 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@confed/sanity-types",
3
- "version": "0.1.3-2512052005",
3
+ "version": "0.1.3-2512101606",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
package/sanity.types.ts CHANGED
@@ -338,7 +338,7 @@ export type PtSimple = Array<{
338
338
  markDefs?: Array<
339
339
  {
340
340
  _key: string
341
- } & Link
341
+ } & PtLink
342
342
  >
343
343
  level?: number
344
344
  _type: 'block'
@@ -358,7 +358,7 @@ export type PtBasic = Array<
358
358
  markDefs?: Array<
359
359
  | ({
360
360
  _key: string
361
- } & Link)
361
+ } & PtLink)
362
362
  | {
363
363
  id: string
364
364
  _type: 'anchor'
@@ -506,6 +506,12 @@ export type PtButton = {
506
506
  _weak?: boolean
507
507
  [internalGroqTypeReferenceTo]?: 'newsArticle'
508
508
  }
509
+ | {
510
+ _ref: string
511
+ _type: 'reference'
512
+ _weak?: boolean
513
+ [internalGroqTypeReferenceTo]?: 'programFile'
514
+ }
509
515
  resolvedPath?: string
510
516
  }
511
517