free-use-bible-api 0.1.0 → 0.1.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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,13 +27,13 @@ yarn add free-use-bible-api
27
27
  Create a client and point it at the production API:
28
28
 
29
29
  ```ts
30
- import { Configuration, DefaultApi } from 'free-use-bible-api';
30
+ import { Configuration, FreeUseBibleApi } from 'free-use-bible-api';
31
31
 
32
32
  const config = new Configuration({
33
33
  basePath: 'https://bible.helloao.org',
34
34
  });
35
35
 
36
- const api = new DefaultApi(config);
36
+ const api = new FreeUseBibleApi(config);
37
37
  ```
38
38
 
39
39
  ## Translation Usage Guide
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "free-use-bible-api",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Access over 1000 Bible translations in over 700 languages for free",
5
5
  "main": "./dist/cjs/index.cjs",
6
6
  "module": "./dist/esm/index.js",