@ui5/manifest 1.60.0 → 1.61.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.60.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.61.1...HEAD).
6
+
7
+ <a name="v1.61.1"></a>
8
+ ## [v1.61.1] - 2024-02-09
6
9
 
7
10
  <a name="v1.60.0"></a>
8
11
  ## [v1.60.0] - 2023-09-22
@@ -49,6 +52,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
49
52
  <a name="v1.48.1"></a>
50
53
  ## v1.48.1 - 2022-11-10
51
54
 
55
+ [v1.61.1]: https://github.com/SAP/ui5-manifest/compare/v1.60.0...v1.61.1
52
56
  [v1.60.0]: https://github.com/SAP/ui5-manifest/compare/v1.59.0...v1.60.0
53
57
  [v1.59.0]: https://github.com/SAP/ui5-manifest/compare/v1.57.0...v1.59.0
54
58
  [v1.57.0]: https://github.com/SAP/ui5-manifest/compare/v1.56.0...v1.57.0
package/mapping.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
- "latest": "1.59.0",
2
+ "latest": "1.61.0",
3
+ "1.121": "1.61.0",
4
+ "1.120": "1.60.0",
3
5
  "1.119": "1.59.0",
4
6
  "1.118": "1.58.0",
5
7
  "1.117": "1.57.0",
package/package.json CHANGED
@@ -1 +1,24 @@
1
- {"name":"@ui5/manifest","version":"1.60.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"}
1
+ {
2
+ "name": "@ui5/manifest",
3
+ "version": "1.61.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
@@ -76,7 +76,9 @@
76
76
  "1.56.0",
77
77
  "1.57.0",
78
78
  "1.58.0",
79
- "1.59.0"
79
+ "1.59.0",
80
+ "1.60.0",
81
+ "1.61.0"
80
82
  ]
81
83
  },
82
84
  "start_url": {
@@ -118,7 +120,8 @@
118
120
  "1.17.0",
119
121
  "1.18.0",
120
122
  "1.19.0",
121
- "1.20.0"
123
+ "1.20.0",
124
+ "1.21.0"
122
125
  ]
123
126
  },
124
127
  "sourceTemplate": {
@@ -148,7 +151,7 @@
148
151
  "$ref": "#/definitions/id_def"
149
152
  },
150
153
  "type": {
151
- "description": "Represents type of an application and can be application or component or library",
154
+ "description": "Represents type of an application and can be application or component or library or card",
152
155
  "type": "string",
153
156
  "enum": [
154
157
  "application",
@@ -1258,7 +1261,8 @@
1258
1261
  "1.7.0",
1259
1262
  "1.8.0",
1260
1263
  "1.9.0",
1261
- "1.10.0"
1264
+ "1.10.0",
1265
+ "1.11.0"
1262
1266
  ]
1263
1267
  },
1264
1268
  "globalFilterModel": {
@@ -1271,6 +1275,15 @@
1271
1275
  "type": "string",
1272
1276
  "pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
1273
1277
  },
1278
+ "globalFilterControlType": {
1279
+ "description": "Represents the control to be used for the filter bar",
1280
+ "type": "string",
1281
+ "default": "SmartFilterBar",
1282
+ "enum": [
1283
+ "MacroFilterBar",
1284
+ "SmartFilterBar"
1285
+ ]
1286
+ },
1274
1287
  "globalFilterEntitySet": {
1275
1288
  "description": "Represents the entity set to use as global filter in the smart filter bar control",
1276
1289
  "type": "string",
@@ -1971,11 +1984,12 @@
1971
1984
  "1.39.0",
1972
1985
  "1.40.0",
1973
1986
  "1.41.0",
1974
- "1.42.0"
1987
+ "1.42.0",
1988
+ "1.43.0"
1975
1989
  ]
1976
1990
  },
1977
1991
  "designtime": {
1978
- "description": "The path to the design time folder with assets files",
1992
+ "description": "[Deprecated] The path to the design time folder with assets files",
1979
1993
  "type": "string"
1980
1994
  },
