waha-shared 1.0.1

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 (135) hide show
  1. package/.DS_Store +0 -0
  2. package/README.md +10 -0
  3. package/__init__.py +0 -0
  4. package/copy.ts +37 -0
  5. package/data/README.md +45 -0
  6. package/data/__init__.py +0 -0
  7. package/data/aslTimestamps.json +192788 -0
  8. package/data/bibleAudios.json +394 -0
  9. package/data/bibleAudios.ts +4 -0
  10. package/data/bibleResources/audioBibleLicenses.json +6235 -0
  11. package/data/bibleResources/bibleBooks.json +6071 -0
  12. package/data/bibleResources/bibleBooks.ts +4 -0
  13. package/data/bibleResources/bibleChaptersList.json +1191 -0
  14. package/data/bibleResources/bibleChaptersList.ts +4 -0
  15. package/data/bibleResources/textBibleLicenses.json +14603 -0
  16. package/data/bibleStatuses.json +9196 -0
  17. package/data/bibleStatuses.ts +4 -0
  18. package/data/bibleTexts.json +527 -0
  19. package/data/bibleTexts.ts +4 -0
  20. package/data/clones.json +13 -0
  21. package/data/countryResources/areas.json +74 -0
  22. package/data/countryResources/areas.ts +4 -0
  23. package/data/countryResources/countries.json +3362 -0
  24. package/data/countryResources/countries.ts +4 -0
  25. package/data/foundationsCurriculums.json +130 -0
  26. package/data/foundationsCurriculums.ts +4 -0
  27. package/data/languageResources/countriesAndLanguages.json +11718 -0
  28. package/data/languageResources/countriesAndLanguages.ts +16 -0
  29. package/data/languageResources/crowdinLanguages.json +2172 -0
  30. package/data/languageResources/iosVoiceOverLanguages.json +64 -0
  31. package/data/languageResources/iso6933LanguageCodes.json +7927 -0
  32. package/data/languageResources/mmsLanguages.json +28164 -0
  33. package/data/languageResources/phoneLanguages.json +1532 -0
  34. package/data/languageResources/phoneLanguages.ts +14 -0
  35. package/data/languages.json +7045 -0
  36. package/data/languages.ts +4 -0
  37. package/data/mediaDurations.json +32364 -0
  38. package/data/mediaDurations.ts +4 -0
  39. package/data/notification.json +69 -0
  40. package/data/notification.ts +4 -0
  41. package/data/numeralMaps.json +26 -0
  42. package/data/numeralMaps.ts +4 -0
  43. package/data/orphanedBibleTexts.json +2747 -0
  44. package/data/questions.json +317 -0
  45. package/data/questions.ts +4 -0
  46. package/data/questionsCurriculums.json +753 -0
  47. package/data/questionsCurriculums.ts +4 -0
  48. package/data/releaseNotes.json +2381 -0
  49. package/data/releaseNotes.ts +4 -0
  50. package/data/schemas/appTranslations.schema.json +802 -0
  51. package/data/schemas/areas.schema.json +76 -0
  52. package/data/schemas/aslTimestamps.schema.json +59 -0
  53. package/data/schemas/bibleAudios.schema.json +37 -0
  54. package/data/schemas/bibleBooks.schema.json +112 -0
  55. package/data/schemas/bibleChapters.schema.json +61 -0
  56. package/data/schemas/bibleStatuses.schema.json +41 -0
  57. package/data/schemas/bibleTexts.schema.json +60 -0
  58. package/data/schemas/clones.schema.json +63 -0
  59. package/data/schemas/countries.schema.json +84 -0
  60. package/data/schemas/foundationsCurriculums.schema.json +20 -0
  61. package/data/schemas/introductionTranslations.schema.json +101 -0
  62. package/data/schemas/languages.schema.json +365 -0
  63. package/data/schemas/mediaDurations.schema.json +41 -0
  64. package/data/schemas/notification.schema.json +111 -0
  65. package/data/schemas/numeralMaps.schema.json +57 -0
  66. package/data/schemas/questionTranslations.schema.json +20 -0
  67. package/data/schemas/questions.schema.json +29 -0
  68. package/data/schemas/questionsCurriculums.schema.json +34 -0
  69. package/data/schemas/releaseNotes.schema.json +21 -0
  70. package/data/schemas/screenshots.schema.json +23 -0
  71. package/data/schemas/setTranslations.schema.json +70 -0
  72. package/data/schemas/sets.schema.json +109 -0
  73. package/data/schemas/topicsCurriculums.schema.json +20 -0
  74. package/data/screenshots.json +17 -0
  75. package/data/screenshots.ts +4 -0
  76. package/data/sets.json +12258 -0
  77. package/data/sets.ts +4 -0
  78. package/data/specialIds.json +72 -0
  79. package/data/specialIds.ts +19 -0
  80. package/data/timings/som.json +9150 -0
  81. package/data/topicsCurriculums.json +131 -0
  82. package/data/topicsCurriculums.ts +4 -0
  83. package/data/typescript/appTranslations.ts +322 -0
  84. package/data/typescript/areas.ts +45 -0
  85. package/data/typescript/aslTimestamps.ts +36 -0
  86. package/data/typescript/bibleAudioAvailableChapters.ts +35 -0
  87. package/data/typescript/bibleAudios.ts +32 -0
  88. package/data/typescript/bibleBookNames.ts +97 -0
  89. package/data/typescript/bibleBooks.ts +63 -0
  90. package/data/typescript/bibleChapters.ts +40 -0
  91. package/data/typescript/bibleStatuses.ts +54 -0
  92. package/data/typescript/bibleTextAvailableChapters.ts +35 -0
  93. package/data/typescript/bibleTexts.ts +63 -0
  94. package/data/typescript/clones.ts +35 -0
  95. package/data/typescript/countries.ts +152 -0
  96. package/data/typescript/foundationsCurriculums.ts +15 -0
  97. package/data/typescript/introductionTranslations.ts +60 -0
  98. package/data/typescript/languages.ts +369 -0
  99. package/data/typescript/mediaDurations.ts +89 -0
  100. package/data/typescript/notification.ts +189 -0
  101. package/data/typescript/numeralMaps.ts +74 -0
  102. package/data/typescript/questionTranslations.ts +6 -0
  103. package/data/typescript/questions.ts +25 -0
  104. package/data/typescript/questionsCurriculums.ts +26 -0
  105. package/data/typescript/releaseNotes.ts +10 -0
  106. package/data/typescript/screenshots.ts +52 -0
  107. package/data/typescript/setTranslations.ts +39 -0
  108. package/data/typescript/sets.ts +105 -0
  109. package/data/typescript/topicsCurriculums.ts +15 -0
  110. package/data/youtube/playlists.json +28 -0
  111. package/data/youtube/videos.json +262 -0
  112. package/data/youtube/videos.ts +2 -0
  113. package/functions/activeCampaign.ts +127 -0
  114. package/functions/bibleChapterUtils.ts +241 -0
  115. package/functions/crowdin.ts +51 -0
  116. package/functions/languages.ts +284 -0
  117. package/functions/scripturePassages.ts +368 -0
  118. package/functions/sets.ts +495 -0
  119. package/package.json +10 -0
  120. package/translations/appTranslations.json +10239 -0
  121. package/translations/appTranslations.ts +4 -0
  122. package/translations/introductionTranslations.json +422 -0
  123. package/translations/introductionTranslations.ts +4 -0
  124. package/translations/questionTranslations.json +1472 -0
  125. package/translations/questionTranslations.ts +4 -0
  126. package/translations/setTranslations.json +30257 -0
  127. package/translations/setTranslations.ts +4 -0
  128. package/translations/spokenQuestionTranslations.json +1472 -0
  129. package/types/analytics.ts +147 -0
  130. package/types/completions.ts +9 -0
  131. package/types/feedback.ts +27 -0
  132. package/types/languages.ts +37 -0
  133. package/types/notifications.ts +37 -0
  134. package/types/sets.ts +84 -0
  135. package/types/users.ts +162 -0
