@sap/artifact-management-types 1.26.0 → 1.26.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/artifact-management-types",
3
- "version": "1.26.0",
3
+ "version": "1.26.1",
4
4
  "description": "Type signatures for artifact management",
5
5
  "types": "./src/index.d.ts",
6
6
  "main": "./src/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "pack": "npm run modify-types-import && npm pack"
11
11
  },
12
12
  "dependencies": {
13
- "@sap/artifact-management-base-types": "1.26.0"
13
+ "@sap/artifact-management-base-types": "1.26.1"
14
14
  },
15
15
  "devDependencies": {
16
16
  "gulp": "4.0.2"
package/src/cp/Defs.d.ts CHANGED
@@ -12,5 +12,3 @@ export declare const PAGE_TITLE: {
12
12
  PREVIEW: string;
13
13
  DEPLOY: string;
14
14
  };
15
- export declare const UI5Version = "1.108.7";
16
- export declare const UI5Theme = "sap_horizon";
@@ -1,5 +1,6 @@
1
1
  export default interface MtaGeneratorSettings {
2
2
  ui5version?: string;
3
3
  ui5theme?: string;
4
+ terminal?: string;
4
5
  platform?: string;
5
6
  }
@@ -1,4 +1,4 @@
1
- import { KeyIn, ModuleType, ModuleGeneratorContext, ModuleManifestGenerator, MtaModule, MtaModuleRequires } from '@sap/artifact-management-base-types';
1
+ import { KeyIn, ModuleGeneratorContext, ModuleManifestGenerator, ModuleType, MtaModule, MtaModuleRequires } from '@sap/artifact-management-base-types';
2
2
  export declare class CapDestinationModuleGenerator implements ModuleManifestGenerator {
3
3
  getType(): KeyIn<typeof ModuleType>;
4
4
  provideResources(context: ModuleGeneratorContext): Promise<never[]>;
@@ -28,5 +28,7 @@ export default class ItemUtil {
28
28
  private static isExportedAnnotation;
29
29
  private static getAttributeInfo;
30
30
  private static collectAttributes;
31
+ private static collectPropertyProjectionAttribute;
32
+ private static collectExtendProjectionAttribute;
31
33
  private static getPath;
32
34
  }