@jive-ai/cli 0.0.30 → 0.0.31
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.mjs +4 -4
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -154,9 +154,9 @@ async function isProjectInitialized() {
|
|
|
154
154
|
|
|
155
155
|
//#endregion
|
|
156
156
|
//#region src/constants.ts
|
|
157
|
-
const API_URL = process.env.JIVE_API_URL || "
|
|
158
|
-
const GRAPHQL_API_URL = process.env.JIVE_GRAPHQL_API_URL || "
|
|
159
|
-
const WS_URL = process.env.JIVE_WS_URL || "
|
|
157
|
+
const API_URL = process.env.JIVE_API_URL || "https://next.getjive.app";
|
|
158
|
+
const GRAPHQL_API_URL = process.env.JIVE_GRAPHQL_API_URL || "https://api-next.getjive.app/graphql";
|
|
159
|
+
const WS_URL = process.env.JIVE_WS_URL || "wss://api-next.getjive.app";
|
|
160
160
|
|
|
161
161
|
//#endregion
|
|
162
162
|
//#region src/commands/auth.ts
|
|
@@ -5106,7 +5106,7 @@ const taskCommands = { resume: resumeCommand };
|
|
|
5106
5106
|
|
|
5107
5107
|
//#endregion
|
|
5108
5108
|
//#region package.json
|
|
5109
|
-
var version = "0.0.
|
|
5109
|
+
var version = "0.0.31";
|
|
5110
5110
|
|
|
5111
5111
|
//#endregion
|
|
5112
5112
|
//#region src/index.ts
|