@ui5/manifest 1.85.0 → 1.87.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/CHANGELOG.md CHANGED
@@ -4,6 +4,27 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
4
4
 
5
5
  <a name="Unreleased"></a>
6
6
 
7
+ <a name="v1.87.0"></a>
8
+ ## [v1.87.0] - 2026-06-11 (UI5 1.149)
9
+
10
+ <a name="v1.87.0"></a>
11
+ ## [v1.87.0] - 2026-06-11 (UI5 1.149)
12
+
13
+ <a name="v1.87.0"></a>
14
+ ## [v1.87.0] - 2026-06-11 (UI5 1.149)
15
+
16
+ <a name="v1.86.0"></a>
17
+ ## [v1.86.0] - 2026-05-04 (UI5 1.148)
18
+
19
+ ### Added
20
+ - sap.card: New property `showSeparator` in footer to visually separate the footer from the card content area
21
+
22
+ ### Changed
23
+ - sap.card: Moved `customSettings` property and updated description to reflect Mobile SDK usage
24
+
25
+ ### Removed
26
+ - sap.card: Deprecated `service` property removed from data requests and navigation actions
27
+
7
28
  <a name="v1.85.0"></a>
8
29
  ## [v1.85.0] - 2026-04-09 (UI5 1.147)
9
30
 
@@ -249,7 +270,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
249
270
  <a name="v1.48.1"></a>
250
271
  ## v1.48.1 - 2022-11-10
251
272
 
252
- [Unreleased]: https://github.com/UI5/manifest/compare/v1.85.0...HEAD
273
+ [Unreleased]: https://github.com/UI5/manifest/compare/v1.87.0...HEAD
274
+ [v1.87.0]: https://github.com/UI5/manifest/compare/v1.86.0...v1.87.0
275
+ [v1.86.0]: https://github.com/UI5/manifest/compare/v1.85.0...v1.86.0
253
276
  [v1.85.0]: https://github.com/UI5/manifest/compare/v1.84.0...v1.85.0
254
277
  [v1.84.0]: https://github.com/UI5/manifest/compare/v1.83.1...v1.84.0
255
278
  [v1.83.1]: https://github.com/UI5/manifest/compare/v1.83.0...v1.83.1
package/mapping.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
- "latest": "1.85.0",
2
+ "latest": "1.87.0",
3
+ "1.149": "1.87.0",
4
+ "1.148": "1.86.0",
3
5
  "1.147": "1.85.0",
4
6
  "1.146": "1.84.0",
5
7
  "1.145": "1.83.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.85.0",
3
+ "version": "1.87.0",
4
4
  "description": "This project contains a JSON schema for the UI5 manifest",
5
5
  "repository": {
6
6
  "type": "git",
package/schema.json CHANGED
@@ -104,7 +104,9 @@
104
104
  "1.83.0",
105
105
  "1.83.1",
106
106
  "1.84.0",
107
- "1.85.0"
107
+ "1.85.0",
108
+ "1.86.0",
109
+ "1.87.0"
108
110
  ]
109
111
  },
110
112
  "start_url": {
@@ -1056,6 +1058,10 @@
1056
1058
  "1.2.0"
1057
1059
  ]
1058
1060
  },
1061
+ "ui5VersionNumber": {
1062
+ "description": "Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.",
1063
+ "type": "string"
1064
+ },
1059
1065
  "oAuthScopes": {
1060
1066
  "description": "Represents the authorization scope of the application",
1061
1067
  "type": "array",
@@ -1325,7 +1331,8 @@
1325
1331
  "1.10.0",
1326
1332
  "1.11.0",
1327
1333
  "1.12.0",
1328
- "1.13.0"
1334
+ "1.13.0",
1335
+ "1.14.0"
1329
1336
  ]
1330
1337
  },
1331
1338
  "globalFilterModel": {
@@ -1472,6 +1479,75 @@
1472
1479
  }
1473
1480
  }
1474
1481
  },
