@kulupu-linku/sona 0.1.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.
@@ -0,0 +1,1038 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const Word: z.ZodObject<{
4
+ author_verbatim: z.ZodString;
5
+ author_verbatim_source: z.ZodString;
6
+ book: z.ZodUnion<[z.ZodLiteral<"pu">, z.ZodLiteral<"ku suli">, z.ZodLiteral<"ku lili">, z.ZodLiteral<"none">]>;
7
+ coined_era: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"pre-pu">, z.ZodLiteral<"post-pu">, z.ZodLiteral<"post-ku">]>, z.ZodLiteral<"">]>;
8
+ coined_year: z.ZodString;
9
+ creator: z.ZodArray<z.ZodString, "many">;
10
+ ku_data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
11
+ see_also: z.ZodArray<z.ZodString, "many">;
12
+ representations: z.ZodObject<{
13
+ sitelen_emosi: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
14
+ sitelen_pona: z.ZodArray<z.ZodString, "many">;
15
+ sitelen_sitelen: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
16
+ ucsur: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
17
+ }, "strip", z.ZodTypeAny, {
18
+ sitelen_emosi: string;
19
+ sitelen_pona: string[];
20
+ sitelen_sitelen: string;
21
+ ucsur: string;
22
+ }, {
23
+ sitelen_emosi: string;
24
+ sitelen_pona: string[];
25
+ sitelen_sitelen: string;
26
+ ucsur: string;
27
+ }>;
28
+ source_language: z.ZodString;
29
+ usage_category: z.ZodUnion<[z.ZodLiteral<"core">, z.ZodLiteral<"widespread">, z.ZodLiteral<"common">, z.ZodLiteral<"uncommon">, z.ZodLiteral<"rare">, z.ZodLiteral<"obscure">]>;
30
+ word: z.ZodString;
31
+ etymology: z.ZodArray<z.ZodObject<{
32
+ word: z.ZodOptional<z.ZodString>;
33
+ alt: z.ZodOptional<z.ZodString>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ word?: string | undefined;
36
+ alt?: string | undefined;
37
+ }, {
38
+ word?: string | undefined;
39
+ alt?: string | undefined;
40
+ }>, "many">;
41
+ audio: z.ZodObject<{
42
+ jan_lakuse: z.ZodOptional<z.ZodString>;
43
+ kala_asi: z.ZodString;
44
+ }, "strip", z.ZodTypeAny, {
45
+ kala_asi: string;
46
+ jan_lakuse?: string | undefined;
47
+ }, {
48
+ kala_asi: string;
49
+ jan_lakuse?: string | undefined;
50
+ }>;
51
+ pu_verbatim: z.ZodOptional<z.ZodObject<{
52
+ en: z.ZodString;
53
+ fr: z.ZodString;
54
+ de: z.ZodString;
55
+ eo: z.ZodString;
56
+ }, "strip", z.ZodTypeAny, {
57
+ en: string;
58
+ fr: string;
59
+ de: string;
60
+ eo: string;
61
+ }, {
62
+ en: string;
63
+ fr: string;
64
+ de: string;
65
+ eo: string;
66
+ }>>;
67
+ recognition: z.ZodRecord<z.ZodType<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, z.ZodTypeDef, `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`>, z.ZodNumber>;
68
+ }, "strip", z.ZodTypeAny, {
69
+ author_verbatim: string;
70
+ author_verbatim_source: string;
71
+ book: "pu" | "ku suli" | "ku lili" | "none";
72
+ coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
73
+ coined_year: string;
74
+ creator: string[];
75
+ see_also: string[];
76
+ representations: {
77
+ sitelen_emosi: string;
78
+ sitelen_pona: string[];
79
+ sitelen_sitelen: string;
80
+ ucsur: string;
81
+ };
82
+ source_language: string;
83
+ usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
84
+ word: string;
85
+ etymology: {
86
+ word?: string | undefined;
87
+ alt?: string | undefined;
88
+ }[];
89
+ audio: {
90
+ kala_asi: string;
91
+ jan_lakuse?: string | undefined;
92
+ };
93
+ recognition: Partial<Record<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, number>>;
94
+ ku_data?: Record<string, number> | undefined;
95
+ pu_verbatim?: {
96
+ en: string;
97
+ fr: string;
98
+ de: string;
99
+ eo: string;
100
+ } | undefined;
101
+ }, {
102
+ author_verbatim: string;
103
+ author_verbatim_source: string;
104
+ book: "pu" | "ku suli" | "ku lili" | "none";
105
+ coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
106
+ coined_year: string;
107
+ creator: string[];
108
+ see_also: string[];
109
+ representations: {
110
+ sitelen_emosi: string;
111
+ sitelen_pona: string[];
112
+ sitelen_sitelen: string;
113
+ ucsur: string;
114
+ };
115
+ source_language: string;
116
+ usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
117
+ word: string;
118
+ etymology: {
119
+ word?: string | undefined;
120
+ alt?: string | undefined;
121
+ }[];
122
+ audio: {
123
+ kala_asi: string;
124
+ jan_lakuse?: string | undefined;
125
+ };
126
+ recognition: Partial<Record<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, number>>;
127
+ ku_data?: Record<string, number> | undefined;
128
+ pu_verbatim?: {
129
+ en: string;
130
+ fr: string;
131
+ de: string;
132
+ eo: string;
133
+ } | undefined;
134
+ }>;
135
+ type Word = z.infer<typeof Word>;
136
+ declare const CommentaryTranslation: z.ZodRecord<z.ZodString, z.ZodString>;
137
+ type CommentaryTranslation = z.infer<typeof CommentaryTranslation>;
138
+ declare const DefinitionTranslation: z.ZodRecord<z.ZodString, z.ZodString>;
139
+ type DefinitionTranslation = z.infer<typeof DefinitionTranslation>;
140
+ declare const SitelenPonaTranslation: z.ZodRecord<z.ZodString, z.ZodString>;
141
+ type SitelenPonaTranslation = z.infer<typeof SitelenPonaTranslation>;
142
+ declare const EtymologyTranslation: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
143
+ definition: z.ZodOptional<z.ZodString>;
144
+ language: z.ZodString;
145
+ }, "strip", z.ZodTypeAny, {
146
+ language: string;
147
+ definition?: string | undefined;
148
+ }, {
149
+ language: string;
150
+ definition?: string | undefined;
151
+ }>, "many">>;
152
+ type EtymologyTranslation = z.infer<typeof EtymologyTranslation>;
153
+ declare const Sign: z.ZodObject<{
154
+ definition: z.ZodString;
155
+ id: z.ZodString;
156
+ is_two_handed: z.ZodBoolean;
157
+ new_gloss: z.ZodString;
158
+ old_gloss: z.ZodString;
159
+ etymology: z.ZodArray<z.ZodObject<{
160
+ language: z.ZodString;
161
+ sign: z.ZodOptional<z.ZodString>;
162
+ }, "strip", z.ZodTypeAny, {
163
+ language: string;
164
+ sign?: string | undefined;
165
+ }, {
166
+ language: string;
167
+ sign?: string | undefined;
168
+ }>, "many">;
169
+ signwriting: z.ZodObject<{
170
+ fsw: z.ZodString;
171
+ swu: z.ZodString;
172
+ }, "strip", z.ZodTypeAny, {
173
+ fsw: string;
174
+ swu: string;
175
+ }, {
176
+ fsw: string;
177
+ swu: string;
178
+ }>;
179
+ video: z.ZodObject<{
180
+ gif: z.ZodString;
181
+ mp4: z.ZodString;
182
+ }, "strip", z.ZodTypeAny, {
183
+ gif: string;
184
+ mp4: string;
185
+ }, {
186
+ gif: string;
187
+ mp4: string;
188
+ }>;
189
+ }, "strip", z.ZodTypeAny, {
190
+ etymology: {
191
+ language: string;
192
+ sign?: string | undefined;
193
+ }[];
194
+ definition: string;
195
+ id: string;
196
+ is_two_handed: boolean;
197
+ new_gloss: string;
198
+ old_gloss: string;
199
+ signwriting: {
200
+ fsw: string;
201
+ swu: string;
202
+ };
203
+ video: {
204
+ gif: string;
205
+ mp4: string;
206
+ };
207
+ }, {
208
+ etymology: {
209
+ language: string;
210
+ sign?: string | undefined;
211
+ }[];
212
+ definition: string;
213
+ id: string;
214
+ is_two_handed: boolean;
215
+ new_gloss: string;
216
+ old_gloss: string;
217
+ signwriting: {
218
+ fsw: string;
219
+ swu: string;
220
+ };
221
+ video: {
222
+ gif: string;
223
+ mp4: string;
224
+ };
225
+ }>;
226
+ type Sign = z.infer<typeof Sign>;
227
+ declare const FingerspellingSign: z.ZodObject<{
228
+ id: z.ZodString;
229
+ is_two_handed: z.ZodBoolean;
230
+ etymology: z.ZodArray<z.ZodObject<{
231
+ language: z.ZodString;
232
+ sign: z.ZodString;
233
+ }, "strip", z.ZodTypeAny, {
234
+ language: string;
235
+ sign: string;
236
+ }, {
237
+ language: string;
238
+ sign: string;
239
+ }>, "many">;
240
+ signwriting: z.ZodObject<{
241
+ fsw: z.ZodString;
242
+ swu: z.ZodString;
243
+ }, "strip", z.ZodTypeAny, {
244
+ fsw: string;
245
+ swu: string;
246
+ }, {
247
+ fsw: string;
248
+ swu: string;
249
+ }>;
250
+ video: z.ZodObject<{
251
+ gif: z.ZodOptional<z.ZodString>;
252
+ mp4: z.ZodOptional<z.ZodString>;
253
+ }, "strip", z.ZodTypeAny, {
254
+ gif?: string | undefined;
255
+ mp4?: string | undefined;
256
+ }, {
257
+ gif?: string | undefined;
258
+ mp4?: string | undefined;
259
+ }>;
260
+ }, "strip", z.ZodTypeAny, {
261
+ etymology: {
262
+ language: string;
263
+ sign: string;
264
+ }[];
265
+ id: string;
266
+ is_two_handed: boolean;
267
+ signwriting: {
268
+ fsw: string;
269
+ swu: string;
270
+ };
271
+ video: {
272
+ gif?: string | undefined;
273
+ mp4?: string | undefined;
274
+ };
275
+ }, {
276
+ etymology: {
277
+ language: string;
278
+ sign: string;
279
+ }[];
280
+ id: string;
281
+ is_two_handed: boolean;
282
+ signwriting: {
283
+ fsw: string;
284
+ swu: string;
285
+ };
286
+ video: {
287
+ gif?: string | undefined;
288
+ mp4?: string | undefined;
289
+ };
290
+ }>;
291
+ type FingerspellingSign = z.infer<typeof FingerspellingSign>;
292
+ declare const ParametersTranslation: z.ZodRecord<z.ZodString, z.ZodObject<{
293
+ handshape: z.ZodOptional<z.ZodString>;
294
+ movement: z.ZodOptional<z.ZodString>;
295
+ placement: z.ZodOptional<z.ZodString>;
296
+ orientation: z.ZodOptional<z.ZodString>;
297
+ }, "strip", z.ZodTypeAny, {
298
+ handshape?: string | undefined;
299
+ movement?: string | undefined;
300
+ placement?: string | undefined;
301
+ orientation?: string | undefined;
302
+ }, {
303
+ handshape?: string | undefined;
304
+ movement?: string | undefined;
305
+ placement?: string | undefined;
306
+ orientation?: string | undefined;
307
+ }>>;
308
+ type ParametersTranslation = z.infer<typeof ParametersTranslation>;
309
+ declare const IconTranslation: z.ZodRecord<z.ZodString, z.ZodString>;
310
+ type IconTranslation = z.infer<typeof IconTranslation>;
311
+ declare const Font: z.ZodObject<{
312
+ creator: z.ZodArray<z.ZodString, "many">;
313
+ features: z.ZodArray<z.ZodString, "many">;
314
+ filename: z.ZodString;
315
+ last_updated: z.ZodOptional<z.ZodType<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, z.ZodTypeDef, `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`>>;
316
+ license: z.ZodString;
317
+ ligatures: z.ZodBoolean;
318
+ name: z.ZodString;
319
+ style: z.ZodString;
320
+ ucsur: z.ZodBoolean;
321
+ version: z.ZodString;
322
+ writing_system: z.ZodEnum<["sitelen pona", "sitelen sitelen", "alphabet", "syllabary", "logography", "tokiponido alphabet", "tokiponido syllabary", "tokiponido logography"]>;
323
+ links: z.ZodObject<{
324
+ fontfile: z.ZodOptional<z.ZodString>;
325
+ repo: z.ZodOptional<z.ZodString>;
326
+ webpage: z.ZodOptional<z.ZodString>;
327
+ }, "strip", z.ZodTypeAny, {
328
+ fontfile?: string | undefined;
329
+ repo?: string | undefined;
330
+ webpage?: string | undefined;
331
+ }, {
332
+ fontfile?: string | undefined;
333
+ repo?: string | undefined;
334
+ webpage?: string | undefined;
335
+ }>;
336
+ }, "strip", z.ZodTypeAny, {
337
+ creator: string[];
338
+ ucsur: boolean;
339
+ features: string[];
340
+ filename: string;
341
+ license: string;
342
+ ligatures: boolean;
343
+ name: string;
344
+ style: string;
345
+ version: string;
346
+ writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
347
+ links: {
348
+ fontfile?: string | undefined;
349
+ repo?: string | undefined;
350
+ webpage?: string | undefined;
351
+ };
352
+ last_updated?: `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12` | undefined;
353
+ }, {
354
+ creator: string[];
355
+ ucsur: boolean;
356
+ features: string[];
357
+ filename: string;
358
+ license: string;
359
+ ligatures: boolean;
360
+ name: string;
361
+ style: string;
362
+ version: string;
363
+ writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
364
+ links: {
365
+ fontfile?: string | undefined;
366
+ repo?: string | undefined;
367
+ webpage?: string | undefined;
368
+ };
369
+ last_updated?: `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12` | undefined;
370
+ }>;
371
+ type Font = z.infer<typeof Font>;
372
+ declare const Words: z.ZodRecord<z.ZodString, z.ZodObject<{
373
+ author_verbatim: z.ZodString;
374
+ author_verbatim_source: z.ZodString;
375
+ book: z.ZodUnion<[z.ZodLiteral<"pu">, z.ZodLiteral<"ku suli">, z.ZodLiteral<"ku lili">, z.ZodLiteral<"none">]>;
376
+ coined_era: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"pre-pu">, z.ZodLiteral<"post-pu">, z.ZodLiteral<"post-ku">]>, z.ZodLiteral<"">]>;
377
+ coined_year: z.ZodString;
378
+ creator: z.ZodArray<z.ZodString, "many">;
379
+ ku_data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
380
+ see_also: z.ZodArray<z.ZodString, "many">;
381
+ representations: z.ZodObject<{
382
+ sitelen_emosi: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
383
+ sitelen_pona: z.ZodArray<z.ZodString, "many">;
384
+ sitelen_sitelen: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
385
+ ucsur: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
386
+ }, "strip", z.ZodTypeAny, {
387
+ sitelen_emosi: string;
388
+ sitelen_pona: string[];
389
+ sitelen_sitelen: string;
390
+ ucsur: string;
391
+ }, {
392
+ sitelen_emosi: string;
393
+ sitelen_pona: string[];
394
+ sitelen_sitelen: string;
395
+ ucsur: string;
396
+ }>;
397
+ source_language: z.ZodString;
398
+ usage_category: z.ZodUnion<[z.ZodLiteral<"core">, z.ZodLiteral<"widespread">, z.ZodLiteral<"common">, z.ZodLiteral<"uncommon">, z.ZodLiteral<"rare">, z.ZodLiteral<"obscure">]>;
399
+ word: z.ZodString;
400
+ etymology: z.ZodArray<z.ZodObject<{
401
+ word: z.ZodOptional<z.ZodString>;
402
+ alt: z.ZodOptional<z.ZodString>;
403
+ }, "strip", z.ZodTypeAny, {
404
+ word?: string | undefined;
405
+ alt?: string | undefined;
406
+ }, {
407
+ word?: string | undefined;
408
+ alt?: string | undefined;
409
+ }>, "many">;
410
+ audio: z.ZodObject<{
411
+ jan_lakuse: z.ZodOptional<z.ZodString>;
412
+ kala_asi: z.ZodString;
413
+ }, "strip", z.ZodTypeAny, {
414
+ kala_asi: string;
415
+ jan_lakuse?: string | undefined;
416
+ }, {
417
+ kala_asi: string;
418
+ jan_lakuse?: string | undefined;
419
+ }>;
420
+ pu_verbatim: z.ZodOptional<z.ZodObject<{
421
+ en: z.ZodString;
422
+ fr: z.ZodString;
423
+ de: z.ZodString;
424
+ eo: z.ZodString;
425
+ }, "strip", z.ZodTypeAny, {
426
+ en: string;
427
+ fr: string;
428
+ de: string;
429
+ eo: string;
430
+ }, {
431
+ en: string;
432
+ fr: string;
433
+ de: string;
434
+ eo: string;
435
+ }>>;
436
+ recognition: z.ZodRecord<z.ZodType<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, z.ZodTypeDef, `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`>, z.ZodNumber>;
437
+ translations: z.ZodRecord<z.ZodString, z.ZodObject<{
438
+ commentary: z.ZodString;
439
+ definitions: z.ZodString;
440
+ etymology: z.ZodArray<z.ZodObject<{
441
+ definition: z.ZodOptional<z.ZodString>;
442
+ language: z.ZodString;
443
+ }, "strip", z.ZodTypeAny, {
444
+ language: string;
445
+ definition?: string | undefined;
446
+ }, {
447
+ language: string;
448
+ definition?: string | undefined;
449
+ }>, "many">;
450
+ sp_etymology: z.ZodString;
451
+ }, "strip", z.ZodTypeAny, {
452
+ etymology: {
453
+ language: string;
454
+ definition?: string | undefined;
455
+ }[];
456
+ commentary: string;
457
+ definitions: string;
458
+ sp_etymology: string;
459
+ }, {
460
+ etymology: {
461
+ language: string;
462
+ definition?: string | undefined;
463
+ }[];
464
+ commentary: string;
465
+ definitions: string;
466
+ sp_etymology: string;
467
+ }>>;
468
+ }, "strip", z.ZodTypeAny, {
469
+ author_verbatim: string;
470
+ author_verbatim_source: string;
471
+ book: "pu" | "ku suli" | "ku lili" | "none";
472
+ coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
473
+ coined_year: string;
474
+ creator: string[];
475
+ see_also: string[];
476
+ representations: {
477
+ sitelen_emosi: string;
478
+ sitelen_pona: string[];
479
+ sitelen_sitelen: string;
480
+ ucsur: string;
481
+ };
482
+ source_language: string;
483
+ usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
484
+ word: string;
485
+ etymology: {
486
+ word?: string | undefined;
487
+ alt?: string | undefined;
488
+ }[];
489
+ audio: {
490
+ kala_asi: string;
491
+ jan_lakuse?: string | undefined;
492
+ };
493
+ recognition: Partial<Record<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, number>>;
494
+ translations: Record<string, {
495
+ etymology: {
496
+ language: string;
497
+ definition?: string | undefined;
498
+ }[];
499
+ commentary: string;
500
+ definitions: string;
501
+ sp_etymology: string;
502
+ }>;
503
+ ku_data?: Record<string, number> | undefined;
504
+ pu_verbatim?: {
505
+ en: string;
506
+ fr: string;
507
+ de: string;
508
+ eo: string;
509
+ } | undefined;
510
+ }, {
511
+ author_verbatim: string;
512
+ author_verbatim_source: string;
513
+ book: "pu" | "ku suli" | "ku lili" | "none";
514
+ coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
515
+ coined_year: string;
516
+ creator: string[];
517
+ see_also: string[];
518
+ representations: {
519
+ sitelen_emosi: string;
520
+ sitelen_pona: string[];
521
+ sitelen_sitelen: string;
522
+ ucsur: string;
523
+ };
524
+ source_language: string;
525
+ usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
526
+ word: string;
527
+ etymology: {
528
+ word?: string | undefined;
529
+ alt?: string | undefined;
530
+ }[];
531
+ audio: {
532
+ kala_asi: string;
533
+ jan_lakuse?: string | undefined;
534
+ };
535
+ recognition: Partial<Record<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, number>>;
536
+ translations: Record<string, {
537
+ etymology: {
538
+ language: string;
539
+ definition?: string | undefined;
540
+ }[];
541
+ commentary: string;
542
+ definitions: string;
543
+ sp_etymology: string;
544
+ }>;
545
+ ku_data?: Record<string, number> | undefined;
546
+ pu_verbatim?: {
547
+ en: string;
548
+ fr: string;
549
+ de: string;
550
+ eo: string;
551
+ } | undefined;
552
+ }>>;
553
+ type Words = z.infer<typeof Words>;
554
+ declare const Sandbox: z.ZodRecord<z.ZodString, z.ZodObject<{
555
+ author_verbatim: z.ZodString;
556
+ author_verbatim_source: z.ZodString;
557
+ book: z.ZodUnion<[z.ZodLiteral<"pu">, z.ZodLiteral<"ku suli">, z.ZodLiteral<"ku lili">, z.ZodLiteral<"none">]>;
558
+ coined_era: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"pre-pu">, z.ZodLiteral<"post-pu">, z.ZodLiteral<"post-ku">]>, z.ZodLiteral<"">]>;
559
+ coined_year: z.ZodString;
560
+ creator: z.ZodArray<z.ZodString, "many">;
561
+ ku_data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
562
+ see_also: z.ZodArray<z.ZodString, "many">;
563
+ representations: z.ZodObject<{
564
+ sitelen_emosi: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
565
+ sitelen_pona: z.ZodArray<z.ZodString, "many">;
566
+ sitelen_sitelen: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
567
+ ucsur: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
568
+ }, "strip", z.ZodTypeAny, {
569
+ sitelen_emosi: string;
570
+ sitelen_pona: string[];
571
+ sitelen_sitelen: string;
572
+ ucsur: string;
573
+ }, {
574
+ sitelen_emosi: string;
575
+ sitelen_pona: string[];
576
+ sitelen_sitelen: string;
577
+ ucsur: string;
578
+ }>;
579
+ source_language: z.ZodString;
580
+ usage_category: z.ZodUnion<[z.ZodLiteral<"core">, z.ZodLiteral<"widespread">, z.ZodLiteral<"common">, z.ZodLiteral<"uncommon">, z.ZodLiteral<"rare">, z.ZodLiteral<"obscure">]>;
581
+ word: z.ZodString;
582
+ etymology: z.ZodArray<z.ZodObject<{
583
+ word: z.ZodOptional<z.ZodString>;
584
+ alt: z.ZodOptional<z.ZodString>;
585
+ }, "strip", z.ZodTypeAny, {
586
+ word?: string | undefined;
587
+ alt?: string | undefined;
588
+ }, {
589
+ word?: string | undefined;
590
+ alt?: string | undefined;
591
+ }>, "many">;
592
+ audio: z.ZodObject<{
593
+ jan_lakuse: z.ZodOptional<z.ZodString>;
594
+ kala_asi: z.ZodString;
595
+ }, "strip", z.ZodTypeAny, {
596
+ kala_asi: string;
597
+ jan_lakuse?: string | undefined;
598
+ }, {
599
+ kala_asi: string;
600
+ jan_lakuse?: string | undefined;
601
+ }>;
602
+ pu_verbatim: z.ZodOptional<z.ZodObject<{
603
+ en: z.ZodString;
604
+ fr: z.ZodString;
605
+ de: z.ZodString;
606
+ eo: z.ZodString;
607
+ }, "strip", z.ZodTypeAny, {
608
+ en: string;
609
+ fr: string;
610
+ de: string;
611
+ eo: string;
612
+ }, {
613
+ en: string;
614
+ fr: string;
615
+ de: string;
616
+ eo: string;
617
+ }>>;
618
+ recognition: z.ZodRecord<z.ZodType<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, z.ZodTypeDef, `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`>, z.ZodNumber>;
619
+ translations: z.ZodRecord<z.ZodString, z.ZodObject<{
620
+ commentary: z.ZodString;
621
+ definitions: z.ZodString;
622
+ etymology: z.ZodArray<z.ZodObject<{
623
+ definition: z.ZodOptional<z.ZodString>;
624
+ language: z.ZodString;
625
+ }, "strip", z.ZodTypeAny, {
626
+ language: string;
627
+ definition?: string | undefined;
628
+ }, {
629
+ language: string;
630
+ definition?: string | undefined;
631
+ }>, "many">;
632
+ sp_etymology: z.ZodString;
633
+ }, "strip", z.ZodTypeAny, {
634
+ etymology: {
635
+ language: string;
636
+ definition?: string | undefined;
637
+ }[];
638
+ commentary: string;
639
+ definitions: string;
640
+ sp_etymology: string;
641
+ }, {
642
+ etymology: {
643
+ language: string;
644
+ definition?: string | undefined;
645
+ }[];
646
+ commentary: string;
647
+ definitions: string;
648
+ sp_etymology: string;
649
+ }>>;
650
+ }, "strip", z.ZodTypeAny, {
651
+ author_verbatim: string;
652
+ author_verbatim_source: string;
653
+ book: "pu" | "ku suli" | "ku lili" | "none";
654
+ coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
655
+ coined_year: string;
656
+ creator: string[];
657
+ see_also: string[];
658
+ representations: {
659
+ sitelen_emosi: string;
660
+ sitelen_pona: string[];
661
+ sitelen_sitelen: string;
662
+ ucsur: string;
663
+ };
664
+ source_language: string;
665
+ usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
666
+ word: string;
667
+ etymology: {
668
+ word?: string | undefined;
669
+ alt?: string | undefined;
670
+ }[];
671
+ audio: {
672
+ kala_asi: string;
673
+ jan_lakuse?: string | undefined;
674
+ };
675
+ recognition: Partial<Record<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, number>>;
676
+ translations: Record<string, {
677
+ etymology: {
678
+ language: string;
679
+ definition?: string | undefined;
680
+ }[];
681
+ commentary: string;
682
+ definitions: string;
683
+ sp_etymology: string;
684
+ }>;
685
+ ku_data?: Record<string, number> | undefined;
686
+ pu_verbatim?: {
687
+ en: string;
688
+ fr: string;
689
+ de: string;
690
+ eo: string;
691
+ } | undefined;
692
+ }, {
693
+ author_verbatim: string;
694
+ author_verbatim_source: string;
695
+ book: "pu" | "ku suli" | "ku lili" | "none";
696
+ coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
697
+ coined_year: string;
698
+ creator: string[];
699
+ see_also: string[];
700
+ representations: {
701
+ sitelen_emosi: string;
702
+ sitelen_pona: string[];
703
+ sitelen_sitelen: string;
704
+ ucsur: string;
705
+ };
706
+ source_language: string;
707
+ usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
708
+ word: string;
709
+ etymology: {
710
+ word?: string | undefined;
711
+ alt?: string | undefined;
712
+ }[];
713
+ audio: {
714
+ kala_asi: string;
715
+ jan_lakuse?: string | undefined;
716
+ };
717
+ recognition: Partial<Record<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, number>>;
718
+ translations: Record<string, {
719
+ etymology: {
720
+ language: string;
721
+ definition?: string | undefined;
722
+ }[];
723
+ commentary: string;
724
+ definitions: string;
725
+ sp_etymology: string;
726
+ }>;
727
+ ku_data?: Record<string, number> | undefined;
728
+ pu_verbatim?: {
729
+ en: string;
730
+ fr: string;
731
+ de: string;
732
+ eo: string;
733
+ } | undefined;
734
+ }>>;
735
+ type Sandbox = z.infer<typeof Sandbox>;
736
+ declare const Signs: z.ZodRecord<z.ZodString, z.ZodObject<{
737
+ etymology: z.ZodArray<z.ZodObject<{
738
+ language: z.ZodString;
739
+ sign: z.ZodOptional<z.ZodString>;
740
+ }, "strip", z.ZodTypeAny, {
741
+ language: string;
742
+ sign?: string | undefined;
743
+ }, {
744
+ language: string;
745
+ sign?: string | undefined;
746
+ }>, "many">;
747
+ definition: z.ZodString;
748
+ id: z.ZodString;
749
+ is_two_handed: z.ZodBoolean;
750
+ new_gloss: z.ZodString;
751
+ old_gloss: z.ZodString;
752
+ signwriting: z.ZodObject<{
753
+ fsw: z.ZodString;
754
+ swu: z.ZodString;
755
+ }, "strip", z.ZodTypeAny, {
756
+ fsw: string;
757
+ swu: string;
758
+ }, {
759
+ fsw: string;
760
+ swu: string;
761
+ }>;
762
+ video: z.ZodObject<{
763
+ gif: z.ZodString;
764
+ mp4: z.ZodString;
765
+ }, "strip", z.ZodTypeAny, {
766
+ gif: string;
767
+ mp4: string;
768
+ }, {
769
+ gif: string;
770
+ mp4: string;
771
+ }>;
772
+ translations: z.ZodRecord<z.ZodString, z.ZodObject<{
773
+ parameters: z.ZodObject<{
774
+ handshape: z.ZodOptional<z.ZodString>;
775
+ movement: z.ZodOptional<z.ZodString>;
776
+ placement: z.ZodOptional<z.ZodString>;
777
+ orientation: z.ZodOptional<z.ZodString>;
778
+ }, "strip", z.ZodTypeAny, {
779
+ handshape?: string | undefined;
780
+ movement?: string | undefined;
781
+ placement?: string | undefined;
782
+ orientation?: string | undefined;
783
+ }, {
784
+ handshape?: string | undefined;
785
+ movement?: string | undefined;
786
+ placement?: string | undefined;
787
+ orientation?: string | undefined;
788
+ }>;
789
+ icons: z.ZodString;
790
+ }, "strip", z.ZodTypeAny, {
791
+ parameters: {
792
+ handshape?: string | undefined;
793
+ movement?: string | undefined;
794
+ placement?: string | undefined;
795
+ orientation?: string | undefined;
796
+ };
797
+ icons: string;
798
+ }, {
799
+ parameters: {
800
+ handshape?: string | undefined;
801
+ movement?: string | undefined;
802
+ placement?: string | undefined;
803
+ orientation?: string | undefined;
804
+ };
805
+ icons: string;
806
+ }>>;
807
+ }, "strip", z.ZodTypeAny, {
808
+ etymology: {
809
+ language: string;
810
+ sign?: string | undefined;
811
+ }[];
812
+ definition: string;
813
+ id: string;
814
+ is_two_handed: boolean;
815
+ new_gloss: string;
816
+ old_gloss: string;
817
+ signwriting: {
818
+ fsw: string;
819
+ swu: string;
820
+ };
821
+ video: {
822
+ gif: string;
823
+ mp4: string;
824
+ };
825
+ translations: Record<string, {
826
+ parameters: {
827
+ handshape?: string | undefined;
828
+ movement?: string | undefined;
829
+ placement?: string | undefined;
830
+ orientation?: string | undefined;
831
+ };
832
+ icons: string;
833
+ }>;
834
+ }, {
835
+ etymology: {
836
+ language: string;
837
+ sign?: string | undefined;
838
+ }[];
839
+ definition: string;
840
+ id: string;
841
+ is_two_handed: boolean;
842
+ new_gloss: string;
843
+ old_gloss: string;
844
+ signwriting: {
845
+ fsw: string;
846
+ swu: string;
847
+ };
848
+ video: {
849
+ gif: string;
850
+ mp4: string;
851
+ };
852
+ translations: Record<string, {
853
+ parameters: {
854
+ handshape?: string | undefined;
855
+ movement?: string | undefined;
856
+ placement?: string | undefined;
857
+ orientation?: string | undefined;
858
+ };
859
+ icons: string;
860
+ }>;
861
+ }>>;
862
+ type Signs = z.infer<typeof Signs>;
863
+ declare const Fingerspelling: z.ZodRecord<z.ZodString, z.ZodObject<{
864
+ etymology: z.ZodArray<z.ZodObject<{
865
+ language: z.ZodString;
866
+ sign: z.ZodString;
867
+ }, "strip", z.ZodTypeAny, {
868
+ language: string;
869
+ sign: string;
870
+ }, {
871
+ language: string;
872
+ sign: string;
873
+ }>, "many">;
874
+ id: z.ZodString;
875
+ is_two_handed: z.ZodBoolean;
876
+ signwriting: z.ZodObject<{
877
+ fsw: z.ZodString;
878
+ swu: z.ZodString;
879
+ }, "strip", z.ZodTypeAny, {
880
+ fsw: string;
881
+ swu: string;
882
+ }, {
883
+ fsw: string;
884
+ swu: string;
885
+ }>;
886
+ video: z.ZodObject<{
887
+ gif: z.ZodOptional<z.ZodString>;
888
+ mp4: z.ZodOptional<z.ZodString>;
889
+ }, "strip", z.ZodTypeAny, {
890
+ gif?: string | undefined;
891
+ mp4?: string | undefined;
892
+ }, {
893
+ gif?: string | undefined;
894
+ mp4?: string | undefined;
895
+ }>;
896
+ translations: z.ZodRecord<z.ZodString, z.ZodObject<{
897
+ parameters: z.ZodObject<{
898
+ handshape: z.ZodOptional<z.ZodString>;
899
+ movement: z.ZodOptional<z.ZodString>;
900
+ placement: z.ZodOptional<z.ZodString>;
901
+ orientation: z.ZodOptional<z.ZodString>;
902
+ }, "strip", z.ZodTypeAny, {
903
+ handshape?: string | undefined;
904
+ movement?: string | undefined;
905
+ placement?: string | undefined;
906
+ orientation?: string | undefined;
907
+ }, {
908
+ handshape?: string | undefined;
909
+ movement?: string | undefined;
910
+ placement?: string | undefined;
911
+ orientation?: string | undefined;
912
+ }>;
913
+ }, "strip", z.ZodTypeAny, {
914
+ parameters: {
915
+ handshape?: string | undefined;
916
+ movement?: string | undefined;
917
+ placement?: string | undefined;
918
+ orientation?: string | undefined;
919
+ };
920
+ }, {
921
+ parameters: {
922
+ handshape?: string | undefined;
923
+ movement?: string | undefined;
924
+ placement?: string | undefined;
925
+ orientation?: string | undefined;
926
+ };
927
+ }>>;
928
+ }, "strip", z.ZodTypeAny, {
929
+ etymology: {
930
+ language: string;
931
+ sign: string;
932
+ }[];
933
+ id: string;
934
+ is_two_handed: boolean;
935
+ signwriting: {
936
+ fsw: string;
937
+ swu: string;
938
+ };
939
+ video: {
940
+ gif?: string | undefined;
941
+ mp4?: string | undefined;
942
+ };
943
+ translations: Record<string, {
944
+ parameters: {
945
+ handshape?: string | undefined;
946
+ movement?: string | undefined;
947
+ placement?: string | undefined;
948
+ orientation?: string | undefined;
949
+ };
950
+ }>;
951
+ }, {
952
+ etymology: {
953
+ language: string;
954
+ sign: string;
955
+ }[];
956
+ id: string;
957
+ is_two_handed: boolean;
958
+ signwriting: {
959
+ fsw: string;
960
+ swu: string;
961
+ };
962
+ video: {
963
+ gif?: string | undefined;
964
+ mp4?: string | undefined;
965
+ };
966
+ translations: Record<string, {
967
+ parameters: {
968
+ handshape?: string | undefined;
969
+ movement?: string | undefined;
970
+ placement?: string | undefined;
971
+ orientation?: string | undefined;
972
+ };
973
+ }>;
974
+ }>>;
975
+ type Fingerspelling = z.infer<typeof Fingerspelling>;
976
+ declare const Fonts: z.ZodRecord<z.ZodString, z.ZodObject<{
977
+ creator: z.ZodArray<z.ZodString, "many">;
978
+ features: z.ZodArray<z.ZodString, "many">;
979
+ filename: z.ZodString;
980
+ last_updated: z.ZodOptional<z.ZodType<`20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`, z.ZodTypeDef, `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12`>>;
981
+ license: z.ZodString;
982
+ ligatures: z.ZodBoolean;
983
+ name: z.ZodString;
984
+ style: z.ZodString;
985
+ ucsur: z.ZodBoolean;
986
+ version: z.ZodString;
987
+ writing_system: z.ZodEnum<["sitelen pona", "sitelen sitelen", "alphabet", "syllabary", "logography", "tokiponido alphabet", "tokiponido syllabary", "tokiponido logography"]>;
988
+ links: z.ZodObject<{
989
+ fontfile: z.ZodOptional<z.ZodString>;
990
+ repo: z.ZodOptional<z.ZodString>;
991
+ webpage: z.ZodOptional<z.ZodString>;
992
+ }, "strip", z.ZodTypeAny, {
993
+ fontfile?: string | undefined;
994
+ repo?: string | undefined;
995
+ webpage?: string | undefined;
996
+ }, {
997
+ fontfile?: string | undefined;
998
+ repo?: string | undefined;
999
+ webpage?: string | undefined;
1000
+ }>;
1001
+ }, "strip", z.ZodTypeAny, {
1002
+ creator: string[];
1003
+ ucsur: boolean;
1004
+ features: string[];
1005
+ filename: string;
1006
+ license: string;
1007
+ ligatures: boolean;
1008
+ name: string;
1009
+ style: string;
1010
+ version: string;
1011
+ writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
1012
+ links: {
1013
+ fontfile?: string | undefined;
1014
+ repo?: string | undefined;
1015
+ webpage?: string | undefined;
1016
+ };
1017
+ last_updated?: `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12` | undefined;
1018
+ }, {
1019
+ creator: string[];
1020
+ ucsur: boolean;
1021
+ features: string[];
1022
+ filename: string;
1023
+ license: string;
1024
+ ligatures: boolean;
1025
+ name: string;
1026
+ style: string;
1027
+ version: string;
1028
+ writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
1029
+ links: {
1030
+ fontfile?: string | undefined;
1031
+ repo?: string | undefined;
1032
+ webpage?: string | undefined;
1033
+ };
1034
+ last_updated?: `20${number}-01` | `20${number}-02` | `20${number}-03` | `20${number}-04` | `20${number}-05` | `20${number}-06` | `20${number}-07` | `20${number}-08` | `20${number}-09` | `20${number}-10` | `20${number}-11` | `20${number}-12` | undefined;
1035
+ }>>;
1036
+ type Fonts = z.infer<typeof Fonts>;
1037
+
1038
+ export { CommentaryTranslation, DefinitionTranslation, EtymologyTranslation, Fingerspelling, FingerspellingSign, Font, Fonts, IconTranslation, ParametersTranslation, Sandbox, Sign, Signs, SitelenPonaTranslation, Word, Words };