@ui5/manifest 1.4.0 → 1.28.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.
@@ -5,9 +5,380 @@
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
+ /**
9
+ * This interface was referenced by `undefined`'s JSON-Schema definition
10
+ * via the `patternProperty` "^[a-zA-Z0-9_\-]*$".
11
+ *
12
+ * This interface was referenced by `undefined`'s JSON-Schema definition
13
+ * via the `patternProperty` "^[a-zA-Z0-9_\-]*$".
14
+ *
15
+ * This interface was referenced by `undefined`'s JSON-Schema definition
16
+ * via the `patternProperty` "^[a-zA-Z0-9_\-]*$".
17
+ *
18
+ * This interface was referenced by `undefined`'s JSON-Schema definition
19
+ * via the `patternProperty` "^[a-zA-Z0-9_\-]*$".
20
+ *
21
+ * This interface was referenced by `undefined`'s JSON-Schema definition
22
+ * via the `patternProperty` "^[a-zA-Z0-9_\-]*$".
23
+ */
24
+ export type TerminologySetting =
25
+ | {
26
+ /**
27
+ * Represents the alternative for bundleUrl
28
+ */
29
+ bundleName: string;
30
+ /**
31
+ * Represents the list of supported locales
32
+ */
33
+ supportedLocales?: unknown[];
34
+ }
35
+ | {
36
+ /**
37
+ * Represents the URL for the resource bundle
38
+ */
39
+ bundleUrl: string;
40
+ /**
41
+ * Indicates whether url is relative to component (default) or manifest
42
+ */
43
+ bundleUrlRelativeTo?: "manifest" | "component";
44
+ /**
45
+ * Represents the list of supported locales
46
+ */
47
+ supportedLocales?: unknown[];
48
+ };
49
+ export type EnhanceWithSetting =
50
+ | {
51
+ /**
52
+ * Represents property url for model enhancement
53
+ */
54
+ bundleUrl: string;
55
+ /**
56
+ * Indicates whether url is relative to component (default) or manifest
57
+ */
58
+ bundleUrlRelativeTo?: "manifest" | "component";
59
+ /**
60
+ * Represents the fallback locale
61
+ */
62
+ fallbackLocale?: string;
63
+ /**
64
+ * Represents the list of supported locales
65
+ */
66
+ supportedLocales?: unknown[];
67
+ /**
68
+ * Represents terminologies with additional properties files
69
+ */
70
+ terminologies?: {
71
+ [k: string]: TerminologySetting;
72
+ };
73
+ }
74
+ | {
75
+ /**
76
+ * Represents the alternative for bundleUrl
77
+ */
78
+ bundleName: string;
79
+ /**
80
+ * Represents the fallback locale
81
+ */
82
+ fallbackLocale?: string;
83
+ /**
84
+ * Represents the list of supported locales
85
+ */
86
+ supportedLocales?: unknown[];
87
+ /**
88
+ * Represents terminologies with additional properties files
89
+ */
90
+ terminologies?: {
91
+ [k: string]: TerminologySetting;
92
+ };
93
+ };
94
+ export type EnhanceWithSetting1 =
95
+ | {
96
+ /**
97
+ * Represents property url for model enhancement
98
+ */
99
+ bundleUrl: string;
100
+ /**
101
+ * Indicates whether url is relative to component (default) or manifest
102
+ */
103
+ bundleUrlRelativeTo?: "manifest" | "component";
104
+ /**
105
+ * Represents the fallback locale
106
+ */
107
+ fallbackLocale?: string;
108
+ /**
109
+ * Represents the list of supported locales
110
+ */
111
+ supportedLocales?: unknown[];
112
+ /**
113
+ * Represents terminologies with additional properties files
114
+ */
115
+ terminologies?: {
116
+ [k: string]: TerminologySetting;
117
+ };
118
+ }
119
+ | {
120
+ /**
121
+ * Represents the alternative for bundleUrl
122
+ */
123
+ bundleName: string;
124
+ /**
125
+ * Represents the fallback locale
126
+ */
127
+ fallbackLocale?: string;
128
+ /**
129
+ * Represents the list of supported locales
130
+ */
131
+ supportedLocales?: unknown[];
132
+ /**
133
+ * Represents terminologies with additional properties files
134
+ */
135
+ terminologies?: {
136
+ [k: string]: TerminologySetting;
137
+ };
138
+ };
8
139
  export type Version = string;
9
- export type I18NKey = string;
10
- export type Tag = I18NKey[];
140
+ export type Tag = string[];
141
+ /**
142
+ * This interface was referenced by `undefined`'s JSON-Schema definition
143
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
144
+ */
145
+ export type DataSource = DataSourceEnum | DataSourceCustom;
146
+ /**
147
+ * Represents sapui5 attributes
148
+ */
149
+ export type JSONSchemaForSAPUI5Namespace = {
150
+ /**
151
+ * Represents SAPUI5 attributes format version. It is managed by namespace owner
152
+ */
153
+ _version?:
154
+ | "1.1.0"
155
+ | "1.2.0"
156
+ | "1.3.0"
157
+ | "1.4.0"
158
+ | "1.5.0"
159
+ | "1.6.0"
160
+ | "1.7.0"
161
+ | "1.8.0"
162
+ | "1.9.0"
163
+ | "1.10.0"
164
+ | "1.11.0"
165
+ | "1.12.0";
166
+ resources?: Resource;
167
+ /**
168
+ * Represents the explicit usage declaration for UI5 reuse components
169
+ */
170
+ componentUsages?: {
171
+ [k: string]: ComponentUsages;
172
+ };
173
+ /**
174
+ * Represents external dependences such as libraries or components, that will be loaded by UI5 Core in the initialization phase of your Component and can be used after it
175
+ */
176
+ dependencies: {
177
+ /**
178
+ * Represents the minimum version of SAP UI5 that your component requires
179
+ */
180
+ minUI5Version: string;
181
+ /**
182
+ * Represents ...
183
+ */
184
+ incompatibleLimitation?: boolean;
185
+ /**
186
+ * Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component
187
+ */
188
+ libs?: {
189
+ [k: string]: Lib;
190
+ };
191
+ /**
192
+ * Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component
193
+ */
194
+ components?: {
195
+ [k: string]: Component;
196
+ };
197
+ };
198
+ /**
199
+ * Represents models which should be created/destroyed with the life-cycle of the component
200
+ */
201
+ models?: {
202
+ [k: string]: Model;
203
+ };
204
+ /**
205
+ * Represents relative path to the resource. Only relative path allowed, no '../'
206
+ */
207
+ resourceRoots?: {
208
+ [k: string]: ResourceRoot;
209
+ };
210
+ /**
211
+ * Represents the usage of validation handling by MessageManager for this component (enable/disable)
212
+ */
213
+ handleValidation?: boolean;
214
+ /**
215
+ * Represents the static configuration for components
216
+ */
217
+ config?: {
218
+ [k: string]: Config;
219
+ };
220
+ /**
221
+ * Represents the extension of an additional component
222
+ */
223
+ extends?: {
224
+ /**
225
+ * Represents the component name
226
+ */
227
+ component?: string;
228
+ /**
229
+ * Represents minimal version of the component
230
+ */
231
+ minVersion?: string;
232
+ /**
233
+ * Represents extensions of the component
234
+ */
235
+ extensions?: {
236
+ [k: string]: unknown;
237
+ };
238
+ };
239
+ /**
240
+ * Represents object with content density modes the app is supporting. Supported density modes are 'cozy' and 'compact'
241
+ */
242
+ contentDensities: {
243
+ /**
244
+ * Represents indicator whether compact mode is supported
245
+ */
246
+ compact: boolean;
247
+ /**
248
+ * Represents indicator whether cozy mode is supported
249
+ */
250
+ cozy: boolean;
251
+ };
252
+ /**
253
+ * Represents a name of the UI5 component
254
+ */
255
+ componentName?: string;
256
+ /**
257
+ * Enables the auto prefixing of IDs of ManagedObjects (e.g. Controls) which are created in context of the Component (e.g. createContent invocation)
258
+ */
259
+ autoPrefixId?: boolean;
260
+ /**
261
+ * Represents the identifier of an application variant. The value will be calculated and should not be set manually
262
+ */
263
+ appVariantId?: string;
264
+ /**
265
+ * Represents array of appVariantId hierarchy with origin layer and version, calculated attribute and filled automatically during variant merge
266
+ */
267
+ appVariantIdHierarchy?: {
268
+ /**
269
+ * Represents origin layer of the app variant id
270
+ */
271
+ layer: string;
272
+ /**
273
+ * Represents app variant id
274
+ */
275
+ appVariantId: string;
276
+ /**
277
+ * Represents version of the app variant id
278
+ */
279
+ version: string;
280
+ }[];
281
+ /**
282
+ * Represents a list of the services
283
+ */
284
+ services?: {
285
+ [k: string]: Service;
286
+ };
287
+ /**
288
+ * Represents UI5 library specific properties
289
+ */
290
+ library?: {
291
+ /**
292
+ * Flag whether the library contains a i18n resource or not. If using a string instead of a boolean value an alternative name for the i18n resource could be defined.
293
+ */
294
+ i18n?: boolean | string;
295
+ /**
296
+ * Flag whether the library contains a CSS file or not.
297
+ */
298
+ css?: boolean | string;
299
+ /**
300
+ * Represents the content of a library. Content are controls, elements, types and interfaces.
301
+ */
302
+ content?: {
303
+ [k: string]: unknown;
304
+ };
305
+ };
306
+ /**
307
+ * Represents a list of UI5 shortcut commands
308
+ */
309
+ commands?: {
310
+ [k: string]: Command;
311
+ };
312
+ /**
313
+ * Represents an indicator whether app variant is flex extension point enabled
314
+ */
315
+ flexExtensionPointEnabled?: boolean;
316
+ [k: string]: unknown;
317
+ } & (
318
+ | {
319
+ /**
320
+ * Represents an Indicator whether an app is flex enabled
321
+ */
322
+ flexEnabled: true;
323
+ routing?: RoutingFlexEnabled;
324
+ rootView?: RootViewDefFlexEnabled;
325
+ [k: string]: unknown;
326
+ }
327
+ | {
328
+ /**
329
+ * Represents an Indicator whether an app is flex enabled
330
+ */
331
+ flexEnabled?: false;
332
+ routing?: Routing;
333
+ rootView?: RootViewDef;
334
+ [k: string]: unknown;
335
+ }
336
+ );
337
+ export type EnhanceWithSetting2 =
338
+ | {
339
+ /**
340
+ * Represents property url for model enhancement
341
+ */
342
+ bundleUrl: string;
343
+ /**
344
+ * Indicates whether url is relative to component (default) or manifest
345
+ */
346
+ bundleUrlRelativeTo?: "manifest" | "component";
347
+ /**
348
+ * Represents the fallback locale
349
+ */
350
+ fallbackLocale?: string;
351
+ /**
352
+ * Represents the list of supported locales
353
+ */
354
+ supportedLocales?: unknown[];
355
+ /**
356
+ * Represents terminologies with additional properties files
357
+ */
358
+ terminologies?: {
359
+ [k: string]: TerminologySetting;
360
+ };
361
+ }
362
+ | {
363
+ /**
364
+ * Represents the alternative for bundleUrl
365
+ */
366
+ bundleName: string;
367
+ /**
368
+ * Represents the fallback locale
369
+ */
370
+ fallbackLocale?: string;
371
+ /**
372
+ * Represents the list of supported locales
373
+ */
374
+ supportedLocales?: unknown[];
375
+ /**
376
+ * Represents terminologies with additional properties files
377
+ */
378
+ terminologies?: {
379
+ [k: string]: TerminologySetting;
380
+ };
381
+ };
11
382
  /**
12
383
  * This interface was referenced by `undefined`'s JSON-Schema definition
13
384
  * via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
@@ -30,1371 +401,3628 @@ export type Config =
30
401
  */
