specshield 1.0.3 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specshield",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "CLI to compare OpenAPI/Swagger specs and detect breaking changes for CI/CD pipelines and local developer workflows.",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
@@ -16,7 +16,7 @@ const logger = require('../utils/logger');
16
16
  const fsExtra = require('fs-extra');
17
17
  const { getStoredApiKey } = require('../config/localConfig');
18
18
 
19
- const HOSTED_API_URL = 'https://api.specshield.io';
19
+ const HOSTED_API_URL = 'http://specshield.io';
20
20
 
21
21
  const compare = new Command('compare');
22
22
 
@@ -6,7 +6,7 @@ const ora = require('ora');
6
6
  const axios = require('axios');
7
7
  const { setStoredApiKey, CONFIG_PATH } = require('../config/localConfig');
8
8
 
9
- const HOSTED_API_URL = 'https://api.specshield.io';
9
+ const HOSTED_API_URL = 'http://specshield.io';
10
10
 
11
11
  const login = new Command('login');
12
12