@proposit/proposit-core 3.1.0 → 3.3.0
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 +4 -0
- package/dist/cli/schemata.d.ts +2 -2
- package/dist/cli/storage/variables.d.ts.map +1 -1
- package/dist/cli/storage/variables.js +3 -0
- package/dist/cli/storage/variables.js.map +1 -1
- package/dist/extensions/citations/ieee/citation-claim.d.ts +20 -20
- package/dist/extensions/citations/ieee/references.d.ts +60 -60
- package/dist/extensions/citations/ieee/relaxed.d.ts +60 -60
- package/dist/extensions/citations/ieee/relaxed.d.ts.map +1 -1
- package/dist/extensions/citations/ieee/relaxed.js +11 -1
- package/dist/extensions/citations/ieee/relaxed.js.map +1 -1
- package/dist/lib/core/evaluation/grading.d.ts +4 -3
- package/dist/lib/core/evaluation/grading.d.ts.map +1 -1
- package/dist/lib/core/evaluation/grading.js +9 -3
- package/dist/lib/core/evaluation/grading.js.map +1 -1
- package/dist/lib/parsing/argument-parser.d.ts.map +1 -1
- package/dist/lib/parsing/argument-parser.js +3 -0
- package/dist/lib/parsing/argument-parser.js.map +1 -1
- package/dist/lib/schemata/shared.d.ts +14 -14
- package/dist/lib/schemata/shared.d.ts.map +1 -1
- package/dist/lib/schemata/shared.js +29 -26
- package/dist/lib/schemata/shared.js.map +1 -1
- package/package.json +4 -3
|
@@ -36,7 +36,7 @@ export declare const WebsiteReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
36
36
|
}>>;
|
|
37
37
|
pageTitle: Type.TString;
|
|
38
38
|
websiteTitle: Type.TString;
|
|
39
|
-
accessedDate:
|
|
39
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
40
40
|
url: Type.TString;
|
|
41
41
|
}>]>;
|
|
42
42
|
export type TWebsiteReference = Static<typeof WebsiteReferenceSchema>;
|
|
@@ -98,7 +98,7 @@ export declare const StandardReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
98
98
|
organization: Type.TString;
|
|
99
99
|
standardNumber: Type.TString;
|
|
100
100
|
title: Type.TString;
|
|
101
|
-
date:
|
|
101
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
102
102
|
}>]>;
|
|
103
103
|
export type TStandardReference = Static<typeof StandardReferenceSchema>;
|
|
104
104
|
export declare const ThesisReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -129,7 +129,7 @@ export declare const PatentReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
129
129
|
}>>;
|
|
130
130
|
country: Type.TString;
|
|
131
131
|
patentNumber: Type.TString;
|
|
132
|
-
date:
|
|
132
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
133
133
|
}>]>;
|
|
134
134
|
export type TPatentReference = Static<typeof PatentReferenceSchema>;
|
|
135
135
|
export declare const DictionaryReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -198,7 +198,7 @@ export declare const NewspaperArticleReferenceSchema: Type.TIntersect<[Type.TObj
|
|
|
198
198
|
suffix: Type.TOptional<Type.TString>;
|
|
199
199
|
}>>;
|
|
200
200
|
newspaperTitle: Type.TString;
|
|
201
|
-
date:
|
|
201
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
202
202
|
pages: Type.TOptional<Type.TString>;
|
|
203
203
|
}>]>;
|
|
204
204
|
export type TNewspaperArticleReference = Static<typeof NewspaperArticleReferenceSchema>;
|
|
@@ -214,7 +214,7 @@ export declare const ConferencePaperReferenceSchema: Type.TIntersect<[Type.TObje
|
|
|
214
214
|
}>>;
|
|
215
215
|
conferenceName: Type.TString;
|
|
216
216
|
location: Type.TString;
|
|
217
|
-
date:
|
|
217
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
218
218
|
pages: Type.TOptional<Type.TString>;
|
|
219
219
|
doi: Type.TOptional<Type.TString>;
|
|
220
220
|
}>]>;
|
|
@@ -230,7 +230,7 @@ export declare const ConferenceProceedingsReferenceSchema: Type.TIntersect<[Type
|
|
|
230
230
|
}>>>;
|
|
231
231
|
conferenceName: Type.TString;
|
|
232
232
|
location: Type.TString;
|
|
233
|
-
date:
|
|
233
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
234
234
|
publisher: Type.TString;
|
|
235
235
|
isbn: Type.TOptional<Type.TString>;
|
|
236
236
|
}>]>;
|
|
@@ -281,7 +281,7 @@ export declare const OnlineDocumentReferenceSchema: Type.TIntersect<[Type.TObjec
|
|
|
281
281
|
title: Type.TString;
|
|
282
282
|
publisher: Type.TOptional<Type.TString>;
|
|
283
283
|
url: Type.TString;
|
|
284
|
-
accessedDate:
|
|
284
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
285
285
|
}>]>;
|
|
286
286
|
export type TOnlineDocumentReference = Static<typeof OnlineDocumentReferenceSchema>;
|
|
287
287
|
export declare const BlogReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -295,9 +295,9 @@ export declare const BlogReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
295
295
|
}>;
|
|
296
296
|
postTitle: Type.TString;
|
|
297
297
|
blogName: Type.TString;
|
|
298
|
-
date:
|
|
298
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
299
299
|
url: Type.TString;
|
|
300
|
-
accessedDate:
|
|
300
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
301
301
|
}>]>;
|
|
302
302
|
export type TBlogReference = Static<typeof BlogReferenceSchema>;
|
|
303
303
|
export declare const SocialMediaReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -310,7 +310,7 @@ export declare const SocialMediaReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
310
310
|
suffix: Type.TOptional<Type.TString>;
|
|
311
311
|
}>;
|
|
312
312
|
platform: Type.TString;
|
|
313
|
-
postDate:
|
|
313
|
+
postDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
314
314
|
url: Type.TString;
|
|
315
315
|
}>]>;
|
|
316
316
|
export type TSocialMediaReference = Static<typeof SocialMediaReferenceSchema>;
|
|
@@ -340,10 +340,10 @@ export declare const VideoReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
340
340
|
familyName: Type.TString;
|
|
341
341
|
suffix: Type.TOptional<Type.TString>;
|
|
342
342
|
}>>>;
|
|
343
|
-
releaseDate: Type.TOptional<
|
|
343
|
+
releaseDate: Type.TOptional<Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>>;
|
|
344
344
|
platform: Type.TString;
|
|
345
345
|
url: Type.TString;
|
|
346
|
-
accessedDate:
|
|
346
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
347
347
|
}>]>;
|
|
348
348
|
export type TVideoReference = Static<typeof VideoReferenceSchema>;
|
|
349
349
|
export declare const PodcastReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -359,7 +359,7 @@ export declare const PodcastReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
359
359
|
seriesTitle: Type.TString;
|
|
360
360
|
platform: Type.TString;
|
|
361
361
|
url: Type.TString;
|
|
362
|
-
accessedDate:
|
|
362
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
363
363
|
}>]>;
|
|
364
364
|
export type TPodcastReference = Static<typeof PodcastReferenceSchema>;
|
|
365
365
|
export declare const CourseReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -390,7 +390,7 @@ export declare const PresentationReferenceSchema: Type.TIntersect<[Type.TObject<
|
|
|
390
390
|
}>;
|
|
391
391
|
eventTitle: Type.TString;
|
|
392
392
|
location: Type.TString;
|
|
393
|
-
date:
|
|
393
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
394
394
|
}>]>;
|
|
395
395
|
export type TPresentationReference = Static<typeof PresentationReferenceSchema>;
|
|
396
396
|
export declare const InterviewReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -407,7 +407,7 @@ export declare const InterviewReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
407
407
|
familyName: Type.TString;
|
|
408
408
|
suffix: Type.TOptional<Type.TString>;
|
|
409
409
|
}>>;
|
|
410
|
-
date:
|
|
410
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
411
411
|
}>]>;
|
|
412
412
|
export type TInterviewReference = Static<typeof InterviewReferenceSchema>;
|
|
413
413
|
export declare const PersonalCommunicationReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -419,7 +419,7 @@ export declare const PersonalCommunicationReferenceSchema: Type.TIntersect<[Type
|
|
|
419
419
|
familyName: Type.TString;
|
|
420
420
|
suffix: Type.TOptional<Type.TString>;
|
|
421
421
|
}>;
|
|
422
|
-
date:
|
|
422
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
423
423
|
}>]>;
|
|
424
424
|
export type TPersonalCommunicationReference = Static<typeof PersonalCommunicationReferenceSchema>;
|
|
425
425
|
export declare const EmailReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -436,7 +436,7 @@ export declare const EmailReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
436
436
|
familyName: Type.TString;
|
|
437
437
|
suffix: Type.TOptional<Type.TString>;
|
|
438
438
|
}>;
|
|
439
|
-
date:
|
|
439
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
440
440
|
}>]>;
|
|
441
441
|
export type TEmailReference = Static<typeof EmailReferenceSchema>;
|
|
442
442
|
export declare const LawReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -445,7 +445,7 @@ export declare const LawReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
445
445
|
type: Type.TLiteral<"Law">;
|
|
446
446
|
title: Type.TString;
|
|
447
447
|
jurisdiction: Type.TString;
|
|
448
|
-
dateEnacted:
|
|
448
|
+
dateEnacted: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
449
449
|
}>]>;
|
|
450
450
|
export type TLawReference = Static<typeof LawReferenceSchema>;
|
|
451
451
|
export declare const CourtCaseReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
@@ -454,7 +454,7 @@ export declare const CourtCaseReferenceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
454
454
|
type: Type.TLiteral<"CourtCase">;
|
|
455
455
|
caseName: Type.TString;
|
|
456
456
|
court: Type.TString;
|
|
457
|
-
date:
|
|
457
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
458
458
|
reporter: Type.TOptional<Type.TString>;
|
|
459
459
|
}>]>;
|
|
460
460
|
export type TCourtCaseReference = Static<typeof CourtCaseReferenceSchema>;
|
|
@@ -463,7 +463,7 @@ export declare const GovernmentPublicationReferenceSchema: Type.TIntersect<[Type
|
|
|
463
463
|
}>, Type.TObject<{
|
|
464
464
|
type: Type.TLiteral<"GovernmentPublication">;
|
|
465
465
|
title: Type.TString;
|
|
466
|
-
date:
|
|
466
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
467
467
|
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
468
468
|
givenNames: Type.TString;
|
|
469
469
|
familyName: Type.TString;
|
|
@@ -522,7 +522,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
522
522
|
}>>;
|
|
523
523
|
pageTitle: Type.TString;
|
|
524
524
|
websiteTitle: Type.TString;
|
|
525
|
-
accessedDate:
|
|
525
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
526
526
|
url: Type.TString;
|
|
527
527
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
528
528
|
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,7 +576,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
576
576
|
organization: Type.TString;
|
|
577
577
|
standardNumber: Type.TString;
|
|
578
578
|
title: Type.TString;
|
|
579
|
-
date:
|
|
579
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
580
580
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
581
581
|
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">]>;
|
|
582
582
|
}>, Type.TObject<{
|
|
@@ -603,7 +603,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
603
603
|
}>>;
|
|
604
604
|
country: Type.TString;
|
|
605
605
|
patentNumber: Type.TString;
|
|
606
|
-
date:
|
|
606
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
607
607
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
608
608
|
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">]>;
|
|
609
609
|
}>, Type.TObject<{
|
|
@@ -662,7 +662,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
662
662
|
suffix: Type.TOptional<Type.TString>;
|
|
663
663
|
}>>;
|
|
664
664
|
newspaperTitle: Type.TString;
|
|
665
|
-
date:
|
|
665
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
666
666
|
pages: Type.TOptional<Type.TString>;
|
|
667
667
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
668
668
|
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">]>;
|
|
@@ -676,7 +676,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
676
676
|
}>>;
|
|
677
677
|
conferenceName: Type.TString;
|
|
678
678
|
location: Type.TString;
|
|
679
|
-
date:
|
|
679
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
680
680
|
pages: Type.TOptional<Type.TString>;
|
|
681
681
|
doi: Type.TOptional<Type.TString>;
|
|
682
682
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
@@ -690,7 +690,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
690
690
|
}>>>;
|
|
691
691
|
conferenceName: Type.TString;
|
|
692
692
|
location: Type.TString;
|
|
693
|
-
date:
|
|
693
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
694
694
|
publisher: Type.TString;
|
|
695
695
|
isbn: Type.TOptional<Type.TString>;
|
|
696
696
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
@@ -735,7 +735,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
735
735
|
title: Type.TString;
|
|
736
736
|
publisher: Type.TOptional<Type.TString>;
|
|
737
737
|
url: Type.TString;
|
|
738
|
-
accessedDate:
|
|
738
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
739
739
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
740
740
|
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">]>;
|
|
741
741
|
}>, Type.TObject<{
|
|
@@ -747,9 +747,9 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
747
747
|
}>;
|
|
748
748
|
postTitle: Type.TString;
|
|
749
749
|
blogName: Type.TString;
|
|
750
|
-
date:
|
|
750
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
751
751
|
url: Type.TString;
|
|
752
|
-
accessedDate:
|
|
752
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
753
753
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
754
754
|
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">]>;
|
|
755
755
|
}>, Type.TObject<{
|
|
@@ -760,7 +760,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
760
760
|
suffix: Type.TOptional<Type.TString>;
|
|
761
761
|
}>;
|
|
762
762
|
platform: Type.TString;
|
|
763
|
-
postDate:
|
|
763
|
+
postDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
764
764
|
url: Type.TString;
|
|
765
765
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
766
766
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
@@ -786,10 +786,10 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
786
786
|
familyName: Type.TString;
|
|
787
787
|
suffix: Type.TOptional<Type.TString>;
|
|
788
788
|
}>>>;
|
|
789
|
-
releaseDate: Type.TOptional<
|
|
789
|
+
releaseDate: Type.TOptional<Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>>;
|
|
790
790
|
platform: Type.TString;
|
|
791
791
|
url: Type.TString;
|
|
792
|
-
accessedDate:
|
|
792
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
793
793
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
794
794
|
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">]>;
|
|
795
795
|
}>, Type.TObject<{
|
|
@@ -803,7 +803,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
803
803
|
seriesTitle: Type.TString;
|
|
804
804
|
platform: Type.TString;
|
|
805
805
|
url: Type.TString;
|
|
806
|
-
accessedDate:
|
|
806
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
807
807
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
808
808
|
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">]>;
|
|
809
809
|
}>, Type.TObject<{
|
|
@@ -830,7 +830,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
830
830
|
}>;
|
|
831
831
|
eventTitle: Type.TString;
|
|
832
832
|
location: Type.TString;
|
|
833
|
-
date:
|
|
833
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
834
834
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
835
835
|
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">]>;
|
|
836
836
|
}>, Type.TObject<{
|
|
@@ -845,7 +845,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
845
845
|
familyName: Type.TString;
|
|
846
846
|
suffix: Type.TOptional<Type.TString>;
|
|
847
847
|
}>>;
|
|
848
|
-
date:
|
|
848
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
849
849
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
850
850
|
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">]>;
|
|
851
851
|
}>, Type.TObject<{
|
|
@@ -855,7 +855,7 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
855
855
|
familyName: Type.TString;
|
|
856
856
|
suffix: Type.TOptional<Type.TString>;
|
|
857
857
|
}>;
|
|
858
|
-
date:
|
|
858
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
859
859
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
860
860
|
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">]>;
|
|
861
861
|
}>, Type.TObject<{
|
|
@@ -870,28 +870,28 @@ export declare const IEEEReferenceSchema: Type.TUnion<[Type.TIntersect<[Type.TOb
|
|
|
870
870
|
familyName: Type.TString;
|
|
871
871
|
suffix: Type.TOptional<Type.TString>;
|
|
872
872
|
}>;
|
|
873
|
-
date:
|
|
873
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
874
874
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
875
875
|
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">]>;
|
|
876
876
|
}>, Type.TObject<{
|
|
877
877
|
type: Type.TLiteral<"Law">;
|
|
878
878
|
title: Type.TString;
|
|
879
879
|
jurisdiction: Type.TString;
|
|
880
|
-
dateEnacted:
|
|
880
|
+
dateEnacted: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
881
881
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
882
882
|
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">]>;
|
|
883
883
|
}>, Type.TObject<{
|
|
884
884
|
type: Type.TLiteral<"CourtCase">;
|
|
885
885
|
caseName: Type.TString;
|
|
886
886
|
court: Type.TString;
|
|
887
|
-
date:
|
|
887
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
888
888
|
reporter: Type.TOptional<Type.TString>;
|
|
889
889
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
890
890
|
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">]>;
|
|
891
891
|
}>, Type.TObject<{
|
|
892
892
|
type: Type.TLiteral<"GovernmentPublication">;
|
|
893
893
|
title: Type.TString;
|
|
894
|
-
date:
|
|
894
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
895
895
|
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
896
896
|
givenNames: Type.TString;
|
|
897
897
|
familyName: Type.TString;
|
|
@@ -948,7 +948,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
948
948
|
}>>;
|
|
949
949
|
pageTitle: Type.TString;
|
|
950
950
|
websiteTitle: Type.TString;
|
|
951
|
-
accessedDate:
|
|
951
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
952
952
|
url: Type.TString;
|
|
953
953
|
}>]>;
|
|
954
954
|
readonly BookChapter: Type.TIntersect<[Type.TObject<{
|
|
@@ -1006,7 +1006,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1006
1006
|
organization: Type.TString;
|
|
1007
1007
|
standardNumber: Type.TString;
|
|
1008
1008
|
title: Type.TString;
|
|
1009
|
-
date:
|
|
1009
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1010
1010
|
}>]>;
|
|
1011
1011
|
readonly Thesis: Type.TIntersect<[Type.TObject<{
|
|
1012
1012
|
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">]>;
|
|
@@ -1035,7 +1035,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1035
1035
|
}>>;
|
|
1036
1036
|
country: Type.TString;
|
|
1037
1037
|
patentNumber: Type.TString;
|
|
1038
|
-
date:
|
|
1038
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1039
1039
|
}>]>;
|
|
1040
1040
|
readonly Dictionary: Type.TIntersect<[Type.TObject<{
|
|
1041
1041
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
@@ -1099,7 +1099,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1099
1099
|
suffix: Type.TOptional<Type.TString>;
|
|
1100
1100
|
}>>;
|
|
1101
1101
|
newspaperTitle: Type.TString;
|
|
1102
|
-
date:
|
|
1102
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1103
1103
|
pages: Type.TOptional<Type.TString>;
|
|
1104
1104
|
}>]>;
|
|
1105
1105
|
readonly ConferencePaper: Type.TIntersect<[Type.TObject<{
|
|
@@ -1114,7 +1114,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1114
1114
|
}>>;
|
|
1115
1115
|
conferenceName: Type.TString;
|
|
1116
1116
|
location: Type.TString;
|
|
1117
|
-
date:
|
|
1117
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1118
1118
|
pages: Type.TOptional<Type.TString>;
|
|
1119
1119
|
doi: Type.TOptional<Type.TString>;
|
|
1120
1120
|
}>]>;
|
|
@@ -1129,7 +1129,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1129
1129
|
}>>>;
|
|
1130
1130
|
conferenceName: Type.TString;
|
|
1131
1131
|
location: Type.TString;
|
|
1132
|
-
date:
|
|
1132
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1133
1133
|
publisher: Type.TString;
|
|
1134
1134
|
isbn: Type.TOptional<Type.TString>;
|
|
1135
1135
|
}>]>;
|
|
@@ -1177,7 +1177,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1177
1177
|
title: Type.TString;
|
|
1178
1178
|
publisher: Type.TOptional<Type.TString>;
|
|
1179
1179
|
url: Type.TString;
|
|
1180
|
-
accessedDate:
|
|
1180
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1181
1181
|
}>]>;
|
|
1182
1182
|
readonly Blog: Type.TIntersect<[Type.TObject<{
|
|
1183
1183
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
@@ -1190,9 +1190,9 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1190
1190
|
}>;
|
|
1191
1191
|
postTitle: Type.TString;
|
|
1192
1192
|
blogName: Type.TString;
|
|
1193
|
-
date:
|
|
1193
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1194
1194
|
url: Type.TString;
|
|
1195
|
-
accessedDate:
|
|
1195
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1196
1196
|
}>]>;
|
|
1197
1197
|
readonly SocialMedia: Type.TIntersect<[Type.TObject<{
|
|
1198
1198
|
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">]>;
|
|
@@ -1204,7 +1204,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1204
1204
|
suffix: Type.TOptional<Type.TString>;
|
|
1205
1205
|
}>;
|
|
1206
1206
|
platform: Type.TString;
|
|
1207
|
-
postDate:
|
|
1207
|
+
postDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1208
1208
|
url: Type.TString;
|
|
1209
1209
|
}>]>;
|
|
1210
1210
|
readonly Preprint: Type.TIntersect<[Type.TObject<{
|
|
@@ -1232,10 +1232,10 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1232
1232
|
familyName: Type.TString;
|
|
1233
1233
|
suffix: Type.TOptional<Type.TString>;
|
|
1234
1234
|
}>>>;
|
|
1235
|
-
releaseDate: Type.TOptional<
|
|
1235
|
+
releaseDate: Type.TOptional<Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>>;
|
|
1236
1236
|
platform: Type.TString;
|
|
1237
1237
|
url: Type.TString;
|
|
1238
|
-
accessedDate:
|
|
1238
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1239
1239
|
}>]>;
|
|
1240
1240
|
readonly Podcast: Type.TIntersect<[Type.TObject<{
|
|
1241
1241
|
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">]>;
|
|
@@ -1250,7 +1250,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1250
1250
|
seriesTitle: Type.TString;
|
|
1251
1251
|
platform: Type.TString;
|
|
1252
1252
|
url: Type.TString;
|
|
1253
|
-
accessedDate:
|
|
1253
|
+
accessedDate: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1254
1254
|
}>]>;
|
|
1255
1255
|
readonly Course: Type.TIntersect<[Type.TObject<{
|
|
1256
1256
|
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">]>;
|
|
@@ -1279,7 +1279,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1279
1279
|
}>;
|
|
1280
1280
|
eventTitle: Type.TString;
|
|
1281
1281
|
location: Type.TString;
|
|
1282
|
-
date:
|
|
1282
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1283
1283
|
}>]>;
|
|
1284
1284
|
readonly Interview: Type.TIntersect<[Type.TObject<{
|
|
1285
1285
|
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">]>;
|
|
@@ -1295,7 +1295,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1295
1295
|
familyName: Type.TString;
|
|
1296
1296
|
suffix: Type.TOptional<Type.TString>;
|
|
1297
1297
|
}>>;
|
|
1298
|
-
date:
|
|
1298
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1299
1299
|
}>]>;
|
|
1300
1300
|
readonly PersonalCommunication: Type.TIntersect<[Type.TObject<{
|
|
1301
1301
|
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">]>;
|
|
@@ -1306,7 +1306,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1306
1306
|
familyName: Type.TString;
|
|
1307
1307
|
suffix: Type.TOptional<Type.TString>;
|
|
1308
1308
|
}>;
|
|
1309
|
-
date:
|
|
1309
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1310
1310
|
}>]>;
|
|
1311
1311
|
readonly Email: Type.TIntersect<[Type.TObject<{
|
|
1312
1312
|
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">]>;
|
|
@@ -1322,7 +1322,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1322
1322
|
familyName: Type.TString;
|
|
1323
1323
|
suffix: Type.TOptional<Type.TString>;
|
|
1324
1324
|
}>;
|
|
1325
|
-
date:
|
|
1325
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1326
1326
|
}>]>;
|
|
1327
1327
|
readonly Law: Type.TIntersect<[Type.TObject<{
|
|
1328
1328
|
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">]>;
|
|
@@ -1330,7 +1330,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1330
1330
|
type: Type.TLiteral<"Law">;
|
|
1331
1331
|
title: Type.TString;
|
|
1332
1332
|
jurisdiction: Type.TString;
|
|
1333
|
-
dateEnacted:
|
|
1333
|
+
dateEnacted: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1334
1334
|
}>]>;
|
|
1335
1335
|
readonly CourtCase: Type.TIntersect<[Type.TObject<{
|
|
1336
1336
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
@@ -1338,7 +1338,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1338
1338
|
type: Type.TLiteral<"CourtCase">;
|
|
1339
1339
|
caseName: Type.TString;
|
|
1340
1340
|
court: Type.TString;
|
|
1341
|
-
date:
|
|
1341
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1342
1342
|
reporter: Type.TOptional<Type.TString>;
|
|
1343
1343
|
}>]>;
|
|
1344
1344
|
readonly GovernmentPublication: Type.TIntersect<[Type.TObject<{
|
|
@@ -1346,7 +1346,7 @@ export declare const IEEEReferenceSchemaMap: {
|
|
|
1346
1346
|
}>, Type.TObject<{
|
|
1347
1347
|
type: Type.TLiteral<"GovernmentPublication">;
|
|
1348
1348
|
title: Type.TString;
|
|
1349
|
-
date:
|
|
1349
|
+
date: Type.TCodec<Type.TRefine<Type.TUnsafe<Date>>, Date>;
|
|
1350
1350
|
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
1351
1351
|
givenNames: Type.TString;
|
|
1352
1352
|
familyName: Type.TString;
|