@@ -0,0 +1,4 @@
1
+ import type { Countries } from '../typescript/countries'
2
+ import countries from './countries.json'
3
+
4
+ export default countries as Countries
@@ -0,0 +1,130 @@
1
+ [
2
+ {
3
+ "curriculumId": "eng",
4
+ "sets": [
5
+ "01.001",
6
+ "01.002",
7
+ "01.003",
8
+ "01.004",
9
+ "01.005",
10
+ "01.006",
11
+ "01.007",
12
+ "01.008",
13
+ "01.009"
14
+ ]
15
+ },
16
+ {
17
+ "curriculumId": "mfe",
18
+ "sets": [
19
+ "01.072",
20
+ "01.073",
21
+ "01.074",
22
+ "01.075",
23
+ "01.076",
24
+ "01.077",
25
+ "01.078",
26
+ "01.079",
27
+ "01.080"
28
+ ]
29
+ },
30
+ {
31
+ "curriculumId": "arz",
32
+ "sets": [
33
+ "01.054",
34
+ "01.055",
35
+ "01.056",
36
+ "01.057",
37
+ "01.058",
38
+ "01.059",
39
+ "01.060",
40
+ "01.061",
41
+ "01.062"
42
+ ]
43
+ },
44
+ {
45
+ "curriculumId": "afb",
46
+ "sets": [
47
+ "01.030",
48
+ "01.031",
49
+ "01.032",
50
+ "01.033",
51
+ "01.034",
52
+ "01.035",
53
+ "01.036",
54
+ "01.037",
55
+ "01.038",
56
+ "01.039",
57
+ "01.040",
58
+ "01.041"
59
+ ]
60
+ },
61
+ {
62
+ "curriculumId": "hic",
63
+ "sets": [
64
+ "01.017",
65
+ "01.018",
66
+ "01.019",
67
+ "01.020",
68
+ "01.014",
69
+ "01.015",
70
+ "01.016"
71
+ ]
72
+ },
73
+ {
74
+ "curriculumId": "hin",
75
+ "sets": [
76
+ "01.010",
77
+ "01.011",
78
+ "01.012",
79
+ "01.013",
80
+ "01.014",
81
+ "01.015",
82
+ "01.016"
83
+ ]
84
+ },
85
+ {
86
+ "curriculumId": "tur",
87
+ "sets": [
88
+ "01.021",
89
+ "01.022",
90
+ "01.023",
91
+ "01.024",
92
+ "01.025",
93
+ "01.026",
94
+ "01.027",
95
+ "01.028",
96
+ "01.029"
97
+ ]
98
+ },
99
+ {
100
+ "curriculumId": "ais",
101
+ "sets": [
102
+ "01.042",
103
+ "01.043",
104
+ "01.044",
105
+ "01.045",
106
+ "01.046",
107
+ "01.047",
108
+ "01.048",
109
+ "01.049",
110
+ "01.050",
111
+ "01.051",
112
+ "01.052",
113
+ "01.053"
114
+ ]
115
+ },
116
+ {
117
+ "curriculumId": "ase",
118
+ "sets": [
119
+ "01.063",
120
+ "01.064",
121
+ "01.065",
122
+ "01.066",
123
+ "01.067",
124
+ "01.068",
125
+ "01.069",
126
+ "01.070",
127
+ "01.071"
128
+ ]
129
+ }
130
+ ]
@@ -0,0 +1,4 @@
1
+ import foundationsCurriculumsData from './foundationsCurriculums.json'
2
+ import { foundationsCurriculums } from './typescript/foundationsCurriculums'
3
+
4
+ export default foundationsCurriculums.parse(foundationsCurriculumsData)