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