gbos 1.4.18 → 1.4.19
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 +1 -1
- package/src/lib/api.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gbos",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.19",
|
|
4
4
|
"description": "CLI and orchestrator for the Generative Business Operating System (GBOS) — connect AI coding agents (Claude, Gemini, Codex) to managed development workflows with task automation, GitLab sync, and NDJSON event streaming for thin client integration",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
package/src/lib/api.js
CHANGED
|
@@ -4,7 +4,6 @@ const config = require('./config');
|
|
|
4
4
|
const DEFAULT_API_URL = 'https://api.gbos.io/api/v1';
|
|
5
5
|
|
|
6
6
|
// Support GBOS_API_URL env var for backwards compatibility or custom endpoints
|
|
7
|
-
// e.g., GBOS_API_URL=https://gbos-api-579767694933.us-south1.run.app/api/v1
|
|
8
7
|
const API_BASE_URL = process.env.GBOS_API_URL || DEFAULT_API_URL;
|
|
9
8
|
|
|
10
9
|
class GbosApiClient {
|