1981
1995
  "configuration": {
@@ -1983,6 +1997,10 @@
1983
1997
  "type": "object",
1984
1998
  "additionalProperties": false,
1985
1999
  "properties": {
2000
+ "editor": {
2001
+ "description": "The path to the design time configuration file. Used for Configuration Editor.",
2002
+ "type": "string"
2003
+ },
1986
2004
  "enableMarkdown": {
1987
2005
  "description": "Markdown enablement for Adaptive Content",
1988
2006
  "type": "boolean"
@@ -2018,6 +2036,9 @@
2018
2036
  },
2019
2037
  {
2020
2038
  "$ref": "#/definitions/Configuration.FilterType.Search"
2039
+ },
2040
+ {
2041
+ "$ref": "#/definitions/Configuration.FilterType.ComboBox"
2021
2042
  }
2022
2043
  ]
2023
2044
  }
@@ -2108,11 +2129,18 @@
2108
2129
  "additionalProperties": false,
2109
2130
  "properties": {
2110
2131
  "actionsStrip": {
2111
- "description": "[Experimental] Describes actions strip",
2112
- "type": "array",
2113
- "items": {
2114
- "$ref": "#/definitions/actionsStripItem"
2115
- }
2132
+ "description": "Describes actions strip",
2133
+ "oneOf": [
2134
+ {
2135
+ "type": "array",
2136
+ "items": {
2137
+ "$ref": "#/definitions/actionsStripItem"
2138
+ }
2139
+ },
2140
+ {
2141
+ "$ref": "#/definitions/actionsStrip"
2142
+ }
2143
+ ]
2116
2144
  },
2117
2145
  "paginator": {
2118
2146
  "description": "[Experimental] Describes the paginator",
@@ -2650,7 +2678,8 @@
2650
2678
  "description": "Represents attributes format version. It is managed by namespace owner",
2651
2679
  "type": "string",
2652
2680
  "enum": [
2653
- "1.0.0"
2681
+ "1.0.0",
2682
+ "1.1.0"
2654
2683
  ]
2655
2684
  },
2656
2685
  "inputs": {
@@ -2675,25 +2704,45 @@
2675
2704
  "description": "Represents the outcomes of the task ui",
2676
2705
  "items": {
2677
2706
  "type": "object",
2707
+ "additionalProperties": false,
2708
+ "required": [
2709
+ "id",
2710
+ "label"
2711
+ ],
2678
2712
  "properties": {
2679
2713
  "id": {
2680
2714
  "description": "Represents the id of the outcome",
2681
2715
  "type": "string",
2682
- "enum": [
2683
- "approve",
2684
- "reject",
2685
- "submit"
2686
- ]
2716
+ "pattern": "^[a-zA-Z0-9_]{1,60}$"
2687
2717
  },
2688
2718
  "label": {
2689
2719
  "type": "string",
2690
2720
  "description": "Represents the label of the outcome"
2721
+ },
2722
+ "type": {
2723
+ "type": "string",
2724
+ "description": "Represents the intent of the outcome within a process",
2725
+ "enum": [
2726
+ "positive",
2727
+ "negative",
2728
+ "neutral"
2729
+ ]
2691
2730
  }
2692
2731
  }
2693
2732
  },
2694
- "maxItems": 2,
2695
2733
  "minItems": 1,
2696
- "uniqueItems": true
2734
+ "uniqueItems": true,
2735
+ "maxItems": 5
2736
+ },
2737
+ "preview": {
2738
+ "description": "Configuration for a preview of the application in SBPA",
2739
+ "type": "object",
2740
+ "properties": {
2741
+ "src": {
2742
+ "description": "Relative path to an image. The path to the image is relative to the baseUrl of the application",
2743
+ "type": "string"
2744
+ }
2745
+ }
2697
2746
  }
2698
2747
  },
2699
2748
  "oneOf": [
@@ -2704,9 +2753,65 @@
2704
2753
  ]
2705
2754
  }
2706
2755
  ]
