@confed/sanity-types 0.1.3-2512022020 → 0.1.3-2512051905
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/package.json +1 -1
- package/sanity.types.ts +47 -2
package/package.json
CHANGED
package/sanity.types.ts
CHANGED
|
@@ -462,7 +462,45 @@ export type PtButton = {
|
|
|
462
462
|
_type: 'ptButton'
|
|
463
463
|
variant?: 'primary' | 'outlined'
|
|
464
464
|
text: string
|
|
465
|
-
link
|
|
465
|
+
link?: string
|
|
466
|
+
internalPage?:
|
|
467
|
+
| {
|
|
468
|
+
_ref: string
|
|
469
|
+
_type: 'reference'
|
|
470
|
+
_weak?: boolean
|
|
471
|
+
[internalGroqTypeReferenceTo]?: 'webpage'
|
|
472
|
+
}
|
|
473
|
+
| {
|
|
474
|
+
_ref: string
|
|
475
|
+
_type: 'reference'
|
|
476
|
+
_weak?: boolean
|
|
477
|
+
[internalGroqTypeReferenceTo]?: 'program'
|
|
478
|
+
}
|
|
479
|
+
| {
|
|
480
|
+
_ref: string
|
|
481
|
+
_type: 'reference'
|
|
482
|
+
_weak?: boolean
|
|
483
|
+
[internalGroqTypeReferenceTo]?: 'campus'
|
|
484
|
+
}
|
|
485
|
+
| {
|
|
486
|
+
_ref: string
|
|
487
|
+
_type: 'reference'
|
|
488
|
+
_weak?: boolean
|
|
489
|
+
[internalGroqTypeReferenceTo]?: 'school'
|
|
490
|
+
}
|
|
491
|
+
| {
|
|
492
|
+
_ref: string
|
|
493
|
+
_type: 'reference'
|
|
494
|
+
_weak?: boolean
|
|
495
|
+
[internalGroqTypeReferenceTo]?: 'person'
|
|
496
|
+
}
|
|
497
|
+
| {
|
|
498
|
+
_ref: string
|
|
499
|
+
_type: 'reference'
|
|
500
|
+
_weak?: boolean
|
|
501
|
+
[internalGroqTypeReferenceTo]?: 'newsArticle'
|
|
502
|
+
}
|
|
503
|
+
resolvedPath?: string
|
|
466
504
|
}
|
|
467
505
|
|
|
468
506
|
export type Figure = {
|
|
@@ -925,7 +963,12 @@ export type ProgramIntake = {
|
|
|
925
963
|
[internalGroqTypeReferenceTo]?: 'campus'
|
|
926
964
|
}>
|
|
927
965
|
isInternational?: boolean
|
|
928
|
-
applicationMethod?:
|
|
966
|
+
applicationMethod?:
|
|
967
|
+
| 'OCAS Application'
|
|
968
|
+
| 'Direct Application'
|
|
969
|
+
| 'Contact College'
|
|
970
|
+
| 'Skilled Trades Ontario / MLITSD'
|
|
971
|
+
| 'Other'
|
|
929
972
|
coordinators?: Array<{
|
|
930
973
|
_ref: string
|
|
931
974
|
_type: 'reference'
|
|
@@ -1033,6 +1076,8 @@ export type Program = {
|
|
|
1033
1076
|
textEmployment?: PtBasic
|
|
1034
1077
|
lightcastCareerLink?: string
|
|
1035
1078
|
programNotes?: PtBasic
|
|
1079
|
+
coursesNotes?: PtBasic
|
|
1080
|
+
feesNotes?: PtBasic
|
|
1036
1081
|
coordinators?: Array<{
|
|
1037
1082
|
_ref: string
|
|
1038
1083
|
_type: 'reference'
|