@kulupu-linku/sona 0.1.4 → 0.1.6
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/client.d.ts +556 -16
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -7,7 +7,69 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
7
7
|
query: {
|
|
8
8
|
lang?: string | undefined;
|
|
9
9
|
};
|
|
10
|
-
},
|
|
10
|
+
}, {
|
|
11
|
+
[x: string]: {
|
|
12
|
+
author_verbatim: string;
|
|
13
|
+
author_verbatim_source: string;
|
|
14
|
+
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
15
|
+
coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
|
|
16
|
+
coined_year: string;
|
|
17
|
+
creator: string[];
|
|
18
|
+
see_also: string[];
|
|
19
|
+
representations: {
|
|
20
|
+
sitelen_emosi: string;
|
|
21
|
+
sitelen_pona: string[];
|
|
22
|
+
sitelen_sitelen: string;
|
|
23
|
+
ucsur: string;
|
|
24
|
+
};
|
|
25
|
+
source_language: string;
|
|
26
|
+
usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
|
|
27
|
+
word: string;
|
|
28
|
+
etymology: {
|
|
29
|
+
word?: string | undefined;
|
|
30
|
+
alt?: string | undefined;
|
|
31
|
+
}[];
|
|
32
|
+
audio: {
|
|
33
|
+
author: string;
|
|
34
|
+
link: string;
|
|
35
|
+
}[];
|
|
36
|
+
usage: {
|
|
37
|
+
[x: `20${number}-01`]: number | undefined;
|
|
38
|
+
[x: `20${number}-02`]: number | undefined;
|
|
39
|
+
[x: `20${number}-03`]: number | undefined;
|
|
40
|
+
[x: `20${number}-04`]: number | undefined;
|
|
41
|
+
[x: `20${number}-05`]: number | undefined;
|
|
42
|
+
[x: `20${number}-06`]: number | undefined;
|
|
43
|
+
[x: `20${number}-07`]: number | undefined;
|
|
44
|
+
[x: `20${number}-08`]: number | undefined;
|
|
45
|
+
[x: `20${number}-09`]: number | undefined;
|
|
46
|
+
[x: `20${number}-10`]: number | undefined;
|
|
47
|
+
[x: `20${number}-11`]: number | undefined;
|
|
48
|
+
[x: `20${number}-12`]: number | undefined;
|
|
49
|
+
};
|
|
50
|
+
translations: {
|
|
51
|
+
[x: string]: {
|
|
52
|
+
etymology: {
|
|
53
|
+
language: string;
|
|
54
|
+
definition?: string | undefined;
|
|
55
|
+
}[];
|
|
56
|
+
commentary: string;
|
|
57
|
+
definitions: string;
|
|
58
|
+
sp_etymology: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
ku_data?: {
|
|
62
|
+
[x: string]: number;
|
|
63
|
+
} | undefined;
|
|
64
|
+
sona_pona?: string | undefined;
|
|
65
|
+
pu_verbatim?: {
|
|
66
|
+
en: string;
|
|
67
|
+
fr: string;
|
|
68
|
+
de: string;
|
|
69
|
+
eo: string;
|
|
70
|
+
} | undefined;
|
|
71
|
+
};
|
|
72
|
+
}> & hono.ToSchema<"get", "/words/:word", {
|
|
11
73
|
query: {
|
|
12
74
|
lang?: string | undefined;
|
|
13
75
|
};
|
|
@@ -17,7 +79,67 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
17
79
|
};
|
|
18
80
|
}, {
|
|
19
81
|
ok: true;
|
|
20
|
-
data:
|
|
82
|
+
data: {
|
|
83
|
+
author_verbatim: string;
|
|
84
|
+
author_verbatim_source: string;
|
|
85
|
+
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
86
|
+
coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
|
|
87
|
+
coined_year: string;
|
|
88
|
+
creator: string[];
|
|
89
|
+
see_also: string[];
|
|
90
|
+
representations: {
|
|
91
|
+
sitelen_emosi: string;
|
|
92
|
+
sitelen_pona: string[];
|
|
93
|
+
sitelen_sitelen: string;
|
|
94
|
+
ucsur: string;
|
|
95
|
+
};
|
|
96
|
+
source_language: string;
|
|
97
|
+
usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
|
|
98
|
+
word: string;
|
|
99
|
+
etymology: {
|
|
100
|
+
word?: string | undefined;
|
|
101
|
+
alt?: string | undefined;
|
|
102
|
+
}[];
|
|
103
|
+
audio: {
|
|
104
|
+
author: string;
|
|
105
|
+
link: string;
|
|
106
|
+
}[];
|
|
107
|
+
usage: {
|
|
108
|
+
[x: `20${number}-01`]: number | undefined;
|
|
109
|
+
[x: `20${number}-02`]: number | undefined;
|
|
110
|
+
[x: `20${number}-03`]: number | undefined;
|
|
111
|
+
[x: `20${number}-04`]: number | undefined;
|
|
112
|
+
[x: `20${number}-05`]: number | undefined;
|
|
113
|
+
[x: `20${number}-06`]: number | undefined;
|
|
114
|
+
[x: `20${number}-07`]: number | undefined;
|
|
115
|
+
[x: `20${number}-08`]: number | undefined;
|
|
116
|
+
[x: `20${number}-09`]: number | undefined;
|
|
117
|
+
[x: `20${number}-10`]: number | undefined;
|
|
118
|
+
[x: `20${number}-11`]: number | undefined;
|
|
119
|
+
[x: `20${number}-12`]: number | undefined;
|
|
120
|
+
};
|
|
121
|
+
translations: {
|
|
122
|
+
[x: string]: {
|
|
123
|
+
etymology: {
|
|
124
|
+
language: string;
|
|
125
|
+
definition?: string | undefined;
|
|
126
|
+
}[];
|
|
127
|
+
commentary: string;
|
|
128
|
+
definitions: string;
|
|
129
|
+
sp_etymology: string;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
ku_data?: {
|
|
133
|
+
[x: string]: number;
|
|
134
|
+
} | undefined;
|
|
135
|
+
sona_pona?: string | undefined;
|
|
136
|
+
pu_verbatim?: {
|
|
137
|
+
en: string;
|
|
138
|
+
fr: string;
|
|
139
|
+
de: string;
|
|
140
|
+
eo: string;
|
|
141
|
+
} | undefined;
|
|
142
|
+
};
|
|
21
143
|
} | {
|
|
22
144
|
ok: false;
|
|
23
145
|
message: string;
|
|
@@ -25,7 +147,34 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
25
147
|
query: {
|
|
26
148
|
lang?: string | undefined;
|
|
27
149
|
};
|
|
28
|
-
},
|
|
150
|
+
}, {
|
|
151
|
+
[x: string]: {
|
|
152
|
+
etymology: {
|
|
153
|
+
language: string;
|
|
154
|
+
sign: string;
|
|
155
|
+
}[];
|
|
156
|
+
id: string;
|
|
157
|
+
is_two_handed: boolean;
|
|
158
|
+
signwriting: {
|
|
159
|
+
fsw: string;
|
|
160
|
+
swu: string;
|
|
161
|
+
};
|
|
162
|
+
video: {
|
|
163
|
+
gif?: string | undefined;
|
|
164
|
+
mp4?: string | undefined;
|
|
165
|
+
};
|
|
166
|
+
translations: {
|
|
167
|
+
[x: string]: {
|
|
168
|
+
parameters: {
|
|
169
|
+
handshape?: string | undefined;
|
|
170
|
+
movement?: string | undefined;
|
|
171
|
+
placement?: string | undefined;
|
|
172
|
+
orientation?: string | undefined;
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
}> & hono.ToSchema<"get", "/luka_pona/fingerspelling/:sign", {
|
|
29
178
|
query: {
|
|
30
179
|
lang?: string | undefined;
|
|
31
180
|
};
|
|
@@ -35,7 +184,32 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
35
184
|
};
|
|
36
185
|
}, {
|
|
37
186
|
ok: true;
|
|
38
|
-
data:
|
|
187
|
+
data: {
|
|
188
|
+
etymology: {
|
|
189
|
+
language: string;
|
|
190
|
+
sign: string;
|
|
191
|
+
}[];
|
|
192
|
+
id: string;
|
|
193
|
+
is_two_handed: boolean;
|
|
194
|
+
signwriting: {
|
|
195
|
+
fsw: string;
|
|
196
|
+
swu: string;
|
|
197
|
+
};
|
|
198
|
+
video: {
|
|
199
|
+
gif?: string | undefined;
|
|
200
|
+
mp4?: string | undefined;
|
|
201
|
+
};
|
|
202
|
+
translations: {
|
|
203
|
+
[x: string]: {
|
|
204
|
+
parameters: {
|
|
205
|
+
handshape?: string | undefined;
|
|
206
|
+
movement?: string | undefined;
|
|
207
|
+
placement?: string | undefined;
|
|
208
|
+
orientation?: string | undefined;
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
};
|
|
39
213
|
} | {
|
|
40
214
|
ok: false;
|
|
41
215
|
message: string;
|
|
@@ -43,7 +217,38 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
43
217
|
query: {
|
|
44
218
|
lang?: string | undefined;
|
|
45
219
|
};
|
|
46
|
-
},
|
|
220
|
+
}, {
|
|
221
|
+
[x: string]: {
|
|
222
|
+
etymology: {
|
|
223
|
+
language: string;
|
|
224
|
+
sign?: string | undefined;
|
|
225
|
+
}[];
|
|
226
|
+
definition: string;
|
|
227
|
+
id: string;
|
|
228
|
+
is_two_handed: boolean;
|
|
229
|
+
new_gloss: string;
|
|
230
|
+
old_gloss: string;
|
|
231
|
+
signwriting: {
|
|
232
|
+
fsw: string;
|
|
233
|
+
swu: string;
|
|
234
|
+
};
|
|
235
|
+
video: {
|
|
236
|
+
gif: string;
|
|
237
|
+
mp4: string;
|
|
238
|
+
};
|
|
239
|
+
translations: {
|
|
240
|
+
[x: string]: {
|
|
241
|
+
parameters: {
|
|
242
|
+
handshape?: string | undefined;
|
|
243
|
+
movement?: string | undefined;
|
|
244
|
+
placement?: string | undefined;
|
|
245
|
+
orientation?: string | undefined;
|
|
246
|
+
};
|
|
247
|
+
icons: string;
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
}> & hono.ToSchema<"get", "/luka_pona/signs/:sign", {
|
|
47
252
|
query: {
|
|
48
253
|
lang?: string | undefined;
|
|
49
254
|
};
|
|
@@ -53,17 +258,82 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
53
258
|
};
|
|
54
259
|
}, {
|
|
55
260
|
ok: true;
|
|
56
|
-
data:
|
|
261
|
+
data: {
|
|
262
|
+
etymology: {
|
|
263
|
+
language: string;
|
|
264
|
+
sign?: string | undefined;
|
|
265
|
+
}[];
|
|
266
|
+
definition: string;
|
|
267
|
+
id: string;
|
|
268
|
+
is_two_handed: boolean;
|
|
269
|
+
new_gloss: string;
|
|
270
|
+
old_gloss: string;
|
|
271
|
+
signwriting: {
|
|
272
|
+
fsw: string;
|
|
273
|
+
swu: string;
|
|
274
|
+
};
|
|
275
|
+
video: {
|
|
276
|
+
gif: string;
|
|
277
|
+
mp4: string;
|
|
278
|
+
};
|
|
279
|
+
translations: {
|
|
280
|
+
[x: string]: {
|
|
281
|
+
parameters: {
|
|
282
|
+
handshape?: string | undefined;
|
|
283
|
+
movement?: string | undefined;
|
|
284
|
+
placement?: string | undefined;
|
|
285
|
+
orientation?: string | undefined;
|
|
286
|
+
};
|
|
287
|
+
icons: string;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
};
|
|
57
291
|
} | {
|
|
58
292
|
ok: false;
|
|
59
293
|
message: string;
|
|
60
|
-
}> & hono.ToSchema<"get", "/fonts", unknown,
|
|
294
|
+
}> & hono.ToSchema<"get", "/fonts", unknown, {
|
|
295
|
+
[x: string]: {
|
|
296
|
+
creator: string[];
|
|
297
|
+
ucsur: boolean;
|
|
298
|
+
features: string[];
|
|
299
|
+
filename: string;
|
|
300
|
+
license: string;
|
|
301
|
+
ligatures: boolean;
|
|
302
|
+
name: string;
|
|
303
|
+
style: string;
|
|
304
|
+
version: string;
|
|
305
|
+
writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
|
|
306
|
+
links: {
|
|
307
|
+
fontfile?: string | undefined;
|
|
308
|
+
repo?: string | undefined;
|
|
309
|
+
webpage?: string | undefined;
|
|
310
|
+
};
|
|
311
|
+
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;
|
|
312
|
+
};
|
|
313
|
+
}> & hono.ToSchema<"get", "/fonts/:font", {
|
|
61
314
|
param: {
|
|
62
315
|
font: string;
|
|
63
316
|
};
|
|
64
317
|
}, {
|
|
65
318
|
ok: true;
|
|
66
|
-
data:
|
|
319
|
+
data: {
|
|
320
|
+
creator: string[];
|
|
321
|
+
ucsur: boolean;
|
|
322
|
+
features: string[];
|
|
323
|
+
filename: string;
|
|
324
|
+
license: string;
|
|
325
|
+
ligatures: boolean;
|
|
326
|
+
name: string;
|
|
327
|
+
style: string;
|
|
328
|
+
version: string;
|
|
329
|
+
writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
|
|
330
|
+
links: {
|
|
331
|
+
fontfile?: string | undefined;
|
|
332
|
+
repo?: string | undefined;
|
|
333
|
+
webpage?: string | undefined;
|
|
334
|
+
};
|
|
335
|
+
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;
|
|
336
|
+
};
|
|
67
337
|
} | {
|
|
68
338
|
ok: false;
|
|
69
339
|
message: string;
|
|
@@ -94,7 +364,69 @@ declare const client: {
|
|
|
94
364
|
lang?: string | undefined;
|
|
95
365
|
};
|
|
96
366
|
};
|
|
97
|
-
output:
|
|
367
|
+
output: {
|
|
368
|
+
[x: string]: {
|
|
369
|
+
author_verbatim: string;
|
|
370
|
+
author_verbatim_source: string;
|
|
371
|
+
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
372
|
+
coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
|
|
373
|
+
coined_year: string;
|
|
374
|
+
creator: string[];
|
|
375
|
+
see_also: string[];
|
|
376
|
+
representations: {
|
|
377
|
+
sitelen_emosi: string;
|
|
378
|
+
sitelen_pona: string[];
|
|
379
|
+
sitelen_sitelen: string;
|
|
380
|
+
ucsur: string;
|
|
381
|
+
};
|
|
382
|
+
source_language: string;
|
|
383
|
+
usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
|
|
384
|
+
word: string;
|
|
385
|
+
etymology: {
|
|
386
|
+
word?: string | undefined;
|
|
387
|
+
alt?: string | undefined;
|
|
388
|
+
}[];
|
|
389
|
+
audio: {
|
|
390
|
+
author: string;
|
|
391
|
+
link: string;
|
|
392
|
+
}[];
|
|
393
|
+
usage: {
|
|
394
|
+
[x: `20${number}-01`]: number | undefined;
|
|
395
|
+
[x: `20${number}-02`]: number | undefined;
|
|
396
|
+
[x: `20${number}-03`]: number | undefined;
|
|
397
|
+
[x: `20${number}-04`]: number | undefined;
|
|
398
|
+
[x: `20${number}-05`]: number | undefined;
|
|
399
|
+
[x: `20${number}-06`]: number | undefined;
|
|
400
|
+
[x: `20${number}-07`]: number | undefined;
|
|
401
|
+
[x: `20${number}-08`]: number | undefined;
|
|
402
|
+
[x: `20${number}-09`]: number | undefined;
|
|
403
|
+
[x: `20${number}-10`]: number | undefined;
|
|
404
|
+
[x: `20${number}-11`]: number | undefined;
|
|
405
|
+
[x: `20${number}-12`]: number | undefined;
|
|
406
|
+
};
|
|
407
|
+
translations: {
|
|
408
|
+
[x: string]: {
|
|
409
|
+
etymology: {
|
|
410
|
+
language: string;
|
|
411
|
+
definition?: string | undefined;
|
|
412
|
+
}[];
|
|
413
|
+
commentary: string;
|
|
414
|
+
definitions: string;
|
|
415
|
+
sp_etymology: string;
|
|
416
|
+
};
|
|
417
|
+
};
|
|
418
|
+
ku_data?: {
|
|
419
|
+
[x: string]: number;
|
|
420
|
+
} | undefined;
|
|
421
|
+
sona_pona?: string | undefined;
|
|
422
|
+
pu_verbatim?: {
|
|
423
|
+
en: string;
|
|
424
|
+
fr: string;
|
|
425
|
+
de: string;
|
|
426
|
+
eo: string;
|
|
427
|
+
} | undefined;
|
|
428
|
+
};
|
|
429
|
+
};
|
|
98
430
|
};
|
|
99
431
|
}>;
|
|
100
432
|
};
|
|
@@ -118,7 +450,67 @@ declare const client: {
|
|
|
118
450
|
};
|
|
119
451
|
output: {
|
|
120
452
|
ok: true;
|
|
121
|
-
data:
|
|
453
|
+
data: {
|
|
454
|
+
author_verbatim: string;
|
|
455
|
+
author_verbatim_source: string;
|
|
456
|
+
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
457
|
+
coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
|
|
458
|
+
coined_year: string;
|
|
459
|
+
creator: string[];
|
|
460
|
+
see_also: string[];
|
|
461
|
+
representations: {
|
|
462
|
+
sitelen_emosi: string;
|
|
463
|
+
sitelen_pona: string[];
|
|
464
|
+
sitelen_sitelen: string;
|
|
465
|
+
ucsur: string;
|
|
466
|
+
};
|
|
467
|
+
source_language: string;
|
|
468
|
+
usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
|
|
469
|
+
word: string;
|
|
470
|
+
etymology: {
|
|
471
|
+
word?: string | undefined;
|
|
472
|
+
alt?: string | undefined;
|
|
473
|
+
}[];
|
|
474
|
+
audio: {
|
|
475
|
+
author: string;
|
|
476
|
+
link: string;
|
|
477
|
+
}[];
|
|
478
|
+
usage: {
|
|
479
|
+
[x: `20${number}-01`]: number | undefined;
|
|
480
|
+
[x: `20${number}-02`]: number | undefined;
|
|
481
|
+
[x: `20${number}-03`]: number | undefined;
|
|
482
|
+
[x: `20${number}-04`]: number | undefined;
|
|
483
|
+
[x: `20${number}-05`]: number | undefined;
|
|
484
|
+
[x: `20${number}-06`]: number | undefined;
|
|
485
|
+
[x: `20${number}-07`]: number | undefined;
|
|
486
|
+
[x: `20${number}-08`]: number | undefined;
|
|
487
|
+
[x: `20${number}-09`]: number | undefined;
|
|
488
|
+
[x: `20${number}-10`]: number | undefined;
|
|
489
|
+
[x: `20${number}-11`]: number | undefined;
|
|
490
|
+
[x: `20${number}-12`]: number | undefined;
|
|
491
|
+
};
|
|
492
|
+
translations: {
|
|
493
|
+
[x: string]: {
|
|
494
|
+
etymology: {
|
|
495
|
+
language: string;
|
|
496
|
+
definition?: string | undefined;
|
|
497
|
+
}[];
|
|
498
|
+
commentary: string;
|
|
499
|
+
definitions: string;
|
|
500
|
+
sp_etymology: string;
|
|
501
|
+
};
|
|
502
|
+
};
|
|
503
|
+
ku_data?: {
|
|
504
|
+
[x: string]: number;
|
|
505
|
+
} | undefined;
|
|
506
|
+
sona_pona?: string | undefined;
|
|
507
|
+
pu_verbatim?: {
|
|
508
|
+
en: string;
|
|
509
|
+
fr: string;
|
|
510
|
+
de: string;
|
|
511
|
+
eo: string;
|
|
512
|
+
} | undefined;
|
|
513
|
+
};
|
|
122
514
|
} | {
|
|
123
515
|
ok: false;
|
|
124
516
|
message: string;
|
|
@@ -137,7 +529,34 @@ declare const client: {
|
|
|
137
529
|
lang?: string | undefined;
|
|
138
530
|
};
|
|
139
531
|
};
|
|
140
|
-
output:
|
|
532
|
+
output: {
|
|
533
|
+
[x: string]: {
|
|
534
|
+
etymology: {
|
|
535
|
+
language: string;
|
|
536
|
+
sign: string;
|
|
537
|
+
}[];
|
|
538
|
+
id: string;
|
|
539
|
+
is_two_handed: boolean;
|
|
540
|
+
signwriting: {
|
|
541
|
+
fsw: string;
|
|
542
|
+
swu: string;
|
|
543
|
+
};
|
|
544
|
+
video: {
|
|
545
|
+
gif?: string | undefined;
|
|
546
|
+
mp4?: string | undefined;
|
|
547
|
+
};
|
|
548
|
+
translations: {
|
|
549
|
+
[x: string]: {
|
|
550
|
+
parameters: {
|
|
551
|
+
handshape?: string | undefined;
|
|
552
|
+
movement?: string | undefined;
|
|
553
|
+
placement?: string | undefined;
|
|
554
|
+
orientation?: string | undefined;
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
};
|
|
558
|
+
};
|
|
559
|
+
};
|
|
141
560
|
};
|
|
142
561
|
}>;
|
|
143
562
|
};
|
|
@@ -163,7 +582,32 @@ declare const client: {
|
|
|
163
582
|
};
|
|
164
583
|
output: {
|
|
165
584
|
ok: true;
|
|
166
|
-
data:
|
|
585
|
+
data: {
|
|
586
|
+
etymology: {
|
|
587
|
+
language: string;
|
|
588
|
+
sign: string;
|
|
589
|
+
}[];
|
|
590
|
+
id: string;
|
|
591
|
+
is_two_handed: boolean;
|
|
592
|
+
signwriting: {
|
|
593
|
+
fsw: string;
|
|
594
|
+
swu: string;
|
|
595
|
+
};
|
|
596
|
+
video: {
|
|
597
|
+
gif?: string | undefined;
|
|
598
|
+
mp4?: string | undefined;
|
|
599
|
+
};
|
|
600
|
+
translations: {
|
|
601
|
+
[x: string]: {
|
|
602
|
+
parameters: {
|
|
603
|
+
handshape?: string | undefined;
|
|
604
|
+
movement?: string | undefined;
|
|
605
|
+
placement?: string | undefined;
|
|
606
|
+
orientation?: string | undefined;
|
|
607
|
+
};
|
|
608
|
+
};
|
|
609
|
+
};
|
|
610
|
+
};
|
|
167
611
|
} | {
|
|
168
612
|
ok: false;
|
|
169
613
|
message: string;
|
|
@@ -183,7 +627,38 @@ declare const client: {
|
|
|
183
627
|
lang?: string | undefined;
|
|
184
628
|
};
|
|
185
629
|
};
|
|
186
|
-
output:
|
|
630
|
+
output: {
|
|
631
|
+
[x: string]: {
|
|
632
|
+
etymology: {
|
|
633
|
+
language: string;
|
|
634
|
+
sign?: string | undefined;
|
|
635
|
+
}[];
|
|
636
|
+
definition: string;
|
|
637
|
+
id: string;
|
|
638
|
+
is_two_handed: boolean;
|
|
639
|
+
new_gloss: string;
|
|
640
|
+
old_gloss: string;
|
|
641
|
+
signwriting: {
|
|
642
|
+
fsw: string;
|
|
643
|
+
swu: string;
|
|
644
|
+
};
|
|
645
|
+
video: {
|
|
646
|
+
gif: string;
|
|
647
|
+
mp4: string;
|
|
648
|
+
};
|
|
649
|
+
translations: {
|
|
650
|
+
[x: string]: {
|
|
651
|
+
parameters: {
|
|
652
|
+
handshape?: string | undefined;
|
|
653
|
+
movement?: string | undefined;
|
|
654
|
+
placement?: string | undefined;
|
|
655
|
+
orientation?: string | undefined;
|
|
656
|
+
};
|
|
657
|
+
icons: string;
|
|
658
|
+
};
|
|
659
|
+
};
|
|
660
|
+
};
|
|
661
|
+
};
|
|
187
662
|
};
|
|
188
663
|
}>;
|
|
189
664
|
};
|
|
@@ -209,7 +684,36 @@ declare const client: {
|
|
|
209
684
|
};
|
|
210
685
|
output: {
|
|
211
686
|
ok: true;
|
|
212
|
-
data:
|
|
687
|
+
data: {
|
|
688
|
+
etymology: {
|
|
689
|
+
language: string;
|
|
690
|
+
sign?: string | undefined;
|
|
691
|
+
}[];
|
|
692
|
+
definition: string;
|
|
693
|
+
id: string;
|
|
694
|
+
is_two_handed: boolean;
|
|
695
|
+
new_gloss: string;
|
|
696
|
+
old_gloss: string;
|
|
697
|
+
signwriting: {
|
|
698
|
+
fsw: string;
|
|
699
|
+
swu: string;
|
|
700
|
+
};
|
|
701
|
+
video: {
|
|
702
|
+
gif: string;
|
|
703
|
+
mp4: string;
|
|
704
|
+
};
|
|
705
|
+
translations: {
|
|
706
|
+
[x: string]: {
|
|
707
|
+
parameters: {
|
|
708
|
+
handshape?: string | undefined;
|
|
709
|
+
movement?: string | undefined;
|
|
710
|
+
placement?: string | undefined;
|
|
711
|
+
orientation?: string | undefined;
|
|
712
|
+
};
|
|
713
|
+
icons: string;
|
|
714
|
+
};
|
|
715
|
+
};
|
|
716
|
+
};
|
|
213
717
|
} | {
|
|
214
718
|
ok: false;
|
|
215
719
|
message: string;
|
|
@@ -224,7 +728,26 @@ declare const client: {
|
|
|
224
728
|
fonts: hono_client.ClientRequest<{
|
|
225
729
|
$get: {
|
|
226
730
|
input: {};
|
|
227
|
-
output:
|
|
731
|
+
output: {
|
|
732
|
+
[x: string]: {
|
|
733
|
+
creator: string[];
|
|
734
|
+
ucsur: boolean;
|
|
735
|
+
features: string[];
|
|
736
|
+
filename: string;
|
|
737
|
+
license: string;
|
|
738
|
+
ligatures: boolean;
|
|
739
|
+
name: string;
|
|
740
|
+
style: string;
|
|
741
|
+
version: string;
|
|
742
|
+
writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
|
|
743
|
+
links: {
|
|
744
|
+
fontfile?: string | undefined;
|
|
745
|
+
repo?: string | undefined;
|
|
746
|
+
webpage?: string | undefined;
|
|
747
|
+
};
|
|
748
|
+
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;
|
|
749
|
+
};
|
|
750
|
+
};
|
|
228
751
|
};
|
|
229
752
|
}>;
|
|
230
753
|
};
|
|
@@ -244,7 +767,24 @@ declare const client: {
|
|
|
244
767
|
};
|
|
245
768
|
output: {
|
|
246
769
|
ok: true;
|
|
247
|
-
data:
|
|
770
|
+
data: {
|
|
771
|
+
creator: string[];
|
|
772
|
+
ucsur: boolean;
|
|
773
|
+
features: string[];
|
|
774
|
+
filename: string;
|
|
775
|
+
license: string;
|
|
776
|
+
ligatures: boolean;
|
|
777
|
+
name: string;
|
|
778
|
+
style: string;
|
|
779
|
+
version: string;
|
|
780
|
+
writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
|
|
781
|
+
links: {
|
|
782
|
+
fontfile?: string | undefined;
|
|
783
|
+
repo?: string | undefined;
|
|
784
|
+
webpage?: string | undefined;
|
|
785
|
+
};
|
|
786
|
+
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;
|
|
787
|
+
};
|
|
248
788
|
} | {
|
|
249
789
|
ok: false;
|
|
250
790
|
message: string;
|