2756
+ },
2757
+ "sap.cards.ap": {
2758
+ "title": "JSON schema for sap.cards.ap namespace",
2759
+ "description": "Represents generated cards saved to the application repository",
2760
+ "type": "object",
2761
+ "properties": {
2762
+ "_version": {
2763
+ "description": "Represents attributes format version.",
2764
+ "type": "string",
2765
+ "enum": [
2766
+ "1.0.0"
2767
+ ]
2768
+ },
2769
+ "embeds": {
2770
+ "type": "object",
2771
+ "description": "Represents an object with reference to the generated cards",
2772
+ "properties": {
2773
+ "ObjectPage": {
2774
+ "$ref": "#/definitions/embedsSettings"
2775
+ }
2776
+ }
2777
+ }
2778
+ }
2707
2779
  }
2708
2780
  },
2709
2781
  "definitions": {
2782
+ "manifestSettings": {
2783
+ "description": "Represents the manifest settings",
2784
+ "type": "object",
2785
+ "properties": {
2786
+ "localUri": {
2787
+ "type": "string",
2788
+ "description": "Represents the local uri of the generated card"
2789
+ }
2790
+ }
2791
+ },
2792
+ "embedsSettings": {
2793
+ "description": "Represents the embeds settings",
2794
+ "type": "object",
2795
+ "properties": {
2796
+ "default": {
2797
+ "type": "string",
2798
+ "description": "Represents the detault card",
2799
+ "pattern": "^[a-zA-Z0-9_]+$"
2800
+ },
2801
+ "manifests": {
2802
+ "type": "object",
2803
+ "desciption": "Represents the manifests of the generated cards",
2804
+ "patternProperties": {
2805
+ "^[a-zA-Z0-9_]+$": {
2806
+ "type": "array",
2807
+ "items": {
2808
+ "$ref": "#/definitions/manifestSettings"
2809
+ }
2810
+ }
2811
+ }
2812
+ }
2813
+ }
2814
+ },
2710
2815
  "tag_0": {
2711
2816
  "type": "array",
2712
2817
  "items": {
@@ -2803,6 +2908,19 @@
2803
2908
  }
2804
2909
  }
2805
2910
  },
2911
+ "actionsStripItemBindingInfo": {
2912
+ "type": "object",
2913
+ "description": "[Experimental] Binding info for items of type actionsStripItem",
2914
+ "additionalProperties": false,
2915
+ "properties": {
2916
+ "template": {
2917
+ "$ref": "#/definitions/actionsStripItem"
2918
+ },
2919
+ "path": {
2920
+ "type": "string"
2921
+ }
2922
+ }
2923
+ },
2806
2924
  "Microchart.StackedBar.Bar": {
2807
2925
  "type": "object",
2808
2926
  "additionalProperties": false,
@@ -2998,6 +3116,25 @@
2998
3116
  }
2999
3117
  }
3000
3118
  },
3119
+ "Configuration.Filter.ComboBoxItem": {
3120
+ "description": "A single Combo Box filter selection option",
3121
+ "type": "object",
3122
+ "additionalProperties": false,
3123
+ "properties": {
3124
+ "title": {
3125
+ "description": "The title of the filter option",
3126
+ "type": "string"
3127
+ },
3128
+ "key": {
3129
+ "description": "The unique key of the filter option. Mapped to the filter's value",
3130
+ "type": "string"
3131
+ },
3132
+ "additionalText": {
3133
+ "description": "The secondary value for the combo box item.",
3134
+ "type": "string"
3135
+ }
3136
+ }
3137
+ },
3001
3138
  "Configuration.Filter.Item": {
3002
3139
  "description": "A single filter selection option",
3003
3140
  "type": "object",
@@ -4183,7 +4320,7 @@
4183
4320
  "type": "string"
4184
4321
  },
4185
4322
  "selectedKey": {
4186
- "description": "Defines the initially selected key from the given options for ComboBox.",
4323
+ "description": "Defines the initially selected key from the given options for combo box.",
4187
4324
  "type": "string"
4188
4325
  },
4189
4326
  "placeholder": {
@@ -4196,7 +4333,7 @@
4196
4333
  },
4197
4334
  "item": {
4198
4335
  "type": "object",
4199
- "description": "Binding info for ComboBox items",
4336
+ "description": "Binding info for combo box items",
4200
4337
  "required": [
4201
4338
  "template"
4202
4339
  ],
@@ -4265,6 +4402,52 @@
4265
4402
  "$ref": "#/definitions/simpleBinding"
4266
4403
  }
4267
4404
  ]
