@sap-ux/project-access 1.19.13 → 1.20.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/constants.d.ts +7 -4
- package/dist/constants.js +8 -6
- package/dist/types/info/index.d.ts +2 -1
- package/package.json +2 -2
package/dist/constants.d.ts
CHANGED
|
@@ -37,8 +37,11 @@ export declare const DirName: {
|
|
|
37
37
|
readonly Manifest: "manifest";
|
|
38
38
|
readonly Annotations: "annotations";
|
|
39
39
|
};
|
|
40
|
-
export declare
|
|
41
|
-
dir
|
|
42
|
-
migrationSettingsFile
|
|
43
|
-
}
|
|
40
|
+
export declare const FioriToolsSettings: {
|
|
41
|
+
readonly dir: ".fioritools";
|
|
42
|
+
readonly migrationSettingsFile: "migrationSettings.json";
|
|
43
|
+
};
|
|
44
|
+
export declare const SchemaName: {
|
|
45
|
+
readonly Ftfs: "ftfs";
|
|
46
|
+
};
|
|
44
47
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FioriToolsSettings = exports.DirName = exports.FileName = void 0;
|
|
3
|
+
exports.SchemaName = exports.FioriToolsSettings = exports.DirName = exports.FileName = void 0;
|
|
4
4
|
exports.FileName = {
|
|
5
5
|
AdaptationConfig: 'config.json',
|
|
6
6
|
CapJavaApplicationYaml: 'application.yaml',
|
|
@@ -40,9 +40,11 @@ exports.DirName = {
|
|
|
40
40
|
Manifest: 'manifest',
|
|
41
41
|
Annotations: 'annotations'
|
|
42
42
|
};
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
43
|
+
exports.FioriToolsSettings = {
|
|
44
|
+
dir: '.fioritools',
|
|
45
|
+
migrationSettingsFile: 'migrationSettings.json'
|
|
46
|
+
};
|
|
47
|
+
exports.SchemaName = {
|
|
48
|
+
Ftfs: 'ftfs'
|
|
49
|
+
};
|
|
48
50
|
//# sourceMappingURL=constants.js.map
|
|
@@ -60,10 +60,11 @@ export interface I18nPropertiesPaths {
|
|
|
60
60
|
};
|
|
61
61
|
};
|
|
62
62
|
}
|
|
63
|
+
export type ODataVersion = NonNullable<ManifestNamespace.Setting['odataVersion']>;
|
|
63
64
|
export interface ServiceSpecification {
|
|
64
65
|
uri?: string;
|
|
65
66
|
local?: string;
|
|
66
|
-
odataVersion?:
|
|
67
|
+
odataVersion?: ODataVersion;
|
|
67
68
|
annotations?: {
|
|
68
69
|
uri?: string;
|
|
69
70
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/project-access",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "Library to access SAP Fiori tools projects",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"mem-fs": "2.1.0",
|
|
29
29
|
"mem-fs-editor": "9.4.0",
|
|
30
30
|
"@sap-ux/i18n": "0.0.6",
|
|
31
|
-
"@sap-ux/ui5-config": "0.22.
|
|
31
|
+
"@sap-ux/ui5-config": "0.22.4"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/mem-fs": "1.1.2",
|