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