@ui5/manifest 1.63.0 → 1.63.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/CHANGELOG.md CHANGED
@@ -2,7 +2,10 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4
4
 
5
- A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.63.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.63.1...HEAD).
6
+
7
+ <a name="v1.63.1"></a>
8
+ ## [v1.63.1] - 2024-04-08
6
9
 
7
10
  <a name="v1.63.0"></a>
8
11
  ## [v1.63.0] - 2024-03-07
@@ -61,6 +64,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
61
64
  <a name="v1.48.1"></a>
62
65
  ## v1.48.1 - 2022-11-10
63
66
 
67
+ [v1.63.1]: https://github.com/SAP/ui5-manifest/compare/v1.63.0...v1.63.1
64
68
  [v1.63.0]: https://github.com/SAP/ui5-manifest/compare/v1.62.1...v1.63.0
65
69
  [v1.62.1]: https://github.com/SAP/ui5-manifest/compare/v1.62.0...v1.62.1
66
70
  [v1.62.0]: https://github.com/SAP/ui5-manifest/compare/v1.61.1...v1.62.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.62.0",
2
+ "latest": "1.63.0",
3
+ "1.123": "1.63.0",
3
4
  "1.122": "1.62.0",
4
5
  "1.121": "1.61.0",
5
6
  "1.120": "1.60.0",
package/package.json CHANGED
@@ -1 +1,24 @@
1
- {"name":"@ui5/manifest","version":"1.63.0","description":"This project contains the flattend json schema for the ui5 manifest.","repository":{"type":"git","url":"git+https://github.com/SAP/ui5-manifest.git"},"scripts":{"version":"git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md","prepublishOnly":"git push --follow-tags","release-note":"git-chglog -c .chglog/release-config.yml v$npm_package_version"},"keywords":["ui5","manifest"],"author":"SAP SE","license":"Apache-2.0","bugs":{"url":"https://github.com/SAP/ui5-manifest/issues"},"homepage":"https://github.com/SAP/ui5-manifest#readme"}
1
+ {
2
+ "name": "@ui5/manifest",
3
+ "version": "1.63.1",
4
+ "description": "This project contains the flattend json schema for the ui5 manifest.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/SAP/ui5-manifest.git"
8
+ },
9
+ "scripts": {
10
+ "version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md",
11
+ "prepublishOnly": "git push --follow-tags",
12
+ "release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version"
13
+ },
14
+ "keywords": [
15
+ "ui5",
16
+ "manifest"
17
+ ],
18
+ "author": "SAP SE",
19
+ "license": "Apache-2.0",
20
+ "bugs": {
21
+ "url": "https://github.com/SAP/ui5-manifest/issues"
22
+ },
23
+ "homepage": "https://github.com/SAP/ui5-manifest#readme"
24
+ }
package/schema.json CHANGED
@@ -79,7 +79,8 @@
79
79
  "1.59.0",
80
80
  "1.60.0",
81
81
  "1.61.0",
82
- "1.62.0"
82
+ "1.62.0",
83
+ "1.63.0"
83
84
  ]
84
85
  },
85
86
  "start_url": {
@@ -574,7 +575,8 @@
574
575
  "1.14.0",
575
576
  "1.15.0",
576
577
  "1.16.0",
577
- "1.17.0"
578
+ "1.17.0",
579
+ "1.18.0"
578
580
  ]
579
581
  },
580
582
  "resources": {
@@ -7601,6 +7603,93 @@
7601
7603
  }
7602
7604
  }
7603
7605
  },
