@ui5/manifest 1.52.0 → 1.52.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.52.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.52.1...HEAD).
6
+
7
+ <a name="v1.52.1"></a>
8
+ ## [v1.52.1] - 2023-03-08
6
9
 
7
10
  <a name="v1.52.0"></a>
8
11
  ## [v1.52.0] - 2023-02-09
@@ -22,6 +25,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
22
25
  <a name="v1.48.1"></a>
23
26
  ## v1.48.1 - 2022-11-10
24
27
 
28
+ [v1.52.1]: https://github.com/SAP/ui5-manifest/compare/v1.52.0...v1.52.1
25
29
  [v1.52.0]: https://github.com/SAP/ui5-manifest/compare/v1.51.0...v1.52.0
26
30
  [v1.51.0]: https://github.com/SAP/ui5-manifest/compare/v1.49.2...v1.51.0
27
31
  [v1.49.2]: https://github.com/SAP/ui5-manifest/compare/v1.49.1...v1.49.2
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.51.0",
2
+ "latest": "1.52.0",
3
+ "1.112": "1.52.0",
3
4
  "1.111": "1.51.0",
4
5
  "1.110": "1.50.0",
5
6
  "1.109": "1.49.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.52.0",
3
+ "version": "1.52.1",
4
4
  "description": "This project contains the flattend json schema for the ui5 manifest.",
5
5
  "repository": {
6
6
  "type": "git",
package/schema.json CHANGED
@@ -9,6 +9,11 @@
9
9
  ],
10
10
  "additionalProperties": false,
11
11
  "properties": {
12
+ "$schema": {
13
+ "description": "The resource identifier for the JSON schema to be used. The value of this keyword MUST be a URI [RFC3986] (containing a scheme) and this URI MUST be normalized. The current schema MUST be valid against the meta-schema identified by this URI. If this URI identifies a retrievable resource, that resource SHOULD be of media type \"application/schema+json\".",
14
+ "format": "uri",
15
+ "type": "string"
16
+ },
12
17
  "_version": {
13
18
  "description": "Represents Application Descriptor format version. It is managed by schema owner",
14
19
  "type": "string",
@@ -63,7 +68,8 @@
63
68
  "1.48.0",
64
69
  "1.49.0",
65
70
  "1.50.0",
66
- "1.51.0"
71
+ "1.51.0",
72
+ "1.52.0"
67
73
  ]
68
74
  },
69
75
  "start_url": {
@@ -1869,7 +1875,8 @@
1869
1875
  "1.33.0",
1870
1876
  "1.34.0",
1871
1877
  "1.35.0",
1872
- "1.36.0"
1878
+ "1.36.0",
1879
+ "1.37.0"
1873
1880
  ]
1874
1881
  },
1875
1882
  "designtime": {
@@ -3654,6 +3661,7 @@
3654
3661
  "IconGroup",
3655
3662
  "ComboBox",
3656
3663
  "TextArea",
3664
+ "Input",
3657
3665
  "RatingIndicator",
3658
3666
  "phone",
3659
3667
  "email",
@@ -5485,12 +5493,32 @@
5485
5493
  ]
5486
5494
  },
5487
5495
  "extension": {
5488
- "description": "[Experimental] Provides a way to request data via extension",
5489
5496
  "$ref": "#/definitions/extension"
5490
5497
  },
5491
5498
  "name": {
5492
5499
  "description": "[Experimental] Gives a name to the data section. A model with the same name will be assigned to the card",
5493
5500
  "type": "string"
5501
+ },
5502
+ "mockData": {
5503
+ "description": "[Experimental] Mock data attributes",
5504
+ "type": "object",
5505
+ "additionalProperties": false,
5506
+ "properties": {
5507
+ "request": {
5508
+ "$ref": "#/definitions/request"
5509
+ },
5510
+ "json": {
5511
+ "description": "The data to be used directly. Without making requests",
5512
+ "type": [
5513
+ "object",
5514
+ "array"
5515
+ ],
5516
+ "additionalProperties": true
5517
+ },
5518
+ "extension": {
5519
+ "$ref": "#/definitions/extension"
5520
+ }
5521
+ }
5494
5522
  }
5495
5523
  }
5496
5524
  },
@@ -5641,8 +5669,11 @@
5641
5669
  "yesterday",
5642
5670
  "tomorrow",
5643
5671
  "dateRange",
5672
+ "dateTimeRange",
5644
5673
  "from",
5645
5674
  "to",
5675
+ "fromDateTime",
5676
+ "toDateTime",
5646
5677
  "yearToDate",
5647
5678
  "lastDays",
5648
5679
  "lastWeeks",
@@ -5671,7 +5702,8 @@
5671
5702
  "quarter4",
5672
5703
  "thisYear",
5673
5704
  "lastYear",
5674
- "nextYear"
5705
+ "nextYear",
5706
+ "dateTime"
5675
5707
  ]
5676
5708
  }
5677
5709
  },
package/schema_cil.json CHANGED
@@ -9,6 +9,11 @@
9
9
  ],
10
10
  "additionalProperties": false,
11
11
  "properties": {
12
+ "$schema": {
13
+ "description": "The resource identifier for the JSON schema to be used. The value of this keyword MUST be a URI [RFC3986] (containing a scheme) and this URI MUST be normalized. The current schema MUST be valid against the meta-schema identified by this URI. If this URI identifies a retrievable resource, that resource SHOULD be of media type \"application/schema+json\".",
14
+ "format": "uri",
15
+ "type": "string"
16
+ },
12
17
  "_version": {
13
18
  "description": "Represents Application Descriptor format version. It is managed by schema owner",
14
19
  "type": "string",
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -625,6 +625,10 @@ export type JSONSchemaForSAPCARDNamespace = {
625
625
  export type Semanticversion = string;
626
626
 
627
627
  export interface SAPJSONSchemaForWebApplicationManifestFile {
628
+ /**
629
+ * The resource identifier for the JSON schema to be used. The value of this keyword MUST be a URI [RFC3986] (containing a scheme) and this URI MUST be normalized. The current schema MUST be valid against the meta-schema identified by this URI. If this URI identifies a retrievable resource, that resource SHOULD be of media type "application/schema+json".
630
+ */
631
+ $schema?: string;
628
632
  /**
629
633
  * Represents Application Descriptor format version. It is managed by schema owner
630
634
  */
@@ -679,7 +683,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
679
683
  | "1.48.0"
680
684
  | "1.49.0"
681
685
  | "1.50.0"
682
- | "1.51.0";
686
+ | "1.51.0"
687
+ | "1.52.0";
683
688
  /**
684
689
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
685
690
  */