31
402
  export type Route = RouteWithoutName & {
32
403
  /**
33
- * Represents the name of the route
404
+ * Represents the name of the route
405
+ */
406
+ name: string;
407
+ [k: string]: unknown;
408
+ };
409
+ /**
410
+ * Represents the root view definition being either the name of the view or the view definition object
411
+ */
412
+ export type RootViewDef =
413
+ | string
414
+ | {
415
+ /**
416
+ * Represents the name of the view
417
+ */
418
+ viewName: string;
419
+ /**
420
+ * Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template
421
+ */
422
+ type?: "XML" | "JSON" | "JS" | "HTML" | "Template";
423
+ /**
424
+ * Represents the id of the view
425
+ */
426
+ id?: string;
427
+ /**
428
+ * Configure the targets for asynchronous loading
429
+ */
430
+ async?: boolean;
431
+ [k: string]: unknown;
432
+ };
433
+ /**
434
+ * Represents the card default grid size in columns and rows
435
+ */
436
+ export type DefaultSpanDef =
437
+ | {
438
+ /**
439
+ * Represents the number of the number of grid columns
440
+ */
441
+ cols: number;
442
+ /**
443
+ * Represents the number of the number of grid rows
444
+ */
445
+ rows: number;
446
+ /**
447
+ * Represents if user wants to show only header part of card in resizable layout
448
+ */
449
+ showOnlyHeader?: boolean;
450
+ /**
451
+ * If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)
452
+ */
453
+ minimumTitleRow?: number;
454
+ /**
455
+ * If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)
456
+ */
457
+ minimumSubTitleRow?: number;
458
+ }
459
+ | "auto";
460
+ /**
461
+ * Plot area is a parent property which defines multiple other properties for smoothness and marker size
462
+ */
463
+ export type LevelsDef = unknown[];
464
+ /**
465
+ * Represents general card attributes
466
+ */
467
+ export type JSONSchemaForSAPCARDNamespace =
468
+ | ({
469
+ type?: "List";
470
+ [k: string]: unknown;
471
+ } & {
472
+ content?: ContentType;
473
+ [k: string]: unknown;
474
+ })
475
+ | ({
476
+ type?: "Analytical";
477
+ [k: string]: unknown;
478
+ } & {
479
+ content?: ContentType1;
480
+ [k: string]: unknown;
481
+ })
482
+ | ({
483
+ type?: "Timeline";
484
+ [k: string]: unknown;
485
+ } & {
486
+ content?: ContentType2;
487
+ [k: string]: unknown;
488
+ })
489
+ | ({
490
+ type?: "Table";
491
+ [k: string]: unknown;
492
+ } & {
493
+ content?: ContentType3;
494
+ [k: string]: unknown;
495
+ })
496
+ | ({
497
+ type?: "Object";
498
+ [k: string]: unknown;
499
+ } & {
500
+ content?: ContentType4;
501
+ [k: string]: unknown;
502
+ })
503
+ | ({
504
+ type?: "Component";
505
+ [k: string]: unknown;
506
+ } & {
507
+ content?: "null";
508
+ [k: string]: unknown;
509
+ })
510
+ | ({
511
+ type?: "Calendar";
512
+ [k: string]: unknown;
513
+ } & {
514
+ content?: ContentType5;
515
+ [k: string]: unknown;
516
+ })
517
+ | ({
518
+ type?: "AdaptiveCard";
519
+ [k: string]: unknown;
520
+ } & {
521
+ content?: ContentType6;
522
+ [k: string]: unknown;
523
+ });
524
+ export type SimpleBinding = string;
525
+ /**
526
+ * Represents state of an entity
527
+ */
528
+ export type State = "Error" | "Success" | "Warning" | "None" | "Information";
529
+ export type IconBackgroundColor =
530
+ | (
531
+ | "Accent1"
532
+ | "Accent2"
533
+ | "Accent3"
534
+ | "Accent4"
535
+ | "Accent5"
536
+ | "Accent6"
537
+ | "Accent7"
538
+ | "Accent8"
539
+ | "Accent9"
540
+ | "Accent10"
541
+ | "Placeholder"
542
+ | "Random"
543
+ | "TileIcon"
544
+ | "Transparent"
545
+ )
546
+ | SimpleBinding;
547
+ /**
548
+ * [Experimental] Describes Microchart attributes
549
+ */
550
+ export type Microchart = Microchart1 | Microchart2;
551
+ export type EnumsValueColor = "Critical" | "Error" | "Good" | "Neutral";
552
+ /**
553
+ * Represents options for text alignments
554
+ */
555
+ export type TextAlign = "Begin" | "Center" | "End" | "Initial" | "Left" | "Right";
556
+ /**
557
+ * Represents identifier
558
+ */
559
+ export type Identifier =
560
+ | boolean
561
+ | {
562
+ url?: string;
563
+ target?: Target;
564
+ };
565
+ /**
566
+ * The version number of the schema in major.minor.patch format.
567
+ */
568
+ export type Semanticversion = string;
569
+
570
+ export interface SAPJSONSchemaForWebApplicationManifestFile {
571
+ /**
572
+ * Represents Application Descriptor format version. It is managed by schema owner
573
+ */
574
+ _version:
575
+ | "1.1.0"
576
+ | "1.2.0"
577
+ | "1.3.0"
578
+ | "1.4.0"
579
+ | "1.5.0"
580
+ | "1.6.0"
581
+ | "1.7.0"
582
+ | "1.8.0"
583
+ | "1.9.0"
584
+ | "1.10.0"
585
+ | "1.11.0"
586
+ | "1.12.0"
587
+ | "1.13.0"
588
+ | "1.14.0"
589
+ | "1.15.0"
590
+ | "1.16.0"
591
+ | "1.17.0"
592
+ | "1.18.0"
593
+ | "1.19.0"
594
+ | "1.20.0"
595
+ | "1.21.0"
596
+ | "1.22.0"
597
+ | "1.23.0"
598
+ | "1.24.0"
599
+ | "1.25.0"
600
+ | "1.26.0"
601
+ | "1.27.0"
602
+ | "1.28.0";
603
+ /**
604
+ * Represents the URL that the developer would prefer the user agent load when the user launches the web application
605
+ */
606
+ start_url?: string;
607
+ "sap.app": JSONSchemaForSAPAPPNamespace;
608
+ "sap.ui": JSONSchemaForSAPUINamespace;
609
+ "sap.ui5"?: JSONSchemaForSAPUI5Namespace;
610
+ "sap.platform.abap"?: JSONSchemaForSAPPLATFORMABAPNamespace;
611
+ "sap.platform.hcp"?: JSONSchemaForSAPPLATFORMHCPNamespace;
612
+ "sap.platform.cf"?: JSONSchemaForSAPPLATFORMCFNamespace;
613
+ "sap.platform.mobilecards"?: JSONSchemaForSAPPLATFORMMOBILECARDSNamespace;
614
+ "sap.fiori"?: JSONSchemaForSAPFIORINamespace;
615
+ "sap.ui.generic.app"?: JSONSchemaForSAPUIGENERICAPPNamespace;
616
+ "sap.fe"?: JSONSchemaForSAPFENamespace;
617
+ "sap.flp"?: JSONSchemaForSAPFLPNamespace;
618
+ "sap.ovp"?: JSONSchemaForSAPOVPNamespace;
619
+ "sap.wda"?: JSONSchemaForSAPWDANamespace;
620
+ "sap.apf"?: JSONSchemaForSAPAPFNamespace;
621
+ "sap.cloud.portal"?: JSONSchemaForSAPCLOUDPORTALNamespace;
622
+ "sap.gui"?: JSONSchemaForSAPGUINamespace;
623
+ "sap.integration"?: JSONSchemaForSAPINTEGRATIONNamespace;
624
+ "sap.wcf"?: JSONSchemaForSAPWCFNamespace;
625
+ "sap.ui.smartbusiness.app"?: JSONSchemaForSAPUISMARTBUSINESSAPPNamespace;
626
+ "sap.mobile"?: JSONSchemaForSAPMOBILENamespace;
627
+ "sap.copilot"?: JSONSchemaForSAPCOPILOTNamespace;
628
+ "sap.map"?: JSONSchemaForSAPMAPNamespace;
629
+ "sap.url"?: JSONSchemaForSAPURLNamespace;
630
+ "sap.platform.sfsf"?: JSONSchemaForSAPPLATFORMSFSFNamespace;
631
+ "sap.cloud"?: JSONSchemaForSAPCLOUDNamespace;
632
+ "sap.card"?: JSONSchemaForSAPCARDNamespace;
633
+ "sap.package"?: JSONSchemaForSAPPACKAGENamespace;
634
+ "sap.artifact"?: JSONSchemaForSAPARTIFACTNamespace;
635
+ }
636
+ /**
637
+ * Represents general application attributes
638
+ */
639
+ export interface JSONSchemaForSAPAPPNamespace {
640
+ /**
641
+ * Application attributes format version. It is managed by namespace owner
642
+ */
643
+ _version?:
644
+ | "1.1.0"
645
+ | "1.2.0"
646
+ | "1.3.0"
647
+ | "1.4.0"
648
+ | "1.5.0"
649
+ | "1.6.0"
650
+ | "1.7.0"
651
+ | "1.8.0"
652
+ | "1.9.0"
653
+ | "1.10.0"
654
+ | "1.11.0"
655
+ | "1.12.0"
656
+ | "1.13.0"
657
+ | "1.14.0";
658
+ /**
659
+ * Represents the template from which the app was generated
660
+ */
661
+ sourceTemplate?: {
662
+ /**
663
+ * Represents id of the template from which the app was generated
664
+ */
665
+ id: string;
666
+ /**
667
+ * Represents the version of the template from which the app was generated
668
+ */
669
+ version: string;
670
+ [k: string]: unknown;
671
+ };
672
+ /**
673
+ * Represents mandatory unique app identifier which must correspond to component 'id/namespace'
674
+ */
675
+ id: string;
676
+ /**
677
+ * Represents type of an application and can be application or component or library
678
+ */
679
+ type: "application" | "component" | "library" | "card";
680
+ /**
681
+ * Represents path inside the app to the properties file containing text symbols for the Descriptor or properties file specific settings (including supportedLocales, fallbackLocale, terminologies and enhanceWith)
682
+ */
683
+ i18n?:
684
+ | string
685
+ | {
686
+ /**
687
+ * Represents the alternative for bundleUrl
688
+ */
689
+ bundleName: string;
690
+ /**
691
+ * Represents the fallback locale
692
+ */
693
+ fallbackLocale?: string;
694
+ /**
695
+ * Represents the list of supported locales
696
+ */
697
+ supportedLocales?: unknown[];
698
+ /**
699
+ * Represents terminologies with additional properties files
700
+ */
701
+ terminologies?: {
702
+ [k: string]: TerminologySetting;
703
+ };
704
+ /**
705
+ * Represents enhancement of UI5 resource model with additional properties files
706
+ */
707
+ enhanceWith?: EnhanceWithSetting[];
708
+ }
709
+ | {
710
+ /**
711
+ * Represents the URL for the resource bundle
712
+ */
713
+ bundleUrl: string;
714
+ /**
715
+ * Indicates whether url is relative to component (default) or manifest
716
+ */
717
+ bundleUrlRelativeTo?: "manifest" | "component";
718
+ /**
719
+ * Represents the list of supported locales
720
+ */
721
+ supportedLocales?: unknown[];
722
+ /**
723
+ * Represents the fallback locale
724
+ */
725
+ fallbackLocale?: string;
726
+ /**
727
+ * Represents terminologies with additional properties files
728
+ */
729
+ terminologies?: {
730
+ [k: string]: TerminologySetting;
731
+ };
732
+ /**
733
+ * Represents enhancement of UI5 resource model with additional properties files
734
+ */
735
+ enhanceWith?: EnhanceWithSetting1[];
736
+ };
737
+ /**
738
+ * Represents mandatory version of the app
739
+ */
740
+ applicationVersion: {
741
+ version: Version;
742
+ [k: string]: unknown;
743
+ };
744
+ /**
745
+ * Represents array of relative paths to the nested manifest.json's (mandatory if it contains nested 'manifest.json')
746
+ */
747
+ embeds?: string[];
748
+ /**
749
+ * Represents relative path back to the manifest.json of an embedding component or library (mandatory for nested 'manifest.json')
750
+ */
751
+ embeddedBy?: string;
752
+ /**
753
+ * Represents mandatory title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
754
+ */
755
+ title: string;
756
+ /**
757
+ * Represents subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
758
+ */
759
+ subTitle?: string;
760
+ /**
761
+ * Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
762
+ */
763
+ shortTitle?: string;
764
+ /**
765
+ * Represents additional information to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
766
+ */
767
+ info?: string;
768
+ /**
769
+ * Represents description; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
770
+ */
771
+ description?: string;
772
+ /**
773
+ * Represents array of keywords
774
+ */
775
+ tags?: {
776
+ keywords: Tag;
777
+ technicalAttributes?: string[];
778
+ [k: string]: unknown;
779
+ };
780
+ /**
781
+ * Represents application component hierarchy
782
+ */
783
+ ach?: string;
784
+ /**
785
+ * Represents used data sources with a unique key/alias
786
+ */
787
+ dataSources?: {
788
+ [k: string]: DataSource;
789
+ };
790
+ /**
791
+ * Represents array of directly used CDS views, which only to be added if directly used via INA protocol and not if used via OData service
792
+ */
793
+ cdsViews?: string[];
794
+ /**
795
+ * Represents reference to a file (naming convention is resources.json) which contains list with all resources which the app needs
796
+ */
797
+ resources?: "resources.json";
798
+ /**
799
+ * Represents a system alias
800
+ */
801
+ destination?: {
802
+ /**
803
+ * Represents an alias for the system
804
+ */
805
+ name: string;
806
+ };
807
+ /**
808
+ * Represents a collection of directly used open source libs (not when used via UI5 capsulation)
809
+ */
810
+ openSourceComponents?: OpenSource[];
811
+ /**
812
+ * Represents the name of the provider which owns the application
813
+ */
814
+ provider?: "sfsf";
815
+ /**
816
+ * Represents indicator whether the app is running offline. Possible values are true or false (default)
817
+ */
818
+ offline?: boolean;
819
+ /**
820
+ * Represents cross navigation for inbound and outbound targets
821
+ */
822
+ crossNavigation?: {
823
+ /**
824
+ * Represents scopes of a site
825
+ */
826
+ scopes?: {
827
+ /**
828
+ * Represents unique id of the site
829
+ *
830
+ * This interface was referenced by `undefined`'s JSON-Schema definition
831
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]+$".
832
+ */
833
+ [k: string]: {
834
+ value: string;
835
+ [k: string]: unknown;
836
+ };
837
+ };
838
+ inbounds: Inbound;
839
+ outbounds?: Outbound;
840
+ [k: string]: unknown;
841
+ };
842
+ }
843
+ export interface DataSourceEnum {
844
+ /**
845
+ * Represents uri of the data source
846
+ */
847
+ uri: string;
848
+ /**
849
+ * Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON
850
+ */
851
+ type?: "OData" | "ODataAnnotation" | "INA" | "XML" | "JSON" | "FHIR";
852
+ settings?: Setting;
853
+ customType?: false;
854
+ }
855
+ /**
856
+ * Represents data source type specific attributes (key, value pairs)
857
+ */
858
+ export interface Setting {
859
+ /**
860
+ * Represents version of OData: 2.0 is default
861
+ */
862
+ odataVersion?: "2.0" | "4.0";
863
+ /**
864
+ * Represents path to local meta data document or annotation uri
865
+ */
866
+ localUri?: string;
867
+ /**
868
+ * Represents array of annotation which references an existing data source of type ODataAnnotation
869
+ */
870
+ annotations?: string[];
871
+ /**
872
+ * Indicates that the client is unwilling to accept a response whose age is greater than the number of seconds specified in this field
873
+ */
874
+ maxAge?: number;
875
+ }
876
+ export interface DataSourceCustom {
877
+ /**
878
+ * Represents uri of the data source
879
+ */
880
+ uri: string;
881
+ /**
882
+ * Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON
883
+ */
884
+ type?: string;
885
+ settings?: Setting1;
886
+ /**
887
+ * Represents a custom data source type flag. So the type can be any string if its true, and only enum values if false
888
+ */
889
+ customType: true;
890
+ }
891
+ /**
892
+ * Represents data source type specific attributes (key, value pairs)
893
+ */
894
+ export interface Setting1 {
895
+ /**
896
+ * Represents version of OData: 2.0 is default
897
+ */
898
+ odataVersion?: "2.0" | "4.0";
899
+ /**
900
+ * Represents path to local meta data document or annotation uri
901
+ */
902
+ localUri?: string;
903
+ /**
904
+ * Represents array of annotation which references an existing data source of type ODataAnnotation
905
+ */
906
+ annotations?: string[];
907
+ /**
908
+ * Indicates that the client is unwilling to accept a response whose age is greater than the number of seconds specified in this field
909
+ */
910
+ maxAge?: number;
911
+ }
912
+ export interface OpenSource {
913
+ /**
914
+ * Represents a name of the open source as appears on the web
915
+ */
916
+ name: string;
917
+ /**
918
+ * Represents a version of the open source (if part of app, version must be specified, if part of UI5 dist layer, version is empty)
919
+ */
920
+ version?: string;
921
+ /**
922
+ * Indicates, whether it is part of the app or not
923
+ */
924
+ packagedWithMySelf?: boolean;
925
+ }
926
+ /**
927
+ * Represents cross navigation for inbound target
928
+ */
929
+ export interface Inbound {
930
+ /**
931
+ * This interface was referenced by `Inbound`'s JSON-Schema definition
932
+ * via the `patternProperty` "^[\w\.\-]+$".
933
+ */
934
+ [k: string]: {
935
+ /**
936
+ * Represents semantic object
937
+ */
938
+ semanticObject: string;
939
+ /**
940
+ * Represents action an the semantic object
941
+ */
942
+ action: string;
943
+ /**
944
+ * Indicates to not expose this inbound as a tile or link
945
+ */
946
+ hideLauncher?: boolean;
947
+ /**
948
+ * Represents icon
949
+ */
950
+ icon?: string;
951
+ /**
952
+ * Represents title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
953
+ */
954
+ title?: string;
955
+ /**
956
+ * Represents subtitle; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
957
+ */
958
+ subTitle?: string;
959
+ /**
960
+ * Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
961
+ */
962
+ shortTitle?: string;
963
+ /**
964
+ * Represents additional information to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
965
+ */
966
+ info?: string;
967
+ /**
968
+ * Represents the display mode of the tile
969
+ */
970
+ displayMode?: "ContentMode" | "HeaderMode";
971
+ /**
972
+ * Represents data source
973
+ */
974
+ indicatorDataSource?: {
975
+ dataSource: string;
976
+ path: string;
977
+ /**
978
+ * Represents refresh interval
979
+ */
980
+ refresh?: number;
981
+ [k: string]: unknown;
982
+ };
983
+ deviceTypes?: DeviceType;
984
+ signature?: SignatureDef;
985
+ };
986
+ }
987
+ /**
988
+ * Represents device types for which application is developed
989
+ */
990
+ export interface DeviceType {
991
+ /**
992
+ * Represents indicator whether desktop device is supported, default true
993
+ */
994
+ desktop?: boolean;
995
+ /**
996
+ * Represents indicator whether tablet device is supported, default true
997
+ */
998
+ tablet?: boolean;
999
+ /**
1000
+ * Represents indicator whether phone device is supported, default true
1001
+ */
1002
+ phone?: boolean;
1003
+ }
1004
+ /**
1005
+ * Represents signature for inbound targets
1006
+ */
1007
+ export interface SignatureDef {
1008
+ parameters: {
1009
+ /**
1010
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1011
+ * via the `patternProperty` "^[\w\.\-\/]+$".
1012
+ */
1013
+ [k: string]: {
1014
+ /**
1015
+ * Represents a default Value
1016
+ */
1017
+ defaultValue?:
1018
+ | {
1019
+ format?: "plain";
1020
+ value?: string;
1021
+ [k: string]: unknown;
1022
+ }
1023
+ | {
1024
+ format?: "reference";
1025
+ value?: string;
1026
+ [k: string]: unknown;
1027
+ }
1028
+ | {
1029
+ format?: null;
1030
+ value?: string;
1031
+ [k: string]: unknown;
1032
+ };
1033
+ /**
1034
+ * Represents a filter , only if input parameter matches filter
1035
+ */
1036
+ filter?: {
1037
+ /**
1038
+ * Represents a depending on format either a verbatim filter value, a regular expression or a reference
1039
+ */
1040
+ value: string;
1041
+ /**
1042
+ * Indicates how 'value' is to be interpreted: ('plain': the actual value must match the 'value' property directly| 'regexp': the 'value' represents a regexp which must be present in the actual value| 'reference' : the 'value' represents a reference to e.g. a UserDefault parameter (e.g. 'UserDefault.CostCenter'), the resolved parameter value is then directly compared with the actual value)
1043
+ */
1044
+ format?: "plain" | "regexp" | "reference";
1045
+ };
1046
+ /**
1047
+ * Represents a value to be used when creating a tile intent for this inbound
1048
+ */
1049
+ launcherValue?: {
1050
+ value?: string | string[];
1051
+ /**
1052
+ * Indicates how 'value' is to be interpreted: 'plain': the 'value' is taken as a literal string value | 'array': the 'value' is an array of strings
1053
+ */
1054
+ format?: "plain" | "array";
1055
+ /**
1056
+ * DEPRECATED - Indicates the administrator should be prompted to supply a value when creating a tile
1057
+ */
1058
+ prompt?: boolean;
1059
+ };
1060
+ required?: boolean;
1061
+ /**
1062
+ * Represents the parameter name in legacy ABAP application, e.g. 'RF05L-BUKRS' for parameter 'CompanyCode'
1063
+ */
1064
+ renameTo?: string;
1065
+ };
1066
+ };
1067
+ /**
1068
+ * Indicates how additional parameters to the declared signature are treated: ('ignored': parameters are not passed on to application | 'allowed': parameters are passed on to application | 'notallowed': additional parameters are not allowed)
1069
+ */
1070
+ additionalParameters: "ignored" | "allowed" | "notallowed";
1071
+ }
1072
+ /**
1073
+ * Describes intents that can be triggered from the application to navigate
1074
+ */
1075
+ export interface Outbound {
1076
+ /**
1077
+ * This interface was referenced by `Outbound`'s JSON-Schema definition
1078
+ * via the `patternProperty` "^[\w\.\-]+$".
1079
+ */
1080
+ [k: string]: {
1081
+ /**
1082
+ * Represents a business entity (e.g., 'Employee')
1083
+ */
1084
+ semanticObject: string;
1085
+ /**
1086
+ * Represents the action to perform on the business entity (e.g., 'display')
1087
+ */
1088
+ action: string;
1089
+ /**
1090
+ * Indicates whether the intent can contain additional context parameters that are not described in the outbound: ('notallowed': the intent must contain only the specified parameters | 'allowed': additional parameters might appear in the navigation intent)| 'ignored': technical meta-parameters for framework usage are added to the intent, these parameters should be ignored by target applications
1091
+ */
1092
+ additionalParameters?: "notallowed" | "ignored" | "allowed";
1093
+ /**
1094
+ * Represents parameters of navigation intents
1095
+ */
1096
+ parameters?: {
1097
+ /**
1098
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1099
+ * via the `patternProperty` "^[\w\.\-\/]+$".
1100
+ */
1101
+ [k: string]: {
1102
+ /**
1103
+ * Describes parameters of navigation intents generated or triggered by the application
1104
+ */
1105
+ value?: {
1106
+ /**
1107
+ * Represents a verbatim value (when 'plain' format is used), a pattern (when 'regexp' format is used), a value coming from a UI5 model (when 'binding' format is used), or a User Default reference (when 'reference' format is used)
1108
+ */
1109
+ value?: string;
1110
+ /**
1111
+ * Indicates how 'value' is to be interpreted: 'plain': the 'value' is taken as a literal string value | 'reference': the 'value' is a reference to a parameter maintained in the Fiori Launchpad (e.g. 'UserDefault.CostCenter'); the parameter value is used on the outbound intent parameter| 'regexp': the 'value' matches the specified pattern| 'binding': the 'value' is a binding path; the value from the model at the specified binding path will be used on the outbound intent parameter
1112
+ */
1113
+ format?: "plain" | "regexp" | "reference" | "binding";
1114
+ };
1115
+ required?: boolean;
1116
+ };
1117
+ };
1118
+ };
1119
+ }
1120
+ /**
1121
+ * Represents general ui attributes
1122
+ */
1123
+ export interface JSONSchemaForSAPUINamespace {
1124
+ /**
1125
+ * Represents UI attributes format version. It is managed by namespace owner
1126
+ */
1127
+ _version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0" | "1.5.0";
1128
+ /**
1129
+ * Represents UI technology. The possible values are UI5 (default), WDA, NWBC, GUI, URL and WCF
1130
+ */
1131
+ technology: "UI5" | "WDA" | "NWBC" | "GUI" | "URL" | "WCF";
1132
+ /**
1133
+ * Represents icons which used in application
1134
+ */
1135
+ icons?: {
1136
+ /**
1137
+ * Represents icon of the app
1138
+ */
1139
+ icon?: string;
1140
+ /**
1141
+ * Represents ICO file to be used inside the browser and for desktop shortcuts
1142
+ */
1143
+ favIcon?: string;
1144
+ /**
1145
+ * Represents 57x57 pixel version for non-retina iPhones
1146
+ */
1147
+ phone?: string;
1148
+ /**
1149
+ * Represents 114x114 pixel version for non-retina iPhones
1150
+ */
1151
+ "phone@2"?: string;
1152
+ /**
1153
+ * Represents 72x72 pixel version for non-retina iPads
1154
+ */
1155
+ tablet?: string;
1156
+ /**
1157
+ * Represents 144x144 pixel version for non-retina iPads
1158
+ */
1159
+ "tablet@2"?: string;
1160
+ };
1161
+ /**
1162
+ * Represents device types on which application is running. Supported device types are desktop, tablet and phone
1163
+ */
1164
+ deviceTypes: DeviceType1 & {
1165
+ [k: string]: unknown;
1166
+ };
1167
+ /**
1168
+ * The property is Deprecated. Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal
1169
+ */
1170
+ supportedThemes?: string[];
1171
+ /**
1172
+ * Indicates whether app should run in full screen mode: possible values: true or false
1173
+ */
1174
+ fullWidth?: boolean;
1175
+ [k: string]: unknown;
1176
+ }
1177
+ /**
1178
+ * Represents device types on which the app is running
1179
+ */
1180
+ export interface DeviceType1 {
1181
+ /**
1182
+ * Represents indicator whether desktop device is supported, default true
1183
+ */
1184
+ desktop?: boolean;
1185
+ /**
1186
+ * Represents indicator whether tablet device is supported, default true
1187
+ */
1188
+ tablet?: boolean;
1189
+ /**
1190
+ * Represents indicator whether phone device is supported, default true
1191
+ */
1192
+ phone?: boolean;
1193
+ }
1194
+ /**
1195
+ * Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'
1196
+ */
1197
+ export interface Resource {
1198
+ js?: {
1199
+ uri: string;
1200
+ [k: string]: unknown;
1201
+ }[];
1202
+ css?: {
1203
+ uri: string;
1204
+ id?: string;
1205
+ [k: string]: unknown;
1206
+ }[];
1207
+ [k: string]: unknown;
1208
+ }
1209
+ /**
1210
+ * Represents component name for usage
1211
+ *
1212
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1213
+ * via the `patternProperty` "^[a-zA-Z0-9_\.]*$".
1214
+ */
1215
+ export interface ComponentUsages {
1216
+ /**
1217
+ * Represents name of reuse component
1218
+ */
1219
+ name: string;
1220
+ /**
1221
+ * Represents component data for the Component
1222
+ */
1223
+ componentData?:
1224
+ | string[]
1225
+ | string
1226
+ | boolean
1227
+ | number
1228
+ | {
1229
+ [k: string]: unknown;
1230
+ };
1231
+ /**
1232
+ * Represents settings for the Component
1233
+ */
1234
+ settings?:
1235
+ | string[]
1236
+ | string
1237
+ | boolean
1238
+ | number
1239
+ | {
1240
+ [k: string]: unknown;
1241
+ };
1242
+ /**
1243
+ * Represents Indicator to lazy loading component usage, default true
1244
+ */
1245
+ lazy?: boolean;
1246
+ }
1247
+ /**
1248
+ * Represents sapui5 library name
1249
+ *
1250
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1251
+ * via the `patternProperty` "^([a-z][a-z0-9]{0,39})(\.[a-z][a-z0-9]{0,39})*$".
1252
+ */
1253
+ export interface Lib {
1254
+ /**
1255
+ * Represents minimal version of ui5 library
1256
+ */
1257
+ minVersion?: string;
1258
+ /**
1259
+ * Represents Indicator to lazy loading lib
1260
+ */
1261
+ lazy?: boolean;
1262
+ [k: string]: unknown;
1263
+ }
1264
+ /**
1265
+ * Represents sapui5 component name
1266
+ *
1267
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1268
+ * via the `patternProperty` "^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$".
1269
+ */
1270
+ export interface Component {
1271
+ /**
1272
+ * Represents minimal version of ui5 component
1273
+ */
1274
+ minVersion?: string;
1275
+ /**
1276
+ * Represents Indicator to lazy loading component
1277
+ */
1278
+ lazy?: boolean;
1279
+ [k: string]: unknown;
1280
+ }
1281
+ /**
1282
+ * Represents sapui5 model name
1283
+ *
1284
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1285
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-\|@]*$".
1286
+ */
1287
+ export interface Model {
1288
+ /**
1289
+ * Represents model class name
1290
+ */
1291
+ type?: string;
1292
+ /**
1293
+ * Represents string of key/alias from sap.app dataSources to reference an existing data source
1294
+ */
1295
+ dataSource?: string;
1296
+ /**
1297
+ * Represents URI for the model
1298
+ */
1299
+ uri?: string;
1300
+ /**
1301
+ * Indicates that the model will be immediately created after the manifest is loaded by Component Factory and before the Component instance is created
1302
+ */
1303
+ preload?: boolean;
1304
+ settings?: Ui5Setting;
1305
+ }
1306
+ export interface Ui5Setting {
1307
+ /**
1308
+ * Represents default binding mode and must be a string value from sap.ui.model.BindingMode. Possible values: Default, OneTime, OneWay, TwoWay
1309
+ */
1310
+ defaultBindingMode?: "Default" | "OneTime" | "OneWay" | "TwoWay";
1311
+ /**
1312
+ * Represents the alternative for bundleUrl
1313
+ */
1314
+ bundleName?: string;
1315
+ /**
1316
+ * Represents the URL for the resource bundle
1317
+ */
1318
+ bundleUrl?: string;
1319
+ /**
1320
+ * Indicates whether url is relative to component (default) or manifest
1321
+ */
1322
+ bundleUrlRelativeTo?: "manifest" | "component";
1323
+ /**
1324
+ * Represents the fallback locale
1325
+ */
1326
+ fallbackLocale?: string;
1327
+ /**
1328
+ * Represents the list of supported locales
1329
+ */
1330
+ supportedLocales?: unknown[];
1331
+ /**
1332
+ * Represents terminologies with additional properties files
1333
+ */
1334
+ terminologies?: {
1335
+ [k: string]: unknown;
1336
+ };
1337
+ /**
1338
+ * Represents enhancement of UI5 resource model with additional properties files
1339
+ */
1340
+ enhanceWith?: EnhanceWithSetting2[];
1341
+ [k: string]: unknown;
1342
+ }
1343
+ /**
1344
+ * Represents the definition of each service
1345
+ *
1346
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1347
+ * via the `patternProperty` "[\s\S]*".
1348
+ */
1349
+ export interface Service {
1350
+ /**
1351
+ * Represents the name of the service factory
1352
+ */
1353
+ factoryName: string;
1354
+ /**
1355
+ * Indicates whether the service optional or not
1356
+ */
1357
+ optional?: boolean;
1358
+ [k: string]: unknown;
1359
+ }
1360
+ /**
1361
+ * Represents a UI5 shortcut command.
1362
+ *
1363
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1364
+ * via the `patternProperty` "^[A-Za-z_][A-Za-z0-9_\-\|@]+$".
1365
+ */
1366
+ export interface Command {
1367
+ /**
1368
+ * A string describing a shortcut key combination that, when used by the user, will trigger the command.
1369
+ */
1370
+ shortcut?: string;
1371
+ }
1372
+ /**
1373
+ * Represents the configuration of routing
1374
+ */
1375
+ export interface RoutingFlexEnabled {
1376
+ /**
1377
+ * Represents the default properties defined for route and target
1378
+ */
1379
+ config?: {
1380
+ /**
1381
+ * Represents the router class
1382
+ */
1383
+ routerClass?: string;
1384
+ /**
1385
+ * Indicates whether the Views in routing are loaded asyncly
1386
+ */
1387
+ async?: boolean;
1388
+ /**
1389
+ * Represents information about targets to display when no route is matched
1390
+ */
1391
+ bypassed?: {
1392
+ /**
1393
+ * Represents one or multiple names of targets that are displayed when no route is matched
1394
+ */
1395
+ target: [] | [string | RouteTargetObject] | string | RouteTargetObject;
1396
+ };
1397
+ /**
1398
+ * Represents a prefix that is prepended in front of the viewName
1399
+ */
1400
+ viewPath?: string;
1401
+ [k: string]: unknown;
1402
+ } & Target;
1403
+ routes?:
1404
+ | Route[]
1405
+ | {
1406
+ [k: string]: RouteWithoutName;
1407
+ };
1408
+ /**
1409
+ * Represents the definition of targets
1410
+ */
1411
+ targets?: {
1412
+ /**
1413
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1414
+ * via the `patternProperty` "[\s\S]*".
1415
+ */
1416
+ [k: string]:
1417
+ | (Target & {
1418
+ /**
1419
+ * Represents the name of a view that will be created
1420
+ */
1421
+ viewName: string;
1422
+ /**
1423
+ * Represents the id of the created view
1424
+ */
1425
+ viewId: string;
1426
+ /**
1427
+ * Represents a prefix that is prepended in front of the viewName
1428
+ */
1429
+ viewPath?: string;
1430
+ [k: string]: unknown;
1431
+ })
1432
+ | (Target &
1433
+ (
1434
+ | {
1435
+ /**
1436
+ * Represents the name of a view or component that will be created
1437
+ */
1438
+ name: string;
1439
+ /**
1440
+ * Represents the id of the created view or component
1441
+ */
1442
+ id: string;
1443
+ /**
1444
+ * Represents a prefix that is prepended in front of the view or component name
1445
+ */
1446
+ path?: string;
1447
+ /**
1448
+ * Represents the type of the type View or Component
1449
+ */
1450
+ type?: "View" | "Component";
1451
+ [k: string]: unknown;
1452
+ }
1453
+ | {
1454
+ /**
1455
+ * Represents the componentUsage of the component that will be created
1456
+ */
1457
+ usage: string;
1458
+ /**
1459
+ * Represents the id of the created view or component
1460
+ */
1461
+ id: string;
1462
+ /**
1463
+ * Represents the type of the type Component
1464
+ */
1465
+ type: "Component";
1466
+ [k: string]: unknown;
1467
+ }
1468
+ ));
1469
+ };
1470
+ [k: string]: unknown;
1471
+ }
1472
+ /**
1473
+ * Represents the definition of a target of a route as object.
1474
+ */
1475
+ export interface RouteTargetObject {
1476
+ /**
1477
+ * Represents the name of the routing target
1478
+ */
1479
+ name?: string;
1480
+ /**
1481
+ * The prefix of the routing target
1482
+ */
1483
+ prefix?: string;
1484
+ /**
1485
+ * Indicates whether this 'Component' target should propagate it's title to this component or not
1486
+ */
1487
+ propagateTitle?: boolean & string;
1488
+ [k: string]: unknown;
1489
+ }
1490
+ /**
1491
+ * Represents the definition of each target
1492
+ */
1493
+ export interface Target {
1494
+ /**
1495
+ * Represents the information which is included as a parameter of the 'titleChanged' event fired on Router when this target is displayed. The title can be set with static text and can also be set with a valid property binding syntax which will be resolved under the scope of the view in the target where the title property is defined.
1496
+ */
1497
+ title?: string;
1498
+ /**
1499
+ * Represents the type of view that is going to be created
1500
+ */
1501
+ viewType?: "XML" | "JSON" | "JS" | "HTML" | "Template";
1502
+ /**
1503
+ * Represents the id of the view that contains the control specified by the 'controlId'
1504
+ */
1505
+ targetParent?: string;
1506
+ /**
1507
+ * Represents the id of the control where you want to place the view created by the target
1508
+ */
1509
+ controlId?: string;
1510
+ /**
1511
+ * Represents the name of an aggregation of the controlId that contains the views
1512
+ */
1513
+ controlAggregation?: string;
1514
+ /**
1515
+ * Whether the aggregation of the control should be cleared before adding the view
1516
+ */
1517
+ clearControlAggregation?: boolean;
1518
+ /**
1519
+ * Represents the name of another target which will also be displayed once this target is displayed
1520
+ */
1521
+ parent?: string;
1522
+ /**
1523
+ * Represents the level of the current view which is used to define the transition direction when navigate to this view
1524
+ */
1525
+ viewLevel?: number;
1526
+ /**
1527
+ * Represents the type of transition when navigating from previous view to this view
1528
+ */
1529
+ transition?: string | ("slide" | "flip" | "fade" | "show");
1530
+ /**
1531
+ * Represents the transition parameters that are passed to the event handlers
1532
+ */
1533
+ transitionParameters?: {
1534
+ [k: string]: unknown;
1535
+ };
1536
+ [k: string]: unknown;
1537
+ }
1538
+ /**
1539
+ * Represents the definition of route without the option 'name'. This is used when routes are defined in an object.
1540
+ *
1541
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1542
+ * via the `patternProperty` "[\s\S]*".
1543
+ *
1544
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1545
+ * via the `patternProperty` "[\s\S]*".
1546
+ */
1547
+ export interface RouteWithoutName {
1548
+ /**
1549
+ * Represents the url pattern that the route is matched against
1550
+ */
1551
+ pattern?: string;
1552
+ /**
1553
+ * Whether the route should be matched when another route is already matched
1554
+ */
1555
+ greedy?: boolean;
1556
+ /**
1557
+ * Represents one or multiple names of targets which are displayed when the route is matched
1558
+ */
1559
+ target?: [] | [string | RouteTargetObject] | string | RouteTargetObject;
1560
+ /**
1561
+ * Represents the name of the target where the 'title' information should be taken
1562
+ */
1563
+ titleTarget?: string;
1564
+ [k: string]: unknown;
1565
+ }
1566
+ /**
1567
+ * Represents the root view definition when flex is enabled (requires a view id)
1568
+ */
1569
+ export interface RootViewDefFlexEnabled {
1570
+ /**
1571
+ * Represents the name of the view
1572
+ */
1573
+ viewName: string;
1574
+ /**
1575
+ * Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template
1576
+ */
1577
+ type?: "XML" | "JSON" | "JS" | "HTML" | "Template";
1578
+ /**
1579
+ * Represents the id of the view
1580
+ */
1581
+ id: string;
1582
+ /**
1583
+ * Configure the targets for asynchronous loading
1584
+ */
1585
+ async?: boolean;
1586
+ [k: string]: unknown;
1587
+ }
1588
+ /**
1589
+ * Represents the configuration of routing
1590
+ */
1591
+ export interface Routing {
1592
+ /**
1593
+ * Represents the default properties defined for route and target
1594
+ */
1595
+ config?: {
1596
+ /**
1597
+ * Represents the router class
1598
+ */
1599
+ routerClass?: string;
1600
+ /**
1601
+ * Indicates whether the Views in routing are loaded asyncly
1602
+ */
1603
+ async?: boolean;
1604
+ /**
1605
+ * Indicates whether the targets which have type 'Component' should propagate their title to this component or not
1606
+ */
1607
+ propagateTitle?: boolean;
1608
+ /**
1609
+ * Represents information about targets to display when no route is matched
1610
+ */
1611
+ bypassed?: {
1612
+ /**
1613
+ * Represents one or multiple names of targets that are displayed when no route is matched
1614
+ */
1615
+ target: [] | [string | RouteTargetObject] | string | RouteTargetObject;
1616
+ };
1617
+ /**
1618
+ * Represents a prefix that is prepended in front of the viewName
1619
+ */
1620
+ viewPath?: string;
1621
+ [k: string]: unknown;
1622
+ } & Target;
1623
+ routes?:
1624
+ | Route[]
1625
+ | {
1626
+ [k: string]: RouteWithoutName;
1627
+ };
1628
+ /**
1629
+ * Represents the definition of targets
1630
+ */
1631
+ targets?: {
1632
+ /**
1633
+ * This interface was referenced by `undefined`'s JSON-Schema definition
1634
+ * via the `patternProperty` "[\s\S]*".
1635
+ */
1636
+ [k: string]:
1637
+ | (Target & {
1638
+ /**
1639
+ * Represents the name of a view that will be created
1640
+ */
1641
+ viewName: string;
1642
+ /**
1643
+ * Represents the id of the created view
1644
+ */
1645
+ viewId?: string;
1646
+ /**
1647
+ * Represents a prefix that is prepended in front of the viewName
1648
+ */
1649
+ viewPath?: string;
1650
+ [k: string]: unknown;
1651
+ })
1652
+ | (Target &
1653
+ (
1654
+ | {
1655
+ /**
1656
+ * Represents the name of a view or component that will be created
1657
+ */
1658
+ name: string;
1659
+ /**
1660
+ * Represents the id of the created view or component
1661
+ */
1662
+ id?: string;
1663
+ /**
1664
+ * Represents a prefix that is prepended in front of the view or component name
1665
+ */
1666
+ path?: string;
1667
+ /**
1668
+ * Represents the type of the type View or Component
1669
+ */
1670
+ type?: "View" | "Component";
1671
+ [k: string]: unknown;
1672
+ }
1673
+ | {
1674
+ /**
1675
+ * Represents the componentUsage of the component that will be created
1676
+ */
1677
+ usage: string;
1678
+ /**
1679
+ * Represents the id of the created view or component
1680
+ */
1681
+ id?: string;
1682
+ /**
1683
+ * Represents the type of the type Component
1684
+ */
1685
+ type: "Component";
1686
+ [k: string]: unknown;
1687
+ }
1688
+ ));
1689
+ };
1690
+ [k: string]: unknown;
1691
+ }
1692
+ /**
1693
+ * Represents ABAP platform specific attributes
1694
+ */
1695
+ export interface JSONSchemaForSAPPLATFORMABAPNamespace {
1696
+ /**
1697
+ * Represents attributes format version. It is managed by namespace owner
1698
+ */
1699
+ _version?: "1.1.0" | "1.2.0";
1700
+ /**
1701
+ * Represents the uri of the app in the ABAP system
1702
+ */
1703
+ uri?: string;
1704
+ /**
1705
+ * Represents the alternative uri of the app in the ABAP system for starting the application
1706
+ */
1707
+ uriNwbc?: string;
1708
+ }
1709
+ /**
1710
+ * Represents HANA Cloud Platform platform specific attributes
1711
+ */
1712
+ export interface JSONSchemaForSAPPLATFORMHCPNamespace {
1713
+ /**
1714
+ * Represents attributes format version. It is managed by namespace owner
1715
+ */
1716
+ _version?: "1.1.0" | "1.2.0" | "1.3.0";
1717
+ /**
1718
+ * Represents the uri of the app in the HANA Cloud Platform
1719
+ */
1720
+ uri?: string;
1721
+ /**
1722
+ * Represents the alternative uri of the app in the ABAP system for starting the application
1723
+ */
1724
+ uriNwbc?: string;
1725
+ /**
1726
+ * Represents the provider account of the HTML5 application
1727
+ */
1728
+ providerAccount?: string;
1729
+ /**
1730
+ * Represents the HTML5 application name
1731
+ */
1732
+ appName?: string;
1733
+ /**
1734
+ * Represents the version of the HTML5 application
1735
+ */
1736
+ appVersion?: string;
1737
+ /**
1738
+ * Indicates that HCP application is multi-version enabled
1739
+ */
1740
+ multiVersionApp?: boolean;
1741
+ }
1742
+ /**
1743
+ * Represents CF(Cloud Foundry) platform specific attributes
1744
+ */
1745
+ export interface JSONSchemaForSAPPLATFORMCFNamespace {
1746
+ /**
1747
+ * Represents attributes format version. It is managed by namespace owner
1748
+ */
1749
+ _version?: "1.1.0" | "1.2.0";
1750
+ /**
1751
+ * Represents the authorization scope of the application
1752
+ */
1753
+ oAuthScopes?: string[];
1754
+ [k: string]: unknown;
1755
+ }
1756
+ /**
1757
+ * Represents Mobile Cards platform specific attributes
1758
+ */
1759
+ export interface JSONSchemaForSAPPLATFORMMOBILECARDSNamespace {
1760
+ /**
1761
+ * Represents attributes format version. It is managed by namespace owner
1762
+ */
1763
+ _version?: "1.0.0";
1764
+ /**
1765
+ * Represents the compatibility of this app with the Mobile Cards platform.
1766
+ */
1767
+ compatible?: boolean;
1768
+ [k: string]: unknown;
1769
+ }
1770
+ /**
1771
+ * Represents SAP Fiori specific attributes
1772
+ */
1773
+ export interface JSONSchemaForSAPFIORINamespace {
1774
+ /**
1775
+ * Represents attributes format version. It is managed by namespace owner
1776
+ */
1777
+ _version?: "1.1.0";
1778
+ /**
1779
+ * Represents array of registration ids, i.e. for Fiori apps fiori id(s)
1780
+ */
1781
+ registrationIds: string[];
1782
+ /**
1783
+ * Represents architecture type of an application. The supported types are transactional or analytical or factsheet or reusecomponent or fpmwebdynpro or designstudio
1784
+ */
1785
+ archeType: "transactional" | "analytical" | "factsheet" | "reusecomponent" | "fpmwebdynpro" | "designstudio";
1786
+ }
1787
+ /**
1788
+ * Represents GENERIC APP specific attributes
1789
+ */
1790
+ export interface JSONSchemaForSAPUIGENERICAPPNamespace {
1791
+ _version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0";
1792
+ settings?: SettingDef;
1793
+ /**
1794
+ * Represents one ore more pages of an application. UI5 routing is created from the definitions in this section
1795
+ */
1796
+ pages?:
1797
+ | PagesArray[]
1798
+ | {
1799
+ [k: string]: PagesMap;
1800
+ };
1801
+ }
1802
+ /**
1803
+ * Represents global settings for the application controller
1804
+ */
1805
+ export interface SettingDef {
1806
+ [k: string]: unknown;
1807
+ }
1808
+ export interface PagesArray {
1809
+ /**
1810
+ * Represents the navigation property that leads to this page. The navigation links of the previous page (the page that calls this one) are determined through this property
1811
+ */
1812
+ navigationProperty?: string;
1813
+ /**
1814
+ * Represents the entity set that defines either the aggregation or the root object of the component
1815
+ */
1816
+ entitySet?: string;
1817
+ component: ComponentDef;
1818
+ navigation?: NavigationDef;
1819
+ embeddedComponents?: EmbeddedComponent;
1820
+ routingSpec?: RoutingSpecDef;
1821
+ implementingComponent?: ImplementingComponentDef;
1822
+ /**
1823
+ * Default layout used to open the corresponding page in FlexibleColumnLayout
1824
+ */
1825
+ defaultLayoutType?: string;
1826
+ /**
1827
+ * Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation
1828
+ */
1829
+ defaultLayoutTypeIfExternalNavigation?: string;
1830
+ pages?: PagesArray[];
1831
+ }
1832
+ /**
1833
+ * Represents the component and its settings that makes the page
1834
+ */
1835
+ export interface ComponentDef {
1836
+ /**
1837
+ * The name of the component
1838
+ */
1839
+ name: string;
1840
+ /**
1841
+ * Switch to create a route for a list (aggregation) if true and routing for an entity if not set or false
1842
+ */
1843
+ list?: boolean;
1844
+ settings?: ComponentSettingDef;
1845
+ }
1846
+ /**
1847
+ * Represents the settings specific to one component
1848
+ */
1849
+ export interface ComponentSettingDef {
1850
+ [k: string]: unknown;
1851
+ }
1852
+ /**
1853
+ * Represents the different navigation targets
1854
+ */
1855
+ export interface NavigationDef {
1856
+ display?: ActionPropDef;
1857
+ create?: ActionPropDef1;
1858
+ edit?: ActionPropDef2;
1859
+ }
1860
+ /**
1861
+ * Represents an action triggered by the user on UI: the navigation to display an object
1862
+ */
1863
+ export interface ActionPropDef {
1864
+ /**
1865
+ * Represents the path in the manifest to the target to which the navigation is bound
1866
+ */
1867
+ path: string;
1868
+ /**
1869
+ * Represents the pointer to a semantic object
1870
+ */
1871
+ target: string;
1872
+ }
1873
+ /**
1874
+ * Represents an action triggered by the user on UI: the navigation to create an object
1875
+ */
1876
+ export interface ActionPropDef1 {
1877
+ /**
1878
+ * Represents the path in the manifest to the target to which the navigation is bound
1879
+ */
1880
+ path: string;
1881
+ /**
1882
+ * Represents the pointer to a semantic object
1883
+ */
1884
+ target: string;
1885
+ }
1886
+ /**
1887
+ * Represents an action triggered by the user on UI: the navigation to edit an object
1888
+ */
1889
+ export interface ActionPropDef2 {
1890
+ /**
1891
+ * Represents the path in the manifest to the target to which the navigation is bound
1892
+ */
1893
+ path: string;
1894
+ /**
1895
+ * Represents the pointer to a semantic object
1896
+ */
1897
+ target: string;
1898
+ }
1899
+ /**
1900
+ * Represent reuse components that should be appended at the end of the template component
1901
+ */
1902
+ export interface EmbeddedComponent {
1903
+ /**
1904
+ * This interface was referenced by `EmbeddedComponent`'s JSON-Schema definition
1905
+ * via the `patternProperty` "^[a-zA-Z0-9_.:-]+$".
1906
+ *
1907
+ * This interface was referenced by `EmbeddedComponent2`'s JSON-Schema definition
1908
+ * via the `patternProperty` "^[a-zA-Z0-9_.:-]+$".
1909
+ */
1910
+ [k: string]: {
1911
+ /**
1912
+ * Represents an unique id for the instance of the reuse component inside of the object page
1913
+ */
1914
+ id: string;
1915
+ /**
1916
+ * Represents the title for the content of the reuse component
1917
+ */
1918
+ title: string;
1919
+ /**
1920
+ * Represents an optional element binding for the ComponentContainer that hosts the reuse component
1921
+ */
1922
+ binding?: string;
1923
+ /**
1924
+ * Represents a map to populate the API of the reuse component
1925
+ */
1926
+ settings?: {
1927
+ [k: string]: unknown;
1928
+ };
1929
+ /**
1930
+ * Flag, whether the embedded component should be hidden by default
1931
+ */
1932
+ hiddenByDefault?: {
1933
+ [k: string]: unknown;
1934
+ };
1935
+ /**
1936
+ * Represents group title of reuse components
1937
+ */
1938
+ groupTitle?: string;
1939
+ /**
1940
+ * Represents a section that behaves a leading section for the group
1941
+ */
1942
+ leadingSectionIdOrPath?: string;
1943
+ [k: string]: unknown;
1944
+ } & (
1945
+ | {
1946
+ /**
1947
+ * Represents the name of the reuse component
1948
+ */
1949
+ componentName: string;
1950
+ [k: string]: unknown;
1951
+ }
1952
+ | {
1953
+ /**
1954
+ * Represents the reference to the name of the componentUsages defined in sap.ui5/componentUsages
1955
+ */
1956
+ componentUsage: string;
1957
+ [k: string]: unknown;
1958
+ }
1959
+ | {
1960
+ embeddedComponents: EmbeddedComponent1;
1961
+ [k: string]: unknown;
1962
+ }
1963
+ );
1964
+ }
1965
+ export interface EmbeddedComponent1 {
1966
+ /**
1967
+ * This interface was referenced by `EmbeddedComponent`'s JSON-Schema definition
1968
+ * via the `patternProperty` "^[a-zA-Z0-9_.:-]+$".
1969
+ *
1970
+ * This interface was referenced by `EmbeddedComponent2`'s JSON-Schema definition
1971
+ * via the `patternProperty` "^[a-zA-Z0-9_.:-]+$".
1972
+ */
1973
+ [k: string]: {
1974
+ /**
1975
+ * Represents an unique id for the instance of the reuse component inside of the object page
1976
+ */
1977
+ id: string;
1978
+ /**
1979
+ * Represents the title for the content of the reuse component
1980
+ */
1981
+ title: string;
1982
+ /**
1983
+ * Represents an optional element binding for the ComponentContainer that hosts the reuse component
1984
+ */
1985
+ binding?: string;
1986
+ /**
1987
+ * Represents a map to populate the API of the reuse component
1988
+ */
1989
+ settings?: {
1990
+ [k: string]: unknown;
1991
+ };
1992
+ /**
1993
+ * Flag, whether the embedded component should be hidden by default
1994
+ */
1995
+ hiddenByDefault?: {
1996
+ [k: string]: unknown;
1997
+ };
1998
+ /**
1999
+ * Represents group title of reuse components
2000
+ */
2001
+ groupTitle?: string;
2002
+ /**
2003
+ * Represents a section that behaves a leading section for the group
2004
+ */
2005
+ leadingSectionIdOrPath?: string;
2006
+ [k: string]: unknown;
2007
+ } & (
2008
+ | {
2009
+ /**
2010
+ * Represents the name of the reuse component
2011
+ */
2012
+ componentName: string;
2013
+ [k: string]: unknown;
2014
+ }
2015
+ | {
2016
+ /**
2017
+ * Represents the reference to the name of the componentUsages defined in sap.ui5/componentUsages
2018
+ */
2019
+ componentUsage: string;
2020
+ [k: string]: unknown;
2021
+ }
2022
+ | {
2023
+ embeddedComponents: EmbeddedComponent1;
2024
+ [k: string]: unknown;
2025
+ }
2026
+ );
2027
+ }
2028
+ /**
2029
+ * Represents the routing specification
2030
+ */
2031
+ export interface RoutingSpecDef {
2032
+ /**
2033
+ * Represents the name of the route
2034
+ */
2035
+ routeName: string;
2036
+ /**
2037
+ * Represents the switch to indicate, that this route is not related to the OData service
2038
+ */
2039
+ noOData?: boolean;
2040
+ /**
2041
+ * Represents the binding string to indicate, how the page should be bound relative to the predecessor page or absolute
2042
+ */
2043
+ binding?: string;
2044
+ /**
2045
+ * Represents the the title to be shown on the page
2046
+ */
2047
+ headerTitle?: string;
2048
+ /**
2049
+ * Represents the URL pointing to an icon, that will be shown in the navigation menu additional to the title to represent the page
2050
+ */
2051
+ typeImageUrl?: string;
2052
+ /**
2053
+ * Represents the switch to indicate, whether this route is reached via a 1:1 navigation or a 1:n navigation
2054
+ */
2055
+ noKey?: boolean;
2056
+ }
2057
+ /**
2058
+ * Represents the component to be loaded inside the canvas if sap.suite.ui.generic.template.Canvas is used as component name, and its settings
2059
+ */
2060
+ export interface ImplementingComponentDef {
2061
+ /**
2062
+ * Represents the name of the component to be loaded inside the canvas
2063
+ */
2064
+ componentName: string;
2065
+ /**
2066
+ * Represents a binding string to indicate, how the reuse component should be bound relative to the containing page or absolute
2067
+ */
2068
+ binding?: string;
2069
+ settings?: ComponentSettingDef;
2070
+ pages?: {
2071
+ [k: string]: PagesMap;
2072
+ };
2073
+ }
2074
+ /**
2075
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2076
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]+[\|]?[a-zA-Z0-9_\.\-]+$".
2077
+ *
2078
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2079
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]+[\|]?[a-zA-Z0-9_\.\-]+$".
2080
+ */
2081
+ export interface PagesMap {
2082
+ /**
2083
+ * Represents the navigation property that leads to this page. The navigation links of the previous page (the page that calls this one) are determined through this property
2084
+ */
2085
+ navigationProperty?: string;
2086
+ /**
2087
+ * Represents the entity set that defines either the aggregation or the root object of the component
2088
+ */
2089
+ entitySet?: string;
2090
+ component: ComponentDef1;
2091
+ navigation?: NavigationDef1;
2092
+ embeddedComponents?: EmbeddedComponent2;
2093
+ routingSpec?: RoutingSpecDef1;
2094
+ implementingComponent?: ImplementingComponentDef1;
2095
+ /**
2096
+ * Default layout used to open the corresponding page in FlexibleColumnLayout
2097
+ */
2098
+ defaultLayoutType?: string;
2099
+ /**
2100
+ * Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation
2101
+ */
2102
+ defaultLayoutTypeIfExternalNavigation?: string;
2103
+ pages?: {
2104
+ [k: string]: PagesMap;
2105
+ };
2106
+ }
2107
+ /**
2108
+ * Represents the component and its settings that makes the page
2109
+ */
2110
+ export interface ComponentDef1 {
2111
+ /**
2112
+ * The name of the component
2113
+ */
2114
+ name: string;
2115
+ /**
2116
+ * Switch to create a route for a list (aggregation) if true and routing for an entity if not set or false
2117
+ */
2118
+ list?: boolean;
2119
+ settings?: ComponentSettingDef;
2120
+ }
2121
+ /**
2122
+ * Represents the different navigation targets
2123
+ */
2124
+ export interface NavigationDef1 {
2125
+ display?: ActionPropDef;
2126
+ create?: ActionPropDef1;
2127
+ edit?: ActionPropDef2;
2128
+ }
2129
+ /**
2130
+ * Represent reuse components that should be appended at the end of the template component
2131
+ */
2132
+ export interface EmbeddedComponent2 {
2133
+ /**
2134
+ * This interface was referenced by `EmbeddedComponent`'s JSON-Schema definition
2135
+ * via the `patternProperty` "^[a-zA-Z0-9_.:-]+$".
2136
+ *
2137
+ * This interface was referenced by `EmbeddedComponent2`'s JSON-Schema definition
2138
+ * via the `patternProperty` "^[a-zA-Z0-9_.:-]+$".
2139
+ */
2140
+ [k: string]: {
2141
+ /**
2142
+ * Represents an unique id for the instance of the reuse component inside of the object page
2143
+ */
2144
+ id: string;
2145
+ /**
2146
+ * Represents the title for the content of the reuse component
2147
+ */
2148
+ title: string;
2149
+ /**
2150
+ * Represents an optional element binding for the ComponentContainer that hosts the reuse component
2151
+ */
2152
+ binding?: string;
2153
+ /**
2154
+ * Represents a map to populate the API of the reuse component
2155
+ */
2156
+ settings?: {
2157
+ [k: string]: unknown;
2158
+ };
2159
+ /**
2160
+ * Flag, whether the embedded component should be hidden by default
2161
+ */
2162
+ hiddenByDefault?: {
2163
+ [k: string]: unknown;
2164
+ };
2165
+ /**
2166
+ * Represents group title of reuse components
2167
+ */
2168
+ groupTitle?: string;
2169
+ /**
2170
+ * Represents a section that behaves a leading section for the group
2171
+ */
2172
+ leadingSectionIdOrPath?: string;
2173
+ [k: string]: unknown;
2174
+ } & (
2175
+ | {
2176
+ /**
2177
+ * Represents the name of the reuse component
2178
+ */
2179
+ componentName: string;
2180
+ [k: string]: unknown;
2181
+ }
2182
+ | {
2183
+ /**
2184
+ * Represents the reference to the name of the componentUsages defined in sap.ui5/componentUsages
2185
+ */
2186
+ componentUsage: string;
2187
+ [k: string]: unknown;
2188
+ }
2189
+ | {
2190
+ embeddedComponents: EmbeddedComponent1;
2191
+ [k: string]: unknown;
2192
+ }
2193
+ );
2194
+ }
2195
+ /**
2196
+ * Represents the routing specification
2197
+ */
2198
+ export interface RoutingSpecDef1 {
2199
+ /**
2200
+ * Represents the name of the route
2201
+ */
2202
+ routeName: string;
2203
+ /**
2204
+ * Represents the switch to indicate, that this route is not related to the OData service
2205
+ */
2206
+ noOData?: boolean;
2207
+ /**
2208
+ * Represents the binding string to indicate, how the page should be bound relative to the predecessor page or absolute
2209
+ */
2210
+ binding?: string;
2211
+ /**
2212
+ * Represents the the title to be shown on the page
2213
+ */
2214
+ headerTitle?: string;
2215
+ /**
2216
+ * Represents the URL pointing to an icon, that will be shown in the navigation menu additional to the title to represent the page
2217
+ */
2218
+ typeImageUrl?: string;
2219
+ /**
2220
+ * Represents the switch to indicate, whether this route is reached via a 1:1 navigation or a 1:n navigation
2221
+ */
2222
+ noKey?: boolean;
2223
+ }
2224
+ /**
2225
+ * Represents the component to be loaded inside the canvas if sap.suite.ui.generic.template.Canvas is used as component name, and its settings
2226
+ */
2227
+ export interface ImplementingComponentDef1 {
2228
+ /**
2229
+ * Represents the name of the component to be loaded inside the canvas
2230
+ */
2231
+ componentName: string;
2232
+ /**
2233
+ * Represents a binding string to indicate, how the reuse component should be bound relative to the containing page or absolute
2234
+ */
2235
+ binding?: string;
2236
+ settings?: ComponentSettingDef;
2237
+ pages?: {
2238
+ [k: string]: PagesMap;
2239
+ };
2240
+ }
2241
+ /**
2242
+ * Represents specific attributes for Fiori Elements
2243
+ */
2244
+ export interface JSONSchemaForSAPFENamespace {
2245
+ [k: string]: unknown;
2246
+ }
2247
+ /**
2248
+ * Represents FLP specific attributes
2249
+ */
2250
+ export interface JSONSchemaForSAPFLPNamespace {
2251
+ /**
2252
+ * Represents attributes format version. It is managed by namespace owner
2253
+ */
2254
+ _version?: "1.1.0" | "1.2.0" | "1.3.0";
2255
+ /**
2256
+ * Represents size of the tile
2257
+ */
2258
+ tileSize?: "1x1" | "1x2";
2259
+ /**
2260
+ * Represents the type of FLP entry. It must be 'application' or 'tile' or 'plugin'
2261
+ */
2262
+ type: "application" | "tile" | "plugin";
2263
+ /**
2264
+ * Represents configuration parameters of the FLP entry
2265
+ */
2266
+ config?: {
2267
+ /**
2268
+ * Represents the configuration key and values
2269
+ *
2270
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2271
+ * via the `patternProperty` "^[a-zA-Z0-9\_\.\-]*$".
2272
+ */
2273
+ [k: string]: {
2274
+ [k: string]: unknown;
2275
+ };
2276
+ };
2277
+ /**
2278
+ * Represents the original tile and target mapping which resulted in this app
2279
+ */
2280
+ origin?: {
2281
+ /**
2282
+ * Represents the original tile which resulted in this app
2283
+ */
2284
+ tileId?: string;
2285
+ /**
2286
+ * Represents the original target mapping which resulted in this app
2287
+ */
2288
+ targetMappingId?: string;
2289
+ };
2290
+ }
2291
+ /**
2292
+ * Represents OVP specific attributes
2293
+ */
2294
+ export interface JSONSchemaForSAPOVPNamespace {
2295
+ /**
2296
+ * Represents attributes format version. It is managed by namespace owner
2297
+ */
2298
+ _version?: "1.1.0" | "1.2.0" | "1.3.0";
2299
+ /**
2300
+ * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2301
+ */
2302
+ globalFilterModel?: string;
2303
+ /**
2304
+ * Represents the entity to use as global filter in the smart filter bar control
2305
+ */
2306
+ globalFilterEntityType?: string;
2307
+ /**
2308
+ * Represents the entity set to use as global filter in the smart filter bar control
2309
+ */
2310
+ globalFilterEntitySet?: string;
2311
+ /**
2312
+ * Represents a switch to include basic search in the global filters
2313
+ */
2314
+ showBasicSearch?: boolean;
2315
+ /**
2316
+ * Represents a switch to disable the error page shown on load of overview page when no data is retreived from the backend
2317
+ */
2318
+ disableErrorPage?: boolean;
2319
+ /**
2320
+ * Represents a switch to activate smart variant management in the global filters
2321
+ */
2322
+ smartVariantRequired?: boolean;
2323
+ /**
2324
+ * Represents a switch to show smart filter bar in expanded or collapsed mode
2325
+ */
2326
+ bHeaderExpanded?: boolean;
2327
+ /**
2328
+ * Represents the layout of the card container
2329
+ */
2330
+ containerLayout?: "fixed" | "resizable";
2331
+ /**
2332
+ * Represents a switch to Enable or disable Relative or Normal date formating in ovp application
2333
+ */
2334
+ showDateInRelativeFormat?: boolean;
2335
+ /**
2336
+ * Represents a switch to Enable or Disable the Flexibility of Table cards
2337
+ */
2338
+ disableTableCardFlexibility?: boolean;
2339
+ /**
2340
+ * Represents the switch to activate live update in the global filters, else manual update will be required
2341
+ */
2342
+ enableLiveFilter?: boolean;
2343
+ /**
2344
+ * Flag to enable/disable analytical parameter support for Smart filter bar
2345
+ */
2346
+ considerAnalyticalParameters?: boolean;
2347
+ /**
2348
+ * Time interval in minutes to auto refresh the card models
2349
+ */
2350
+ refreshIntervalInMinutes?: number;
2351
+ /**
2352
+ * Flag to enable/disable semantic date range control for Smart filter bar
2353
+ */
2354
+ useDateRangeType?: boolean;
2355
+ cards: {
2356
+ [k: string]: Card;
2357
+ };
2358
+ resizableLayout?: {
2359
+ [k: string]: ResizableLayoutVariant;
2360
+ };
2361
+ }
2362
+ /**
2363
+ * Represents the card attributes
2364
+ *
2365
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2366
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]+$".
2367
+ */
2368
+ export interface Card {
2369
+ /**
2370
+ * Represents the position of the card in the sequence
2371
+ */
2372
+ sequencePos?: number;
2373
+ /**
2374
+ * Represents the model for the card
2375
+ */
2376
+ model?: string;
2377
+ /**
2378
+ * Represents the card component path to use for this card
2379
+ */
2380
+ template: string;
2381
+ settings?: CardSetting;
2382
+ /**
2383
+ * Represents the card with view switch control
2384
+ *
2385
+ * @minItems 1
2386
+ */
2387
+ tabs?: [TabSetting, ...TabSetting[]];
2388
+ }
2389
+ /**
2390
+ * Represents the card specific properties - properties that are passed to the card
2391
+ */
2392
+ export interface CardSetting {
2393
+ /**
2394
+ * Represents the category of the card- used in the card header
2395
+ */
2396
+ category?: string;
2397
+ /**
2398
+ * Represents the user defined string in placeholder card
2399
+ */
2400
+ itemText?: string;
2401
+ /**
2402
+ * Represents language-dependent title of the card - used in the card header
2403
+ */
2404
+ title: string;
2405
+ /**
2406
+ * Represents language-dependent subtitle of the card - used in the card header
2407
+ */
2408
+ subTitle?: string;
2409
+ /**
2410
+ * Represents things like people, number of items
2411
+ */
2412
+ valueSelectionInfo?: string;
2413
+ /**
2414
+ * Represents the entity set that will be displayed in this card
2415
+ */
2416
+ entitySet?: string;
2417
+ /**
2418
+ * Represents the static content that will be displayed in this card
2419
+ */
2420
+ staticContent?: {
2421
+ [k: string]: unknown;
2422
+ }[];
2423
+ /**
2424
+ * Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard
2425
+ */
2426
+ listFlavor?: "standard" | "bar" | "carousel";
2427
+ /**
2428
+ * Represents the type of list to use for this card. The list can be extended to display more information or condensed to take up less space on the card
34
2429
  */
35
- name: string;
36
- [k: string]: unknown;
37
- };
38
- /**
39
- * Represents the card default grid size in columns and rows
40
- */
41
- export type DefaultSpanDef =
42
- | {
43
- /**
44
- * Represents the number of the number of grid columns
45
- */
46
- cols: number;
47
- /**
48
- * Represents the number of the number of grid rows
49
- */
50
- rows: number;
51
- }
52
- | "auto";
53
-
54
- export interface SAPJSONSchemaForWebApplicationManifestFile {
2430
+ listType?: "extended" | "condensed";
55
2431
  /**
56
- * Represents Application Descriptor format version. It is managed by schema owner
2432
+ * Represents the sort key for the entity set
57
2433
  */
58
- _version: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0";
2434
+ sortBy?: string;
59
2435
  /**
60
- * Represents the URL that the developer would prefer the user agent load when the user launches the web application
2436
+ * Represents the sort order for the entity set
61
2437
  */
62
- start_url?: string;
63
- "sap.app": JSONSchemaForSAPAPPNamespace;
64
- "sap.ui": JSONSchemaForSAPUINamespace;
65
- "sap.ui5"?: JSONSchemaForSAPUI5Namespace;
66
- "sap.platform.abap"?: JSONSchemaForSAPPLATFORMABAPNamespace;
67
- "sap.platform.hcp"?: JSONSchemaForSAPPLATFORMHCPNamespace;
68
- "sap.fiori"?: JSONSchemaForSAPFIORINamespace;
69
- "sap.ui.generic.app"?: JSONSchemaForSAPUIGENERICAPPNamespace;
70
- "sap.flp"?: JSONSchemaForSAPFLPNamespace;
71
- "sap.ovp"?: JSONSchemaForSAPOVPNamespace;
72
- "sap.wda"?: JSONSchemaForSAPWDANamespace;
73
- "sap.apf"?: JSONSchemaForSAPAPFNamespace;
74
- "sap.cloud.portal"?: JSONSchemaForSAPCLOUDPORTALNamespace;
75
- "sap.gui"?: JSONSchemaForSAPGUINamespace;
76
- "sap.ui.smartbusiness.app"?: JSONSchemaForSAPUISMARTBUSINESSAPPNamespace;
77
- "sap.mobile"?: JSONSchemaForSAPMOBILENamespace;
78
- }
79
- /**
80
- * Represents general application attributes
81
- */
82
- export interface JSONSchemaForSAPAPPNamespace {
2438
+ sortOrder?: "ascending" | "descending";
83
2439
  /**
84
- * Application attributes format version. It is managed by namespace owner
2440
+ * Represents the annotation path
85
2441
  */
86
- _version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0";
2442
+ annotationPath?: string;
87
2443
  /**
88
- * Represents the template from which the app was generated
2444
+ * Represents the selection annotation path
89
2445
  */
90
- sourceTemplate?: {
91
- /**
92
- * Represents id of the template from which the app was generated
93
- */
94
- id: string;
95
- /**
96
- * Represents the version of the template from which the app was generated
97
- */
98
- version: string;
99
- [k: string]: unknown;
100
- };
2446
+ selectionAnnotationPath?: string;
101
2447
  /**
102
- * Represents mandatory unique app identifier which must correspond to component 'id/namespace'
2448
+ * Represents the chart annotation path
103
2449
  */
104
- id: string;
2450
+ chartAnnotationPath?: string;
105
2451
  /**
106
- * Represents type of an application and can be application or component or library
2452
+ * Represents the presentation annotation path
107
2453
  */
108
- type: "application" | "component" | "library";
2454
+ presentationAnnotationPath?: string;
109
2455
  /**
110
- * Represents path inside the app to the properties file containing text symbols for the Descriptor
2456
+ * Represents the data point annotation path
111
2457
  */
112
- i18n?: string;
2458
+ dataPointAnnotationPath?: string;
113
2459
  /**
114
- * Represents mandatory version of the app
2460
+ * Represents the identification annotation path
115
2461
  */
116
- applicationVersion: {
117
- version: Version;
118
- [k: string]: unknown;
119
- };
2462
+ identificationAnnotationPath?: string;
120
2463
  /**
121
- * Represents array of relative paths to the nested manifest.json's (mandatory if it contains nested 'manifest.json')
2464
+ * Represents the KPI annotation path
122
2465
  */
123
- embeds?: string[];
2466
+ kpiAnnotationPath?: string;
124
2467
  /**
125
- * Represents relative path back to the manifest.json of an embedding component or library (mandatory for nested 'manifest.json')
2468
+ * Represents the selection presentation annotation path
126
2469
  */
127
- embeddedBy?: string;
2470
+ selectionPresentationAnnotationPath?: string;
128
2471
  /**
129
- * Represents language-dependent mandatory title
2472
+ * Represents the dynamic subtitle annotation path
130
2473
  */
131
- title: string;
2474
+ dynamicSubtitleAnnotationPath?: string;
132
2475
  /**
133
- * Represents language-dependent additional information to the title
2476
+ * Represents the flag to indicate priority of number formatting over sap text
134
2477
  */
135
- subTitle?: string;
2478
+ ignoreSapText?: boolean;
2479
+ defaultSpan?: DefaultSpanDef;
136
2480
  /**
137
- * Represents language-dependent description
2481
+ * Represents the cards for which authorization is required
138
2482
  */
139
- description?: string;
2483
+ requireAppAuthorization?: string;
2484
+ objectStreamCardsSettings?: ObjectStreamCardsSettingsDef;
140
2485
  /**
141
- * Represents array of keywords
2486
+ * Represents the flag to indicate the use of object number/smart field
142
2487
  */
143
- tags?: {
144
- keywords: Tag;
145
- [k: string]: unknown;
146
- };
2488
+ enableLocaleCurrencyFormatting?: boolean;
147
2489
  /**
148
- * Represents application component hierarchy
2490
+ * Represents the configuration to alter the navigation mode in OVP Analytical Cards
149
2491
  */
150
- ach?: string;
2492
+ navigation?: "dataPointNav" | "chartNav" | "headerNav" | "noHeaderNav";
151
2493
  /**
152
- * Represents used data sources with a unique key/alias
2494
+ * Represents a switch to Show or Hide Filters in Cards Headers in OVP application
153
2495
  */
154
- dataSources?: {
155
- [k: string]: DataSource;
156
- };
2496
+ showFilterInHeader?: boolean;
157
2497
  /**
158
- * Represents array of directly used CDS views, which only to be added if directly used via INA protocol and not if used via OData service
2498
+ * Represents a switch to Show or Hide Sorting in Cards Headers in OVP application
159
2499
  */
160
- cdsViews?: string[];
2500
+ showSortingInHeader?: boolean;
161
2501
  /**
162
- * Represents reference to a file (naming convention is resources.json) which contains list with all resources which the app needs
2502
+ * Flag for enabling images in a condensed list card
163
2503
  */
164
- resources?: "resources.json";
2504
+ imageSupported?: boolean;
165
2505
  /**
166
- * Represents a system alias
2506
+ * Flag for show line item detail in list and table card
167
2507
  */
168
- destination?: {
169
- /**
170
- * Represents an alias for the system
171
- */
172
- name: string;
2508
+ showLineItemDetail?: boolean;
2509
+ /**
2510
+ * This property is responsible for showing and hiding text labels on the geo spots
2511
+ */
2512
+ showLabelText?: boolean;
2513
+ /**
2514
+ * This property is responsible for passing custom parameters present in the entity set to the navigating application
2515
+ */
2516
+ customParams?: string;
2517
+ /**
2518
+ * This property is responsible for setting specific chart settings
2519
+ */
2520
+ chartProperties?: {
2521
+ plotArea?: PlotAreaDef;
2522
+ timeAxis?: TimeAxisDef;
173
2523
  };
174
2524
  /**
175
- * Represents a collection of directly used open source libs (not when used via UI5 capsulation)
2525
+ * Represents the configuration to customize the column stacked chart
176
2526
  */
177
- openSourceComponents?: OpenSource[];
2527
+ colorPalette?:
2528
+ | {
2529
+ [k: string]: unknown;
2530
+ }[]
2531
+ | {
2532
+ [k: string]: unknown;
2533
+ };
2534
+ [k: string]: unknown;
2535
+ }
2536
+ /**
2537
+ * Represents the Object Stream properties - properties that are passed to the Object Stream cards
2538
+ */
2539
+ export interface ObjectStreamCardsSettingsDef {
178
2540
  /**
179
- * Represents indicator whether the app is running offline. Possible values are true or false (default)
2541
+ * Represents the flag to show first action in footer of the Quickview cards
180
2542
  */
181
- offline?: boolean;
2543
+ showFirstActionInFooter?: boolean;
182
2544
  /**
183
- * Represents cross navigation for inbound and outbound targets
2545
+ * Represents the custom actions in the Quick View Cards
2546
+ *
2547
+ * @minItems 1
184
2548
  */
185
- crossNavigation?: {
2549
+ customActions?: [CustomActionsSetting, ...CustomActionsSetting[]];
2550
+ [k: string]: unknown;
2551
+ }
2552
+ /**
2553
+ * Represents the properties for the custom actions in the Quick View Cards
2554
+ */
2555
+ export interface CustomActionsSetting {
2556
+ /**
2557
+ * Text displayed for extended actions in Quick View
2558
+ */
2559
+ text?: string;
2560
+ /**
2561
+ * Name of the press handler for extended actions in Quick View
2562
+ */
2563
+ press?: string;
2564
+ /**
2565
+ * Position of extended actions in Quick View
2566
+ */
2567
+ position?: number;
2568
+ [k: string]: unknown;
2569
+ }
2570
+ /**
2571
+ * Plot area is a parent property which defines multiple other properties for smoothness and marker size
2572
+ */
2573
+ export interface PlotAreaDef {
2574
+ /**
2575
+ * Represents whether smoother curves are required or not
2576
+ */
2577
+ isSmoothed?: boolean;
2578
+ /**
2579
+ * Represents the size of the markers in scatter plots
2580
+ */
2581
+ markerSize?: number;
2582
+ /**
2583
+ * dataLabel is a parent property that defines other properties for type
2584
+ */
2585
+ dataLabel?: {
186
2586
  /**
187
- * Represents scopes of a site
2587
+ * Defines whether to display percentage values or actual counts in the donut chart
188
2588
  */
189
- scopes?: {
190
- /**
191
- * Represents unique id of the site
192
- *
193
- * This interface was referenced by `undefined`'s JSON-Schema definition
194
- * via the `patternProperty` "^[\w\.\-]+$".
195
- */
196
- [k: string]: {
197
- value: string;
198
- [k: string]: unknown;
199
- };
200
- };
201
- inbounds: Inbound;
202
- outbounds?: Outbound;
203
- [k: string]: unknown;
2589
+ type?: "value" | "percentage";
204
2590
  };
205
2591
  }
206
2592
  /**
207
- * This interface was referenced by `undefined`'s JSON-Schema definition
208
- * via the `patternProperty` "^[\w\.\-]*$".
2593
+ * Represents the configuration to customize the time axis
2594
+ */
2595
+ export interface TimeAxisDef {
2596
+ levels?: LevelsDef;
2597
+ [k: string]: unknown;
2598
+ }
2599
+ /**
2600
+ * Represents the tab specific properties - properties that are passed to a particular tab in a card
209
2601
  */
210
- export interface DataSource {
2602
+ export interface TabSetting {
211
2603
  /**
212
- * Represents uri of the data source
2604
+ * Represents the annotation path
213
2605
  */
214
- uri: string;
2606
+ annotationPath?: string;
215
2607
  /**
216
- * Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON
2608
+ * Represents the selection annotation path
217
2609
  */
218
- type?: "OData" | "ODataAnnotation" | "INA" | "XML" | "JSON";
219
- settings?: Setting;
2610
+ selectionAnnotationPath?: string;
2611
+ /**
2612
+ * Represents the chart annotation path
2613
+ */
2614
+ chartAnnotationPath?: string;
2615
+ /**
2616
+ * Represents the presentation annotation path
2617
+ */
2618
+ presentationAnnotationPath?: string;
2619
+ /**
2620
+ * Represents the data point annotation path
2621
+ */
2622
+ dataPointAnnotationPath?: string;
2623
+ /**
2624
+ * Represents the identification annotation path
2625
+ */
2626
+ identificationAnnotationPath?: string;
2627
+ /**
2628
+ * Represents the dynamic subtitle annotation path
2629
+ */
2630
+ dynamicSubtitleAnnotationPath?: string;
2631
+ /**
2632
+ * Represents the drop down value to be shown
2633
+ */
2634
+ value?: string;
2635
+ /**
2636
+ * This property is responsible for setting specific chart settings
2637
+ */
2638
+ chartProperties?: {
2639
+ plotArea?: PlotAreaDef;
2640
+ timeAxis?: TimeAxisDef;
2641
+ };
2642
+ /**
2643
+ * Represents the configuration to customize the column stacked chart
2644
+ */
2645
+ colorPalette?:
2646
+ | {
2647
+ [k: string]: unknown;
2648
+ }[]
2649
+ | {
2650
+ [k: string]: unknown;
2651
+ };
2652
+ [k: string]: unknown;
220
2653
  }
221
2654
  /**
222
- * Represents data source type specific attributes (key, value pairs)
2655
+ * Represents the resizable layout variant
2656
+ *
2657
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2658
+ * via the `patternProperty` "^cols_[0-9]+$".
223
2659
  */
224
- export interface Setting {
2660
+ export interface ResizableLayoutVariant {
2661
+ [k: string]: ResizableLayoutVariantCardProperties;
2662
+ }
2663
+ /**
2664
+ * Represents the card properties is a layout variant
2665
+ *
2666
+ * This interface was referenced by `ResizableLayoutVariant`'s JSON-Schema definition
2667
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]+$".
2668
+ */
2669
+ export interface ResizableLayoutVariantCardProperties {
225
2670
  /**
226
- * Represents version of OData: 2.0 is default
2671
+ * Represents the grid column
227
2672
  */
228
- odataVersion?: "2.0" | "4.0";
2673
+ col: number;
229
2674
  /**
230
- * Represents path to local meta data document or annotation uri
2675
+ * Represents the grid row
231
2676
  */
232
- localUri?: string;
2677
+ row: number;
2678
+ /**
2679
+ * Represents the column span
2680
+ */
2681
+ colSpan: number;
2682
+ /**
2683
+ * Represents the row span
2684
+ */
2685
+ rowSpan: number;
2686
+ /**
2687
+ * Represents the visibility of the card
2688
+ */
2689
+ visible?: boolean;
2690
+ }
2691
+ /**
2692
+ * Represents WDA specific attributes
2693
+ */
2694
+ export interface JSONSchemaForSAPWDANamespace {
233
2695
  /**
234
- * Represents array of annotation which references an existing data source of type ODataAnnotation
2696
+ * Represents attributes format version. It is managed by namespace owner
235
2697
  */
236
- annotations?: string[];
2698
+ _version?: "1.1.0" | "1.2.0";
237
2699
  /**
238
- * Indicates that the client is unwilling to accept a response whose age is greater than the number of seconds specified in this field
2700
+ * Represents ID of an application
239
2701
  */
240
- maxAge?: number;
241
- }
242
- export interface OpenSource {
2702
+ applicationId: string;
243
2703
  /**
244
- * Represents a name of the open source as appears on the web
2704
+ * Represents ID of an application configuration
245
2705
  */
246
- name: string;
2706
+ configId?: string;
247
2707
  /**
248
- * Represents a version of the open source (if part of app, version must be specified, if part of UI5 dist layer, version is empty)
2708
+ * Represents SAP Screen Personas Flavor ID
249
2709
  */
250
- version?: string;
2710
+ flavorId?: string;
251
2711
  /**
252
- * Indicates, whether it is part of the app or not
2712
+ * Indicates that WebDynpro Application requires Compatibility Mode, while uses legacy shell services. Possible values are true or false (default)
253
2713
  */
254
- packagedWithMySelf?: boolean;
2714
+ compatibilityMode?: boolean;
255
2715
  }
256
2716
  /**
257
- * Represents cross navigation for inbound target
2717
+ * Represents APF specific attributes
258
2718
  */
259
- export interface Inbound {
2719
+ export interface JSONSchemaForSAPAPFNamespace {
260
2720
  /**
261
- * This interface was referenced by `Inbound`'s JSON-Schema definition
262
- * via the `patternProperty` "^[\w\.\-]+$".
2721
+ * Represents attributes format version. It is managed by namespace owner
263
2722
  */
264
- [k: string]: {
265
- /**
266
- * Represents semantic object
267
- */
268
- semanticObject: string;
269
- /**
270
- * Represents action an the semantic object
271
- */
272
- action: string;
273
- /**
274
- * Represents icon
275
- */
276
- icon?: string;
277
- /**
278
- * Represents language-dependent - different languages via server API or on client
279
- */
280
- title?: I18NKey;
281
- /**
282
- * Represents language-dependent additional information to the title and can overwrite subTitle from sap.app definition
283
- */
284
- subTitle?: I18NKey;
285
- /**
286
- * Represents language-dependent additional information to the title
287
- */
288
- info?: string;
289
- /**
290
- * Represents data source
291
- */
292
- indicatorDataSource?: {
293
- dataSource: string;
294
- path: string;
295
- /**
296
- * Represents refresh interval
297
- */
298
- refresh?: number;
299
- [k: string]: unknown;
300
- };
301
- deviceTypes?: DeviceType;
302
- signature?: SignatureDef;
303
- };
304
- }
305
- /**
306
- * Represents device types for which application is developed
307
- */
308
- export interface DeviceType {
2723
+ _version?: "1.1.0" | "1.2.0";
309
2724
  /**
310
- * Represents indicator whether desktop device is supported, default true
2725
+ * Represents a switch to activate filter reduction so that filters in OData requests can be represented as ABAP select options
311
2726
  */
312
- desktop?: boolean;
2727
+ activateFilterReduction?: boolean;
313
2728
  /**
314
- * Represents indicator whether tablet device is supported, default true
2729
+ * Represents a switch to activate LREP as the persistence for configurations and texts
315
2730
  */
316
- tablet?: boolean;
2731
+ activateLrep?: boolean;
317
2732
  /**
318
- * Represents indicator whether phone device is supported, default true
2733
+ * Represents a switch to use HEAD-Requests instead of GET-Requests when fetching the XSRF-Security-Token
319
2734
  */
320
- phone?: boolean;
2735
+ useHeadRequestForXsrfToken?: boolean;
321
2736
  }
322
2737
  /**
323
- * Represents signature for inbound targets
2738
+ * Represents Cloud Portal specific attributes
324
2739
  */
325
- export interface SignatureDef {
326
- parameters: {
327
- /**
328
- * This interface was referenced by `undefined`'s JSON-Schema definition
329
- * via the `patternProperty` "^[\w\.\-]+$".
330
- */
331
- [k: string]: {
332
- /**
333
- * Represents a default Value
334
- */
335
- defaultValue?: {
336
- /**
337
- * Represents a depending on format either a verbatim default value or a reference
338
- */
339
- value: string;
340
- /**
341
- * Indicates how 'value' is to be interpreted: ('plain': the 'value' is taken as a literal string value| 'reference': the 'value' is a reference to e.g. a UserDefault parameter (e.g. 'UserDefault.CostCenter'), the resolved parameter value is used)
342
- */
343
- format?: "plain" | "reference";
344
- };
345
- /**
346
- * Represents a filter , only if input parameter matches filter
347
- */
348
- filter?: {
349
- /**
350
- * Represents a depending on format either a verbatim filter value, a regular expression or a reference
351
- */
352
- value: string;
353
- /**
354
- * Indicates how 'value' is to be interpreted: ('plain': the actual value must match the 'value' property directly| 'regexp': the 'value' represents a regexp which must be present in the actual value| 'reference' : the 'value' represents a reference to e.g. a UserDefault parameter (e.g. 'UserDefault.CostCenter'), the resolved parameter value is then directly compared with the actual value)
355
- */
356
- format?: "plain" | "regexp" | "reference";
357
- };
358
- required?: boolean;
359
- /**
360
- * Represents the parameter name in legacy ABAP application, e.g. 'RF05L-BUKRS' for parameter 'CompanyCode'
361
- */
362
- renameTo?: string;
363
- };
364
- };
365
- /**
366
- * Indicates how additional parameters to the declared signature are treated: ('ignored': parameters are not passed on to application | 'allowed': parameters are passed on to application | 'notallowed': additional parameters are not allowed)
367
- */
368
- additionalParameters: "ignored" | "allowed" | "notallowed";
2740
+ export interface JSONSchemaForSAPCLOUDPORTALNamespace {
2741
+ [k: string]: unknown;
369
2742
  }
370
2743
  /**
371
- * Represents cross navigation for outbound target
2744
+ * Represents GUI specific attributes
372
2745
  */
373
- export interface Outbound {
2746
+ export interface JSONSchemaForSAPGUINamespace {
374
2747
  /**
375
- * This interface was referenced by `Outbound`'s JSON-Schema definition
376
- * via the `patternProperty` "^[\w\.\-]+$".
2748
+ * Represents attributes format version. It is managed by namespace owner
377
2749
  */
378
- [k: string]: {
379
- /**
380
- * Represents semantic object
381
- */
382
- semanticObject: string;
383
- /**
384
- * Represents action an the semantic object
385
- */
386
- action: string;
387
- /**
388
- * Represents parameters for outbound targets
389
- */
390
- parameters?: {
391
- /**
392
- * This interface was referenced by `undefined`'s JSON-Schema definition
393
- * via the `patternProperty` "^[\w\.\-]+$".
394
- */
395
- [k: string]: {
396
- [k: string]: unknown;
397
- };
398
- };
399
- };
2750
+ _version?: "1.1.0" | "1.2.0";
2751
+ /**
2752
+ * Represents transaction of an application
2753
+ */
2754
+ transaction: string;
2755
+ /**
2756
+ * Represents SAP Screen Personas Flavor ID
2757
+ */
2758
+ flavorId?: string;
400
2759
  }
401
2760
  /**
402
- * Represents general ui attributes
2761
+ * Represents Application Integration specific attributes
403
2762
  */
404
- export interface JSONSchemaForSAPUINamespace {
2763
+ export interface JSONSchemaForSAPINTEGRATIONNamespace {
405
2764
  /**
406
- * Represents UI attributes format version. It is managed by namespace owner
2765
+ * Represents attributes format version. It is managed by namespace owner
407
2766
  */
408
- _version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0";
2767
+ _version?: "1.0.0";
409
2768
  /**
410
- * Represents UI technology. The possible values are UI5 (default), WDA, NWBC and URL
2769
+ * Reference to the desired URL Template
411
2770
  */
412
- technology: "UI5" | "WDA" | "NWBC" | "GUI" | "URL";
2771
+ urlTemplateId: string;
413
2772
  /**
414
- * Represents icons which used in application
2773
+ * Represents configuration parameters which will be used by Template Engine to compile URL Template
415
2774
  */
416
- icons?: {
417
- /**
418
- * Represents icon of the app
419
- */
420
- icon?: string;
421
- /**
422
- * Represents ICO file to be used inside the browser and for desktop shortcuts
423
- */
424
- favIcon?: string;
425
- /**
426
- * Represents 57x57 pixel version for non-retina iPhones
427
- */
428
- phone?: string;
429
- /**
430
- * Represents 114x114 pixel version for non-retina iPhones
431
- */
432
- "phone@2"?: string;
2775
+ parameters: {
433
2776
  /**
434
- * Represents 72x72 pixel version for non-retina iPads
2777
+ * Represents the name of the desired parameter
435
2778
  */
436
- tablet?: string;
2779
+ key: string;
437
2780
  /**
438
- * Represents 144x144 pixel version for non-retina iPads
2781
+ * Represents the actual value of the desired parameter
439
2782
  */
440
- "tablet@2"?: string;
441
- };
442
- /**
443
- * Represents device types on which application is running. Supported device types are desktop, tablet and phone
444
- */
445
- deviceTypes: DeviceType1 & {
2783
+ value: string;
446
2784
  [k: string]: unknown;
447
- };
448
- /**
449
- * Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal
450
- */
451
- supportedThemes?: string[];
452
- /**
453
- * Indicates whether app should run in full screen mode: possible values: true or false
454
- */
455
- fullWidth?: boolean;
2785
+ }[];
456
2786
  [k: string]: unknown;
457
2787
  }
458
2788
  /**
459
- * Represents device types on which the app is running
2789
+ * Represents WCF Application specific attributes
460
2790
  */
461
- export interface DeviceType1 {
462
- /**
463
- * Represents indicator whether desktop device is supported, default true
464
- */
465
- desktop?: boolean;
2791
+ export interface JSONSchemaForSAPWCFNamespace {
466
2792
  /**
467
- * Represents indicator whether tablet device is supported, default true
2793
+ * Represents attributes format version. It is managed by namespace owner
468
2794
  */
469
- tablet?: boolean;
2795
+ _version?: "1.1.0";
470
2796
  /**
471
- * Represents indicator whether phone device is supported, default true
2797
+ * Represents the target technical id for a WCF Application
472
2798
  */
473
- phone?: boolean;
2799
+ "wcf-target-id": string;
474
2800
  }
475
2801
  /**
476
- * Represents sapui5 attributes
2802
+ * Represents specific attributes for Smart Business
2803
+ */
2804
+ export interface JSONSchemaForSAPUISMARTBUSINESSAPPNamespace {
2805
+ [k: string]: unknown;
2806
+ }
2807
+ /**
2808
+ * Represents mobile specific attributes
477
2809
  */
478
- export interface JSONSchemaForSAPUI5Namespace {
2810
+ export interface JSONSchemaForSAPMOBILENamespace {
479
2811
  /**
480
- * Represents SAPUI5 attributes format version. It is managed by namespace owner
2812
+ * Represents attributes format version. It is managed by namespace owner
481
2813
  */
482
- _version?: "1.1.0" | "1.2.0" | "1.3.0";
483
- resources?: Resource;
2814
+ _version?: "1.1.0";
484
2815
  /**
485
- * Represents external dependences such as libraries or components, that will be loaded by UI5 Core in the initialization phase of your Component and can be used after it
2816
+ * Represents mobile specific attributes
486
2817
  */
487
- dependencies: {
488
- /**
489
- * Represents the minimum version of SAP UI5 that your component requires
490
- */
491
- minUI5Version: string;
492
- /**
493
- * Represents ...
494
- */
495
- incompatibleLimitation?: boolean;
496
- /**
497
- * Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component
498
- */
499
- libs?: {
500
- [k: string]: Lib;
501
- };
502
- /**
503
- * Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component
504
- */
505
- components?: {
506
- [k: string]: Component;
507
- };
2818
+ definingRequests: {
2819
+ [k: string]: DefiningRequest;
508
2820
  };
2821
+ [k: string]: unknown;
2822
+ }
2823
+ /**
2824
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2825
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]*".
2826
+ */
2827
+ export interface DefiningRequest {
509
2828
  /**
510
- * Represents models which should be created/destroyed with the life-cycle of the component
2829
+ * Represents reference to dataSource under sap.app
511
2830
  */
512
- models?: {
513
- [k: string]: Model;
514
- };
2831
+ dataSource: string;
515
2832
  /**
516
- * Represents relative path to the resource. Only relative path allowed, no '../'
2833
+ * Represents path to the title collection
517
2834
  */
518
- resourceRoots?: {
519
- [k: string]: ResourceRoot;
520
- };
2835
+ path: string;
521
2836
  /**
522
- * Represents the name of the root view
2837
+ * Represents indicator whether streams should be retrieved
523
2838
  */
524
- rootView?:
525
- | string
526
- | {
527
- /**
528
- * Represents the name of the view
529
- */
530
- viewName: string;
531
- /**
532
- * Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template
533
- */
534
- type?: "XML" | "JSON" | "JS" | "HTML" | "Template";
535
- [k: string]: unknown;
536
- };
2839
+ retrieveStreams?: boolean;
2840
+ }
2841
+ /**
2842
+ * Represents specific attributes for SAP CoPilot
2843
+ */
2844
+ export interface JSONSchemaForSAPCOPILOTNamespace {
537
2845
  /**
538
- * Represents the usage of validation handling by MessageManager for this component (enable/disable)
2846
+ * Represents SAP.COPILOT attributes format version. It is managed by namespace owner
539
2847
  */
540
- handleValidation?: boolean;
2848
+ _version?: "1.0.0" | "1.1.0";
541
2849
  /**
542
- * Represents the static configuration for components
2850
+ * Settings for the context analysis features of SAP CoPilot
543
2851
  */
544
- config?: {
545
- [k: string]: Config;
2852
+ contextAnalysis?: {
2853
+ /**
2854
+ * Enable/Disable the ability for SAP CoPilot to analyze your Application Screens and add the found objects to a Collection
2855
+ */
2856
+ allowAddingObjectsFromAppScreenToCollection?: boolean;
2857
+ /**
2858
+ * A list of the whitelisted EntityTypes, prefixed with their namespace, that SAP CoPilot can display. The empty list is ignored, thus allowing all EntityTypes by default.
2859
+ */
2860
+ whitelistedEntityTypes?: string[];
2861
+ [k: string]: unknown;
546
2862
  };
547
2863
  /**
548
- * Represents the configuration of routing
2864
+ * Settings for the Digital Assistant features of SAP CoPilot
549
2865
  */
550
- routing?: {
2866
+ digitalAssistant?: {
551
2867
  /**
552
- * Represents the default properties defined for route and target
2868
+ * A list of Intent
553
2869
  */
554
- config?: {
555
- /**
556
- * Represents the router class
557
- */
558
- routerClass?: string;
559
- /**
560
- * Indicates whether the Views in routing are loaded asyncly
561
- */
562
- async?: boolean;
2870
+ intentDefinition?: {
563
2871
  /**
564
- * Represents information about targets to display when no route is matched
2872
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2873
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
565
2874
  */
566
- bypassed?: {
2875
+ [k: string]: {
567
2876
  /**
568
- * Represents one or multiple names of targets that are displayed when no route is matched
2877
+ * Represents the uri of the intent
569
2878
  */
570
- target: string[] | string;
571
- };
572
- [k: string]: unknown;
573
- } & Target;
574
- routes?:
575
- | Route[]
576
- | {
577
- [k: string]: RouteWithoutName;
578
- };
579
- /**
580
- * Represents the definition of targets
581
- */
582
- targets?: {
583
- /**
584
- * This interface was referenced by `undefined`'s JSON-Schema definition
585
- * via the `patternProperty` "[\s\S]*".
586
- */
587
- [k: string]: Target & {
2879
+ uri?: string;
588
2880
  /**
589
- * Represents the name of a view that will be created
2881
+ * A list of the sap.app.dataSources used by the intent
590
2882
  */
591
- viewName: string;
592
- [k: string]: unknown;
593
- } & {
2883
+ dataSources?: string[];
594
2884
  /**
595
- * Represents the id of the created view
2885
+ * Represents the uri of the translation file
596
2886
  */
597
- viewID?: string;
2887
+ i18n?: string;
598
2888
  [k: string]: unknown;
599
2889
  };
600
2890
  };
601
2891
  [k: string]: unknown;
602
2892
  };
2893
+ [k: string]: unknown;
2894
+ }
2895
+ /**
2896
+ * Represents specific attributes for SAP.MAP
2897
+ */
2898
+ export interface JSONSchemaForSAPMAPNamespace {
2899
+ [k: string]: unknown;
2900
+ }
2901
+ /**
2902
+ * Represents specific attributes for SAP URL
2903
+ */
2904
+ export interface JSONSchemaForSAPURLNamespace {
603
2905
  /**
604
- * Represents the extension of an additional component
2906
+ * Represents attributes format version. It is managed by namespace owner
605
2907
  */
606
- extends?: {
607
- /**
608
- * Represents the component name
609
- */
610
- component?: string;
611
- /**
612
- * Represents minimal version of the component
613
- */
614
- minVersion?: string;
615
- /**
616
- * Represents extensions of the component
617
- */
618
- extensions?: {
619
- [k: string]: unknown;
620
- };
621
- };
2908
+ _version?: "1.0.0";
622
2909
  /**
623
- * Represents object with content density modes the app is supporting. Supported density modes are 'cozy' and 'compact'
2910
+ * Represents URI of an application
624
2911
  */
625
- contentDensities: {
626
- /**
627
- * Represents indicator whether compact mode is supported
628
- */
629
- compact: boolean;
630
- /**
631
- * Represents indicator whether cozy mode is supported
632
- */
633
- cozy: boolean;
634
- };
2912
+ uri: string;
2913
+ }
2914
+ /**
2915
+ * Represents SFSF platform specific attributes
2916
+ */
2917
+ export interface JSONSchemaForSAPPLATFORMSFSFNamespace {
635
2918
  /**
636
- * Represents a name of the UI5 component
2919
+ * Represents attributes format version. It is managed by namespace owner
637
2920
  */
638
- componentName?: string;
2921
+ _version?: "1.0.0";
639
2922
  /**
640
- * Enables the auto prefixing of IDs of ManagedObjects (e.g. Controls) which are created in context of the Component (e.g. createContent invocation)
2923
+ * Represents the uri inside the SFSF app
641
2924
  */
642
- autoPrefixId?: boolean;
2925
+ uri?: string;
643
2926
  /**
644
- * Represents the identifier of an application variant. The value will be calculated and should not be set manually
2927
+ * Represents the SFSF application name
645
2928
  */
646
- appVariantId?: string;
2929
+ appName: string;
647
2930
  /**
648
- * Represents a list of the services
2931
+ * Represents the version of the SFSF application
649
2932
  */
650
- services?: {
651
- [k: string]: Service;
652
- };
2933
+ appVersion?: string;
653
2934
  }
654
2935
  /**
655
- * Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'
2936
+ * Represents cloud platform specific attributes
656
2937
  */
657
- export interface Resource {
658
- js?: {
659
- uri: string;
660
- [k: string]: unknown;
661
- }[];
662
- css?: {
663
- uri: string;
664
- id?: string;
665
- [k: string]: unknown;
666
- }[];
667
- [k: string]: unknown;
2938
+ export interface JSONSchemaForSAPCLOUDNamespace {
2939
+ /**
2940
+ * Represents attributes format version. It is managed by namespace owner
2941
+ */
2942
+ _version?: "1.0.0" | "1.1.0" | "1.2.0";
2943
+ /**
2944
+ * Unique Business Service Identifier
2945
+ */
2946
+ service?: string;
2947
+ /**
2948
+ * Specify if the UI can be accessed from a different space than origin development space
2949
+ */
2950
+ public?: boolean;
668
2951
  }
669
2952
  /**
670
- * Represents sapui5 library name
671
- *
672
- * This interface was referenced by `undefined`'s JSON-Schema definition
673
- * via the `patternProperty` "^([a-z][a-z0-9]{0,39})(\.[a-z][a-z0-9]{0,39})*$".
2953
+ * Represents list content attributes
674
2954
  */
675
- export interface Lib {
2955
+ export interface ContentType {
2956
+ data?: Data;
2957
+ item?: ContentTypeList;
676
2958
  /**
677
- * Represents minimal version of ui5 library
2959
+ * Represents number of items
678
2960
  */
679
- minVersion?: string;
2961
+ maxItems?: number | SimpleBinding;
2962
+ }
2963
+ /**
2964
+ * Represents request and response attributes
2965
+ */
2966
+ export interface Data {
2967
+ request?: Request;
680
2968
  /**
681
- * Represents ...
2969
+ * The path from the JSON to be used as root
682
2970
  */
683
- lazy?: boolean;
684
- [k: string]: unknown;
2971
+ path?: string;
2972
+ /**
2973
+ * The data to be used directly. Without making requests.
2974
+ */
2975
+ json?:
2976
+ | {
2977
+ [k: string]: unknown;
2978
+ }
2979
+ | unknown[];
2980
+ service?: Service;
2981
+ /**
2982
+ * Represents interval in seconds, after which a new data request will be triggered.
2983
+ */
2984
+ updateInterval?: number | SimpleBinding;
2985
+ extension?: Extension;
685
2986
  }
686
2987
  /**
687
- * Represents sapui5 component name
688
- *
689
- * This interface was referenced by `undefined`'s JSON-Schema definition
690
- * via the `patternProperty` "^([a-z_$][a-z0-9_$]{0,39}\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$".
2988
+ * Represents request attributes
691
2989
  */
692
- export interface Component {
2990
+ export interface Request {
693
2991
  /**
694
- * Represents minimal version of ui5 component
2992
+ * The mode of the request
695
2993
  */
696
- minVersion?: string;
2994
+ mode?: (("no-cors" | "same-origin" | "cors") | SimpleBinding) & string;
697
2995
  /**
698
- * Represents ...
2996
+ * The URL to make the request to
699
2997
  */
700
- lazy?: boolean;
2998
+ url: string;
2999
+ /**
3000
+ * The HTTP method
3001
+ */
3002
+ method?: (("GET" | "POST") | SimpleBinding) & string;
3003
+ parameters?: Parameters;
3004
+ /**
3005
+ * Represents HTTP headers
3006
+ */
3007
+ headers?: {
3008
+ [k: string]: unknown;
3009
+ };
3010
+ /**
3011
+ * Indicates whether cross-site requests should be made using credentials.
3012
+ */
3013
+ withCredentials?: boolean | SimpleBinding;
3014
+ }
3015
+ /**
3016
+ * Represents the request parameters. If it is a POST request the parameters will be put as key/value pairs into the body of the request
3017
+ */
3018
+ export interface Parameters {
701
3019
  [k: string]: unknown;
702
3020
  }
703
3021
  /**
704
- * Represents sapui5 model name
705
- *
706
- * This interface was referenced by `undefined`'s JSON-Schema definition
707
- * via the `patternProperty` "^[a-zA-Z0-9_\.\-\|\@]*$".
3022
+ * [Experimental] Provides a way to request data via extension.
708
3023
  */
709
- export interface Model {
3024
+ export interface Extension {
710
3025
  /**
711
- * Represents model class name
3026
+ * The method of the extension, which fetches data.
712
3027
  */
713
- type?: string;
3028
+ method: string;
714
3029
  /**
715
- * Represents string of key/alias from sap.app dataSources to reference an existing data source
3030
+ * The arguments, with which the method will be called.
716
3031
  */
717
- dataSource?: string;
3032
+ args?: unknown[];
3033
+ }
3034
+ /**
3035
+ * The template for all items
3036
+ */
3037
+ export interface ContentTypeList {
718
3038
  /**
719
- * Represents URI for the model
3039
+ * The title of the item.
720
3040
  */
721
- uri?: string;
3041
+ title?: Field | string;
722
3042
  /**
723
- * Indicates that the model will be immediately created after the manifest is loaded by Component Factory and before the Component instance is created
3043
+ * The description of the item.
724
3044
  */
725
- preload?: boolean;
726
- settings?: Ui5Setting;
3045
+ description?: Field | string;
3046
+ info?: {
3047
+ /**
3048
+ * The value of the field
3049
+ */
3050
+ value?: string;
3051
+ state?: State | SimpleBinding;
3052
+ };
3053
+ /**
3054
+ * The highlight of the item.
3055
+ */
3056
+ highlight?: (State | SimpleBinding) & string;
3057
+ icon?: Icon;
3058
+ /**
3059
+ * Defines actions that can be applied on the item.
3060
+ */
3061
+ actions?: Action[];
3062
+ chart?: Microchart;
727
3063
  }
728
- export interface Ui5Setting {
3064
+ export interface Field {
729
3065
  /**
730
- * Represents default binding mode and must be a string value from sap.ui.model.BindingMode. Possible values: Default, OneTime, OneWay, TwoWay
3066
+ * Represents a label of the field; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
731
3067
  */
732
- defaultBindingMode?: "Default" | "OneTime" | "OneWay" | "TwoWay";
733
- [k: string]: unknown;
3068
+ label?: string;
3069
+ /**
3070
+ * The value of the field
3071
+ */
3072
+ value?: string;
734
3073
  }
735
3074
  /**
736
- * Represents the definition of each target
3075
+ * Represents icon attributes
737
3076
  */
738
- export interface Target {
739
- /**
740
- * Represents the type of view that is going to be created
741
- */
742
- viewType?: "XML" | "JSON" | "JS" | "HTML" | "Template";
3077
+ export interface Icon {
743
3078
  /**
744
- * Represents a prefix that is prepended in front of the viewName
3079
+ * Represents icon name or source URL
745
3080
  */
746
- viewPath?: string;
3081
+ src?: string;
747
3082
  /**
748
- * Represents the id of the view that contains the control specified by the 'controlId'
3083
+ * Alternative text for the icon
749
3084
  */
750
- targetParent?: string;
3085
+ alt?: string;
751
3086
  /**
752
- * Represents the id of the control where you want to place the view created by the target
3087
+ * Represents the shape of the icon
753
3088
  */
754
- controlId?: string;
3089
+ shape?: (("Square" | "Circle") | SimpleBinding) & string;
755
3090
  /**
756
- * Represents the name of an aggregation of the controlId that contains the views
3091
+ * Initials for the avatar. Up to 2 symbols. If the image provided to the 'src' property fails to load, then the text will be shown.
757
3092
  */
758
- controlAggregation?: string;
3093
+ text?: SimpleBinding;
759
3094
  /**
760
- * Whether the aggregation of the control should be cleared before adding the view
3095
+ * [Experimental] The size of the icon.
761
3096
  */
762
- clearControlAggregation?: boolean;
3097
+ size?: ("XS" | "S" | "M") | SimpleBinding;
3098
+ backgroundColor?: IconBackgroundColor;
3099
+ }
3100
+ /**
3101
+ * Represents actions that can be applied on card elements
3102
+ */
3103
+ export interface Action {
763
3104
  /**
764
- * Represents the name of another target which will also be displayed once this target is displayed
3105
+ * The type of the action
765
3106
  */
766
- parent?: string;
3107
+ type: (("Navigation" | "Submit") | SimpleBinding) & string;
767
3108
  /**
768
- * Represents the level of the current view which is used to define the transition direction when navigate to this view
3109
+ * Represents the state of the action
769
3110
  */
770
- viewLevel?: number;
3111
+ enabled?: boolean | SimpleBinding;
3112
+ service?: Service;
771
3113
  /**
772
- * Represents the type of transition when navigating from previous view to this view
3114
+ * Represents the URL that will be used as navigation target if no service is provided
773
3115
  */
774
- transition?: string | ("slide" | "flip" | "fade" | "show");
3116
+ url?: string;
3117
+ parameters?: Parameters1;
775
3118
  /**
776
- * Represents the transition parameters that are passed to the event handlers
3119
+ * Specifies where to open the 'url', if it is provided.
777
3120
  */
778
- transitionParameters?: {
779
- [k: string]: unknown;
780
- };
781
- [k: string]: unknown;
3121
+ target?: (Target | SimpleBinding) & string;
782
3122
  }
783
3123
  /**
784
- * Represents the definition of route without the option 'name'. This is used when routes are defined in an object.
785
- *
786
- * This interface was referenced by `undefined`'s JSON-Schema definition
787
- * via the `patternProperty` "[\s\S]*".
3124
+ * Represents parameters that are passed in the actions
788
3125
  */
789
- export interface RouteWithoutName {
3126
+ export interface Parameters1 {
3127
+ [k: string]: unknown;
3128
+ }
3129
+ export interface Microchart1 {
790
3130
  /**
791
- * Represents the url pattern that the route is matched against
3131
+ * Represents the type of the Microchart.
792
3132
  */
793
- pattern?: string;
3133
+ type: "Bullet";
3134
+ /**
3135
+ * The actual value shown as a colored horizontal bar
3136
+ */
3137
+ value?: number | SimpleBinding;
3138
+ /**
3139
+ * The minimum scale value for the bar chart
3140
+ */
3141
+ minValue?: number | SimpleBinding;
3142
+ /**
3143
+ * The maximum scale value for the bar chart
3144
+ */
3145
+ maxValue?: number | SimpleBinding;
3146
+ /**
3147
+ * The actual value, which will be displayed as a text next to the bar
3148
+ */
3149
+ displayValue?: string;
3150
+ /**
3151
+ * The target value - displayed as a vertical line (marker)
3152
+ */
3153
+ target?: number | SimpleBinding;
3154
+ /**
3155
+ * The scaling suffix that is appended to all values
3156
+ */
3157
+ scale?: string;
3158
+ /**
3159
+ * The state color of the bar
3160
+ */
3161
+ color?: (EnumsValueColor | SimpleBinding) & string;
3162
+ /**
3163
+ * The thresholds indicators of the bar
3164
+ */
3165
+ thresholds?: MicrochartBullet[];
3166
+ }
3167
+ export interface MicrochartBullet {
3168
+ /**
3169
+ * The value of the threshold
3170
+ */
3171
+ value?: number | SimpleBinding;
3172
+ /**
3173
+ * The state color of the threshold
3174
+ */
3175
+ color?: (EnumsValueColor | SimpleBinding) & string;
3176
+ }
3177
+ export interface Microchart2 {
794
3178
  /**
795
- * Whether the route should be matched when another route is already matched
3179
+ * Represents the type of the Microchart.
796
3180
  */
797
- greedy?: boolean;
3181
+ type: "StackedBar";
798
3182
  /**
799
- * Represents one or multiple names of targets which are displayed when the route is matched
3183
+ * The maximum scale value for the bar chart
800
3184
  */
801
- target?: string[] | string;
802
- [k: string]: unknown;
803
- }
804
- /**
805
- * Represents the definition of each service
806
- *
807
- * This interface was referenced by `undefined`'s JSON-Schema definition
808
- * via the `patternProperty` "[\s\S]*".
809
- */
810
- export interface Service {
3185
+ maxValue?: number | SimpleBinding;
811
3186
  /**
812
- * Represents the name of the service factory
3187
+ * The value, which will be displayed as a text next to the bar
813
3188
  */
814
- factoryName: string;
3189
+ displayValue?: string;
815
3190
  /**
816
- * Indicates whether the service optional or not
3191
+ * The bars of the chart.
817
3192
  */
818
- optional?: boolean;
819
- [k: string]: unknown;
3193
+ bars?: MicrochartStackedBar[];
820
3194
  }
821
- /**
822
- * Represents ABAP platform specific attributes
823
- */
824
- export interface JSONSchemaForSAPPLATFORMABAPNamespace {
3195
+ export interface MicrochartStackedBar {
825
3196
  /**
826
- * Represents attributes format version. It is managed by namespace owner
3197
+ * The actual value shown as a colored horizontal bar
827
3198
  */
828
- _version?: "1.1.0" | "1.2.0";
3199
+ value?: number | SimpleBinding;
829
3200
  /**
830
- * Represents the uri of the app in the ABAP system
3201
+ * The value, which will be displayed as a text in the tooltip of the bar
831
3202
  */
832
- uri?: string;
3203
+ displayValue?: string;
833
3204
  /**
834
- * Represents the alternative uri of the app in the ABAP system for starting the application
3205
+ * Title, which will be displayed in the legend
835
3206
  */
836
- uriNwbc?: string;
3207
+ legendTitle?: string;
3208
+ /**
3209
+ * The color of the bar
3210
+ */
3211
+ color?: (EnumsValueColor | string) & string;
837
3212
  }
838
3213
  /**
839
- * Represents HANA Cloud Platform platform specific attributes
3214
+ * Represents analytical content attributes
840
3215
  */
841
- export interface JSONSchemaForSAPPLATFORMHCPNamespace {
842
- /**
843
- * Represents attributes format version. It is managed by namespace owner
844
- */
845
- _version?: "1.1.0" | "1.2.0" | "1.3.0";
3216
+ export interface ContentType1 {
3217
+ data?: Data;
846
3218
  /**
847
- * Represents the uri of the app in the HANA Cloud Platform
3219
+ * Describes the type of the chart
848
3220
  */
849
- uri?: string;
3221
+ chartType?: (("Line" | "StackedColumn" | "StackedBar" | "Donut") | SimpleBinding) & string;
3222
+ legend?: ContentTypeAnalytical;
850
3223
  /**
851
- * Represents the alternative uri of the app in the ABAP system for starting the application
3224
+ * Describes the plotArea properties
852
3225
  */
853
- uriNwbc?: string;
3226
+ plotArea?: {
3227
+ dataLabel?: ContentTypeAnalytical1;
3228
+ categoryAxisText?: ContentTypeAnalytical2;
3229
+ valueAxisText?: ContentTypeAnalytical2;
3230
+ };
854
3231
  /**
855
- * Represents the provider account of the HTML5 application
3232
+ * Represents title attributes
856
3233
  */
857
- providerAccount?: string;
3234
+ title?: {
3235
+ /**
3236
+ * Represents the visibility state of the title
3237
+ */
3238
+ visible?: boolean | SimpleBinding;
3239
+ /**
3240
+ * Represents title text
3241
+ */
3242
+ text?: string;
3243
+ /**
3244
+ * Represents the title alignment
3245
+ */
3246
+ alignment?: ("Left" | "Center" | "Right") | SimpleBinding;
3247
+ };
858
3248
  /**
859
- * Represents the HTML5 application name
3249
+ * Represents the value set for measure axis
860
3250
  */
861
- appName?: string;
3251
+ measureAxis?: string;
862
3252
  /**
863
- * Represents the version of the HTML5 application
3253
+ * Represents the value set for dimension axis
864
3254
  */
865
- appVersion?: string;
3255
+ dimensionAxis?: string;
3256
+ dimensions?: Field[];
3257
+ measures?: Field[];
866
3258
  /**
867
- * Indicates that HCP application is multi-version enabled
3259
+ * Defines actions that can be applied on the content.
868
3260
  */
869
- multiVersionApp?: boolean;
3261
+ actions?: Action[];
870
3262
  }
871
3263
  /**
872
- * Represents SAP Fiori specific attributes
3264
+ * Represents chart legend attributes
873
3265
  */
874
- export interface JSONSchemaForSAPFIORINamespace {
3266
+ export interface ContentTypeAnalytical {
875
3267
  /**
876
- * Represents attributes format version. It is managed by namespace owner
3268
+ * Represent the visibility state of the legend
877
3269
  */
878
- _version?: "1.1.0";
3270
+ visible?: boolean | SimpleBinding;
879
3271
  /**
880
- * Represents array of registration ids, i.e. for Fiori apps fiori id(s)
3272
+ * Representation of where the legend will be positioned
881
3273
  */
882
- registrationIds: string[];
3274
+ position?: (("Top" | "Bottom" | "Left" | "Right") | SimpleBinding) & string;
883
3275
  /**
884
- * Represents architecture type of an application. The supported types are transactional or analytical or factsheet or reusecomponent or fpmwebdynpro or designstudio
3276
+ * Representation of how the legend will be aligned
885
3277
  */
886
- archeType: "transactional" | "analytical" | "factsheet" | "reusecomponent" | "fpmwebdynpro" | "designstudio";
3278
+ alignment?: (("TopLeft" | "Center") | SimpleBinding) & string;
887
3279
  }
888
3280
  /**
889
- * Represents GENERIC APP specific attributes
3281
+ * Represents value attributes in the plot area
890
3282
  */
891
- export interface JSONSchemaForSAPUIGENERICAPPNamespace {
892
- _version?: "1.1.0" | "1.2.0";
893
- settings?: SettingDef;
3283
+ export interface ContentTypeAnalytical1 {
894
3284
  /**
895
- * Represents one ore more pages of an application. UI5 routing is created from the definitions in this section
3285
+ * Represents the visibility state of the dataLabel
896
3286
  */
897
- pages?: Page[];
3287
+ visible?: boolean | SimpleBinding;
3288
+ /**
3289
+ * Represents the visibility state of 'show total' indicator
3290
+ */
3291
+ showTotal?: boolean | SimpleBinding;
898
3292
  }
899
3293
  /**
900
- * Represents global settings for the application controller
3294
+ * Represents descriptive text of the axis
901
3295
  */
902
- export interface SettingDef {
903
- [k: string]: unknown;
904
- }
905
- export interface Page {
906
- /**
907
- * Represents the navigation property that leads to this page. The navigation links of the previous page (the page that calls this one) are determined through this property
908
- */
909
- navigationProperty?: string;
3296
+ export interface ContentTypeAnalytical2 {
910
3297
  /**
911
- * Represents the entity set that defines either the aggregation or the root object of the component
3298
+ * Represents the visibility state of the descriptive axis text
912
3299
  */
913
- entitySet: string;
914
- component: ComponentDef;
915
- navigation?: NavigationDef;
916
- embeddedComponents?: EmbeddedComponent;
917
- pages?: Page[];
3300
+ visible?: boolean | SimpleBinding;
918
3301
  }
919
3302
  /**
920
- * Represents the component and its settings that makes the page
3303
+ * Represents time related content
921
3304
  */
922
- export interface ComponentDef {
923
- /**
924
- * The name of the component
925
- */
926
- name: string;
3305
+ export interface ContentType2 {
3306
+ data?: Data;
3307
+ item?: ContentTypeTimeline;
927
3308
  /**
928
- * Switch to create a route for a list (aggregation) if true and routing for an entity if not set or false
3309
+ * Represents number of items
929
3310
  */
930
- list?: boolean;
931
- settings?: ComponentSettingDef;
3311
+ maxItems?: number | SimpleBinding;
932
3312
  }
933
3313
  /**
934
- * Represents the settings specific to one component
3314
+ * Defines the timeline item
935
3315
  */
936
- export interface ComponentSettingDef {
937
- [k: string]: unknown;
3316
+ export interface ContentTypeTimeline {
3317
+ title?: Field1;
3318
+ description?: Field2;
3319
+ dateTime?: Field3;
3320
+ owner?: Field4;
3321
+ /**
3322
+ * The owner image of the timeline item.
3323
+ */
3324
+ ownerImage?: {
3325
+ value?: string;
3326
+ [k: string]: unknown;
3327
+ };
3328
+ icon?: SimpleIcon;
938
3329
  }
939
3330
  /**
940
- * Represents the different navigation targets
3331
+ * The title of the timeline item.
941
3332
  */
942
- export interface NavigationDef {
943
- display?: ActionPropDef;
944
- create?: ActionPropDef1;
945
- edit?: ActionPropDef2;
3333
+ export interface Field1 {
3334
+ /**
3335
+ * Represents a label of the field; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
3336
+ */
3337
+ label?: string;
3338
+ /**
3339
+ * The value of the field
3340
+ */
3341
+ value?: string;
946
3342
  }
947
3343
  /**
948
- * Represents an action triggered by the user on UI: the navigation to display an object
3344
+ * The description of the timeline item.
949
3345
  */
950
- export interface ActionPropDef {
3346
+ export interface Field2 {
951
3347
  /**
952
- * Represents the path in the manifest to the target to which the navigation is bound
3348
+ * Represents a label of the field; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
953
3349
  */
954
- path: string;
3350
+ label?: string;
955
3351
  /**
956
- * Represents the pointer to a semantic object
3352
+ * The value of the field
957
3353
  */
958
- target: string;
3354
+ value?: string;
959
3355
  }
960
3356
  /**
961
- * Represents an action triggered by the user on UI: the navigation to create an object
3357
+ * The dateTime value of the timeline item.
962
3358
  */
963
- export interface ActionPropDef1 {
3359
+ export interface Field3 {
964
3360
  /**
965
- * Represents the path in the manifest to the target to which the navigation is bound
3361
+ * Represents a label of the field; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
966
3362
  */
967
- path: string;
3363
+ label?: string;
968
3364
  /**
969
- * Represents the pointer to a semantic object
3365
+ * The value of the field
970
3366
  */
971
- target: string;
3367
+ value?: string;
972
3368
  }
973
3369
  /**
974
- * Represents an action triggered by the user on UI: the navigation to edit an object
3370
+ * The owner of the timeline item.
975
3371
  */
976
- export interface ActionPropDef2 {
3372
+ export interface Field4 {
977
3373
  /**
978
- * Represents the path in the manifest to the target to which the navigation is bound
3374
+ * Represents a label of the field; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
979
3375
  */
980
- path: string;
3376
+ label?: string;
981
3377
  /**
982
- * Represents the pointer to a semantic object
3378
+ * The value of the field
983
3379
  */
984
- target: string;
3380
+ value?: string;
985
3381
  }
986
3382
  /**
987
- * Represent reuse components that should be appended at the end of the template component
3383
+ * The icon of the timeline item.
988
3384
  */
989
- export interface EmbeddedComponent {
3385
+ export interface SimpleIcon {
990
3386
  /**
991
- * This interface was referenced by `EmbeddedComponent`'s JSON-Schema definition
992
- * via the `patternProperty` "^[a-zA-Z0-9_\.\-\:]+$".
3387
+ * Represents icon name or source URL
993
3388
  */
994
- [k: string]: {
995
- /**
996
- * Represents an unique id for the instance of the reuse component inside of the object page
997
- */
998
- id: string;
999
- /**
1000
- * Represents the title for the content of the reuse component
1001
- */
1002
- title: string;
1003
- /**
1004
- * Represents an optional element binding for the ComponentContainer that hosts the reuse component
1005
- */
1006
- binding?: string;
1007
- /**
1008
- * Represents a map to populate the API of the reuse component
1009
- */
1010
- settings?: {
1011
- [k: string]: unknown;
1012
- };
1013
- [k: string]: unknown;
1014
- } & (
1015
- | {
1016
- /**
1017
- * Represents the name of the reuse component
1018
- */
1019
- componentName: string;
1020
- [k: string]: unknown;
1021
- }
1022
- | {
1023
- embeddedComponents: EmbeddedComponent1;
1024
- [k: string]: unknown;
1025
- }
1026
- );
3389
+ src?: string;
1027
3390
  }
1028
- export interface EmbeddedComponent1 {
3391
+ /**
3392
+ * Represents table content attributes
3393
+ */
3394
+ export interface ContentType3 {
3395
+ data?: Data;
1029
3396
  /**
1030
- * This interface was referenced by `EmbeddedComponent`'s JSON-Schema definition
1031
- * via the `patternProperty` "^[a-zA-Z0-9_\.\-\:]+$".
3397
+ * The template for all rows
1032
3398
  */
1033
- [k: string]: {
1034
- /**
1035
- * Represents an unique id for the instance of the reuse component inside of the object page
1036
- */
1037
- id: string;
1038
- /**
1039
- * Represents the title for the content of the reuse component
1040
- */
1041
- title: string;
3399
+ row?: {
1042
3400
  /**
1043
- * Represents an optional element binding for the ComponentContainer that hosts the reuse component
3401
+ * Defines the columns attributes.
1044
3402
  */
1045
- binding?: string;
3403
+ columns?: ContentTypeTable[];
1046
3404
  /**
1047
- * Represents a map to populate the API of the reuse component
3405
+ * Defines actions that can be applied on the item.
1048
3406
  */
1049
- settings?: {
1050
- [k: string]: unknown;
1051
- };
1052
- [k: string]: unknown;
1053
- } & (
1054
- | {
1055
- /**
1056
- * Represents the name of the reuse component
1057
- */
1058
- componentName: string;
1059
- [k: string]: unknown;
1060
- }
1061
- | {
1062
- embeddedComponents: EmbeddedComponent1;
1063
- [k: string]: unknown;
1064
- }
1065
- );
3407
+ actions?: Action[];
3408
+ };
3409
+ /**
3410
+ * Represents number of items
3411
+ */
3412
+ maxItems?: number | SimpleBinding;
1066
3413
  }
1067
3414
  /**
1068
- * Represents FLP specific attributes
3415
+ * Represents object item attributes
1069
3416
  */
1070
- export interface JSONSchemaForSAPFLPNamespace {
3417
+ export interface ContentTypeTable {
1071
3418
  /**
1072
- * Represents attributes format version. It is managed by namespace owner
3419
+ * Defines a title of the column; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
1073
3420
  */
1074
- _version?: "1.1.0" | "1.2.0";
3421
+ title?: string;
1075
3422
  /**
1076
- * Represents size of the tile
3423
+ * Defines the width of the column.
1077
3424
  */
1078
- tileSize?: "1x1" | "1x2";
3425
+ width?: string;
1079
3426
  /**
1080
- * Represents the type of FLP entry. It must be 'application' or 'tile' or 'plugin'
3427
+ * Defines the horizontal alignment of the column content.
1081
3428
  */
1082
- type: "application" | "tile" | "plugin";
3429
+ hAlign?: TextAlign | SimpleBinding;
1083
3430
  /**
1084
- * Represents configuration parameters of the FLP entry
3431
+ * Represents the text value of the column.
1085
3432
  */
1086
- config: {
1087
- /**
1088
- * Represents the configuration key and values
1089
- *
1090
- * This interface was referenced by `undefined`'s JSON-Schema definition
1091
- * via the `patternProperty` "^[a-zA-Z0-9\_\.\-]*$".
1092
- */
1093
- [k: string]: {
1094
- [k: string]: unknown;
1095
- };
1096
- };
3433
+ value?: string;
3434
+ icon?: Icon1;
3435
+ /**
3436
+ * Defines the state of the column.
3437
+ */
3438
+ state?: State | SimpleBinding;
3439
+ /**
3440
+ * Defines the URL string.
3441
+ */
3442
+ url?: string;
3443
+ /**
3444
+ * Specifies where to open the 'url', if it is provided.
3445
+ */
3446
+ target?: (Target | SimpleBinding) & string;
3447
+ identifier?: Identifier | SimpleBinding;
3448
+ progressIndicator?: ProgressIndicator;
3449
+ /**
3450
+ * Represents the visibility state of the column
3451
+ */
3452
+ visible?: boolean | SimpleBinding;
1097
3453
  }
1098
3454
  /**
1099
- * Represents OVP specific attributes
3455
+ * Represents icon attributes
1100
3456
  */
1101
- export interface JSONSchemaForSAPOVPNamespace {
3457
+ export interface Icon1 {
1102
3458
  /**
1103
- * Represents attributes format version. It is managed by namespace owner
3459
+ * Represents icon name or source URL
1104
3460
  */
1105
- _version?: "1.1.0" | "1.2.0";
3461
+ src?: string;
1106
3462
  /**
1107
- * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
3463
+ * Alternative text for the icon
1108
3464
  */
1109
- globalFilterModel?: string;
3465
+ alt?: string;
3466
+ shape?: (("Square" | "Circle") | SimpleBinding) & string;
1110
3467
  /**
1111
- * Represents the entity to use as global filter in the smart filter bar control
3468
+ * Initials for the avatar. Up to 2 symbols. If the image provided to the 'src' property fails to load, then the text will be shown.
1112
3469
  */
1113
- globalFilterEntityType?: string;
3470
+ text?: SimpleBinding;
1114
3471
  /**
1115
- * Represents the layout of the card container
3472
+ * [Experimental] The size of the icon.
1116
3473
  */
1117
- containerLayout?: "easyScan" | "dashboard";
1118
- cards: {
1119
- [k: string]: Card;
1120
- };
1121
- dashboardLayout?: {
1122
- [k: string]: DashboardLayoutVariant;
1123
- };
3474
+ size?: ("XS" | "S" | "M") | SimpleBinding;
3475
+ backgroundColor?: IconBackgroundColor;
1124
3476
  }
1125
3477
  /**
1126
- * Represents the card attributes
1127
- *
1128
- * This interface was referenced by `undefined`'s JSON-Schema definition
1129
- * via the `patternProperty` "^[a-zA-Z0-9_\.\-]+$".
3478
+ * Represents progress indicator attributes
3479
+ */
3480
+ export interface ProgressIndicator {
3481
+ /**
3482
+ * Represents state color
3483
+ */
3484
+ state?: State | SimpleBinding;
3485
+ /**
3486
+ * Represents progress indicator percent value
3487
+ */
3488
+ percent?: number | SimpleBinding;
3489
+ /**
3490
+ * Represents progress indicator text
3491
+ */
3492
+ text?: string;
3493
+ }
3494
+ /**
3495
+ * Represents object content attributes
1130
3496
  */
1131
- export interface Card {
3497
+ export interface ContentType4 {
3498
+ data?: Data;
1132
3499
  /**
1133
- * Represents the position of the card in the sequence
3500
+ * Represents groups of information for an object
1134
3501
  */
1135
- sequencePos?: number;
3502
+ groups?: ContentTypeObject[];
1136
3503
  /**
1137
- * Represents the model for the card
3504
+ * Defines actions that can be applied on the content.
1138
3505
  */
1139
- model?: string;
3506
+ actions?: Action[];
3507
+ }
3508
+ /**
3509
+ * Represents a group of information for an object
3510
+ */
3511
+ export interface ContentTypeObject {
1140
3512
  /**
1141
- * Represents the card component path to use for this card
3513
+ * Defines a title of the object group; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
1142
3514
  */
1143
- template: string;
1144
- settings?: CardSetting;
3515
+ title?: string;
1145
3516
  /**
1146
- * Represents the card with view switch control
1147
- *
1148
- * @minItems 1
3517
+ * Represents items of information.
1149
3518
  */
1150
- tabs?: [TabSetting, ...TabSetting[]];
3519
+ items?: ContentTypeObject1[];
3520
+ /**
3521
+ * Represents the visibility state of the group
3522
+ */
3523
+ visible?: boolean | SimpleBinding;
1151
3524
  }
1152
3525
  /**
1153
- * Represents the card specific properties - properties that are passed to the card
3526
+ * Represents a single item of information. It can contain label, value and image
1154
3527
  */
1155
- export interface CardSetting {
3528
+ export interface ContentTypeObject1 {
3529
+ icon?: Icon2;
1156
3530
  /**
1157
- * Represents the category of the card- used in the card header
3531
+ * Defines the label of the item.
1158
3532
  */
1159
- category?: string;
3533
+ label?: string;
1160
3534
  /**
1161
- * Represents language-dependent title of the card - used in the card header
3535
+ * Represents the text, which is associated with the label.
1162
3536
  */
1163
- title?: string;
3537
+ value?: string;
1164
3538
  /**
1165
- * Represents language-dependent subtitle of the card - used in the card header
3539
+ * Defines the type of the displayed information.
1166
3540
  */
1167
- subTitle?: string;
3541
+ type?: (("phone" | "email" | "link" | "text") | SimpleBinding) & string;
1168
3542
  /**
1169
- * Represents the entity set that will be displayed in this card
3543
+ * Defines the URL string. Works only with items of type 'link'.
1170
3544
  */
1171
- entitySet?: string;
3545
+ url?: string;
1172
3546
  /**
1173
- * Represents the static content that will be displayed in this card
3547
+ * Specifies the target of the link - it works like the target property of the HTML 'a' tag. Works only with items of type 'link'.
1174
3548
  */
1175
- staticContent?: {
1176
- [k: string]: unknown;
1177
- }[];
3549
+ target?: Target | SimpleBinding;
1178
3550
  /**
1179
- * Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard
3551
+ * Represents the subject of the email. Works only with item of type 'email'.
1180
3552
  */
1181
- listFlavor?: "standard" | "bar" | "carousel";
3553
+ emailSubject?: string;
1182
3554
  /**
1183
- * Represents the type of list to use for this card. The list can be extended to display more information or condensed to take up less space on the card
3555
+ * Represents the visibility state of the item
1184
3556
  */
1185
- listType?: "extended" | "condensed";
3557
+ visible?: boolean | SimpleBinding;
3558
+ }
3559
+ /**
3560
+ * Represents icon attributes
3561
+ */
3562
+ export interface Icon2 {
1186
3563
  /**
1187
- * Represents the sort key for the entity set
3564
+ * Represents icon name or source URL
1188
3565
  */
1189
- sortBy?: string;
3566
+ src?: string;
1190
3567
  /**
1191
- * Represents the sort order for the entity set
3568
+ * Alternative text for the icon
1192
3569
  */
1193
- sortOrder?: "ascending" | "descending";
3570
+ alt?: string;
3571
+ shape?: (("Square" | "Circle") | SimpleBinding) & string;
1194
3572
  /**
1195
- * Represents the annotation path
3573
+ * Initials for the avatar. Up to 2 symbols. If the image provided to the 'src' property fails to load, then the text will be shown.
1196
3574
  */
1197
- annotationPath?: string;
3575
+ text?: SimpleBinding;
1198
3576
  /**
1199
- * Represents the selection annotation path
3577
+ * [Experimental] The size of the icon.
1200
3578
  */
1201
- selectionAnnotationPath?: string;
3579
+ size?: ("XS" | "S" | "M") | SimpleBinding;
3580
+ backgroundColor?: IconBackgroundColor;
3581
+ }
3582
+ /**
3583
+ * The calendar card is used to display a schedule of a single entity (such as person, resource) for a selected time interval.
3584
+ */
3585
+ export interface ContentType5 {
3586
+ data?: Data;
3587
+ item?: ContentTypeCalendar;
3588
+ legendItem?: ContentTypeCalendar1;
3589
+ specialDate?: ContentTypeCalendar2;
1202
3590
  /**
1203
- * Represents the chart annotation path
3591
+ * The initial date of the calendar which appointments are initially shown. The accepted date format is ISO 8601.
1204
3592
  */
1205
- chartAnnotationPath?: string;
3593
+ date?: SimpleBinding;
1206
3594
  /**
1207
- * Represents the presentation annotation path
3595
+ * Represents number of items displayed
1208
3596
  */
1209
- presentationAnnotationPath?: string;
3597
+ maxItems?: number | SimpleBinding;
1210
3598
  /**
1211
- * Represents the data point annotation path
3599
+ * Represents number of legendItems displayed
1212
3600
  */
1213
- dataPointAnnotationPath?: string;
3601
+ maxLegendItems?: number | SimpleBinding;
1214
3602
  /**
1215
- * Represents the identification annotation path
3603
+ * The text shown when there are no items for the selected day
1216
3604
  */
1217
- identificationAnnotationPath?: string;
3605
+ noItemsText?: SimpleBinding;
1218
3606
  /**
1219
- * Represents the flag to indicate priority of number formatting over sap text
3607
+ * Defines actions that can be applied on the button showing there are more items than the shown
1220
3608
  */
1221
- ignoreSapText?: boolean;
1222
- defaultSpan?: DefaultSpanDef;
3609
+ moreItems?: {
3610
+ /**
3611
+ * Represents an action that can be applied on he button showing there are more items than the shown.
3612
+ */
3613
+ actions?: Action[];
3614
+ [k: string]: unknown;
3615
+ };
3616
+ }
3617
+ /**
3618
+ * Describes each item.
3619
+ */
3620
+ export interface ContentTypeCalendar {
3621
+ template?: ContentTypeCalendarItem;
1223
3622
  /**
1224
- * Represents the cards for which authorization is required
3623
+ * Defines the path to the structure holding the data about the items.
1225
3624
  */
1226
- requireAppAuthorization?: string;
1227
- [k: string]: unknown;
3625
+ path?: string;
1228
3626
  }
1229
3627
  /**
1230
- * Represents the tab specific properties - properties that are passed to a particular tab in a card
3628
+ * The template for all items
1231
3629
  */
1232
- export interface TabSetting {
3630
+ export interface ContentTypeCalendarItem {
1233
3631
  /**
1234
- * Represents the annotation path
3632
+ * The start date of the item. The accepted date format is ISO 8601.
1235
3633
  */
1236
- annotationPath?: string;
3634
+ startDate?: string;
1237
3635
  /**
1238
- * Represents the selection annotation path
3636
+ * The end date of the item. The accepted date format is ISO 8601.
1239
3637
  */
1240
- selectionAnnotationPath?: string;
3638
+ endDate?: string;
1241
3639
  /**
1242
- * Represents the chart annotation path
3640
+ * The title of the item.
1243
3641
  */
1244
- chartAnnotationPath?: string;
3642
+ title?: string;
1245
3643
  /**
1246
- * Represents the presentation annotation path
3644
+ * The additional information of the item.
3645
+ */
3646
+ text?: string;
3647
+ icon?: SimpleIcon1;
3648
+ /**
3649
+ * The type of the item - one of the types defined in the legend.
3650
+ */
3651
+ type?:
3652
+ | (
3653
+ | "Type01"
3654
+ | "Type02"
3655
+ | "Type03"
3656
+ | "Type04"
3657
+ | "Type05"
3658
+ | "Type06"
3659
+ | "Type07"
3660
+ | "Type08"
3661
+ | "Type09"
3662
+ | "Type10"
3663
+ | "Type11"
3664
+ | "Type12"
3665
+ | "Type13"
3666
+ | "Type14"
3667
+ | "Type15"
3668
+ | "Type16"
3669
+ | "Type17"
3670
+ | "Type18"
3671
+ | "Type19"
3672
+ | "Type20"
3673
+ )
3674
+ | SimpleBinding;
3675
+ }
3676
+ /**
3677
+ * Represents simple icon attributes
3678
+ */
3679
+ export interface SimpleIcon1 {
3680
+ /**
3681
+ * Represents icon name or source URL
1247
3682
  */
1248
- presentationAnnotationPath?: string;
3683
+ src?: string;
3684
+ }
3685
+ /**
3686
+ * Describes each legendItem.
3687
+ */
3688
+ export interface ContentTypeCalendar1 {
3689
+ template?: ContentTypeCalendarLegendItem;
1249
3690
  /**
1250
- * Represents the data point annotation path
3691
+ * Defines the path to the structure holding the data about the legendItems.
1251
3692
  */
1252
- dataPointAnnotationPath?: string;
3693
+ path?: string;
3694
+ }
3695
+ /**
3696
+ * The template for all legendItems
3697
+ */
3698
+ export interface ContentTypeCalendarLegendItem {
1253
3699
  /**
1254
- * Represents the identification annotation path
3700
+ * Defines which card component describes the legend item. Available categories: "calendar" (represented as square) or "appointment" (circle).
1255
3701
  */
1256
- identificationAnnotationPath?: string;
3702
+ category?: string;
1257
3703
  /**
1258
- * Represents the drop down value to be shown
3704
+ * The describing information of the item.
3705
+ */
3706
+ text?: string;
3707
+ /**
3708
+ * The type of the legend item corresponding with the described component.
3709
+ */
3710
+ type?:
3711
+ | (
3712
+ | "Type01"
3713
+ | "Type02"
3714
+ | "Type03"
3715
+ | "Type04"
3716
+ | "Type05"
3717
+ | "Type06"
3718
+ | "Type07"
3719
+ | "Type08"
3720
+ | "Type09"
3721
+ | "Type10"
3722
+ | "Type11"
3723
+ | "Type12"
3724
+ | "Type13"
3725
+ | "Type14"
3726
+ | "Type15"
3727
+ | "Type16"
3728
+ | "Type17"
3729
+ | "Type18"
3730
+ | "Type19"
3731
+ | "Type20"
3732
+ )
3733
+ | SimpleBinding;
3734
+ }
3735
+ /**
3736
+ * Describes each specialDate.
3737
+ */
3738
+ export interface ContentTypeCalendar2 {
3739
+ template?: ContentTypeCalendarSpecialDate;
3740
+ /**
3741
+ * Defines the path to the structure holding the data about the specialDates.
1259
3742
  */
1260
- value?: string;
1261
- [k: string]: unknown;
3743
+ path?: string;
1262
3744
  }
1263
3745
  /**
1264
- * Represents the dashboard layout variant
1265
- *
1266
- * This interface was referenced by `undefined`'s JSON-Schema definition
1267
- * via the `patternProperty` "^cols_[0-9]+$".
3746
+ * The template for all specialDates
1268
3747
  */
1269
- export interface DashboardLayoutVariant {
1270
- [k: string]: DashboardLayoutVariantCardProperties;
3748
+ export interface ContentTypeCalendarSpecialDate {
3749
+ /**
3750
+ * The start date of the special date. The accepted date format is ISO 8601.
3751
+ */
3752
+ startDate?: string;
3753
+ /**
3754
+ * The end date of the special date. The accepted date format is ISO 8601.
3755
+ */
3756
+ endDate?: string;
3757
+ /**
3758
+ * The type of the special date - one of the types defined in the legend.
3759
+ */
3760
+ type?:
3761
+ | (
3762
+ | "Type01"
3763
+ | "Type02"
3764
+ | "Type03"
3765
+ | "Type04"
3766
+ | "Type05"
3767
+ | "Type06"
3768
+ | "Type07"
3769
+ | "Type08"
3770
+ | "Type09"
3771
+ | "Type10"
3772
+ | "Type11"
3773
+ | "Type12"
3774
+ | "Type13"
3775
+ | "Type14"
3776
+ | "Type15"
3777
+ | "Type16"
3778
+ | "Type17"
3779
+ | "Type18"
3780
+ | "Type19"
3781
+ | "Type20"
3782
+ )
3783
+ | SimpleBinding;
1271
3784
  }
1272
3785
  /**
1273
- * Represents the card properties is a layout variant
1274
- *
1275
- * This interface was referenced by `DashboardLayoutVariant`'s JSON-Schema definition
1276
- * via the `patternProperty` "^[a-zA-Z0-9_\.\-]+$".
3786
+ * Represents AdaptiveCard content (external reference omitted in generated typings)
3787
+ */
3788
+ export interface ContentType6 {
3789
+ [k: string]: unknown;
3790
+ }
3791
+ /**
3792
+ * Represents general package attributes. Experimental, will be detailed in the future
1277
3793
  */
1278
- export interface DashboardLayoutVariantCardProperties {
3794
+ export interface JSONSchemaForSAPPACKAGENamespace {
1279
3795
  /**
1280
- * Represents the grid column
3796
+ * Represents SAP.PACKAGE attributes format version. It is managed by namespace owner
1281
3797
  */
1282
- col: number;
3798
+ _version?: "1.0.0" | "1.1.0";
1283
3799
  /**
1284
- * Represents the grid row
3800
+ * Represents mandatory unique package identifier
1285
3801
  */
1286
- row: number;
3802
+ id: string;
1287
3803
  /**
1288
- * Represents the column span
3804
+ * Represents path inside the package to the properties file containing text symbols for the packages texts
1289
3805
  */
1290
- colSpan: number;
3806
+ i18n?: string;
1291
3807
  /**
1292
- * Represents the row span
3808
+ * Represents mandatory semantic version of the package information and optional the upgrade notification
1293
3809
  */
1294
- rowSpan: number;
3810
+ packageVersion: {
3811
+ /**
3812
+ * Represents mandatory semantic version of the package
3813
+ */
3814
+ version: string;
3815
+ /**
3816
+ * Represents optional upgrade notification once the package is available. none - no notification, package will be installed automatically for any version. major - notification before a new major version is installed. major.minor - notification before a major and minor version is installed. all - notification before any new version is installed, including patches
3817
+ */
3818
+ upgradeNotification?: "none" | "major" | "major.minor" | "all";
3819
+ [k: string]: unknown;
3820
+ };
1295
3821
  /**
1296
- * Represents the visibility of the card
3822
+ * Represents type of an package and can be card, workflow, workspace-template
1297
3823
  */
1298
- visible?: boolean;
1299
- }
1300
- /**
1301
- * Represents WDA specific attributes
1302
- */
1303
- export interface JSONSchemaForSAPWDANamespace {
3824
+ type?: "card" | "workflow" | "workspace-template";
1304
3825
  /**
1305
- * Represents attributes format version. It is managed by namespace owner
3826
+ * Represents mandatory title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
1306
3827
  */
1307
- _version?: "1.1.0" | "1.2.0";
3828
+ title: string;
1308
3829
  /**
1309
- * Represents ID of an application
3830
+ * Represents subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
1310
3831
  */
1311
- applicationId: string;
3832
+ subTitle?: string;
1312
3833
  /**
1313
- * Represents ID of an application configuration
3834
+ * Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
1314
3835
  */
1315
- configId?: string;
3836
+ shortTitle?: string;
1316
3837
  /**
1317
- * Represents SAP Screen Personas Flavor ID
3838
+ * Represents additional information to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
1318
3839
  */
1319
- flavorId?: string;
3840
+ info?: string;
3841
+ /**
3842
+ * Represents description; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
3843
+ */
3844
+ description: string;
3845
+ /**
3846
+ * Represents icon name or source URL for the package
3847
+ */
3848
+ icon?: string;
3849
+ /**
3850
+ * Represents array of keywords used to find the package
3851
+ */
3852
+ tags?: {
3853
+ keywords: Tag;
3854
+ technicalAttributes?: string[];
3855
+ [k: string]: unknown;
3856
+ };
3857
+ vendor: Vendor;
3858
+ homepage?: Infolink;
3859
+ support: Infolink1;
3860
+ documentation?: Infolink2;
3861
+ contents?: Contentitem[];
3862
+ /**
3863
+ * Represents list of product ids that are allowed to consume this package. if not defined all products that are capable of installing this package are allowed
3864
+ */
3865
+ consumption?: string[];
3866
+ /**
3867
+ * Represents the products and service that the pacakge depends on
3868
+ */
3869
+ dependencies?: {
3870
+ /**
3871
+ * List of products that this package depends on
3872
+ */
3873
+ products?: string[];
3874
+ /**
3875
+ * List of services that this package depends on
3876
+ */
3877
+ services?: string[];
3878
+ [k: string]: unknown;
3879
+ };
3880
+ [k: string]: unknown;
1320
3881
  }
1321
3882
  /**
1322
- * Represents APF specific attributes
3883
+ * Represents the support information
1323
3884
  */
1324
- export interface JSONSchemaForSAPAPFNamespace {
3885
+ export interface Vendor {
1325
3886
  /**
1326
- * Represents attributes format version. It is managed by namespace owner
3887
+ * Represents the vendor id
1327
3888
  */
1328
- _version?: "1.1.0";
3889
+ id: string;
1329
3890
  /**
1330
- * Represents a switch to activate filter reduction so that filters in OData requests can be represented as ABAP select options
3891
+ * Represents the vendor name
1331
3892
  */
1332
- activateFilterReduction?: boolean;
3893
+ name: string;
1333
3894
  /**
1334
- * Represents a switch to activate LREP as the persistence for configurations and texts
3895
+ * Represents the vendor line of business within the vendors organization if any
1335
3896
  */
1336
- activateLrep?: boolean;
3897
+ lineOfBusiness?: string;
3898
+ /**
3899
+ * Represents a target url
3900
+ */
3901
+ url: string;
3902
+ [k: string]: unknown;
1337
3903
  }
1338
3904
  /**
1339
- * Represents Cloud Portal specific attributes
3905
+ * Represents the homepage information
1340
3906
  */
1341
- export interface JSONSchemaForSAPCLOUDPORTALNamespace {
3907
+ export interface Infolink {
3908
+ /**
3909
+ * Represents a target url
3910
+ */
3911
+ url: string;
3912
+ /**
3913
+ * Represents a descriptive text for the target
3914
+ */
3915
+ text: string;
1342
3916
  [k: string]: unknown;
1343
3917
  }
1344
3918
  /**
1345
- * Represents GUI specific attributes
3919
+ * Represents the support information
1346
3920
  */
1347
- export interface JSONSchemaForSAPGUINamespace {
1348
- /**
1349
- * Represents attributes format version. It is managed by namespace owner
1350
- */
1351
- _version?: "1.1.0" | "1.2.0";
3921
+ export interface Infolink1 {
1352
3922
  /**
1353
- * Represents transaction of an application
3923
+ * Represents a target url
1354
3924
  */
1355
- transaction: string;
3925
+ url: string;
1356
3926
  /**
1357
- * Represents SAP Screen Personas Flavor ID
3927
+ * Represents a descriptive text for the target
1358
3928
  */
1359
- flavorId?: string;
3929
+ text: string;
3930
+ [k: string]: unknown;
1360
3931
  }
1361
3932
  /**
1362
- * Represents specific attributes for Smart Business
3933
+ * Represents the documentation information
1363
3934
  */
1364
- export interface JSONSchemaForSAPUISMARTBUSINESSAPPNamespace {
3935
+ export interface Infolink2 {
3936
+ /**
3937
+ * Represents a target url
3938
+ */
3939
+ url: string;
3940
+ /**
3941
+ * Represents a descriptive text for the target
3942
+ */
3943
+ text: string;
1365
3944
  [k: string]: unknown;
1366
3945
  }
1367
3946
  /**
1368
- * Represents mobile specific attributes
3947
+ * Represents the artifacts contained in the package
1369
3948
  */
1370
- export interface JSONSchemaForSAPMOBILENamespace {
3949
+ export interface Contentitem {
1371
3950
  /**
1372
- * Represents attributes format version. It is managed by namespace owner
3951
+ * Relative url to the artifact within the folder in this package
1373
3952
  */
1374
- _version?: "1.1.0";
3953
+ baseURL?: string;
1375
3954
  /**
1376
- * Represents mobile specific attributes
3955
+ * Wraps the child manifest
1377
3956
  */
1378
- definingRequests: {
1379
- [k: string]: DefiningRequest;
3957
+ manifest?: {
3958
+ /**
3959
+ * The artifacts manifest
3960
+ */
3961
+ "sap.artifact"?: {
3962
+ [k: string]: unknown;
3963
+ };
3964
+ [k: string]: unknown;
1380
3965
  };
1381
3966
  [k: string]: unknown;
1382
3967
  }
1383
3968
  /**
1384
- * This interface was referenced by `undefined`'s JSON-Schema definition
1385
- * via the `patternProperty` "^[a-zA-Z0-9_\.\-]*".
3969
+ * Represents general artifact attributes.
1386
3970
  */
1387
- export interface DefiningRequest {
3971
+ export interface JSONSchemaForSAPARTIFACTNamespace {
1388
3972
  /**
1389
- * Represents reference to dataSource under sap.app
3973
+ * Represents SAP.ARTIFACT attributes format version. It is managed by namespace owner
1390
3974
  */
1391
- dataSource: string;
3975
+ _version?: "1.0.0" | "1.1.0";
1392
3976
  /**
1393
- * Represents path to the title collection
3977
+ * Represents mandatory unique artifact identifier
1394
3978
  */
1395
- path: string;
3979
+ id: string;
1396
3980
  /**
1397
- * Represents indicator whether streams should be retrieved
3981
+ * Represents path inside the artifact to the properties file containing text symbols for the artifacts texts
1398
3982
  */
1399
- retrieveStreams?: boolean;
3983
+ i18n?: string;
3984
+ /**
3985
+ * Represents mandatory semantic version of the artifact
3986
+ */
3987
+ artifactVersion: {
3988
+ version: Semanticversion;
3989
+ [k: string]: unknown;
3990
+ };
3991
+ /**
3992
+ * Represents type of an artifact and can be card, workflow, workspace-template
3993
+ */
3994
+ type: "card" | "workflow" | "workspace-template";
3995
+ /**
3996
+ * Represents mandatory title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
3997
+ */
3998
+ title: string;
3999
+ /**
4000
+ * Represents subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
4001
+ */
4002
+ subTitle?: string;
4003
+ /**
4004
+ * Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
4005
+ */
4006
+ shortTitle?: string;
4007
+ /**
4008
+ * Represents additional information to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
4009
+ */
4010
+ info?: string;
4011
+ /**
4012
+ * Represents description; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used
4013
+ */
4014
+ description: string;
4015
+ /**
4016
+ * Represents icon name or source URL for the artifact
4017
+ */
4018
+ icon?: string;
4019
+ /**
4020
+ * Represents array of keywords used to find the artifact
4021
+ */
4022
+ tags?: {
4023
+ keywords: Tag;
4024
+ technicalAttributes?: string[];
4025
+ [k: string]: unknown;
4026
+ };
4027
+ [k: string]: unknown;
1400
4028
  }