@sap-ux/odata-service-writer 0.27.37 → 0.28.0
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/dist/data/manifest.js +1 -1
- package/package.json +9 -9
package/dist/data/manifest.js
CHANGED
|
@@ -290,7 +290,7 @@ async function addMultipleServiceSupportToManifest(webappPath, manifest, fs) {
|
|
|
290
290
|
const dataSources = manifest?.['sap.app']?.dataSources;
|
|
291
291
|
for (const dataSourceKey in dataSources) {
|
|
292
292
|
const dataSource = dataSources[dataSourceKey];
|
|
293
|
-
if (dataSource
|
|
293
|
+
if (dataSource?.type === 'OData') {
|
|
294
294
|
convertSingleService(webappPath, dataSourceKey, dataSource, fs);
|
|
295
295
|
const annotations = dataSource.settings?.annotations;
|
|
296
296
|
if (annotations) {
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"bugs": {
|
|
10
10
|
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aodata-service-writer"
|
|
11
11
|
},
|
|
12
|
-
"version": "0.
|
|
12
|
+
"version": "0.28.0",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"main": "dist/index.js",
|
|
15
15
|
"files": [
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@sap-ux/edmx-parser": "0.9.1",
|
|
24
|
-
"@sap-ux/annotation-converter": "0.10.
|
|
24
|
+
"@sap-ux/annotation-converter": "0.10.9",
|
|
25
25
|
"ejs": "3.1.10",
|
|
26
26
|
"fast-xml-parser": "4.4.1",
|
|
27
27
|
"i18next": "25.3.0",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"mem-fs-editor": "9.4.0",
|
|
30
30
|
"prettify-xml": "1.2.0",
|
|
31
31
|
"semver": "7.5.4",
|
|
32
|
-
"@sap-ux/mockserver-config-writer": "0.9.
|
|
33
|
-
"@sap-ux/project-access": "1.32.
|
|
34
|
-
"@sap-ux/ui5-config": "0.29.
|
|
32
|
+
"@sap-ux/mockserver-config-writer": "0.9.33",
|
|
33
|
+
"@sap-ux/project-access": "1.32.16",
|
|
34
|
+
"@sap-ux/ui5-config": "0.29.11"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@sap-ux/vocabularies-types": "0.13.
|
|
37
|
+
"@sap-ux/vocabularies-types": "0.13.2",
|
|
38
38
|
"@types/ejs": "3.1.2",
|
|
39
39
|
"@types/fs-extra": "9.0.13",
|
|
40
40
|
"@types/mem-fs": "1.1.2",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@types/semver": "7.5.2",
|
|
43
43
|
"fs-extra": "10.0.0",
|
|
44
44
|
"lodash": "4.17.21",
|
|
45
|
-
"@sap-ux/axios-extension": "1.
|
|
45
|
+
"@sap-ux/axios-extension": "1.25.0"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=20.x"
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"watch": "tsc --watch",
|
|
53
53
|
"clean": "rimraf --glob dist test/test-output coverage *.tsbuildinfo",
|
|
54
54
|
"format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../.prettierignore",
|
|
55
|
-
"lint": "eslint
|
|
56
|
-
"lint:fix": "eslint
|
|
55
|
+
"lint": "eslint",
|
|
56
|
+
"lint:fix": "eslint --fix",
|
|
57
57
|
"test": "jest --ci --forceExit --detectOpenHandles --colors",
|
|
58
58
|
"test-u": "jest --ci --forceExit --detectOpenHandles --colors -u",
|
|
59
59
|
"link": "pnpm link --global",
|