@polintpro/proposit-core 0.8.5 → 0.8.7

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.
@@ -0,0 +1,1371 @@
1
+ import Type, { type Static } from "typebox";
2
+ export declare const RelaxedBookReferenceSchema: Type.TIntersect<[Type.TObject<{
3
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
4
+ }>, Type.TObject<{
5
+ type: Type.TLiteral<"Book">;
6
+ title: Type.TString;
7
+ year: Type.TString;
8
+ authors: Type.TArray<Type.TObject<{
9
+ givenNames: Type.TString;
10
+ familyName: Type.TString;
11
+ suffix: Type.TOptional<Type.TString>;
12
+ }>>;
13
+ edition: Type.TOptional<Type.TString>;
14
+ publisher: Type.TString;
15
+ location: Type.TOptional<Type.TString>;
16
+ isbn: Type.TOptional<Type.TString>;
17
+ }>]>;
18
+ export type TRelaxedBookReference = Static<typeof RelaxedBookReferenceSchema>;
19
+ export declare const RelaxedWebsiteReferenceSchema: Type.TIntersect<[Type.TObject<{
20
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
21
+ }>, Type.TObject<{
22
+ type: Type.TLiteral<"Website">;
23
+ authors: Type.TArray<Type.TObject<{
24
+ givenNames: Type.TString;
25
+ familyName: Type.TString;
26
+ suffix: Type.TOptional<Type.TString>;
27
+ }>>;
28
+ pageTitle: Type.TString;
29
+ websiteTitle: Type.TString;
30
+ accessedDate: import("../../index.js").TDateType;
31
+ url: Type.TString;
32
+ }>]>;
33
+ export type TRelaxedWebsiteReference = Static<typeof RelaxedWebsiteReferenceSchema>;
34
+ export declare const RelaxedBookChapterReferenceSchema: Type.TIntersect<[Type.TObject<{
35
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
36
+ }>, Type.TObject<{
37
+ type: Type.TLiteral<"BookChapter">;
38
+ chapterTitle: Type.TString;
39
+ year: Type.TString;
40
+ authors: Type.TArray<Type.TObject<{
41
+ givenNames: Type.TString;
42
+ familyName: Type.TString;
43
+ suffix: Type.TOptional<Type.TString>;
44
+ }>>;
45
+ bookTitle: Type.TString;
46
+ editors: Type.TOptional<Type.TArray<Type.TObject<{
47
+ givenNames: Type.TString;
48
+ familyName: Type.TString;
49
+ suffix: Type.TOptional<Type.TString>;
50
+ }>>>;
51
+ publisher: Type.TString;
52
+ location: Type.TString;
53
+ pages: Type.TOptional<Type.TString>;
54
+ isbn: Type.TOptional<Type.TString>;
55
+ }>]>;
56
+ export type TRelaxedBookChapterReference = Static<typeof RelaxedBookChapterReferenceSchema>;
57
+ export declare const RelaxedHandbookReferenceSchema: Type.TIntersect<[Type.TObject<{
58
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
59
+ }>, Type.TObject<{
60
+ type: Type.TLiteral<"Handbook">;
61
+ title: Type.TString;
62
+ year: Type.TString;
63
+ publisher: Type.TString;
64
+ edition: Type.TOptional<Type.TString>;
65
+ location: Type.TString;
66
+ isbn: Type.TOptional<Type.TString>;
67
+ }>]>;
68
+ export type TRelaxedHandbookReference = Static<typeof RelaxedHandbookReferenceSchema>;
69
+ export declare const RelaxedTechnicalReportReferenceSchema: Type.TIntersect<[Type.TObject<{
70
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
71
+ }>, Type.TObject<{
72
+ type: Type.TLiteral<"TechnicalReport">;
73
+ title: Type.TString;
74
+ year: Type.TString;
75
+ authors: Type.TArray<Type.TObject<{
76
+ givenNames: Type.TString;
77
+ familyName: Type.TString;
78
+ suffix: Type.TOptional<Type.TString>;
79
+ }>>;
80
+ reportNumber: Type.TString;
81
+ institution: Type.TString;
82
+ location: Type.TString;
83
+ }>]>;
84
+ export type TRelaxedTechnicalReportReference = Static<typeof RelaxedTechnicalReportReferenceSchema>;
85
+ export declare const RelaxedStandardReferenceSchema: Type.TIntersect<[Type.TObject<{
86
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
87
+ }>, Type.TObject<{
88
+ type: Type.TLiteral<"Standard">;
89
+ organization: Type.TString;
90
+ standardNumber: Type.TString;
91
+ title: Type.TString;
92
+ date: import("../../index.js").TDateType;
93
+ }>]>;
94
+ export type TRelaxedStandardReference = Static<typeof RelaxedStandardReferenceSchema>;
95
+ export declare const RelaxedThesisReferenceSchema: Type.TIntersect<[Type.TObject<{
96
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
97
+ }>, Type.TObject<{
98
+ type: Type.TLiteral<"Thesis">;
99
+ title: Type.TString;
100
+ year: Type.TString;
101
+ authors: Type.TArray<Type.TObject<{
102
+ givenNames: Type.TString;
103
+ familyName: Type.TString;
104
+ suffix: Type.TOptional<Type.TString>;
105
+ }>>;
106
+ degree: Type.TString;
107
+ institution: Type.TString;
108
+ location: Type.TString;
109
+ }>]>;
110
+ export type TRelaxedThesisReference = Static<typeof RelaxedThesisReferenceSchema>;
111
+ export declare const RelaxedPatentReferenceSchema: Type.TIntersect<[Type.TObject<{
112
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
113
+ }>, Type.TObject<{
114
+ type: Type.TLiteral<"Patent">;
115
+ title: Type.TString;
116
+ inventors: Type.TArray<Type.TObject<{
117
+ givenNames: Type.TString;
118
+ familyName: Type.TString;
119
+ suffix: Type.TOptional<Type.TString>;
120
+ }>>;
121
+ country: Type.TString;
122
+ patentNumber: Type.TString;
123
+ date: import("../../index.js").TDateType;
124
+ }>]>;
125
+ export type TRelaxedPatentReference = Static<typeof RelaxedPatentReferenceSchema>;
126
+ export declare const RelaxedDictionaryReferenceSchema: Type.TIntersect<[Type.TObject<{
127
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
128
+ }>, Type.TObject<{
129
+ type: Type.TLiteral<"Dictionary">;
130
+ title: Type.TString;
131
+ year: Type.TString;
132
+ publisher: Type.TString;
133
+ edition: Type.TOptional<Type.TString>;
134
+ }>]>;
135
+ export type TRelaxedDictionaryReference = Static<typeof RelaxedDictionaryReferenceSchema>;
136
+ export declare const RelaxedEncyclopediaReferenceSchema: Type.TIntersect<[Type.TObject<{
137
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
138
+ }>, Type.TObject<{
139
+ type: Type.TLiteral<"Encyclopedia">;
140
+ title: Type.TString;
141
+ year: Type.TString;
142
+ publisher: Type.TString;
143
+ edition: Type.TOptional<Type.TString>;
144
+ }>]>;
145
+ export type TRelaxedEncyclopediaReference = Static<typeof RelaxedEncyclopediaReferenceSchema>;
146
+ export declare const RelaxedJournalArticleReferenceSchema: Type.TIntersect<[Type.TObject<{
147
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
148
+ }>, Type.TObject<{
149
+ type: Type.TLiteral<"JournalArticle">;
150
+ title: Type.TString;
151
+ year: Type.TString;
152
+ authors: Type.TArray<Type.TObject<{
153
+ givenNames: Type.TString;
154
+ familyName: Type.TString;
155
+ suffix: Type.TOptional<Type.TString>;
156
+ }>>;
157
+ journalTitle: Type.TString;
158
+ volume: Type.TOptional<Type.TString>;
159
+ issue: Type.TOptional<Type.TString>;
160
+ pages: Type.TOptional<Type.TString>;
161
+ doi: Type.TOptional<Type.TString>;
162
+ }>]>;
163
+ export type TRelaxedJournalArticleReference = Static<typeof RelaxedJournalArticleReferenceSchema>;
164
+ export declare const RelaxedMagazineArticleReferenceSchema: Type.TIntersect<[Type.TObject<{
165
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
166
+ }>, Type.TObject<{
167
+ type: Type.TLiteral<"MagazineArticle">;
168
+ title: Type.TString;
169
+ year: Type.TString;
170
+ authors: Type.TArray<Type.TObject<{
171
+ givenNames: Type.TString;
172
+ familyName: Type.TString;
173
+ suffix: Type.TOptional<Type.TString>;
174
+ }>>;
175
+ magazineTitle: Type.TString;
176
+ volume: Type.TOptional<Type.TString>;
177
+ issue: Type.TOptional<Type.TString>;
178
+ pages: Type.TOptional<Type.TString>;
179
+ }>]>;
180
+ export type TRelaxedMagazineArticleReference = Static<typeof RelaxedMagazineArticleReferenceSchema>;
181
+ export declare const RelaxedNewspaperArticleReferenceSchema: Type.TIntersect<[Type.TObject<{
182
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
183
+ }>, Type.TObject<{
184
+ type: Type.TLiteral<"NewspaperArticle">;
185
+ title: Type.TString;
186
+ authors: Type.TArray<Type.TObject<{
187
+ givenNames: Type.TString;
188
+ familyName: Type.TString;
189
+ suffix: Type.TOptional<Type.TString>;
190
+ }>>;
191
+ newspaperTitle: Type.TString;
192
+ date: import("../../index.js").TDateType;
193
+ pages: Type.TOptional<Type.TString>;
194
+ }>]>;
195
+ export type TRelaxedNewspaperArticleReference = Static<typeof RelaxedNewspaperArticleReferenceSchema>;
196
+ export declare const RelaxedConferencePaperReferenceSchema: Type.TIntersect<[Type.TObject<{
197
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
198
+ }>, Type.TObject<{
199
+ type: Type.TLiteral<"ConferencePaper">;
200
+ title: Type.TString;
201
+ authors: Type.TArray<Type.TObject<{
202
+ givenNames: Type.TString;
203
+ familyName: Type.TString;
204
+ suffix: Type.TOptional<Type.TString>;
205
+ }>>;
206
+ conferenceName: Type.TString;
207
+ location: Type.TString;
208
+ date: import("../../index.js").TDateType;
209
+ pages: Type.TOptional<Type.TString>;
210
+ doi: Type.TOptional<Type.TString>;
211
+ }>]>;
212
+ export type TRelaxedConferencePaperReference = Static<typeof RelaxedConferencePaperReferenceSchema>;
213
+ export declare const RelaxedConferenceProceedingsReferenceSchema: Type.TIntersect<[Type.TObject<{
214
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
215
+ }>, Type.TObject<{
216
+ type: Type.TLiteral<"ConferenceProceedings">;
217
+ editors: Type.TOptional<Type.TArray<Type.TObject<{
218
+ givenNames: Type.TString;
219
+ familyName: Type.TString;
220
+ suffix: Type.TOptional<Type.TString>;
221
+ }>>>;
222
+ conferenceName: Type.TString;
223
+ location: Type.TString;
224
+ date: import("../../index.js").TDateType;
225
+ publisher: Type.TString;
226
+ isbn: Type.TOptional<Type.TString>;
227
+ }>]>;
228
+ export type TRelaxedConferenceProceedingsReference = Static<typeof RelaxedConferenceProceedingsReferenceSchema>;
229
+ export declare const RelaxedDatasetReferenceSchema: Type.TIntersect<[Type.TObject<{
230
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
231
+ }>, Type.TObject<{
232
+ type: Type.TLiteral<"Dataset">;
233
+ title: Type.TString;
234
+ year: Type.TString;
235
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
236
+ givenNames: Type.TString;
237
+ familyName: Type.TString;
238
+ suffix: Type.TOptional<Type.TString>;
239
+ }>>>;
240
+ repository: Type.TString;
241
+ version: Type.TOptional<Type.TString>;
242
+ doi: Type.TOptional<Type.TString>;
243
+ url: Type.TString;
244
+ }>]>;
245
+ export type TRelaxedDatasetReference = Static<typeof RelaxedDatasetReferenceSchema>;
246
+ export declare const RelaxedSoftwareReferenceSchema: Type.TIntersect<[Type.TObject<{
247
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
248
+ }>, Type.TObject<{
249
+ type: Type.TLiteral<"Software">;
250
+ title: Type.TString;
251
+ year: Type.TString;
252
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
253
+ givenNames: Type.TString;
254
+ familyName: Type.TString;
255
+ suffix: Type.TOptional<Type.TString>;
256
+ }>>>;
257
+ version: Type.TOptional<Type.TString>;
258
+ publisher: Type.TOptional<Type.TString>;
259
+ doi: Type.TOptional<Type.TString>;
260
+ url: Type.TString;
261
+ }>]>;
262
+ export type TRelaxedSoftwareReference = Static<typeof RelaxedSoftwareReferenceSchema>;
263
+ export declare const RelaxedOnlineDocumentReferenceSchema: Type.TIntersect<[Type.TObject<{
264
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
265
+ }>, Type.TObject<{
266
+ type: Type.TLiteral<"OnlineDocument">;
267
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
268
+ givenNames: Type.TString;
269
+ familyName: Type.TString;
270
+ suffix: Type.TOptional<Type.TString>;
271
+ }>>>;
272
+ title: Type.TString;
273
+ publisher: Type.TOptional<Type.TString>;
274
+ url: Type.TString;
275
+ accessedDate: import("../../index.js").TDateType;
276
+ }>]>;
277
+ export type TRelaxedOnlineDocumentReference = Static<typeof RelaxedOnlineDocumentReferenceSchema>;
278
+ export declare const RelaxedBlogReferenceSchema: Type.TIntersect<[Type.TObject<{
279
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
280
+ }>, Type.TObject<{
281
+ type: Type.TLiteral<"Blog">;
282
+ author: Type.TObject<{
283
+ givenNames: Type.TString;
284
+ familyName: Type.TString;
285
+ suffix: Type.TOptional<Type.TString>;
286
+ }>;
287
+ postTitle: Type.TString;
288
+ blogName: Type.TString;
289
+ date: import("../../index.js").TDateType;
290
+ url: Type.TString;
291
+ accessedDate: import("../../index.js").TDateType;
292
+ }>]>;
293
+ export type TRelaxedBlogReference = Static<typeof RelaxedBlogReferenceSchema>;
294
+ export declare const RelaxedSocialMediaReferenceSchema: Type.TIntersect<[Type.TObject<{
295
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
296
+ }>, Type.TObject<{
297
+ type: Type.TLiteral<"SocialMedia">;
298
+ author: Type.TObject<{
299
+ givenNames: Type.TString;
300
+ familyName: Type.TString;
301
+ suffix: Type.TOptional<Type.TString>;
302
+ }>;
303
+ platform: Type.TString;
304
+ postDate: import("../../index.js").TDateType;
305
+ url: Type.TString;
306
+ }>]>;
307
+ export type TRelaxedSocialMediaReference = Static<typeof RelaxedSocialMediaReferenceSchema>;
308
+ export declare const RelaxedPreprintReferenceSchema: Type.TIntersect<[Type.TObject<{
309
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
310
+ }>, Type.TObject<{
311
+ type: Type.TLiteral<"Preprint">;
312
+ title: Type.TString;
313
+ year: Type.TString;
314
+ authors: Type.TArray<Type.TObject<{
315
+ givenNames: Type.TString;
316
+ familyName: Type.TString;
317
+ suffix: Type.TOptional<Type.TString>;
318
+ }>>;
319
+ server: Type.TString;
320
+ doi: Type.TOptional<Type.TString>;
321
+ url: Type.TString;
322
+ }>]>;
323
+ export type TRelaxedPreprintReference = Static<typeof RelaxedPreprintReferenceSchema>;
324
+ export declare const RelaxedVideoReferenceSchema: Type.TIntersect<[Type.TObject<{
325
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
326
+ }>, Type.TObject<{
327
+ type: Type.TLiteral<"Video">;
328
+ title: Type.TString;
329
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
330
+ givenNames: Type.TString;
331
+ familyName: Type.TString;
332
+ suffix: Type.TOptional<Type.TString>;
333
+ }>>>;
334
+ releaseDate: Type.TOptional<import("../../index.js").TDateType>;
335
+ platform: Type.TString;
336
+ url: Type.TString;
337
+ accessedDate: import("../../index.js").TDateType;
338
+ }>]>;
339
+ export type TRelaxedVideoReference = Static<typeof RelaxedVideoReferenceSchema>;
340
+ export declare const RelaxedPodcastReferenceSchema: Type.TIntersect<[Type.TObject<{
341
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
342
+ }>, Type.TObject<{
343
+ type: Type.TLiteral<"Podcast">;
344
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
345
+ givenNames: Type.TString;
346
+ familyName: Type.TString;
347
+ suffix: Type.TOptional<Type.TString>;
348
+ }>>>;
349
+ episodeTitle: Type.TString;
350
+ seriesTitle: Type.TString;
351
+ platform: Type.TString;
352
+ url: Type.TString;
353
+ accessedDate: import("../../index.js").TDateType;
354
+ }>]>;
355
+ export type TRelaxedPodcastReference = Static<typeof RelaxedPodcastReferenceSchema>;
356
+ export declare const RelaxedCourseReferenceSchema: Type.TIntersect<[Type.TObject<{
357
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
358
+ }>, Type.TObject<{
359
+ type: Type.TLiteral<"Course">;
360
+ title: Type.TString;
361
+ year: Type.TString;
362
+ instructor: Type.TObject<{
363
+ givenNames: Type.TString;
364
+ familyName: Type.TString;
365
+ suffix: Type.TOptional<Type.TString>;
366
+ }>;
367
+ institution: Type.TString;
368
+ courseCode: Type.TOptional<Type.TString>;
369
+ term: Type.TString;
370
+ }>]>;
371
+ export type TRelaxedCourseReference = Static<typeof RelaxedCourseReferenceSchema>;
372
+ export declare const RelaxedPresentationReferenceSchema: Type.TIntersect<[Type.TObject<{
373
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
374
+ }>, Type.TObject<{
375
+ type: Type.TLiteral<"Presentation">;
376
+ title: Type.TString;
377
+ presenter: Type.TObject<{
378
+ givenNames: Type.TString;
379
+ familyName: Type.TString;
380
+ suffix: Type.TOptional<Type.TString>;
381
+ }>;
382
+ eventTitle: Type.TString;
383
+ location: Type.TString;
384
+ date: import("../../index.js").TDateType;
385
+ }>]>;
386
+ export type TRelaxedPresentationReference = Static<typeof RelaxedPresentationReferenceSchema>;
387
+ export declare const RelaxedInterviewReferenceSchema: Type.TIntersect<[Type.TObject<{
388
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
389
+ }>, Type.TObject<{
390
+ type: Type.TLiteral<"Interview">;
391
+ interviewee: Type.TObject<{
392
+ givenNames: Type.TString;
393
+ familyName: Type.TString;
394
+ suffix: Type.TOptional<Type.TString>;
395
+ }>;
396
+ interviewer: Type.TOptional<Type.TObject<{
397
+ givenNames: Type.TString;
398
+ familyName: Type.TString;
399
+ suffix: Type.TOptional<Type.TString>;
400
+ }>>;
401
+ date: import("../../index.js").TDateType;
402
+ }>]>;
403
+ export type TRelaxedInterviewReference = Static<typeof RelaxedInterviewReferenceSchema>;
404
+ export declare const RelaxedPersonalCommunicationReferenceSchema: Type.TIntersect<[Type.TObject<{
405
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
406
+ }>, Type.TObject<{
407
+ type: Type.TLiteral<"PersonalCommunication">;
408
+ person: Type.TObject<{
409
+ givenNames: Type.TString;
410
+ familyName: Type.TString;
411
+ suffix: Type.TOptional<Type.TString>;
412
+ }>;
413
+ date: import("../../index.js").TDateType;
414
+ }>]>;
415
+ export type TRelaxedPersonalCommunicationReference = Static<typeof RelaxedPersonalCommunicationReferenceSchema>;
416
+ export declare const RelaxedEmailReferenceSchema: Type.TIntersect<[Type.TObject<{
417
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
418
+ }>, Type.TObject<{
419
+ type: Type.TLiteral<"Email">;
420
+ sender: Type.TObject<{
421
+ givenNames: Type.TString;
422
+ familyName: Type.TString;
423
+ suffix: Type.TOptional<Type.TString>;
424
+ }>;
425
+ recipient: Type.TObject<{
426
+ givenNames: Type.TString;
427
+ familyName: Type.TString;
428
+ suffix: Type.TOptional<Type.TString>;
429
+ }>;
430
+ date: import("../../index.js").TDateType;
431
+ }>]>;
432
+ export type TRelaxedEmailReference = Static<typeof RelaxedEmailReferenceSchema>;
433
+ export declare const RelaxedLawReferenceSchema: Type.TIntersect<[Type.TObject<{
434
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
435
+ }>, Type.TObject<{
436
+ type: Type.TLiteral<"Law">;
437
+ title: Type.TString;
438
+ jurisdiction: Type.TString;
439
+ dateEnacted: import("../../index.js").TDateType;
440
+ }>]>;
441
+ export type TRelaxedLawReference = Static<typeof RelaxedLawReferenceSchema>;
442
+ export declare const RelaxedCourtCaseReferenceSchema: Type.TIntersect<[Type.TObject<{
443
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
444
+ }>, Type.TObject<{
445
+ type: Type.TLiteral<"CourtCase">;
446
+ caseName: Type.TString;
447
+ court: Type.TString;
448
+ date: import("../../index.js").TDateType;
449
+ reporter: Type.TOptional<Type.TString>;
450
+ }>]>;
451
+ export type TRelaxedCourtCaseReference = Static<typeof RelaxedCourtCaseReferenceSchema>;
452
+ export declare const RelaxedGovernmentPublicationReferenceSchema: Type.TIntersect<[Type.TObject<{
453
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
454
+ }>, Type.TObject<{
455
+ type: Type.TLiteral<"GovernmentPublication">;
456
+ title: Type.TString;
457
+ date: import("../../index.js").TDateType;
458
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
459
+ givenNames: Type.TString;
460
+ familyName: Type.TString;
461
+ suffix: Type.TOptional<Type.TString>;
462
+ }>>>;
463
+ agency: Type.TString;
464
+ reportNumber: Type.TOptional<Type.TString>;
465
+ location: Type.TString;
466
+ }>]>;
467
+ export type TRelaxedGovernmentPublicationReference = Static<typeof RelaxedGovernmentPublicationReferenceSchema>;
468
+ export declare const RelaxedDatasheetReferenceSchema: Type.TIntersect<[Type.TObject<{
469
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
470
+ }>, Type.TObject<{
471
+ type: Type.TLiteral<"Datasheet">;
472
+ title: Type.TString;
473
+ year: Type.TString;
474
+ manufacturer: Type.TString;
475
+ partNumber: Type.TString;
476
+ url: Type.TString;
477
+ }>]>;
478
+ export type TRelaxedDatasheetReference = Static<typeof RelaxedDatasheetReferenceSchema>;
479
+ export declare const RelaxedProductManualReferenceSchema: Type.TIntersect<[Type.TObject<{
480
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
481
+ }>, Type.TObject<{
482
+ type: Type.TLiteral<"ProductManual">;
483
+ title: Type.TString;
484
+ year: Type.TString;
485
+ manufacturer: Type.TString;
486
+ model: Type.TString;
487
+ url: Type.TOptional<Type.TString>;
488
+ }>]>;
489
+ export type TRelaxedProductManualReference = Static<typeof RelaxedProductManualReferenceSchema>;
490
+ export declare const IEEEReferenceSchemaRelaxed: Type.TUnion<[Type.TIntersect<[Type.TObject<{
491
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
492
+ }>, Type.TObject<{
493
+ type: Type.TLiteral<"Book">;
494
+ title: Type.TString;
495
+ year: Type.TString;
496
+ authors: Type.TArray<Type.TObject<{
497
+ givenNames: Type.TString;
498
+ familyName: Type.TString;
499
+ suffix: Type.TOptional<Type.TString>;
500
+ }>>;
501
+ edition: Type.TOptional<Type.TString>;
502
+ publisher: Type.TString;
503
+ location: Type.TOptional<Type.TString>;
504
+ isbn: Type.TOptional<Type.TString>;
505
+ }>]>, Type.TIntersect<[Type.TObject<{
506
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
507
+ }>, Type.TObject<{
508
+ type: Type.TLiteral<"Website">;
509
+ authors: Type.TArray<Type.TObject<{
510
+ givenNames: Type.TString;
511
+ familyName: Type.TString;
512
+ suffix: Type.TOptional<Type.TString>;
513
+ }>>;
514
+ pageTitle: Type.TString;
515
+ websiteTitle: Type.TString;
516
+ accessedDate: import("../../index.js").TDateType;
517
+ url: Type.TString;
518
+ }>]>, Type.TIntersect<[Type.TObject<{
519
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
520
+ }>, Type.TObject<{
521
+ type: Type.TLiteral<"BookChapter">;
522
+ chapterTitle: Type.TString;
523
+ year: Type.TString;
524
+ authors: Type.TArray<Type.TObject<{
525
+ givenNames: Type.TString;
526
+ familyName: Type.TString;
527
+ suffix: Type.TOptional<Type.TString>;
528
+ }>>;
529
+ bookTitle: Type.TString;
530
+ editors: Type.TOptional<Type.TArray<Type.TObject<{
531
+ givenNames: Type.TString;
532
+ familyName: Type.TString;
533
+ suffix: Type.TOptional<Type.TString>;
534
+ }>>>;
535
+ publisher: Type.TString;
536
+ location: Type.TString;
537
+ pages: Type.TOptional<Type.TString>;
538
+ isbn: Type.TOptional<Type.TString>;
539
+ }>]>, Type.TIntersect<[Type.TObject<{
540
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
541
+ }>, Type.TObject<{
542
+ type: Type.TLiteral<"Handbook">;
543
+ title: Type.TString;
544
+ year: Type.TString;
545
+ publisher: Type.TString;
546
+ edition: Type.TOptional<Type.TString>;
547
+ location: Type.TString;
548
+ isbn: Type.TOptional<Type.TString>;
549
+ }>]>, Type.TIntersect<[Type.TObject<{
550
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
551
+ }>, Type.TObject<{
552
+ type: Type.TLiteral<"TechnicalReport">;
553
+ title: Type.TString;
554
+ year: Type.TString;
555
+ authors: Type.TArray<Type.TObject<{
556
+ givenNames: Type.TString;
557
+ familyName: Type.TString;
558
+ suffix: Type.TOptional<Type.TString>;
559
+ }>>;
560
+ reportNumber: Type.TString;
561
+ institution: Type.TString;
562
+ location: Type.TString;
563
+ }>]>, Type.TIntersect<[Type.TObject<{
564
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
565
+ }>, Type.TObject<{
566
+ type: Type.TLiteral<"Standard">;
567
+ organization: Type.TString;
568
+ standardNumber: Type.TString;
569
+ title: Type.TString;
570
+ date: import("../../index.js").TDateType;
571
+ }>]>, Type.TIntersect<[Type.TObject<{
572
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
573
+ }>, Type.TObject<{
574
+ type: Type.TLiteral<"Thesis">;
575
+ title: Type.TString;
576
+ year: Type.TString;
577
+ authors: Type.TArray<Type.TObject<{
578
+ givenNames: Type.TString;
579
+ familyName: Type.TString;
580
+ suffix: Type.TOptional<Type.TString>;
581
+ }>>;
582
+ degree: Type.TString;
583
+ institution: Type.TString;
584
+ location: Type.TString;
585
+ }>]>, Type.TIntersect<[Type.TObject<{
586
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
587
+ }>, Type.TObject<{
588
+ type: Type.TLiteral<"Patent">;
589
+ title: Type.TString;
590
+ inventors: Type.TArray<Type.TObject<{
591
+ givenNames: Type.TString;
592
+ familyName: Type.TString;
593
+ suffix: Type.TOptional<Type.TString>;
594
+ }>>;
595
+ country: Type.TString;
596
+ patentNumber: Type.TString;
597
+ date: import("../../index.js").TDateType;
598
+ }>]>, Type.TIntersect<[Type.TObject<{
599
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
600
+ }>, Type.TObject<{
601
+ type: Type.TLiteral<"Dictionary">;
602
+ title: Type.TString;
603
+ year: Type.TString;
604
+ publisher: Type.TString;
605
+ edition: Type.TOptional<Type.TString>;
606
+ }>]>, Type.TIntersect<[Type.TObject<{
607
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
608
+ }>, Type.TObject<{
609
+ type: Type.TLiteral<"Encyclopedia">;
610
+ title: Type.TString;
611
+ year: Type.TString;
612
+ publisher: Type.TString;
613
+ edition: Type.TOptional<Type.TString>;
614
+ }>]>, Type.TIntersect<[Type.TObject<{
615
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
616
+ }>, Type.TObject<{
617
+ type: Type.TLiteral<"JournalArticle">;
618
+ title: Type.TString;
619
+ year: Type.TString;
620
+ authors: Type.TArray<Type.TObject<{
621
+ givenNames: Type.TString;
622
+ familyName: Type.TString;
623
+ suffix: Type.TOptional<Type.TString>;
624
+ }>>;
625
+ journalTitle: Type.TString;
626
+ volume: Type.TOptional<Type.TString>;
627
+ issue: Type.TOptional<Type.TString>;
628
+ pages: Type.TOptional<Type.TString>;
629
+ doi: Type.TOptional<Type.TString>;
630
+ }>]>, Type.TIntersect<[Type.TObject<{
631
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
632
+ }>, Type.TObject<{
633
+ type: Type.TLiteral<"MagazineArticle">;
634
+ title: Type.TString;
635
+ year: Type.TString;
636
+ authors: Type.TArray<Type.TObject<{
637
+ givenNames: Type.TString;
638
+ familyName: Type.TString;
639
+ suffix: Type.TOptional<Type.TString>;
640
+ }>>;
641
+ magazineTitle: Type.TString;
642
+ volume: Type.TOptional<Type.TString>;
643
+ issue: Type.TOptional<Type.TString>;
644
+ pages: Type.TOptional<Type.TString>;
645
+ }>]>, Type.TIntersect<[Type.TObject<{
646
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
647
+ }>, Type.TObject<{
648
+ type: Type.TLiteral<"NewspaperArticle">;
649
+ title: Type.TString;
650
+ authors: Type.TArray<Type.TObject<{
651
+ givenNames: Type.TString;
652
+ familyName: Type.TString;
653
+ suffix: Type.TOptional<Type.TString>;
654
+ }>>;
655
+ newspaperTitle: Type.TString;
656
+ date: import("../../index.js").TDateType;
657
+ pages: Type.TOptional<Type.TString>;
658
+ }>]>, Type.TIntersect<[Type.TObject<{
659
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
660
+ }>, Type.TObject<{
661
+ type: Type.TLiteral<"ConferencePaper">;
662
+ title: Type.TString;
663
+ authors: Type.TArray<Type.TObject<{
664
+ givenNames: Type.TString;
665
+ familyName: Type.TString;
666
+ suffix: Type.TOptional<Type.TString>;
667
+ }>>;
668
+ conferenceName: Type.TString;
669
+ location: Type.TString;
670
+ date: import("../../index.js").TDateType;
671
+ pages: Type.TOptional<Type.TString>;
672
+ doi: Type.TOptional<Type.TString>;
673
+ }>]>, Type.TIntersect<[Type.TObject<{
674
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
675
+ }>, Type.TObject<{
676
+ type: Type.TLiteral<"ConferenceProceedings">;
677
+ editors: Type.TOptional<Type.TArray<Type.TObject<{
678
+ givenNames: Type.TString;
679
+ familyName: Type.TString;
680
+ suffix: Type.TOptional<Type.TString>;
681
+ }>>>;
682
+ conferenceName: Type.TString;
683
+ location: Type.TString;
684
+ date: import("../../index.js").TDateType;
685
+ publisher: Type.TString;
686
+ isbn: Type.TOptional<Type.TString>;
687
+ }>]>, Type.TIntersect<[Type.TObject<{
688
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
689
+ }>, Type.TObject<{
690
+ type: Type.TLiteral<"Dataset">;
691
+ title: Type.TString;
692
+ year: Type.TString;
693
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
694
+ givenNames: Type.TString;
695
+ familyName: Type.TString;
696
+ suffix: Type.TOptional<Type.TString>;
697
+ }>>>;
698
+ repository: Type.TString;
699
+ version: Type.TOptional<Type.TString>;
700
+ doi: Type.TOptional<Type.TString>;
701
+ url: Type.TString;
702
+ }>]>, Type.TIntersect<[Type.TObject<{
703
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
704
+ }>, Type.TObject<{
705
+ type: Type.TLiteral<"Software">;
706
+ title: Type.TString;
707
+ year: Type.TString;
708
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
709
+ givenNames: Type.TString;
710
+ familyName: Type.TString;
711
+ suffix: Type.TOptional<Type.TString>;
712
+ }>>>;
713
+ version: Type.TOptional<Type.TString>;
714
+ publisher: Type.TOptional<Type.TString>;
715
+ doi: Type.TOptional<Type.TString>;
716
+ url: Type.TString;
717
+ }>]>, Type.TIntersect<[Type.TObject<{
718
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
719
+ }>, Type.TObject<{
720
+ type: Type.TLiteral<"OnlineDocument">;
721
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
722
+ givenNames: Type.TString;
723
+ familyName: Type.TString;
724
+ suffix: Type.TOptional<Type.TString>;
725
+ }>>>;
726
+ title: Type.TString;
727
+ publisher: Type.TOptional<Type.TString>;
728
+ url: Type.TString;
729
+ accessedDate: import("../../index.js").TDateType;
730
+ }>]>, Type.TIntersect<[Type.TObject<{
731
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
732
+ }>, Type.TObject<{
733
+ type: Type.TLiteral<"Blog">;
734
+ author: Type.TObject<{
735
+ givenNames: Type.TString;
736
+ familyName: Type.TString;
737
+ suffix: Type.TOptional<Type.TString>;
738
+ }>;
739
+ postTitle: Type.TString;
740
+ blogName: Type.TString;
741
+ date: import("../../index.js").TDateType;
742
+ url: Type.TString;
743
+ accessedDate: import("../../index.js").TDateType;
744
+ }>]>, Type.TIntersect<[Type.TObject<{
745
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
746
+ }>, Type.TObject<{
747
+ type: Type.TLiteral<"SocialMedia">;
748
+ author: Type.TObject<{
749
+ givenNames: Type.TString;
750
+ familyName: Type.TString;
751
+ suffix: Type.TOptional<Type.TString>;
752
+ }>;
753
+ platform: Type.TString;
754
+ postDate: import("../../index.js").TDateType;
755
+ url: Type.TString;
756
+ }>]>, Type.TIntersect<[Type.TObject<{
757
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
758
+ }>, Type.TObject<{
759
+ type: Type.TLiteral<"Preprint">;
760
+ title: Type.TString;
761
+ year: Type.TString;
762
+ authors: Type.TArray<Type.TObject<{
763
+ givenNames: Type.TString;
764
+ familyName: Type.TString;
765
+ suffix: Type.TOptional<Type.TString>;
766
+ }>>;
767
+ server: Type.TString;
768
+ doi: Type.TOptional<Type.TString>;
769
+ url: Type.TString;
770
+ }>]>, Type.TIntersect<[Type.TObject<{
771
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
772
+ }>, Type.TObject<{
773
+ type: Type.TLiteral<"Video">;
774
+ title: Type.TString;
775
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
776
+ givenNames: Type.TString;
777
+ familyName: Type.TString;
778
+ suffix: Type.TOptional<Type.TString>;
779
+ }>>>;
780
+ releaseDate: Type.TOptional<import("../../index.js").TDateType>;
781
+ platform: Type.TString;
782
+ url: Type.TString;
783
+ accessedDate: import("../../index.js").TDateType;
784
+ }>]>, Type.TIntersect<[Type.TObject<{
785
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
786
+ }>, Type.TObject<{
787
+ type: Type.TLiteral<"Podcast">;
788
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
789
+ givenNames: Type.TString;
790
+ familyName: Type.TString;
791
+ suffix: Type.TOptional<Type.TString>;
792
+ }>>>;
793
+ episodeTitle: Type.TString;
794
+ seriesTitle: Type.TString;
795
+ platform: Type.TString;
796
+ url: Type.TString;
797
+ accessedDate: import("../../index.js").TDateType;
798
+ }>]>, Type.TIntersect<[Type.TObject<{
799
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
800
+ }>, Type.TObject<{
801
+ type: Type.TLiteral<"Course">;
802
+ title: Type.TString;
803
+ year: Type.TString;
804
+ instructor: Type.TObject<{
805
+ givenNames: Type.TString;
806
+ familyName: Type.TString;
807
+ suffix: Type.TOptional<Type.TString>;
808
+ }>;
809
+ institution: Type.TString;
810
+ courseCode: Type.TOptional<Type.TString>;
811
+ term: Type.TString;
812
+ }>]>, Type.TIntersect<[Type.TObject<{
813
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
814
+ }>, Type.TObject<{
815
+ type: Type.TLiteral<"Presentation">;
816
+ title: Type.TString;
817
+ presenter: Type.TObject<{
818
+ givenNames: Type.TString;
819
+ familyName: Type.TString;
820
+ suffix: Type.TOptional<Type.TString>;
821
+ }>;
822
+ eventTitle: Type.TString;
823
+ location: Type.TString;
824
+ date: import("../../index.js").TDateType;
825
+ }>]>, Type.TIntersect<[Type.TObject<{
826
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
827
+ }>, Type.TObject<{
828
+ type: Type.TLiteral<"Interview">;
829
+ interviewee: Type.TObject<{
830
+ givenNames: Type.TString;
831
+ familyName: Type.TString;
832
+ suffix: Type.TOptional<Type.TString>;
833
+ }>;
834
+ interviewer: Type.TOptional<Type.TObject<{
835
+ givenNames: Type.TString;
836
+ familyName: Type.TString;
837
+ suffix: Type.TOptional<Type.TString>;
838
+ }>>;
839
+ date: import("../../index.js").TDateType;
840
+ }>]>, Type.TIntersect<[Type.TObject<{
841
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
842
+ }>, Type.TObject<{
843
+ type: Type.TLiteral<"PersonalCommunication">;
844
+ person: Type.TObject<{
845
+ givenNames: Type.TString;
846
+ familyName: Type.TString;
847
+ suffix: Type.TOptional<Type.TString>;
848
+ }>;
849
+ date: import("../../index.js").TDateType;
850
+ }>]>, Type.TIntersect<[Type.TObject<{
851
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
852
+ }>, Type.TObject<{
853
+ type: Type.TLiteral<"Email">;
854
+ sender: Type.TObject<{
855
+ givenNames: Type.TString;
856
+ familyName: Type.TString;
857
+ suffix: Type.TOptional<Type.TString>;
858
+ }>;
859
+ recipient: Type.TObject<{
860
+ givenNames: Type.TString;
861
+ familyName: Type.TString;
862
+ suffix: Type.TOptional<Type.TString>;
863
+ }>;
864
+ date: import("../../index.js").TDateType;
865
+ }>]>, Type.TIntersect<[Type.TObject<{
866
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
867
+ }>, Type.TObject<{
868
+ type: Type.TLiteral<"Law">;
869
+ title: Type.TString;
870
+ jurisdiction: Type.TString;
871
+ dateEnacted: import("../../index.js").TDateType;
872
+ }>]>, Type.TIntersect<[Type.TObject<{
873
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
874
+ }>, Type.TObject<{
875
+ type: Type.TLiteral<"CourtCase">;
876
+ caseName: Type.TString;
877
+ court: Type.TString;
878
+ date: import("../../index.js").TDateType;
879
+ reporter: Type.TOptional<Type.TString>;
880
+ }>]>, Type.TIntersect<[Type.TObject<{
881
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
882
+ }>, Type.TObject<{
883
+ type: Type.TLiteral<"GovernmentPublication">;
884
+ title: Type.TString;
885
+ date: import("../../index.js").TDateType;
886
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
887
+ givenNames: Type.TString;
888
+ familyName: Type.TString;
889
+ suffix: Type.TOptional<Type.TString>;
890
+ }>>>;
891
+ agency: Type.TString;
892
+ reportNumber: Type.TOptional<Type.TString>;
893
+ location: Type.TString;
894
+ }>]>, Type.TIntersect<[Type.TObject<{
895
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
896
+ }>, Type.TObject<{
897
+ type: Type.TLiteral<"Datasheet">;
898
+ title: Type.TString;
899
+ year: Type.TString;
900
+ manufacturer: Type.TString;
901
+ partNumber: Type.TString;
902
+ url: Type.TString;
903
+ }>]>, Type.TIntersect<[Type.TObject<{
904
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
905
+ }>, Type.TObject<{
906
+ type: Type.TLiteral<"ProductManual">;
907
+ title: Type.TString;
908
+ year: Type.TString;
909
+ manufacturer: Type.TString;
910
+ model: Type.TString;
911
+ url: Type.TOptional<Type.TString>;
912
+ }>]>]>;
913
+ export type TRelaxedIEEEReference = Static<typeof IEEEReferenceSchemaRelaxed>;
914
+ export declare const IEEEReferenceSchemaMapRelaxed: {
915
+ readonly Book: Type.TIntersect<[Type.TObject<{
916
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
917
+ }>, Type.TObject<{
918
+ type: Type.TLiteral<"Book">;
919
+ title: Type.TString;
920
+ year: Type.TString;
921
+ authors: Type.TArray<Type.TObject<{
922
+ givenNames: Type.TString;
923
+ familyName: Type.TString;
924
+ suffix: Type.TOptional<Type.TString>;
925
+ }>>;
926
+ edition: Type.TOptional<Type.TString>;
927
+ publisher: Type.TString;
928
+ location: Type.TOptional<Type.TString>;
929
+ isbn: Type.TOptional<Type.TString>;
930
+ }>]>;
931
+ readonly Website: Type.TIntersect<[Type.TObject<{
932
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
933
+ }>, Type.TObject<{
934
+ type: Type.TLiteral<"Website">;
935
+ authors: Type.TArray<Type.TObject<{
936
+ givenNames: Type.TString;
937
+ familyName: Type.TString;
938
+ suffix: Type.TOptional<Type.TString>;
939
+ }>>;
940
+ pageTitle: Type.TString;
941
+ websiteTitle: Type.TString;
942
+ accessedDate: import("../../index.js").TDateType;
943
+ url: Type.TString;
944
+ }>]>;
945
+ readonly BookChapter: Type.TIntersect<[Type.TObject<{
946
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
947
+ }>, Type.TObject<{
948
+ type: Type.TLiteral<"BookChapter">;
949
+ chapterTitle: Type.TString;
950
+ year: Type.TString;
951
+ authors: Type.TArray<Type.TObject<{
952
+ givenNames: Type.TString;
953
+ familyName: Type.TString;
954
+ suffix: Type.TOptional<Type.TString>;
955
+ }>>;
956
+ bookTitle: Type.TString;
957
+ editors: Type.TOptional<Type.TArray<Type.TObject<{
958
+ givenNames: Type.TString;
959
+ familyName: Type.TString;
960
+ suffix: Type.TOptional<Type.TString>;
961
+ }>>>;
962
+ publisher: Type.TString;
963
+ location: Type.TString;
964
+ pages: Type.TOptional<Type.TString>;
965
+ isbn: Type.TOptional<Type.TString>;
966
+ }>]>;
967
+ readonly Handbook: Type.TIntersect<[Type.TObject<{
968
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
969
+ }>, Type.TObject<{
970
+ type: Type.TLiteral<"Handbook">;
971
+ title: Type.TString;
972
+ year: Type.TString;
973
+ publisher: Type.TString;
974
+ edition: Type.TOptional<Type.TString>;
975
+ location: Type.TString;
976
+ isbn: Type.TOptional<Type.TString>;
977
+ }>]>;
978
+ readonly TechnicalReport: Type.TIntersect<[Type.TObject<{
979
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
980
+ }>, Type.TObject<{
981
+ type: Type.TLiteral<"TechnicalReport">;
982
+ title: Type.TString;
983
+ year: Type.TString;
984
+ authors: Type.TArray<Type.TObject<{
985
+ givenNames: Type.TString;
986
+ familyName: Type.TString;
987
+ suffix: Type.TOptional<Type.TString>;
988
+ }>>;
989
+ reportNumber: Type.TString;
990
+ institution: Type.TString;
991
+ location: Type.TString;
992
+ }>]>;
993
+ readonly Standard: Type.TIntersect<[Type.TObject<{
994
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
995
+ }>, Type.TObject<{
996
+ type: Type.TLiteral<"Standard">;
997
+ organization: Type.TString;
998
+ standardNumber: Type.TString;
999
+ title: Type.TString;
1000
+ date: import("../../index.js").TDateType;
1001
+ }>]>;
1002
+ readonly Thesis: Type.TIntersect<[Type.TObject<{
1003
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1004
+ }>, Type.TObject<{
1005
+ type: Type.TLiteral<"Thesis">;
1006
+ title: Type.TString;
1007
+ year: Type.TString;
1008
+ authors: Type.TArray<Type.TObject<{
1009
+ givenNames: Type.TString;
1010
+ familyName: Type.TString;
1011
+ suffix: Type.TOptional<Type.TString>;
1012
+ }>>;
1013
+ degree: Type.TString;
1014
+ institution: Type.TString;
1015
+ location: Type.TString;
1016
+ }>]>;
1017
+ readonly Patent: Type.TIntersect<[Type.TObject<{
1018
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1019
+ }>, Type.TObject<{
1020
+ type: Type.TLiteral<"Patent">;
1021
+ title: Type.TString;
1022
+ inventors: Type.TArray<Type.TObject<{
1023
+ givenNames: Type.TString;
1024
+ familyName: Type.TString;
1025
+ suffix: Type.TOptional<Type.TString>;
1026
+ }>>;
1027
+ country: Type.TString;
1028
+ patentNumber: Type.TString;
1029
+ date: import("../../index.js").TDateType;
1030
+ }>]>;
1031
+ readonly Dictionary: Type.TIntersect<[Type.TObject<{
1032
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1033
+ }>, Type.TObject<{
1034
+ type: Type.TLiteral<"Dictionary">;
1035
+ title: Type.TString;
1036
+ year: Type.TString;
1037
+ publisher: Type.TString;
1038
+ edition: Type.TOptional<Type.TString>;
1039
+ }>]>;
1040
+ readonly Encyclopedia: Type.TIntersect<[Type.TObject<{
1041
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1042
+ }>, Type.TObject<{
1043
+ type: Type.TLiteral<"Encyclopedia">;
1044
+ title: Type.TString;
1045
+ year: Type.TString;
1046
+ publisher: Type.TString;
1047
+ edition: Type.TOptional<Type.TString>;
1048
+ }>]>;
1049
+ readonly JournalArticle: Type.TIntersect<[Type.TObject<{
1050
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1051
+ }>, Type.TObject<{
1052
+ type: Type.TLiteral<"JournalArticle">;
1053
+ title: Type.TString;
1054
+ year: Type.TString;
1055
+ authors: Type.TArray<Type.TObject<{
1056
+ givenNames: Type.TString;
1057
+ familyName: Type.TString;
1058
+ suffix: Type.TOptional<Type.TString>;
1059
+ }>>;
1060
+ journalTitle: Type.TString;
1061
+ volume: Type.TOptional<Type.TString>;
1062
+ issue: Type.TOptional<Type.TString>;
1063
+ pages: Type.TOptional<Type.TString>;
1064
+ doi: Type.TOptional<Type.TString>;
1065
+ }>]>;
1066
+ readonly MagazineArticle: Type.TIntersect<[Type.TObject<{
1067
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1068
+ }>, Type.TObject<{
1069
+ type: Type.TLiteral<"MagazineArticle">;
1070
+ title: Type.TString;
1071
+ year: Type.TString;
1072
+ authors: Type.TArray<Type.TObject<{
1073
+ givenNames: Type.TString;
1074
+ familyName: Type.TString;
1075
+ suffix: Type.TOptional<Type.TString>;
1076
+ }>>;
1077
+ magazineTitle: Type.TString;
1078
+ volume: Type.TOptional<Type.TString>;
1079
+ issue: Type.TOptional<Type.TString>;
1080
+ pages: Type.TOptional<Type.TString>;
1081
+ }>]>;
1082
+ readonly NewspaperArticle: Type.TIntersect<[Type.TObject<{
1083
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1084
+ }>, Type.TObject<{
1085
+ type: Type.TLiteral<"NewspaperArticle">;
1086
+ title: Type.TString;
1087
+ authors: Type.TArray<Type.TObject<{
1088
+ givenNames: Type.TString;
1089
+ familyName: Type.TString;
1090
+ suffix: Type.TOptional<Type.TString>;
1091
+ }>>;
1092
+ newspaperTitle: Type.TString;
1093
+ date: import("../../index.js").TDateType;
1094
+ pages: Type.TOptional<Type.TString>;
1095
+ }>]>;
1096
+ readonly ConferencePaper: Type.TIntersect<[Type.TObject<{
1097
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1098
+ }>, Type.TObject<{
1099
+ type: Type.TLiteral<"ConferencePaper">;
1100
+ title: Type.TString;
1101
+ authors: Type.TArray<Type.TObject<{
1102
+ givenNames: Type.TString;
1103
+ familyName: Type.TString;
1104
+ suffix: Type.TOptional<Type.TString>;
1105
+ }>>;
1106
+ conferenceName: Type.TString;
1107
+ location: Type.TString;
1108
+ date: import("../../index.js").TDateType;
1109
+ pages: Type.TOptional<Type.TString>;
1110
+ doi: Type.TOptional<Type.TString>;
1111
+ }>]>;
1112
+ readonly ConferenceProceedings: Type.TIntersect<[Type.TObject<{
1113
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1114
+ }>, Type.TObject<{
1115
+ type: Type.TLiteral<"ConferenceProceedings">;
1116
+ editors: Type.TOptional<Type.TArray<Type.TObject<{
1117
+ givenNames: Type.TString;
1118
+ familyName: Type.TString;
1119
+ suffix: Type.TOptional<Type.TString>;
1120
+ }>>>;
1121
+ conferenceName: Type.TString;
1122
+ location: Type.TString;
1123
+ date: import("../../index.js").TDateType;
1124
+ publisher: Type.TString;
1125
+ isbn: Type.TOptional<Type.TString>;
1126
+ }>]>;
1127
+ readonly Dataset: Type.TIntersect<[Type.TObject<{
1128
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1129
+ }>, Type.TObject<{
1130
+ type: Type.TLiteral<"Dataset">;
1131
+ title: Type.TString;
1132
+ year: Type.TString;
1133
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
1134
+ givenNames: Type.TString;
1135
+ familyName: Type.TString;
1136
+ suffix: Type.TOptional<Type.TString>;
1137
+ }>>>;
1138
+ repository: Type.TString;
1139
+ version: Type.TOptional<Type.TString>;
1140
+ doi: Type.TOptional<Type.TString>;
1141
+ url: Type.TString;
1142
+ }>]>;
1143
+ readonly Software: Type.TIntersect<[Type.TObject<{
1144
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1145
+ }>, Type.TObject<{
1146
+ type: Type.TLiteral<"Software">;
1147
+ title: Type.TString;
1148
+ year: Type.TString;
1149
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
1150
+ givenNames: Type.TString;
1151
+ familyName: Type.TString;
1152
+ suffix: Type.TOptional<Type.TString>;
1153
+ }>>>;
1154
+ version: Type.TOptional<Type.TString>;
1155
+ publisher: Type.TOptional<Type.TString>;
1156
+ doi: Type.TOptional<Type.TString>;
1157
+ url: Type.TString;
1158
+ }>]>;
1159
+ readonly OnlineDocument: Type.TIntersect<[Type.TObject<{
1160
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1161
+ }>, Type.TObject<{
1162
+ type: Type.TLiteral<"OnlineDocument">;
1163
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
1164
+ givenNames: Type.TString;
1165
+ familyName: Type.TString;
1166
+ suffix: Type.TOptional<Type.TString>;
1167
+ }>>>;
1168
+ title: Type.TString;
1169
+ publisher: Type.TOptional<Type.TString>;
1170
+ url: Type.TString;
1171
+ accessedDate: import("../../index.js").TDateType;
1172
+ }>]>;
1173
+ readonly Blog: Type.TIntersect<[Type.TObject<{
1174
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1175
+ }>, Type.TObject<{
1176
+ type: Type.TLiteral<"Blog">;
1177
+ author: Type.TObject<{
1178
+ givenNames: Type.TString;
1179
+ familyName: Type.TString;
1180
+ suffix: Type.TOptional<Type.TString>;
1181
+ }>;
1182
+ postTitle: Type.TString;
1183
+ blogName: Type.TString;
1184
+ date: import("../../index.js").TDateType;
1185
+ url: Type.TString;
1186
+ accessedDate: import("../../index.js").TDateType;
1187
+ }>]>;
1188
+ readonly SocialMedia: Type.TIntersect<[Type.TObject<{
1189
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1190
+ }>, Type.TObject<{
1191
+ type: Type.TLiteral<"SocialMedia">;
1192
+ author: Type.TObject<{
1193
+ givenNames: Type.TString;
1194
+ familyName: Type.TString;
1195
+ suffix: Type.TOptional<Type.TString>;
1196
+ }>;
1197
+ platform: Type.TString;
1198
+ postDate: import("../../index.js").TDateType;
1199
+ url: Type.TString;
1200
+ }>]>;
1201
+ readonly Preprint: Type.TIntersect<[Type.TObject<{
1202
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1203
+ }>, Type.TObject<{
1204
+ type: Type.TLiteral<"Preprint">;
1205
+ title: Type.TString;
1206
+ year: Type.TString;
1207
+ authors: Type.TArray<Type.TObject<{
1208
+ givenNames: Type.TString;
1209
+ familyName: Type.TString;
1210
+ suffix: Type.TOptional<Type.TString>;
1211
+ }>>;
1212
+ server: Type.TString;
1213
+ doi: Type.TOptional<Type.TString>;
1214
+ url: Type.TString;
1215
+ }>]>;
1216
+ readonly Video: Type.TIntersect<[Type.TObject<{
1217
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1218
+ }>, Type.TObject<{
1219
+ type: Type.TLiteral<"Video">;
1220
+ title: Type.TString;
1221
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
1222
+ givenNames: Type.TString;
1223
+ familyName: Type.TString;
1224
+ suffix: Type.TOptional<Type.TString>;
1225
+ }>>>;
1226
+ releaseDate: Type.TOptional<import("../../index.js").TDateType>;
1227
+ platform: Type.TString;
1228
+ url: Type.TString;
1229
+ accessedDate: import("../../index.js").TDateType;
1230
+ }>]>;
1231
+ readonly Podcast: Type.TIntersect<[Type.TObject<{
1232
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1233
+ }>, Type.TObject<{
1234
+ type: Type.TLiteral<"Podcast">;
1235
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
1236
+ givenNames: Type.TString;
1237
+ familyName: Type.TString;
1238
+ suffix: Type.TOptional<Type.TString>;
1239
+ }>>>;
1240
+ episodeTitle: Type.TString;
1241
+ seriesTitle: Type.TString;
1242
+ platform: Type.TString;
1243
+ url: Type.TString;
1244
+ accessedDate: import("../../index.js").TDateType;
1245
+ }>]>;
1246
+ readonly Course: Type.TIntersect<[Type.TObject<{
1247
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1248
+ }>, Type.TObject<{
1249
+ type: Type.TLiteral<"Course">;
1250
+ title: Type.TString;
1251
+ year: Type.TString;
1252
+ instructor: Type.TObject<{
1253
+ givenNames: Type.TString;
1254
+ familyName: Type.TString;
1255
+ suffix: Type.TOptional<Type.TString>;
1256
+ }>;
1257
+ institution: Type.TString;
1258
+ courseCode: Type.TOptional<Type.TString>;
1259
+ term: Type.TString;
1260
+ }>]>;
1261
+ readonly Presentation: Type.TIntersect<[Type.TObject<{
1262
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1263
+ }>, Type.TObject<{
1264
+ type: Type.TLiteral<"Presentation">;
1265
+ title: Type.TString;
1266
+ presenter: Type.TObject<{
1267
+ givenNames: Type.TString;
1268
+ familyName: Type.TString;
1269
+ suffix: Type.TOptional<Type.TString>;
1270
+ }>;
1271
+ eventTitle: Type.TString;
1272
+ location: Type.TString;
1273
+ date: import("../../index.js").TDateType;
1274
+ }>]>;
1275
+ readonly Interview: Type.TIntersect<[Type.TObject<{
1276
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1277
+ }>, Type.TObject<{
1278
+ type: Type.TLiteral<"Interview">;
1279
+ interviewee: Type.TObject<{
1280
+ givenNames: Type.TString;
1281
+ familyName: Type.TString;
1282
+ suffix: Type.TOptional<Type.TString>;
1283
+ }>;
1284
+ interviewer: Type.TOptional<Type.TObject<{
1285
+ givenNames: Type.TString;
1286
+ familyName: Type.TString;
1287
+ suffix: Type.TOptional<Type.TString>;
1288
+ }>>;
1289
+ date: import("../../index.js").TDateType;
1290
+ }>]>;
1291
+ readonly PersonalCommunication: Type.TIntersect<[Type.TObject<{
1292
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1293
+ }>, Type.TObject<{
1294
+ type: Type.TLiteral<"PersonalCommunication">;
1295
+ person: Type.TObject<{
1296
+ givenNames: Type.TString;
1297
+ familyName: Type.TString;
1298
+ suffix: Type.TOptional<Type.TString>;
1299
+ }>;
1300
+ date: import("../../index.js").TDateType;
1301
+ }>]>;
1302
+ readonly Email: Type.TIntersect<[Type.TObject<{
1303
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1304
+ }>, Type.TObject<{
1305
+ type: Type.TLiteral<"Email">;
1306
+ sender: Type.TObject<{
1307
+ givenNames: Type.TString;
1308
+ familyName: Type.TString;
1309
+ suffix: Type.TOptional<Type.TString>;
1310
+ }>;
1311
+ recipient: Type.TObject<{
1312
+ givenNames: Type.TString;
1313
+ familyName: Type.TString;
1314
+ suffix: Type.TOptional<Type.TString>;
1315
+ }>;
1316
+ date: import("../../index.js").TDateType;
1317
+ }>]>;
1318
+ readonly Law: Type.TIntersect<[Type.TObject<{
1319
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1320
+ }>, Type.TObject<{
1321
+ type: Type.TLiteral<"Law">;
1322
+ title: Type.TString;
1323
+ jurisdiction: Type.TString;
1324
+ dateEnacted: import("../../index.js").TDateType;
1325
+ }>]>;
1326
+ readonly CourtCase: Type.TIntersect<[Type.TObject<{
1327
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1328
+ }>, Type.TObject<{
1329
+ type: Type.TLiteral<"CourtCase">;
1330
+ caseName: Type.TString;
1331
+ court: Type.TString;
1332
+ date: import("../../index.js").TDateType;
1333
+ reporter: Type.TOptional<Type.TString>;
1334
+ }>]>;
1335
+ readonly GovernmentPublication: Type.TIntersect<[Type.TObject<{
1336
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1337
+ }>, Type.TObject<{
1338
+ type: Type.TLiteral<"GovernmentPublication">;
1339
+ title: Type.TString;
1340
+ date: import("../../index.js").TDateType;
1341
+ authors: Type.TOptional<Type.TArray<Type.TObject<{
1342
+ givenNames: Type.TString;
1343
+ familyName: Type.TString;
1344
+ suffix: Type.TOptional<Type.TString>;
1345
+ }>>>;
1346
+ agency: Type.TString;
1347
+ reportNumber: Type.TOptional<Type.TString>;
1348
+ location: Type.TString;
1349
+ }>]>;
1350
+ readonly Datasheet: Type.TIntersect<[Type.TObject<{
1351
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1352
+ }>, Type.TObject<{
1353
+ type: Type.TLiteral<"Datasheet">;
1354
+ title: Type.TString;
1355
+ year: Type.TString;
1356
+ manufacturer: Type.TString;
1357
+ partNumber: Type.TString;
1358
+ url: Type.TString;
1359
+ }>]>;
1360
+ readonly ProductManual: Type.TIntersect<[Type.TObject<{
1361
+ type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
1362
+ }>, Type.TObject<{
1363
+ type: Type.TLiteral<"ProductManual">;
1364
+ title: Type.TString;
1365
+ year: Type.TString;
1366
+ manufacturer: Type.TString;
1367
+ model: Type.TString;
1368
+ url: Type.TOptional<Type.TString>;
1369
+ }>]>;
1370
+ };
1371
+ //# sourceMappingURL=relaxed.d.ts.map