Skip to content

Commit 9ffd88c

Browse files
committed
fixed url
1 parent bb39b53 commit 9ffd88c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"eslint": "^8.23.1",
2222
"eslint-config-prettier": "^8.5.0",
2323
"eslint-plugin-prettier": "^4.2.1",
24-
"graphql-editor-cli": "^0.8.9",
24+
"graphql-editor-cli": "^0.9.3",
2525
"impuddle": "0.0.2",
2626
"prettier": "^2.7.1",
2727
"ttypescript": "^1.5.13",

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-editor-cli",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"description": "GraphQL -> anything. Use GraphQL as your source of truth. GraphQL Editor Official CLI.",
55
"main": "lib/api.js",
66
"author": "Artur Czemiel",
@@ -14,7 +14,7 @@
1414
"build": "npm run clean && tspc --build tsconfig.build.json",
1515
"start": "npm run clean && tspc --build tsconfig.build.json --watch",
1616
"clean": "rimraf lib/",
17-
"editor": "zeus https://project-api.graphqleditor.com/graphql ./src -n --es",
17+
"editor": "zeus https://api.prod.graphqleditor.com/graphql ./src -n --es",
1818
"update": "zeus $GRAPHQL_EDITOR_HOST ./src -n --es",
1919
"shared": "imp sync",
2020
"cli": "node lib/index.js"

packages/cli/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { confOptions, projectOptions } from '@/common/promptOptions.js';
2020
import { CommandPrune } from '@/commands/common/prune.js';
2121
import { CommandInspect } from '@/commands/common/inspect.js';
2222
export const GRAPHQL_HOST =
23-
process.env.GRAPHQL_EDITOR_HOST || 'https://project-api.graphqleditor.com/';
23+
process.env.GRAPHQL_EDITOR_HOST || 'https://api.prod.graphqleditor.com/';
2424

2525
welcome().then(() => {
2626
new Configuration();

packages/cli/src/zeus/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { AllTypesProps, ReturnTypes, Ops } from './const.js';
44
import fetch, { Response } from 'node-fetch';
55
import WebSocket from 'ws';
6-
export const HOST = "https://project-api.graphqleditor.com/graphql"
6+
export const HOST = "https://api.prod.graphqleditor.com/graphql"
77

88

99
export const HEADERS = {}

packages/sandbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sandbox",
33
"private": true,
4-
"version": "0.8.7",
4+
"version": "0.8.8",
55
"description": "GraphQL -> anything. Use GraphQL as your source of truth. GraphQL Editor Official CLI.",
66
"author": "Artur Czemiel",
77
"license": "MIT",

0 commit comments

Comments
 (0)