musora-content-services 1.0.7 → 1.0.10
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/CHANGELOG.md +4 -0
- package/README.md +8 -1
- package/docs/fonts/Montserrat/Montserrat-Bold.eot +0 -0
- package/docs/fonts/Montserrat/Montserrat-Bold.ttf +0 -0
- package/docs/fonts/Montserrat/Montserrat-Bold.woff +0 -0
- package/docs/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
- package/docs/fonts/Montserrat/Montserrat-Regular.eot +0 -0
- package/docs/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
- package/docs/fonts/Montserrat/Montserrat-Regular.woff +0 -0
- package/docs/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.eot +0 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.svg +978 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.ttf +0 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff +0 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff2 +0 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.eot +0 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.svg +1049 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.ttf +0 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff +0 -0
- package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff2 +0 -0
- package/docs/global.html +1881 -1588
- package/docs/index.html +33 -10
- package/docs/index.js.html +304 -99
- package/docs/scripts/collapse.js +39 -0
- package/docs/scripts/commonNav.js +28 -0
- package/docs/scripts/nav.js +12 -0
- package/docs/scripts/polyfill.js +4 -0
- package/docs/scripts/search.js +99 -265
- package/docs/styles/jsdoc.css +776 -0
- package/docs/styles/prettify.css +80 -0
- package/jest.config.js +198 -0
- package/jsdoc.json +1 -1
- package/package.json +8 -5
- package/src/index.js +190 -49
- package/test/sanityQueryService.test.js +88 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.0.10](https://github.com/railroadmedia/musora-content-services/compare/v1.0.9...v1.0.10) (2024-08-12)
|
|
6
|
+
|
|
7
|
+
### [1.0.9](https://github.com/railroadmedia/musora-content-services/compare/v1.0.7...v1.0.9) (2024-08-12)
|
|
8
|
+
|
|
5
9
|
### [1.0.7](https://github.com/railroadmedia/musora-content-services/compare/v1.0.6...v1.0.7) (2024-08-10)
|
|
6
10
|
|
|
7
11
|
### [1.0.6](https://github.com/railroadmedia/musora-content-services/compare/v1.0.5...v1.0.6) (2024-08-09)
|
package/README.md
CHANGED
|
@@ -36,4 +36,11 @@ npm run doc
|
|
|
36
36
|
|
|
37
37
|
## Github Page Documentation
|
|
38
38
|
|
|
39
|
-
https://railroadmedia.github.io/musora-content-services/
|
|
39
|
+
https://railroadmedia.github.io/musora-content-services/
|
|
40
|
+
|
|
41
|
+
## Run tests
|
|
42
|
+
Copy .env file from 1Password "musora-content-services .env"
|
|
43
|
+
Run the following to execute the tests
|
|
44
|
+
```
|
|
45
|
+
npm test
|
|
46
|
+
```
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|