@ui5/manifest 1.53.1 → 1.54.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 +5 -1
- package/mapping.json +1 -1
- package/package.json +1 -1
- package/schema.json +57 -43
- package/schema_cil.json +19 -10
- package/types/manifest.d.ts +8 -6
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.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.54.0...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.54.0"></a>
|
|
8
|
+
## [v1.54.0] - 2023-05-05
|
|
6
9
|
|
|
7
10
|
<a name="v1.53.1"></a>
|
|
8
11
|
## [v1.53.1] - 2023-04-05
|
|
@@ -31,6 +34,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
31
34
|
<a name="v1.48.1"></a>
|
|
32
35
|
## v1.48.1 - 2022-11-10
|
|
33
36
|
|
|
37
|
+
[v1.54.0]: https://github.com/SAP/ui5-manifest/compare/v1.53.1...v1.54.0
|
|
34
38
|
[v1.53.1]: https://github.com/SAP/ui5-manifest/compare/v1.53.0...v1.53.1
|
|
35
39
|
[v1.53.0]: https://github.com/SAP/ui5-manifest/compare/v1.52.1...v1.53.0
|
|
36
40
|
[v1.52.1]: https://github.com/SAP/ui5-manifest/compare/v1.52.0...v1.52.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -70,7 +70,8 @@
|
|
|
70
70
|
"1.50.0",
|
|
71
71
|
"1.51.0",
|
|
72
72
|
"1.52.0",
|
|
73
|
-
"1.53.0"
|
|
73
|
+
"1.53.0",
|
|
74
|
+
"1.54.0"
|
|
74
75
|
]
|
|
75
76
|
},
|
|
76
77
|
"start_url": {
|
|
@@ -111,7 +112,8 @@
|
|
|
111
112
|
"1.16.0",
|
|
112
113
|
"1.17.0",
|
|
113
114
|
"1.18.0",
|
|
114
|
-
"1.19.0"
|
|
115
|
+
"1.19.0",
|
|
116
|
+
"1.20.0"
|
|
115
117
|
]
|
|
116
118
|
},
|
|
117
119
|
"sourceTemplate": {
|
|
@@ -272,23 +274,23 @@
|
|
|
272
274
|
},
|
|
273
275
|
"title": {
|
|
274
276
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
275
|
-
"
|
|
277
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
276
278
|
},
|
|
277
279
|
"subTitle": {
|
|
278
280
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
279
|
-
"
|
|
281
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
280
282
|
},
|
|
281
283
|
"shortTitle": {
|
|
282
284
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
283
|
-
"
|
|
285
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
284
286
|
},
|
|
285
287
|
"info": {
|
|
286
288
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
287
|
-
"
|
|
289
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
288
290
|
},
|
|
289
291
|
"description": {
|
|
290
292
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
291
|
-
"
|
|
293
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
292
294
|
},
|
|
293
295
|
"tags": {
|
|
294
296
|
"description": "Represents array of keywords",
|
|
@@ -410,10 +412,6 @@
|
|
|
410
412
|
}
|
|
411
413
|
},
|
|
412
414
|
"definitions": {
|
|
413
|
-
"i18n_key": {
|
|
414
|
-
"type": "string",
|
|
415
|
-
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
416
|
-
},
|
|
417
415
|
"parameter": {
|
|
418
416
|
"type": "object",
|
|
419
417
|
"properties": {
|
|
@@ -1937,7 +1935,8 @@
|
|
|
1937
1935
|
"1.35.0",
|
|
1938
1936
|
"1.36.0",
|
|
1939
1937
|
"1.37.0",
|
|
1940
|
-
"1.38.0"
|
|
1938
|
+
"1.38.0",
|
|
1939
|
+
"1.39.0"
|
|
1941
1940
|
]
|
|
1942
1941
|
},
|
|
1943
1942
|
"designtime": {
|
|
@@ -2281,13 +2280,7 @@
|
|
|
2281
2280
|
}
|
|
2282
2281
|
}
|
|
2283
2282
|
}
|
|
2284
|
-
]
|
|
2285
|
-
"definitions": {
|
|
2286
|
-
"i18n_key": {
|
|
2287
|
-
"type": "string",
|
|
2288
|
-
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
2289
|
-
}
|
|
2290
|
-
}
|
|
2283
|
+
]
|
|
2291
2284
|
},
|
|
2292
2285
|
"sap.package": {
|
|
2293
2286
|
"title": "JSON schema for SAP.PACKAGE Namespace",
|
|
@@ -2308,7 +2301,8 @@
|
|
|
2308
2301
|
"type": "string",
|
|
2309
2302
|
"enum": [
|
|
2310
2303
|
"1.0.0",
|
|
2311
|
-
"1.1.0"
|
|
2304
|
+
"1.1.0",
|
|
2305
|
+
"1.2.0"
|
|
2312
2306
|
]
|
|
2313
2307
|
},
|
|
2314
2308
|
"id": {
|
|
@@ -2360,23 +2354,23 @@
|
|
|
2360
2354
|
},
|
|
2361
2355
|
"title": {
|
|
2362
2356
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2363
|
-
"
|
|
2357
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2364
2358
|
},
|
|
2365
2359
|
"subTitle": {
|
|
2366
2360
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2367
|
-
"
|
|
2361
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2368
2362
|
},
|
|
2369
2363
|
"shortTitle": {
|
|
2370
2364
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2371
|
-
"
|
|
2365
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2372
2366
|
},
|
|
2373
2367
|
"info": {
|
|
2374
2368
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2375
|
-
"
|
|
2369
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2376
2370
|
},
|
|
2377
2371
|
"description": {
|
|
2378
2372
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2379
|
-
"
|
|
2373
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2380
2374
|
},
|
|
2381
2375
|
"icon": {
|
|
2382
2376
|
"description": "Represents icon name or source URL for the package",
|
|
@@ -2473,7 +2467,8 @@
|
|
|
2473
2467
|
"type": "string",
|
|
2474
2468
|
"enum": [
|
|
2475
2469
|
"1.0.0",
|
|
2476
|
-
"1.1.0"
|
|
2470
|
+
"1.1.0",
|
|
2471
|
+
"1.2.0"
|
|
2477
2472
|
]
|
|
2478
2473
|
},
|
|
2479
2474
|
"id": {
|
|
@@ -2513,23 +2508,23 @@
|
|
|
2513
2508
|
},
|
|
2514
2509
|
"title": {
|
|
2515
2510
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2516
|
-
"
|
|
2511
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2517
2512
|
},
|
|
2518
2513
|
"subTitle": {
|
|
2519
2514
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2520
|
-
"
|
|
2515
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2521
2516
|
},
|
|
2522
2517
|
"shortTitle": {
|
|
2523
2518
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2524
|
-
"
|
|
2519
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2525
2520
|
},
|
|
2526
2521
|
"info": {
|
|
2527
2522
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2528
|
-
"
|
|
2523
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2529
2524
|
},
|
|
2530
2525
|
"description": {
|
|
2531
2526
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2532
|
-
"
|
|
2527
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2533
2528
|
},
|
|
2534
2529
|
"icon": {
|
|
2535
2530
|
"description": "Represents icon name or source URL for the artifact",
|
|
@@ -2563,9 +2558,20 @@
|
|
|
2563
2558
|
"type": "array",
|
|
2564
2559
|
"items": {
|
|
2565
2560
|
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2566
|
-
"
|
|
2561
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2567
2562
|
}
|
|
2568
2563
|
},
|
|
2564
|
+
"i18n_key_string": {
|
|
2565
|
+
"anyOf": [
|
|
2566
|
+
{
|
|
2567
|
+
"type": "string",
|
|
2568
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
"type": "string"
|
|
2572
|
+
}
|
|
2573
|
+
]
|
|
2574
|
+
},
|
|
2569
2575
|
"semanticversion": {
|
|
2570
2576
|
"description": "The version number of the schema in major.minor.patch format.",
|
|
2571
2577
|
"type": "string",
|
|
@@ -2643,6 +2649,13 @@
|
|
|
2643
2649
|
}
|
|
2644
2650
|
}
|
|
2645
2651
|
},
|
|
2652
|
+
"tag_0": {
|
|
2653
|
+
"type": "array",
|
|
2654
|
+
"items": {
|
|
2655
|
+
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2656
|
+
"type": "string"
|
|
2657
|
+
}
|
|
2658
|
+
},
|
|
2646
2659
|
"Microchart.StackedBar.Bar": {
|
|
2647
2660
|
"type": "object",
|
|
2648
2661
|
"additionalProperties": false,
|
|
@@ -3396,7 +3409,7 @@
|
|
|
3396
3409
|
"properties": {
|
|
3397
3410
|
"title": {
|
|
3398
3411
|
"description": "Represents a title of the column; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
3399
|
-
"
|
|
3412
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
3400
3413
|
},
|
|
3401
3414
|
"width": {
|
|
3402
3415
|
"description": "Defines the width of the column",
|
|
@@ -3742,6 +3755,7 @@
|
|
|
3742
3755
|
"ComboBox",
|
|
3743
3756
|
"TextArea",
|
|
3744
3757
|
"Input",
|
|
3758
|
+
"Duration",
|
|
3745
3759
|
"RatingIndicator",
|
|
3746
3760
|
"phone",
|
|
3747
3761
|
"email",
|
|
@@ -3972,7 +3986,7 @@
|
|
|
3972
3986
|
"properties": {
|
|
3973
3987
|
"title": {
|
|
3974
3988
|
"description": "Represents a title of the object group; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
3975
|
-
"
|
|
3989
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
3976
3990
|
},
|
|
3977
3991
|
"titleMaxLines": {
|
|
3978
3992
|
"description": "[Experimental] Limits the number of lines for wrapping the group title.",
|
|
@@ -4390,7 +4404,7 @@
|
|
|
4390
4404
|
"properties": {
|
|
4391
4405
|
"label": {
|
|
4392
4406
|
"description": "Represents a label of the field; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4393
|
-
"
|
|
4407
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4394
4408
|
},
|
|
4395
4409
|
"value": {
|
|
4396
4410
|
"type": "string",
|
|
@@ -4786,7 +4800,7 @@
|
|
|
4786
4800
|
},
|
|
4787
4801
|
"title": {
|
|
4788
4802
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4789
|
-
"
|
|
4803
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4790
4804
|
},
|
|
4791
4805
|
"titleMaxLines": {
|
|
4792
4806
|
"description": "[Experimental] Limit the number of lines for the title.",
|
|
@@ -4802,7 +4816,7 @@
|
|
|
4802
4816
|
},
|
|
4803
4817
|
"subTitle": {
|
|
4804
4818
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4805
|
-
"
|
|
4819
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4806
4820
|
},
|
|
4807
4821
|
"subTitleMaxLines": {
|
|
4808
4822
|
"description": "[Experimental] Limit the number of lines for the sub title.",
|
|
@@ -4905,7 +4919,7 @@
|
|
|
4905
4919
|
},
|
|
4906
4920
|
"title": {
|
|
4907
4921
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4908
|
-
"
|
|
4922
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4909
4923
|
},
|
|
4910
4924
|
"titleMaxLines": {
|
|
4911
4925
|
"description": "[Experimental] Limit the number of lines for the title.",
|
|
@@ -4921,7 +4935,7 @@
|
|
|
4921
4935
|
},
|
|
4922
4936
|
"subTitle": {
|
|
4923
4937
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4924
|
-
"
|
|
4938
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4925
4939
|
},
|
|
4926
4940
|
"subTitleMaxLines": {
|
|
4927
4941
|
"description": "[Experimental] Limit the number of lines for the sub title.",
|
|
@@ -8243,19 +8257,19 @@
|
|
|
8243
8257
|
},
|
|
8244
8258
|
"title": {
|
|
8245
8259
|
"description": "Represents a title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8246
|
-
"
|
|
8260
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8247
8261
|
},
|
|
8248
8262
|
"subTitle": {
|
|
8249
8263
|
"description": "Represents a subtitle; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8250
|
-
"
|
|
8264
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8251
8265
|
},
|
|
8252
8266
|
"shortTitle": {
|
|
8253
8267
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8254
|
-
"
|
|
8268
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8255
8269
|
},
|
|
8256
8270
|
"info": {
|
|
8257
8271
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8258
|
-
"
|
|
8272
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8259
8273
|
},
|
|
8260
8274
|
"displayMode": {
|
|
8261
8275
|
"description": "Represents the display mode of the tile",
|
package/schema_cil.json
CHANGED
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"1.22.0",
|
|
43
43
|
"1.23.0",
|
|
44
44
|
"1.24.0",
|
|
45
|
-
"1.25.0"
|
|
45
|
+
"1.25.0",
|
|
46
|
+
"1.26.0"
|
|
46
47
|
]
|
|
47
48
|
},
|
|
48
49
|
"start_url": {
|
|
@@ -75,7 +76,8 @@
|
|
|
75
76
|
"1.8.0",
|
|
76
77
|
"1.9.0",
|
|
77
78
|
"1.10.0",
|
|
78
|
-
"1.11.0"
|
|
79
|
+
"1.11.0",
|
|
80
|
+
"1.12.0"
|
|
79
81
|
]
|
|
80
82
|
},
|
|
81
83
|
"sourceTemplate": {
|
|
@@ -216,19 +218,19 @@
|
|
|
216
218
|
},
|
|
217
219
|
"title": {
|
|
218
220
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
219
|
-
"
|
|
221
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
220
222
|
},
|
|
221
223
|
"subTitle": {
|
|
222
224
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
223
|
-
"
|
|
225
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
224
226
|
},
|
|
225
227
|
"shortTitle": {
|
|
226
228
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
227
|
-
"
|
|
229
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
228
230
|
},
|
|
229
231
|
"description": {
|
|
230
232
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
231
|
-
"
|
|
233
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
232
234
|
},
|
|
233
235
|
"ach": {
|
|
234
236
|
"description": "Represents application component hierarchy",
|
|
@@ -276,10 +278,6 @@
|
|
|
276
278
|
"version": {
|
|
277
279
|
"type": "string"
|
|
278
280
|
},
|
|
279
|
-
"i18n_key": {
|
|
280
|
-
"type": "string",
|
|
281
|
-
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
282
|
-
},
|
|
283
281
|
"objectName": {
|
|
284
282
|
"type": "string",
|
|
285
283
|
"pattern": "^(\\\\[0-9a-zA-Z_]+\\\\)?[a-zA-Z][a-zA-Z0-9_]*$",
|
|
@@ -3423,6 +3421,17 @@
|
|
|
3423
3421
|
}
|
|
3424
3422
|
}
|
|
3425
3423
|
},
|
|
3424
|
+
"i18n_key_string": {
|
|
3425
|
+
"anyOf": [
|
|
3426
|
+
{
|
|
3427
|
+
"type": "string",
|
|
3428
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
3429
|
+
},
|
|
3430
|
+
{
|
|
3431
|
+
"type": "string"
|
|
3432
|
+
}
|
|
3433
|
+
]
|
|
3434
|
+
},
|
|
3426
3435
|
"enhanceWithSetting": {
|
|
3427
3436
|
"oneOf": [
|
|
3428
3437
|
{
|
package/types/manifest.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
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,
|
|
@@ -143,7 +143,7 @@ export type EnhanceWithSetting1 =
|
|
|
143
143
|
};
|
|
144
144
|
};
|
|
145
145
|
export type Version = string;
|
|
146
|
-
export type Tag = string[];
|
|
146
|
+
export type Tag = (string | string)[];
|
|
147
147
|
/**
|
|
148
148
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
149
149
|
* via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
|
|
@@ -690,7 +690,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
690
690
|
| "1.50.0"
|
|
691
691
|
| "1.51.0"
|
|
692
692
|
| "1.52.0"
|
|
693
|
-
| "1.53.0"
|
|
693
|
+
| "1.53.0"
|
|
694
|
+
| "1.54.0";
|
|
694
695
|
/**
|
|
695
696
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
696
697
|
*/
|
|
@@ -751,7 +752,8 @@ export interface JSONSchemaForSAPAPPNamespace {
|
|
|
751
752
|
| "1.16.0"
|
|
752
753
|
| "1.17.0"
|
|
753
754
|
| "1.18.0"
|
|
754
|
-
| "1.19.0"
|
|
755
|
+
| "1.19.0"
|
|
756
|
+
| "1.20.0";
|
|
755
757
|
/**
|
|
756
758
|
* Represents the template from which the app was generated
|
|
757
759
|
*/
|
|
@@ -3333,7 +3335,7 @@ export interface JSONSchemaForSAPPACKAGENamespace {
|
|
|
3333
3335
|
/**
|
|
3334
3336
|
* Represents SAP.PACKAGE attributes format version. It is managed by namespace owner
|
|
3335
3337
|
*/
|
|
3336
|
-
_version?: "1.0.0" | "1.1.0";
|
|
3338
|
+
_version?: "1.0.0" | "1.1.0" | "1.2.0";
|
|
3337
3339
|
/**
|
|
3338
3340
|
* Represents mandatory unique package identifier
|
|
3339
3341
|
*/
|
|
@@ -3510,7 +3512,7 @@ export interface JSONSchemaForSAPARTIFACTNamespace {
|
|
|
3510
3512
|
/**
|
|
3511
3513
|
* Represents SAP.ARTIFACT attributes format version. It is managed by namespace owner
|
|
3512
3514
|
*/
|
|
3513
|
-
_version?: "1.0.0" | "1.1.0";
|
|
3515
|
+
_version?: "1.0.0" | "1.1.0" | "1.2.0";
|
|
3514
3516
|
/**
|
|
3515
3517
|
* Represents mandatory unique artifact identifier
|
|
3516
3518
|
*/
|