@pd4castr/cli 0.0.3 → 0.0.4
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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -51,7 +51,7 @@ import { Command } from "commander";
|
|
|
51
51
|
// package.json
|
|
52
52
|
var package_default = {
|
|
53
53
|
name: "@pd4castr/cli",
|
|
54
|
-
version: "0.0.
|
|
54
|
+
version: "0.0.4",
|
|
55
55
|
description: "CLI tool for creating, testing, and publishing pd4castr models",
|
|
56
56
|
main: "dist/index.js",
|
|
57
57
|
type: "module",
|
|
@@ -291,7 +291,7 @@ var auth0API = ky.create({ prefixUrl: `https://${AUTH0_DOMAIN}` });
|
|
|
291
291
|
var payload = {
|
|
292
292
|
client_id: AUTH0_CLIENT_ID,
|
|
293
293
|
audience: AUTH0_AUDIENCE,
|
|
294
|
-
scope: "openid
|
|
294
|
+
scope: "openid email"
|
|
295
295
|
};
|
|
296
296
|
async function startAuthFlow() {
|
|
297
297
|
const codeResponse = await auth0API.post("oauth/device/code", { json: payload }).json();
|