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.
- package/.DS_Store +0 -0
- package/README.md +10 -0
- package/__init__.py +0 -0
- package/copy.ts +37 -0
- package/data/README.md +45 -0
- package/data/__init__.py +0 -0
- package/data/aslTimestamps.json +192788 -0
- package/data/bibleAudios.json +394 -0
- package/data/bibleAudios.ts +4 -0
- package/data/bibleResources/audioBibleLicenses.json +6235 -0
- package/data/bibleResources/bibleBooks.json +6071 -0
- package/data/bibleResources/bibleBooks.ts +4 -0
- package/data/bibleResources/bibleChaptersList.json +1191 -0
- package/data/bibleResources/bibleChaptersList.ts +4 -0
- package/data/bibleResources/textBibleLicenses.json +14603 -0
- package/data/bibleStatuses.json +9196 -0
- package/data/bibleStatuses.ts +4 -0
- package/data/bibleTexts.json +527 -0
- package/data/bibleTexts.ts +4 -0
- package/data/clones.json +13 -0
- package/data/countryResources/areas.json +74 -0
- package/data/countryResources/areas.ts +4 -0
- package/data/countryResources/countries.json +3362 -0
- package/data/countryResources/countries.ts +4 -0
- package/data/foundationsCurriculums.json +130 -0
- package/data/foundationsCurriculums.ts +4 -0
- package/data/languageResources/countriesAndLanguages.json +11718 -0
- package/data/languageResources/countriesAndLanguages.ts +16 -0
- package/data/languageResources/crowdinLanguages.json +2172 -0
- package/data/languageResources/iosVoiceOverLanguages.json +64 -0
- package/data/languageResources/iso6933LanguageCodes.json +7927 -0
- package/data/languageResources/mmsLanguages.json +28164 -0
- package/data/languageResources/phoneLanguages.json +1532 -0
- package/data/languageResources/phoneLanguages.ts +14 -0
- package/data/languages.json +7045 -0
- package/data/languages.ts +4 -0
- package/data/mediaDurations.json +32364 -0
- package/data/mediaDurations.ts +4 -0
- package/data/notification.json +69 -0
- package/data/notification.ts +4 -0
- package/data/numeralMaps.json +26 -0
- package/data/numeralMaps.ts +4 -0
- package/data/orphanedBibleTexts.json +2747 -0
- package/data/questions.json +317 -0
- package/data/questions.ts +4 -0
- package/data/questionsCurriculums.json +753 -0
- package/data/questionsCurriculums.ts +4 -0
- package/data/releaseNotes.json +2381 -0
- package/data/releaseNotes.ts +4 -0
- package/data/schemas/appTranslations.schema.json +802 -0
- package/data/schemas/areas.schema.json +76 -0
- package/data/schemas/aslTimestamps.schema.json +59 -0
- package/data/schemas/bibleAudios.schema.json +37 -0
- package/data/schemas/bibleBooks.schema.json +112 -0
- package/data/schemas/bibleChapters.schema.json +61 -0
- package/data/schemas/bibleStatuses.schema.json +41 -0
- package/data/schemas/bibleTexts.schema.json +60 -0
- package/data/schemas/clones.schema.json +63 -0
- package/data/schemas/countries.schema.json +84 -0
- package/data/schemas/foundationsCurriculums.schema.json +20 -0
- package/data/schemas/introductionTranslations.schema.json +101 -0
- package/data/schemas/languages.schema.json +365 -0
- package/data/schemas/mediaDurations.schema.json +41 -0
- package/data/schemas/notification.schema.json +111 -0
- package/data/schemas/numeralMaps.schema.json +57 -0
- package/data/schemas/questionTranslations.schema.json +20 -0
- package/data/schemas/questions.schema.json +29 -0
- package/data/schemas/questionsCurriculums.schema.json +34 -0
- package/data/schemas/releaseNotes.schema.json +21 -0
- package/data/schemas/screenshots.schema.json +23 -0
- package/data/schemas/setTranslations.schema.json +70 -0
- package/data/schemas/sets.schema.json +109 -0
- package/data/schemas/topicsCurriculums.schema.json +20 -0
- package/data/screenshots.json +17 -0
- package/data/screenshots.ts +4 -0
- package/data/sets.json +12258 -0
- package/data/sets.ts +4 -0
- package/data/specialIds.json +72 -0
- package/data/specialIds.ts +19 -0
- package/data/timings/som.json +9150 -0
- package/data/topicsCurriculums.json +131 -0
- package/data/topicsCurriculums.ts +4 -0
- package/data/typescript/appTranslations.ts +322 -0
- package/data/typescript/areas.ts +45 -0
- package/data/typescript/aslTimestamps.ts +36 -0
- package/data/typescript/bibleAudioAvailableChapters.ts +35 -0
- package/data/typescript/bibleAudios.ts +32 -0
- package/data/typescript/bibleBookNames.ts +97 -0
- package/data/typescript/bibleBooks.ts +63 -0
- package/data/typescript/bibleChapters.ts +40 -0
- package/data/typescript/bibleStatuses.ts +54 -0
- package/data/typescript/bibleTextAvailableChapters.ts +35 -0
- package/data/typescript/bibleTexts.ts +63 -0
- package/data/typescript/clones.ts +35 -0
- package/data/typescript/countries.ts +152 -0
- package/data/typescript/foundationsCurriculums.ts +15 -0
- package/data/typescript/introductionTranslations.ts +60 -0
- package/data/typescript/languages.ts +369 -0
- package/data/typescript/mediaDurations.ts +89 -0
- package/data/typescript/notification.ts +189 -0
- package/data/typescript/numeralMaps.ts +74 -0
- package/data/typescript/questionTranslations.ts +6 -0
- package/data/typescript/questions.ts +25 -0
- package/data/typescript/questionsCurriculums.ts +26 -0
- package/data/typescript/releaseNotes.ts +10 -0
- package/data/typescript/screenshots.ts +52 -0
- package/data/typescript/setTranslations.ts +39 -0
- package/data/typescript/sets.ts +105 -0
- package/data/typescript/topicsCurriculums.ts +15 -0
- package/data/youtube/playlists.json +28 -0
- package/data/youtube/videos.json +262 -0
- package/data/youtube/videos.ts +2 -0
- package/functions/activeCampaign.ts +127 -0
- package/functions/bibleChapterUtils.ts +241 -0
- package/functions/crowdin.ts +51 -0
- package/functions/languages.ts +284 -0
- package/functions/scripturePassages.ts +368 -0
- package/functions/sets.ts +495 -0
- package/package.json +10 -0
- package/translations/appTranslations.json +10239 -0
- package/translations/appTranslations.ts +4 -0
- package/translations/introductionTranslations.json +422 -0
- package/translations/introductionTranslations.ts +4 -0
- package/translations/questionTranslations.json +1472 -0
- package/translations/questionTranslations.ts +4 -0
- package/translations/setTranslations.json +30257 -0
- package/translations/setTranslations.ts +4 -0
- package/translations/spokenQuestionTranslations.json +1472 -0
- package/types/analytics.ts +147 -0
- package/types/completions.ts +9 -0
- package/types/feedback.ts +27 -0
- package/types/languages.ts +37 -0
- package/types/notifications.ts +37 -0
- package/types/sets.ts +84 -0
- package/types/users.ts +162 -0
package/data/sets.ts
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activationQuestions": ["a.004", "a.012", "a.021"],
|
|
3
|
+
"dmCourseImplementationLessonIds": [
|
|
4
|
+
"03.009.004",
|
|
5
|
+
"03.009.005",
|
|
6
|
+
"03.009.006",
|
|
7
|
+
"03.009.007",
|
|
8
|
+
"03.009.008",
|
|
9
|
+
"03.009.009",
|
|
10
|
+
"03.009.010"
|
|
11
|
+
],
|
|
12
|
+
"dmCourseLessonIds": [
|
|
13
|
+
"03.009.001",
|
|
14
|
+
"03.009.002",
|
|
15
|
+
"03.009.003",
|
|
16
|
+
"03.009.004",
|
|
17
|
+
"03.009.005",
|
|
18
|
+
"03.009.006",
|
|
19
|
+
"03.009.007",
|
|
20
|
+
"03.009.008",
|
|
21
|
+
"03.009.009",
|
|
22
|
+
"03.009.010"
|
|
23
|
+
],
|
|
24
|
+
"dmCourseSectionLessonIds": ["03.009.001", "03.009.002", "03.009.004"],
|
|
25
|
+
"dmCourseSetId": "03.009",
|
|
26
|
+
"dmCourseTrailerLessonId": "03.009.001",
|
|
27
|
+
"dmCourseVideoOnlyLessonIds": ["03.009.001", "03.009.002", "03.009.003"],
|
|
28
|
+
"dmCourseVisionVideoLessonIds": ["03.009.002", "03.009.003"],
|
|
29
|
+
"dmCourseWeek1LessonId": "03.009.002",
|
|
30
|
+
"dmCourseWeek2LessonId": "03.009.003",
|
|
31
|
+
"evaluationQuestionLessonIds": ["03.005.013", "03.006.013", "03.007.013"],
|
|
32
|
+
"growingAsDmcSetIds": ["03.005", "03.006", "03.007"],
|
|
33
|
+
"introductionLessonIds": [
|
|
34
|
+
"03.005.001",
|
|
35
|
+
"03.005.002",
|
|
36
|
+
"03.005.003",
|
|
37
|
+
"03.005.004",
|
|
38
|
+
"03.005.005",
|
|
39
|
+
"03.005.006",
|
|
40
|
+
"03.005.007",
|
|
41
|
+
"03.005.008",
|
|
42
|
+
"03.005.009",
|
|
43
|
+
"03.005.010",
|
|
44
|
+
"03.005.011",
|
|
45
|
+
"03.005.012",
|
|
46
|
+
"03.006.001",
|
|
47
|
+
"03.006.002",
|
|
48
|
+
"03.006.003",
|
|
49
|
+
"03.006.004",
|
|
50
|
+
"03.006.005",
|
|
51
|
+
"03.006.006",
|
|
52
|
+
"03.006.007",
|
|
53
|
+
"03.006.008",
|
|
54
|
+
"03.006.009",
|
|
55
|
+
"03.006.010",
|
|
56
|
+
"03.006.011",
|
|
57
|
+
"03.006.012",
|
|
58
|
+
"03.007.001",
|
|
59
|
+
"03.007.002",
|
|
60
|
+
"03.007.003",
|
|
61
|
+
"03.007.004",
|
|
62
|
+
"03.007.005",
|
|
63
|
+
"03.007.006",
|
|
64
|
+
"03.007.007",
|
|
65
|
+
"03.007.008",
|
|
66
|
+
"03.007.009",
|
|
67
|
+
"03.007.010",
|
|
68
|
+
"03.007.011",
|
|
69
|
+
"03.007.012"
|
|
70
|
+
],
|
|
71
|
+
"previousActivationQuestions": ["f.005", "f.016"]
|
|
72
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import specialIdsData from './specialIds.json'
|
|
2
|
+
export interface SpecialIds {
|
|
3
|
+
dmCourseImplementationLessonIds: string[]
|
|
4
|
+
dmCourseLessonIds: string[]
|
|
5
|
+
dmCourseSectionLessonIds: string[]
|
|
6
|
+
dmCourseSetId: string
|
|
7
|
+
dmCourseTrailerLessonId: string
|
|
8
|
+
dmCourseVideoOnlyLessonIds: string[]
|
|
9
|
+
dmCourseVisionVideoLessonIds: string[]
|
|
10
|
+
dmCourseWeek1LessonId: string
|
|
11
|
+
dmCourseWeek2LessonId: string
|
|
12
|
+
evaluationQuestionLessonIds: string[]
|
|
13
|
+
growingAsDmcSetIds: string[]
|
|
14
|
+
introductionLessonIds: string[]
|
|
15
|
+
activationQuestions: string[]
|
|
16
|
+
previousActivationQuestions: string[]
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default specialIdsData as SpecialIds
|