@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
|
@@ -12,7 +12,11 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
12
12
|
type: Type.TLiteral<"Book">;
|
|
13
13
|
title: Type.TString;
|
|
14
14
|
year: Type.TString;
|
|
15
|
-
authors: Type.TArray<Type.
|
|
15
|
+
authors: Type.TArray<Type.TObject<{
|
|
16
|
+
givenNames: Type.TString;
|
|
17
|
+
familyName: Type.TString;
|
|
18
|
+
suffix: Type.TOptional<Type.TString>;
|
|
19
|
+
}>>;
|
|
16
20
|
edition: Type.TOptional<Type.TString>;
|
|
17
21
|
publisher: Type.TString;
|
|
18
22
|
location: Type.TOptional<Type.TString>;
|
|
@@ -21,19 +25,32 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
21
25
|
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">]>;
|
|
22
26
|
}>, Type.TObject<{
|
|
23
27
|
type: Type.TLiteral<"Website">;
|
|
24
|
-
authors: Type.TArray<Type.
|
|
28
|
+
authors: Type.TArray<Type.TObject<{
|
|
29
|
+
givenNames: Type.TString;
|
|
30
|
+
familyName: Type.TString;
|
|
31
|
+
suffix: Type.TOptional<Type.TString>;
|
|
32
|
+
}>>;
|
|
25
33
|
pageTitle: Type.TString;
|
|
26
34
|
websiteTitle: Type.TString;
|
|
27
|
-
accessedDate:
|
|
35
|
+
accessedDate: import("../../index.js").TDateType;
|
|
28
36
|
url: Type.TString;
|
|
29
37
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
30
38
|
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">]>;
|
|
31
39
|
}>, Type.TObject<{
|
|
32
40
|
type: Type.TLiteral<"BookChapter">;
|
|
33
41
|
chapterTitle: Type.TString;
|
|
34
|
-
|
|
42
|
+
year: Type.TString;
|
|
43
|
+
authors: Type.TArray<Type.TObject<{
|
|
44
|
+
givenNames: Type.TString;
|
|
45
|
+
familyName: Type.TString;
|
|
46
|
+
suffix: Type.TOptional<Type.TString>;
|
|
47
|
+
}>>;
|
|
35
48
|
bookTitle: Type.TString;
|
|
36
|
-
editors: Type.TOptional<Type.TArray<Type.
|
|
49
|
+
editors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
50
|
+
givenNames: Type.TString;
|
|
51
|
+
familyName: Type.TString;
|
|
52
|
+
suffix: Type.TOptional<Type.TString>;
|
|
53
|
+
}>>>;
|
|
37
54
|
publisher: Type.TString;
|
|
38
55
|
location: Type.TString;
|
|
39
56
|
pages: Type.TOptional<Type.TString>;
|
|
@@ -42,7 +59,8 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
42
59
|
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">]>;
|
|
43
60
|
}>, Type.TObject<{
|
|
44
61
|
type: Type.TLiteral<"Handbook">;
|
|
45
|
-
|
|
62
|
+
title: Type.TString;
|
|
63
|
+
year: Type.TString;
|
|
46
64
|
publisher: Type.TString;
|
|
47
65
|
edition: Type.TOptional<Type.TString>;
|
|
48
66
|
location: Type.TString;
|
|
@@ -51,7 +69,13 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
51
69
|
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">]>;
|
|
52
70
|
}>, Type.TObject<{
|
|
53
71
|
type: Type.TLiteral<"TechnicalReport">;
|
|
54
|
-
|
|
72
|
+
title: Type.TString;
|
|
73
|
+
year: Type.TString;
|
|
74
|
+
authors: Type.TArray<Type.TObject<{
|
|
75
|
+
givenNames: Type.TString;
|
|
76
|
+
familyName: Type.TString;
|
|
77
|
+
suffix: Type.TOptional<Type.TString>;
|
|
78
|
+
}>>;
|
|
55
79
|
reportNumber: Type.TString;
|
|
56
80
|
institution: Type.TString;
|
|
57
81
|
location: Type.TString;
|
|
@@ -62,12 +86,18 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
62
86
|
organization: Type.TString;
|
|
63
87
|
standardNumber: Type.TString;
|
|
64
88
|
title: Type.TString;
|
|
65
|
-
date:
|
|
89
|
+
date: import("../../index.js").TDateType;
|
|
66
90
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
67
91
|
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">]>;
|
|
68
92
|
}>, Type.TObject<{
|
|
69
93
|
type: Type.TLiteral<"Thesis">;
|
|
70
|
-
|
|
94
|
+
title: Type.TString;
|
|
95
|
+
year: Type.TString;
|
|
96
|
+
authors: Type.TArray<Type.TObject<{
|
|
97
|
+
givenNames: Type.TString;
|
|
98
|
+
familyName: Type.TString;
|
|
99
|
+
suffix: Type.TOptional<Type.TString>;
|
|
100
|
+
}>>;
|
|
71
101
|
degree: Type.TString;
|
|
72
102
|
institution: Type.TString;
|
|
73
103
|
location: Type.TString;
|
|
@@ -75,27 +105,42 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
75
105
|
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">]>;
|
|
76
106
|
}>, Type.TObject<{
|
|
77
107
|
type: Type.TLiteral<"Patent">;
|
|
78
|
-
|
|
108
|
+
title: Type.TString;
|
|
109
|
+
inventors: Type.TArray<Type.TObject<{
|
|
110
|
+
givenNames: Type.TString;
|
|
111
|
+
familyName: Type.TString;
|
|
112
|
+
suffix: Type.TOptional<Type.TString>;
|
|
113
|
+
}>>;
|
|
79
114
|
country: Type.TString;
|
|
80
115
|
patentNumber: Type.TString;
|
|
81
|
-
date:
|
|
116
|
+
date: import("../../index.js").TDateType;
|
|
82
117
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
83
118
|
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">]>;
|
|
84
119
|
}>, Type.TObject<{
|
|
85
120
|
type: Type.TLiteral<"Dictionary">;
|
|
121
|
+
title: Type.TString;
|
|
122
|
+
year: Type.TString;
|
|
86
123
|
publisher: Type.TString;
|
|
87
124
|
edition: Type.TOptional<Type.TString>;
|
|
88
125
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
89
126
|
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">]>;
|
|
90
127
|
}>, Type.TObject<{
|
|
91
128
|
type: Type.TLiteral<"Encyclopedia">;
|
|
129
|
+
title: Type.TString;
|
|
130
|
+
year: Type.TString;
|
|
92
131
|
publisher: Type.TString;
|
|
93
132
|
edition: Type.TOptional<Type.TString>;
|
|
94
133
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
95
134
|
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">]>;
|
|
96
135
|
}>, Type.TObject<{
|
|
97
136
|
type: Type.TLiteral<"JournalArticle">;
|
|
98
|
-
|
|
137
|
+
title: Type.TString;
|
|
138
|
+
year: Type.TString;
|
|
139
|
+
authors: Type.TArray<Type.TObject<{
|
|
140
|
+
givenNames: Type.TString;
|
|
141
|
+
familyName: Type.TString;
|
|
142
|
+
suffix: Type.TOptional<Type.TString>;
|
|
143
|
+
}>>;
|
|
99
144
|
journalTitle: Type.TString;
|
|
100
145
|
volume: Type.TOptional<Type.TString>;
|
|
101
146
|
issue: Type.TOptional<Type.TString>;
|
|
@@ -105,7 +150,13 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
105
150
|
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">]>;
|
|
106
151
|
}>, Type.TObject<{
|
|
107
152
|
type: Type.TLiteral<"MagazineArticle">;
|
|
108
|
-
|
|
153
|
+
title: Type.TString;
|
|
154
|
+
year: Type.TString;
|
|
155
|
+
authors: Type.TArray<Type.TObject<{
|
|
156
|
+
givenNames: Type.TString;
|
|
157
|
+
familyName: Type.TString;
|
|
158
|
+
suffix: Type.TOptional<Type.TString>;
|
|
159
|
+
}>>;
|
|
109
160
|
magazineTitle: Type.TString;
|
|
110
161
|
volume: Type.TOptional<Type.TString>;
|
|
111
162
|
issue: Type.TOptional<Type.TString>;
|
|
@@ -114,35 +165,55 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
114
165
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
115
166
|
}>, Type.TObject<{
|
|
116
167
|
type: Type.TLiteral<"NewspaperArticle">;
|
|
117
|
-
|
|
168
|
+
title: Type.TString;
|
|
169
|
+
authors: Type.TArray<Type.TObject<{
|
|
170
|
+
givenNames: Type.TString;
|
|
171
|
+
familyName: Type.TString;
|
|
172
|
+
suffix: Type.TOptional<Type.TString>;
|
|
173
|
+
}>>;
|
|
118
174
|
newspaperTitle: Type.TString;
|
|
119
|
-
date:
|
|
175
|
+
date: import("../../index.js").TDateType;
|
|
120
176
|
pages: Type.TOptional<Type.TString>;
|
|
121
177
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
122
178
|
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
179
|
}>, Type.TObject<{
|
|
124
180
|
type: Type.TLiteral<"ConferencePaper">;
|
|
125
|
-
|
|
181
|
+
title: Type.TString;
|
|
182
|
+
authors: Type.TArray<Type.TObject<{
|
|
183
|
+
givenNames: Type.TString;
|
|
184
|
+
familyName: Type.TString;
|
|
185
|
+
suffix: Type.TOptional<Type.TString>;
|
|
186
|
+
}>>;
|
|
126
187
|
conferenceName: Type.TString;
|
|
127
188
|
location: Type.TString;
|
|
128
|
-
date:
|
|
189
|
+
date: import("../../index.js").TDateType;
|
|
129
190
|
pages: Type.TOptional<Type.TString>;
|
|
130
191
|
doi: Type.TOptional<Type.TString>;
|
|
131
192
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
132
193
|
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">]>;
|
|
133
194
|
}>, Type.TObject<{
|
|
134
195
|
type: Type.TLiteral<"ConferenceProceedings">;
|
|
135
|
-
editors: Type.TOptional<Type.TArray<Type.
|
|
196
|
+
editors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
197
|
+
givenNames: Type.TString;
|
|
198
|
+
familyName: Type.TString;
|
|
199
|
+
suffix: Type.TOptional<Type.TString>;
|
|
200
|
+
}>>>;
|
|
136
201
|
conferenceName: Type.TString;
|
|
137
202
|
location: Type.TString;
|
|
138
|
-
date:
|
|
203
|
+
date: import("../../index.js").TDateType;
|
|
139
204
|
publisher: Type.TString;
|
|
140
205
|
isbn: Type.TOptional<Type.TString>;
|
|
141
206
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
142
207
|
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">]>;
|
|
143
208
|
}>, Type.TObject<{
|
|
144
209
|
type: Type.TLiteral<"Dataset">;
|
|
145
|
-
|
|
210
|
+
title: Type.TString;
|
|
211
|
+
year: Type.TString;
|
|
212
|
+
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
213
|
+
givenNames: Type.TString;
|
|
214
|
+
familyName: Type.TString;
|
|
215
|
+
suffix: Type.TOptional<Type.TString>;
|
|
216
|
+
}>>>;
|
|
146
217
|
repository: Type.TString;
|
|
147
218
|
version: Type.TOptional<Type.TString>;
|
|
148
219
|
doi: Type.TOptional<Type.TString>;
|
|
@@ -151,7 +222,13 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
151
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">]>;
|
|
152
223
|
}>, Type.TObject<{
|
|
153
224
|
type: Type.TLiteral<"Software">;
|
|
154
|
-
|
|
225
|
+
title: Type.TString;
|
|
226
|
+
year: Type.TString;
|
|
227
|
+
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
228
|
+
givenNames: Type.TString;
|
|
229
|
+
familyName: Type.TString;
|
|
230
|
+
suffix: Type.TOptional<Type.TString>;
|
|
231
|
+
}>>>;
|
|
155
232
|
version: Type.TOptional<Type.TString>;
|
|
156
233
|
publisher: Type.TOptional<Type.TString>;
|
|
157
234
|
doi: Type.TOptional<Type.TString>;
|
|
@@ -160,32 +237,52 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
160
237
|
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">]>;
|
|
161
238
|
}>, Type.TObject<{
|
|
162
239
|
type: Type.TLiteral<"OnlineDocument">;
|
|
163
|
-
authors: Type.TOptional<Type.TArray<Type.
|
|
240
|
+
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
241
|
+
givenNames: Type.TString;
|
|
242
|
+
familyName: Type.TString;
|
|
243
|
+
suffix: Type.TOptional<Type.TString>;
|
|
244
|
+
}>>>;
|
|
164
245
|
title: Type.TString;
|
|
165
246
|
publisher: Type.TOptional<Type.TString>;
|
|
166
247
|
url: Type.TString;
|
|
167
|
-
accessedDate:
|
|
248
|
+
accessedDate: import("../../index.js").TDateType;
|
|
168
249
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
169
250
|
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">]>;
|
|
170
251
|
}>, Type.TObject<{
|
|
171
252
|
type: Type.TLiteral<"Blog">;
|
|
172
|
-
author: Type.
|
|
173
|
-
|
|
253
|
+
author: Type.TObject<{
|
|
254
|
+
givenNames: Type.TString;
|
|
255
|
+
familyName: Type.TString;
|
|
256
|
+
suffix: Type.TOptional<Type.TString>;
|
|
257
|
+
}>;
|
|
258
|
+
postTitle: Type.TString;
|
|
259
|
+
blogName: Type.TString;
|
|
260
|
+
date: import("../../index.js").TDateType;
|
|
174
261
|
url: Type.TString;
|
|
175
|
-
accessedDate:
|
|
262
|
+
accessedDate: import("../../index.js").TDateType;
|
|
176
263
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
177
264
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
178
265
|
}>, Type.TObject<{
|
|
179
266
|
type: Type.TLiteral<"SocialMedia">;
|
|
180
|
-
author: Type.
|
|
267
|
+
author: Type.TObject<{
|
|
268
|
+
givenNames: Type.TString;
|
|
269
|
+
familyName: Type.TString;
|
|
270
|
+
suffix: Type.TOptional<Type.TString>;
|
|
271
|
+
}>;
|
|
181
272
|
platform: Type.TString;
|
|
182
|
-
postDate:
|
|
273
|
+
postDate: import("../../index.js").TDateType;
|
|
183
274
|
url: Type.TString;
|
|
184
275
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
185
276
|
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">]>;
|
|
186
277
|
}>, Type.TObject<{
|
|
187
278
|
type: Type.TLiteral<"Preprint">;
|
|
188
|
-
|
|
279
|
+
title: Type.TString;
|
|
280
|
+
year: Type.TString;
|
|
281
|
+
authors: Type.TArray<Type.TObject<{
|
|
282
|
+
givenNames: Type.TString;
|
|
283
|
+
familyName: Type.TString;
|
|
284
|
+
suffix: Type.TOptional<Type.TString>;
|
|
285
|
+
}>>;
|
|
189
286
|
server: Type.TString;
|
|
190
287
|
doi: Type.TOptional<Type.TString>;
|
|
191
288
|
url: Type.TString;
|
|
@@ -193,25 +290,41 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
193
290
|
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">]>;
|
|
194
291
|
}>, Type.TObject<{
|
|
195
292
|
type: Type.TLiteral<"Video">;
|
|
196
|
-
|
|
293
|
+
title: Type.TString;
|
|
294
|
+
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
295
|
+
givenNames: Type.TString;
|
|
296
|
+
familyName: Type.TString;
|
|
297
|
+
suffix: Type.TOptional<Type.TString>;
|
|
298
|
+
}>>>;
|
|
299
|
+
releaseDate: Type.TOptional<import("../../index.js").TDateType>;
|
|
197
300
|
platform: Type.TString;
|
|
198
301
|
url: Type.TString;
|
|
199
|
-
accessedDate:
|
|
302
|
+
accessedDate: import("../../index.js").TDateType;
|
|
200
303
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
201
304
|
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">]>;
|
|
202
305
|
}>, Type.TObject<{
|
|
203
306
|
type: Type.TLiteral<"Podcast">;
|
|
204
|
-
authors: Type.TOptional<Type.TArray<Type.
|
|
307
|
+
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
308
|
+
givenNames: Type.TString;
|
|
309
|
+
familyName: Type.TString;
|
|
310
|
+
suffix: Type.TOptional<Type.TString>;
|
|
311
|
+
}>>>;
|
|
205
312
|
episodeTitle: Type.TString;
|
|
206
313
|
seriesTitle: Type.TString;
|
|
207
314
|
platform: Type.TString;
|
|
208
315
|
url: Type.TString;
|
|
209
|
-
accessedDate:
|
|
316
|
+
accessedDate: import("../../index.js").TDateType;
|
|
210
317
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
211
318
|
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">]>;
|
|
212
319
|
}>, Type.TObject<{
|
|
213
320
|
type: Type.TLiteral<"Course">;
|
|
214
|
-
|
|
321
|
+
title: Type.TString;
|
|
322
|
+
year: Type.TString;
|
|
323
|
+
instructor: Type.TObject<{
|
|
324
|
+
givenNames: Type.TString;
|
|
325
|
+
familyName: Type.TString;
|
|
326
|
+
suffix: Type.TOptional<Type.TString>;
|
|
327
|
+
}>;
|
|
215
328
|
institution: Type.TString;
|
|
216
329
|
courseCode: Type.TOptional<Type.TString>;
|
|
217
330
|
term: Type.TString;
|
|
@@ -219,50 +332,81 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
219
332
|
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">]>;
|
|
220
333
|
}>, Type.TObject<{
|
|
221
334
|
type: Type.TLiteral<"Presentation">;
|
|
222
|
-
|
|
335
|
+
title: Type.TString;
|
|
336
|
+
presenter: Type.TObject<{
|
|
337
|
+
givenNames: Type.TString;
|
|
338
|
+
familyName: Type.TString;
|
|
339
|
+
suffix: Type.TOptional<Type.TString>;
|
|
340
|
+
}>;
|
|
223
341
|
eventTitle: Type.TString;
|
|
224
342
|
location: Type.TString;
|
|
225
|
-
date:
|
|
343
|
+
date: import("../../index.js").TDateType;
|
|
226
344
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
227
345
|
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">]>;
|
|
228
346
|
}>, Type.TObject<{
|
|
229
347
|
type: Type.TLiteral<"Interview">;
|
|
230
|
-
interviewee: Type.
|
|
231
|
-
|
|
232
|
-
|
|
348
|
+
interviewee: Type.TObject<{
|
|
349
|
+
givenNames: Type.TString;
|
|
350
|
+
familyName: Type.TString;
|
|
351
|
+
suffix: Type.TOptional<Type.TString>;
|
|
352
|
+
}>;
|
|
353
|
+
interviewer: Type.TOptional<Type.TObject<{
|
|
354
|
+
givenNames: Type.TString;
|
|
355
|
+
familyName: Type.TString;
|
|
356
|
+
suffix: Type.TOptional<Type.TString>;
|
|
357
|
+
}>>;
|
|
358
|
+
date: import("../../index.js").TDateType;
|
|
233
359
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
234
360
|
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">]>;
|
|
235
361
|
}>, Type.TObject<{
|
|
236
362
|
type: Type.TLiteral<"PersonalCommunication">;
|
|
237
|
-
person: Type.
|
|
238
|
-
|
|
363
|
+
person: Type.TObject<{
|
|
364
|
+
givenNames: Type.TString;
|
|
365
|
+
familyName: Type.TString;
|
|
366
|
+
suffix: Type.TOptional<Type.TString>;
|
|
367
|
+
}>;
|
|
368
|
+
date: import("../../index.js").TDateType;
|
|
239
369
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
240
370
|
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
371
|
}>, Type.TObject<{
|
|
242
372
|
type: Type.TLiteral<"Email">;
|
|
243
|
-
sender: Type.
|
|
244
|
-
|
|
245
|
-
|
|
373
|
+
sender: Type.TObject<{
|
|
374
|
+
givenNames: Type.TString;
|
|
375
|
+
familyName: Type.TString;
|
|
376
|
+
suffix: Type.TOptional<Type.TString>;
|
|
377
|
+
}>;
|
|
378
|
+
recipient: Type.TObject<{
|
|
379
|
+
givenNames: Type.TString;
|
|
380
|
+
familyName: Type.TString;
|
|
381
|
+
suffix: Type.TOptional<Type.TString>;
|
|
382
|
+
}>;
|
|
383
|
+
date: import("../../index.js").TDateType;
|
|
246
384
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
247
385
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
248
386
|
}>, Type.TObject<{
|
|
249
387
|
type: Type.TLiteral<"Law">;
|
|
250
388
|
title: Type.TString;
|
|
251
389
|
jurisdiction: Type.TString;
|
|
252
|
-
dateEnacted:
|
|
390
|
+
dateEnacted: import("../../index.js").TDateType;
|
|
253
391
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
254
392
|
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">]>;
|
|
255
393
|
}>, Type.TObject<{
|
|
256
394
|
type: Type.TLiteral<"CourtCase">;
|
|
257
395
|
caseName: Type.TString;
|
|
258
396
|
court: Type.TString;
|
|
259
|
-
date:
|
|
397
|
+
date: import("../../index.js").TDateType;
|
|
260
398
|
reporter: Type.TOptional<Type.TString>;
|
|
261
399
|
}>]>, Type.TIntersect<[Type.TObject<{
|
|
262
400
|
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
401
|
}>, Type.TObject<{
|
|
264
402
|
type: Type.TLiteral<"GovernmentPublication">;
|
|
265
|
-
|
|
403
|
+
title: Type.TString;
|
|
404
|
+
date: import("../../index.js").TDateType;
|
|
405
|
+
authors: Type.TOptional<Type.TArray<Type.TObject<{
|
|
406
|
+
givenNames: Type.TString;
|
|
407
|
+
familyName: Type.TString;
|
|
408
|
+
suffix: Type.TOptional<Type.TString>;
|
|
409
|
+
}>>>;
|
|
266
410
|
agency: Type.TString;
|
|
267
411
|
reportNumber: Type.TOptional<Type.TString>;
|
|
268
412
|
location: Type.TString;
|
|
@@ -270,6 +414,8 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
270
414
|
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">]>;
|
|
271
415
|
}>, Type.TObject<{
|
|
272
416
|
type: Type.TLiteral<"Datasheet">;
|
|
417
|
+
title: Type.TString;
|
|
418
|
+
year: Type.TString;
|
|
273
419
|
manufacturer: Type.TString;
|
|
274
420
|
partNumber: Type.TString;
|
|
275
421
|
url: Type.TString;
|
|
@@ -277,6 +423,8 @@ export declare const IEEESourceSchema: Type.TIntersect<[Type.TObject<{
|
|
|
277
423
|
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">]>;
|
|
278
424
|
}>, Type.TObject<{
|
|
279
425
|
type: Type.TLiteral<"ProductManual">;
|
|
426
|
+
title: Type.TString;
|
|
427
|
+
year: Type.TString;
|
|
280
428
|
manufacturer: Type.TString;
|
|
281
429
|
model: Type.TString;
|
|
282
430
|
url: Type.TOptional<Type.TString>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"source.d.ts","sourceRoot":"","sources":["../../../src/extensions/ieee/source.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,EAAE,EAAE,KAAK,MAAM,EAAE,MAAM,SAAS,CAAA;AAK3C,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"source.d.ts","sourceRoot":"","sources":["../../../src/extensions/ieee/source.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,EAAE,EAAE,KAAK,MAAM,EAAE,MAAM,SAAS,CAAA;AAK3C,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM3B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polintpro/proposit-core",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.7",
|
|
4
4
|
"description": "Core engine for building and manipulating propositional logic arguments.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -47,22 +47,22 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/js-yaml": "^4.0.9",
|
|
50
|
-
"@types/node": "^25.2
|
|
51
|
-
"eslint": "^
|
|
50
|
+
"@types/node": "^25.5.2",
|
|
51
|
+
"eslint": "^10.1.0",
|
|
52
52
|
"eslint-plugin-check-file": "^3.3.1",
|
|
53
53
|
"eslint-plugin-n": "^17.24.0",
|
|
54
|
-
"globals": "^
|
|
55
|
-
"peggy": "^5.0
|
|
54
|
+
"globals": "^17.4.0",
|
|
55
|
+
"peggy": "^5.1.0",
|
|
56
56
|
"prettier": "^3.8.1",
|
|
57
57
|
"typedoc": "^0.28.18",
|
|
58
|
-
"typescript": "^
|
|
59
|
-
"typescript-eslint": "^8.
|
|
60
|
-
"vitest": "^4.
|
|
58
|
+
"typescript": "^6.0.2",
|
|
59
|
+
"typescript-eslint": "^8.58.0",
|
|
60
|
+
"vitest": "^4.1.2"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"commander": "^14.0.3",
|
|
64
64
|
"js-yaml": "^4.1.1",
|
|
65
|
-
"typebox": "^1.1.
|
|
65
|
+
"typebox": "^1.1.14"
|
|
66
66
|
},
|
|
67
67
|
"scripts": {
|
|
68
68
|
"generate:parser": "peggy --format es -o src/lib/core/parser/formula-gen.js src/lib/core/parser/formula.peggy",
|