waha-shared 1.0.167 → 1.0.169

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.
Files changed (52) hide show
  1. package/dist/data/areas/areas.schema.json +101 -0
  2. package/dist/data/aslTimestamps/aslTimestamps.schema.json +82 -0
  3. package/dist/data/bibleAudios/bibleAudios.schema.json +61 -0
  4. package/dist/data/bibleBooks/bibleBooks.schema.json +124 -0
  5. package/dist/data/bibleChaptersList/bibleChaptersList.schema.json +19 -0
  6. package/dist/data/bibleStatuses/bibleStatuses.json +235 -58
  7. package/dist/data/bibleStatuses/bibleStatuses.schema.json +58 -0
  8. package/dist/data/bibleTexts/bibleTexts.schema.json +74 -0
  9. package/dist/data/clones/clones.schema.json +75 -0
  10. package/dist/data/countries/countries.schema.json +109 -0
  11. package/dist/data/countriesAndLanguages/countriesAndLanguages.schema.json +56 -0
  12. package/dist/data/crowdinLanguages/crowdinLanguages.schema.json +41 -0
  13. package/dist/data/curriculumFoundations/curriculumFoundations.schema.json +33 -0
  14. package/dist/data/curriculumQuestions/curriculumQuestions.schema.json +47 -0
  15. package/dist/data/curriculumTopics/curriculumTopics.schema.json +33 -0
  16. package/dist/data/dblAudioLicenses/dblAudioLicenses.json +6409 -0
  17. package/dist/data/dblTextLicenses/dblTextLicenses.json +14951 -0
  18. package/dist/data/iosVoiceOverLanguages/iosVoiceOverLanguages.schema.json +19 -0
  19. package/dist/data/iso6933LanguageCodes/iso6933LanguageCodes.schema.json +19 -0
  20. package/dist/data/languageAssets/languageAssets.json +499305 -0
  21. package/dist/data/languageAssets/languageAssets.schema.json +25 -0
  22. package/dist/data/languages/languages.json +2 -2
  23. package/dist/data/languages/languages.schema.json +374 -0
  24. package/dist/data/mediaDurations/mediaDurations.json +32 -0
  25. package/dist/data/mediaDurations/mediaDurations.schema.json +27 -0
  26. package/dist/data/notification/notification.schema.json +121 -0
  27. package/dist/data/numeralMaps/numeralMaps.schema.json +80 -0
  28. package/dist/data/orphanedBibleTexts/orphanedBibleTexts.json +2750 -0
  29. package/dist/data/phoneLanguages/phoneLanguages.schema.json +48 -0
  30. package/dist/data/questions/questions.schema.json +52 -0
  31. package/dist/data/releaseNotes/releaseNotes.json +82 -2
  32. package/dist/data/releaseNotes/releaseNotes.schema.json +33 -0
  33. package/dist/data/screenshots/screenshots.schema.json +21 -0
  34. package/dist/data/scripts/scripts.json +20 -0
  35. package/dist/data/scripts/scripts.schema.json +26 -0
  36. package/dist/data/sets/sets.schema.json +135 -0
  37. package/dist/data/specialIds/specialIds.schema.json +132 -0
  38. package/dist/data/translationsApp/translationsApp.json +388 -0
  39. package/dist/data/translationsApp/translationsApp.schema.json +1602 -0
  40. package/dist/data/translationsFtb/translationsFtb.json +68 -0
  41. package/dist/data/translationsFtb/translationsFtb.schema.json +361 -0
  42. package/dist/data/translationsIntroduction/translationsIntroduction.schema.json +232 -0
  43. package/dist/data/translationsQuestion/translationsQuestion.json +32 -0
  44. package/dist/data/translationsQuestion/translationsQuestion.schema.json +35 -0
  45. package/dist/data/translationsSet/translationsSet.json +789 -0
  46. package/dist/data/translationsSet/translationsSet.schema.json +96 -0
  47. package/dist/data/translationsSolarSpeaker/translationsSolarSpeaker.schema.json +240 -0
  48. package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.json +32 -0
  49. package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.schema.json +35 -0
  50. package/dist/data/youtubePlaylists/youtubePlaylists.schema.json +18 -0
  51. package/dist/data/youtubeVideos/youtubeVideos.schema.json +18 -0
  52. package/package.json +1 -1
@@ -0,0 +1,80 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "$schema": {
6
+ "type": "string"
7
+ },
8
+ "data": {
9
+ "title": "Numeral Maps",
10
+ "description": "Maps of numeral systems with digits 0-9 to their corresponding characters",
11
+ "type": "object",
12
+ "patternProperties": {
13
+ "^.*$": {
14
+ "type": "object",
15
+ "description": "A numeral system mapping",
16
+ "properties": {
17
+ "0": {
18
+ "type": "string",
19
+ "description": "Character representation of digit 0"
20
+ },
21
+ "1": {
22
+ "type": "string",
23
+ "description": "Character representation of digit 1"
24
+ },
25
+ "2": {
26
+ "type": "string",
27
+ "description": "Character representation of digit 2"
28
+ },
29
+ "3": {
30
+ "type": "string",
31
+ "description": "Character representation of digit 3"
32
+ },
33
+ "4": {
34
+ "type": "string",
35
+ "description": "Character representation of digit 4"
36
+ },
37
+ "5": {
38
+ "type": "string",
39
+ "description": "Character representation of digit 5"
40
+ },
41
+ "6": {
42
+ "type": "string",
43
+ "description": "Character representation of digit 6"
44
+ },
45
+ "7": {
46
+ "type": "string",
47
+ "description": "Character representation of digit 7"
48
+ },
49
+ "8": {
50
+ "type": "string",
51
+ "description": "Character representation of digit 8"
52
+ },
53
+ "9": {
54
+ "type": "string",
55
+ "description": "Character representation of digit 9"
56
+ }
57
+ },
58
+ "required": [
59
+ "0",
60
+ "1",
61
+ "2",
62
+ "3",
63
+ "4",
64
+ "5",
65
+ "6",
66
+ "7",
67
+ "8",
68
+ "9"
69
+ ],
70
+ "additionalProperties": false
71
+ }
72
+ },
73
+ "additionalProperties": false
74
+ }
75
+ },
76
+ "required": [
77
+ "$schema",
78
+ "data"
79
+ ]
80
+ }