@kulupu-linku/sona 0.1.7 → 0.1.8
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/{chunk-T34XQGQK.js → chunk-QCIUEY5V.js} +5 -3
- package/dist/client.d.ts +152 -176
- package/dist/index.d.ts +248 -154
- package/dist/index.js +21 -17
- package/dist/utils.d.ts +2 -13
- package/dist/utils.js +3 -3
- package/generated/etymology.json +20 -0
- package/generated/font.json +6 -0
- package/generated/fonts.json +6 -0
- package/generated/representations.json +43 -0
- package/generated/resources.json +30 -0
- package/generated/sandbox.json +34 -46
- package/generated/word.json +32 -44
- package/generated/words.json +34 -46
- package/package.json +1 -1
|
@@ -15,7 +15,6 @@ var UsageCategory = z.union([
|
|
|
15
15
|
z.literal("rare"),
|
|
16
16
|
z.literal("obscure")
|
|
17
17
|
]);
|
|
18
|
-
var YearMonth = z.string().regex(/^20\d{2}-(0[1-9]|1[0-2])$/g);
|
|
19
18
|
var WritingSystem = z.enum([
|
|
20
19
|
"sitelen pona",
|
|
21
20
|
"sitelen sitelen",
|
|
@@ -26,11 +25,14 @@ var WritingSystem = z.enum([
|
|
|
26
25
|
"tokiponido syllabary",
|
|
27
26
|
"tokiponido logography"
|
|
28
27
|
]);
|
|
28
|
+
function getTranslatedData(data, key, language) {
|
|
29
|
+
return (data.translations[language] ?? data.translations["en"])[key];
|
|
30
|
+
}
|
|
29
31
|
|
|
30
32
|
export {
|
|
31
33
|
Book,
|
|
32
34
|
CoinedEra,
|
|
33
35
|
UsageCategory,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
+
WritingSystem,
|
|
37
|
+
getTranslatedData
|
|
36
38
|
};
|
package/dist/client.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
9
9
|
};
|
|
10
10
|
}, {
|
|
11
11
|
[x: string]: {
|
|
12
|
+
id: string;
|
|
12
13
|
author_verbatim: string;
|
|
13
14
|
author_verbatim_source: string;
|
|
14
15
|
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
@@ -16,12 +17,6 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
16
17
|
coined_year: string;
|
|
17
18
|
creator: string[];
|
|
18
19
|
see_also: string[];
|
|
19
|
-
representations: {
|
|
20
|
-
sitelen_emosi: string;
|
|
21
|
-
sitelen_pona: string[];
|
|
22
|
-
sitelen_sitelen: string;
|
|
23
|
-
ucsur: string;
|
|
24
|
-
};
|
|
25
20
|
source_language: string;
|
|
26
21
|
usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
|
|
27
22
|
word: string;
|
|
@@ -34,18 +29,7 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
34
29
|
link: string;
|
|
35
30
|
}[];
|
|
36
31
|
usage: {
|
|
37
|
-
[x:
|
|
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;
|
|
32
|
+
[x: string]: number;
|
|
49
33
|
};
|
|
50
34
|
translations: {
|
|
51
35
|
[x: string]: {
|
|
@@ -54,14 +38,23 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
54
38
|
definition?: string | undefined;
|
|
55
39
|
}[];
|
|
56
40
|
commentary: string;
|
|
57
|
-
|
|
41
|
+
definition: string;
|
|
58
42
|
sp_etymology: string;
|
|
59
43
|
};
|
|
60
44
|
};
|
|
61
45
|
ku_data?: {
|
|
62
46
|
[x: string]: number;
|
|
63
47
|
} | undefined;
|
|
64
|
-
|
|
48
|
+
resources?: {
|
|
49
|
+
sona_pona?: string | undefined;
|
|
50
|
+
lipamanka_semantic?: string | undefined;
|
|
51
|
+
} | undefined;
|
|
52
|
+
representations?: {
|
|
53
|
+
sitelen_emosi?: string | undefined;
|
|
54
|
+
ligatures?: string[] | undefined;
|
|
55
|
+
sitelen_sitelen?: string | undefined;
|
|
56
|
+
ucsur?: string | undefined;
|
|
57
|
+
} | undefined;
|
|
65
58
|
pu_verbatim?: {
|
|
66
59
|
en: string;
|
|
67
60
|
fr: string;
|
|
@@ -80,6 +73,7 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
80
73
|
}, {
|
|
81
74
|
ok: true;
|
|
82
75
|
data: {
|
|
76
|
+
id: string;
|
|
83
77
|
author_verbatim: string;
|
|
84
78
|
author_verbatim_source: string;
|
|
85
79
|
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
@@ -87,12 +81,6 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
87
81
|
coined_year: string;
|
|
88
82
|
creator: string[];
|
|
89
83
|
see_also: string[];
|
|
90
|
-
representations: {
|
|
91
|
-
sitelen_emosi: string;
|
|
92
|
-
sitelen_pona: string[];
|
|
93
|
-
sitelen_sitelen: string;
|
|
94
|
-
ucsur: string;
|
|
95
|
-
};
|
|
96
84
|
source_language: string;
|
|
97
85
|
usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
|
|
98
86
|
word: string;
|
|
@@ -105,18 +93,7 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
105
93
|
link: string;
|
|
106
94
|
}[];
|
|
107
95
|
usage: {
|
|
108
|
-
[x:
|
|
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;
|
|
96
|
+
[x: string]: number;
|
|
120
97
|
};
|
|
121
98
|
translations: {
|
|
122
99
|
[x: string]: {
|
|
@@ -125,14 +102,23 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
125
102
|
definition?: string | undefined;
|
|
126
103
|
}[];
|
|
127
104
|
commentary: string;
|
|
128
|
-
|
|
105
|
+
definition: string;
|
|
129
106
|
sp_etymology: string;
|
|
130
107
|
};
|
|
131
108
|
};
|
|
132
109
|
ku_data?: {
|
|
133
110
|
[x: string]: number;
|
|
134
111
|
} | undefined;
|
|
135
|
-
|
|
112
|
+
resources?: {
|
|
113
|
+
sona_pona?: string | undefined;
|
|
114
|
+
lipamanka_semantic?: string | undefined;
|
|
115
|
+
} | undefined;
|
|
116
|
+
representations?: {
|
|
117
|
+
sitelen_emosi?: string | undefined;
|
|
118
|
+
ligatures?: string[] | undefined;
|
|
119
|
+
sitelen_sitelen?: string | undefined;
|
|
120
|
+
ucsur?: string | undefined;
|
|
121
|
+
} | undefined;
|
|
136
122
|
pu_verbatim?: {
|
|
137
123
|
en: string;
|
|
138
124
|
fr: string;
|
|
@@ -149,20 +135,11 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
149
135
|
};
|
|
150
136
|
}, {
|
|
151
137
|
[x: string]: {
|
|
138
|
+
id: string;
|
|
152
139
|
etymology: {
|
|
153
140
|
language: string;
|
|
154
141
|
sign: string;
|
|
155
142
|
}[];
|
|
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
143
|
translations: {
|
|
167
144
|
[x: string]: {
|
|
168
145
|
parameters: {
|
|
@@ -173,6 +150,15 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
173
150
|
};
|
|
174
151
|
};
|
|
175
152
|
};
|
|
153
|
+
is_two_handed: boolean;
|
|
154
|
+
signwriting: {
|
|
155
|
+
fsw: string;
|
|
156
|
+
swu: string;
|
|
157
|
+
};
|
|
158
|
+
video: {
|
|
159
|
+
gif?: string | undefined;
|
|
160
|
+
mp4?: string | undefined;
|
|
161
|
+
};
|
|
176
162
|
};
|
|
177
163
|
}> & hono.ToSchema<"get", "/luka_pona/fingerspelling/:sign", {
|
|
178
164
|
query: {
|
|
@@ -185,20 +171,11 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
185
171
|
}, {
|
|
186
172
|
ok: true;
|
|
187
173
|
data: {
|
|
174
|
+
id: string;
|
|
188
175
|
etymology: {
|
|
189
176
|
language: string;
|
|
190
177
|
sign: string;
|
|
191
178
|
}[];
|
|
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
179
|
translations: {
|
|
203
180
|
[x: string]: {
|
|
204
181
|
parameters: {
|
|
@@ -209,6 +186,15 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
209
186
|
};
|
|
210
187
|
};
|
|
211
188
|
};
|
|
189
|
+
is_two_handed: boolean;
|
|
190
|
+
signwriting: {
|
|
191
|
+
fsw: string;
|
|
192
|
+
swu: string;
|
|
193
|
+
};
|
|
194
|
+
video: {
|
|
195
|
+
gif?: string | undefined;
|
|
196
|
+
mp4?: string | undefined;
|
|
197
|
+
};
|
|
212
198
|
};
|
|
213
199
|
} | {
|
|
214
200
|
ok: false;
|
|
@@ -219,12 +205,23 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
219
205
|
};
|
|
220
206
|
}, {
|
|
221
207
|
[x: string]: {
|
|
208
|
+
id: string;
|
|
222
209
|
etymology: {
|
|
223
210
|
language: string;
|
|
224
211
|
sign?: string | undefined;
|
|
225
212
|
}[];
|
|
213
|
+
translations: {
|
|
214
|
+
[x: string]: {
|
|
215
|
+
parameters: {
|
|
216
|
+
handshape?: string | undefined;
|
|
217
|
+
movement?: string | undefined;
|
|
218
|
+
placement?: string | undefined;
|
|
219
|
+
orientation?: string | undefined;
|
|
220
|
+
};
|
|
221
|
+
icons: string;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
226
224
|
definition: string;
|
|
227
|
-
id: string;
|
|
228
225
|
is_two_handed: boolean;
|
|
229
226
|
new_gloss: string;
|
|
230
227
|
old_gloss: string;
|
|
@@ -236,17 +233,6 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
236
233
|
gif: string;
|
|
237
234
|
mp4: string;
|
|
238
235
|
};
|
|
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
236
|
};
|
|
251
237
|
}> & hono.ToSchema<"get", "/luka_pona/signs/:sign", {
|
|
252
238
|
query: {
|
|
@@ -259,12 +245,23 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
259
245
|
}, {
|
|
260
246
|
ok: true;
|
|
261
247
|
data: {
|
|
248
|
+
id: string;
|
|
262
249
|
etymology: {
|
|
263
250
|
language: string;
|
|
264
251
|
sign?: string | undefined;
|
|
265
252
|
}[];
|
|
253
|
+
translations: {
|
|
254
|
+
[x: string]: {
|
|
255
|
+
parameters: {
|
|
256
|
+
handshape?: string | undefined;
|
|
257
|
+
movement?: string | undefined;
|
|
258
|
+
placement?: string | undefined;
|
|
259
|
+
orientation?: string | undefined;
|
|
260
|
+
};
|
|
261
|
+
icons: string;
|
|
262
|
+
};
|
|
263
|
+
};
|
|
266
264
|
definition: string;
|
|
267
|
-
id: string;
|
|
268
265
|
is_two_handed: boolean;
|
|
269
266
|
new_gloss: string;
|
|
270
267
|
old_gloss: string;
|
|
@@ -276,29 +273,19 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
276
273
|
gif: string;
|
|
277
274
|
mp4: string;
|
|
278
275
|
};
|
|
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
276
|
};
|
|
291
277
|
} | {
|
|
292
278
|
ok: false;
|
|
293
279
|
message: string;
|
|
294
280
|
}> & hono.ToSchema<"get", "/fonts", unknown, {
|
|
295
281
|
[x: string]: {
|
|
282
|
+
id: string;
|
|
296
283
|
creator: string[];
|
|
284
|
+
ligatures: boolean;
|
|
297
285
|
ucsur: boolean;
|
|
298
286
|
features: string[];
|
|
299
287
|
filename: string;
|
|
300
288
|
license: string;
|
|
301
|
-
ligatures: boolean;
|
|
302
289
|
name: string;
|
|
303
290
|
style: string;
|
|
304
291
|
version: string;
|
|
@@ -308,7 +295,7 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
308
295
|
repo?: string | undefined;
|
|
309
296
|
webpage?: string | undefined;
|
|
310
297
|
};
|
|
311
|
-
last_updated?:
|
|
298
|
+
last_updated?: string | undefined;
|
|
312
299
|
};
|
|
313
300
|
}> & hono.ToSchema<"get", "/fonts/:font", {
|
|
314
301
|
param: {
|
|
@@ -317,12 +304,13 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
317
304
|
}, {
|
|
318
305
|
ok: true;
|
|
319
306
|
data: {
|
|
307
|
+
id: string;
|
|
320
308
|
creator: string[];
|
|
309
|
+
ligatures: boolean;
|
|
321
310
|
ucsur: boolean;
|
|
322
311
|
features: string[];
|
|
323
312
|
filename: string;
|
|
324
313
|
license: string;
|
|
325
|
-
ligatures: boolean;
|
|
326
314
|
name: string;
|
|
327
315
|
style: string;
|
|
328
316
|
version: string;
|
|
@@ -332,7 +320,7 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
332
320
|
repo?: string | undefined;
|
|
333
321
|
webpage?: string | undefined;
|
|
334
322
|
};
|
|
335
|
-
last_updated?:
|
|
323
|
+
last_updated?: string | undefined;
|
|
336
324
|
};
|
|
337
325
|
} | {
|
|
338
326
|
ok: false;
|
|
@@ -375,6 +363,7 @@ declare const client: {
|
|
|
375
363
|
};
|
|
376
364
|
output: {
|
|
377
365
|
[x: string]: {
|
|
366
|
+
id: string;
|
|
378
367
|
author_verbatim: string;
|
|
379
368
|
author_verbatim_source: string;
|
|
380
369
|
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
@@ -382,12 +371,6 @@ declare const client: {
|
|
|
382
371
|
coined_year: string;
|
|
383
372
|
creator: string[];
|
|
384
373
|
see_also: string[];
|
|
385
|
-
representations: {
|
|
386
|
-
sitelen_emosi: string;
|
|
387
|
-
sitelen_pona: string[];
|
|
388
|
-
sitelen_sitelen: string;
|
|
389
|
-
ucsur: string;
|
|
390
|
-
};
|
|
391
374
|
source_language: string;
|
|
392
375
|
usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
|
|
393
376
|
word: string;
|
|
@@ -400,18 +383,7 @@ declare const client: {
|
|
|
400
383
|
link: string;
|
|
401
384
|
}[];
|
|
402
385
|
usage: {
|
|
403
|
-
[x:
|
|
404
|
-
[x: `20${number}-02`]: number | undefined;
|
|
405
|
-
[x: `20${number}-03`]: number | undefined;
|
|
406
|
-
[x: `20${number}-04`]: number | undefined;
|
|
407
|
-
[x: `20${number}-05`]: number | undefined;
|
|
408
|
-
[x: `20${number}-06`]: number | undefined;
|
|
409
|
-
[x: `20${number}-07`]: number | undefined;
|
|
410
|
-
[x: `20${number}-08`]: number | undefined;
|
|
411
|
-
[x: `20${number}-09`]: number | undefined;
|
|
412
|
-
[x: `20${number}-10`]: number | undefined;
|
|
413
|
-
[x: `20${number}-11`]: number | undefined;
|
|
414
|
-
[x: `20${number}-12`]: number | undefined;
|
|
386
|
+
[x: string]: number;
|
|
415
387
|
};
|
|
416
388
|
translations: {
|
|
417
389
|
[x: string]: {
|
|
@@ -420,14 +392,23 @@ declare const client: {
|
|
|
420
392
|
definition?: string | undefined;
|
|
421
393
|
}[];
|
|
422
394
|
commentary: string;
|
|
423
|
-
|
|
395
|
+
definition: string;
|
|
424
396
|
sp_etymology: string;
|
|
425
397
|
};
|
|
426
398
|
};
|
|
427
399
|
ku_data?: {
|
|
428
400
|
[x: string]: number;
|
|
429
401
|
} | undefined;
|
|
430
|
-
|
|
402
|
+
resources?: {
|
|
403
|
+
sona_pona?: string | undefined;
|
|
404
|
+
lipamanka_semantic?: string | undefined;
|
|
405
|
+
} | undefined;
|
|
406
|
+
representations?: {
|
|
407
|
+
sitelen_emosi?: string | undefined;
|
|
408
|
+
ligatures?: string[] | undefined;
|
|
409
|
+
sitelen_sitelen?: string | undefined;
|
|
410
|
+
ucsur?: string | undefined;
|
|
411
|
+
} | undefined;
|
|
431
412
|
pu_verbatim?: {
|
|
432
413
|
en: string;
|
|
433
414
|
fr: string;
|
|
@@ -460,6 +441,7 @@ declare const client: {
|
|
|
460
441
|
output: {
|
|
461
442
|
ok: true;
|
|
462
443
|
data: {
|
|
444
|
+
id: string;
|
|
463
445
|
author_verbatim: string;
|
|
464
446
|
author_verbatim_source: string;
|
|
465
447
|
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
@@ -467,12 +449,6 @@ declare const client: {
|
|
|
467
449
|
coined_year: string;
|
|
468
450
|
creator: string[];
|
|
469
451
|
see_also: string[];
|
|
470
|
-
representations: {
|
|
471
|
-
sitelen_emosi: string;
|
|
472
|
-
sitelen_pona: string[];
|
|
473
|
-
sitelen_sitelen: string;
|
|
474
|
-
ucsur: string;
|
|
475
|
-
};
|
|
476
452
|
source_language: string;
|
|
477
453
|
usage_category: "core" | "widespread" | "common" | "uncommon" | "rare" | "obscure";
|
|
478
454
|
word: string;
|
|
@@ -485,18 +461,7 @@ declare const client: {
|
|
|
485
461
|
link: string;
|
|
486
462
|
}[];
|
|
487
463
|
usage: {
|
|
488
|
-
[x:
|
|
489
|
-
[x: `20${number}-02`]: number | undefined;
|
|
490
|
-
[x: `20${number}-03`]: number | undefined;
|
|
491
|
-
[x: `20${number}-04`]: number | undefined;
|
|
492
|
-
[x: `20${number}-05`]: number | undefined;
|
|
493
|
-
[x: `20${number}-06`]: number | undefined;
|
|
494
|
-
[x: `20${number}-07`]: number | undefined;
|
|
495
|
-
[x: `20${number}-08`]: number | undefined;
|
|
496
|
-
[x: `20${number}-09`]: number | undefined;
|
|
497
|
-
[x: `20${number}-10`]: number | undefined;
|
|
498
|
-
[x: `20${number}-11`]: number | undefined;
|
|
499
|
-
[x: `20${number}-12`]: number | undefined;
|
|
464
|
+
[x: string]: number;
|
|
500
465
|
};
|
|
501
466
|
translations: {
|
|
502
467
|
[x: string]: {
|
|
@@ -505,14 +470,23 @@ declare const client: {
|
|
|
505
470
|
definition?: string | undefined;
|
|
506
471
|
}[];
|
|
507
472
|
commentary: string;
|
|
508
|
-
|
|
473
|
+
definition: string;
|
|
509
474
|
sp_etymology: string;
|
|
510
475
|
};
|
|
511
476
|
};
|
|
512
477
|
ku_data?: {
|
|
513
478
|
[x: string]: number;
|
|
514
479
|
} | undefined;
|
|
515
|
-
|
|
480
|
+
resources?: {
|
|
481
|
+
sona_pona?: string | undefined;
|
|
482
|
+
lipamanka_semantic?: string | undefined;
|
|
483
|
+
} | undefined;
|
|
484
|
+
representations?: {
|
|
485
|
+
sitelen_emosi?: string | undefined;
|
|
486
|
+
ligatures?: string[] | undefined;
|
|
487
|
+
sitelen_sitelen?: string | undefined;
|
|
488
|
+
ucsur?: string | undefined;
|
|
489
|
+
} | undefined;
|
|
516
490
|
pu_verbatim?: {
|
|
517
491
|
en: string;
|
|
518
492
|
fr: string;
|
|
@@ -540,20 +514,11 @@ declare const client: {
|
|
|
540
514
|
};
|
|
541
515
|
output: {
|
|
542
516
|
[x: string]: {
|
|
517
|
+
id: string;
|
|
543
518
|
etymology: {
|
|
544
519
|
language: string;
|
|
545
520
|
sign: string;
|
|
546
521
|
}[];
|
|
547
|
-
id: string;
|
|
548
|
-
is_two_handed: boolean;
|
|
549
|
-
signwriting: {
|
|
550
|
-
fsw: string;
|
|
551
|
-
swu: string;
|
|
552
|
-
};
|
|
553
|
-
video: {
|
|
554
|
-
gif?: string | undefined;
|
|
555
|
-
mp4?: string | undefined;
|
|
556
|
-
};
|
|
557
522
|
translations: {
|
|
558
523
|
[x: string]: {
|
|
559
524
|
parameters: {
|
|
@@ -564,6 +529,15 @@ declare const client: {
|
|
|
564
529
|
};
|
|
565
530
|
};
|
|
566
531
|
};
|
|
532
|
+
is_two_handed: boolean;
|
|
533
|
+
signwriting: {
|
|
534
|
+
fsw: string;
|
|
535
|
+
swu: string;
|
|
536
|
+
};
|
|
537
|
+
video: {
|
|
538
|
+
gif?: string | undefined;
|
|
539
|
+
mp4?: string | undefined;
|
|
540
|
+
};
|
|
567
541
|
};
|
|
568
542
|
};
|
|
569
543
|
};
|
|
@@ -592,20 +566,11 @@ declare const client: {
|
|
|
592
566
|
output: {
|
|
593
567
|
ok: true;
|
|
594
568
|
data: {
|
|
569
|
+
id: string;
|
|
595
570
|
etymology: {
|
|
596
571
|
language: string;
|
|
597
572
|
sign: string;
|
|
598
573
|
}[];
|
|
599
|
-
id: string;
|
|
600
|
-
is_two_handed: boolean;
|
|
601
|
-
signwriting: {
|
|
602
|
-
fsw: string;
|
|
603
|
-
swu: string;
|
|
604
|
-
};
|
|
605
|
-
video: {
|
|
606
|
-
gif?: string | undefined;
|
|
607
|
-
mp4?: string | undefined;
|
|
608
|
-
};
|
|
609
574
|
translations: {
|
|
610
575
|
[x: string]: {
|
|
611
576
|
parameters: {
|
|
@@ -616,6 +581,15 @@ declare const client: {
|
|
|
616
581
|
};
|
|
617
582
|
};
|
|
618
583
|
};
|
|
584
|
+
is_two_handed: boolean;
|
|
585
|
+
signwriting: {
|
|
586
|
+
fsw: string;
|
|
587
|
+
swu: string;
|
|
588
|
+
};
|
|
589
|
+
video: {
|
|
590
|
+
gif?: string | undefined;
|
|
591
|
+
mp4?: string | undefined;
|
|
592
|
+
};
|
|
619
593
|
};
|
|
620
594
|
} | {
|
|
621
595
|
ok: false;
|
|
@@ -638,12 +612,23 @@ declare const client: {
|
|
|
638
612
|
};
|
|
639
613
|
output: {
|
|
640
614
|
[x: string]: {
|
|
615
|
+
id: string;
|
|
641
616
|
etymology: {
|
|
642
617
|
language: string;
|
|
643
618
|
sign?: string | undefined;
|
|
644
619
|
}[];
|
|
620
|
+
translations: {
|
|
621
|
+
[x: string]: {
|
|
622
|
+
parameters: {
|
|
623
|
+
handshape?: string | undefined;
|
|
624
|
+
movement?: string | undefined;
|
|
625
|
+
placement?: string | undefined;
|
|
626
|
+
orientation?: string | undefined;
|
|
627
|
+
};
|
|
628
|
+
icons: string;
|
|
629
|
+
};
|
|
630
|
+
};
|
|
645
631
|
definition: string;
|
|
646
|
-
id: string;
|
|
647
632
|
is_two_handed: boolean;
|
|
648
633
|
new_gloss: string;
|
|
649
634
|
old_gloss: string;
|
|
@@ -655,17 +640,6 @@ declare const client: {
|
|
|
655
640
|
gif: string;
|
|
656
641
|
mp4: string;
|
|
657
642
|
};
|
|
658
|
-
translations: {
|
|
659
|
-
[x: string]: {
|
|
660
|
-
parameters: {
|
|
661
|
-
handshape?: string | undefined;
|
|
662
|
-
movement?: string | undefined;
|
|
663
|
-
placement?: string | undefined;
|
|
664
|
-
orientation?: string | undefined;
|
|
665
|
-
};
|
|
666
|
-
icons: string;
|
|
667
|
-
};
|
|
668
|
-
};
|
|
669
643
|
};
|
|
670
644
|
};
|
|
671
645
|
};
|
|
@@ -694,12 +668,23 @@ declare const client: {
|
|
|
694
668
|
output: {
|
|
695
669
|
ok: true;
|
|
696
670
|
data: {
|
|
671
|
+
id: string;
|
|
697
672
|
etymology: {
|
|
698
673
|
language: string;
|
|
699
674
|
sign?: string | undefined;
|
|
700
675
|
}[];
|
|
676
|
+
translations: {
|
|
677
|
+
[x: string]: {
|
|
678
|
+
parameters: {
|
|
679
|
+
handshape?: string | undefined;
|
|
680
|
+
movement?: string | undefined;
|
|
681
|
+
placement?: string | undefined;
|
|
682
|
+
orientation?: string | undefined;
|
|
683
|
+
};
|
|
684
|
+
icons: string;
|
|
685
|
+
};
|
|
686
|
+
};
|
|
701
687
|
definition: string;
|
|
702
|
-
id: string;
|
|
703
688
|
is_two_handed: boolean;
|
|
704
689
|
new_gloss: string;
|
|
705
690
|
old_gloss: string;
|
|
@@ -711,17 +696,6 @@ declare const client: {
|
|
|
711
696
|
gif: string;
|
|
712
697
|
mp4: string;
|
|
713
698
|
};
|
|
714
|
-
translations: {
|
|
715
|
-
[x: string]: {
|
|
716
|
-
parameters: {
|
|
717
|
-
handshape?: string | undefined;
|
|
718
|
-
movement?: string | undefined;
|
|
719
|
-
placement?: string | undefined;
|
|
720
|
-
orientation?: string | undefined;
|
|
721
|
-
};
|
|
722
|
-
icons: string;
|
|
723
|
-
};
|
|
724
|
-
};
|
|
725
699
|
};
|
|
726
700
|
} | {
|
|
727
701
|
ok: false;
|
|
@@ -739,12 +713,13 @@ declare const client: {
|
|
|
739
713
|
input: {};
|
|
740
714
|
output: {
|
|
741
715
|
[x: string]: {
|
|
716
|
+
id: string;
|
|
742
717
|
creator: string[];
|
|
718
|
+
ligatures: boolean;
|
|
743
719
|
ucsur: boolean;
|
|
744
720
|
features: string[];
|
|
745
721
|
filename: string;
|
|
746
722
|
license: string;
|
|
747
|
-
ligatures: boolean;
|
|
748
723
|
name: string;
|
|
749
724
|
style: string;
|
|
750
725
|
version: string;
|
|
@@ -754,7 +729,7 @@ declare const client: {
|
|
|
754
729
|
repo?: string | undefined;
|
|
755
730
|
webpage?: string | undefined;
|
|
756
731
|
};
|
|
757
|
-
last_updated?:
|
|
732
|
+
last_updated?: string | undefined;
|
|
758
733
|
};
|
|
759
734
|
};
|
|
760
735
|
};
|
|
@@ -777,12 +752,13 @@ declare const client: {
|
|
|
777
752
|
output: {
|
|
778
753
|
ok: true;
|
|
779
754
|
data: {
|
|
755
|
+
id: string;
|
|
780
756
|
creator: string[];
|
|
757
|
+
ligatures: boolean;
|
|
781
758
|
ucsur: boolean;
|
|
782
759
|
features: string[];
|
|
783
760
|
filename: string;
|
|
784
761
|
license: string;
|
|
785
|
-
ligatures: boolean;
|
|
786
762
|
name: string;
|
|
787
763
|
style: string;
|
|
788
764
|
version: string;
|
|
@@ -792,7 +768,7 @@ declare const client: {
|
|
|
792
768
|
repo?: string | undefined;
|
|
793
769
|
webpage?: string | undefined;
|
|
794
770
|
};
|
|
795
|
-
last_updated?:
|
|
771
|
+
last_updated?: string | undefined;
|
|
796
772
|
};
|
|
797
773
|
} | {
|
|
798
774
|
ok: false;
|