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,317 @@
1
+ [
2
+ {
3
+ "comment": "",
4
+ "hasBeep": true,
5
+ "music": "intro",
6
+ "name": "Welcome (DBS)",
7
+ "questionId": "f.001"
8
+ },
9
+ {
10
+ "comment": "",
11
+ "hasBeep": true,
12
+ "name": "Stressful?",
13
+ "questionId": "f.002"
14
+ },
15
+ {
16
+ "comment": "",
17
+ "hasBeep": true,
18
+ "name": "Needs of community?",
19
+ "questionId": "f.003"
20
+ },
21
+ {
22
+ "comment": "",
23
+ "hasBeep": true,
24
+ "name": "Last session’s story?",
25
+ "questionId": "f.004"
26
+ },
27
+ {
28
+ "comment": "",
29
+ "hasBeep": true,
30
+ "name": "How was application?",
31
+ "questionId": "f.005"
32
+ },
33
+ {
34
+ "comment": "",
35
+ "hasBeep": true,
36
+ "name": "How was sharing?",
37
+ "questionId": "f.006"
38
+ },
39
+ {
40
+ "comment": "",
41
+ "hasBeep": true,
42
+ "name": "How did needs go?",
43
+ "questionId": "f.007"
44
+ },
45
+ {
46
+ "comment": "",
47
+ "hasBeep": false,
48
+ "music": "outroShort",
49
+ "name": "Listen to story",
50
+ "questionId": "f.008"
51
+ },
52
+ {
53
+ "comment": "",
54
+ "hasBeep": true,
55
+ "music": "intro",
56
+ "name": "Welcome (DMC)",
57
+ "questionId": "f.009"
58
+ },
59
+ {
60
+ "comment": "",
61
+ "hasBeep": true,
62
+ "name": "Needs of lost?",
63
+ "questionId": "f.010"
64
+ },
65
+ {
66
+ "comment": "",
67
+ "hasBeep": true,
68
+ "name": "How is multiplying prayer?",
69
+ "questionId": "f.011"
70
+ },
71
+ {
72
+ "comment": "",
73
+ "hasBeep": true,
74
+ "name": "Learned about making disciples?",
75
+ "questionId": "f.012"
76
+ },
77
+ {
78
+ "comment": "",
79
+ "hasBeep": false,
80
+ "music": "outroShort",
81
+ "name": "Listen to truth",
82
+ "questionId": "f.013"
83
+ },
84
+ {
85
+ "comment": "",
86
+ "hasBeep": true,
87
+ "name": "Retelling",
88
+ "questionId": "a.001"
89
+ },
90
+ {
91
+ "comment": "",
92
+ "hasBeep": true,
93
+ "name": "Teach about God?",
94
+ "questionId": "a.002"
95
+ },
96
+ {
97
+ "comment": "",
98
+ "hasBeep": true,
99
+ "name": "Learn about people?",
100
+ "questionId": "a.003"
101
+ },
102
+ {
103
+ "comment": "",
104
+ "hasBeep": true,
105
+ "name": "Specific action?",
106
+ "questionId": "a.004"
107
+ },
108
+ {
109
+ "comment": "",
110
+ "hasBeep": true,
111
+ "name": "Share truth with whom?",
112
+ "questionId": "a.005"
113
+ },
114
+ {
115
+ "comment": "",
116
+ "hasBeep": true,
117
+ "name": "Decide next meeting",
118
+ "questionId": "a.006"
119
+ },
120
+ {
121
+ "comment": "",
122
+ "hasBeep": false,
123
+ "music": "outroLong",
124
+ "name": "Closing",
125
+ "questionId": "a.007"
126
+ },
127
+ {
128
+ "comment": "",
129
+ "hasBeep": true,
130
+ "name": "Learn about being disciples?",
131
+ "questionId": "a.008"
132
+ },
133
+ {
134
+ "comment": "",
135
+ "hasBeep": true,
136
+ "name": "Learn about being the church?",
137
+ "questionId": "a.009"
138
+ },
139
+ {
140
+ "comment": "",
141
+ "hasBeep": true,
142
+ "name": "Learn about being leaders?",
143
+ "questionId": "a.010"
144
+ },
145
+ {
146
+ "comment": "",
147
+ "hasBeep": true,
148
+ "name": "Learn about making disciples?",
149
+ "questionId": "a.011"
150
+ },
151
+ {
152
+ "comment": "",
153
+ "hasBeep": true,
154
+ "name": "Specific action?",
155
+ "questionId": "a.012"
156
+ },
157
+ {
158
+ "comment": "",
159
+ "hasBeep": false,
160
+ "name": "Watch video",
161
+ "questionId": "a.013"
162
+ },
163
+ {
164
+ "comment": "",
165
+ "hasBeep": true,
166
+ "name": "How to apply disciples?",
167
+ "questionId": "a.014"
168
+ },
169
+ {
170
+ "comment": "",
171
+ "hasBeep": true,
172
+ "name": "Share with whom?",
173
+ "questionId": "a.015"
174
+ },
175
+ {
176
+ "comment": "",
177
+ "hasBeep": true,
178
+ "name": "Talked with whom?",
179
+ "questionId": "a.016"
180
+ },
181
+ {
182
+ "comment": "",
183
+ "hasBeep": true,
184
+ "name": "How engage the lost?",
185
+ "questionId": "a.017"
186
+ },
187
+ {
188
+ "comment": "Used for Hindi and related languages",
189
+ "hasBeep": true,
190
+ "music": "intro",
191
+ "name": "Welcome",
192
+ "questionId": "f.014"
193
+ },
194
+ {
195
+ "comment": "Used for Hindi and related languages",
196
+ "hasBeep": true,
197
+ "name": "Learn from previous?",
198
+ "questionId": "f.015"
199
+ },
200
+ {
201
+ "comment": "Used for Hindi and related languages",
202
+ "hasBeep": true,
203
+ "name": "How did you obey?",
204
+ "questionId": "f.016"
205
+ },
206
+ {
207
+ "comment": "Used for Hindi and related languages",
208
+ "hasBeep": true,
209
+ "name": "With whom did you share?",
210
+ "questionId": "f.017"
211
+ },
212
+ {
213
+ "comment": "Used for Hindi and related languages",
214
+ "hasBeep": false,
215
+ "music": "outroShort",
216
+ "name": "Let's listen",
217
+ "questionId": "f.018"
218
+ },
219
+ {
220
+ "comment": "Used for Hindi and related languages",
221
+ "hasBeep": false,
222
+ "name": "Listen again",
223
+ "questionId": "a.018"
224
+ },
225
+ {
226
+ "comment": "Used for Hindi and related languages",
227
+ "hasBeep": true,
228
+ "name": "Learn about God?",
229
+ "questionId": "a.019"
230
+ },
231
+ {
232
+ "comment": "Used for Hindi and related languages",
233
+ "hasBeep": true,
234
+ "name": "Learn about people?",
235
+ "questionId": "a.020"
236
+ },
237
+ {
238
+ "comment": "Used for Hindi and related languages",
239
+ "hasBeep": true,
240
+ "name": "How apply?",
241
+ "questionId": "a.021"
242
+ },
243
+ {
244
+ "comment": "Used for Hindi and related languages",
245
+ "hasBeep": true,
246
+ "name": "Who will you share with?",
247
+ "questionId": "a.022"
248
+ },
249
+ {
250
+ "comment": "Used for Hindi and related languages",
251
+ "hasBeep": true,
252
+ "name": "Meet again?",
253
+ "questionId": "a.023"
254
+ },
255
+ {
256
+ "comment": "Used for Hindi and related languages",
257
+ "hasBeep": false,
258
+ "music": "outroLong",
259
+ "name": "Closing",
260
+ "questionId": "a.024"
261
+ },
262
+ {
263
+ "comment": "Used for Gulf Arabic.",
264
+ "hasBeep": true,
265
+ "name": "Challenges",
266
+ "questionId": "a.025"
267
+ },
268
+ {
269
+ "comment": "Used for Gulf Arabic.",
270
+ "hasBeep": true,
271
+ "name": "Can group help?",
272
+ "questionId": "a.026"
273
+ },
274
+ {
275
+ "comment": "Used for Thai.",
276
+ "hasBeep": true,
277
+ "name": "Like about this passage",
278
+ "questionId": "a.027"
279
+ },
280
+ {
281
+ "comment": "Used for Thai.",
282
+ "hasBeep": true,
283
+ "name": "Disliked about this passage",
284
+ "questionId": "a.028"
285
+ },
286
+ {
287
+ "comment": "Used for Mauritian Creole",
288
+ "hasBeep": true,
289
+ "name": "Stressful?",
290
+ "questionId": "f.019"
291
+ },
292
+ {
293
+ "comment": "Used for Mauritian Creole",
294
+ "hasBeep": true,
295
+ "music": "intro",
296
+ "name": "Welcome (DBS)",
297
+ "questionId": "f.019"
298
+ },
299
+ {
300
+ "comment": "Used for Mauritian Creole",
301
+ "hasBeep": true,
302
+ "name": "Stressful?",
303
+ "questionId": "f.020"
304
+ },
305
+ {
306
+ "comment": "Used for Mauritian Creole",
307
+ "hasBeep": true,
308
+ "name": "Needs of community?",
309
+ "questionId": "f.021"
310
+ },
311
+ {
312
+ "comment": "",
313
+ "hasBeep": false,
314
+ "name": "Placeholder for video",
315
+ "questionId": "a.video"
316
+ }
317
+ ]
@@ -0,0 +1,4 @@
1
+ import questions from './questions.json'
2
+ import { questions as questionsSchema } from './typescript/questions'
3
+
4
+ export default questionsSchema.parse(questions)