1482
+ "controlConfiguration": {
1483
+ "description": "Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.",
1484
+ "type": "object",
1485
+ "patternProperties": {
1486
+ "^@[a-zA-Z0-9_\\.\\-\\/]*$": {
1487
+ "description": "Defines the configuration for a specific annotation path",
1488
+ "type": "object",
1489
+ "properties": {
1490
+ "filterFields": {
1491
+ "description": "Defines the configuration for filter fields",
1492
+ "type": "object",
1493
+ "patternProperties": {
1494
+ "^[a-zA-Z0-9_\\.\\-]*$": {
1495
+ "description": "Defines the configuration for a specific filter field",
1496
+ "type": "object",
1497
+ "properties": {
1498
+ "settings": {
1499
+ "description": "Defines the settings for a specific filter field",
1500
+ "type": "object",
1501
+ "properties": {
1502
+ "defaultValues": {
1503
+ "description": "Defines the default values for the filter field",
1504
+ "type": "array",
1505
+ "items": {
1506
+ "type": "object",
1507
+ "properties": {
1508
+ "operator": {
1509
+ "description": "Specifies the default semantic date operator",
1510
+ "type": "string"
1511
+ },
1512
+ "values": {
1513
+ "description": "Specifies additional values for the operator",
1514
+ "type": "array"
1515
+ }
1516
+ }
1517
+ }
1518
+ },
1519
+ "operatorConfiguration": {
1520
+ "description": "Defines how operators are configured for the filter field",
1521
+ "type": "array",
1522
+ "items": {
1523
+ "type": "object",
1524
+ "properties": {
1525
+ "path": {
1526
+ "description": "Specifies the key information",
1527
+ "type": "string"
1528
+ },
1529
+ "equals": {
1530
+ "description": "Specifies one or more operator values, separated by commas",
1531
+ "type": "string"
1532
+ },
1533
+ "exclude": {
1534
+ "description": "Flag to exclude or include matched operators",
1535
+ "type": "boolean",
1536
+ "default": true
1537
+ }
1538
+ }
1539
+ }
1540
+ }
1541
+ }
1542
+ }
1543
+ }
1544
+ }
1545
+ }
1546
+ }
1547
+ }
1548
+ }
1549
+ }
1550
+ },
1475
1551
  "dataLoadSettings": {
1476
1552
  "description": "Represents the object to define data loading behaviour for an overview page application",
1477
1553
  "type": "object",
@@ -2077,7 +2153,8 @@
2077
2153
  "1.58.0",
2078
2154
  "1.59.0",
2079
2155
  "1.60.0",
2080
- "1.61.0"
2156
+ "1.61.0",
2157
+ "1.62.0"
2081
2158
  ]
2082
2159
  },
2083
2160
  "designtime": {
@@ -2085,10 +2162,6 @@
2085
2162
  "type": "string",
2086
2163
  "deprecated": true
2087
2164
  },
2088
- "customSettings": {
2089
- "description": "[RESTRICTED] Custom settings which can be used by the host environment for special handling of different scenarios.",
2090
- "type": "object"
2091
- },
2092
2165
  "configuration": {
2093
2166
  "description": "General configuration of the card. Allows to define parameters, destinations, filters and more",
2094
2167
  "type": "object",
@@ -2205,6 +2278,10 @@
2205
2278
  }
2206
2279
  }
2207
2280
  },
2281
+ "customSettings": {
2282
+ "description": "[RESTRICTED] Defines custom settings passed from the Mobile SDK or a hosting application. These are global defaults that can be overridden by individual cards via their manifest. The value is an object containing custom settings as key-value pairs. This property is restricted to Mobile SDK usage",
2283
+ "type": "object"
2284
+ },
2208
2285
  "type": {
2209
2286
  "description": "Represents the type of the card's content",
2210
2287
  "type": "string",
@@ -2303,6 +2380,18 @@
2303
2380
  "description": "[Experimental] Visibility of the footer",
2304
2381
  "$ref": "#/$defs/visibility"
2305
2382
  },
2383
+ "showSeparator": {
2384
+ "description": "Determines whether to display a separator line at the top of the footer to visually separate the footer from the card content area.",
2385
+ "oneOf": [
2386
+ {
2387
+ "type": "boolean",
2388
+ "default": false
2389
+ },
2390
+ {
2391
+ "$ref": "#/$defs/simpleBinding"
2392
+ }
2393
+ ]
2394
+ },
2306
2395
  "closeButton": {
2307
2396
  "description": "[Experimental] Defines the Close button when the card is opened by the ShowCard action",
2308
2397
  "$ref": "#/$defs/closeButton"
@@ -2967,12 +3056,12 @@
2967
3056
  "semanticversion": {
2968
3057
  "description": "The version number of the schema in major.minor.patch format.",
2969
3058
  "type": "string",
2970
- "pattern": "^[0-9]{1,}.[0-9]{1,}.[0-9]{1,}$"
3059
+ "pattern": "^[0-9]{1,}\\.[0-9]{1,}\\.[0-9]{1,}$"
2971
3060
  },
2972
3061
  "iddef": {
2973
3062
  "type": "string",
2974
3063
  "maxLength": 70,
2975
- "pattern": "^[A-Za-z]{2,}.[A-Za-z]{2,}"
3064
+ "pattern": "^[A-Za-z]{2,}\\.[A-Za-z]{2,}$"
2976
3065
  },
2977
3066
  "contentitem": {
2978
3067
  "description": "Represents an item of the content list defining the sub manifest and baseurl",
@@ -3522,28 +3611,6 @@
3522
3611
  }
3523
3612
  }
