@helloao/tools 0.3.0 → 0.4.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.
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import { OutputFile } from './common-types.js';
2
+ import { DatasetEntityType, OutputFile } from './common-types.js';
3
3
  import { DatasetOutput } from './dataset.js';
4
4
  /**
5
5
  * Defines the output of the API generation.
@@ -105,6 +105,56 @@ export interface ApiOutput {
105
105
  * - /api/d/:datasetId/:bookId/:chapterNumber.json
106
106
  */
107
107
  datasetBookChapters?: ApiDatasetBookChapter[];
108
+ /**
109
+ * The list of chapters that contain entity data for each dataset book.
110
+ * This maps to the following endpoint:
111
+ * - /api/d/:datasetId/:bookId/:chapterNumber.json
112
+ */
113
+ datasetEntityBookChapters?: ApiDatasetEntityBookChapter[];
114
+ /**
115
+ * The list of people for each dataset.
116
+ * This maps to the /api/d/:datasetId/people.json endpoint.
117
+ */
118
+ datasetPeople?: ApiDatasetPeople[];
119
+ /**
120
+ * The list of individual people for each dataset.
121
+ * This maps to the following endpoint:
122
+ * - /api/d/:datasetId/people/:personId.json
123
+ */
124
+ datasetPeopleContents?: ApiDatasetPerson[];
125
+ /**
126
+ * The list of places for each dataset.
127
+ * This maps to the /api/d/:datasetId/places.json endpoint.
128
+ */
129
+ datasetPlaces?: ApiDatasetPlaces[];
130
+ /**
131
+ * The list of individual places for each dataset.
132
+ * This maps to the following endpoint:
133
+ * - /api/d/:datasetId/places/:placeId.json
134
+ */
135
+ datasetPlaceContents?: ApiDatasetPlace[];
136
+ /**
137
+ * The list of events for each dataset.
138
+ * This maps to the /api/d/:datasetId/events.json endpoint.
139
+ */
140
+ datasetEvents?: ApiDatasetEvents[];
141
+ /**
142
+ * The list of individual events for each dataset.
143
+ * This maps to the following endpoint:
144
+ * - /api/d/:datasetId/events/:eventId.json
145
+ */
146
+ datasetEventContents?: ApiDatasetEvent[];
147
+ /**
148
+ * The list of people groups for each dataset.
149
+ * This maps to the /api/d/:datasetId/groups.json endpoint.
150
+ */
151
+ datasetPeopleGroups?: ApiDatasetPeopleGroups[];
152
+ /**
153
+ * The list of individual people groups for each dataset.
154
+ * This maps to the following endpoint:
155
+ * - /api/d/:datasetId/groups/:groupId.json
156
+ */
157
+ datasetPeopleGroupContents?: ApiDatasetPeopleGroup[];
108
158
  /**
109
159
  * The complete translation data for each translation.
110
160
  * This maps to the /api/:translationId/complete.json endpoint.
@@ -214,6 +264,14 @@ export declare const ApiAvailableDatasetsSchema: z.ZodObject<{
214
264
  totalNumberOfReferences: z.ZodNumber;
215
265
  languageName: z.ZodOptional<z.ZodString>;
216
266
  languageEnglishName: z.ZodOptional<z.ZodString>;
267
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
268
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
269
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
270
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
271
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
272
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
273
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
274
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
217
275
  }, z.core.$strip>>>;
218
276
  }, z.core.$strip>;
219
277
  export type ApiAvailableDatasets = z.infer<typeof ApiAvailableDatasetsSchema>;
@@ -240,6 +298,14 @@ export declare const ApiDatasetSchema: z.ZodObject<{
240
298
  totalNumberOfReferences: z.ZodNumber;
241
299
  languageName: z.ZodOptional<z.ZodString>;
242
300
  languageEnglishName: z.ZodOptional<z.ZodString>;
301
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
302
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
303
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
304
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
305
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
306
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
307
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
308
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
243
309
  }, z.core.$strip>;
244
310
  export type ApiDataset = z.infer<typeof ApiDatasetSchema>;
245
311
  /**
@@ -466,18 +532,8 @@ export declare const ApiTranslationCompleteSchema: z.ZodObject<{
466
532
  }, z.core.$strip>>;
467
533
  thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
468
534
  thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
469
- thisChapterWords: z.ZodOptional<z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodLazy<z.ZodObject<{
470
- contentIndex: z.ZodNumber;
471
- start: z.ZodNumber;
472
- end: z.ZodNumber;
473
- strongs: z.ZodOptional<z.ZodArray<z.ZodString>>;
474
- lemma: z.ZodOptional<z.ZodString>;
475
- morph: z.ZodOptional<z.ZodString>;
476
- srcloc: z.ZodOptional<z.ZodString>;
477
- occurrence: z.ZodOptional<z.ZodNumber>;
478
- occurrences: z.ZodOptional<z.ZodNumber>;
479
- }, z.core.$strip>>>>>>;
480
535
  numberOfVerses: z.ZodNumber;
536
+ thisChapterWordsLink: z.ZodOptional<z.ZodString>;
481
537
  }, z.core.$strip>>;
482
538
  }, z.core.$strip>>>;
483
539
  }, z.core.$strip>;
@@ -529,26 +585,14 @@ export declare const TranslationCompleteChapterSchema: z.ZodObject<{
529
585
  }, z.core.$strip>>;
530
586
  thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
531
587
  thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
532
- thisChapterWords: z.ZodOptional<z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodLazy<z.ZodObject<{
533
- contentIndex: z.ZodNumber;
534
- start: z.ZodNumber;
535
- end: z.ZodNumber;
536
- strongs: z.ZodOptional<z.ZodArray<z.ZodString>>;
537
- lemma: z.ZodOptional<z.ZodString>;
538
- morph: z.ZodOptional<z.ZodString>;
539
- srcloc: z.ZodOptional<z.ZodString>;
540
- occurrence: z.ZodOptional<z.ZodNumber>;
541
- occurrences: z.ZodOptional<z.ZodNumber>;
542
- }, z.core.$strip>>>>>>;
543
588
  numberOfVerses: z.ZodNumber;
589
+ thisChapterWordsLink: z.ZodOptional<z.ZodString>;
544
590
  }, z.core.$strip>;
545
591
  export type TranslationCompleteChapter = z.infer<typeof TranslationCompleteChapterSchema>;
546
592
  /**
547
593
  * A chapter in the complete translation download, using the simplified chapter format.
548
594
  */
549
595
  export declare const SimpleTranslationCompleteChapterSchema: z.ZodObject<{
550
- thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
551
- thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
552
596
  chapter: z.ZodLazy<z.ZodObject<{
553
597
  number: z.ZodNumber;
554
598
  content: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -612,17 +656,10 @@ export declare const SimpleTranslationCompleteChapterSchema: z.ZodObject<{
612
656
  caller: z.ZodUnion<readonly [z.ZodLiteral<"+">, z.ZodString, z.ZodNull]>;
613
657
  }, z.core.$strip>>;
614
658
  }, z.core.$strip>>;
615
- thisChapterWords: z.ZodOptional<z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodLazy<z.ZodObject<{
616
- start: z.ZodNumber;
617
- end: z.ZodNumber;
618
- strongs: z.ZodOptional<z.ZodArray<z.ZodString>>;
619
- lemma: z.ZodOptional<z.ZodString>;
620
- morph: z.ZodOptional<z.ZodString>;
621
- srcloc: z.ZodOptional<z.ZodString>;
622
- occurrence: z.ZodOptional<z.ZodNumber>;
623
- occurrences: z.ZodOptional<z.ZodNumber>;
624
- }, z.core.$strip>>>>>>;
659
+ thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
660
+ thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
625
661
  numberOfVerses: z.ZodNumber;
662
+ thisChapterWordsLink: z.ZodOptional<z.ZodString>;
626
663
  }, z.core.$strip>;
627
664
  export type SimpleTranslationCompleteChapter = z.infer<typeof SimpleTranslationCompleteChapterSchema>;