7606
+ "actualTargetAdditionComponentUsage": {
7607
+ "type": "object",
7608
+ "required": [
7609
+ "usage",
7610
+ "type"
7611
+ ],
7612
+ "properties": {
7613
+ "usage": {
7614
+ "description": "Represents the componentUsage of the component that will be created",
7615
+ "type": "string"
7616
+ },
7617
+ "id": {
7618
+ "description": "Represents the id of the created view or component",
7619
+ "type": "string"
7620
+ },
7621
+ "type": {
7622
+ "description": "Represents the type of the type Component",
7623
+ "type": "string",
7624
+ "enum": [
7625
+ "Component"
7626
+ ]
7627
+ },
7628
+ "level": {
7629
+ "description": "Represents the level of the current component which is used to define the transition direction when navigate to this component",
7630
+ "type": "number",
7631
+ "multipleOf": 1
7632
+ }
7633
+ }
7634
+ },
7635
+ "actualTargetAdditionStandard": {
7636
+ "type": "object",
7637
+ "required": [
7638
+ "name"
7639
+ ],
7640
+ "properties": {
7641
+ "name": {
7642
+ "description": "Represents the name of a view or component that will be created",
7643
+ "type": "string"
7644
+ },
7645
+ "id": {
7646
+ "description": "Represents the id of the created view or component",
7647
+ "type": "string"
7648
+ },
7649
+ "path": {
7650
+ "description": "Represents a prefix that is prepended in front of the view or component name",
7651
+ "type": "string"
7652
+ },
7653
+ "type": {
7654
+ "description": "Represents the type of the type View or Component",
7655
+ "type": "string",
7656
+ "enum": [
7657
+ "View",
7658
+ "Component"
7659
+ ]
7660
+ },
7661
+ "level": {
7662
+ "description": "Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component",
7663
+ "type": "number",
7664
+ "multipleOf": 1
7665
+ }
7666
+ }
7667
+ },
7668
+ "legacyTargetAddition": {
7669
+ "type": "object",
7670
+ "required": [
7671
+ "viewName"
7672
+ ],
7673
+ "properties": {
7674
+ "viewName": {
7675
+ "description": "Represents the name of a view that will be created",
7676
+ "type": "string"
7677
+ },
7678
+ "viewId": {
7679
+ "description": "Represents the id of the created view",
7680
+ "type": "string"
7681
+ },
7682
+ "viewPath": {
7683
+ "description": "Represents a prefix that is prepended in front of the viewName",
7684
+ "type": "string"
7685
+ },
7686
+ "viewLevel": {
7687
+ "description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
7688
+ "type": "number",
7689
+ "multipleOf": 1
7690
+ }
7691
+ }
7692
+ },
7604
7693
  "routeWithoutName": {
7605
7694
  "description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
7606
7695
  "type": "object",
@@ -7643,6 +7732,58 @@
7643
7732
  }
7644
7733
  ]
7645
7734
  },
7735
+ "actualTargetAdditionStandardWithoutRequiredProp": {
7736
+ "type": "object",
7737
+ "properties": {
7738
+ "name": {
7739
+ "description": "Represents the name of a view or component that will be created",
7740
+ "type": "string"
7741
+ },
7742
+ "id": {
7743
+ "description": "Represents the id of the created view or component",
7744
+ "type": "string"
7745
+ },
7746
+ "path": {
7747
+ "description": "Represents a prefix that is prepended in front of the view or component name",
7748
+ "type": "string"
7749
+ },
7750
+ "type": {
7751
+ "description": "Represents the type of the type View or Component",
7752
+ "type": "string",
7753
+ "enum": [
7754
+ "View",
7755
+ "Component"
7756
+ ]
7757
+ },
7758
+ "level": {
7759
+ "description": "Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component",
7760
+ "type": "number",
7761
+ "multipleOf": 1
7762
+ }
7763
+ }
7764
+ },
7765
+ "legacyTargetAdditionWithoutRequiredProp": {
7766
+ "type": "object",
7767
+ "properties": {
7768
+ "viewName": {
7769
+ "description": "Represents the name of a view that will be created",
7770
+ "type": "string"
7771
+ },
7772
+ "viewId": {
7773
+ "description": "Represents the id of the created view",
7774
+ "type": "string"
7775
+ },
7776
+ "viewPath": {
7777
+ "description": "Represents a prefix that is prepended in front of the viewName",
7778
+ "type": "string"
7779
+ },
7780
+ "viewLevel": {
7781
+ "description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
7782
+ "type": "number",
7783
+ "multipleOf": 1
7784
+ }
7785
+ }
7786
+ },
7646
7787
  "target": {
7647
7788
  "description": "Represents the definition of each target",
7648
7789
  "type": "object",
@@ -7682,11 +7823,6 @@
7682
7823
  "description": "Represents the name of another target which will also be displayed once this target is displayed",
7683
7824
  "type": "string"
7684
7825
  },