3524
3613
  },
3525
- "service_0": {
3526
- "description": "Represents service that will be used for actions",
3527
- "oneOf": [
3528
- {
3529
- "description": "Represents name of the Service to be used for the action",
3530
- "type": "string"
3531
- },
3532
- {
3533
- "type": "object",
3534
- "additionalProperties": false,
3535
- "properties": {
3536
- "name": {
3537
- "description": "Represents name of the Service to be used for the action",
3538
- "type": "string"
3539
- },
3540
- "parameters": {
3541
- "type": "object"
3542
- }
3543
- }
3544
- }
3545
- ]
3546
- },
3547
3614
  "request": {
3548
3615
  "description": "Represents request attributes",
3549
3616
  "type": "object",
@@ -5727,11 +5794,8 @@
5727
5794
  }
5728
5795
  ]
5729
5796
  },
5730
- "service": {
5731
- "$ref": "#/$defs/service"
5732
- },
5733
5797
  "url": {
5734
- "description": "[Deprecated] Represents the URL that will be used as navigation target if no service is provided",
5798
+ "description": "[Deprecated] Represents the URL that will be used as navigation target",
5735
5799
  "deprecated": true,
5736
5800
  "type": "string"
5737
5801
  },
@@ -6892,9 +6956,6 @@
6892
6956
  ],
6893
6957
  "additionalProperties": true
6894
6958
  },
6895
- "service": {
6896
- "$ref": "#/$defs/service"
6897
- },
6898
6959
  "updateInterval": {
6899
6960
  "description": "Represents interval in seconds, after which a new data request will be triggered",
6900
6961
  "oneOf": [
@@ -7290,7 +7351,7 @@
7290
7351
  },
7291
7352
  "simpleBinding": {
7292
7353
  "type": "string",
7293
- "pattern": "\\{.*\\}"
7354
+ "pattern": "^\\{.*\\}$"
7294
7355
  },
7295
7356
  "definingRequest": {
7296
7357
  "type": "object",
@@ -9270,7 +9331,7 @@
9270
9331
  "resourceRoot": {
9271
9332
  "description": "Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources",
9272
9333
  "type": "string",
9273
- "pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
9334
+ "pattern": "^((\\.\\/)?\\w+\\/?)+$"
9274
9335
  },
9275
9336
  "model": {
9276
9337
  "description": "Represents sapui5 model name",
package/schema_cil.json CHANGED
@@ -702,6 +702,10 @@
702
702
  "1.2.0"
703
703
  ]
704
704
  },
705
+ "ui5VersionNumber": {
706
+ "description": "Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.",
707
+ "type": "string"
708
+ },
705
709
  "oAuthScopes": {
706
710
  "description": "Represents the authorization scope of the application",
707
711
  "type": "array",
@@ -952,7 +956,8 @@
952
956
  "1.10.0",
953
957
  "1.11.0",
954
958
  "1.12.0",
955
- "1.13.0"
959
+ "1.13.0",
960
+ "1.14.0"
956
961
  ]
957
962
  },
958
963
  "globalFilterModel": {
@@ -1099,6 +1104,75 @@
1099
1104
  }
1100
1105
  }
1101
1106
  },
