waha-shared 1.0.169 → 1.0.170

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 (43) hide show
  1. package/package.json +1 -1
  2. package/dist/data/areas/areas.schema.json +0 -101
  3. package/dist/data/aslTimestamps/aslTimestamps.schema.json +0 -82
  4. package/dist/data/bibleAudios/bibleAudios.schema.json +0 -61
  5. package/dist/data/bibleBooks/bibleBooks.schema.json +0 -124
  6. package/dist/data/bibleChaptersList/bibleChaptersList.schema.json +0 -19
  7. package/dist/data/bibleStatuses/bibleStatuses.schema.json +0 -58
  8. package/dist/data/bibleTexts/bibleTexts.schema.json +0 -74
  9. package/dist/data/clones/clones.schema.json +0 -75
  10. package/dist/data/countries/countries.schema.json +0 -109
  11. package/dist/data/countriesAndLanguages/countriesAndLanguages.schema.json +0 -56
  12. package/dist/data/crowdinLanguages/crowdinLanguages.schema.json +0 -41
  13. package/dist/data/curriculumFoundations/curriculumFoundations.schema.json +0 -33
  14. package/dist/data/curriculumQuestions/curriculumQuestions.schema.json +0 -47
  15. package/dist/data/curriculumTopics/curriculumTopics.schema.json +0 -33
  16. package/dist/data/dblAudioLicenses/dblAudioLicenses.json +0 -6409
  17. package/dist/data/dblTextLicenses/dblTextLicenses.json +0 -14951
  18. package/dist/data/iosVoiceOverLanguages/iosVoiceOverLanguages.schema.json +0 -19
  19. package/dist/data/iso6933LanguageCodes/iso6933LanguageCodes.schema.json +0 -19
  20. package/dist/data/languageAssets/languageAssets.json +0 -499305
  21. package/dist/data/languageAssets/languageAssets.schema.json +0 -25
  22. package/dist/data/languages/languages.schema.json +0 -374
  23. package/dist/data/mediaDurations/mediaDurations.schema.json +0 -27
  24. package/dist/data/notification/notification.schema.json +0 -121
  25. package/dist/data/numeralMaps/numeralMaps.schema.json +0 -80
  26. package/dist/data/orphanedBibleTexts/orphanedBibleTexts.json +0 -2750
  27. package/dist/data/phoneLanguages/phoneLanguages.schema.json +0 -48
  28. package/dist/data/questions/questions.schema.json +0 -52
  29. package/dist/data/releaseNotes/releaseNotes.schema.json +0 -33
  30. package/dist/data/screenshots/screenshots.schema.json +0 -21
  31. package/dist/data/scripts/scripts.json +0 -20
  32. package/dist/data/scripts/scripts.schema.json +0 -26
  33. package/dist/data/sets/sets.schema.json +0 -135
  34. package/dist/data/specialIds/specialIds.schema.json +0 -132
  35. package/dist/data/translationsApp/translationsApp.schema.json +0 -1602
  36. package/dist/data/translationsFtb/translationsFtb.schema.json +0 -361
  37. package/dist/data/translationsIntroduction/translationsIntroduction.schema.json +0 -232
  38. package/dist/data/translationsQuestion/translationsQuestion.schema.json +0 -35
  39. package/dist/data/translationsSet/translationsSet.schema.json +0 -96
  40. package/dist/data/translationsSolarSpeaker/translationsSolarSpeaker.schema.json +0 -240
  41. package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.schema.json +0 -35
  42. package/dist/data/youtubePlaylists/youtubePlaylists.schema.json +0 -18
  43. package/dist/data/youtubeVideos/youtubeVideos.schema.json +0 -18