7685
- "viewLevel": {
7686
- "description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
7687
- "type": "number",
7688
- "multipleOf": 1
7689
- },
7690
7826
  "transition": {
7691
7827
  "description": "Represents the type of transition when navigating from previous view to this view",
7692
7828
  "anyOf": [
@@ -7875,15 +8011,17 @@
7875
8011
  "$ref": "#/definitions/routeTarget"
7876
8012
  }
7877
8013
  }
7878
- },
7879
- "viewPath": {
7880
- "description": "Represents a prefix that is prepended in front of the viewName",
7881
- "type": "string"
7882
8014
  }
7883
8015
  }
7884
8016
  },
7885
8017
  {
7886
8018
  "$ref": "#/definitions/target"
8019
+ },
8020
+ {
8021
+ "$ref": "#/definitions/legacyTargetAdditionWithoutRequiredProp"
8022
+ },
8023
+ {
8024
+ "$ref": "#/definitions/actualTargetAdditionStandardWithoutRequiredProp"
7887
8025
  }
7888
8026
  ]
7889
8027
  },
@@ -7919,24 +8057,7 @@
7919
8057
  "$ref": "#/definitions/target"
7920
8058
  },
7921
8059
  {
7922
- "type": "object",
7923
- "required": [
7924
- "viewName"
7925
- ],
7926
- "properties": {
7927
- "viewName": {
7928
- "description": "Represents the name of a view that will be created",
7929
- "type": "string"
7930
- },
7931
- "viewId": {
7932
- "description": "Represents the id of the created view",
7933
- "type": "string"
7934
- },
7935
- "viewPath": {
7936
- "description": "Represents a prefix that is prepended in front of the viewName",
7937
- "type": "string"
7938
- }
7939
- }
8060
+ "$ref": "#/definitions/legacyTargetAddition"
7940
8061
  }
7941
8062
  ]
7942
8063
  },
@@ -7948,56 +8069,10 @@
7948
8069
  {
7949
8070
  "oneOf": [
7950
8071
  {
7951
- "type": "object",
7952
- "required": [
7953
- "name"
7954
- ],
7955
- "properties": {
7956
- "name": {
7957
- "description": "Represents the name of a view or component that will be created",
7958
- "type": "string"
7959
- },
7960
- "id": {
7961
- "description": "Represents the id of the created view or component",
7962
- "type": "string"
7963
- },
7964
- "path": {
7965
- "description": "Represents a prefix that is prepended in front of the view or component name",
7966
- "type": "string"
7967
- },
7968
- "type": {
7969
- "description": "Represents the type of the type View or Component",
7970
- "type": "string",
7971
- "enum": [
7972
- "View",
7973
- "Component"
7974
- ]
7975
- }
7976
- }
8072
+ "$ref": "#/definitions/actualTargetAdditionStandard"
7977
8073
  },
7978
8074
  {
7979
- "type": "object",
7980
- "required": [
7981
- "usage",
7982
- "type"
7983
- ],
7984
- "properties": {
7985
- "usage": {
7986
- "description": "Represents the componentUsage of the component that will be created",
7987
- "type": "string"
7988
- },
7989
- "id": {
7990
- "description": "Represents the id of the created view or component",
7991
- "type": "string"
7992
- },
7993
- "type": {
7994
- "description": "Represents the type of the type Component",
7995
- "type": "string",
7996
- "enum": [
7997
- "Component"
7998
- ]
7999
- }
8000
- }
8075
+ "$ref": "#/definitions/actualTargetAdditionComponentUsage"
8001
8076
  }
8002
8077
  ]
8003
8078
  }
