@confed/sanity-types 0.1.3-2512051905 → 0.1.3-2512081543

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 +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@confed/sanity-types",
3
- "version": "0.1.3-2512051905",
3
+ "version": "0.1.3-2512081543",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
package/sanity.types.ts CHANGED
@@ -454,6 +454,12 @@ export type PtLink = {
454
454
  _weak?: boolean
455
455
  [internalGroqTypeReferenceTo]?: 'programFile'
456
456
  }
457
+ | {
458
+ _ref: string
459
+ _type: 'reference'
460
+ _weak?: boolean
461
+ [internalGroqTypeReferenceTo]?: 'newsArticle'
462
+ }
457
463
  href?: string
458
464
  openInNewTab?: boolean
459
465
  }
@@ -500,6 +506,12 @@ export type PtButton = {
500
506
  _weak?: boolean
501
507
  [internalGroqTypeReferenceTo]?: 'newsArticle'
502
508
  }
509
+ | {
510
+ _ref: string
511
+ _type: 'reference'
512
+ _weak?: boolean
513
+ [internalGroqTypeReferenceTo]?: 'programFile'
514
+ }
503
515
  resolvedPath?: string
504
516
  }
505
517