628
665
  /**
@@ -783,18 +820,8 @@ export declare const ApiTranslationCompleteBookSchema: z.ZodObject<{
783
820
  }, z.core.$strip>>;
784
821
  thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
785
822
  thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
786
- thisChapterWords: z.ZodOptional<z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodLazy<z.ZodObject<{
787
- contentIndex: z.ZodNumber;
788
- start: z.ZodNumber;
789
- end: z.ZodNumber;
790
- strongs: z.ZodOptional<z.ZodArray<z.ZodString>>;
791
- lemma: z.ZodOptional<z.ZodString>;
792
- morph: z.ZodOptional<z.ZodString>;
793
- srcloc: z.ZodOptional<z.ZodString>;
794
- occurrence: z.ZodOptional<z.ZodNumber>;
795
- occurrences: z.ZodOptional<z.ZodNumber>;
796
- }, z.core.$strip>>>>>>;
797
823
  numberOfVerses: z.ZodNumber;
824
+ thisChapterWordsLink: z.ZodOptional<z.ZodString>;
798
825
  }, z.core.$strip>>;
799
826
  }, z.core.$strip>;
800
827
  export type ApiTranslationCompleteBook = z.infer<typeof ApiTranslationCompleteBookSchema>;
@@ -945,8 +972,6 @@ export declare const ApiSimpleTranslationCompleteSchema: z.ZodObject<{
945
972
  numberOfChapters: z.ZodNumber;
946
973
  totalNumberOfVerses: z.ZodNumber;
947
974
  chapters: z.ZodArray<z.ZodObject<{
948
- thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
949
- thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
950
975
  chapter: z.ZodLazy<z.ZodObject<{
951
976
  number: z.ZodNumber;
952
977
  content: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -1010,17 +1035,10 @@ export declare const ApiSimpleTranslationCompleteSchema: z.ZodObject<{
1010
1035
  caller: z.ZodUnion<readonly [z.ZodLiteral<"+">, z.ZodString, z.ZodNull]>;
1011
1036
  }, z.core.$strip>>;
1012
1037
  }, z.core.$strip>>;
1013
- thisChapterWords: z.ZodOptional<z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodLazy<z.ZodObject<{
1014
- start: z.ZodNumber;
1015
- end: z.ZodNumber;
1016
- strongs: z.ZodOptional<z.ZodArray<z.ZodString>>;
1017
- lemma: z.ZodOptional<z.ZodString>;
1018
- morph: z.ZodOptional<z.ZodString>;
1019
- srcloc: z.ZodOptional<z.ZodString>;
1020
- occurrence: z.ZodOptional<z.ZodNumber>;
1021
- occurrences: z.ZodOptional<z.ZodNumber>;
1022
- }, z.core.$strip>>>>>>;
1038
+ thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
1039
+ thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
1023
1040
  numberOfVerses: z.ZodNumber;
1041
+ thisChapterWordsLink: z.ZodOptional<z.ZodString>;
1024
1042
  }, z.core.$strip>>;
1025
1043
  }, z.core.$strip>>>;
1026
1044
  }, z.core.$strip>;
@@ -1140,8 +1158,6 @@ export declare const ApiSimpleTranslationCompleteBookSchema: z.ZodObject<{
1140
1158
  numberOfChapters: z.ZodNumber;
1141
1159
  totalNumberOfVerses: z.ZodNumber;
1142
1160
  chapters: z.ZodArray<z.ZodObject<{
1143
- thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
1144
- thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
1145
1161
  chapter: z.ZodLazy<z.ZodObject<{
1146
1162
  number: z.ZodNumber;
1147
1163
  content: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -1205,17 +1221,10 @@ export declare const ApiSimpleTranslationCompleteBookSchema: z.ZodObject<{
1205
1221
  caller: z.ZodUnion<readonly [z.ZodLiteral<"+">, z.ZodString, z.ZodNull]>;
1206
1222
  }, z.core.$strip>>;
1207
1223
  }, z.core.$strip>>;
1208
- thisChapterWords: z.ZodOptional<z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodLazy<z.ZodObject<{
1209
- start: z.ZodNumber;
1210
- end: z.ZodNumber;
1211
- strongs: z.ZodOptional<z.ZodArray<z.ZodString>>;
1212
- lemma: z.ZodOptional<z.ZodString>;
1213
- morph: z.ZodOptional<z.ZodString>;
1214
- srcloc: z.ZodOptional<z.ZodString>;
1215
- occurrence: z.ZodOptional<z.ZodNumber>;
1216
- occurrences: z.ZodOptional<z.ZodNumber>;
1217
- }, z.core.$strip>>>>>>;
1224
+ thisChapterAudioLinks: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodString>>;
1225
+ thisChapterAudioTimings: z.ZodLazy<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>>;
1218
1226
  numberOfVerses: z.ZodNumber;
1227
+ thisChapterWordsLink: z.ZodOptional<z.ZodString>;
1219
1228
  }, z.core.$strip>>;
1220
1229
  }, z.core.$strip>;
1221
1230
  export type ApiSimpleTranslationCompleteBook = z.infer<typeof ApiSimpleTranslationCompleteBookSchema>;
@@ -1991,17 +2000,2141 @@ export declare const ApiDatasetBooksSchema: z.ZodObject<{
1991
2000
  ltr: "ltr";
1992
2001
  rtl: "rtl";
1993
2002
  }>;
1994
- listOfBooksApiLink: z.ZodString;
1995
- availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
1996
- numberOfBooks: z.ZodNumber;
1997
- totalNumberOfChapters: z.ZodNumber;
1998
- totalNumberOfVerses: z.ZodNumber;
1999
- totalNumberOfReferences: z.ZodNumber;
2000
- languageName: z.ZodOptional<z.ZodString>;
2001
- languageEnglishName: z.ZodOptional<z.ZodString>;
2002
- }, z.core.$strip>>;
2003
- books: z.ZodArray<z.ZodLazy<z.ZodObject<{
2004
- id: z.ZodEnum<{
2003
+ listOfBooksApiLink: z.ZodString;
2004
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
2005
+ numberOfBooks: z.ZodNumber;
2006
+ totalNumberOfChapters: z.ZodNumber;
2007
+ totalNumberOfVerses: z.ZodNumber;
2008
+ totalNumberOfReferences: z.ZodNumber;
2009
+ languageName: z.ZodOptional<z.ZodString>;
2010
+ languageEnglishName: z.ZodOptional<z.ZodString>;
2011
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
2012
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
2013
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
2014
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
2015
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
2016
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
2017
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
2018
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
2019
+ }, z.core.$strip>>;
2020
+ books: z.ZodArray<z.ZodLazy<z.ZodObject<{
2021
+ id: z.ZodEnum<{
2022
+ GEN: "GEN";
2023
+ EXO: "EXO";
2024
+ LEV: "LEV";
2025
+ NUM: "NUM";
2026
+ DEU: "DEU";
2027
+ JOS: "JOS";
2028
+ JDG: "JDG";
2029
+ RUT: "RUT";
2030
+ "1SA": "1SA";
2031
+ "2SA": "2SA";
2032
+ "1KI": "1KI";
2033
+ "2KI": "2KI";
2034
+ "1CH": "1CH";
2035
+ "2CH": "2CH";
2036
+ EZR: "EZR";
2037
+ NEH: "NEH";
2038
+ EST: "EST";
2039
+ JOB: "JOB";
2040
+ PSA: "PSA";
2041
+ PRO: "PRO";
2042
+ ECC: "ECC";
2043
+ SNG: "SNG";
2044
+ ISA: "ISA";
2045
+ JER: "JER";
2046
+ LAM: "LAM";
2047
+ EZK: "EZK";
2048
+ DAN: "DAN";
2049
+ HOS: "HOS";
2050
+ JOL: "JOL";
2051
+ AMO: "AMO";
2052
+ OBA: "OBA";
2053
+ JON: "JON";
2054
+ MIC: "MIC";
2055
+ NAM: "NAM";
2056
+ HAB: "HAB";
2057
+ ZEP: "ZEP";
2058
+ HAG: "HAG";
2059
+ ZEC: "ZEC";
2060
+ MAL: "MAL";
2061
+ MAT: "MAT";
2062
+ MRK: "MRK";
2063
+ LUK: "LUK";
2064
+ JHN: "JHN";
2065
+ ACT: "ACT";
2066
+ ROM: "ROM";
2067
+ "1CO": "1CO";
2068
+ "2CO": "2CO";
2069
+ GAL: "GAL";
2070
+ EPH: "EPH";
2071
+ PHP: "PHP";
2072
+ COL: "COL";
2073
+ "1TH": "1TH";
2074
+ "2TH": "2TH";
2075
+ "1TI": "1TI";
2076
+ "2TI": "2TI";
2077
+ TIT: "TIT";
2078
+ PHM: "PHM";
2079
+ HEB: "HEB";
2080
+ JAS: "JAS";
2081
+ "1PE": "1PE";
2082
+ "2PE": "2PE";
2083
+ "1JN": "1JN";
2084
+ "2JN": "2JN";
2085
+ "3JN": "3JN";
2086
+ JUD: "JUD";
2087
+ REV: "REV";
2088
+ TOB: "TOB";
2089
+ JDT: "JDT";
2090
+ ESG: "ESG";
2091
+ WIS: "WIS";
2092
+ SIR: "SIR";
2093
+ BAR: "BAR";
2094
+ LJE: "LJE";
2095
+ S3Y: "S3Y";
2096
+ SUS: "SUS";
2097
+ BEL: "BEL";
2098
+ "1MA": "1MA";
2099
+ "2MA": "2MA";
2100
+ "3MA": "3MA";
2101
+ "4MA": "4MA";
2102
+ "1ES": "1ES";
2103
+ "2ES": "2ES";
2104
+ MAN: "MAN";
2105
+ PS2: "PS2";
2106
+ ODA: "ODA";
2107
+ PSS: "PSS";
2108
+ EZA: "EZA";
2109
+ "5EZ": "5EZ";
2110
+ "6EZ": "6EZ";
2111
+ DAG: "DAG";
2112
+ PS3: "PS3";
2113
+ "2BA": "2BA";
2114
+ LBA: "LBA";
2115
+ JUB: "JUB";
2116
+ ENO: "ENO";
2117
+ "1MQ": "1MQ";
2118
+ "2MQ": "2MQ";
2119
+ "3MQ": "3MQ";
2120
+ REP: "REP";
2121
+ "4BA": "4BA";
2122
+ LAO: "LAO";
2123
+ }>;
2124
+ order: z.ZodNumber;
2125
+ firstChapterNumber: z.ZodNumber;
2126
+ firstChapterApiLink: z.ZodString;
2127
+ firstChapterReference: z.ZodObject<{
2128
+ datasetId: z.ZodString;
2129
+ book: z.ZodEnum<{
2130
+ GEN: "GEN";
2131
+ EXO: "EXO";
2132
+ LEV: "LEV";
2133
+ NUM: "NUM";
2134
+ DEU: "DEU";
2135
+ JOS: "JOS";
2136
+ JDG: "JDG";
2137
+ RUT: "RUT";
2138
+ "1SA": "1SA";
2139
+ "2SA": "2SA";
2140
+ "1KI": "1KI";
2141
+ "2KI": "2KI";
2142
+ "1CH": "1CH";
2143
+ "2CH": "2CH";
2144
+ EZR: "EZR";
2145
+ NEH: "NEH";
2146
+ EST: "EST";
2147
+ JOB: "JOB";
2148
+ PSA: "PSA";
2149
+ PRO: "PRO";
2150
+ ECC: "ECC";
2151
+ SNG: "SNG";
2152
+ ISA: "ISA";
2153
+ JER: "JER";
2154
+ LAM: "LAM";
2155
+ EZK: "EZK";
2156
+ DAN: "DAN";
2157
+ HOS: "HOS";
2158
+ JOL: "JOL";
2159
+ AMO: "AMO";
2160
+ OBA: "OBA";
2161
+ JON: "JON";
2162
+ MIC: "MIC";
2163
+ NAM: "NAM";
2164
+ HAB: "HAB";
2165
+ ZEP: "ZEP";
2166
+ HAG: "HAG";
2167
+ ZEC: "ZEC";
2168
+ MAL: "MAL";
2169
+ MAT: "MAT";
2170
+ MRK: "MRK";
2171
+ LUK: "LUK";
2172
+ JHN: "JHN";
2173
+ ACT: "ACT";
2174
+ ROM: "ROM";
2175
+ "1CO": "1CO";
2176
+ "2CO": "2CO";
2177
+ GAL: "GAL";
2178
+ EPH: "EPH";
2179
+ PHP: "PHP";
2180
+ COL: "COL";
2181
+ "1TH": "1TH";
2182
+ "2TH": "2TH";
2183
+ "1TI": "1TI";
2184
+ "2TI": "2TI";
2185
+ TIT: "TIT";
2186
+ PHM: "PHM";
2187
+ HEB: "HEB";
2188
+ JAS: "JAS";
2189
+ "1PE": "1PE";
2190
+ "2PE": "2PE";
2191
+ "1JN": "1JN";
2192
+ "2JN": "2JN";
2193
+ "3JN": "3JN";
2194
+ JUD: "JUD";
2195
+ REV: "REV";
2196
+ TOB: "TOB";
2197
+ JDT: "JDT";
2198
+ ESG: "ESG";
2199
+ WIS: "WIS";
2200
+ SIR: "SIR";
2201
+ BAR: "BAR";
2202
+ LJE: "LJE";
2203
+ S3Y: "S3Y";
2204
+ SUS: "SUS";
2205
+ BEL: "BEL";
2206
+ "1MA": "1MA";
2207
+ "2MA": "2MA";
2208
+ "3MA": "3MA";
2209
+ "4MA": "4MA";
2210
+ "1ES": "1ES";
2211
+ "2ES": "2ES";
2212
+ MAN: "MAN";
2213
+ PS2: "PS2";
2214
+ ODA: "ODA";
2215
+ PSS: "PSS";
2216
+ EZA: "EZA";
2217
+ "5EZ": "5EZ";
2218
+ "6EZ": "6EZ";
2219
+ DAG: "DAG";
2220
+ PS3: "PS3";
2221
+ "2BA": "2BA";
2222
+ LBA: "LBA";
2223
+ JUB: "JUB";
2224
+ ENO: "ENO";
2225
+ "1MQ": "1MQ";
2226
+ "2MQ": "2MQ";
2227
+ "3MQ": "3MQ";
2228
+ REP: "REP";
2229
+ "4BA": "4BA";
2230
+ LAO: "LAO";
2231
+ }>;
2232
+ chapter: z.ZodInt;
2233
+ }, z.core.$strip>;
2234
+ lastChapterNumber: z.ZodNumber;
2235
+ lastChapterApiLink: z.ZodString;
2236
+ lastChapterReference: z.ZodObject<{
2237
+ datasetId: z.ZodString;
2238
+ book: z.ZodEnum<{
2239
+ GEN: "GEN";
2240
+ EXO: "EXO";
2241
+ LEV: "LEV";
2242
+ NUM: "NUM";
2243
+ DEU: "DEU";
2244
+ JOS: "JOS";
2245
+ JDG: "JDG";
2246
+ RUT: "RUT";
2247
+ "1SA": "1SA";
2248
+ "2SA": "2SA";
2249
+ "1KI": "1KI";
2250
+ "2KI": "2KI";
2251
+ "1CH": "1CH";
2252
+ "2CH": "2CH";
2253
+ EZR: "EZR";
2254
+ NEH: "NEH";
2255
+ EST: "EST";
2256
+ JOB: "JOB";
2257
+ PSA: "PSA";
2258
+ PRO: "PRO";
2259
+ ECC: "ECC";
2260
+ SNG: "SNG";
2261
+ ISA: "ISA";
2262
+ JER: "JER";
2263
+ LAM: "LAM";
2264
+ EZK: "EZK";
2265
+ DAN: "DAN";
2266
+ HOS: "HOS";
2267
+ JOL: "JOL";
2268
+ AMO: "AMO";
2269
+ OBA: "OBA";
2270
+ JON: "JON";
2271
+ MIC: "MIC";
2272
+ NAM: "NAM";
2273
+ HAB: "HAB";
2274
+ ZEP: "ZEP";
2275
+ HAG: "HAG";
2276
+ ZEC: "ZEC";
2277
+ MAL: "MAL";
2278
+ MAT: "MAT";
2279
+ MRK: "MRK";
2280
+ LUK: "LUK";
2281
+ JHN: "JHN";
2282
+ ACT: "ACT";
2283
+ ROM: "ROM";
2284
+ "1CO": "1CO";
2285
+ "2CO": "2CO";
2286
+ GAL: "GAL";
2287
+ EPH: "EPH";
2288
+ PHP: "PHP";
2289
+ COL: "COL";
2290
+ "1TH": "1TH";
2291
+ "2TH": "2TH";
2292
+ "1TI": "1TI";
2293
+ "2TI": "2TI";
2294
+ TIT: "TIT";
2295
+ PHM: "PHM";
2296
+ HEB: "HEB";
2297
+ JAS: "JAS";
2298
+ "1PE": "1PE";
2299
+ "2PE": "2PE";
2300
+ "1JN": "1JN";
2301
+ "2JN": "2JN";
2302
+ "3JN": "3JN";
2303
+ JUD: "JUD";
2304
+ REV: "REV";
2305
+ TOB: "TOB";
2306
+ JDT: "JDT";
2307
+ ESG: "ESG";
2308
+ WIS: "WIS";
2309
+ SIR: "SIR";
2310
+ BAR: "BAR";
2311
+ LJE: "LJE";
2312
+ S3Y: "S3Y";
2313
+ SUS: "SUS";
2314
+ BEL: "BEL";
2315
+ "1MA": "1MA";
2316
+ "2MA": "2MA";
2317
+ "3MA": "3MA";
2318
+ "4MA": "4MA";
2319
+ "1ES": "1ES";
2320
+ "2ES": "2ES";
2321
+ MAN: "MAN";
2322
+ PS2: "PS2";
2323
+ ODA: "ODA";
2324
+ PSS: "PSS";
2325
+ EZA: "EZA";
2326
+ "5EZ": "5EZ";
2327
+ "6EZ": "6EZ";
2328
+ DAG: "DAG";
2329
+ PS3: "PS3";
2330
+ "2BA": "2BA";
2331
+ LBA: "LBA";
2332
+ JUB: "JUB";
2333
+ ENO: "ENO";
2334
+ "1MQ": "1MQ";
2335
+ "2MQ": "2MQ";
2336
+ "3MQ": "3MQ";
2337
+ REP: "REP";
2338
+ "4BA": "4BA";
2339
+ LAO: "LAO";
2340
+ }>;
2341
+ chapter: z.ZodInt;
2342
+ }, z.core.$strip>;
2343
+ numberOfChapters: z.ZodNumber;
2344
+ totalNumberOfVerses: z.ZodNumber;
2345
+ totalNumberOfReferences: z.ZodNumber;
2346
+ }, z.core.$strip>>>;
2347
+ }, z.core.$strip>;
2348
+ export type ApiDatasetBooks = z.infer<typeof ApiDatasetBooksSchema>;
2349
+ /**
2350
+ * Defines a Zod schema for a summary of a person in a dataset.
2351
+ */
2352
+ export declare const ApiDatasetPersonSummarySchema: z.ZodObject<{
2353
+ id: z.ZodString;
2354
+ name: z.ZodString;
2355
+ isProperName: z.ZodOptional<z.ZodBoolean>;
2356
+ gender: z.ZodOptional<z.ZodString>;
2357
+ numberOfReferences: z.ZodNumber;
2358
+ thisPersonApiLink: z.ZodString;
2359
+ }, z.core.$strip>;
2360
+ export type ApiDatasetPersonSummary = z.infer<typeof ApiDatasetPersonSummarySchema>;
2361
+ /**
2362
+ * Defines a Zod schema for the list of people in a dataset.
2363
+ * Maps to the /api/d/:datasetId/people.json endpoint.
2364
+ */
2365
+ export declare const ApiDatasetPeopleSchema: z.ZodObject<{
2366
+ dataset: z.ZodLazy<z.ZodObject<{
2367
+ id: z.ZodString;
2368
+ name: z.ZodString;
2369
+ website: z.ZodString;
2370
+ licenseUrl: z.ZodString;
2371
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2372
+ englishName: z.ZodString;
2373
+ language: z.ZodString;
2374
+ textDirection: z.ZodEnum<{
2375
+ ltr: "ltr";
2376
+ rtl: "rtl";
2377
+ }>;
2378
+ listOfBooksApiLink: z.ZodString;
2379
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
2380
+ numberOfBooks: z.ZodNumber;
2381
+ totalNumberOfChapters: z.ZodNumber;
2382
+ totalNumberOfVerses: z.ZodNumber;
2383
+ totalNumberOfReferences: z.ZodNumber;
2384
+ languageName: z.ZodOptional<z.ZodString>;
2385
+ languageEnglishName: z.ZodOptional<z.ZodString>;
2386
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
2387
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
2388
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
2389
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
2390
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
2391
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
2392
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
2393
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
2394
+ }, z.core.$strip>>;
2395
+ people: z.ZodArray<z.ZodObject<{
2396
+ id: z.ZodString;
2397
+ name: z.ZodString;
2398
+ isProperName: z.ZodOptional<z.ZodBoolean>;
2399
+ gender: z.ZodOptional<z.ZodString>;
2400
+ numberOfReferences: z.ZodNumber;
2401
+ thisPersonApiLink: z.ZodString;
2402
+ }, z.core.$strip>>;
2403
+ }, z.core.$strip>;
2404
+ export type ApiDatasetPeople = z.infer<typeof ApiDatasetPeopleSchema>;
2405
+ /**
2406
+ * Defines a Zod schema for the information about a person in a dataset.
2407
+ * Maps to the /api/d/:datasetId/people/:personId.json endpoint.
2408
+ */
2409
+ export declare const ApiDatasetPersonSchema: z.ZodObject<{
2410
+ dataset: z.ZodLazy<z.ZodObject<{
2411
+ id: z.ZodString;
2412
+ name: z.ZodString;
2413
+ website: z.ZodString;
2414
+ licenseUrl: z.ZodString;
2415
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2416
+ englishName: z.ZodString;
2417
+ language: z.ZodString;
2418
+ textDirection: z.ZodEnum<{
2419
+ ltr: "ltr";
2420
+ rtl: "rtl";
2421
+ }>;
2422
+ listOfBooksApiLink: z.ZodString;
2423
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
2424
+ numberOfBooks: z.ZodNumber;
2425
+ totalNumberOfChapters: z.ZodNumber;
2426
+ totalNumberOfVerses: z.ZodNumber;
2427
+ totalNumberOfReferences: z.ZodNumber;
2428
+ languageName: z.ZodOptional<z.ZodString>;
2429
+ languageEnglishName: z.ZodOptional<z.ZodString>;
2430
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
2431
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
2432
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
2433
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
2434
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
2435
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
2436
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
2437
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
2438
+ }, z.core.$strip>>;
2439
+ person: z.ZodObject<{
2440
+ id: z.ZodString;
2441
+ name: z.ZodString;
2442
+ alsoCalled: z.ZodOptional<z.ZodArray<z.ZodString>>;
2443
+ isProperName: z.ZodOptional<z.ZodBoolean>;
2444
+ gender: z.ZodOptional<z.ZodString>;
2445
+ description: z.ZodOptional<z.ZodArray<z.ZodString>>;
2446
+ birthYear: z.ZodOptional<z.ZodNumber>;
2447
+ deathYear: z.ZodOptional<z.ZodNumber>;
2448
+ minYear: z.ZodOptional<z.ZodNumber>;
2449
+ maxYear: z.ZodOptional<z.ZodNumber>;
2450
+ birthPlace: z.ZodOptional<z.ZodObject<{
2451
+ id: z.ZodString;
2452
+ type: z.ZodEnum<{
2453
+ people: "people";
2454
+ places: "places";
2455
+ events: "events";
2456
+ groups: "groups";
2457
+ }>;
2458
+ name: z.ZodOptional<z.ZodString>;
2459
+ apiLink: z.ZodOptional<z.ZodString>;
2460
+ }, z.core.$strip>>;
2461
+ deathPlace: z.ZodOptional<z.ZodObject<{
2462
+ id: z.ZodString;
2463
+ type: z.ZodEnum<{
2464
+ people: "people";
2465
+ places: "places";
2466
+ events: "events";
2467
+ groups: "groups";
2468
+ }>;
2469
+ name: z.ZodOptional<z.ZodString>;
2470
+ apiLink: z.ZodOptional<z.ZodString>;
2471
+ }, z.core.$strip>>;
2472
+ father: z.ZodOptional<z.ZodArray<z.ZodObject<{
2473
+ id: z.ZodString;
2474
+ type: z.ZodEnum<{
2475
+ people: "people";
2476
+ places: "places";
2477
+ events: "events";
2478
+ groups: "groups";
2479
+ }>;
2480
+ name: z.ZodOptional<z.ZodString>;
2481
+ apiLink: z.ZodOptional<z.ZodString>;
2482
+ }, z.core.$strip>>>;
2483
+ mother: z.ZodOptional<z.ZodArray<z.ZodObject<{
2484
+ id: z.ZodString;
2485
+ type: z.ZodEnum<{
2486
+ people: "people";
2487
+ places: "places";
2488
+ events: "events";
2489
+ groups: "groups";
2490
+ }>;
2491
+ name: z.ZodOptional<z.ZodString>;
2492
+ apiLink: z.ZodOptional<z.ZodString>;
2493
+ }, z.core.$strip>>>;
2494
+ partners: z.ZodOptional<z.ZodArray<z.ZodObject<{
2495
+ id: z.ZodString;
2496
+ type: z.ZodEnum<{
2497
+ people: "people";
2498
+ places: "places";
2499
+ events: "events";
2500
+ groups: "groups";
2501
+ }>;
2502
+ name: z.ZodOptional<z.ZodString>;
2503
+ apiLink: z.ZodOptional<z.ZodString>;
2504
+ }, z.core.$strip>>>;
2505
+ children: z.ZodOptional<z.ZodArray<z.ZodObject<{
2506
+ id: z.ZodString;
2507
+ type: z.ZodEnum<{
2508
+ people: "people";
2509
+ places: "places";
2510
+ events: "events";
2511
+ groups: "groups";
2512
+ }>;
2513
+ name: z.ZodOptional<z.ZodString>;
2514
+ apiLink: z.ZodOptional<z.ZodString>;
2515
+ }, z.core.$strip>>>;
2516
+ siblings: z.ZodOptional<z.ZodArray<z.ZodObject<{
2517
+ id: z.ZodString;
2518
+ type: z.ZodEnum<{
2519
+ people: "people";
2520
+ places: "places";
2521
+ events: "events";
2522
+ groups: "groups";
2523
+ }>;
2524
+ name: z.ZodOptional<z.ZodString>;
2525
+ apiLink: z.ZodOptional<z.ZodString>;
2526
+ }, z.core.$strip>>>;
2527
+ halfSiblingsSameMother: z.ZodOptional<z.ZodArray<z.ZodObject<{
2528
+ id: z.ZodString;
2529
+ type: z.ZodEnum<{
2530
+ people: "people";
2531
+ places: "places";
2532
+ events: "events";
2533
+ groups: "groups";
2534
+ }>;
2535
+ name: z.ZodOptional<z.ZodString>;
2536
+ apiLink: z.ZodOptional<z.ZodString>;
2537
+ }, z.core.$strip>>>;
2538
+ halfSiblingsSameFather: z.ZodOptional<z.ZodArray<z.ZodObject<{
2539
+ id: z.ZodString;
2540
+ type: z.ZodEnum<{
2541
+ people: "people";
2542
+ places: "places";
2543
+ events: "events";
2544
+ groups: "groups";
2545
+ }>;
2546
+ name: z.ZodOptional<z.ZodString>;
2547
+ apiLink: z.ZodOptional<z.ZodString>;
2548
+ }, z.core.$strip>>>;
2549
+ memberOf: z.ZodOptional<z.ZodArray<z.ZodObject<{
2550
+ id: z.ZodString;
2551
+ type: z.ZodEnum<{
2552
+ people: "people";
2553
+ places: "places";
2554
+ events: "events";
2555
+ groups: "groups";
2556
+ }>;
2557
+ name: z.ZodOptional<z.ZodString>;
2558
+ apiLink: z.ZodOptional<z.ZodString>;
2559
+ }, z.core.$strip>>>;
2560
+ events: z.ZodOptional<z.ZodArray<z.ZodObject<{
2561
+ id: z.ZodString;
2562
+ type: z.ZodEnum<{
2563
+ people: "people";
2564
+ places: "places";
2565
+ events: "events";
2566
+ groups: "groups";
2567
+ }>;
2568
+ name: z.ZodOptional<z.ZodString>;
2569
+ apiLink: z.ZodOptional<z.ZodString>;
2570
+ }, z.core.$strip>>>;
2571
+ references: z.ZodArray<z.ZodObject<{
2572
+ book: z.ZodEnum<{
2573
+ GEN: "GEN";
2574
+ EXO: "EXO";
2575
+ LEV: "LEV";
2576
+ NUM: "NUM";
2577
+ DEU: "DEU";
2578
+ JOS: "JOS";
2579
+ JDG: "JDG";
2580
+ RUT: "RUT";
2581
+ "1SA": "1SA";
2582
+ "2SA": "2SA";
2583
+ "1KI": "1KI";
2584
+ "2KI": "2KI";
2585
+ "1CH": "1CH";
2586
+ "2CH": "2CH";
2587
+ EZR: "EZR";
2588
+ NEH: "NEH";
2589
+ EST: "EST";
2590
+ JOB: "JOB";
2591
+ PSA: "PSA";
2592
+ PRO: "PRO";
2593
+ ECC: "ECC";
2594
+ SNG: "SNG";
2595
+ ISA: "ISA";
2596
+ JER: "JER";
2597
+ LAM: "LAM";
2598
+ EZK: "EZK";
2599
+ DAN: "DAN";
2600
+ HOS: "HOS";
2601
+ JOL: "JOL";
2602
+ AMO: "AMO";
2603
+ OBA: "OBA";
2604
+ JON: "JON";
2605
+ MIC: "MIC";
2606
+ NAM: "NAM";
2607
+ HAB: "HAB";
2608
+ ZEP: "ZEP";
2609
+ HAG: "HAG";
2610
+ ZEC: "ZEC";
2611
+ MAL: "MAL";
2612
+ MAT: "MAT";
2613
+ MRK: "MRK";
2614
+ LUK: "LUK";
2615
+ JHN: "JHN";
2616
+ ACT: "ACT";
2617
+ ROM: "ROM";
2618
+ "1CO": "1CO";
2619
+ "2CO": "2CO";
2620
+ GAL: "GAL";
2621
+ EPH: "EPH";
2622
+ PHP: "PHP";
2623
+ COL: "COL";
2624
+ "1TH": "1TH";
2625
+ "2TH": "2TH";
2626
+ "1TI": "1TI";
2627
+ "2TI": "2TI";
2628
+ TIT: "TIT";
2629
+ PHM: "PHM";
2630
+ HEB: "HEB";
2631
+ JAS: "JAS";
2632
+ "1PE": "1PE";
2633
+ "2PE": "2PE";
2634
+ "1JN": "1JN";
2635
+ "2JN": "2JN";
2636
+ "3JN": "3JN";
2637
+ JUD: "JUD";
2638
+ REV: "REV";
2639
+ TOB: "TOB";
2640
+ JDT: "JDT";
2641
+ ESG: "ESG";
2642
+ WIS: "WIS";
2643
+ SIR: "SIR";
2644
+ BAR: "BAR";
2645
+ LJE: "LJE";
2646
+ S3Y: "S3Y";
2647
+ SUS: "SUS";
2648
+ BEL: "BEL";
2649
+ "1MA": "1MA";
2650
+ "2MA": "2MA";
2651
+ "3MA": "3MA";
2652
+ "4MA": "4MA";
2653
+ "1ES": "1ES";
2654
+ "2ES": "2ES";
2655
+ MAN: "MAN";
2656
+ PS2: "PS2";
2657
+ ODA: "ODA";
2658
+ PSS: "PSS";
2659
+ EZA: "EZA";
2660
+ "5EZ": "5EZ";
2661
+ "6EZ": "6EZ";
2662
+ DAG: "DAG";
2663
+ PS3: "PS3";
2664
+ "2BA": "2BA";
2665
+ LBA: "LBA";
2666
+ JUB: "JUB";
2667
+ ENO: "ENO";
2668
+ "1MQ": "1MQ";
2669
+ "2MQ": "2MQ";
2670
+ "3MQ": "3MQ";
2671
+ REP: "REP";
2672
+ "4BA": "4BA";
2673
+ LAO: "LAO";
2674
+ }>;
2675
+ chapter: z.ZodNumber;
2676
+ verse: z.ZodNumber;
2677
+ content: z.ZodOptional<z.ZodString>;
2678
+ endChapter: z.ZodOptional<z.ZodNumber>;
2679
+ endVerse: z.ZodOptional<z.ZodNumber>;
2680
+ }, z.core.$strip>>;
2681
+ }, z.core.$strip>;
2682
+ thisPersonApiLink: z.ZodString;
2683
+ }, z.core.$strip>;
2684
+ export type ApiDatasetPerson = z.infer<typeof ApiDatasetPersonSchema>;
2685
+ /**
2686
+ * Defines a Zod schema for a summary of a place in a dataset.
2687
+ */
2688
+ export declare const ApiDatasetPlaceSummarySchema: z.ZodObject<{
2689
+ id: z.ZodString;
2690
+ name: z.ZodString;
2691
+ featureType: z.ZodOptional<z.ZodString>;
2692
+ latitude: z.ZodOptional<z.ZodNumber>;
2693
+ longitude: z.ZodOptional<z.ZodNumber>;
2694
+ numberOfReferences: z.ZodNumber;
2695
+ thisPlaceApiLink: z.ZodString;
2696
+ }, z.core.$strip>;
2697
+ export type ApiDatasetPlaceSummary = z.infer<typeof ApiDatasetPlaceSummarySchema>;
2698
+ /**
2699
+ * Defines a Zod schema for the list of places in a dataset.
2700
+ * Maps to the /api/d/:datasetId/places.json endpoint.
2701
+ */
2702
+ export declare const ApiDatasetPlacesSchema: z.ZodObject<{
2703
+ dataset: z.ZodLazy<z.ZodObject<{
2704
+ id: z.ZodString;
2705
+ name: z.ZodString;
2706
+ website: z.ZodString;
2707
+ licenseUrl: z.ZodString;
2708
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2709
+ englishName: z.ZodString;
2710
+ language: z.ZodString;
2711
+ textDirection: z.ZodEnum<{
2712
+ ltr: "ltr";
2713
+ rtl: "rtl";
2714
+ }>;
2715
+ listOfBooksApiLink: z.ZodString;
2716
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
2717
+ numberOfBooks: z.ZodNumber;
2718
+ totalNumberOfChapters: z.ZodNumber;
2719
+ totalNumberOfVerses: z.ZodNumber;
2720
+ totalNumberOfReferences: z.ZodNumber;
2721
+ languageName: z.ZodOptional<z.ZodString>;
2722
+ languageEnglishName: z.ZodOptional<z.ZodString>;
2723
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
2724
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
2725
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
2726
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
2727
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
2728
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
2729
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
2730
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
2731
+ }, z.core.$strip>>;
2732
+ places: z.ZodArray<z.ZodObject<{
2733
+ id: z.ZodString;
2734
+ name: z.ZodString;
2735
+ featureType: z.ZodOptional<z.ZodString>;
2736
+ latitude: z.ZodOptional<z.ZodNumber>;
2737
+ longitude: z.ZodOptional<z.ZodNumber>;
2738
+ numberOfReferences: z.ZodNumber;
2739
+ thisPlaceApiLink: z.ZodString;
2740
+ }, z.core.$strip>>;
2741
+ }, z.core.$strip>;
2742
+ export type ApiDatasetPlaces = z.infer<typeof ApiDatasetPlacesSchema>;
2743
+ /**
2744
+ * Defines a Zod schema for the information about a place in a dataset.
2745
+ * Maps to the /api/d/:datasetId/places/:placeId.json endpoint.
2746
+ */
2747
+ export declare const ApiDatasetPlaceSchema: z.ZodObject<{
2748
+ dataset: z.ZodLazy<z.ZodObject<{
2749
+ id: z.ZodString;
2750
+ name: z.ZodString;
2751
+ website: z.ZodString;
2752
+ licenseUrl: z.ZodString;
2753
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2754
+ englishName: z.ZodString;
2755
+ language: z.ZodString;
2756
+ textDirection: z.ZodEnum<{
2757
+ ltr: "ltr";
2758
+ rtl: "rtl";
2759
+ }>;
2760
+ listOfBooksApiLink: z.ZodString;
2761
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
2762
+ numberOfBooks: z.ZodNumber;
2763
+ totalNumberOfChapters: z.ZodNumber;
2764
+ totalNumberOfVerses: z.ZodNumber;
2765
+ totalNumberOfReferences: z.ZodNumber;
2766
+ languageName: z.ZodOptional<z.ZodString>;
2767
+ languageEnglishName: z.ZodOptional<z.ZodString>;
2768
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
2769
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
2770
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
2771
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
2772
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
2773
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
2774
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
2775
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
2776
+ }, z.core.$strip>>;
2777
+ place: z.ZodObject<{
2778
+ id: z.ZodString;
2779
+ name: z.ZodString;
2780
+ kjvName: z.ZodOptional<z.ZodString>;
2781
+ esvName: z.ZodOptional<z.ZodString>;
2782
+ aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
2783
+ featureType: z.ZodOptional<z.ZodString>;
2784
+ featureSubType: z.ZodOptional<z.ZodString>;
2785
+ latitude: z.ZodOptional<z.ZodNumber>;
2786
+ longitude: z.ZodOptional<z.ZodNumber>;
2787
+ precision: z.ZodOptional<z.ZodString>;
2788
+ description: z.ZodOptional<z.ZodArray<z.ZodString>>;
2789
+ comment: z.ZodOptional<z.ZodString>;
2790
+ rootPlace: z.ZodOptional<z.ZodObject<{
2791
+ id: z.ZodString;
2792
+ type: z.ZodEnum<{
2793
+ people: "people";
2794
+ places: "places";
2795
+ events: "events";
2796
+ groups: "groups";
2797
+ }>;
2798
+ name: z.ZodOptional<z.ZodString>;
2799
+ apiLink: z.ZodOptional<z.ZodString>;
2800
+ }, z.core.$strip>>;
2801
+ duplicateOf: z.ZodOptional<z.ZodObject<{
2802
+ id: z.ZodString;
2803
+ type: z.ZodEnum<{
2804
+ people: "people";
2805
+ places: "places";
2806
+ events: "events";
2807
+ groups: "groups";
2808
+ }>;
2809
+ name: z.ZodOptional<z.ZodString>;
2810
+ apiLink: z.ZodOptional<z.ZodString>;
2811
+ }, z.core.$strip>>;
2812
+ people: z.ZodOptional<z.ZodArray<z.ZodObject<{
2813
+ id: z.ZodString;
2814
+ type: z.ZodEnum<{
2815
+ people: "people";
2816
+ places: "places";
2817
+ events: "events";
2818
+ groups: "groups";
2819
+ }>;
2820
+ name: z.ZodOptional<z.ZodString>;
2821
+ apiLink: z.ZodOptional<z.ZodString>;
2822
+ }, z.core.$strip>>>;
2823
+ peopleBorn: z.ZodOptional<z.ZodArray<z.ZodObject<{
2824
+ id: z.ZodString;
2825
+ type: z.ZodEnum<{
2826
+ people: "people";
2827
+ places: "places";
2828
+ events: "events";
2829
+ groups: "groups";
2830
+ }>;
2831
+ name: z.ZodOptional<z.ZodString>;
2832
+ apiLink: z.ZodOptional<z.ZodString>;
2833
+ }, z.core.$strip>>>;
2834
+ peopleDied: z.ZodOptional<z.ZodArray<z.ZodObject<{
2835
+ id: z.ZodString;
2836
+ type: z.ZodEnum<{
2837
+ people: "people";
2838
+ places: "places";
2839
+ events: "events";
2840
+ groups: "groups";
2841
+ }>;
2842
+ name: z.ZodOptional<z.ZodString>;
2843
+ apiLink: z.ZodOptional<z.ZodString>;
2844
+ }, z.core.$strip>>>;
2845
+ events: z.ZodOptional<z.ZodArray<z.ZodObject<{
2846
+ id: z.ZodString;
2847
+ type: z.ZodEnum<{
2848
+ people: "people";
2849
+ places: "places";
2850
+ events: "events";
2851
+ groups: "groups";
2852
+ }>;
2853
+ name: z.ZodOptional<z.ZodString>;
2854
+ apiLink: z.ZodOptional<z.ZodString>;
2855
+ }, z.core.$strip>>>;
2856
+ references: z.ZodArray<z.ZodObject<{
2857
+ book: z.ZodEnum<{
2858
+ GEN: "GEN";
2859
+ EXO: "EXO";
2860
+ LEV: "LEV";
2861
+ NUM: "NUM";
2862
+ DEU: "DEU";
2863
+ JOS: "JOS";
2864
+ JDG: "JDG";
2865
+ RUT: "RUT";
2866
+ "1SA": "1SA";
2867
+ "2SA": "2SA";
2868
+ "1KI": "1KI";
2869
+ "2KI": "2KI";
2870
+ "1CH": "1CH";
2871
+ "2CH": "2CH";
2872
+ EZR: "EZR";
2873
+ NEH: "NEH";
2874
+ EST: "EST";
2875
+ JOB: "JOB";
2876
+ PSA: "PSA";
2877
+ PRO: "PRO";
2878
+ ECC: "ECC";
2879
+ SNG: "SNG";
2880
+ ISA: "ISA";
2881
+ JER: "JER";
2882
+ LAM: "LAM";
2883
+ EZK: "EZK";
2884
+ DAN: "DAN";
2885
+ HOS: "HOS";
2886
+ JOL: "JOL";
2887
+ AMO: "AMO";
2888
+ OBA: "OBA";
2889
+ JON: "JON";
2890
+ MIC: "MIC";
2891
+ NAM: "NAM";
2892
+ HAB: "HAB";
2893
+ ZEP: "ZEP";
2894
+ HAG: "HAG";
2895
+ ZEC: "ZEC";
2896
+ MAL: "MAL";
2897
+ MAT: "MAT";
2898
+ MRK: "MRK";
2899
+ LUK: "LUK";
2900
+ JHN: "JHN";
2901
+ ACT: "ACT";
2902
+ ROM: "ROM";
2903
+ "1CO": "1CO";
2904
+ "2CO": "2CO";
2905
+ GAL: "GAL";
2906
+ EPH: "EPH";
2907
+ PHP: "PHP";
2908
+ COL: "COL";
2909
+ "1TH": "1TH";
2910
+ "2TH": "2TH";
2911
+ "1TI": "1TI";
2912
+ "2TI": "2TI";
2913
+ TIT: "TIT";
2914
+ PHM: "PHM";
2915
+ HEB: "HEB";
2916
+ JAS: "JAS";
2917
+ "1PE": "1PE";
2918
+ "2PE": "2PE";
2919
+ "1JN": "1JN";
2920
+ "2JN": "2JN";
2921
+ "3JN": "3JN";
2922
+ JUD: "JUD";
2923
+ REV: "REV";
2924
+ TOB: "TOB";
2925
+ JDT: "JDT";
2926
+ ESG: "ESG";
2927
+ WIS: "WIS";
2928
+ SIR: "SIR";
2929
+ BAR: "BAR";
2930
+ LJE: "LJE";
2931
+ S3Y: "S3Y";
2932
+ SUS: "SUS";
2933
+ BEL: "BEL";
2934
+ "1MA": "1MA";
2935
+ "2MA": "2MA";
2936
+ "3MA": "3MA";
2937
+ "4MA": "4MA";
2938
+ "1ES": "1ES";
2939
+ "2ES": "2ES";
2940
+ MAN: "MAN";
2941
+ PS2: "PS2";
2942
+ ODA: "ODA";
2943
+ PSS: "PSS";
2944
+ EZA: "EZA";
2945
+ "5EZ": "5EZ";
2946
+ "6EZ": "6EZ";
2947
+ DAG: "DAG";
2948
+ PS3: "PS3";
2949
+ "2BA": "2BA";
2950
+ LBA: "LBA";
2951
+ JUB: "JUB";
2952
+ ENO: "ENO";
2953
+ "1MQ": "1MQ";
2954
+ "2MQ": "2MQ";
2955
+ "3MQ": "3MQ";
2956
+ REP: "REP";
2957
+ "4BA": "4BA";
2958
+ LAO: "LAO";
2959
+ }>;
2960
+ chapter: z.ZodNumber;
2961
+ verse: z.ZodNumber;
2962
+ content: z.ZodOptional<z.ZodString>;
2963
+ endChapter: z.ZodOptional<z.ZodNumber>;
2964
+ endVerse: z.ZodOptional<z.ZodNumber>;
2965
+ }, z.core.$strip>>;
2966
+ }, z.core.$strip>;
2967
+ thisPlaceApiLink: z.ZodString;
2968
+ }, z.core.$strip>;
2969
+ export type ApiDatasetPlace = z.infer<typeof ApiDatasetPlaceSchema>;
2970
+ /**
2971
+ * Defines a Zod schema for a summary of an event in a dataset.
2972
+ */
2973
+ export declare const ApiDatasetEventSummarySchema: z.ZodObject<{
2974
+ id: z.ZodString;
2975
+ name: z.ZodString;
2976
+ startDate: z.ZodOptional<z.ZodString>;
2977
+ numberOfReferences: z.ZodNumber;
2978
+ thisEventApiLink: z.ZodString;
2979
+ }, z.core.$strip>;
2980
+ export type ApiDatasetEventSummary = z.infer<typeof ApiDatasetEventSummarySchema>;
2981
+ /**
2982
+ * Defines a Zod schema for the list of events in a dataset.
2983
+ * Maps to the /api/d/:datasetId/events.json endpoint.
2984
+ */
2985
+ export declare const ApiDatasetEventsSchema: z.ZodObject<{
2986
+ dataset: z.ZodLazy<z.ZodObject<{
2987
+ id: z.ZodString;
2988
+ name: z.ZodString;
2989
+ website: z.ZodString;
2990
+ licenseUrl: z.ZodString;
2991
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2992
+ englishName: z.ZodString;
2993
+ language: z.ZodString;
2994
+ textDirection: z.ZodEnum<{
2995
+ ltr: "ltr";
2996
+ rtl: "rtl";
2997
+ }>;
2998
+ listOfBooksApiLink: z.ZodString;
2999
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
3000
+ numberOfBooks: z.ZodNumber;
3001
+ totalNumberOfChapters: z.ZodNumber;
3002
+ totalNumberOfVerses: z.ZodNumber;
3003
+ totalNumberOfReferences: z.ZodNumber;
3004
+ languageName: z.ZodOptional<z.ZodString>;
3005
+ languageEnglishName: z.ZodOptional<z.ZodString>;
3006
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
3007
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
3008
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
3009
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
3010
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
3011
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
3012
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
3013
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
3014
+ }, z.core.$strip>>;
3015
+ events: z.ZodArray<z.ZodObject<{
3016
+ id: z.ZodString;
3017
+ name: z.ZodString;
3018
+ startDate: z.ZodOptional<z.ZodString>;
3019
+ numberOfReferences: z.ZodNumber;
3020
+ thisEventApiLink: z.ZodString;
3021
+ }, z.core.$strip>>;
3022
+ }, z.core.$strip>;
3023
+ export type ApiDatasetEvents = z.infer<typeof ApiDatasetEventsSchema>;
3024
+ /**
3025
+ * Defines a Zod schema for the information about an event in a dataset.
3026
+ * Maps to the /api/d/:datasetId/events/:eventId.json endpoint.
3027
+ */
3028
+ export declare const ApiDatasetEventSchema: z.ZodObject<{
3029
+ dataset: z.ZodLazy<z.ZodObject<{
3030
+ id: z.ZodString;
3031
+ name: z.ZodString;
3032
+ website: z.ZodString;
3033
+ licenseUrl: z.ZodString;
3034
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3035
+ englishName: z.ZodString;
3036
+ language: z.ZodString;
3037
+ textDirection: z.ZodEnum<{
3038
+ ltr: "ltr";
3039
+ rtl: "rtl";
3040
+ }>;
3041
+ listOfBooksApiLink: z.ZodString;
3042
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
3043
+ numberOfBooks: z.ZodNumber;
3044
+ totalNumberOfChapters: z.ZodNumber;
3045
+ totalNumberOfVerses: z.ZodNumber;
3046
+ totalNumberOfReferences: z.ZodNumber;
3047
+ languageName: z.ZodOptional<z.ZodString>;
3048
+ languageEnglishName: z.ZodOptional<z.ZodString>;
3049
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
3050
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
3051
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
3052
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
3053
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
3054
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
3055
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
3056
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
3057
+ }, z.core.$strip>>;
3058
+ event: z.ZodObject<{
3059
+ id: z.ZodString;
3060
+ name: z.ZodString;
3061
+ startDate: z.ZodOptional<z.ZodString>;
3062
+ duration: z.ZodOptional<z.ZodString>;
3063
+ participants: z.ZodOptional<z.ZodArray<z.ZodObject<{
3064
+ id: z.ZodString;
3065
+ type: z.ZodEnum<{
3066
+ people: "people";
3067
+ places: "places";
3068
+ events: "events";
3069
+ groups: "groups";
3070
+ }>;
3071
+ name: z.ZodOptional<z.ZodString>;
3072
+ apiLink: z.ZodOptional<z.ZodString>;
3073
+ }, z.core.$strip>>>;
3074
+ locations: z.ZodOptional<z.ZodArray<z.ZodObject<{
3075
+ id: z.ZodString;
3076
+ type: z.ZodEnum<{
3077
+ people: "people";
3078
+ places: "places";
3079
+ events: "events";
3080
+ groups: "groups";
3081
+ }>;
3082
+ name: z.ZodOptional<z.ZodString>;
3083
+ apiLink: z.ZodOptional<z.ZodString>;
3084
+ }, z.core.$strip>>>;
3085
+ groups: z.ZodOptional<z.ZodArray<z.ZodObject<{
3086
+ id: z.ZodString;
3087
+ type: z.ZodEnum<{
3088
+ people: "people";
3089
+ places: "places";
3090
+ events: "events";
3091
+ groups: "groups";
3092
+ }>;
3093
+ name: z.ZodOptional<z.ZodString>;
3094
+ apiLink: z.ZodOptional<z.ZodString>;
3095
+ }, z.core.$strip>>>;
3096
+ partOf: z.ZodOptional<z.ZodObject<{
3097
+ id: z.ZodString;
3098
+ type: z.ZodEnum<{
3099
+ people: "people";
3100
+ places: "places";
3101
+ events: "events";
3102
+ groups: "groups";
3103
+ }>;
3104
+ name: z.ZodOptional<z.ZodString>;
3105
+ apiLink: z.ZodOptional<z.ZodString>;
3106
+ }, z.core.$strip>>;
3107
+ predecessor: z.ZodOptional<z.ZodObject<{
3108
+ id: z.ZodString;
3109
+ type: z.ZodEnum<{
3110
+ people: "people";
3111
+ places: "places";
3112
+ events: "events";
3113
+ groups: "groups";
3114
+ }>;
3115
+ name: z.ZodOptional<z.ZodString>;
3116
+ apiLink: z.ZodOptional<z.ZodString>;
3117
+ }, z.core.$strip>>;
3118
+ references: z.ZodArray<z.ZodObject<{
3119
+ book: z.ZodEnum<{
3120
+ GEN: "GEN";
3121
+ EXO: "EXO";
3122
+ LEV: "LEV";
3123
+ NUM: "NUM";
3124
+ DEU: "DEU";
3125
+ JOS: "JOS";
3126
+ JDG: "JDG";
3127
+ RUT: "RUT";
3128
+ "1SA": "1SA";
3129
+ "2SA": "2SA";
3130
+ "1KI": "1KI";
3131
+ "2KI": "2KI";
3132
+ "1CH": "1CH";
3133
+ "2CH": "2CH";
3134
+ EZR: "EZR";
3135
+ NEH: "NEH";
3136
+ EST: "EST";
3137
+ JOB: "JOB";
3138
+ PSA: "PSA";
3139
+ PRO: "PRO";
3140
+ ECC: "ECC";
3141
+ SNG: "SNG";
3142
+ ISA: "ISA";
3143
+ JER: "JER";
3144
+ LAM: "LAM";
3145
+ EZK: "EZK";
3146
+ DAN: "DAN";
3147
+ HOS: "HOS";
3148
+ JOL: "JOL";
3149
+ AMO: "AMO";
3150
+ OBA: "OBA";
3151
+ JON: "JON";
3152
+ MIC: "MIC";
3153
+ NAM: "NAM";
3154
+ HAB: "HAB";
3155
+ ZEP: "ZEP";
3156
+ HAG: "HAG";
3157
+ ZEC: "ZEC";
3158
+ MAL: "MAL";
3159
+ MAT: "MAT";
3160
+ MRK: "MRK";
3161
+ LUK: "LUK";
3162
+ JHN: "JHN";
3163
+ ACT: "ACT";
3164
+ ROM: "ROM";
3165
+ "1CO": "1CO";
3166
+ "2CO": "2CO";
3167
+ GAL: "GAL";
3168
+ EPH: "EPH";
3169
+ PHP: "PHP";
3170
+ COL: "COL";
3171
+ "1TH": "1TH";
3172
+ "2TH": "2TH";
3173
+ "1TI": "1TI";
3174
+ "2TI": "2TI";
3175
+ TIT: "TIT";
3176
+ PHM: "PHM";
3177
+ HEB: "HEB";
3178
+ JAS: "JAS";
3179
+ "1PE": "1PE";
3180
+ "2PE": "2PE";
3181
+ "1JN": "1JN";
3182
+ "2JN": "2JN";
3183
+ "3JN": "3JN";
3184
+ JUD: "JUD";
3185
+ REV: "REV";
3186
+ TOB: "TOB";
3187
+ JDT: "JDT";
3188
+ ESG: "ESG";
3189
+ WIS: "WIS";
3190
+ SIR: "SIR";
3191
+ BAR: "BAR";
3192
+ LJE: "LJE";
3193
+ S3Y: "S3Y";
3194
+ SUS: "SUS";
3195
+ BEL: "BEL";
3196
+ "1MA": "1MA";
3197
+ "2MA": "2MA";
3198
+ "3MA": "3MA";
3199
+ "4MA": "4MA";
3200
+ "1ES": "1ES";
3201
+ "2ES": "2ES";
3202
+ MAN: "MAN";
3203
+ PS2: "PS2";
3204
+ ODA: "ODA";
3205
+ PSS: "PSS";
3206
+ EZA: "EZA";
3207
+ "5EZ": "5EZ";
3208
+ "6EZ": "6EZ";
3209
+ DAG: "DAG";
3210
+ PS3: "PS3";
3211
+ "2BA": "2BA";
3212
+ LBA: "LBA";
3213
+ JUB: "JUB";
3214
+ ENO: "ENO";
3215
+ "1MQ": "1MQ";
3216
+ "2MQ": "2MQ";
3217
+ "3MQ": "3MQ";
3218
+ REP: "REP";
3219
+ "4BA": "4BA";
3220
+ LAO: "LAO";
3221
+ }>;
3222
+ chapter: z.ZodNumber;
3223
+ verse: z.ZodNumber;
3224
+ content: z.ZodOptional<z.ZodString>;
3225
+ endChapter: z.ZodOptional<z.ZodNumber>;
3226
+ endVerse: z.ZodOptional<z.ZodNumber>;
3227
+ }, z.core.$strip>>;
3228
+ }, z.core.$strip>;
3229
+ thisEventApiLink: z.ZodString;
3230
+ }, z.core.$strip>;
3231
+ export type ApiDatasetEvent = z.infer<typeof ApiDatasetEventSchema>;
3232
+ /**
3233
+ * Defines a Zod schema for a summary of a people group in a dataset.
3234
+ */
3235
+ export declare const ApiDatasetPeopleGroupSummarySchema: z.ZodObject<{
3236
+ id: z.ZodString;
3237
+ name: z.ZodString;
3238
+ numberOfMembers: z.ZodNumber;
3239
+ thisPeopleGroupApiLink: z.ZodString;
3240
+ }, z.core.$strip>;
3241
+ export type ApiDatasetPeopleGroupSummary = z.infer<typeof ApiDatasetPeopleGroupSummarySchema>;
3242
+ /**
3243
+ * Defines a Zod schema for the list of people groups in a dataset.
3244
+ * Maps to the /api/d/:datasetId/groups.json endpoint.
3245
+ */
3246
+ export declare const ApiDatasetPeopleGroupsSchema: z.ZodObject<{
3247
+ dataset: z.ZodLazy<z.ZodObject<{
3248
+ id: z.ZodString;
3249
+ name: z.ZodString;
3250
+ website: z.ZodString;
3251
+ licenseUrl: z.ZodString;
3252
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3253
+ englishName: z.ZodString;
3254
+ language: z.ZodString;
3255
+ textDirection: z.ZodEnum<{
3256
+ ltr: "ltr";
3257
+ rtl: "rtl";
3258
+ }>;
3259
+ listOfBooksApiLink: z.ZodString;
3260
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
3261
+ numberOfBooks: z.ZodNumber;
3262
+ totalNumberOfChapters: z.ZodNumber;
3263
+ totalNumberOfVerses: z.ZodNumber;
3264
+ totalNumberOfReferences: z.ZodNumber;
3265
+ languageName: z.ZodOptional<z.ZodString>;
3266
+ languageEnglishName: z.ZodOptional<z.ZodString>;
3267
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
3268
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
3269
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
3270
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
3271
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
3272
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
3273
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
3274
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
3275
+ }, z.core.$strip>>;
3276
+ groups: z.ZodArray<z.ZodObject<{
3277
+ id: z.ZodString;
3278
+ name: z.ZodString;
3279
+ numberOfMembers: z.ZodNumber;
3280
+ thisPeopleGroupApiLink: z.ZodString;
3281
+ }, z.core.$strip>>;
3282
+ }, z.core.$strip>;
3283
+ export type ApiDatasetPeopleGroups = z.infer<typeof ApiDatasetPeopleGroupsSchema>;
3284
+ /**
3285
+ * Defines a Zod schema for the information about a people group in a dataset.
3286
+ * Maps to the /api/d/:datasetId/groups/:groupId.json endpoint.
3287
+ */
3288
+ export declare const ApiDatasetPeopleGroupSchema: z.ZodObject<{
3289
+ dataset: z.ZodLazy<z.ZodObject<{
3290
+ id: z.ZodString;
3291
+ name: z.ZodString;
3292
+ website: z.ZodString;
3293
+ licenseUrl: z.ZodString;
3294
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3295
+ englishName: z.ZodString;
3296
+ language: z.ZodString;
3297
+ textDirection: z.ZodEnum<{
3298
+ ltr: "ltr";
3299
+ rtl: "rtl";
3300
+ }>;
3301
+ listOfBooksApiLink: z.ZodString;
3302
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
3303
+ numberOfBooks: z.ZodNumber;
3304
+ totalNumberOfChapters: z.ZodNumber;
3305
+ totalNumberOfVerses: z.ZodNumber;
3306
+ totalNumberOfReferences: z.ZodNumber;
3307
+ languageName: z.ZodOptional<z.ZodString>;
3308
+ languageEnglishName: z.ZodOptional<z.ZodString>;
3309
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
3310
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
3311
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
3312
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
3313
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
3314
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
3315
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
3316
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
3317
+ }, z.core.$strip>>;
3318
+ group: z.ZodObject<{
3319
+ id: z.ZodString;
3320
+ name: z.ZodString;
3321
+ members: z.ZodOptional<z.ZodArray<z.ZodObject<{
3322
+ id: z.ZodString;
3323
+ type: z.ZodEnum<{
3324
+ people: "people";
3325
+ places: "places";
3326
+ events: "events";
3327
+ groups: "groups";
3328
+ }>;
3329
+ name: z.ZodOptional<z.ZodString>;
3330
+ apiLink: z.ZodOptional<z.ZodString>;
3331
+ }, z.core.$strip>>>;
3332
+ events: z.ZodOptional<z.ZodArray<z.ZodObject<{
3333
+ id: z.ZodString;
3334
+ type: z.ZodEnum<{
3335
+ people: "people";
3336
+ places: "places";
3337
+ events: "events";
3338
+ groups: "groups";
3339
+ }>;
3340
+ name: z.ZodOptional<z.ZodString>;
3341
+ apiLink: z.ZodOptional<z.ZodString>;
3342
+ }, z.core.$strip>>>;
3343
+ references: z.ZodArray<z.ZodObject<{
3344
+ book: z.ZodEnum<{
3345
+ GEN: "GEN";
3346
+ EXO: "EXO";
3347
+ LEV: "LEV";
3348
+ NUM: "NUM";
3349
+ DEU: "DEU";
3350
+ JOS: "JOS";
3351
+ JDG: "JDG";
3352
+ RUT: "RUT";
3353
+ "1SA": "1SA";
3354
+ "2SA": "2SA";
3355
+ "1KI": "1KI";
3356
+ "2KI": "2KI";
3357
+ "1CH": "1CH";
3358
+ "2CH": "2CH";
3359
+ EZR: "EZR";
3360
+ NEH: "NEH";
3361
+ EST: "EST";
3362
+ JOB: "JOB";
3363
+ PSA: "PSA";
3364
+ PRO: "PRO";
3365
+ ECC: "ECC";
3366
+ SNG: "SNG";
3367
+ ISA: "ISA";
3368
+ JER: "JER";
3369
+ LAM: "LAM";
3370
+ EZK: "EZK";
3371
+ DAN: "DAN";
3372
+ HOS: "HOS";
3373
+ JOL: "JOL";
3374
+ AMO: "AMO";
3375
+ OBA: "OBA";
3376
+ JON: "JON";
3377
+ MIC: "MIC";
3378
+ NAM: "NAM";
3379
+ HAB: "HAB";
3380
+ ZEP: "ZEP";
3381
+ HAG: "HAG";
3382
+ ZEC: "ZEC";
3383
+ MAL: "MAL";
3384
+ MAT: "MAT";
3385
+ MRK: "MRK";
3386
+ LUK: "LUK";
3387
+ JHN: "JHN";
3388
+ ACT: "ACT";
3389
+ ROM: "ROM";
3390
+ "1CO": "1CO";
3391
+ "2CO": "2CO";
3392
+ GAL: "GAL";
3393
+ EPH: "EPH";
3394
+ PHP: "PHP";
3395
+ COL: "COL";
3396
+ "1TH": "1TH";
3397
+ "2TH": "2TH";
3398
+ "1TI": "1TI";
3399
+ "2TI": "2TI";
3400
+ TIT: "TIT";
3401
+ PHM: "PHM";
3402
+ HEB: "HEB";
3403
+ JAS: "JAS";
3404
+ "1PE": "1PE";
3405
+ "2PE": "2PE";
3406
+ "1JN": "1JN";
3407
+ "2JN": "2JN";
3408
+ "3JN": "3JN";
3409
+ JUD: "JUD";
3410
+ REV: "REV";
3411
+ TOB: "TOB";
3412
+ JDT: "JDT";
3413
+ ESG: "ESG";
3414
+ WIS: "WIS";
3415
+ SIR: "SIR";
3416
+ BAR: "BAR";
3417
+ LJE: "LJE";
3418
+ S3Y: "S3Y";
3419
+ SUS: "SUS";
3420
+ BEL: "BEL";
3421
+ "1MA": "1MA";
3422
+ "2MA": "2MA";
3423
+ "3MA": "3MA";
3424
+ "4MA": "4MA";
3425
+ "1ES": "1ES";
3426
+ "2ES": "2ES";
3427
+ MAN: "MAN";
3428
+ PS2: "PS2";
3429
+ ODA: "ODA";
3430
+ PSS: "PSS";
3431
+ EZA: "EZA";
3432
+ "5EZ": "5EZ";
3433
+ "6EZ": "6EZ";
3434
+ DAG: "DAG";
3435
+ PS3: "PS3";
3436
+ "2BA": "2BA";
3437
+ LBA: "LBA";
3438
+ JUB: "JUB";
3439
+ ENO: "ENO";
3440
+ "1MQ": "1MQ";
3441
+ "2MQ": "2MQ";
3442
+ "3MQ": "3MQ";
3443
+ REP: "REP";
3444
+ "4BA": "4BA";
3445
+ LAO: "LAO";
3446
+ }>;
3447
+ chapter: z.ZodNumber;
3448
+ verse: z.ZodNumber;
3449
+ content: z.ZodOptional<z.ZodString>;
3450
+ endChapter: z.ZodOptional<z.ZodNumber>;
3451
+ endVerse: z.ZodOptional<z.ZodNumber>;
3452
+ }, z.core.$strip>>;
3453
+ }, z.core.$strip>;
3454
+ thisPeopleGroupApiLink: z.ZodString;
3455
+ }, z.core.$strip>;
3456
+ export type ApiDatasetPeopleGroup = z.infer<typeof ApiDatasetPeopleGroupSchema>;
3457
+ /**
3458
+ * Defines a Zod schema for a person that appears in a chapter of a dataset.
3459
+ */
3460
+ export declare const ApiDatasetChapterPersonSchema: z.ZodObject<{
3461
+ id: z.ZodString;
3462
+ name: z.ZodString;
3463
+ isProperName: z.ZodOptional<z.ZodBoolean>;
3464
+ gender: z.ZodOptional<z.ZodString>;
3465
+ birthYear: z.ZodOptional<z.ZodNumber>;
3466
+ deathYear: z.ZodOptional<z.ZodNumber>;
3467
+ apiLink: z.ZodString;
3468
+ verses: z.ZodArray<z.ZodNumber>;
3469
+ }, z.core.$strip>;
3470
+ export type ApiDatasetChapterPerson = z.infer<typeof ApiDatasetChapterPersonSchema>;
3471
+ /**
3472
+ * Defines a Zod schema for a place that appears in a chapter of a dataset.
3473
+ */
3474
+ export declare const ApiDatasetChapterPlaceSchema: z.ZodObject<{
3475
+ id: z.ZodString;
3476
+ name: z.ZodString;
3477
+ featureType: z.ZodOptional<z.ZodString>;
3478
+ latitude: z.ZodOptional<z.ZodNumber>;
3479
+ longitude: z.ZodOptional<z.ZodNumber>;
3480
+ apiLink: z.ZodString;
3481
+ verses: z.ZodArray<z.ZodNumber>;
3482
+ }, z.core.$strip>;
3483
+ export type ApiDatasetChapterPlace = z.infer<typeof ApiDatasetChapterPlaceSchema>;
3484
+ /**
3485
+ * Defines a Zod schema for an event that appears in a chapter of a dataset.
3486
+ */
3487
+ export declare const ApiDatasetChapterEventSchema: z.ZodObject<{
3488
+ id: z.ZodString;
3489
+ name: z.ZodString;
3490
+ startDate: z.ZodOptional<z.ZodString>;
3491
+ apiLink: z.ZodString;
3492
+ verses: z.ZodArray<z.ZodNumber>;
3493
+ }, z.core.$strip>;
3494
+ export type ApiDatasetChapterEvent = z.infer<typeof ApiDatasetChapterEventSchema>;
3495
+ /**
3496
+ * Defines a Zod schema for the entity data for a chapter in a dataset.
3497
+ */
3498
+ export declare const ApiDatasetEntityChapterDataSchema: z.ZodObject<{
3499
+ number: z.ZodNumber;
3500
+ people: z.ZodArray<z.ZodObject<{
3501
+ id: z.ZodString;
3502
+ name: z.ZodString;
3503
+ isProperName: z.ZodOptional<z.ZodBoolean>;
3504
+ gender: z.ZodOptional<z.ZodString>;
3505
+ birthYear: z.ZodOptional<z.ZodNumber>;
3506
+ deathYear: z.ZodOptional<z.ZodNumber>;
3507
+ apiLink: z.ZodString;
3508
+ verses: z.ZodArray<z.ZodNumber>;
3509
+ }, z.core.$strip>>;
3510
+ places: z.ZodArray<z.ZodObject<{
3511
+ id: z.ZodString;
3512
+ name: z.ZodString;
3513
+ featureType: z.ZodOptional<z.ZodString>;
3514
+ latitude: z.ZodOptional<z.ZodNumber>;
3515
+ longitude: z.ZodOptional<z.ZodNumber>;
3516
+ apiLink: z.ZodString;
3517
+ verses: z.ZodArray<z.ZodNumber>;
3518
+ }, z.core.$strip>>;
3519
+ events: z.ZodArray<z.ZodObject<{
3520
+ id: z.ZodString;
3521
+ name: z.ZodString;
3522
+ startDate: z.ZodOptional<z.ZodString>;
3523
+ apiLink: z.ZodString;
3524
+ verses: z.ZodArray<z.ZodNumber>;
3525
+ }, z.core.$strip>>;
3526
+ }, z.core.$strip>;
3527
+ export type ApiDatasetEntityChapterData = z.infer<typeof ApiDatasetEntityChapterDataSchema>;
3528
+ /**
3529
+ * Defines a Zod schema for the entities that appear in a chapter of a book for a dataset.
3530
+ * Maps to the /api/d/:datasetId/:bookId/:chapterNumber.json endpoint for datasets that contain entities.
3531
+ */
3532
+ export declare const ApiDatasetEntityBookChapterSchema: z.ZodObject<{
3533
+ dataset: z.ZodLazy<z.ZodObject<{
3534
+ id: z.ZodString;
3535
+ name: z.ZodString;
3536
+ website: z.ZodString;
3537
+ licenseUrl: z.ZodString;
3538
+ licenseNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3539
+ englishName: z.ZodString;
3540
+ language: z.ZodString;
3541
+ textDirection: z.ZodEnum<{
3542
+ ltr: "ltr";
3543
+ rtl: "rtl";
3544
+ }>;
3545
+ listOfBooksApiLink: z.ZodString;
3546
+ availableFormats: z.ZodArray<z.ZodLiteral<"json">>;
3547
+ numberOfBooks: z.ZodNumber;
3548
+ totalNumberOfChapters: z.ZodNumber;
3549
+ totalNumberOfVerses: z.ZodNumber;
3550
+ totalNumberOfReferences: z.ZodNumber;
3551
+ languageName: z.ZodOptional<z.ZodString>;
3552
+ languageEnglishName: z.ZodOptional<z.ZodString>;
3553
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
3554
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
3555
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
3556
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
3557
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
3558
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
3559
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
3560
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
3561
+ }, z.core.$strip>>;
3562
+ book: z.ZodLazy<z.ZodObject<{
3563
+ id: z.ZodEnum<{
3564
+ GEN: "GEN";
3565
+ EXO: "EXO";
3566
+ LEV: "LEV";
3567
+ NUM: "NUM";
3568
+ DEU: "DEU";
3569
+ JOS: "JOS";
3570
+ JDG: "JDG";
3571
+ RUT: "RUT";
3572
+ "1SA": "1SA";
3573
+ "2SA": "2SA";
3574
+ "1KI": "1KI";
3575
+ "2KI": "2KI";
3576
+ "1CH": "1CH";
3577
+ "2CH": "2CH";
3578
+ EZR: "EZR";
3579
+ NEH: "NEH";
3580
+ EST: "EST";
3581
+ JOB: "JOB";
3582
+ PSA: "PSA";
3583
+ PRO: "PRO";
3584
+ ECC: "ECC";
3585
+ SNG: "SNG";
3586
+ ISA: "ISA";
3587
+ JER: "JER";
3588
+ LAM: "LAM";
3589
+ EZK: "EZK";
3590
+ DAN: "DAN";
3591
+ HOS: "HOS";
3592
+ JOL: "JOL";
3593
+ AMO: "AMO";
3594
+ OBA: "OBA";
3595
+ JON: "JON";
3596
+ MIC: "MIC";
3597
+ NAM: "NAM";
3598
+ HAB: "HAB";
3599
+ ZEP: "ZEP";
3600
+ HAG: "HAG";
3601
+ ZEC: "ZEC";
3602
+ MAL: "MAL";
3603
+ MAT: "MAT";
3604
+ MRK: "MRK";
3605
+ LUK: "LUK";
3606
+ JHN: "JHN";
3607
+ ACT: "ACT";
3608
+ ROM: "ROM";
3609
+ "1CO": "1CO";
3610
+ "2CO": "2CO";
3611
+ GAL: "GAL";
3612
+ EPH: "EPH";
3613
+ PHP: "PHP";
3614
+ COL: "COL";
3615
+ "1TH": "1TH";
3616
+ "2TH": "2TH";
3617
+ "1TI": "1TI";
3618
+ "2TI": "2TI";
3619
+ TIT: "TIT";
3620
+ PHM: "PHM";
3621
+ HEB: "HEB";
3622
+ JAS: "JAS";
3623
+ "1PE": "1PE";
3624
+ "2PE": "2PE";
3625
+ "1JN": "1JN";
3626
+ "2JN": "2JN";
3627
+ "3JN": "3JN";
3628
+ JUD: "JUD";
3629
+ REV: "REV";
3630
+ TOB: "TOB";
3631
+ JDT: "JDT";
3632
+ ESG: "ESG";
3633
+ WIS: "WIS";
3634
+ SIR: "SIR";
3635
+ BAR: "BAR";
3636
+ LJE: "LJE";
3637
+ S3Y: "S3Y";
3638
+ SUS: "SUS";
3639
+ BEL: "BEL";
3640
+ "1MA": "1MA";
3641
+ "2MA": "2MA";
3642
+ "3MA": "3MA";
3643
+ "4MA": "4MA";
3644
+ "1ES": "1ES";
3645
+ "2ES": "2ES";
3646
+ MAN: "MAN";
3647
+ PS2: "PS2";
3648
+ ODA: "ODA";
3649
+ PSS: "PSS";
3650
+ EZA: "EZA";
3651
+ "5EZ": "5EZ";
3652
+ "6EZ": "6EZ";
3653
+ DAG: "DAG";
3654
+ PS3: "PS3";
3655
+ "2BA": "2BA";
3656
+ LBA: "LBA";
3657
+ JUB: "JUB";
3658
+ ENO: "ENO";
3659
+ "1MQ": "1MQ";
3660
+ "2MQ": "2MQ";
3661
+ "3MQ": "3MQ";
3662
+ REP: "REP";
3663
+ "4BA": "4BA";
3664
+ LAO: "LAO";
3665
+ }>;
3666
+ order: z.ZodNumber;
3667
+ firstChapterNumber: z.ZodNumber;
3668
+ firstChapterApiLink: z.ZodString;
3669
+ firstChapterReference: z.ZodObject<{
3670
+ datasetId: z.ZodString;
3671
+ book: z.ZodEnum<{
3672
+ GEN: "GEN";
3673
+ EXO: "EXO";
3674
+ LEV: "LEV";
3675
+ NUM: "NUM";
3676
+ DEU: "DEU";
3677
+ JOS: "JOS";
3678
+ JDG: "JDG";
3679
+ RUT: "RUT";
3680
+ "1SA": "1SA";
3681
+ "2SA": "2SA";
3682
+ "1KI": "1KI";
3683
+ "2KI": "2KI";
3684
+ "1CH": "1CH";
3685
+ "2CH": "2CH";
3686
+ EZR: "EZR";
3687
+ NEH: "NEH";
3688
+ EST: "EST";
3689
+ JOB: "JOB";
3690
+ PSA: "PSA";
3691
+ PRO: "PRO";
3692
+ ECC: "ECC";
3693
+ SNG: "SNG";
3694
+ ISA: "ISA";
3695
+ JER: "JER";
3696
+ LAM: "LAM";
3697
+ EZK: "EZK";
3698
+ DAN: "DAN";
3699
+ HOS: "HOS";
3700
+ JOL: "JOL";
3701
+ AMO: "AMO";
3702
+ OBA: "OBA";
3703
+ JON: "JON";
3704
+ MIC: "MIC";
3705
+ NAM: "NAM";
3706
+ HAB: "HAB";
3707
+ ZEP: "ZEP";
3708
+ HAG: "HAG";
3709
+ ZEC: "ZEC";
3710
+ MAL: "MAL";
3711
+ MAT: "MAT";
3712
+ MRK: "MRK";
3713
+ LUK: "LUK";
3714
+ JHN: "JHN";
3715
+ ACT: "ACT";
3716
+ ROM: "ROM";
3717
+ "1CO": "1CO";
3718
+ "2CO": "2CO";
3719
+ GAL: "GAL";
3720
+ EPH: "EPH";
3721
+ PHP: "PHP";
3722
+ COL: "COL";
3723
+ "1TH": "1TH";
3724
+ "2TH": "2TH";
3725
+ "1TI": "1TI";
3726
+ "2TI": "2TI";
3727
+ TIT: "TIT";
3728
+ PHM: "PHM";
3729
+ HEB: "HEB";
3730
+ JAS: "JAS";
3731
+ "1PE": "1PE";
3732
+ "2PE": "2PE";
3733
+ "1JN": "1JN";
3734
+ "2JN": "2JN";
3735
+ "3JN": "3JN";
3736
+ JUD: "JUD";
3737
+ REV: "REV";
3738
+ TOB: "TOB";
3739
+ JDT: "JDT";
3740
+ ESG: "ESG";
3741
+ WIS: "WIS";
3742
+ SIR: "SIR";
3743
+ BAR: "BAR";
3744
+ LJE: "LJE";
3745
+ S3Y: "S3Y";
3746
+ SUS: "SUS";
3747
+ BEL: "BEL";
3748
+ "1MA": "1MA";
3749
+ "2MA": "2MA";
3750
+ "3MA": "3MA";
3751
+ "4MA": "4MA";
3752
+ "1ES": "1ES";
3753
+ "2ES": "2ES";
3754
+ MAN: "MAN";
3755
+ PS2: "PS2";
3756
+ ODA: "ODA";
3757
+ PSS: "PSS";
3758
+ EZA: "EZA";
3759
+ "5EZ": "5EZ";
3760
+ "6EZ": "6EZ";
3761
+ DAG: "DAG";
3762
+ PS3: "PS3";
3763
+ "2BA": "2BA";
3764
+ LBA: "LBA";
3765
+ JUB: "JUB";
3766
+ ENO: "ENO";
3767
+ "1MQ": "1MQ";
3768
+ "2MQ": "2MQ";
3769
+ "3MQ": "3MQ";
3770
+ REP: "REP";
3771
+ "4BA": "4BA";
3772
+ LAO: "LAO";
3773
+ }>;
3774
+ chapter: z.ZodInt;
3775
+ }, z.core.$strip>;
3776
+ lastChapterNumber: z.ZodNumber;
3777
+ lastChapterApiLink: z.ZodString;
3778
+ lastChapterReference: z.ZodObject<{
3779
+ datasetId: z.ZodString;
3780
+ book: z.ZodEnum<{
3781
+ GEN: "GEN";
3782
+ EXO: "EXO";
3783
+ LEV: "LEV";
3784
+ NUM: "NUM";
3785
+ DEU: "DEU";
3786
+ JOS: "JOS";
3787
+ JDG: "JDG";
3788
+ RUT: "RUT";
3789
+ "1SA": "1SA";
3790
+ "2SA": "2SA";
3791
+ "1KI": "1KI";
3792
+ "2KI": "2KI";
3793
+ "1CH": "1CH";
3794
+ "2CH": "2CH";
3795
+ EZR: "EZR";
3796
+ NEH: "NEH";
3797
+ EST: "EST";
3798
+ JOB: "JOB";
3799
+ PSA: "PSA";
3800
+ PRO: "PRO";
3801
+ ECC: "ECC";
3802
+ SNG: "SNG";
3803
+ ISA: "ISA";
3804
+ JER: "JER";
3805
+ LAM: "LAM";
3806
+ EZK: "EZK";
3807
+ DAN: "DAN";
3808
+ HOS: "HOS";
3809
+ JOL: "JOL";
3810
+ AMO: "AMO";
3811
+ OBA: "OBA";
3812
+ JON: "JON";
3813
+ MIC: "MIC";
3814
+ NAM: "NAM";
3815
+ HAB: "HAB";
3816
+ ZEP: "ZEP";
3817
+ HAG: "HAG";
3818
+ ZEC: "ZEC";
3819
+ MAL: "MAL";
3820
+ MAT: "MAT";
3821
+ MRK: "MRK";
3822
+ LUK: "LUK";
3823
+ JHN: "JHN";
3824
+ ACT: "ACT";
3825
+ ROM: "ROM";
3826
+ "1CO": "1CO";
3827
+ "2CO": "2CO";
3828
+ GAL: "GAL";
3829
+ EPH: "EPH";
3830
+ PHP: "PHP";
3831
+ COL: "COL";
3832
+ "1TH": "1TH";
3833
+ "2TH": "2TH";
3834
+ "1TI": "1TI";
3835
+ "2TI": "2TI";
3836
+ TIT: "TIT";
3837
+ PHM: "PHM";
3838
+ HEB: "HEB";
3839
+ JAS: "JAS";
3840
+ "1PE": "1PE";
3841
+ "2PE": "2PE";
3842
+ "1JN": "1JN";
3843
+ "2JN": "2JN";
3844
+ "3JN": "3JN";
3845
+ JUD: "JUD";
3846
+ REV: "REV";
3847
+ TOB: "TOB";
3848
+ JDT: "JDT";
3849
+ ESG: "ESG";
3850
+ WIS: "WIS";
3851
+ SIR: "SIR";
3852
+ BAR: "BAR";
3853
+ LJE: "LJE";
3854
+ S3Y: "S3Y";
3855
+ SUS: "SUS";
3856
+ BEL: "BEL";
3857
+ "1MA": "1MA";
3858
+ "2MA": "2MA";
3859
+ "3MA": "3MA";
3860
+ "4MA": "4MA";
3861
+ "1ES": "1ES";
3862
+ "2ES": "2ES";
3863
+ MAN: "MAN";
3864
+ PS2: "PS2";
3865
+ ODA: "ODA";
3866
+ PSS: "PSS";
3867
+ EZA: "EZA";
3868
+ "5EZ": "5EZ";
3869
+ "6EZ": "6EZ";
3870
+ DAG: "DAG";
3871
+ PS3: "PS3";
3872
+ "2BA": "2BA";
3873
+ LBA: "LBA";
3874
+ JUB: "JUB";
3875
+ ENO: "ENO";
3876
+ "1MQ": "1MQ";
3877
+ "2MQ": "2MQ";
3878
+ "3MQ": "3MQ";
3879
+ REP: "REP";
3880
+ "4BA": "4BA";
3881
+ LAO: "LAO";
3882
+ }>;
3883
+ chapter: z.ZodInt;
3884
+ }, z.core.$strip>;
3885
+ numberOfChapters: z.ZodNumber;
3886
+ totalNumberOfVerses: z.ZodNumber;
3887
+ totalNumberOfReferences: z.ZodNumber;
3888
+ }, z.core.$strip>>;
3889
+ chapter: z.ZodObject<{
3890
+ number: z.ZodNumber;
3891
+ people: z.ZodArray<z.ZodObject<{
3892
+ id: z.ZodString;
3893
+ name: z.ZodString;
3894
+ isProperName: z.ZodOptional<z.ZodBoolean>;
3895
+ gender: z.ZodOptional<z.ZodString>;
3896
+ birthYear: z.ZodOptional<z.ZodNumber>;
3897
+ deathYear: z.ZodOptional<z.ZodNumber>;
3898
+ apiLink: z.ZodString;
3899
+ verses: z.ZodArray<z.ZodNumber>;
3900
+ }, z.core.$strip>>;
3901
+ places: z.ZodArray<z.ZodObject<{
3902
+ id: z.ZodString;
3903
+ name: z.ZodString;
3904
+ featureType: z.ZodOptional<z.ZodString>;
3905
+ latitude: z.ZodOptional<z.ZodNumber>;
3906
+ longitude: z.ZodOptional<z.ZodNumber>;
3907
+ apiLink: z.ZodString;
3908
+ verses: z.ZodArray<z.ZodNumber>;
3909
+ }, z.core.$strip>>;
3910
+ events: z.ZodArray<z.ZodObject<{
3911
+ id: z.ZodString;
3912
+ name: z.ZodString;
3913
+ startDate: z.ZodOptional<z.ZodString>;
3914
+ apiLink: z.ZodString;
3915
+ verses: z.ZodArray<z.ZodNumber>;
3916
+ }, z.core.$strip>>;
3917
+ }, z.core.$strip>;
3918
+ thisChapterLink: z.ZodString;
3919
+ thisChapterReference: z.ZodLazy<z.ZodObject<{
3920
+ datasetId: z.ZodString;
3921
+ book: z.ZodEnum<{
3922
+ GEN: "GEN";
3923
+ EXO: "EXO";
3924
+ LEV: "LEV";
3925
+ NUM: "NUM";
3926
+ DEU: "DEU";
3927
+ JOS: "JOS";
3928
+ JDG: "JDG";
3929
+ RUT: "RUT";
3930
+ "1SA": "1SA";
3931
+ "2SA": "2SA";
3932
+ "1KI": "1KI";
3933
+ "2KI": "2KI";
3934
+ "1CH": "1CH";
3935
+ "2CH": "2CH";
3936
+ EZR: "EZR";
3937
+ NEH: "NEH";
3938
+ EST: "EST";
3939
+ JOB: "JOB";
3940
+ PSA: "PSA";
3941
+ PRO: "PRO";
3942
+ ECC: "ECC";
3943
+ SNG: "SNG";
3944
+ ISA: "ISA";
3945
+ JER: "JER";
3946
+ LAM: "LAM";
3947
+ EZK: "EZK";
3948
+ DAN: "DAN";
3949
+ HOS: "HOS";
3950
+ JOL: "JOL";
3951
+ AMO: "AMO";
3952
+ OBA: "OBA";
3953
+ JON: "JON";
3954
+ MIC: "MIC";
3955
+ NAM: "NAM";
3956
+ HAB: "HAB";
3957
+ ZEP: "ZEP";
3958
+ HAG: "HAG";
3959
+ ZEC: "ZEC";
3960
+ MAL: "MAL";
3961
+ MAT: "MAT";
3962
+ MRK: "MRK";
3963
+ LUK: "LUK";
3964
+ JHN: "JHN";
3965
+ ACT: "ACT";
3966
+ ROM: "ROM";
3967
+ "1CO": "1CO";
3968
+ "2CO": "2CO";
3969
+ GAL: "GAL";
3970
+ EPH: "EPH";
3971
+ PHP: "PHP";
3972
+ COL: "COL";
3973
+ "1TH": "1TH";
3974
+ "2TH": "2TH";
3975
+ "1TI": "1TI";
3976
+ "2TI": "2TI";
3977
+ TIT: "TIT";
3978
+ PHM: "PHM";
3979
+ HEB: "HEB";
3980
+ JAS: "JAS";
3981
+ "1PE": "1PE";
3982
+ "2PE": "2PE";
3983
+ "1JN": "1JN";
3984
+ "2JN": "2JN";
3985
+ "3JN": "3JN";
3986
+ JUD: "JUD";
3987
+ REV: "REV";
3988
+ TOB: "TOB";
3989
+ JDT: "JDT";
3990
+ ESG: "ESG";
3991
+ WIS: "WIS";
3992
+ SIR: "SIR";
3993
+ BAR: "BAR";
3994
+ LJE: "LJE";
3995
+ S3Y: "S3Y";
3996
+ SUS: "SUS";
3997
+ BEL: "BEL";
3998
+ "1MA": "1MA";
3999
+ "2MA": "2MA";
4000
+ "3MA": "3MA";
4001
+ "4MA": "4MA";
4002
+ "1ES": "1ES";
4003
+ "2ES": "2ES";
4004
+ MAN: "MAN";
4005
+ PS2: "PS2";
4006
+ ODA: "ODA";
4007
+ PSS: "PSS";
4008
+ EZA: "EZA";
4009
+ "5EZ": "5EZ";
4010
+ "6EZ": "6EZ";
4011
+ DAG: "DAG";
4012
+ PS3: "PS3";
4013
+ "2BA": "2BA";
4014
+ LBA: "LBA";
4015
+ JUB: "JUB";
4016
+ ENO: "ENO";
4017
+ "1MQ": "1MQ";
4018
+ "2MQ": "2MQ";
4019
+ "3MQ": "3MQ";
4020
+ REP: "REP";
4021
+ "4BA": "4BA";
4022
+ LAO: "LAO";
4023
+ }>;
4024
+ chapter: z.ZodInt;
4025
+ }, z.core.$strip>>;
4026
+ nextChapterApiLink: z.ZodNullable<z.ZodString>;
4027
+ nextChapterReference: z.ZodNullable<z.ZodLazy<z.ZodObject<{
4028
+ datasetId: z.ZodString;
4029
+ book: z.ZodEnum<{
4030
+ GEN: "GEN";
4031
+ EXO: "EXO";
4032
+ LEV: "LEV";
4033
+ NUM: "NUM";
4034
+ DEU: "DEU";
4035
+ JOS: "JOS";
4036
+ JDG: "JDG";
4037
+ RUT: "RUT";
4038
+ "1SA": "1SA";
4039
+ "2SA": "2SA";
4040
+ "1KI": "1KI";
4041
+ "2KI": "2KI";
4042
+ "1CH": "1CH";
4043
+ "2CH": "2CH";
4044
+ EZR: "EZR";
4045
+ NEH: "NEH";
4046
+ EST: "EST";
4047
+ JOB: "JOB";
4048
+ PSA: "PSA";
4049
+ PRO: "PRO";
4050
+ ECC: "ECC";
4051
+ SNG: "SNG";
4052
+ ISA: "ISA";
4053
+ JER: "JER";
4054
+ LAM: "LAM";
4055
+ EZK: "EZK";
4056
+ DAN: "DAN";
4057
+ HOS: "HOS";
4058
+ JOL: "JOL";
4059
+ AMO: "AMO";
4060
+ OBA: "OBA";
4061
+ JON: "JON";
4062
+ MIC: "MIC";
4063
+ NAM: "NAM";
4064
+ HAB: "HAB";
4065
+ ZEP: "ZEP";
4066
+ HAG: "HAG";
4067
+ ZEC: "ZEC";
4068
+ MAL: "MAL";
4069
+ MAT: "MAT";
4070
+ MRK: "MRK";
4071
+ LUK: "LUK";
4072
+ JHN: "JHN";
4073
+ ACT: "ACT";
4074
+ ROM: "ROM";
4075
+ "1CO": "1CO";
4076
+ "2CO": "2CO";
4077
+ GAL: "GAL";
4078
+ EPH: "EPH";
4079
+ PHP: "PHP";
4080
+ COL: "COL";
4081
+ "1TH": "1TH";
4082
+ "2TH": "2TH";
4083
+ "1TI": "1TI";
4084
+ "2TI": "2TI";
4085
+ TIT: "TIT";
4086
+ PHM: "PHM";
4087
+ HEB: "HEB";
4088
+ JAS: "JAS";
4089
+ "1PE": "1PE";
4090
+ "2PE": "2PE";
4091
+ "1JN": "1JN";
4092
+ "2JN": "2JN";
4093
+ "3JN": "3JN";
4094
+ JUD: "JUD";
4095
+ REV: "REV";
4096
+ TOB: "TOB";
4097
+ JDT: "JDT";
4098
+ ESG: "ESG";
4099
+ WIS: "WIS";
4100
+ SIR: "SIR";
4101
+ BAR: "BAR";
4102
+ LJE: "LJE";
4103
+ S3Y: "S3Y";
4104
+ SUS: "SUS";
4105
+ BEL: "BEL";
4106
+ "1MA": "1MA";
4107
+ "2MA": "2MA";
4108
+ "3MA": "3MA";
4109
+ "4MA": "4MA";
4110
+ "1ES": "1ES";
4111
+ "2ES": "2ES";
4112
+ MAN: "MAN";
4113
+ PS2: "PS2";
4114
+ ODA: "ODA";
4115
+ PSS: "PSS";
4116
+ EZA: "EZA";
4117
+ "5EZ": "5EZ";
4118
+ "6EZ": "6EZ";
4119
+ DAG: "DAG";
4120
+ PS3: "PS3";
4121
+ "2BA": "2BA";
4122
+ LBA: "LBA";
4123
+ JUB: "JUB";
4124
+ ENO: "ENO";
4125
+ "1MQ": "1MQ";
4126
+ "2MQ": "2MQ";
4127
+ "3MQ": "3MQ";
4128
+ REP: "REP";
4129
+ "4BA": "4BA";
4130
+ LAO: "LAO";
4131
+ }>;
4132
+ chapter: z.ZodInt;
4133
+ }, z.core.$strip>>>;
4134
+ previousChapterApiLink: z.ZodNullable<z.ZodString>;
4135
+ previousChapterReference: z.ZodNullable<z.ZodLazy<z.ZodObject<{
4136
+ datasetId: z.ZodString;
4137
+ book: z.ZodEnum<{
2005
4138
  GEN: "GEN";
2006
4139
  EXO: "EXO";
2007
4140
  LEV: "LEV";
@@ -2104,231 +4237,13 @@ export declare const ApiDatasetBooksSchema: z.ZodObject<{
2104
4237
  "4BA": "4BA";
2105
4238
  LAO: "LAO";
2106
4239
  }>;
2107
- order: z.ZodNumber;
2108
- firstChapterNumber: z.ZodNumber;
2109
- firstChapterApiLink: z.ZodString;
2110
- firstChapterReference: z.ZodObject<{
2111
- datasetId: z.ZodString;
2112
- book: z.ZodEnum<{
2113
- GEN: "GEN";
2114
- EXO: "EXO";
2115
- LEV: "LEV";
2116
- NUM: "NUM";
2117
- DEU: "DEU";
2118
- JOS: "JOS";
2119
- JDG: "JDG";
2120
- RUT: "RUT";
2121
- "1SA": "1SA";
2122
- "2SA": "2SA";
2123
- "1KI": "1KI";
2124
- "2KI": "2KI";
2125
- "1CH": "1CH";
2126
- "2CH": "2CH";
2127
- EZR: "EZR";
2128
- NEH: "NEH";
2129
- EST: "EST";
2130
- JOB: "JOB";
2131
- PSA: "PSA";
2132
- PRO: "PRO";
2133
- ECC: "ECC";
2134
- SNG: "SNG";
2135
- ISA: "ISA";
2136
- JER: "JER";
2137
- LAM: "LAM";
2138
- EZK: "EZK";
2139
- DAN: "DAN";
2140
- HOS: "HOS";
2141
- JOL: "JOL";
2142
- AMO: "AMO";
2143
- OBA: "OBA";
2144
- JON: "JON";
2145
- MIC: "MIC";
2146
- NAM: "NAM";
2147
- HAB: "HAB";
2148
- ZEP: "ZEP";
2149
- HAG: "HAG";
2150
- ZEC: "ZEC";
2151
- MAL: "MAL";
2152
- MAT: "MAT";
2153
- MRK: "MRK";
2154
- LUK: "LUK";
2155
- JHN: "JHN";
2156
- ACT: "ACT";
2157
- ROM: "ROM";
2158
- "1CO": "1CO";
2159
- "2CO": "2CO";
2160
- GAL: "GAL";
2161
- EPH: "EPH";
2162
- PHP: "PHP";
2163
- COL: "COL";
2164
- "1TH": "1TH";
2165
- "2TH": "2TH";
2166
- "1TI": "1TI";
2167
- "2TI": "2TI";
2168
- TIT: "TIT";
2169
- PHM: "PHM";
2170
- HEB: "HEB";
2171
- JAS: "JAS";
2172
- "1PE": "1PE";
2173
- "2PE": "2PE";
2174
- "1JN": "1JN";
2175
- "2JN": "2JN";
2176
- "3JN": "3JN";
2177
- JUD: "JUD";
2178
- REV: "REV";
2179
- TOB: "TOB";
2180
- JDT: "JDT";
2181
- ESG: "ESG";
2182
- WIS: "WIS";
2183
- SIR: "SIR";
2184
- BAR: "BAR";
2185
- LJE: "LJE";
2186
- S3Y: "S3Y";
2187
- SUS: "SUS";
2188
- BEL: "BEL";
2189
- "1MA": "1MA";
2190
- "2MA": "2MA";
2191
- "3MA": "3MA";
2192
- "4MA": "4MA";
2193
- "1ES": "1ES";
2194
- "2ES": "2ES";
2195
- MAN: "MAN";
2196
- PS2: "PS2";
2197
- ODA: "ODA";
2198
- PSS: "PSS";
2199
- EZA: "EZA";
2200
- "5EZ": "5EZ";
2201
- "6EZ": "6EZ";
2202
- DAG: "DAG";
2203
- PS3: "PS3";
2204
- "2BA": "2BA";
2205
- LBA: "LBA";
2206
- JUB: "JUB";
2207
- ENO: "ENO";
2208
- "1MQ": "1MQ";
2209
- "2MQ": "2MQ";
2210
- "3MQ": "3MQ";
2211
- REP: "REP";
2212
- "4BA": "4BA";
2213
- LAO: "LAO";
2214
- }>;
2215
- chapter: z.ZodInt;
2216
- }, z.core.$strip>;
2217
- lastChapterNumber: z.ZodNumber;
2218
- lastChapterApiLink: z.ZodString;
2219
- lastChapterReference: z.ZodObject<{
2220
- datasetId: z.ZodString;
2221
- book: z.ZodEnum<{
2222
- GEN: "GEN";
2223
- EXO: "EXO";
2224
- LEV: "LEV";
2225
- NUM: "NUM";
2226
- DEU: "DEU";
2227
- JOS: "JOS";
2228
- JDG: "JDG";
2229
- RUT: "RUT";
2230
- "1SA": "1SA";
2231
- "2SA": "2SA";
2232
- "1KI": "1KI";
2233
- "2KI": "2KI";
2234
- "1CH": "1CH";
2235
- "2CH": "2CH";
2236
- EZR: "EZR";
2237
- NEH: "NEH";
2238
- EST: "EST";
2239
- JOB: "JOB";
2240
- PSA: "PSA";
2241
- PRO: "PRO";
2242
- ECC: "ECC";
2243
- SNG: "SNG";
2244
- ISA: "ISA";
2245
- JER: "JER";
2246
- LAM: "LAM";
2247
- EZK: "EZK";
2248
- DAN: "DAN";
2249
- HOS: "HOS";
2250
- JOL: "JOL";
2251
- AMO: "AMO";
2252
- OBA: "OBA";
2253
- JON: "JON";
2254
- MIC: "MIC";
2255
- NAM: "NAM";
2256
- HAB: "HAB";
2257
- ZEP: "ZEP";
2258
- HAG: "HAG";
2259
- ZEC: "ZEC";
2260
- MAL: "MAL";
2261
- MAT: "MAT";
2262
- MRK: "MRK";
2263
- LUK: "LUK";
2264
- JHN: "JHN";
2265
- ACT: "ACT";
2266
- ROM: "ROM";
2267
- "1CO": "1CO";
2268
- "2CO": "2CO";
2269
- GAL: "GAL";
2270
- EPH: "EPH";
2271
- PHP: "PHP";
2272
- COL: "COL";
2273
- "1TH": "1TH";
2274
- "2TH": "2TH";
2275
- "1TI": "1TI";
2276
- "2TI": "2TI";
2277
- TIT: "TIT";
2278
- PHM: "PHM";
2279
- HEB: "HEB";
2280
- JAS: "JAS";
2281
- "1PE": "1PE";
2282
- "2PE": "2PE";
2283
- "1JN": "1JN";
2284
- "2JN": "2JN";
2285
- "3JN": "3JN";
2286
- JUD: "JUD";
2287
- REV: "REV";
2288
- TOB: "TOB";
2289
- JDT: "JDT";
2290
- ESG: "ESG";
2291
- WIS: "WIS";
2292
- SIR: "SIR";
2293
- BAR: "BAR";
2294
- LJE: "LJE";
2295
- S3Y: "S3Y";
2296
- SUS: "SUS";
2297
- BEL: "BEL";
2298
- "1MA": "1MA";
2299
- "2MA": "2MA";
2300
- "3MA": "3MA";
2301
- "4MA": "4MA";
2302
- "1ES": "1ES";
2303
- "2ES": "2ES";
2304
- MAN: "MAN";
2305
- PS2: "PS2";
2306
- ODA: "ODA";
2307
- PSS: "PSS";
2308
- EZA: "EZA";
2309
- "5EZ": "5EZ";
2310
- "6EZ": "6EZ";
2311
- DAG: "DAG";
2312
- PS3: "PS3";
2313
- "2BA": "2BA";
2314
- LBA: "LBA";
2315
- JUB: "JUB";
2316
- ENO: "ENO";
2317
- "1MQ": "1MQ";
2318
- "2MQ": "2MQ";
2319
- "3MQ": "3MQ";
2320
- REP: "REP";
2321
- "4BA": "4BA";
2322
- LAO: "LAO";
2323
- }>;
2324
- chapter: z.ZodInt;
2325
- }, z.core.$strip>;
2326
- numberOfChapters: z.ZodNumber;
2327
- totalNumberOfVerses: z.ZodNumber;
2328
- totalNumberOfReferences: z.ZodNumber;
4240
+ chapter: z.ZodInt;
2329
4241
  }, z.core.$strip>>>;
4242
+ numberOfPeople: z.ZodNumber;
4243
+ numberOfPlaces: z.ZodNumber;
4244
+ numberOfEvents: z.ZodNumber;
2330
4245
  }, z.core.$strip>;
2331
- export type ApiDatasetBooks = z.infer<typeof ApiDatasetBooksSchema>;
4246
+ export type ApiDatasetEntityBookChapter = z.infer<typeof ApiDatasetEntityBookChapterSchema>;
2332
4247
  /**
2333
4248
  * Defines an interface that contains information about the profiles that are available for a commentary.
2334
4249
  */
@@ -6986,6 +8901,14 @@ export declare const ApiDatasetBookChapterSchema: z.ZodObject<{
6986
8901
  totalNumberOfReferences: z.ZodNumber;
6987
8902
  languageName: z.ZodOptional<z.ZodString>;
6988
8903
  languageEnglishName: z.ZodOptional<z.ZodString>;
8904
+ listOfPeopleApiLink: z.ZodOptional<z.ZodString>;
8905
+ listOfPlacesApiLink: z.ZodOptional<z.ZodString>;
8906
+ listOfEventsApiLink: z.ZodOptional<z.ZodString>;
8907
+ listOfPeopleGroupsApiLink: z.ZodOptional<z.ZodString>;
8908
+ totalNumberOfPeople: z.ZodOptional<z.ZodNumber>;
8909
+ totalNumberOfPlaces: z.ZodOptional<z.ZodNumber>;
8910
+ totalNumberOfEvents: z.ZodOptional<z.ZodNumber>;
8911
+ totalNumberOfPeopleGroups: z.ZodOptional<z.ZodNumber>;
6989
8912
  }, z.core.$strip>>;
6990
8913
  book: z.ZodLazy<z.ZodObject<{
6991
8914
  id: z.ZodEnum<{
@@ -8682,6 +10605,27 @@ export declare function listOfCommentaryBooksApiLink(commentaryId: string, prefi
8682
10605
  * @returns
8683
10606
  */
8684
10607
  export declare function listOfDatasetBooksApiLink(datasetId: string, prefix?: string): string;
10608
+ /**
10609
+ * The collections of entities that a dataset can contain.
10610
+ */
10611
+ export type DatasetEntityCollection = DatasetEntityType;
10612
+ /**
10613
+ * Gets the API Link for the list of entities in a collection for a dataset.
10614
+ * @param datasetId The ID of the dataset.
10615
+ * @param collection The collection of entities.
10616
+ * @param extension The extension of the file.
10617
+ * @param prefix The prefix for the API links.
10618
+ */
10619
+ export declare function listOfDatasetEntitiesApiLink(datasetId: string, collection: DatasetEntityCollection, extension?: string, prefix?: string): string;
10620
+ /**
10621
+ * Gets the API Link for an entity in a collection for a dataset.
10622
+ * @param datasetId The ID of the dataset.
10623
+ * @param collection The collection of entities.
10624
+ * @param entityId The ID of the entity.
10625
+ * @param extension The extension of the file.
10626
+ * @param prefix The prefix for the API links.
10627
+ */
10628
+ export declare function datasetEntityApiLink(datasetId: string, collection: DatasetEntityCollection, entityId: string, extension?: string, prefix?: string): string;
8685
10629
  /**
8686
10630
  * The file extension that is used for chapters that are in the simplified format.
8687
10631
  */