package/schema_cil.json CHANGED
@@ -43,7 +43,8 @@
43
43
  "1.23.0",
44
44
  "1.24.0",
45
45
  "1.25.0",
46
- "1.26.0"
46
+ "1.26.0",
47
+ "1.27.0"
47
48
  ]
48
49
  },
49
50
  "start_url": {
@@ -379,7 +380,8 @@
379
380
  "1.9.0",
380
381
  "1.10.0",
381
382
  "1.11.0",
382
- "1.12.0"
383
+ "1.12.0",
384
+ "1.13.0"
383
385
  ]
384
386
  },
385
387
  "resources": {
@@ -2434,6 +2436,93 @@
2434
2436
  }
2435
2437
  }
2436
2438
  },
2439
+ "actualTargetAdditionComponentUsage": {
2440
+ "type": "object",
2441
+ "required": [
2442
+ "usage",
2443
+ "type"
2444
+ ],
2445
+ "properties": {
2446
+ "usage": {
2447
+ "description": "Represents the componentUsage of the component that will be created",
2448
+ "type": "string"
2449
+ },
2450
+ "id": {
2451
+ "description": "Represents the id of the created view or component",
2452
+ "type": "string"
2453
+ },
2454
+ "type": {
2455
+ "description": "Represents the type of the type Component",
2456
+ "type": "string",
2457
+ "enum": [
2458
+ "Component"
2459
+ ]
2460
+ },
2461
+ "level": {
2462
+ "description": "Represents the level of the current component which is used to define the transition direction when navigate to this component",
2463
+ "type": "number",
2464
+ "multipleOf": 1
2465
+ }
2466
+ }
2467
+ },
2468
+ "actualTargetAdditionStandard": {
2469
+ "type": "object",
2470
+ "required": [
2471
+ "name"
2472
+ ],
2473
+ "properties": {
2474
+ "name": {
2475
+ "description": "Represents the name of a view or component that will be created",
2476
+ "type": "string"
2477
+ },
2478
+ "id": {
2479
+ "description": "Represents the id of the created view or component",
2480
+ "type": "string"
2481
+ },
2482
+ "path": {
2483
+ "description": "Represents a prefix that is prepended in front of the view or component name",
2484
+ "type": "string"
2485
+ },
2486
+ "type": {
2487
+ "description": "Represents the type of the type View or Component",
2488
+ "type": "string",
2489
+ "enum": [
2490
+ "View",
2491
+ "Component"
2492
+ ]
2493
+ },
2494
+ "level": {
2495
+ "description": "Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component",
2496
+ "type": "number",
2497
+ "multipleOf": 1
2498
+ }
2499
+ }
2500
+ },
2501
+ "legacyTargetAddition": {
2502
+ "type": "object",
2503
+ "required": [
2504
+ "viewName"
2505
+ ],
2506
+ "properties": {
2507
+ "viewName": {
2508
+ "description": "Represents the name of a view that will be created",
2509
+ "type": "string"
2510
+ },
2511
+ "viewId": {
2512
+ "description": "Represents the id of the created view",
2513
+ "type": "string"
2514
+ },
2515
+ "viewPath": {
2516
+ "description": "Represents a prefix that is prepended in front of the viewName",
2517
+ "type": "string"
2518
+ },
2519
+ "viewLevel": {
2520
+ "description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
2521
+ "type": "number",
2522
+ "multipleOf": 1
2523
+ }
2524
+ }
2525
+ },
2437
2526
  "routeWithoutName": {
2438
2527
  "description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
2439
2528
  "type": "object",
@@ -2476,6 +2565,58 @@
2476
2565
  }
2477
2566
  ]
2478
2567
  },