4405
+ },
4406
+ "height": {
4407
+ "description": "The height of the image",
4408
+ "type": "string"
4409
+ },
4410
+ "imageFit": {
4411
+ "description": "This property is for adjusting the image size using the CSS style <code>background-size</code>.",
4412
+ "type": "string"
4413
+ },
4414
+ "imagePosition": {
4415
+ "description": "This property is for adjusting the image position using the CSS style <code>background-position</code>.",
4416
+ "type": "string"
4417
+ },
4418
+ "overlay": {
4419
+ "description": "Overlay on the Image",
4420
+ "type": "object",
4421
+ "properties": {
4422
+ "supertitle": {
4423
+ "description": "The text before the title",
4424
+ "type": "string"
4425
+ },
4426
+ "title": {
4427
+ "description": "The title",
4428
+ "type": "string"
4429
+ },
4430
+ "subTitle": {
4431
+ "description": "The subTitle",
4432
+ "type": "string"
4433
+ },
4434
+ "verticalPosition": {
4435
+ "description": "The vertical alignment of the texts",
4436
+ "type": "string"
4437
+ },
4438
+ "horizontalPosition": {
4439
+ "description": "The horizontal alignment of the texts",
4440
+ "type": "string"
4441
+ },
4442
+ "textColor": {
4443
+ "description": "The color of the texts",
4444
+ "type": "string"
4445
+ },
4446
+ "background": {
4447
+ "description": "The background behind the texts and over the image",
4448
+ "type": "string"
4449
+ }
4450
+ }
4268
4451
  }
4269
4452
  }
4270
4453
  },
@@ -4815,11 +4998,18 @@
4815
4998
  "$ref": "#/definitions/Microchart"
4816
4999
  },
4817
5000
  "actionsStrip": {
4818
- "description": "[Experimental] Describes actions strip",
4819
- "type": "array",
4820
- "items": {
4821
- "$ref": "#/definitions/actionsStripItem"
4822
- }
5001
+ "description": "Describes actions strip",
5002
+ "oneOf": [
5003
+ {
5004
+ "type": "array",
5005
+ "items": {
5006
+ "$ref": "#/definitions/actionsStripItem"
5007
+ }
5008
+ },
5009
+ {
5010
+ "$ref": "#/definitions/actionsStrip"
5011
+ }
5012
+ ]
4823
5013
  }
4824
5014
  }
4825
5015
  },
@@ -5850,8 +6040,17 @@
5850
6040
  }
5851
6041
  ]
5852
6042
  },
6043
+ "actionsStrip": {
6044
+ "type": "object",
6045
+ "additionalProperties": false,
6046
+ "properties": {
6047
+ "item": {
6048
+ "$ref": "#/definitions/actionsStripItemBindingInfo"
6049
+ }
6050
+ }
6051
+ },
5853
6052
  "actionsStripItem": {
5854
- "description": "[Experimental] Attributes of actions strip item",
6053
+ "description": "Attributes of actions strip item",
5855
6054
  "type": "object",
5856
6055
  "additionalProperties": false,
5857
6056
  "properties": {
@@ -5869,7 +6068,8 @@
5869
6068
  "enum": [
5870
6069
  "Button",
5871
6070
  "ToolbarSpacer",
5872
- "Link"
6071
+ "Link",
6072
+ "Label"
5873
6073
  ],
5874
6074
  "default": "Button"
5875
6075
  },
@@ -6092,8 +6292,8 @@
6092
6292
  }
6093
6293
  }
6094
6294
  },
