waha-shared 1.0.170 → 1.0.172
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/areas/areas.schema.json +101 -0
- package/dist/data/aslTimestamps/aslTimestamps.schema.json +82 -0
- package/dist/data/bibleAudios/bibleAudios.schema.json +61 -0
- package/dist/data/bibleBooks/bibleBooks.schema.json +124 -0
- package/dist/data/bibleChaptersList/bibleChaptersList.schema.json +19 -0
- package/dist/data/bibleStatuses/bibleStatuses.schema.json +58 -0
- package/dist/data/bibleTexts/bibleTexts.schema.json +74 -0
- package/dist/data/clones/clones.schema.json +75 -0
- package/dist/data/countries/countries.schema.json +109 -0
- package/dist/data/countriesAndLanguages/countriesAndLanguages.schema.json +56 -0
- package/dist/data/crowdinLanguages/crowdinLanguages.schema.json +41 -0
- package/dist/data/curriculumFoundations/curriculumFoundations.schema.json +33 -0
- package/dist/data/curriculumQuestions/curriculumQuestions.schema.json +47 -0
- package/dist/data/curriculumTopics/curriculumTopics.schema.json +33 -0
- package/dist/data/dblAudioLicenses/dblAudioLicenses.json +6409 -0
- package/dist/data/dblTextLicenses/dblTextLicenses.json +14951 -0
- package/dist/data/iosVoiceOverLanguages/iosVoiceOverLanguages.schema.json +19 -0
- package/dist/data/iso6933LanguageCodes/iso6933LanguageCodes.schema.json +19 -0
- package/dist/data/languageAssets/languageAssets.json +499305 -0
- package/dist/data/languageAssets/languageAssets.schema.json +25 -0
- package/dist/data/languages/languages.schema.json +374 -0
- package/dist/data/mediaDurations/mediaDurations.schema.json +27 -0
- package/dist/data/notification/notification.schema.json +121 -0
- package/dist/data/numeralMaps/numeralMaps.schema.json +80 -0
- package/dist/data/orphanedBibleTexts/orphanedBibleTexts.json +2750 -0
- package/dist/data/phoneLanguages/phoneLanguages.schema.json +48 -0
- package/dist/data/questions/questions.schema.json +52 -0
- package/dist/data/releaseNotes/releaseNotes.schema.json +33 -0
- package/dist/data/screenshots/screenshots.schema.json +21 -0
- package/dist/data/scripts/scripts.json +20 -0
- package/dist/data/scripts/scripts.schema.json +26 -0
- package/dist/data/sets/sets.schema.json +135 -0
- package/dist/data/specialIds/specialIds.schema.json +132 -0
- package/dist/data/translationsApp/translationsApp.schema.json +1602 -0
- package/dist/data/translationsFtb/translationsFtb.schema.json +361 -0
- package/dist/data/translationsIntroduction/translationsIntroduction.schema.json +232 -0
- package/dist/data/translationsQuestion/translationsQuestion.schema.json +35 -0
- package/dist/data/translationsSet/translationsSet.schema.json +96 -0
- package/dist/data/translationsSolarSpeaker/translationsSolarSpeaker.schema.json +240 -0
- package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.schema.json +35 -0
- package/dist/data/youtubePlaylists/youtubePlaylists.schema.json +18 -0
- package/dist/data/youtubeVideos/youtubeVideos.schema.json +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"type": "array",
|
|
10
|
+
"items": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"description": "Language name supported by iOS VoiceOver"
|
|
13
|
+
},
|
|
14
|
+
"description": "List of language names that iOS VoiceOver supports"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"required": ["data"],
|
|
18
|
+
"description": "Languages supported by iOS VoiceOver accessibility feature"
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"type": "object",
|
|
10
|
+
"additionalProperties": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"description": "Language name in English"
|
|
13
|
+
},
|
|
14
|
+
"description": "Mapping of ISO 639-3 language codes to language names"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"required": ["data"],
|
|
18
|
+
"description": "ISO 639-3 language codes mapped to their English language names"
|
|
19
|
+
}
|