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