2568
+ "actualTargetAdditionStandardWithoutRequiredProp": {
2569
+ "type": "object",
2570
+ "properties": {
2571
+ "name": {
2572
+ "description": "Represents the name of a view or component that will be created",
2573
+ "type": "string"
2574
+ },
2575
+ "id": {
2576
+ "description": "Represents the id of the created view or component",
2577
+ "type": "string"
2578
+ },
2579
+ "path": {
2580
+ "description": "Represents a prefix that is prepended in front of the view or component name",
2581
+ "type": "string"
2582
+ },
2583
+ "type": {
2584
+ "description": "Represents the type of the type View or Component",
2585
+ "type": "string",
2586
+ "enum": [
2587
+ "View",
2588
+ "Component"
2589
+ ]
2590
+ },
2591
+ "level": {
2592
+ "description": "Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component",
2593
+ "type": "number",
2594
+ "multipleOf": 1
2595
+ }
2596
+ }
2597
+ },
2598
+ "legacyTargetAdditionWithoutRequiredProp": {
2599
+ "type": "object",
2600
+ "properties": {
2601
+ "viewName": {
2602
+ "description": "Represents the name of a view that will be created",
2603
+ "type": "string"
2604
+ },
2605
+ "viewId": {
2606
+ "description": "Represents the id of the created view",
2607
+ "type": "string"
2608
+ },
2609
+ "viewPath": {
2610
+ "description": "Represents a prefix that is prepended in front of the viewName",
2611
+ "type": "string"
2612
+ },
2613
+ "viewLevel": {
2614
+ "description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
2615
+ "type": "number",
2616
+ "multipleOf": 1
2617
+ }
2618
+ }
2619
+ },
2479
2620
  "target": {
2480
2621
  "description": "Represents the definition of each target",
2481
2622
  "type": "object",
@@ -3023,15 +3164,17 @@
3023
3164
  "$ref": "#/definitions/routeTarget"
3024
3165
  }
3025
3166
  }
3026
- },
3027
- "viewPath": {
3028
- "description": "Represents a prefix that is prepended in front of the viewName",
3029
- "type": "string"
3030
3167
  }
3031
3168
  }
3032
3169
  },
3033
3170
  {
3034
3171
  "$ref": "#/definitions/target"
3172
+ },
3173
+ {
3174
+ "$ref": "#/definitions/legacyTargetAdditionWithoutRequiredProp"
3175
+ },
3176
+ {
3177
+ "$ref": "#/definitions/actualTargetAdditionStandardWithoutRequiredProp"
3035
3178
  }
3036
3179
  ]
3037
3180
  },
@@ -3067,24 +3210,7 @@
3067
3210
  "$ref": "#/definitions/target"
3068
3211
  },
3069
3212
  {
3070
- "type": "object",
3071
- "required": [
3072
- "viewName"
3073
- ],
3074
- "properties": {
3075
- "viewName": {
3076
- "description": "Represents the name of a view that will be created",
3077
- "type": "string"
3078
- },
3079
- "viewId": {
3080
- "description": "Represents the id of the created view",
3081
- "type": "string"
3082
- },
3083
- "viewPath": {
3084
- "description": "Represents a prefix that is prepended in front of the viewName",
3085
- "type": "string"
3086
- }
3087
- }
3213
+ "$ref": "#/definitions/legacyTargetAddition"
3088
3214
  }
3089
3215
  ]
3090
3216
  },