@@ -1,109 +0,0 @@
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": "Countries",
10
- "additionalProperties": false,
11
- "description": "A mapping of country codes to country information including name, area, and bounding box coordinates",
12
- "patternProperties": {
13
- "^[A-Z]{2}$": {
14
- "additionalProperties": false,
15
- "properties": {
16
- "name": {
17
- "description": "The display name of the country",
18
- "type": "string"
19
- },
20
- "areaId": {
21
- "description": "The geographical area identifier",
22
- "enum": [
23
- "north-america",
24
- "latin-america-caribbean",
25
- "sub-saharan-africa",
26
- "middle-east-north-africa",
27
- "western-asia",
28
- "western-europe",
29
- "eastern-europe",
30
- "southern-asia",
31
- "central-asia",
32
- "eastern-asia",
33
- "southeast-asia",
34
- "oceania"
35
- ],
36
- "type": "string"
37
- },
38
- "boundingBox": {
39
- "additionalProperties": false,
40
- "description": "Bounding box coordinates for the country",
41
- "properties": {
42
- "ne": {
43
- "additionalProperties": false,
44
- "properties": {
45
- "lat": {
46
- "description": "Northeast latitude coordinate",
47
- "maximum": 90,
48
- "minimum": -90,
49
- "type": "number"
50
- },
51
- "lon": {
52
- "description": "Northeast longitude coordinate",
53
- "maximum": 180,
54
- "minimum": -180,
55
- "type": "number"
56
- }
57
- },
58
- "required": [
59
- "lat",
60
- "lon"
61
- ],
62
- "type": "object"
63
- },
64
- "sw": {
65
- "additionalProperties": false,
66
- "properties": {
67
- "lat": {
68
- "description": "Southwest latitude coordinate",
69
- "maximum": 90,
70
- "minimum": -90,
71
- "type": "number"
72
- },
73
- "lon": {
74
- "description": "Southwest longitude coordinate",
75
- "maximum": 180,
76
- "minimum": -180,
77
- "type": "number"
78
- }
79
- },
80
- "required": [
81
- "lat",
82
- "lon"
83
- ],
84
- "type": "object"
85
- }
86
- },
87
- "required": [
88
- "sw",
89
- "ne"
90
- ],
91
- "type": "object"
92
- }
93
- },
94
- "required": [
95
- "name",
96
- "areaId",
97
- "boundingBox"
98
- ],
99
- "type": "object"
100
- }
101
- },
102
- "type": "object"
103
- }
104
- },
105
- "required": [
106
- "$schema",
107
- "data"
108
- ]
109
- }
@@ -1,56 +0,0 @@
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": "object",
12
- "additionalProperties": false,
13
- "properties": {
14
- "countryCode": {
15
- "type": "string",
16
- "description": "Two-letter ISO 3166-1 alpha-2 country code"
17
- },
18
- "countryName": {
19
- "type": "string",
20
- "description": "English name of the country"
21
- },
22
- "population": {
23
- "type": "number",
24
- "description": "Total population of the country"
25
- },
26
- "languages": {
27
- "type": "array",
28
- "description": "Languages spoken in this country",
29
- "items": {
30
- "type": "object",
31
- "additionalProperties": false,
32
- "properties": {
33
- "languageId": {
34
- "type": "string",
35
- "description": "Three-letter ISO 639-3 language code"
36
- },
37
- "languageName": {
38
- "type": "string",
39
- "description": "English name of the language"
40
- },
41
- "numSpeakers": {
42
- "type": "number",
43
- "description": "Number of speakers of this language in this country"
44
- }
45
- },
46
- "required": ["languageId", "languageName", "numSpeakers"]
47
- }
48
- }
49
- },
50
- "required": ["countryCode", "countryName", "languages"]
51
- }
52
- }
53
- },
54
- "required": ["data"],
55
- "description": "Mapping of countries to languages spoken within them"
56
- }
@@ -1,41 +0,0 @@
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": "object",
12
- "additionalProperties": false,
13
- "properties": {
14
- "crowdin_id": {
15
- "type": "string",
16
- "description": "Crowdin language identifier"
17
- },
18
- "name": {
19
- "type": "string",
20
- "description": "English name of the language"
21
- },
22
- "iso": {
23
- "type": "string",
24
- "description": "ISO 639-3 language code"
25
- },
26
- "locale": {
27
- "type": "string",
28
- "description": "Locale code in format language-COUNTRY"
29
- },
30
- "duplicate_iso": {
31
- "type": "boolean",
32
- "description": "Whether this ISO code is duplicated across multiple Crowdin languages"
33
- }
34
- },
35
- "required": ["crowdin_id", "name", "iso", "locale", "duplicate_iso"]
36
- }
37
- }
38
- },
39
- "required": ["data"],
40
- "description": "Mapping of Crowdin language identifiers to ISO codes and locales"
41
- }
@@ -1,33 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "properties": {
5
- "$schema": {
6
- "type": "string"
7
- },
8
- "data": {
9
- "items": {
10
- "additionalProperties": false,
11
- "properties": {
12
- "curriculumId": {
13
- "type": "string"
14
- },
15
- "crowdinProjectId": {
16
- "type": "string"
17
- },
18
- "sets": {
19
- "description": "An array of set ids that make up this foundations curriculum. Set ids must be linked to valid sets present in data/sets.json.",
20
- "items": {
21
- "type": "string"
22
- },
23
- "type": "array"
24
- }
25
- },
26
- "required": ["curriculumId", "crowdinProjectId", "sets"],
27
- "type": "object"
28
- },
29
- "type": "array"
30
- }
31
- },
32
- "required": ["$schema", "data"]
33
- }
@@ -1,47 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "properties": {
5
- "$schema": {
6
- "type": "string"
7
- },
8
- "data": {
9
- "items": {
10
- "additionalProperties": false,
11
- "properties": {
12
- "curriculumId": {
13
- "type": "string"
14
- },
15
- "crowdinProjectId": {
16
- "type": "string"
17
- },
18
- "questionSets": {
19
- "description": "An array of question sets that make up this questions curriculum.",
20
- "items": {
21
- "additionalProperties": false,
22
- "properties": {
23
- "questionSetId": {
24
- "type": "string"
25
- },
26
- "questions": {
27
- "description": "An array of question ids that make up this question set.",
28
- "items": {
29
- "type": "string"
30
- },
31
- "type": "array"
32
- }
33
- },
34
- "required": ["questionSetId", "questions"],
35
- "type": "object"
36
- },
37
- "type": "array"
38
- }
39
- },
40
- "required": ["curriculumId", "crowdinProjectId", "questionSets"],
41
- "type": "object"
42
- },
43
- "type": "array"
44
- }
45
- },
46
- "required": ["$schema", "data"]
47
- }
@@ -1,33 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "properties": {
5
- "$schema": {
6
- "type": "string"
7
- },
8
- "data": {
9
- "items": {
10
- "additionalProperties": false,
11
- "properties": {
12
- "curriculumId": {
13
- "type": "string"
14
- },
15
- "crowdinProjectId": {
16
- "type": "string"
17
- },
18
- "sets": {
19
- "description": "An array of set ids that make up this topics curriculum. Set ids must be linked to valid sets present in data/sets.json.",
20
- "items": {
21
- "type": "string"
22
- },
23
- "type": "array"
24
- }
25
- },
26
- "required": ["curriculumId", "crowdinProjectId", "sets"],
27
- "type": "object"
28
- },
29
- "type": "array"
30
- }
31
- },
32
- "required": ["$schema", "data"]
33
- }