@eo-sdk/client 11.13.0-rc.2 → 11.14.0-rc.2
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/form-elements/dynamic-list/dynamic-list.component.d.ts +13 -0
- package/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.d.ts.map +1 -1
- package/app/eo-framework/form-elements/organization/organization.component.d.ts +18 -2
- package/app/eo-framework/form-elements/organization/organization.component.d.ts.map +1 -1
- package/app/eo-framework/grid/filters/organization-filter.component.d.ts +2 -1
- package/app/eo-framework/grid/filters/organization-filter.component.d.ts.map +1 -1
- package/app/eo-framework/media/media.component.d.ts +2 -1
- package/app/eo-framework/media/media.component.d.ts.map +1 -1
- package/app/eo-framework/result-list/result-list.component.d.ts.map +1 -1
- package/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.d.ts +3 -1
- package/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.d.ts.map +1 -1
- package/app/eo-framework/ui/eo-dialog/eo-dialog.component.d.ts +3 -1
- package/app/eo-framework/ui/eo-dialog/eo-dialog.component.d.ts.map +1 -1
- package/app/eo-framework-core/api/grid.service.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-client/settings/settings.component.mjs +1 -1
- package/esm2022/app/eo-framework/actions/actions/share-object-action/share-object/share-object.component.mjs +1 -1
- package/esm2022/app/eo-framework/app-shell/app-bar/app-search/app-search.component.mjs +1 -1
- package/esm2022/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.mjs +32 -6
- package/esm2022/app/eo-framework/form-elements/organization/organization.component.mjs +59 -17
- package/esm2022/app/eo-framework/grid/filters/dynamic-list-filter.component.mjs +4 -3
- package/esm2022/app/eo-framework/grid/filters/organization-filter.component.mjs +14 -12
- package/esm2022/app/eo-framework/grid/grid.component.mjs +2 -2
- package/esm2022/app/eo-framework/media/media.component.mjs +20 -4
- package/esm2022/app/eo-framework/object-form/object-form/form-element/form-element.component.mjs +3 -3
- package/esm2022/app/eo-framework/process/process-file/process-file.component.mjs +3 -3
- package/esm2022/app/eo-framework/result-list/result-list.component.mjs +3 -3
- package/esm2022/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.mjs +31 -16
- package/esm2022/app/eo-framework/ui/eo-dialog/eo-dialog.component.mjs +18 -8
- package/esm2022/app/eo-framework-core/api/grid.service.mjs +5 -2
- package/fesm2022/eo-sdk-client.mjs +194 -86
- package/fesm2022/eo-sdk-client.mjs.map +1 -1
- package/misc/scripts/mvn-deploy.js +11 -15
- package/package.json +4 -4
|
@@ -10,19 +10,18 @@ const request = require('request');
|
|
|
10
10
|
const packageJs = require('../../package.json');
|
|
11
11
|
|
|
12
12
|
const auth = {
|
|
13
|
-
user :
|
|
14
|
-
pass :
|
|
13
|
+
user : 'tukan-deploy',
|
|
14
|
+
pass : '!_TukanDeploy_!',
|
|
15
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.
|
|
5
|
+
"version": "11.14.0-rc.2",
|
|
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.
|
|
34
|
+
"@eo-sdk/core": "11.14.0-rc.2",
|
|
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",
|