@ui5/manifest 1.55.0 → 1.57.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 +9 -1
- package/README.md +2 -0
- package/mapping.json +4 -2
- package/package.json +1 -24
- package/schema.json +170 -15
- package/schema_cil.json +15 -15
- package/types/manifest.d.ts +16 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
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.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.57.0...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.57.0"></a>
|
|
8
|
+
## [v1.57.0] - 2023-07-27
|
|
9
|
+
|
|
10
|
+
<a name="v1.56.0"></a>
|
|
11
|
+
## [v1.56.0] - 2023-06-29
|
|
6
12
|
|
|
7
13
|
<a name="v1.55.0"></a>
|
|
8
14
|
## [v1.55.0] - 2023-06-01
|
|
@@ -37,6 +43,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
37
43
|
<a name="v1.48.1"></a>
|
|
38
44
|
## v1.48.1 - 2022-11-10
|
|
39
45
|
|
|
46
|
+
[v1.57.0]: https://github.com/SAP/ui5-manifest/compare/v1.56.0...v1.57.0
|
|
47
|
+
[v1.56.0]: https://github.com/SAP/ui5-manifest/compare/v1.55.0...v1.56.0
|
|
40
48
|
[v1.55.0]: https://github.com/SAP/ui5-manifest/compare/v1.54.0...v1.55.0
|
|
41
49
|
[v1.54.0]: https://github.com/SAP/ui5-manifest/compare/v1.53.1...v1.54.0
|
|
42
50
|
[v1.53.1]: https://github.com/SAP/ui5-manifest/compare/v1.53.0...v1.53.1
|
package/README.md
CHANGED
|
@@ -8,6 +8,8 @@ This project contains the flattened json schema for the ui5 manifest.
|
|
|
8
8
|
|
|
9
9
|
This flattened json schema for the ui5 manifest is meant to be referenced in the [JSON Schema Store](https://www.schemastore.org/json/) in order to provide validation and code completion of the manifest.json file in SAP Business Application Studio or another IDE.
|
|
10
10
|
|
|
11
|
+
TypeScript type definition is available for schema code completion, documentation and type check within IDE.
|
|
12
|
+
|
|
11
13
|
## How to obtain support
|
|
12
14
|
In case you need any support, please create a [GitHub issue](https://github.com/SAP/ui5-manifest/issues).
|
|
13
15
|
|
package/mapping.json
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ui5/manifest",
|
|
3
|
-
"version": "1.55.0",
|
|
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
|
-
"postversion": "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
|
-
}
|
|
1
|
+
{"name":"@ui5/manifest","version":"1.57.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","postversion":"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"}
|
package/schema.json
CHANGED
|
@@ -72,7 +72,9 @@
|
|
|
72
72
|
"1.52.0",
|
|
73
73
|
"1.53.0",
|
|
74
74
|
"1.54.0",
|
|
75
|
-
"1.55.0"
|
|
75
|
+
"1.55.0",
|
|
76
|
+
"1.56.0",
|
|
77
|
+
"1.57.0"
|
|
76
78
|
]
|
|
77
79
|
},
|
|
78
80
|
"start_url": {
|
|
@@ -1939,7 +1941,8 @@
|
|
|
1939
1941
|
"1.37.0",
|
|
1940
1942
|
"1.38.0",
|
|
1941
1943
|
"1.39.0",
|
|
1942
|
-
"1.40.0"
|
|
1944
|
+
"1.40.0",
|
|
1945
|
+
"1.41.0"
|
|
1943
1946
|
]
|
|
1944
1947
|
},
|
|
1945
1948
|
"designtime": {
|
|
@@ -2108,6 +2111,10 @@
|
|
|
2108
2111
|
"$ref": "#/definitions/simpleBinding"
|
|
2109
2112
|
}
|
|
2110
2113
|
]
|
|
2114
|
+
},
|
|
2115
|
+
"visible": {
|
|
2116
|
+
"description": "Represents the visibility of the paginator",
|
|
2117
|
+
"$ref": "#/definitions/visibility"
|
|
2111
2118
|
}
|
|
2112
2119
|
}
|
|
2113
2120
|
},
|
|
@@ -2566,6 +2573,76 @@
|
|
|
2566
2573
|
}
|
|
2567
2574
|
}
|
|
2568
2575
|
}
|
|
2576
|
+
},
|
|
2577
|
+
"sap.bpa.task": {
|
|
2578
|
+
"title": "JSON schema for sap.bpa.task Namespace",
|
|
2579
|
+
"description": "Represents SBPA Custom Task UI Attributes",
|
|
2580
|
+
"type": "object",
|
|
2581
|
+
"required": [
|
|
2582
|
+
"outcomes",
|
|
2583
|
+
"category",
|
|
2584
|
+
"_version"
|
|
2585
|
+
],
|
|
2586
|
+
"additionalProperties": false,
|
|
2587
|
+
"properties": {
|
|
2588
|
+
"_version": {
|
|
2589
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
2590
|
+
"type": "string",
|
|
2591
|
+
"enum": [
|
|
2592
|
+
"1.0.0"
|
|
2593
|
+
]
|
|
2594
|
+
},
|
|
2595
|
+
"inputs": {
|
|
2596
|
+
"description": "Represents the inputs of the task ui",
|
|
2597
|
+
"$ref": "http://json-schema.org/draft-07/schema"
|
|
2598
|
+
},
|
|
2599
|
+
"outputs": {
|
|
2600
|
+
"description": "Represents the outputs of the task ui",
|
|
2601
|
+
"$ref": "http://json-schema.org/draft-07/schema"
|
|
2602
|
+
},
|
|
2603
|
+
"category": {
|
|
2604
|
+
"description": "Represents the category of the task ui",
|
|
2605
|
+
"type": "string",
|
|
2606
|
+
"enum": [
|
|
2607
|
+
"standard",
|
|
2608
|
+
"approval"
|
|
2609
|
+
]
|
|
2610
|
+
},
|
|
2611
|
+
"outcomes": {
|
|
2612
|
+
"title": "outcomes",
|
|
2613
|
+
"type": "array",
|
|
2614
|
+
"description": "Represents the outcomes of the task ui",
|
|
2615
|
+
"items": {
|
|
2616
|
+
"type": "object",
|
|
2617
|
+
"properties": {
|
|
2618
|
+
"id": {
|
|
2619
|
+
"description": "Represents the id of the outcome",
|
|
2620
|
+
"type": "string",
|
|
2621
|
+
"enum": [
|
|
2622
|
+
"approve",
|
|
2623
|
+
"reject",
|
|
2624
|
+
"submit"
|
|
2625
|
+
]
|
|
2626
|
+
},
|
|
2627
|
+
"label": {
|
|
2628
|
+
"type": "string",
|
|
2629
|
+
"description": "Represents the label of the outcome"
|
|
2630
|
+
}
|
|
2631
|
+
}
|
|
2632
|
+
},
|
|
2633
|
+
"maxItems": 2,
|
|
2634
|
+
"minItems": 1,
|
|
2635
|
+
"uniqueItems": true
|
|
2636
|
+
}
|
|
2637
|
+
},
|
|
2638
|
+
"oneOf": [
|
|
2639
|
+
{
|
|
2640
|
+
"required": [
|
|
2641
|
+
"inputs",
|
|
2642
|
+
"outputs"
|
|
2643
|
+
]
|
|
2644
|
+
}
|
|
2645
|
+
]
|
|
2569
2646
|
}
|
|
2570
2647
|
},
|
|
2571
2648
|
"definitions": {
|
|
@@ -2770,6 +2847,10 @@
|
|
|
2770
2847
|
"items": {
|
|
2771
2848
|
"$ref": "#/definitions/Microchart.StackedBar.Bar"
|
|
2772
2849
|
}
|
|
2850
|
+
},
|
|
2851
|
+
"visible": {
|
|
2852
|
+
"description": "Represents the visibility of the chart bar",
|
|
2853
|
+
"$ref": "#/definitions/visibility"
|
|
2773
2854
|
}
|
|
2774
2855
|
}
|
|
2775
2856
|
},
|
|
@@ -2855,6 +2936,10 @@
|
|
|
2855
2936
|
"items": {
|
|
2856
2937
|
"$ref": "#/definitions/Microchart.Bullet.Threshold"
|
|
2857
2938
|
}
|
|
2939
|
+
},
|
|
2940
|
+
"visible": {
|
|
2941
|
+
"description": "Represents the visibility of the chart",
|
|
2942
|
+
"$ref": "#/definitions/visibility"
|
|
2858
2943
|
}
|
|
2859
2944
|
}
|
|
2860
2945
|
},
|
|
@@ -2885,6 +2970,41 @@
|
|
|
2885
2970
|
"datetime"
|
|
2886
2971
|
]
|
|
2887
2972
|
},
|
|
2973
|
+
"ibnTarget": {
|
|
2974
|
+
"description": "The application identifier consisting of semanticObject and action or ",
|
|
2975
|
+
"type": "object",
|
|
2976
|
+
"additionalProperties": false,
|
|
2977
|
+
"required": [
|
|
2978
|
+
"semanticObject",
|
|
2979
|
+
"action"
|
|
2980
|
+
],
|
|
2981
|
+
"semanticObject": {
|
|
2982
|
+
"type": "string"
|
|
2983
|
+
},
|
|
2984
|
+
"action": {
|
|
2985
|
+
"type": "string"
|
|
2986
|
+
}
|
|
2987
|
+
},
|
|
2988
|
+
"ibnActionParameters": {
|
|
2989
|
+
"description": "Parameters for an intent based navigation",
|
|
2990
|
+
"type": "object",
|
|
2991
|
+
"additionalProperties": false,
|
|
2992
|
+
"required": [
|
|
2993
|
+
"ibnTarget"
|
|
2994
|
+
],
|
|
2995
|
+
"ibnTarget": {
|
|
2996
|
+
"description": "An application identifier consisting of semanticObject and action",
|
|
2997
|
+
"$ref": "#/definitions/ibnTarget"
|
|
2998
|
+
},
|
|
2999
|
+
"ibnParam": {
|
|
3000
|
+
"description": "Key/value pairs for parameters of the target application",
|
|
3001
|
+
"$ref": "#/definitions/parameters"
|
|
3002
|
+
},
|
|
3003
|
+
"ibnAppSpecificRoute": {
|
|
3004
|
+
"description": "An application specific route that is passed to the target application",
|
|
3005
|
+
"type": "string"
|
|
3006
|
+
}
|
|
3007
|
+
},
|
|
2888
3008
|
"cache": {
|
|
2889
3009
|
"description": "Cache control settings",
|
|
2890
3010
|
"type": "object",
|
|
@@ -4130,17 +4250,6 @@
|
|
|
4130
4250
|
}
|
|
4131
4251
|
}
|
|
4132
4252
|
},
|
|
4133
|
-
"visibility": {
|
|
4134
|
-
"oneOf": [
|
|
4135
|
-
{
|
|
4136
|
-
"type": "boolean",
|
|
4137
|
-
"default": true
|
|
4138
|
-
},
|
|
4139
|
-
{
|
|
4140
|
-
"$ref": "#/definitions/simpleBinding"
|
|
4141
|
-
}
|
|
4142
|
-
]
|
|
4143
|
-
},
|
|
4144
4253
|
"ContentType.Analytical.Field": {
|
|
4145
4254
|
"type": "object",
|
|
4146
4255
|
"additionalProperties": false,
|
|
@@ -4449,6 +4558,10 @@
|
|
|
4449
4558
|
"value": {
|
|
4450
4559
|
"type": "string",
|
|
4451
4560
|
"description": "The value of the field"
|
|
4561
|
+
},
|
|
4562
|
+
"visible": {
|
|
4563
|
+
"description": "Represents the visibility of the field",
|
|
4564
|
+
"$ref": "#/definitions/visibility"
|
|
4452
4565
|
}
|
|
4453
4566
|
}
|
|
4454
4567
|
},
|
|
@@ -4706,6 +4819,10 @@
|
|
|
4706
4819
|
"$ref": "#/definitions/statusTextFormatter"
|
|
4707
4820
|
}
|
|
4708
4821
|
]
|
|
4822
|
+
},
|
|
4823
|
+
"visible": {
|
|
4824
|
+
"description": "Represents the visibility of the status text",
|
|
4825
|
+
"$ref": "#/definitions/visibility"
|
|
4709
4826
|
}
|
|
4710
4827
|
}
|
|
4711
4828
|
},
|
|
@@ -4807,7 +4924,15 @@
|
|
|
4807
4924
|
"type": "string"
|
|
4808
4925
|
},
|
|
4809
4926
|
"parameters": {
|
|
4810
|
-
"
|
|
4927
|
+
"description": "Parameters passed to the navigation action handler",
|
|
4928
|
+
"oneOf": [
|
|
4929
|
+
{
|
|
4930
|
+
"$ref": "#/definitions/parameters"
|
|
4931
|
+
},
|
|
4932
|
+
{
|
|
4933
|
+
"$ref": "#/definitions/ibnActionParameters"
|
|
4934
|
+
}
|
|
4935
|
+
]
|
|
4811
4936
|
},
|
|
4812
4937
|
"target": {
|
|
4813
4938
|
"description": "Specifies where to open the 'url', if it is provided",
|
|
@@ -5512,6 +5637,17 @@
|
|
|
5512
5637
|
}
|
|
5513
5638
|
}
|
|
5514
5639
|
},
|
|
5640
|
+
"visibility": {
|
|
5641
|
+
"oneOf": [
|
|
5642
|
+
{
|
|
5643
|
+
"type": "boolean",
|
|
5644
|
+
"default": true
|
|
5645
|
+
},
|
|
5646
|
+
{
|
|
5647
|
+
"$ref": "#/definitions/simpleBinding"
|
|
5648
|
+
}
|
|
5649
|
+
]
|
|
5650
|
+
},
|
|
5515
5651
|
"actionsStripItem": {
|
|
5516
5652
|
"description": "[Experimental] Attributes of actions strip item",
|
|
5517
5653
|
"type": "object",
|
|
@@ -7866,7 +8002,7 @@
|
|
|
7866
8002
|
}
|
|
7867
8003
|
}
|
|
7868
8004
|
},
|
|
7869
|
-
"
|
|
8005
|
+
"deviceType_0": {
|
|
7870
8006
|
"type": "object",
|
|
7871
8007
|
"description": "Represents device types on which the app is running",
|
|
7872
8008
|
"additionalProperties": false,
|
|
@@ -8042,6 +8178,25 @@
|
|
|
8042
8178
|
}
|
|
8043
8179
|
}
|
|
8044
8180
|
},
|
|
8181
|
+
"deviceType": {
|
|
8182
|
+
"type": "object",
|
|
8183
|
+
"description": "Represents device types on which the app is running",
|
|
8184
|
+
"additionalProperties": false,
|
|
8185
|
+
"properties": {
|
|
8186
|
+
"desktop": {
|
|
8187
|
+
"description": "Represents indicator whether desktop device is supported",
|
|
8188
|
+
"type": "boolean"
|
|
8189
|
+
},
|
|
8190
|
+
"tablet": {
|
|
8191
|
+
"description": "Represents indicator whether tablet device is supported",
|
|
8192
|
+
"type": "boolean"
|
|
8193
|
+
},
|
|
8194
|
+
"phone": {
|
|
8195
|
+
"description": "Represents indicator whether phone device is supported",
|
|
8196
|
+
"type": "boolean"
|
|
8197
|
+
}
|
|
8198
|
+
}
|
|
8199
|
+
},
|
|
8045
8200
|
"objectType": {
|
|
8046
8201
|
"type": "string",
|
|
8047
8202
|
"enum": [
|
package/schema_cil.json
CHANGED
|
@@ -277,21 +277,6 @@
|
|
|
277
277
|
"definitions": {
|
|
278
278
|
"version": {
|
|
279
279
|
"type": "string"
|
|
280
|
-
},
|
|
281
|
-
"objectName": {
|
|
282
|
-
"type": "string",
|
|
283
|
-
"pattern": "^(\\\\[0-9a-zA-Z_]+\\\\)?[a-zA-Z][a-zA-Z0-9_]*$",
|
|
284
|
-
"minLength": 3,
|
|
285
|
-
"maxLength": 50
|
|
286
|
-
},
|
|
287
|
-
"objectType": {
|
|
288
|
-
"type": "string",
|
|
289
|
-
"enum": [
|
|
290
|
-
"query",
|
|
291
|
-
"cdsprojectionview",
|
|
292
|
-
"view",
|
|
293
|
-
"inamodel"
|
|
294
|
-
]
|
|
295
280
|
}
|
|
296
281
|
}
|
|
297
282
|
},
|
|
@@ -3318,6 +3303,21 @@
|
|
|
3318
3303
|
}
|
|
3319
3304
|
}
|
|
3320
3305
|
},
|
|
3306
|
+
"objectType": {
|
|
3307
|
+
"type": "string",
|
|
3308
|
+
"enum": [
|
|
3309
|
+
"query",
|
|
3310
|
+
"cdsprojectionview",
|
|
3311
|
+
"view",
|
|
3312
|
+
"inamodel"
|
|
3313
|
+
]
|
|
3314
|
+
},
|
|
3315
|
+
"objectName": {
|
|
3316
|
+
"type": "string",
|
|
3317
|
+
"pattern": "^(\\\\[0-9a-zA-Z_]+\\\\)?[a-zA-Z][a-zA-Z0-9_]*$",
|
|
3318
|
+
"minLength": 3,
|
|
3319
|
+
"maxLength": 50
|
|
3320
|
+
},
|
|
3321
3321
|
"setting": {
|
|
3322
3322
|
"type": "object",
|
|
3323
3323
|
"additionalProperties": true,
|
package/types/manifest.d.ts
CHANGED
|
@@ -628,6 +628,12 @@ export type JSONSchemaForSAPCARDNamespace = {
|
|
|
628
628
|
* The version number of the schema in major.minor.patch format.
|
|
629
629
|
*/
|
|
630
630
|
export type Semanticversion = string;
|
|
631
|
+
/**
|
|
632
|
+
* Represents SBPA Custom Task UI Attributes
|
|
633
|
+
*/
|
|
634
|
+
export type JSONSchemaForSapBpaTaskNamespace = {
|
|
635
|
+
[k: string]: unknown;
|
|
636
|
+
};
|
|
631
637
|
|
|
632
638
|
export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
633
639
|
/**
|
|
@@ -692,7 +698,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
692
698
|
| "1.52.0"
|
|
693
699
|
| "1.53.0"
|
|
694
700
|
| "1.54.0"
|
|
695
|
-
| "1.55.0"
|
|
701
|
+
| "1.55.0"
|
|
702
|
+
| "1.56.0"
|
|
703
|
+
| "1.57.0";
|
|
696
704
|
/**
|
|
697
705
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
698
706
|
*/
|
|
@@ -726,6 +734,7 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
726
734
|
"sap.card"?: JSONSchemaForSAPCARDNamespace;
|
|
727
735
|
"sap.package"?: JSONSchemaForSAPPACKAGENamespace;
|
|
728
736
|
"sap.artifact"?: JSONSchemaForSAPARTIFACTNamespace;
|
|
737
|
+
"sap.bpa.task"?: JSONSchemaForSapBpaTaskNamespace;
|
|
729
738
|
}
|
|
730
739
|
/**
|
|
731
740
|
* Represents general application attributes
|
|
@@ -1131,15 +1140,15 @@ export interface Inbound {
|
|
|
1131
1140
|
*/
|
|
1132
1141
|
export interface DeviceType {
|
|
1133
1142
|
/**
|
|
1134
|
-
* Represents indicator whether desktop device is supported
|
|
1143
|
+
* Represents indicator whether desktop device is supported
|
|
1135
1144
|
*/
|
|
1136
1145
|
desktop?: boolean;
|
|
1137
1146
|
/**
|
|
1138
|
-
* Represents indicator whether tablet device is supported
|
|
1147
|
+
* Represents indicator whether tablet device is supported
|
|
1139
1148
|
*/
|
|
1140
1149
|
tablet?: boolean;
|
|
1141
1150
|
/**
|
|
1142
|
-
* Represents indicator whether phone device is supported
|
|
1151
|
+
* Represents indicator whether phone device is supported
|
|
1143
1152
|
*/
|
|
1144
1153
|
phone?: boolean;
|
|
1145
1154
|
}
|
|
@@ -1321,15 +1330,15 @@ export interface JSONSchemaForSAPUINamespace {
|
|
|
1321
1330
|
*/
|
|
1322
1331
|
export interface DeviceType1 {
|
|
1323
1332
|
/**
|
|
1324
|
-
* Represents indicator whether desktop device is supported
|
|
1333
|
+
* Represents indicator whether desktop device is supported
|
|
1325
1334
|
*/
|
|
1326
1335
|
desktop?: boolean;
|
|
1327
1336
|
/**
|
|
1328
|
-
* Represents indicator whether tablet device is supported
|
|
1337
|
+
* Represents indicator whether tablet device is supported
|
|
1329
1338
|
*/
|
|
1330
1339
|
tablet?: boolean;
|
|
1331
1340
|
/**
|
|
1332
|
-
* Represents indicator whether phone device is supported
|
|
1341
|
+
* Represents indicator whether phone device is supported
|
|
1333
1342
|
*/
|
|
1334
1343
|
phone?: boolean;
|
|
1335
1344
|
}
|