@mimik/local 7.1.0 → 7.1.1

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": "@mimik/local",
3
- "version": "7.1.0",
3
+ "version": "7.1.1",
4
4
  "description": "Local setup configuration for normal and test opreration",
5
5
  "main": "./index.js",
6
6
  "type": "module",
@@ -29,18 +29,19 @@
29
29
  "url": "https://bitbucket.org/mimiktech/local"
30
30
  },
31
31
  "dependencies": {
32
- "@eslint/js": "9.33.0",
32
+ "@eslint/js": "9.34.0",
33
33
  "@mimik/eslint-plugin-document-env": "^2.0.8",
34
34
  "@mimik/git-hooks": "^2.0.0",
35
+ "@mimik/request-helper": "^2.0.2",
35
36
  "@stylistic/eslint-plugin": "5.2.3",
36
37
  "axios": "1.11.0",
37
38
  "bluebird": "3.7.2",
38
39
  "c8": "10.1.3",
39
- "chai": "5.2.1",
40
+ "chai": "6.0.1",
40
41
  "colors": "1.4.0",
41
42
  "comment-json": "4.2.5",
42
43
  "debug": "4.4.1",
43
- "eslint": "9.33.0",
44
+ "eslint": "9.34.0",
44
45
  "eslint-plugin-import": "2.32.0",
45
46
  "husky": "9.1.7",
46
47
  "ip": "2.0.1",
@@ -59,7 +60,7 @@
59
60
  "lodash.union": "4.6.0",
60
61
  "mocha": "11.7.1",
61
62
  "mochawesome": "7.1.3",
62
- "rewire": "9.0.0",
63
+ "rewire": "9.0.1",
63
64
  "sinon": "21.0.0",
64
65
  "supertest": "7.1.4",
65
66
  "swagger-client": "3.35.6",
@@ -1,57 +0,0 @@
1
- const DEFAULT_MIT_PORT = 8050;
2
- const DEFAULT_MID_PORT = 8015;
3
- const DEFAULT_MST_PORT = 8025;
4
-
5
- const adminExternalIdBase = 'admin_default_local';
6
-
7
- export const config = {
8
- APIProvider: 'https://api.swaggerhub.com/apis',
9
- DEFAULT_MID: {
10
- basePath: '/mID/v1',
11
- protocol: 'http:',
12
- domainName: 'localhost',
13
- port: DEFAULT_MID_PORT,
14
- implicit: {
15
- key: 'a-secret-key',
16
- audience: 'https://mimik',
17
- },
18
- admin: {
19
- externalId: `${adminExternalIdBase}_mID`,
20
- },
21
- },
22
- DEFAULT_MIT: {
23
- basePath: '/mIT/v1',
24
- protocol: 'http:',
25
- domainName: 'localhost',
26
- port: DEFAULT_MIT_PORT,
27
- },
28
- DEFAULT_MST: {
29
- basePath: '/mST/v1',
30
- protocol: 'http:',
31
- domainName: 'localhost',
32
- port: DEFAULT_MST_PORT,
33
- admin: {
34
- clientId: '12345',
35
- clientSecret: 'timeForSecret',
36
- },
37
- },
38
- DEFAULT_SUMO: {
39
- default: {
40
- url: 'https://default-sumo-endPoint',
41
- code: '--- default code ---',
42
- },
43
- },
44
- adminExternalIdBase,
45
- customerConfigFile: '../customerConfig.json',
46
- defaultDirectory: './api',
47
- exampleStartFile: './local/start-example.json',
48
- mIDConfigFile: '../mIDConfig.json',
49
- mITConfigFile: '../mITConfig.json',
50
- mSTConfigFile: '../mSTConfig.json',
51
- shellFile: './server-start.sh',
52
- startFile: './local/start.json',
53
- sumoFile: '../sumo.json',
54
- swaggerExt: 'swagger.json',
55
- testJsonFile: './server-test.json',
56
- testStartFile: './local/testStart.json',
57
- };