@eo-sdk/client 11.12.1 → 11.12.3
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/app/eo-framework/actions/actions/add-resubmission-action/add-resubmission/add-resubmission.component.d.ts +2 -1
- package/app/eo-framework/actions/actions/add-resubmission-action/add-resubmission/add-resubmission.component.d.ts.map +1 -1
- package/app/eo-framework/actions/actions/add-subscription-action/add-subscription/add-subscription.component.d.ts +2 -1
- package/app/eo-framework/actions/actions/add-subscription-action/add-subscription/add-subscription.component.d.ts.map +1 -1
- package/assets/_default/config/main.json +3 -3
- package/esm2022/app/eo-client/about-state/about-state.component.mjs +3 -3
- package/esm2022/app/eo-framework/actions/actions/add-resubmission-action/add-resubmission/add-resubmission.component.mjs +8 -4
- package/esm2022/app/eo-framework/actions/actions/add-subscription-action/add-subscription/add-subscription.component.mjs +8 -4
- package/esm2022/app/eo-framework/media/media.component.mjs +3 -3
- package/esm2022/app/eo-framework/result-list/result-list.component.mjs +2 -2
- package/fesm2022/eo-sdk-client.mjs +19 -11
- package/fesm2022/eo-sdk-client.mjs.map +1 -1
- package/misc/scripts/mvn-deploy.js +12 -16
- package/package.json +4 -4
- package/scss/_yuuvis-components.scss +4 -0
- package/styles.css +16 -0
- package/styles.scss +14 -0
|
@@ -10,19 +10,18 @@ const request = require('request');
|
|
|
10
10
|
const packageJs = require('../../package.json');
|
|
11
11
|
|
|
12
12
|
const auth = {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
user : process.env.MAVEN_REPO_USER,
|
|
14
|
+
pass : process.env.MAVEN_REPO_PASS,
|
|
15
|
+
sendImmediately : true
|
|
16
16
|
}
|
|
17
17
|
const uploadFile = process.cwd()+'/output/client.jar';
|
|
18
18
|
const formData = {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
file : {
|
|
19
|
+
'maven2.groupId' : packageJs.maven.groupId,
|
|
20
|
+
'maven2.artifactId' : packageJs.maven.artifactId,
|
|
21
|
+
'maven2.version' : packageJs.version,
|
|
22
|
+
'maven2.asset1.extension' : 'jar',
|
|
23
|
+
'maven2.generate-pom' : 'true',
|
|
24
|
+
'maven2.asset1' : {
|
|
26
25
|
value : fs.createReadStream(uploadFile),
|
|
27
26
|
options : {
|
|
28
27
|
filename : 'client-'+packageJs.version+'.jar',
|
|
@@ -38,15 +37,12 @@ console.log('Maven pwd : '+(auth.pass ? 'SET' : 'NOT SET') );
|
|
|
38
37
|
console.log('Maven repository : '+packageJs.maven.repository)
|
|
39
38
|
console.log('');
|
|
40
39
|
console.log('Upload artifact : '+uploadFile);
|
|
41
|
-
console.log('
|
|
42
|
-
console.log('GroupId : '+formData.g);
|
|
43
|
-
console.log('ArtifactId : '+formData.a);
|
|
44
|
-
console.log('Version : '+formData.v);
|
|
40
|
+
console.log('Formdata : '+JSON.stringify(formData,1,1));
|
|
45
41
|
console.log('');
|
|
46
42
|
console.log('Executing post')
|
|
47
43
|
|
|
48
44
|
request.post({
|
|
49
|
-
url: '
|
|
45
|
+
url: 'https://'+packageJs.maven.host+'/service/rest/v1/components?repository='+packageJs.maven.repository,
|
|
50
46
|
formData: formData,
|
|
51
47
|
auth : auth
|
|
52
48
|
}, (err, resp, body) => {
|
|
@@ -56,7 +52,7 @@ request.post({
|
|
|
56
52
|
console.error('Deployment failed:', err);
|
|
57
53
|
process.exit(1);
|
|
58
54
|
}
|
|
59
|
-
if( resp.statusCode==
|
|
55
|
+
if( resp.statusCode==204 ) {
|
|
60
56
|
console.log('Deployment successful. Server responded with '+resp.statusCode+':\n', body);
|
|
61
57
|
process.exit(0);
|
|
62
58
|
} else {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@eo-sdk/client",
|
|
3
3
|
"description": "yuuvis RAD client",
|
|
4
4
|
"author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
|
|
5
|
-
"version": "11.12.
|
|
5
|
+
"version": "11.12.3",
|
|
6
6
|
"main": "electron/main.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"angular-cli": {},
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@angular/platform-browser-dynamic": "18.1.0",
|
|
32
32
|
"@angular/router": "18.1.0",
|
|
33
33
|
"@carbon/charts-angular": "1.16.3",
|
|
34
|
-
"@eo-sdk/core": "11.12.
|
|
34
|
+
"@eo-sdk/core": "11.12.3",
|
|
35
35
|
"@ngneat/until-destroy": "^10.0.0",
|
|
36
36
|
"@ngx-pwa/local-storage": "^18.0.0",
|
|
37
37
|
"@ngx-translate/core": "^15.0.0",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"zone.js": "~0.14.3"
|
|
50
50
|
},
|
|
51
51
|
"maven": {
|
|
52
|
-
"repository": "releases",
|
|
52
|
+
"repository": "tukan-releases",
|
|
53
53
|
"groupId": "com.os.ecm",
|
|
54
54
|
"artifactId": "client",
|
|
55
|
-
"host": "
|
|
55
|
+
"host": "maven.optimal-systems.org"
|
|
56
56
|
},
|
|
57
57
|
"module": "fesm2022/eo-sdk-client.mjs",
|
|
58
58
|
"typings": "index.d.ts",
|
package/styles.css
CHANGED
|
@@ -148,6 +148,10 @@ html, body {
|
|
|
148
148
|
border: 0;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
+
.cdk-overlay-connected-position-bounding-box {
|
|
152
|
+
height: 660px !important;
|
|
153
|
+
}
|
|
154
|
+
|
|
151
155
|
yvc-tabs > header {
|
|
152
156
|
--yvc-tab-nav-button-margin: 1px;
|
|
153
157
|
}
|
|
@@ -1114,4 +1118,16 @@ body, input, textarea {
|
|
|
1114
1118
|
|
|
1115
1119
|
.dark ::-webkit-scrollbar-thumb {
|
|
1116
1120
|
background-color: rgba(255, 255, 255, 0.2);
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
.innerWrapper .empty-container {
|
|
1124
|
+
display: flex;
|
|
1125
|
+
justify-content: center;
|
|
1126
|
+
align-items: center;
|
|
1127
|
+
height: 100%;
|
|
1128
|
+
}
|
|
1129
|
+
.innerWrapper .empty-container .nofile {
|
|
1130
|
+
width: 128px;
|
|
1131
|
+
height: 128px;
|
|
1132
|
+
opacity: 0.09;
|
|
1117
1133
|
}
|
package/styles.scss
CHANGED
|
@@ -139,3 +139,17 @@ body, input, textarea {
|
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
+
.innerWrapper {
|
|
143
|
+
.empty-container {
|
|
144
|
+
display: flex;
|
|
145
|
+
justify-content: center;
|
|
146
|
+
align-items: center;
|
|
147
|
+
height: 100%;
|
|
148
|
+
.nofile {
|
|
149
|
+
width: 128px;
|
|
150
|
+
height: 128px;
|
|
151
|
+
opacity: 0.09;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|