@ui5/manifest 2.8.0 → 2.9.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 +8 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +83 -1
- package/schema_cil.json +81 -0
- package/types/manifest.d.ts +76 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,16 @@ 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="v2.9.0"></a>
|
|
8
|
+
## [v2.9.0] - 2026-06-11 (UI5 1.149)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- sap.ovp: Added `controlConfiguration` property to support V4 filter field configurations via annotation path, including `defaultValues` and `operatorConfiguration`
|
|
12
|
+
|
|
7
13
|
<a name="v2.8.0"></a>
|
|
8
14
|
## [v2.8.0] - 2026-05-04 (UI5 1.148)
|
|
9
|
-
## [Unreleased]: https://github.com/UI5/manifest/compare/v2.
|
|
15
|
+
## [Unreleased]: https://github.com/UI5/manifest/compare/v2.9.0...HEAD
|
|
16
|
+
[v2.9.0]: https://github.com/UI5/manifest/compare/v2.8.0...v2.9.0
|
|
10
17
|
[v2.8.0]: https://github.com/UI5/manifest/compare/v2.7.0...v2.8.0
|
|
11
18
|
[v2.7.0]: https://github.com/UI5/manifest/compare/v2.6.0...v2.7.0
|
|
12
19
|
[v2.6.0]: https://github.com/UI5/manifest/compare/v2.5.0...v2.6.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -100,7 +100,8 @@
|
|
|
100
100
|
"2.5.0",
|
|
101
101
|
"2.6.0",
|
|
102
102
|
"2.7.0",
|
|
103
|
-
"2.8.0"
|
|
103
|
+
"2.8.0",
|
|
104
|
+
"2.9.0"
|
|
104
105
|
]
|
|
105
106
|
},
|
|
106
107
|
"start_url": {
|
|
@@ -962,6 +963,18 @@
|
|
|
962
963
|
"type": "object",
|
|
963
964
|
"additionalProperties": true,
|
|
964
965
|
"properties": {
|
|
966
|
+
"_version": {
|
|
967
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
968
|
+
"type": "string",
|
|
969
|
+
"enum": [
|
|
970
|
+
"1.1.0",
|
|
971
|
+
"1.2.0"
|
|
972
|
+
]
|
|
973
|
+
},
|
|
974
|
+
"ui5VersionNumber": {
|
|
975
|
+
"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.",
|
|
976
|
+
"type": "string"
|
|
977
|
+
},
|
|
965
978
|
"oAuthScopes": {
|
|
966
979
|
"description": "Represents the authorization scope of the application",
|
|
967
980
|
"type": "array",
|
|
@@ -1292,6 +1305,75 @@
|
|
|
1292
1305
|
}
|
|
1293
1306
|
}
|
|
1294
1307
|
},
|
|
1308
|
+
"controlConfiguration": {
|
|
1309
|
+
"description": "Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.",
|
|
1310
|
+
"type": "object",
|
|
1311
|
+
"patternProperties": {
|
|
1312
|
+
"^@[a-zA-Z0-9_\\.\\-\\/]*$": {
|
|
1313
|
+
"description": "Defines the configuration for a specific annotation path",
|
|
1314
|
+
"type": "object",
|
|
1315
|
+
"properties": {
|
|
1316
|
+
"filterFields": {
|
|
1317
|
+
"description": "Defines the configuration for filter fields",
|
|
1318
|
+
"type": "object",
|
|
1319
|
+
"patternProperties": {
|
|
1320
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
1321
|
+
"description": "Defines the configuration for a specific filter field",
|
|
1322
|
+
"type": "object",
|
|
1323
|
+
"properties": {
|
|
1324
|
+
"settings": {
|
|
1325
|
+
"description": "Defines the settings for a specific filter field",
|
|
1326
|
+
"type": "object",
|
|
1327
|
+
"properties": {
|
|
1328
|
+
"defaultValues": {
|
|
1329
|
+
"description": "Defines the default values for the filter field",
|
|
1330
|
+
"type": "array",
|
|
1331
|
+
"items": {
|
|
1332
|
+
"type": "object",
|
|
1333
|
+
"properties": {
|
|
1334
|
+
"operator": {
|
|
1335
|
+
"description": "Specifies the default semantic date operator",
|
|
1336
|
+
"type": "string"
|
|
1337
|
+
},
|
|
1338
|
+
"values": {
|
|
1339
|
+
"description": "Specifies additional values for the operator",
|
|
1340
|
+
"type": "array"
|
|
1341
|
+
}
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"operatorConfiguration": {
|
|
1346
|
+
"description": "Defines how operators are configured for the filter field",
|
|
1347
|
+
"type": "array",
|
|
1348
|
+
"items": {
|
|
1349
|
+
"type": "object",
|
|
1350
|
+
"properties": {
|
|
1351
|
+
"path": {
|
|
1352
|
+
"description": "Specifies the key information",
|
|
1353
|
+
"type": "string"
|
|
1354
|
+
},
|
|
1355
|
+
"equals": {
|
|
1356
|
+
"description": "Specifies one or more operator values, separated by commas",
|
|
1357
|
+
"type": "string"
|
|
1358
|
+
},
|
|
1359
|
+
"exclude": {
|
|
1360
|
+
"description": "Flag to exclude or include matched operators",
|
|
1361
|
+
"type": "boolean",
|
|
1362
|
+
"default": true
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1295
1377
|
"dataLoadSettings": {
|
|
1296
1378
|
"description": "Represents the object to define data loading behaviour for an overview page application",
|
|
1297
1379
|
"type": "object",
|
package/schema_cil.json
CHANGED
|
@@ -628,6 +628,18 @@
|
|
|
628
628
|
"type": "object",
|
|
629
629
|
"additionalProperties": true,
|
|
630
630
|
"properties": {
|
|
631
|
+
"_version": {
|
|
632
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
633
|
+
"type": "string",
|
|
634
|
+
"enum": [
|
|
635
|
+
"1.1.0",
|
|
636
|
+
"1.2.0"
|
|
637
|
+
]
|
|
638
|
+
},
|
|
639
|
+
"ui5VersionNumber": {
|
|
640
|
+
"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.",
|
|
641
|
+
"type": "string"
|
|
642
|
+
},
|
|
631
643
|
"oAuthScopes": {
|
|
632
644
|
"description": "Represents the authorization scope of the application",
|
|
633
645
|
"type": "array",
|
|
@@ -946,6 +958,75 @@
|
|
|
946
958
|
}
|
|
947
959
|
}
|
|
948
960
|
},
|
|
961
|
+
"controlConfiguration": {
|
|
962
|
+
"description": "Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.",
|
|
963
|
+
"type": "object",
|
|
964
|
+
"patternProperties": {
|
|
965
|
+
"^@[a-zA-Z0-9_\\.\\-\\/]*$": {
|
|
966
|
+
"description": "Defines the configuration for a specific annotation path",
|
|
967
|
+
"type": "object",
|
|
968
|
+
"properties": {
|
|
969
|
+
"filterFields": {
|
|
970
|
+
"description": "Defines the configuration for filter fields",
|
|
971
|
+
"type": "object",
|
|
972
|
+
"patternProperties": {
|
|
973
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
974
|
+
"description": "Defines the configuration for a specific filter field",
|
|
975
|
+
"type": "object",
|
|
976
|
+
"properties": {
|
|
977
|
+
"settings": {
|
|
978
|
+
"description": "Defines the settings for a specific filter field",
|
|
979
|
+
"type": "object",
|
|
980
|
+
"properties": {
|
|
981
|
+
"defaultValues": {
|
|
982
|
+
"description": "Defines the default values for the filter field",
|
|
983
|
+
"type": "array",
|
|
984
|
+
"items": {
|
|
985
|
+
"type": "object",
|
|
986
|
+
"properties": {
|
|
987
|
+
"operator": {
|
|
988
|
+
"description": "Specifies the default semantic date operator",
|
|
989
|
+
"type": "string"
|
|
990
|
+
},
|
|
991
|
+
"values": {
|
|
992
|
+
"description": "Specifies additional values for the operator",
|
|
993
|
+
"type": "array"
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
"operatorConfiguration": {
|
|
999
|
+
"description": "Defines how operators are configured for the filter field",
|
|
1000
|
+
"type": "array",
|
|
1001
|
+
"items": {
|
|
1002
|
+
"type": "object",
|
|
1003
|
+
"properties": {
|
|
1004
|
+
"path": {
|
|
1005
|
+
"description": "Specifies the key information",
|
|
1006
|
+
"type": "string"
|
|
1007
|
+
},
|
|
1008
|
+
"equals": {
|
|
1009
|
+
"description": "Specifies one or more operator values, separated by commas",
|
|
1010
|
+
"type": "string"
|
|
1011
|
+
},
|
|
1012
|
+
"exclude": {
|
|
1013
|
+
"description": "Flag to exclude or include matched operators",
|
|
1014
|
+
"type": "boolean",
|
|
1015
|
+
"default": true
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
949
1030
|
"dataLoadSettings": {
|
|
950
1031
|
"description": "Represents the object to define data loading behaviour for an overview page application",
|
|
951
1032
|
"type": "object",
|
package/types/manifest.d.ts
CHANGED
|
@@ -729,7 +729,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
729
729
|
| "2.5.0"
|
|
730
730
|
| "2.6.0"
|
|
731
731
|
| "2.7.0"
|
|
732
|
-
| "2.8.0"
|
|
732
|
+
| "2.8.0"
|
|
733
|
+
| "2.9.0";
|
|
733
734
|
/**
|
|
734
735
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
735
736
|
*/
|
|
@@ -1855,6 +1856,14 @@ export interface JSONSchemaForSAPPLATFORMHCPNamespace {
|
|
|
1855
1856
|
* Represents CF(Cloud Foundry) platform specific attributes
|
|
1856
1857
|
*/
|
|
1857
1858
|
export interface JSONSchemaForSAPPLATFORMCFNamespace {
|
|
1859
|
+
/**
|
|
1860
|
+
* Represents attributes format version. It is managed by namespace owner
|
|
1861
|
+
*/
|
|
1862
|
+
_version?: "1.1.0" | "1.2.0";
|
|
1863
|
+
/**
|
|
1864
|
+
* 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.
|
|
1865
|
+
*/
|
|
1866
|
+
ui5VersionNumber?: string;
|
|
1858
1867
|
/**
|
|
1859
1868
|
* Represents the authorization scope of the application
|
|
1860
1869
|
*/
|
|
@@ -2529,6 +2538,72 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2529
2538
|
};
|
|
2530
2539
|
[k: string]: unknown;
|
|
2531
2540
|
};
|
|
2541
|
+
/**
|
|
2542
|
+
* Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.
|
|
2543
|
+
*/
|
|
2544
|
+
controlConfiguration?: {
|
|
2545
|
+
/**
|
|
2546
|
+
* Defines the configuration for a specific annotation path
|
|
2547
|
+
*
|
|
2548
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
2549
|
+
* via the `patternProperty` "^@[a-zA-Z0-9_\.\-\/]*$".
|
|
2550
|
+
*/
|
|
2551
|
+
[k: string]: {
|
|
2552
|
+
/**
|
|
2553
|
+
* Defines the configuration for filter fields
|
|
2554
|
+
*/
|
|
2555
|
+
filterFields?: {
|
|
2556
|
+
/**
|
|
2557
|
+
* Defines the configuration for a specific filter field
|
|
2558
|
+
*
|
|
2559
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
2560
|
+
* via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
|
|
2561
|
+
*/
|
|
2562
|
+
[k: string]: {
|
|
2563
|
+
/**
|
|
2564
|
+
* Defines the settings for a specific filter field
|
|
2565
|
+
*/
|
|
2566
|
+
settings?: {
|
|
2567
|
+
/**
|
|
2568
|
+
* Defines the default values for the filter field
|
|
2569
|
+
*/
|
|
2570
|
+
defaultValues?: {
|
|
2571
|
+
/**
|
|
2572
|
+
* Specifies the default semantic date operator
|
|
2573
|
+
*/
|
|
2574
|
+
operator?: string;
|
|
2575
|
+
/**
|
|
2576
|
+
* Specifies additional values for the operator
|
|
2577
|
+
*/
|
|
2578
|
+
values?: unknown[];
|
|
2579
|
+
[k: string]: unknown;
|
|
2580
|
+
}[];
|
|
2581
|
+
/**
|
|
2582
|
+
* Defines how operators are configured for the filter field
|
|
2583
|
+
*/
|
|
2584
|
+
operatorConfiguration?: {
|
|
2585
|
+
/**
|
|
2586
|
+
* Specifies the key information
|
|
2587
|
+
*/
|
|
2588
|
+
path?: string;
|
|
2589
|
+
/**
|
|
2590
|
+
* Specifies one or more operator values, separated by commas
|
|
2591
|
+
*/
|
|
2592
|
+
equals?: string;
|
|
2593
|
+
/**
|
|
2594
|
+
* Flag to exclude or include matched operators
|
|
2595
|
+
*/
|
|
2596
|
+
exclude?: boolean;
|
|
2597
|
+
[k: string]: unknown;
|
|
2598
|
+
}[];
|
|
2599
|
+
[k: string]: unknown;
|
|
2600
|
+
};
|
|
2601
|
+
[k: string]: unknown;
|
|
2602
|
+
};
|
|
2603
|
+
};
|
|
2604
|
+
[k: string]: unknown;
|
|
2605
|
+
};
|
|
2606
|
+
};
|
|
2532
2607
|
/**
|
|
2533
2608
|
* Represents the object to define data loading behaviour for an overview page application
|
|
2534
2609
|
*/
|