@@ -3096,56 +3222,10 @@
3096
3222
  {
3097
3223
  "oneOf": [
3098
3224
  {
3099
- "type": "object",
3100
- "required": [
3101
- "name"
3102
- ],
3103
- "properties": {
3104
- "name": {
3105
- "description": "Represents the name of a view or component that will be created",
3106
- "type": "string"
3107
- },
3108
- "id": {
3109
- "description": "Represents the id of the created view or component",
3110
- "type": "string"
3111
- },
3112
- "path": {
3113
- "description": "Represents a prefix that is prepended in front of the view or component name",
3114
- "type": "string"
3115
- },
3116
- "type": {
3117
- "description": "Represents the type of the type View or Component",
3118
- "type": "string",
3119
- "enum": [
3120
- "View",
3121
- "Component"
3122
- ]
3123
- }
3124
- }
3225
+ "$ref": "#/definitions/actualTargetAdditionStandard"
3125
3226
  },
3126
3227
  {
3127
- "type": "object",
3128
- "required": [
3129
- "usage",
3130
- "type"
3131
- ],
3132
- "properties": {
3133
- "usage": {
3134
- "description": "Represents the componentUsage of the component that will be created",
3135
- "type": "string"
3136
- },
3137
- "id": {
3138
- "description": "Represents the id of the created view or component",
3139
- "type": "string"
3140
- },
3141
- "type": {
3142
- "description": "Represents the type of the type Component",
3143
- "type": "string",
3144
- "enum": [
3145
- "Component"
3146
- ]
3147
- }
3148
- }
3228
+ "$ref": "#/definitions/actualTargetAdditionComponentUsage"
3149
3229
  }
3150
3230
  ]
3151
3231
  }
@@ -175,7 +175,8 @@ export type JSONSchemaForSAPUI5Namespace = {
175
175
  | "1.14.0"
176
176
  | "1.15.0"
177
177
  | "1.16.0"
178
- | "1.17.0";
178
+ | "1.17.0"
179
+ | "1.18.0";
179
180
  resources?: Resource;
180
181
  /**
181
182
  * Represents the explicit usage declaration for UI5 reuse components
@@ -705,7 +706,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
705
706
  | "1.59.0"
706
707
  | "1.60.0"
707
708
  | "1.61.0"
708
- | "1.62.0";
709
+ | "1.62.0"
710
+ | "1.63.0";
709
711
  /**
710
712
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
711
713
  */
@@ -1677,10 +1679,6 @@ export interface Target {
1677
1679
  * Represents the name of another target which will also be displayed once this target is displayed
1678
1680
  */
1679
1681
  parent?: string;
1680
- /**
1681
- * Represents the level of the current view which is used to define the transition direction when navigate to this view
1682
- */
1683
- viewLevel?: number;
1684
1682
  /**
1685
1683
  * Represents the type of transition when navigating from previous view to this view
1686
1684
  */
@@ -1772,12 +1770,10 @@ export interface Routing {
1772
1770
  */
1773
1771
  target: [] | [string | RouteTargetObject] | string | RouteTargetObject;
1774
1772
  };
1775
- /**
1776
- * Represents a prefix that is prepended in front of the viewName
1777
- */
1778
- viewPath?: string;
1779
1773
  [k: string]: unknown;
1780
- } & Target;
1774
+ } & Target &
1775
+ LegacyTargetAdditionWithoutRequiredProp &
1776
+ ActualTargetAdditionStandardWithoutRequiredProp;
1781
1777
  routes?:
1782
1778
  | Route[]
1783
1779
  | {
@@ -1792,61 +1788,114 @@ export interface Routing {
1792
1788
  * via the `patternProperty` "[\s\S]*".
1793
1789
  */
1794
1790
  [k: string]:
1795
- | (Target & {
1796
- /**
1797
- * Represents the name of a view that will be created
1798
- */
1799
- viewName: string;
1800
- /**
1801
- * Represents the id of the created view
1802
- */
1803
- viewId?: string;
1804
- /**
1805
- * Represents a prefix that is prepended in front of the viewName
1806
- */
1807
- viewPath?: string;
1808
- [k: string]: unknown;
1809
- })
1810
- | (Target &
1811
- (
1812
- | {
1813
- /**
1814
- * Represents the name of a view or component that will be created
1815
- */
1816
- name: string;
1817
- /**
1818
- * Represents the id of the created view or component
1819
- */
1820
- id?: string;
1821
- /**
1822
- * Represents a prefix that is prepended in front of the view or component name
1823
- */
1824
- path?: string;
1825
- /**
1826
- * Represents the type of the type View or Component
1827
- */
1828
- type?: "View" | "Component";
1829
- [k: string]: unknown;
1830
- }
1831
- | {
1832
- /**
1833
- * Represents the componentUsage of the component that will be created
1834
- */
1835
- usage: string;
1836
- /**
1837
- * Represents the id of the created view or component
1838
- */
1839
- id?: string;
1840
- /**
1841
- * Represents the type of the type Component
1842
- */
1843
- type: "Component";
1844
- [k: string]: unknown;
1845
- }
1846
- ));
1791
+ | (Target & LegacyTargetAddition)
1792
+ | (Target & (ActualTargetAdditionStandard | ActualTargetAdditionComponentUsage));
1847
1793
  };
1848
1794
  [k: string]: unknown;
1849
1795
  }