6095
- "Configuration.FilterType.Search": {
6096
- "description": "Search filter",
6295
+ "Configuration.FilterType.ComboBox": {
6296
+ "description": "[Experimental] ComboBox filter",
6097
6297
  "type": "object",
6098
6298
  "additionalProperties": false,
6099
6299
  "properties": {
@@ -6101,13 +6301,20 @@
6101
6301
  "description": "The type of the filter",
6102
6302
  "oneOf": [
6103
6303
  {
6104
- "const": "Search"
6304
+ "const": "ComboBox"
6105
6305
  },
6106
6306
  {
6107
6307
  "$ref": "#/definitions/simpleBinding"
6108
6308
  }
6109
6309
  ]
6110
6310
  },
6311
+ "value": {
6312
+ "description": "The value of the filter"
6313
+ },
6314
+ "selectedKey": {
6315
+ "description": "Defines the initially selected key from the given options for combo box.",
6316
+ "type": "string"
6317
+ },
6111
6318
  "data": {
6112
6319
  "$ref": "#/definitions/data"
6113
6320
  },
@@ -6115,6 +6322,60 @@
6115
6322
  "description": "Label for the filter. Used by screen readers",
6116
6323
  "type": "string"
6117
6324
  },
6325
+ "placeholder": {
6326
+ "description": "The placeholder of the filter",
6327
+ "type": "string"
6328
+ },
6329
+ "items": {
6330
+ "type": "array",
6331
+ "items": {
6332
+ "$ref": "#/definitions/Configuration.Filter.ComboBoxItem"
6333
+ }
6334
+ },
6335
+ "item": {
6336
+ "type": "object",
6337
+ "additionalProperties": false,
6338
+ "required": [
6339
+ "template"
6340
+ ],
6341
+ "properties": {
6342
+ "template": {
6343
+ "$ref": "#/definitions/Configuration.Filter.ComboBoxItem"
6344
+ },
6345
+ "path": {
6346
+ "description": "Defines the path to the structure holding the data about the items",
6347
+ "type": "string",
6348
+ "default": "/",
6349
+ "pattern": "^[a-zA-Z0-9_\\.\\-/|@#]*$"
6350
+ }
6351
+ }
6352
+ },
6353
+ "visible": {
6354
+ "description": "Determines whether the filter is visible",
6355
+ "$ref": "#/definitions/visibility"
6356
+ }
6357
+ }
6358
+ },
6359
+ "Configuration.FilterType.Search": {
6360
+ "description": "Search filter",
6361
+ "type": "object",
6362
+ "additionalProperties": false,
6363
+ "properties": {
6364
+ "type": {
6365
+ "description": "The type of the filter",
6366
+ "oneOf": [
6367
+ {
6368
+ "const": "Search"
6369
+ },
6370
+ {
6371
+ "$ref": "#/definitions/simpleBinding"
6372
+ }
6373
+ ]
6374
+ },
6375
+ "label": {
6376
+ "description": "Label for the filter. Used by screen readers",
6377
+ "type": "string"
6378
+ },
6118
6379
  "value": {
6119
6380
  "description": "The value of the filter",
6120
6381
  "type": "string"
@@ -6145,9 +6406,6 @@
6145
6406
  }
6146
6407
  ]
6147
6408
  },
6148
- "data": {
6149
- "$ref": "#/definitions/data"
6150
- },
6151
6409
  "label": {
6152
6410
  "description": "Label for the filter. Used by screen readers",
6153
6411
  "type": "string"
package/schema_cil.json CHANGED
@@ -915,7 +915,8 @@
915
915
  "1.7.0",
916
916
  "1.8.0",
917
917
  "1.9.0",
918
- "1.10.0"
918
+ "1.10.0",
919
+ "1.11.0"
919
920
  ]
920
921
  },
921
922
  "globalFilterModel": {
@@ -928,6 +929,15 @@
928
929
  "type": "string",
929
930
  "pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
930
931
  },
932
+ "globalFilterControlType": {
933
+ "description": "Represents the control to be used for the filter bar",
934
+ "type": "string",
935
+ "default": "SmartFilterBar",
936
+ "enum": [
937
+ "MacroFilterBar",
938
+ "SmartFilterBar"
939
+ ]
940
+ },
931
941
  "globalFilterEntitySet": {
932
942
  "description": "Represents the entity set to use as global filter in the smart filter bar control",
933
943
  "type": "string",
@@ -702,7 +702,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
702
702
  | "1.56.0"
703
703
  | "1.57.0"
704
704
  | "1.58.0"
705
- | "1.59.0";
705
+ | "1.59.0"
706
+ | "1.60.0"
707
+ | "1.61.0";
706
708
  /**
707
709
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
708
710
  */
@@ -737,6 +739,7 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
737
739
  "sap.package"?: JSONSchemaForSAPPACKAGENamespace;
738
740
  "sap.artifact"?: JSONSchemaForSAPARTIFACTNamespace;
739
741
  "sap.bpa.task"?: JSONSchemaForSapBpaTaskNamespace;
742
+ "sap.cards.ap"?: JSONSchemaForSapCardsApNamespace;
740
743
  }
