@kulupu-linku/sona 0.1.7 → 0.1.9
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 +72 -96
- package/dist/index.d.ts +219 -127
- 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]: {
|
|
@@ -53,15 +37,24 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
53
37
|
language: string;
|
|
54
38
|
definition?: string | undefined;
|
|
55
39
|
}[];
|
|
40
|
+
definition: string;
|
|
56
41
|
commentary: string;
|
|
57
|
-
definitions: 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]: {
|
|
@@ -124,15 +101,24 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
124
101
|
language: string;
|
|
125
102
|
definition?: string | undefined;
|
|
126
103
|
}[];
|
|
104
|
+
definition: string;
|
|
127
105
|
commentary: string;
|
|
128
|
-
definitions: 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,11 +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
143
|
is_two_handed: boolean;
|
|
158
144
|
signwriting: {
|
|
159
145
|
fsw: string;
|
|
@@ -185,11 +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
179
|
is_two_handed: boolean;
|
|
194
180
|
signwriting: {
|
|
195
181
|
fsw: string;
|
|
@@ -219,12 +205,12 @@ 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
|
}[];
|
|
226
213
|
definition: string;
|
|
227
|
-
id: string;
|
|
228
214
|
is_two_handed: boolean;
|
|
229
215
|
new_gloss: string;
|
|
230
216
|
old_gloss: string;
|
|
@@ -259,12 +245,12 @@ 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
|
}[];
|
|
266
253
|
definition: string;
|
|
267
|
-
id: string;
|
|
268
254
|
is_two_handed: boolean;
|
|
269
255
|
new_gloss: string;
|
|
270
256
|
old_gloss: string;
|
|
@@ -293,12 +279,13 @@ declare const app: hono_hono_base.HonoBase<hono.Env, hono_types.MergeSchemaPath<
|
|
|
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]: {
|
|
@@ -419,15 +391,24 @@ declare const client: {
|
|
|
419
391
|
language: string;
|
|
420
392
|
definition?: string | undefined;
|
|
421
393
|
}[];
|
|
394
|
+
definition: string;
|
|
422
395
|
commentary: string;
|
|
423
|
-
definitions: 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]: {
|
|
@@ -504,15 +469,24 @@ declare const client: {
|
|
|
504
469
|
language: string;
|
|
505
470
|
definition?: string | undefined;
|
|
506
471
|
}[];
|
|
472
|
+
definition: string;
|
|
507
473
|
commentary: string;
|
|
508
|
-
definitions: 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,11 +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
522
|
is_two_handed: boolean;
|
|
549
523
|
signwriting: {
|
|
550
524
|
fsw: string;
|
|
@@ -592,11 +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
574
|
is_two_handed: boolean;
|
|
601
575
|
signwriting: {
|
|
602
576
|
fsw: string;
|
|
@@ -638,12 +612,12 @@ 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
|
}[];
|
|
645
620
|
definition: string;
|
|
646
|
-
id: string;
|
|
647
621
|
is_two_handed: boolean;
|
|
648
622
|
new_gloss: string;
|
|
649
623
|
old_gloss: string;
|
|
@@ -694,12 +668,12 @@ 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
|
}[];
|
|
701
676
|
definition: string;
|
|
702
|
-
id: string;
|
|
703
677
|
is_two_handed: boolean;
|
|
704
678
|
new_gloss: string;
|
|
705
679
|
old_gloss: string;
|
|
@@ -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;
|