1107
+ "controlConfiguration": {
1108
+ "description": "Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.",
1109
+ "type": "object",
1110
+ "patternProperties": {
1111
+ "^@[a-zA-Z0-9_\\.\\-\\/]*$": {
1112
+ "description": "Defines the configuration for a specific annotation path",
1113
+ "type": "object",
1114
+ "properties": {
1115
+ "filterFields": {
1116
+ "description": "Defines the configuration for filter fields",
1117
+ "type": "object",
1118
+ "patternProperties": {
1119
+ "^[a-zA-Z0-9_\\.\\-]*$": {
1120
+ "description": "Defines the configuration for a specific filter field",
1121
+ "type": "object",
1122
+ "properties": {
1123
+ "settings": {
1124
+ "description": "Defines the settings for a specific filter field",
1125
+ "type": "object",
1126
+ "properties": {
1127
+ "defaultValues": {
1128
+ "description": "Defines the default values for the filter field",
1129
+ "type": "array",
1130
+ "items": {
1131
+ "type": "object",
1132
+ "properties": {
1133
+ "operator": {
1134
+ "description": "Specifies the default semantic date operator",
1135
+ "type": "string"
1136
+ },
1137
+ "values": {
1138
+ "description": "Specifies additional values for the operator",
1139
+ "type": "array"
1140
+ }
1141
+ }
1142
+ }
1143
+ },
1144
+ "operatorConfiguration": {
1145
+ "description": "Defines how operators are configured for the filter field",
1146
+ "type": "array",
1147
+ "items": {
1148
+ "type": "object",
1149
+ "properties": {
1150
+ "path": {
1151
+ "description": "Specifies the key information",
1152
+ "type": "string"
1153
+ },
1154
+ "equals": {
1155
+ "description": "Specifies one or more operator values, separated by commas",
1156
+ "type": "string"
1157
+ },
1158
+ "exclude": {
1159
+ "description": "Flag to exclude or include matched operators",
1160
+ "type": "boolean",
1161
+ "default": true
1162
+ }
1163
+ }
1164
+ }
1165
+ }
1166
+ }
1167
+ }
1168
+ }
1169
+ }
1170
+ }
1171
+ }
1172
+ }
1173
+ }
1174
+ }
1175
+ },
1102
1176
  "dataLoadSettings": {
1103
1177
  "description": "Represents the object to define data loading behaviour for an overview page application",
1104
1178
  "type": "object",
@@ -3460,7 +3534,7 @@
3460
3534
  "resourceRoot": {
3461
3535
  "description": "Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources",
3462
3536
  "type": "string",
3463
- "pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
3537
+ "pattern": "^((\\.\\/)?\\w+\\/?)+$"
3464
3538
  },
3465
3539
  "model": {
3466
3540
  "description": "Represents sapui5 model name",
@@ -762,7 +762,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
762
762
  | "1.83.0"
763
763
  | "1.83.1"
764
764
  | "1.84.0"
765
- | "1.85.0";
765
+ | "1.85.0"
766
+ | "1.86.0"
767
+ | "1.87.0";
766
768
  /**
767
769
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
768
770
  */
@@ -2018,6 +2020,10 @@ export interface JSONSchemaForSAPPLATFORMCFNamespace {
2018
2020
  * Represents attributes format version. It is managed by namespace owner
2019
2021
  */
2020
2022
  _version?: "1.1.0" | "1.2.0";
2023
+ /**
2024
+ * Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.
2025
+ */
2026
+ ui5VersionNumber?: string;
2021
2027
  /**
2022
2028
  * Represents the authorization scope of the application
2023
2029
  */
@@ -2637,7 +2643,8 @@ export interface JSONSchemaForSAPOVPNamespace {
2637
2643
  | "1.10.0"
2638
2644
  | "1.11.0"
2639
2645
  | "1.12.0"
2640
- | "1.13.0";
2646
+ | "1.13.0"
2647
+ | "1.14.0";
2641
2648
  /**
2642
2649
  * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2643
2650
  */
@@ -2743,6 +2750,72 @@ export interface JSONSchemaForSAPOVPNamespace {
2743
2750
  };
2744
2751
  [k: string]: unknown;
2745
2752
  };
2753
+ /**
2754
+ * Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.
2755
+ */
2756
+ controlConfiguration?: {
2757
+ /**
2758
+ * Defines the configuration for a specific annotation path
2759
+ *
2760
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2761
+ * via the `patternProperty` "^@[a-zA-Z0-9_\.\-\/]*$".
2762
+ */
2763
+ [k: string]: {
2764
+ /**
2765
+ * Defines the configuration for filter fields
2766
+ */
2767
+ filterFields?: {
2768
+ /**
2769
+ * Defines the configuration for a specific filter field
2770
+ *
2771
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2772
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
2773
+ */
2774
+ [k: string]: {
2775
+ /**
2776
+ * Defines the settings for a specific filter field
2777
+ */
2778
+ settings?: {
2779
+ /**
2780
+ * Defines the default values for the filter field
2781
+ */
2782
+ defaultValues?: {
2783
+ /**
2784
+ * Specifies the default semantic date operator
2785
+ */
2786
+ operator?: string;
2787
+ /**
2788
+ * Specifies additional values for the operator
2789
+ */
2790
+ values?: unknown[];
2791
+ [k: string]: unknown;
2792
+ }[];
2793
+ /**
2794
+ * Defines how operators are configured for the filter field
2795
+ */
2796
+ operatorConfiguration?: {
2797
+ /**
2798
+ * Specifies the key information
2799
+ */
2800
+ path?: string;
2801
+ /**
2802
+ * Specifies one or more operator values, separated by commas
2803
+ */
2804
+ equals?: string;
2805
+ /**
2806
+ * Flag to exclude or include matched operators
2807
+ */
2808
+ exclude?: boolean;
2809
+ [k: string]: unknown;
2810
+ }[];
2811
+ [k: string]: unknown;
2812
+ };
2813
+ [k: string]: unknown;
2814
+ };
2815
+ };
2816
+ [k: string]: unknown;
2817
+ };
2818
+ };
2746
2819
  /**
2747
2820
  * Represents the object to define data loading behaviour for an overview page application
2748
2821
  */