741
744
  /**
742
745
  * Represents general application attributes
@@ -765,7 +768,8 @@ export interface JSONSchemaForSAPAPPNamespace {
765
768
  | "1.17.0"
766
769
  | "1.18.0"
767
770
  | "1.19.0"
768
- | "1.20.0";
771
+ | "1.20.0"
772
+ | "1.21.0";
769
773
  /**
770
774
  * Represents the template from which the app was generated
771
775
  */
@@ -789,7 +793,7 @@ export interface JSONSchemaForSAPAPPNamespace {
789
793
  */
790
794
  id: string;
791
795
  /**
792
- * Represents type of an application and can be application or component or library
796
+ * Represents type of an application and can be application or component or library or card
793
797
  */
794
798
  type: "application" | "component" | "library" | "card";
795
799
  /**
@@ -2489,7 +2493,18 @@ export interface JSONSchemaForSAPOVPNamespace {
2489
2493
  /**
2490
2494
  * Represents attributes format version. It is managed by namespace owner
2491
2495
  */
2492
- _version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0" | "1.5.0" | "1.6.0" | "1.7.0" | "1.8.0" | "1.9.0" | "1.10.0";
2496
+ _version?:
2497
+ | "1.1.0"
2498
+ | "1.2.0"
2499
+ | "1.3.0"
2500
+ | "1.4.0"
2501
+ | "1.5.0"
2502
+ | "1.6.0"
2503
+ | "1.7.0"
2504
+ | "1.8.0"
2505
+ | "1.9.0"
2506
+ | "1.10.0"
2507
+ | "1.11.0";
2493
2508
  /**
2494
2509
  * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2495
2510
  */
@@ -2498,6 +2513,10 @@ export interface JSONSchemaForSAPOVPNamespace {
2498
2513
  * Represents the entity to use as global filter in the smart filter bar control
2499
2514
  */
2500
2515
  globalFilterEntityType?: string;
2516
+ /**
2517
+ * Represents the control to be used for the filter bar
2518
+ */
2519
+ globalFilterControlType?: "MacroFilterBar" | "SmartFilterBar";
2501
2520
  /**
2502
2521
  * Represents the entity set to use as global filter in the smart filter bar control
2503
2522
  */
@@ -3586,3 +3605,47 @@ export interface JSONSchemaForSAPARTIFACTNamespace {
3586
3605
  };
3587
3606
  [k: string]: unknown;
3588
3607
  }
3608
+ /**
3609
+ * Represents generated cards saved to the application repository
3610
+ */
3611
+ export interface JSONSchemaForSapCardsApNamespace {
3612
+ /**
3613
+ * Represents attributes format version.
3614
+ */
3615
+ _version?: "1.0.0";
3616
+ /**
3617
+ * Represents an object with reference to the generated cards
3618
+ */
3619
+ embeds?: {
3620
+ ObjectPage?: EmbedsSettings;
3621
+ [k: string]: unknown;
3622
+ };
3623
+ [k: string]: unknown;
3624
+ }
3625
+ /**
3626
+ * Represents the embeds settings
3627
+ */
3628
+ export interface EmbedsSettings {
3629
+ /**
3630
+ * Represents the detault card
3631
+ */
3632
+ default?: string;
3633
+ manifests?: {
3634
+ /**
3635
+ * This interface was referenced by `undefined`'s JSON-Schema definition
3636
+ * via the `patternProperty` "^[a-zA-Z0-9_]+$".
3637
+ */
3638
+ [k: string]: ManifestSettings[];
3639
+ };
3640
+ [k: string]: unknown;
3641
+ }
3642
+ /**
3643
+ * Represents the manifest settings
3644
+ */
3645
+ export interface ManifestSettings {
3646
+ /**
3647
+ * Represents the local uri of the generated card
3648
+ */
3649
+ localUri?: string;
3650
+ [k: string]: unknown;
3651
+ }