@hellocoop/quickstart 1.0.6 → 1.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hellocoop/quickstart",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Provides a CLI to start the Hello Quickstart web app and return a client_id",
5
5
  "module": "quickstart.js",
6
6
  "bin":{
package/page.js CHANGED
@@ -47,13 +47,15 @@ export default function (client_id) {
47
47
  </button>
48
48
  </div>
49
49
  <div style="margin-top: 24px; display: flex; flex-direction: column; align-items: flex-start;">
50
- Update:
50
+ You can update the:
51
51
  <ul style="margin: 10px 0; list-style-position: inside;">
52
52
  <li>Application Logo</li>
53
- <li>Terms of Service</li>
54
- <li>Privacy Policy</li>
53
+ <li>Application Name</li>
54
+ <li>Terms of Service URL</li>
55
+ <li>Privacy Policy URL</li>
56
+ <li>Redirect URIs</li>
55
57
  </ul>
56
- <a href="https://console.hello.coop/?client_id=${client_id}" style="font-weight: 500;">Hellō Developer Console</a>
58
+ <a href="https://console.hello.coop/?client_id=${client_id}" style="font-weight: 500;">at the Hellō Developer Console</a>
57
59
  </div>
58
60
  <p style="margin: 36px 0; font-size: 20px;">You may now close this window.</p>
59
61
  <div style="display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px;">
package/quickstart.js CHANGED
@@ -26,7 +26,6 @@ const quickstart = async function (params) {
26
26
  res.end(clientHTML, () => {
27
27
  server.closeAllConnections()
28
28
  server.close(() => {
29
- console.log(clientHTML)
30
29
  resolve(u.query.client_id)
31
30
  })
32
31
  })