waha-shared 1.0.21 → 1.0.28
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/data/languages.json +1 -1
- package/dist/data/mediaDurations.json +1441 -1433
- package/dist/data/typescript/ftbTranslations.d.ts +204 -0
- package/dist/data/typescript/ftbTranslations.js +74 -0
- package/dist/data/typescript/spokenQuestionTranslations.d.ts +3 -0
- package/dist/data/typescript/spokenQuestionTranslations.js +5 -0
- package/dist/functions/languages.js +5 -0
- package/dist/translations/appTranslations.json +353 -0
- package/dist/translations/ftbTranslations.d.ts +69 -0
- package/dist/translations/ftbTranslations.js +8 -0
- package/dist/translations/ftbTranslations.json +3810 -0
- package/dist/translations/introductionTranslations.json +42 -0
- package/dist/translations/questionTranslations.json +384 -0
- package/dist/translations/setTranslations.json +15068 -6998
- package/dist/translations/spokenQuestionTranslations.d.ts +2 -0
- package/dist/translations/spokenQuestionTranslations.js +8 -0
- package/dist/translations/spokenQuestionTranslations.json +1856 -0
- package/dist/types/languages.d.ts +4 -0
- package/package.json +5 -2
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import type { BibleAudios } from '../data/typescript/bibleAudios';
|
|
2
2
|
import type { BibleTexts } from '../data/typescript/bibleTexts';
|
|
3
|
+
import type { FtbTranslations } from '../data/typescript/ftbTranslations';
|
|
3
4
|
import type { IntroductionTranslations } from '../data/typescript/introductionTranslations';
|
|
4
5
|
import type { Languages } from '../data/typescript/languages';
|
|
5
6
|
import type { QuestionsCurriculums } from '../data/typescript/questionsCurriculums';
|
|
6
7
|
import type { QuestionTranslations } from '../data/typescript/questionTranslations';
|
|
7
8
|
import type { SetTranslations } from '../data/typescript/setTranslations';
|
|
9
|
+
import type { SpokenQuestionTranslations } from '../data/typescript/spokenQuestionTranslations';
|
|
8
10
|
type Language = Languages[number];
|
|
9
11
|
type BibleText = BibleTexts[number];
|
|
10
12
|
type BibleAudio = BibleAudios[number];
|
|
@@ -26,6 +28,8 @@ export interface LanguageInfo extends Omit<Language, 'bible' | 'bibleFallback'>
|
|
|
26
28
|
export interface MeetTranslations {
|
|
27
29
|
sets: SetTranslations[string];
|
|
28
30
|
questions: QuestionTranslations[string];
|
|
31
|
+
questionsSpoken: SpokenQuestionTranslations[string];
|
|
32
|
+
ftbs: FtbTranslations[string];
|
|
29
33
|
introductions: IntroductionTranslations[string];
|
|
30
34
|
}
|
|
31
35
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "waha-shared",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.28",
|
|
4
4
|
"author": "Waha",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@types/signale": "^1.4.7",
|
|
@@ -15,5 +15,8 @@
|
|
|
15
15
|
"dist",
|
|
16
16
|
"assets/fonts"
|
|
17
17
|
],
|
|
18
|
-
"license": "MIT"
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"update": "npx tsc && npm version patch && git add . && git commit -m 'Update shared types' && bash -c 'npm publish --access public --registry https://registry.npmjs.org --//registry.npmjs.org/:_authToken=$(grep NODE_AUTH_TOKEN= ../.env | cut -d \"=\" -f2-)'"
|
|
21
|
+
}
|
|
19
22
|
}
|