itlab-internal-services 2.10.4 → 2.10.6
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.
|
@@ -61,7 +61,7 @@ let CommentService = CommentService_1 = class CommentService {
|
|
|
61
61
|
});
|
|
62
62
|
}
|
|
63
63
|
get baseUrl() {
|
|
64
|
-
|
|
64
|
+
const production = this.configService.get('NODE_ENV') === 'production';
|
|
65
65
|
if (!production)
|
|
66
66
|
return 'https://services.svi-itlab.com/comments/internal/';
|
|
67
67
|
return 'http://organisation-hub-comments-service.organisation-hub-services.svc.cluster.local:3000/internal';
|
|
@@ -49,7 +49,7 @@ let ContentService = ContentService_1 = class ContentService {
|
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
get baseUrl() {
|
|
52
|
-
|
|
52
|
+
const production = this.configService.get('NODE_ENV') === 'production';
|
|
53
53
|
if (!production)
|
|
54
54
|
return 'https://services.svi-itlab.com/content/internal/';
|
|
55
55
|
return 'http://organisation-hub-content-service.organisation-hub-services.svc.cluster.local:3000/internal';
|
|
@@ -35,7 +35,7 @@ let MailService = MailService_1 = class MailService {
|
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
37
|
get baseUrl() {
|
|
38
|
-
|
|
38
|
+
const production = this.configService.get('NODE_ENV') === 'production';
|
|
39
39
|
if (!production)
|
|
40
40
|
return 'https://services.svi-itlab.com/email/internal/';
|
|
41
41
|
return 'http://organisation-hub-email-service.organisation-hub-services.svc.cluster.local:3000/internal';
|
|
@@ -49,7 +49,7 @@ let SearchService = SearchService_1 = class SearchService {
|
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
get baseUrl() {
|
|
52
|
-
|
|
52
|
+
const production = this.configService.get('NODE_ENV') === 'production';
|
|
53
53
|
if (!production)
|
|
54
54
|
return 'https://services.svi-itlab.com/search/internal/';
|
|
55
55
|
return 'http://organisation-hub-search-service.organisation-hub-services.svc.cluster.local:3000/internal';
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"email": "timo.scheuermann@sv-informatik.de",
|
|
6
6
|
"url": "https://timos.design"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.10.
|
|
8
|
+
"version": "2.10.6",
|
|
9
9
|
"type": "commonjs",
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"release:patch": "npm version patch && git push origin master --follow-tags"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"axios": "^1.7.
|
|
26
|
+
"axios": "^1.7.9",
|
|
27
27
|
"itlab-functions": "^0.7.7",
|
|
28
28
|
"passport-custom": "^1.1.1"
|
|
29
29
|
},
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"eslint": "8.42.0",
|
|
44
44
|
"eslint-config-prettier": "9.1.0",
|
|
45
45
|
"eslint-plugin-import": "2.29.1",
|
|
46
|
-
"mongoose": "^8.8.
|
|
46
|
+
"mongoose": "^8.8.3",
|
|
47
47
|
"passport": "^0.7.0",
|
|
48
48
|
"passport-jwt": "^4.0.1",
|
|
49
49
|
"prettier": "^3.3.3",
|