1796
+ export interface LegacyTargetAdditionWithoutRequiredProp {
1797
+ /**
1798
+ * Represents the name of a view that will be created
1799
+ */
1800
+ viewName?: string;
1801
+ /**
1802
+ * Represents the id of the created view
1803
+ */
1804
+ viewId?: string;
1805
+ /**
1806
+ * Represents a prefix that is prepended in front of the viewName
1807
+ */
1808
+ viewPath?: string;
1809
+ /**
1810
+ * Represents the level of the current view which is used to define the transition direction when navigate to this view
1811
+ */
1812
+ viewLevel?: number;
1813
+ [k: string]: unknown;
1814
+ }
1815
+ export interface ActualTargetAdditionStandardWithoutRequiredProp {
1816
+ /**
1817
+ * Represents the name of a view or component that will be created
1818
+ */
1819
+ name?: string;
1820
+ /**
1821
+ * Represents the id of the created view or component
1822
+ */
1823
+ id?: string;
1824
+ /**
1825
+ * Represents a prefix that is prepended in front of the view or component name
1826
+ */
1827
+ path?: string;
1828
+ /**
1829
+ * Represents the type of the type View or Component
1830
+ */
1831
+ type?: "View" | "Component";
1832
+ /**
1833
+ * Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component
1834
+ */
1835
+ level?: number;
1836
+ [k: string]: unknown;
1837
+ }
1838
+ export interface LegacyTargetAddition {
1839
+ /**
1840
+ * Represents the name of a view that will be created
1841
+ */
1842
+ viewName: string;
1843
+ /**
1844
+ * Represents the id of the created view
1845
+ */
1846
+ viewId?: string;
1847
+ /**
1848
+ * Represents a prefix that is prepended in front of the viewName
1849
+ */
1850
+ viewPath?: string;
1851
+ /**
1852
+ * Represents the level of the current view which is used to define the transition direction when navigate to this view
1853
+ */
1854
+ viewLevel?: number;
1855
+ [k: string]: unknown;
1856
+ }
1857
+ export interface ActualTargetAdditionStandard {
1858
+ /**
1859
+ * Represents the name of a view or component that will be created
1860
+ */
1861
+ name: string;
1862
+ /**
1863
+ * Represents the id of the created view or component
1864
+ */
1865
+ id?: string;
1866
+ /**
1867
+ * Represents a prefix that is prepended in front of the view or component name
1868
+ */
1869
+ path?: string;
1870
+ /**
1871
+ * Represents the type of the type View or Component
1872
+ */
1873
+ type?: "View" | "Component";
1874
+ /**
1875
+ * Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component
1876
+ */
1877
+ level?: number;
1878
+ [k: string]: unknown;
1879
+ }
1880
+ export interface ActualTargetAdditionComponentUsage {
1881
+ /**
1882
+ * Represents the componentUsage of the component that will be created
1883
+ */
1884
+ usage: string;
1885
+ /**
1886
+ * Represents the id of the created view or component
1887
+ */
1888
+ id?: string;
1889
+ /**
1890
+ * Represents the type of the type Component
1891
+ */
1892
+ type: "Component";
1893
+ /**
1894
+ * Represents the level of the current component which is used to define the transition direction when navigate to this component
1895
+ */
1896
+ level?: number;
1897
+ [k: string]: unknown;
1898
+ }
1850
1899
  /**
1851
1900
  * Represents ABAP platform specific attributes
1852
1901
  */