@sap-ux/fiori-generator-shared 0.12.4 → 0.12.5

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.
@@ -23,6 +23,45 @@ export interface CFDeployConfig extends DeployConfig {
23
23
  readonly lcapModeOnly?: boolean;
24
24
  readonly cloudServiceName?: string;
25
25
  }
26
+ export interface AbapDeployConfigOptions extends DeployConfig {
27
+ /**
28
+ * The deploy target for the ABAP deployment configuration.
29
+ */
30
+ readonly deployTarget: DeployTarget.ABAP;
31
+ /**
32
+ * Destination name to be used in abap deployment (BAS Only).
33
+ */
34
+ readonly destination?: string;
35
+ /**
36
+ * Target URL for the ABAP deployment (VSCode Only).
37
+ */
38
+ readonly url?: string;
39
+ /**
40
+ * Target client for the ABAP deployment (VSCode Only).
41
+ */
42
+ readonly client?: string;
43
+ /**
44
+ * This value is required in VSCode if the system is not saved in the local keystore.
45
+ * The `scp` flag will mean the running app will look for an auth key in the local keystore.
46
+ */
47
+ readonly scp?: boolean;
48
+ /**
49
+ * Name for the UI5 ABAP repository.
50
+ */
51
+ readonly ui5AbapRepo: string;
52
+ /**
53
+ * Description for the ABAP deployment.
54
+ */
55
+ readonly description?: string;
56
+ /**
57
+ * Package for the deployment.
58
+ */
59
+ readonly package: string;
60
+ /**
61
+ * Transport request for the deployment.
62
+ */
63
+ readonly transport?: string;
64
+ }
26
65
  export interface FLPConfig {
27
66
  readonly action?: string;
28
67
  readonly title?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sap-ux/fiori-generator-shared",
3
3
  "description": "Commonly used shared functionality and types to support the fiori generator.",
4
- "version": "0.12.4",
4
+ "version": "0.12.5",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/SAP/open-ux-tools.git",