@youversion/platform-core 0.4.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/.env.example +7 -0
- package/.env.local +10 -0
- package/.turbo/turbo-build.log +18 -0
- package/CHANGELOG.md +7 -0
- package/LICENSE +201 -0
- package/README.md +369 -0
- package/dist/index.cjs +1330 -0
- package/dist/index.d.cts +737 -0
- package/dist/index.d.ts +737 -0
- package/dist/index.js +1286 -0
- package/package.json +46 -0
- package/src/AuthenticationStrategy.ts +78 -0
- package/src/SignInWithYouVersionResult.ts +53 -0
- package/src/StorageStrategy.ts +81 -0
- package/src/URLBuilder.ts +71 -0
- package/src/Users.ts +137 -0
- package/src/WebAuthenticationStrategy.ts +127 -0
- package/src/YouVersionAPI.ts +27 -0
- package/src/YouVersionPlatformConfiguration.ts +80 -0
- package/src/YouVersionUserInfo.ts +49 -0
- package/src/__tests__/StorageStrategy.test.ts +404 -0
- package/src/__tests__/URLBuilder.test.ts +289 -0
- package/src/__tests__/YouVersionPlatformConfiguration.test.ts +150 -0
- package/src/__tests__/authentication.test.ts +174 -0
- package/src/__tests__/bible.test.ts +356 -0
- package/src/__tests__/client.test.ts +109 -0
- package/src/__tests__/handlers.ts +41 -0
- package/src/__tests__/highlights.test.ts +485 -0
- package/src/__tests__/languages.test.ts +139 -0
- package/src/__tests__/setup.ts +17 -0
- package/src/authentication.ts +27 -0
- package/src/bible.ts +272 -0
- package/src/client.ts +162 -0
- package/src/highlight.ts +16 -0
- package/src/highlights.ts +173 -0
- package/src/index.ts +20 -0
- package/src/languages.ts +80 -0
- package/src/schemas/bible-index.ts +48 -0
- package/src/schemas/book.ts +34 -0
- package/src/schemas/chapter.ts +24 -0
- package/src/schemas/collection.ts +28 -0
- package/src/schemas/highlight.ts +23 -0
- package/src/schemas/index.ts +11 -0
- package/src/schemas/language.ts +38 -0
- package/src/schemas/passage.ts +14 -0
- package/src/schemas/user.ts +10 -0
- package/src/schemas/verse.ts +17 -0
- package/src/schemas/version.ts +31 -0
- package/src/schemas/votd.ts +10 -0
- package/src/types/api-config.ts +9 -0
- package/src/types/auth.ts +15 -0
- package/src/types/book.ts +116 -0
- package/src/types/chapter.ts +5 -0
- package/src/types/highlight.ts +9 -0
- package/src/types/index.ts +22 -0
- package/src/utils/constants.ts +219 -0
- package/tsconfig.build.json +11 -0
- package/tsconfig.json +12 -0
- package/vitest.config.ts +9 -0
package/.env.example
ADDED
package/.env.local
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
YVP_API_BASE_URL=https://api-dev.youversion.com
|
|
2
|
+
|
|
3
|
+
# Your application ID from YouVersion Platform
|
|
4
|
+
YVP_APP_ID=Or8moGBK6GSh61OUOX7fUHgEsBsmVGMqAweZbydAgXnWj3nF
|
|
5
|
+
|
|
6
|
+
# Your installation ID
|
|
7
|
+
YVP_INSTALLATION_ID=a93b6749-7932-4bac-92ad-3e308f8a4bc4
|
|
8
|
+
|
|
9
|
+
# Optional: Authentication token for endpoints that require it
|
|
10
|
+
YVP_AUTH_TOKEN=
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
> @youversion/platform-core@0.4.1 build /home/runner/work/platform-sdk-react/platform-sdk-react/packages/core
|
|
3
|
+
> tsup src/index.ts --format cjs,esm --dts
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.5.0
|
|
8
|
+
[34mCLI[39m Target: es2022
|
|
9
|
+
[34mCJS[39m Build start
|
|
10
|
+
[34mESM[39m Build start
|
|
11
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m39.89 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 34ms
|
|
13
|
+
[32mESM[39m [1mdist/index.js [22m[32m37.89 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 35ms
|
|
15
|
+
[34mDTS[39m Build start
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 2125ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m34.20 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m34.20 KB[39m
|
package/CHANGELOG.md
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,369 @@
|
|
|
1
|
+
# @youversion/platform-core
|
|
2
|
+
|
|
3
|
+
A powerful, type-safe TypeScript library for interacting with Bible data. This package provides a comprehensive API client for fetching Bible versions, books, chapters, verses, and user authentication from the YouVersion Bible API.
|
|
4
|
+
|
|
5
|
+
## 🚀 Features
|
|
6
|
+
|
|
7
|
+
- **🔒 Type-safe API** - Full TypeScript support with comprehensive type definitions
|
|
8
|
+
- **🌐 Multi-language support** - Access Bible versions in multiple languages
|
|
9
|
+
- **📚 Complete Bible data** - Versions, books, chapters, verses, and metadata
|
|
10
|
+
- **🔐 User authentication** - Secure user authentication with Long Access Tokens (LAT)
|
|
11
|
+
- **⚡ Lightweight** - Minimal dependencies with tree-shaking support
|
|
12
|
+
- **🎯 Easy to use** - Simple, intuitive API design
|
|
13
|
+
- **📦 Modern packaging** - CommonJS and ES Module support
|
|
14
|
+
|
|
15
|
+
## 📦 Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# npm
|
|
19
|
+
npm install @youversion/platform-core
|
|
20
|
+
|
|
21
|
+
# yarn
|
|
22
|
+
yarn add @youversion/platform-core
|
|
23
|
+
|
|
24
|
+
# pnpm
|
|
25
|
+
pnpm add @youversion/platform-core
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## 🔑 Getting Started
|
|
29
|
+
|
|
30
|
+
Before using the library, you'll need to obtain an App ID from the [YouVersion Developer Portal](https://developers.youversion.com/). This is required for API authentication.
|
|
31
|
+
|
|
32
|
+
## 🏃 Quick Start
|
|
33
|
+
|
|
34
|
+
```ts
|
|
35
|
+
import { ApiClient, BibleClient } from '@youversion/platform-core'
|
|
36
|
+
|
|
37
|
+
// Initialize the API client
|
|
38
|
+
const apiClient = new ApiClient({
|
|
39
|
+
appId: 'YOUR_APP_ID', // Required: Get your App ID from https://developers.youversion.com/
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
// Create a Bible client
|
|
43
|
+
const bibleClient = new BibleClient(apiClient)
|
|
44
|
+
|
|
45
|
+
// Fetch Bible versions
|
|
46
|
+
const versions = await bibleClient.getVersions('en*')
|
|
47
|
+
|
|
48
|
+
// Get a specific version
|
|
49
|
+
const version = await bibleClient.getVersion(206) // ESV
|
|
50
|
+
|
|
51
|
+
// Fetch books for a version
|
|
52
|
+
const books = await bibleClient.getBooks(206)
|
|
53
|
+
|
|
54
|
+
// Get a specific chapter
|
|
55
|
+
const chapter = await bibleClient.getChapter(206, 'GEN', 1)
|
|
56
|
+
const chapterContent = await bibleClient.getPassage(206, chapter.passage_id)
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## 🔧 Configuration
|
|
60
|
+
|
|
61
|
+
### API Configuration
|
|
62
|
+
|
|
63
|
+
```ts
|
|
64
|
+
import { ApiClient } from '@youversion/platform-core'
|
|
65
|
+
|
|
66
|
+
const apiClient = new ApiClient({
|
|
67
|
+
appId: 'YOUR_APP_ID', // Required: Get your App ID from https://developers.youversion.com/
|
|
68
|
+
baseUrl: 'https://api.youversion.com', // Optional: API base URL
|
|
69
|
+
timeout: 10000, // Optional: Request timeout in ms (default: 10000)
|
|
70
|
+
version: 'v1', // Optional: API version (default: "v1")
|
|
71
|
+
})
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Configuration Options
|
|
75
|
+
|
|
76
|
+
| Option | Type | Default | Description |
|
|
77
|
+
| ---------------- | -------- | ---------------------------------- | ----------------------------------------------------------------------------------------- |
|
|
78
|
+
| `appId` | `string` | **Required** | Your application ID for API authentication. Get one at https://developers.youversion.com/ |
|
|
79
|
+
| `baseUrl` | `string` | `"https://api-dev.youversion.com"` | Base URL for the API |
|
|
80
|
+
| `timeout` | `number` | `10000` | Request timeout in milliseconds |
|
|
81
|
+
| `version` | `string` | `"v1"` | API version to use |
|
|
82
|
+
|
|
83
|
+
## 📖 API Reference
|
|
84
|
+
|
|
85
|
+
### BibleClient
|
|
86
|
+
|
|
87
|
+
The main client for interacting with Bible data.
|
|
88
|
+
|
|
89
|
+
#### Methods
|
|
90
|
+
|
|
91
|
+
##### `getVersions(language_ranges: string): Promise<Collection<Version>>`
|
|
92
|
+
|
|
93
|
+
Fetch available Bible versions filtered by language. The `language_ranges` parameter is required.
|
|
94
|
+
|
|
95
|
+
```ts
|
|
96
|
+
// Get all English versions
|
|
97
|
+
const englishVersions = await bibleClient.getVersions('en*')
|
|
98
|
+
|
|
99
|
+
// Get specific language versions
|
|
100
|
+
const spanishVersions = await bibleClient.getVersions('es*')
|
|
101
|
+
|
|
102
|
+
// Get multiple language versions
|
|
103
|
+
const multiLangVersions = await bibleClient.getVersions('en*,es*,fr*')
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
##### `getVersion(id: number): Promise<Version>`
|
|
107
|
+
|
|
108
|
+
Fetch a specific Bible version by ID.
|
|
109
|
+
|
|
110
|
+
```ts
|
|
111
|
+
const esv = await bibleClient.getVersion(111)
|
|
112
|
+
console.log(esv.title) // "English Standard Version"
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
##### `getBooks(versionId: number): Promise<Collection<Book>>`
|
|
116
|
+
|
|
117
|
+
Fetch all books for a specific Bible version.
|
|
118
|
+
|
|
119
|
+
```ts
|
|
120
|
+
const books = await bibleClient.getBooks(206)
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
##### `getBook(versionId: number, book: string): Promise<BibleBook>`
|
|
124
|
+
|
|
125
|
+
Fetch a specific book by its USFM identifier.
|
|
126
|
+
|
|
127
|
+
```ts
|
|
128
|
+
const genesis = await bibleClient.getBook(111, 'GEN')
|
|
129
|
+
console.log(genesis.title) // "Genesis"
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
##### `getChapters(versionId: number, book: string): Promise<Collection<BibleChapter>>`
|
|
133
|
+
|
|
134
|
+
Fetch all chapters for a specific book.
|
|
135
|
+
|
|
136
|
+
```ts
|
|
137
|
+
const chapters = await bibleClient.getChapters(206, 'GEN')
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
##### `getChapter(versionId: number, book: string, chapter: number): Promise<BibleChapter>`
|
|
141
|
+
|
|
142
|
+
Fetch a specific chapter.
|
|
143
|
+
|
|
144
|
+
```ts
|
|
145
|
+
const genesis1 = await bibleClient.getChapter(206, 'GEN', 1)
|
|
146
|
+
const content = await bibleClient.getPassage(206, genesis1.passage_id)
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
##### `getVerses(versionId: number, book: string, chapter: number): Promise<Collection<BibleVerse>>`
|
|
150
|
+
|
|
151
|
+
Fetch all verses for a specific chapter.
|
|
152
|
+
|
|
153
|
+
```ts
|
|
154
|
+
const verses = await bibleClient.getVerses(111, 'GEN', 1)
|
|
155
|
+
verses.data.forEach((verse) => {
|
|
156
|
+
const passage = await bibleClient.getPassage(206, verse.passage_id)
|
|
157
|
+
})
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
##### `getVerse(versionId: number, book: string, chapter: number, verse: number): Promise<BibleVerse>`
|
|
161
|
+
|
|
162
|
+
Fetch a specific verse.
|
|
163
|
+
|
|
164
|
+
```ts
|
|
165
|
+
const verse = await bibleClient.getVerse(111, 'GEN', 1, 1)
|
|
166
|
+
console.log('Verse reference:', verse.reference)
|
|
167
|
+
const passage = await bibleClient.getPassage(111, verse.passage_id)
|
|
168
|
+
console.log('Content:', passage.content) // "In the beginning, God created the heavens and the earth."
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
### AuthClient
|
|
172
|
+
|
|
173
|
+
Client for user authentication and user data.
|
|
174
|
+
|
|
175
|
+
#### Methods
|
|
176
|
+
|
|
177
|
+
##### `getUser(lat: string): Promise<User>`
|
|
178
|
+
|
|
179
|
+
Retrieve the current authenticated user using a Long Access Token.
|
|
180
|
+
|
|
181
|
+
```ts
|
|
182
|
+
import { AuthClient } from '@youversion/platform-core'
|
|
183
|
+
|
|
184
|
+
const authClient = new AuthClient(apiClient)
|
|
185
|
+
const user = await authClient.getUser('YOUR_LONG_ACCESS_TOKEN')
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
## 🔍 TypeScript Types
|
|
189
|
+
|
|
190
|
+
The library provides comprehensive TypeScript types for all API responses:
|
|
191
|
+
|
|
192
|
+
### Core Types
|
|
193
|
+
|
|
194
|
+
```ts
|
|
195
|
+
type BibleVersion = {
|
|
196
|
+
id: number
|
|
197
|
+
abbreviation: string
|
|
198
|
+
copyright_long: string
|
|
199
|
+
copyright_short: string
|
|
200
|
+
info: string
|
|
201
|
+
publisher_url: string
|
|
202
|
+
language_tag: string
|
|
203
|
+
local_abbreviation: string
|
|
204
|
+
local_title: string
|
|
205
|
+
title: string
|
|
206
|
+
books: Array<string>
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
interface BibleBook {
|
|
210
|
+
id: string
|
|
211
|
+
title: string
|
|
212
|
+
abbreviation: string
|
|
213
|
+
canon: string
|
|
214
|
+
chapters: Array<string>
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
interface BibleChapter {
|
|
218
|
+
id: string
|
|
219
|
+
book_id: string
|
|
220
|
+
passage_id: string
|
|
221
|
+
title: string
|
|
222
|
+
// ... additional fields
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
interface BibleVerse {
|
|
226
|
+
id: string
|
|
227
|
+
book_id: string
|
|
228
|
+
chapter_id: string
|
|
229
|
+
passage_id: string
|
|
230
|
+
reference: string
|
|
231
|
+
// ... additional fields
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
interface Collection<T> {
|
|
235
|
+
data: T[]
|
|
236
|
+
// ... pagination and metadata
|
|
237
|
+
}
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
## 🎯 Common Use Cases
|
|
241
|
+
|
|
242
|
+
### 1. Building a Bible Reading App
|
|
243
|
+
|
|
244
|
+
```ts
|
|
245
|
+
import { ApiClient, BibleClient } from '@youversion/platform-core'
|
|
246
|
+
|
|
247
|
+
class BibleApp {
|
|
248
|
+
private bibleClient: BibleClient
|
|
249
|
+
|
|
250
|
+
constructor(appId: string) {
|
|
251
|
+
const apiClient = new ApiClient({ appId })
|
|
252
|
+
this.bibleClient = new BibleClient(apiClient)
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
async loadChapter(versionId: number, bookUsfm: string, chapterNum: number) {
|
|
256
|
+
const chapter = await this.bibleClient.getChapter(versionId, bookUsfm, chapterNum)
|
|
257
|
+
const verses = await this.bibleClient.getVerses(versionId, bookUsfm, chapterNum)
|
|
258
|
+
|
|
259
|
+
return {
|
|
260
|
+
chapter,
|
|
261
|
+
verses: verses.data,
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
async searchVersions(languageCode: string) {
|
|
266
|
+
const versions = await this.bibleClient.getVersions(`${languageCode}*`)
|
|
267
|
+
return versions.data
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
### 2. Creating a Verse Reference Tool
|
|
273
|
+
|
|
274
|
+
```ts
|
|
275
|
+
async function getVerseReference(reference: string, versionId: number) {
|
|
276
|
+
// Parse reference like "GEN 1:1"
|
|
277
|
+
const [book, chapterVerse] = reference.split(' ')
|
|
278
|
+
const [chapter, verse] = chapterVerse.split(':')
|
|
279
|
+
|
|
280
|
+
const verseData = await bibleClient.getVerse(versionId, book, parseInt(chapter), parseInt(verse))
|
|
281
|
+
const passage = await bibleClient.getPassage(versionId, verseData.passage_id)
|
|
282
|
+
|
|
283
|
+
return {
|
|
284
|
+
reference,
|
|
285
|
+
content: passage.content,
|
|
286
|
+
version: await bibleClient.getVersion(versionId),
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
### 3. Multi-language Bible Comparison
|
|
292
|
+
|
|
293
|
+
```ts
|
|
294
|
+
async function compareVerses(book: string, chapter: number, verse: number, versionIds: number[]) {
|
|
295
|
+
const comparisons = await Promise.all(
|
|
296
|
+
versionIds.map(async (versionId) => {
|
|
297
|
+
const [version, verseData] = await Promise.all([
|
|
298
|
+
bibleClient.getVersion(versionId),
|
|
299
|
+
bibleClient.getVerse(versionId, book, chapter, verse),
|
|
300
|
+
])
|
|
301
|
+
|
|
302
|
+
const passage = await bibleClient.getPassage(versionId, verseData.passage_id)
|
|
303
|
+
return {
|
|
304
|
+
version: version.title,
|
|
305
|
+
language: version.language_tag,
|
|
306
|
+
content: passage.content,
|
|
307
|
+
}
|
|
308
|
+
})
|
|
309
|
+
)
|
|
310
|
+
|
|
311
|
+
return comparisons
|
|
312
|
+
}
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
## 🚦 Error Handling
|
|
316
|
+
|
|
317
|
+
The library uses standard HTTP status codes and provides meaningful error messages:
|
|
318
|
+
|
|
319
|
+
```ts
|
|
320
|
+
import { ApiClient, BibleClient } from '@youversion/platform-core'
|
|
321
|
+
|
|
322
|
+
try {
|
|
323
|
+
const bibleClient = new BibleClient(new ApiClient({ appId: 'YOUR_APP_ID' })) // Get App ID from https://developers.youversion.com/
|
|
324
|
+
const version = await bibleClient.getVersion(999999) // Non-existent version
|
|
325
|
+
} catch (error) {
|
|
326
|
+
if (error.response?.status === 404) {
|
|
327
|
+
console.error('Version not found')
|
|
328
|
+
} else if (error.response?.status === 401) {
|
|
329
|
+
console.error('Authentication failed - check your App ID')
|
|
330
|
+
} else {
|
|
331
|
+
console.error('An error occurred:', error.message)
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
```
|
|
335
|
+
|
|
336
|
+
## 🔧 Development
|
|
337
|
+
|
|
338
|
+
### Prerequisites
|
|
339
|
+
|
|
340
|
+
- Node.js 18+
|
|
341
|
+
- TypeScript 4.8+
|
|
342
|
+
|
|
343
|
+
### Building
|
|
344
|
+
|
|
345
|
+
```bash
|
|
346
|
+
# Install dependencies
|
|
347
|
+
npm install
|
|
348
|
+
|
|
349
|
+
# Build the library
|
|
350
|
+
npm run build
|
|
351
|
+
|
|
352
|
+
# Run tests (from monorepo root for consistency)
|
|
353
|
+
pnpm test
|
|
354
|
+
|
|
355
|
+
# Run linting
|
|
356
|
+
npm run lint
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
## 📄 License
|
|
360
|
+
|
|
361
|
+
This package is part of the YouVersion Bible SDK and is subject to YouVersion's terms of service.
|
|
362
|
+
|
|
363
|
+
## 🤝 Contributing
|
|
364
|
+
|
|
365
|
+
This is an internal YouVersion package. For issues or feature requests, please contact the YouVersion development team.
|
|
366
|
+
|
|
367
|
+
## 📚 Related Packages
|
|
368
|
+
|
|
369
|
+
- `@youversion/platform-react-ui` - React UI components for Bible applications
|