@sapui5/types 1.120.9 → 1.121.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +50 -18
  4. package/types/sap.ca.ui.d.ts +1112 -544
  5. package/types/sap.chart.d.ts +17 -1
  6. package/types/sap.collaboration.d.ts +185 -64
  7. package/types/sap.esh.search.ui.d.ts +2 -1886
  8. package/types/sap.f.d.ts +124 -45
  9. package/types/sap.fe.core.d.ts +75 -79
  10. package/types/sap.fe.macros.d.ts +427 -554
  11. package/types/sap.fe.navigation.d.ts +4 -6
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +9 -0
  14. package/types/sap.fe.templates.d.ts +1 -7
  15. package/types/sap.fe.test.d.ts +105 -27
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +222 -63
  19. package/types/sap.insights.d.ts +115 -1
  20. package/types/sap.m.d.ts +2105 -303
  21. package/types/sap.makit.d.ts +11 -1
  22. package/types/sap.me.d.ts +7 -1
  23. package/types/sap.ndc.d.ts +1 -1
  24. package/types/sap.ovp.d.ts +1 -1
  25. package/types/sap.rules.ui.d.ts +134 -75
  26. package/types/sap.sac.df.d.ts +270 -47
  27. package/types/sap.suite.ui.commons.d.ts +1318 -19
  28. package/types/sap.suite.ui.generic.template.d.ts +38 -48
  29. package/types/sap.suite.ui.microchart.d.ts +63 -1
  30. package/types/sap.tnt.d.ts +628 -113
  31. package/types/sap.ui.codeeditor.d.ts +10 -6
  32. package/types/sap.ui.commons.d.ts +92 -8
  33. package/types/sap.ui.comp.d.ts +260 -111
  34. package/types/sap.ui.core.d.ts +500 -186
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +16 -3
  37. package/types/sap.ui.fl.d.ts +91 -68
  38. package/types/sap.ui.generic.app.d.ts +250 -193
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +51 -4
  41. package/types/sap.ui.layout.d.ts +214 -27
  42. package/types/sap.ui.mdc.d.ts +1544 -811
  43. package/types/sap.ui.richtexteditor.d.ts +4 -1
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +3 -1
  46. package/types/sap.ui.support.d.ts +28 -4
  47. package/types/sap.ui.table.d.ts +65 -11
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +157 -54
  50. package/types/sap.ui.ux3.d.ts +30 -12
  51. package/types/sap.ui.vbm.d.ts +6081 -3279
  52. package/types/sap.ui.vk.d.ts +93 -105
  53. package/types/sap.ui.vtm.d.ts +681 -211
  54. package/types/sap.ui.webc.common.d.ts +1 -1
  55. package/types/sap.ui.webc.fiori.d.ts +49 -1
  56. package/types/sap.ui.webc.main.d.ts +144 -9
  57. package/types/sap.uiext.inbox.d.ts +1 -1
  58. package/types/sap.ushell.d.ts +4394 -3926
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +52 -5
  61. package/types/sap.viz.d.ts +89 -1
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +79 -18
  64. package/types/sap.zen.crosstab.d.ts +81 -13
  65. package/types/sap.zen.dsh.d.ts +194 -143
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.3
1
+ // For Library Version: 1.121.0
2
2
 
3
3
  declare module "sap/sac/df/library" {}
4
4
 
@@ -10,14 +10,14 @@ declare module "sap/sac/df/changeHandler/MultiDimModelChangeHandler" {
10
10
  import MultiDimModel from "sap/sac/df/model/MultiDimModel";
11
11
 
12
12
  /**
13
- * @since 1.120
14
- * @experimental (since 1.120)
15
- *
16
13
  * Control to handle changes of {@link sap.sac.df.model.MultiDimModel }. To store the changes in {@link sap.ui.fl.variants.VariantManagement }
17
14
  * you need to include this change handler control as a dependent somewhere in the view tree for which the
18
15
  * variant management is responsible. Each time the event `requestCompleted` is fired a new change will
19
16
  * be created. The method `registerMultiDimModel` needs to be called once to register the {@link sap.sac.df.model.MultiDimModel }
20
17
  * to the change handler.
18
+ *
19
+ * @since 1.120
20
+ * @experimental (since 1.120)
21
21
  */
22
22
  export default class MultiDimModelChangeHandler extends Control {
23
23
  /**
@@ -36,6 +36,7 @@ declare module "sap/sac/df/changeHandler/MultiDimModelChangeHandler" {
36
36
  *
37
37
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.Control.extend}.
38
38
  *
39
+ *
39
40
  * @returns Created class / constructor function
40
41
  */
41
42
  static extend<T extends Record<string, unknown>>(
@@ -56,6 +57,7 @@ declare module "sap/sac/df/changeHandler/MultiDimModelChangeHandler" {
56
57
  /**
57
58
  * Returns a metadata object for class sap.sac.df.changeHandler.MultiDimModelChangeHandler.
58
59
  *
60
+ *
59
61
  * @returns Metadata object describing this class
60
62
  */
61
63
  static getMetadata(): ElementMetadata;
@@ -88,9 +90,9 @@ declare module "sap/sac/df/FilterBar" {
88
90
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
89
91
 
90
92
  /**
91
- * @experimental (since 1.119)
92
- *
93
93
  * A Filter Bar based on Multidimensional Model
94
+ *
95
+ * @experimental (since 1.119)
94
96
  */
95
97
  export default class FilterBar extends FilterBar1 {
96
98
  /**
@@ -108,6 +110,7 @@ declare module "sap/sac/df/FilterBar" {
108
110
  *
109
111
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.FilterBar.extend}.
110
112
  *
113
+ *
111
114
  * @returns Created class / constructor function
112
115
  */
113
116
  static extend<T extends Record<string, unknown>>(
@@ -128,6 +131,7 @@ declare module "sap/sac/df/FilterBar" {
128
131
  /**
129
132
  * Returns a metadata object for class sap.sac.df.FilterBar.
130
133
  *
134
+ *
131
135
  * @returns Metadata object describing this class
132
136
  */
133
137
  static getMetadata(): ElementMetadata;
@@ -140,6 +144,7 @@ declare module "sap/sac/df/FilterBar" {
140
144
  *
141
145
  * Fires before update variable of multidimension model after input value or open value help of variable.
142
146
  *
147
+ *
143
148
  * @returns Reference to `this` in order to allow method chaining
144
149
  */
145
150
  attachBeforeFilterChange(
@@ -166,6 +171,7 @@ declare module "sap/sac/df/FilterBar" {
166
171
  *
167
172
  * Fires before update variable of multidimension model after input value or open value help of variable.
168
173
  *
174
+ *
169
175
  * @returns Reference to `this` in order to allow method chaining
170
176
  */
171
177
  attachBeforeFilterChange(
@@ -187,6 +193,7 @@ declare module "sap/sac/df/FilterBar" {
187
193
  *
188
194
  * Fires when cancel change in the value help dialog.
189
195
  *
196
+ *
190
197
  * @returns Reference to `this` in order to allow method chaining
191
198
  */
192
199
  attachCancelFilterChange(
@@ -213,6 +220,7 @@ declare module "sap/sac/df/FilterBar" {
213
220
  *
214
221
  * Fires when cancel change in the value help dialog.
215
222
  *
223
+ *
216
224
  * @returns Reference to `this` in order to allow method chaining
217
225
  */
218
226
  attachCancelFilterChange(
@@ -231,6 +239,7 @@ declare module "sap/sac/df/FilterBar" {
231
239
  *
232
240
  * The passed function and listener object must match the ones used for event registration.
233
241
  *
242
+ *
234
243
  * @returns Reference to `this` in order to allow method chaining
235
244
  */
236
245
  detachBeforeFilterChange(
@@ -249,6 +258,7 @@ declare module "sap/sac/df/FilterBar" {
249
258
  *
250
259
  * The passed function and listener object must match the ones used for event registration.
251
260
  *
261
+ *
252
262
  * @returns Reference to `this` in order to allow method chaining
253
263
  */
254
264
  detachCancelFilterChange(
@@ -262,10 +272,10 @@ declare module "sap/sac/df/FilterBar" {
262
272
  oListener?: object
263
273
  ): this;
264
274
  /**
265
- * @ui5-protected Do not call from applications (only from related classes in the framework)
266
- *
267
275
  * Fires event {@link #event:beforeFilterChange beforeFilterChange} to attached listeners.
268
276
  *
277
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
278
+ *
269
279
  * @returns Reference to `this` in order to allow method chaining
270
280
  */
271
281
  fireBeforeFilterChange(
@@ -275,10 +285,10 @@ declare module "sap/sac/df/FilterBar" {
275
285
  mParameters?: FilterBar$BeforeFilterChangeEventParameters
276
286
  ): this;
277
287
  /**
278
- * @ui5-protected Do not call from applications (only from related classes in the framework)
279
- *
280
288
  * Fires event {@link #event:cancelFilterChange cancelFilterChange} to attached listeners.
281
289
  *
290
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
291
+ *
282
292
  * @returns Reference to `this` in order to allow method chaining
283
293
  */
284
294
  fireCancelFilterChange(
@@ -294,6 +304,7 @@ declare module "sap/sac/df/FilterBar" {
294
304
  *
295
305
  * Default value is `ValueDescription`.
296
306
  *
307
+ *
297
308
  * @returns Value of property `display`
298
309
  */
299
310
  getDisplay(): FieldDisplay | keyof typeof FieldDisplay;
@@ -304,6 +315,7 @@ declare module "sap/sac/df/FilterBar" {
304
315
  *
305
316
  * Default value is `"VariablesOfDataProvider"`.
306
317
  *
318
+ *
307
319
  * @returns Value of property `mode`
308
320
  */
309
321
  getMode(): string;
@@ -314,6 +326,7 @@ declare module "sap/sac/df/FilterBar" {
314
326
  *
315
327
  * Default value is `"om"`.
316
328
  *
329
+ *
317
330
  * @returns Value of property `multiDimModelId`
318
331
  */
319
332
  getMultiDimModelId(): string;
@@ -326,6 +339,7 @@ declare module "sap/sac/df/FilterBar" {
326
339
  *
327
340
  * Default value is `ValueDescription`.
328
341
  *
342
+ *
329
343
  * @returns Reference to `this` in order to allow method chaining
330
344
  */
331
345
  setDisplay(
@@ -343,6 +357,7 @@ declare module "sap/sac/df/FilterBar" {
343
357
  *
344
358
  * Default value is `"VariablesOfDataProvider"`.
345
359
  *
360
+ *
346
361
  * @returns Reference to `this` in order to allow method chaining
347
362
  */
348
363
  setMode(
@@ -360,6 +375,7 @@ declare module "sap/sac/df/FilterBar" {
360
375
  *
361
376
  * Default value is `"om"`.
362
377
  *
378
+ *
363
379
  * @returns Reference to `this` in order to allow method chaining
364
380
  */
365
381
  setMultiDimModelId(
@@ -437,14 +453,14 @@ declare module "sap/sac/df/FlexAnalysis" {
437
453
  import SystemType from "sap/sac/df/types/SystemType";
438
454
 
439
455
  /**
440
- * @experimental
441
- *
442
456
  * Enables users to view, navigate and change multidimensional data exposed via InA.
443
457
  *
444
458
  * Overview:
445
459
  *
446
460
  * The user can view the data in a Table, navigate in the data via a context menu or builder panels The
447
461
  * data source that the FlexAnalysis consumes or renders has to be provided as a property value.
462
+ *
463
+ * @experimental
448
464
  */
449
465
  export default class FlexAnalysis extends Control {
450
466
  /**
@@ -467,6 +483,7 @@ declare module "sap/sac/df/FlexAnalysis" {
467
483
  *
468
484
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
469
485
  *
486
+ *
470
487
  * @returns Created class / constructor function
471
488
  */
472
489
  static extend<T extends Record<string, unknown>>(
@@ -487,12 +504,14 @@ declare module "sap/sac/df/FlexAnalysis" {
487
504
  /**
488
505
  * Returns a metadata object for class sap.sac.df.FlexAnalysis.
489
506
  *
507
+ *
490
508
  * @returns Metadata object describing this class
491
509
  */
492
510
  static getMetadata(): ElementMetadata;
493
511
  /**
494
512
  * Adds some customPanel to the aggregation {@link #getCustomPanels customPanels}.
495
513
  *
514
+ *
496
515
  * @returns Reference to `this` in order to allow method chaining
497
516
  */
498
517
  addCustomPanel(
@@ -507,6 +526,7 @@ declare module "sap/sac/df/FlexAnalysis" {
507
526
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
508
527
  * of the possible properties of `oBindingInfo`
509
528
  *
529
+ *
510
530
  * @returns Reference to `this` in order to allow method chaining
511
531
  */
512
532
  bindDataProvider(
@@ -518,6 +538,7 @@ declare module "sap/sac/df/FlexAnalysis" {
518
538
  /**
519
539
  * Destroys all the customPanels in the aggregation {@link #getCustomPanels customPanels}.
520
540
  *
541
+ *
521
542
  * @returns Reference to `this` in order to allow method chaining
522
543
  */
523
544
  destroyCustomPanels(): this;
@@ -528,6 +549,7 @@ declare module "sap/sac/df/FlexAnalysis" {
528
549
  *
529
550
  * Default value is `true`.
530
551
  *
552
+ *
531
553
  * @returns Value of property `autoUpdate`
532
554
  */
533
555
  getAutoUpdate(): boolean;
@@ -536,6 +558,7 @@ declare module "sap/sac/df/FlexAnalysis" {
536
558
  *
537
559
  * Client Identifier to be used for underlying InA queries
538
560
  *
561
+ *
539
562
  * @returns Value of property `clientIdentifier`
540
563
  */
541
564
  getClientIdentifier(): string;
@@ -544,6 +567,7 @@ declare module "sap/sac/df/FlexAnalysis" {
544
567
  *
545
568
  * configuration Id
546
569
  *
570
+ *
547
571
  * @returns Value of property `configId`
548
572
  */
549
573
  getConfigId(): string;
@@ -552,6 +576,7 @@ declare module "sap/sac/df/FlexAnalysis" {
552
576
  *
553
577
  * JSON object containing the configuration (alternative to configurationURI)
554
578
  *
579
+ *
555
580
  * @returns Value of property `configObject`
556
581
  */
557
582
  getConfigObject(): object;
@@ -560,6 +585,7 @@ declare module "sap/sac/df/FlexAnalysis" {
560
585
  *
561
586
  * URI of the advanced configuration to be fetched
562
587
  *
588
+ *
563
589
  * @returns Value of property `configurationURI`
564
590
  */
565
591
  getConfigurationURI(): string;
@@ -574,6 +600,7 @@ declare module "sap/sac/df/FlexAnalysis" {
574
600
  *
575
601
  * Name of the Data Provider from the corresponding MultiDimModel to be used
576
602
  *
603
+ *
577
604
  * @returns Value of property `dataProvider`
578
605
  */
579
606
  getDataProvider(): any;
@@ -584,6 +611,7 @@ declare module "sap/sac/df/FlexAnalysis" {
584
611
  *
585
612
  * Default value is `"$datasource"`.
586
613
  *
614
+ *
587
615
  * @returns Value of property `dataSource`
588
616
  */
589
617
  getDataSource(): string;
@@ -594,6 +622,7 @@ declare module "sap/sac/df/FlexAnalysis" {
594
622
  *
595
623
  * Default value is `[]`.
596
624
  *
625
+ *
597
626
  * @returns Value of property `environment`
598
627
  */
599
628
  getEnvironment(): string[];
@@ -604,6 +633,7 @@ declare module "sap/sac/df/FlexAnalysis" {
604
633
  *
605
634
  * Default value is `"100%"`.
606
635
  *
636
+ *
607
637
  * @returns Value of property `height`
608
638
  */
609
639
  getHeight(): CSSSize;
@@ -614,6 +644,7 @@ declare module "sap/sac/df/FlexAnalysis" {
614
644
  *
615
645
  * Default value is `true`.
616
646
  *
647
+ *
617
648
  * @returns Value of property `hideDesignPanel`
618
649
  */
619
650
  getHideDesignPanel(): boolean;
@@ -624,6 +655,7 @@ declare module "sap/sac/df/FlexAnalysis" {
624
655
  *
625
656
  * Default value is `false`.
626
657
  *
658
+ *
627
659
  * @returns Value of property `hideFilterLine`
628
660
  */
629
661
  getHideFilterLine(): boolean;
@@ -634,6 +666,7 @@ declare module "sap/sac/df/FlexAnalysis" {
634
666
  *
635
667
  * Default value is `true`.
636
668
  *
669
+ *
637
670
  * @returns Value of property `hideLandingPage`
638
671
  */
639
672
  getHideLandingPage(): boolean;
@@ -644,6 +677,7 @@ declare module "sap/sac/df/FlexAnalysis" {
644
677
  *
645
678
  * Default value is `true`.
646
679
  *
680
+ *
647
681
  * @returns Value of property `hideMenuBar`
648
682
  */
649
683
  getHideMenuBar(): boolean;
@@ -654,6 +688,7 @@ declare module "sap/sac/df/FlexAnalysis" {
654
688
  *
655
689
  * Default value is `false`.
656
690
  *
691
+ *
657
692
  * @returns Value of property `hideSideNavigation`
658
693
  */
659
694
  getHideSideNavigation(): boolean;
@@ -664,6 +699,7 @@ declare module "sap/sac/df/FlexAnalysis" {
664
699
  *
665
700
  * Default value is `true`.
666
701
  *
702
+ *
667
703
  * @returns Value of property `hideStatusBar`
668
704
  */
669
705
  getHideStatusBar(): boolean;
@@ -674,6 +710,7 @@ declare module "sap/sac/df/FlexAnalysis" {
674
710
  *
675
711
  * Default value is `true`.
676
712
  *
713
+ *
677
714
  * @returns Value of property `hideStylePanel`
678
715
  */
679
716
  getHideStylePanel(): boolean;
@@ -684,6 +721,7 @@ declare module "sap/sac/df/FlexAnalysis" {
684
721
  *
685
722
  * Default value is `true`.
686
723
  *
724
+ *
687
725
  * @returns Value of property `hideToolBar`
688
726
  */
689
727
  getHideToolBar(): boolean;
@@ -695,6 +733,7 @@ declare module "sap/sac/df/FlexAnalysis" {
695
733
  *
696
734
  * Default value is `true`.
697
735
  *
736
+ *
698
737
  * @returns Value of property `implicitVariableHandling`
699
738
  */
700
739
  getImplicitVariableHandling(): boolean;
@@ -705,6 +744,7 @@ declare module "sap/sac/df/FlexAnalysis" {
705
744
  *
706
745
  * Default value is `0`.
707
746
  *
747
+ *
708
748
  * @returns Value of property `keepAliveInterval`
709
749
  */
710
750
  getKeepAliveInterval(): int;
@@ -715,6 +755,7 @@ declare module "sap/sac/df/FlexAnalysis" {
715
755
  *
716
756
  * Default value is `"om"`.
717
757
  *
758
+ *
718
759
  * @returns Value of property `multiDimModelId`
719
760
  */
720
761
  getMultiDimModelId(): string;
@@ -725,6 +766,7 @@ declare module "sap/sac/df/FlexAnalysis" {
725
766
  *
726
767
  * Default value is `false`.
727
768
  *
769
+ *
728
770
  * @returns Value of property `showTitle`
729
771
  */
730
772
  getShowTitle(): boolean;
@@ -734,6 +776,7 @@ declare module "sap/sac/df/FlexAnalysis" {
734
776
  * Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
735
777
  * corresponding MultiDimModel
736
778
  *
779
+ *
737
780
  * @returns Value of property `styleTemplateName`
738
781
  */
739
782
  getStyleTemplateName(): string;
@@ -742,6 +785,7 @@ declare module "sap/sac/df/FlexAnalysis" {
742
785
  *
743
786
  * System to take data from. If not set or set to "local" current url will be used to determine the system
744
787
  *
788
+ *
745
789
  * @returns Value of property `systemName`
746
790
  */
747
791
  getSystemName(): string;
@@ -752,6 +796,7 @@ declare module "sap/sac/df/FlexAnalysis" {
752
796
  *
753
797
  * Default value is `BW`.
754
798
  *
799
+ *
755
800
  * @returns Value of property `systemType`
756
801
  */
757
802
  getSystemType(): SystemType | keyof typeof SystemType;
@@ -760,6 +805,7 @@ declare module "sap/sac/df/FlexAnalysis" {
760
805
  *
761
806
  * Sets title to be shown in the control. If not set the name of the corresponding back-end query is used
762
807
  *
808
+ *
763
809
  * @returns Value of property `title`
764
810
  */
765
811
  getTitle(): string;
@@ -770,6 +816,7 @@ declare module "sap/sac/df/FlexAnalysis" {
770
816
  *
771
817
  * Default value is `"100%"`.
772
818
  *
819
+ *
773
820
  * @returns Value of property `width`
774
821
  */
775
822
  getWidth(): CSSSize;
@@ -777,6 +824,7 @@ declare module "sap/sac/df/FlexAnalysis" {
777
824
  * Checks for the provided `sap.sac.df.FlexAnalysisPanel` in the aggregation {@link #getCustomPanels customPanels}.
778
825
  * and returns its index if found or -1 otherwise.
779
826
  *
827
+ *
780
828
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
781
829
  */
782
830
  indexOfCustomPanel(
@@ -788,6 +836,7 @@ declare module "sap/sac/df/FlexAnalysis" {
788
836
  /**
789
837
  * Inserts a customPanel into the aggregation {@link #getCustomPanels customPanels}.
790
838
  *
839
+ *
791
840
  * @returns Reference to `this` in order to allow method chaining
792
841
  */
793
842
  insertCustomPanel(
@@ -807,12 +856,14 @@ declare module "sap/sac/df/FlexAnalysis" {
807
856
  *
808
857
  * Additionally, it unregisters them from the hosting UIArea.
809
858
  *
859
+ *
810
860
  * @returns An array of the removed elements (might be empty)
811
861
  */
812
862
  removeAllCustomPanels(): FlexAnalysisPanel[];
813
863
  /**
814
864
  * Removes a customPanel from the aggregation {@link #getCustomPanels customPanels}.
815
865
  *
866
+ *
816
867
  * @returns The removed customPanel or `null`
817
868
  */
818
869
  removeCustomPanel(
@@ -830,6 +881,7 @@ declare module "sap/sac/df/FlexAnalysis" {
830
881
  *
831
882
  * Default value is `true`.
832
883
  *
884
+ *
833
885
  * @returns Reference to `this` in order to allow method chaining
834
886
  */
835
887
  setAutoUpdate(
@@ -845,6 +897,7 @@ declare module "sap/sac/df/FlexAnalysis" {
845
897
  *
846
898
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
847
899
  *
900
+ *
848
901
  * @returns Reference to `this` in order to allow method chaining
849
902
  */
850
903
  setClientIdentifier(
@@ -860,6 +913,7 @@ declare module "sap/sac/df/FlexAnalysis" {
860
913
  *
861
914
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
862
915
  *
916
+ *
863
917
  * @returns Reference to `this` in order to allow method chaining
864
918
  */
865
919
  setConfigId(
@@ -875,6 +929,7 @@ declare module "sap/sac/df/FlexAnalysis" {
875
929
  *
876
930
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
877
931
  *
932
+ *
878
933
  * @returns Reference to `this` in order to allow method chaining
879
934
  */
880
935
  setConfigObject(
@@ -890,6 +945,7 @@ declare module "sap/sac/df/FlexAnalysis" {
890
945
  *
891
946
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
892
947
  *
948
+ *
893
949
  * @returns Reference to `this` in order to allow method chaining
894
950
  */
895
951
  setConfigurationURI(
@@ -905,6 +961,7 @@ declare module "sap/sac/df/FlexAnalysis" {
905
961
  *
906
962
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
907
963
  *
964
+ *
908
965
  * @returns Reference to `this` in order to allow method chaining
909
966
  */
910
967
  setDataProvider(
@@ -922,6 +979,7 @@ declare module "sap/sac/df/FlexAnalysis" {
922
979
  *
923
980
  * Default value is `"$datasource"`.
924
981
  *
982
+ *
925
983
  * @returns Reference to `this` in order to allow method chaining
926
984
  */
927
985
  setDataSource(
@@ -939,6 +997,7 @@ declare module "sap/sac/df/FlexAnalysis" {
939
997
  *
940
998
  * Default value is `[]`.
941
999
  *
1000
+ *
942
1001
  * @returns Reference to `this` in order to allow method chaining
943
1002
  */
944
1003
  setEnvironment(
@@ -956,6 +1015,7 @@ declare module "sap/sac/df/FlexAnalysis" {
956
1015
  *
957
1016
  * Default value is `"100%"`.
958
1017
  *
1018
+ *
959
1019
  * @returns Reference to `this` in order to allow method chaining
960
1020
  */
961
1021
  setHeight(
@@ -973,6 +1033,7 @@ declare module "sap/sac/df/FlexAnalysis" {
973
1033
  *
974
1034
  * Default value is `true`.
975
1035
  *
1036
+ *
976
1037
  * @returns Reference to `this` in order to allow method chaining
977
1038
  */
978
1039
  setHideDesignPanel(
@@ -990,6 +1051,7 @@ declare module "sap/sac/df/FlexAnalysis" {
990
1051
  *
991
1052
  * Default value is `false`.
992
1053
  *
1054
+ *
993
1055
  * @returns Reference to `this` in order to allow method chaining
994
1056
  */
995
1057
  setHideFilterLine(
@@ -1007,6 +1069,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1007
1069
  *
1008
1070
  * Default value is `true`.
1009
1071
  *
1072
+ *
1010
1073
  * @returns Reference to `this` in order to allow method chaining
1011
1074
  */
1012
1075
  setHideLandingPage(
@@ -1024,6 +1087,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1024
1087
  *
1025
1088
  * Default value is `true`.
1026
1089
  *
1090
+ *
1027
1091
  * @returns Reference to `this` in order to allow method chaining
1028
1092
  */
1029
1093
  setHideMenuBar(
@@ -1041,6 +1105,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1041
1105
  *
1042
1106
  * Default value is `false`.
1043
1107
  *
1108
+ *
1044
1109
  * @returns Reference to `this` in order to allow method chaining
1045
1110
  */
1046
1111
  setHideSideNavigation(
@@ -1058,6 +1123,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1058
1123
  *
1059
1124
  * Default value is `true`.
1060
1125
  *
1126
+ *
1061
1127
  * @returns Reference to `this` in order to allow method chaining
1062
1128
  */
1063
1129
  setHideStatusBar(
@@ -1075,6 +1141,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1075
1141
  *
1076
1142
  * Default value is `true`.
1077
1143
  *
1144
+ *
1078
1145
  * @returns Reference to `this` in order to allow method chaining
1079
1146
  */
1080
1147
  setHideStylePanel(
@@ -1092,6 +1159,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1092
1159
  *
1093
1160
  * Default value is `true`.
1094
1161
  *
1162
+ *
1095
1163
  * @returns Reference to `this` in order to allow method chaining
1096
1164
  */
1097
1165
  setHideToolBar(
@@ -1110,6 +1178,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1110
1178
  *
1111
1179
  * Default value is `true`.
1112
1180
  *
1181
+ *
1113
1182
  * @returns Reference to `this` in order to allow method chaining
1114
1183
  */
1115
1184
  setImplicitVariableHandling(
@@ -1127,6 +1196,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1127
1196
  *
1128
1197
  * Default value is `0`.
1129
1198
  *
1199
+ *
1130
1200
  * @returns Reference to `this` in order to allow method chaining
1131
1201
  */
1132
1202
  setKeepAliveInterval(
@@ -1144,6 +1214,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1144
1214
  *
1145
1215
  * Default value is `"om"`.
1146
1216
  *
1217
+ *
1147
1218
  * @returns Reference to `this` in order to allow method chaining
1148
1219
  */
1149
1220
  setMultiDimModelId(
@@ -1161,6 +1232,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1161
1232
  *
1162
1233
  * Default value is `false`.
1163
1234
  *
1235
+ *
1164
1236
  * @returns Reference to `this` in order to allow method chaining
1165
1237
  */
1166
1238
  setShowTitle(
@@ -1177,6 +1249,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1177
1249
  *
1178
1250
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1179
1251
  *
1252
+ *
1180
1253
  * @returns Reference to `this` in order to allow method chaining
1181
1254
  */
1182
1255
  setStyleTemplateName(
@@ -1192,6 +1265,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1192
1265
  *
1193
1266
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1194
1267
  *
1268
+ *
1195
1269
  * @returns Reference to `this` in order to allow method chaining
1196
1270
  */
1197
1271
  setSystemName(
@@ -1209,6 +1283,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1209
1283
  *
1210
1284
  * Default value is `BW`.
1211
1285
  *
1286
+ *
1212
1287
  * @returns Reference to `this` in order to allow method chaining
1213
1288
  */
1214
1289
  setSystemType(
@@ -1224,6 +1299,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1224
1299
  *
1225
1300
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1226
1301
  *
1302
+ *
1227
1303
  * @returns Reference to `this` in order to allow method chaining
1228
1304
  */
1229
1305
  setTitle(
@@ -1241,6 +1317,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1241
1317
  *
1242
1318
  * Default value is `"100%"`.
1243
1319
  *
1320
+ *
1244
1321
  * @returns Reference to `this` in order to allow method chaining
1245
1322
  */
1246
1323
  setWidth(
@@ -1252,6 +1329,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1252
1329
  /**
1253
1330
  * Unbinds property {@link #getDataProvider dataProvider} from model data.
1254
1331
  *
1332
+ *
1255
1333
  * @returns Reference to `this` in order to allow method chaining
1256
1334
  */
1257
1335
  unbindDataProvider(): this;
@@ -1416,9 +1494,9 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1416
1494
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1417
1495
 
1418
1496
  /**
1419
- * @experimental
1420
- *
1421
1497
  * A panel to be added into FlexAnalysis control
1498
+ *
1499
+ * @experimental
1422
1500
  */
1423
1501
  export default class FlexAnalysisPanel extends UI5Element {
1424
1502
  /**
@@ -1458,6 +1536,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1458
1536
  *
1459
1537
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1460
1538
  *
1539
+ *
1461
1540
  * @returns Created class / constructor function
1462
1541
  */
1463
1542
  static extend<T extends Record<string, unknown>>(
@@ -1478,12 +1557,14 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1478
1557
  /**
1479
1558
  * Returns a metadata object for class sap.sac.df.FlexAnalysisPanel.
1480
1559
  *
1560
+ *
1481
1561
  * @returns Metadata object describing this class
1482
1562
  */
1483
1563
  static getMetadata(): ElementMetadata;
1484
1564
  /**
1485
1565
  * Destroys the content in the aggregation {@link #getContent content}.
1486
1566
  *
1567
+ *
1487
1568
  * @returns Reference to `this` in order to allow method chaining
1488
1569
  */
1489
1570
  destroyContent(): this;
@@ -1498,6 +1579,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1498
1579
  *
1499
1580
  * The description of the panel, displayed as tooltip on the side navigation item.
1500
1581
  *
1582
+ *
1501
1583
  * @returns Value of property `description`
1502
1584
  */
1503
1585
  getDescription(): string;
@@ -1506,6 +1588,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1506
1588
  *
1507
1589
  * The icon of the panel, displayed on the side navigation item and the panel header.
1508
1590
  *
1591
+ *
1509
1592
  * @returns Value of property `icon`
1510
1593
  */
1511
1594
  getIcon(): URI;
@@ -1514,12 +1597,14 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1514
1597
  *
1515
1598
  * The title of the panel header.
1516
1599
  *
1600
+ *
1517
1601
  * @returns Value of property `title`
1518
1602
  */
1519
1603
  getTitle(): string;
1520
1604
  /**
1521
1605
  * Sets the aggregated {@link #getContent content}.
1522
1606
  *
1607
+ *
1523
1608
  * @returns Reference to `this` in order to allow method chaining
1524
1609
  */
1525
1610
  setContent(
@@ -1535,6 +1620,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1535
1620
  *
1536
1621
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1537
1622
  *
1623
+ *
1538
1624
  * @returns Reference to `this` in order to allow method chaining
1539
1625
  */
1540
1626
  setDescription(
@@ -1550,6 +1636,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1550
1636
  *
1551
1637
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1552
1638
  *
1639
+ *
1553
1640
  * @returns Reference to `this` in order to allow method chaining
1554
1641
  */
1555
1642
  setIcon(
@@ -1565,6 +1652,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1565
1652
  *
1566
1653
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1567
1654
  *
1655
+ *
1568
1656
  * @returns Reference to `this` in order to allow method chaining
1569
1657
  */
1570
1658
  setTitle(
@@ -1604,9 +1692,6 @@ declare module "sap/sac/df/model/AxesLayout" {
1604
1692
  import Metadata from "sap/ui/base/Metadata";
1605
1693
 
1606
1694
  /**
1607
- * @since 1.119
1608
- * @experimental (since 1.119)
1609
- *
1610
1695
  * Axis Layout showing which dimensions are set on rows and which on columns.
1611
1696
  *
1612
1697
  * **Structure of Exposed Data:**
@@ -1615,9 +1700,16 @@ declare module "sap/sac/df/model/AxesLayout" {
1615
1700
  * "Rows": [],
1616
1701
  * "Columns": []
1617
1702
  * ```
1703
+ *
1704
+ *
1705
+ * @since 1.119
1706
+ * @experimental (since 1.119)
1618
1707
  */
1619
1708
  export default class AxesLayout extends BaseObject {
1620
- constructor();
1709
+ /**
1710
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1711
+ */
1712
+ protected constructor();
1621
1713
 
1622
1714
  /**
1623
1715
  * Creates a new subclass of class sap.sac.df.model.AxesLayout with name `sClassName` and enriches it with
@@ -1625,6 +1717,7 @@ declare module "sap/sac/df/model/AxesLayout" {
1625
1717
  *
1626
1718
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
1627
1719
  *
1720
+ *
1628
1721
  * @returns Created class / constructor function
1629
1722
  */
1630
1723
  static extend<T extends Record<string, unknown>>(
@@ -1645,12 +1738,14 @@ declare module "sap/sac/df/model/AxesLayout" {
1645
1738
  /**
1646
1739
  * Returns a metadata object for class sap.sac.df.model.AxesLayout.
1647
1740
  *
1741
+ *
1648
1742
  * @returns Metadata object describing this class
1649
1743
  */
1650
1744
  static getMetadata(): Metadata;
1651
1745
  /**
1652
1746
  * Distribute the dimension among the rows and columns
1653
1747
  *
1748
+ *
1654
1749
  * @returns resolving to the axes layout object to allow chaining
1655
1750
  */
1656
1751
  setAxesLayout(
@@ -1684,9 +1779,6 @@ declare module "sap/sac/df/model/DataProvider" {
1684
1779
  import Metadata from "sap/ui/base/Metadata";
1685
1780
 
1686
1781
  /**
1687
- * @since 1.119
1688
- * @experimental (since 1.119)
1689
- *
1690
1782
  * A data provider is an analytical query exposed via an analytical engine and accessed via InA protocol.
1691
1783
  * It represents a navigable query manager and allows to access and change data. Instances of this class
1692
1784
  * should only be created by the {@link sap.sac.df.model.MultiDimModel}.
@@ -1706,9 +1798,16 @@ declare module "sap/sac/df/model/DataProvider" {
1706
1798
  * "Grid": { },
1707
1799
  * "Messages": [ ]
1708
1800
  * ```
1801
+ *
1802
+ *
1803
+ * @since 1.119
1804
+ * @experimental (since 1.119)
1709
1805
  */
1710
1806
  export default class DataProvider extends BaseObject {
1711
- constructor();
1807
+ /**
1808
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1809
+ */
1810
+ protected constructor();
1712
1811
  /**
1713
1812
  * AxesLayout
1714
1813
  */
@@ -1745,6 +1844,7 @@ declare module "sap/sac/df/model/DataProvider" {
1745
1844
  *
1746
1845
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
1747
1846
  *
1847
+ *
1748
1848
  * @returns Created class / constructor function
1749
1849
  */
1750
1850
  static extend<T extends Record<string, unknown>>(
@@ -1765,12 +1865,14 @@ declare module "sap/sac/df/model/DataProvider" {
1765
1865
  /**
1766
1866
  * Returns a metadata object for class sap.sac.df.model.DataProvider.
1767
1867
  *
1868
+ *
1768
1869
  * @returns Metadata object describing this class
1769
1870
  */
1770
1871
  static getMetadata(): Metadata;
1771
1872
  /**
1772
1873
  * Updates the multidimensional model from the given the state of a data provider
1773
1874
  *
1875
+ *
1774
1876
  * @returns Promise with reference to this in order to allow method chaining
1775
1877
  */
1776
1878
  deserialize(
@@ -1799,18 +1901,21 @@ declare module "sap/sac/df/model/DataProvider" {
1799
1901
  /**
1800
1902
  * Get axis Layout
1801
1903
  *
1904
+ *
1802
1905
  * @returns Axis layout object
1803
1906
  */
1804
1907
  getAxesLayout(): AxesLayout;
1805
1908
  /**
1806
1909
  * Get data source information
1807
1910
  *
1911
+ *
1808
1912
  * @returns data source information object
1809
1913
  */
1810
1914
  getDataSourceInfo(): DataSourceInfo;
1811
1915
  /**
1812
1916
  * Get the scaling factor of a measure or cell
1813
1917
  *
1918
+ *
1814
1919
  * @returns Number of decimal places
1815
1920
  */
1816
1921
  getDecimalPlaces(
@@ -1826,6 +1931,7 @@ declare module "sap/sac/df/model/DataProvider" {
1826
1931
  /**
1827
1932
  * Get Dimension
1828
1933
  *
1934
+ *
1829
1935
  * @returns Dimension object
1830
1936
  */
1831
1937
  getDimension(
@@ -1837,18 +1943,21 @@ declare module "sap/sac/df/model/DataProvider" {
1837
1943
  /**
1838
1944
  * Get all dimensions
1839
1945
  *
1946
+ *
1840
1947
  * @returns Object of all dimensions
1841
1948
  */
1842
1949
  getDimensions(): Record<string, Dimension>;
1843
1950
  /**
1844
1951
  * Get Grid
1845
1952
  *
1953
+ *
1846
1954
  * @returns Grid object
1847
1955
  */
1848
1956
  getGrid(): Grid;
1849
1957
  /**
1850
1958
  * Get measure
1851
1959
  *
1960
+ *
1852
1961
  * @returns Measure object
1853
1962
  */
1854
1963
  getMeasure(
@@ -1860,12 +1969,14 @@ declare module "sap/sac/df/model/DataProvider" {
1860
1969
  /**
1861
1970
  * Get all measures
1862
1971
  *
1972
+ *
1863
1973
  * @returns Object of all measures
1864
1974
  */
1865
1975
  getMeasures(): /* was: sap.sac.df.model.Measure */ any;
1866
1976
  /**
1867
1977
  * Get Measure Structure Dimension
1868
1978
  *
1979
+ *
1869
1980
  * @returns Measure structure dimension
1870
1981
  */
1871
1982
  getMeasureStructureDimension(): Dimension;
@@ -1881,6 +1992,7 @@ declare module "sap/sac/df/model/DataProvider" {
1881
1992
  /**
1882
1993
  * Get the scaling factor of a measure or cell
1883
1994
  *
1995
+ *
1884
1996
  * @returns Scaling factor
1885
1997
  */
1886
1998
  getScalingFactor(
@@ -1896,12 +2008,14 @@ declare module "sap/sac/df/model/DataProvider" {
1896
2008
  /**
1897
2009
  * Get structure (non-measure) dimension
1898
2010
  *
2011
+ *
1899
2012
  * @returns Structure dimension object
1900
2013
  */
1901
2014
  getStructureDimension(): Dimension;
1902
2015
  /**
1903
2016
  * Get Variable
1904
2017
  *
2018
+ *
1905
2019
  * @returns Variable object
1906
2020
  */
1907
2021
  getVariable(
@@ -1913,12 +2027,14 @@ declare module "sap/sac/df/model/DataProvider" {
1913
2027
  /**
1914
2028
  * Get all variables
1915
2029
  *
2030
+ *
1916
2031
  * @returns Object of all variables
1917
2032
  */
1918
2033
  getVariables(): Record<string, Variable>;
1919
2034
  /**
1920
2035
  * Serialize the data provider state to a JSON representation
1921
2036
  *
2037
+ *
1922
2038
  * @returns A JSON object which represents the data provider
1923
2039
  */
1924
2040
  serialize(
@@ -1930,6 +2046,7 @@ declare module "sap/sac/df/model/DataProvider" {
1930
2046
  /**
1931
2047
  * Set the number of decimal places of a measure or cell
1932
2048
  *
2049
+ *
1933
2050
  * @returns Reference to this in order to allow method chaining
1934
2051
  */
1935
2052
  setDecimalPlaces(
@@ -1949,6 +2066,7 @@ declare module "sap/sac/df/model/DataProvider" {
1949
2066
  /**
1950
2067
  * Set the scaling factor of a measure or cell
1951
2068
  *
2069
+ *
1952
2070
  * @returns Reference to this in order to allow method chaining
1953
2071
  */
1954
2072
  setScalingFactor(
@@ -1969,6 +2087,7 @@ declare module "sap/sac/df/model/DataProvider" {
1969
2087
  * Checks whether an InA capability is supported by the server. Throws an error for unhandled capabilities.
1970
2088
  * List of handled capabilities can be seen in type {@link sap.sac.df.model.Capability}
1971
2089
  *
2090
+ *
1972
2091
  * @returns Returns true, if the capability is supported, else false
1973
2092
  */
1974
2093
  supportsCapability(
@@ -1986,9 +2105,6 @@ declare module "sap/sac/df/model/DataSourceInfo" {
1986
2105
  import Metadata from "sap/ui/base/Metadata";
1987
2106
 
1988
2107
  /**
1989
- * @since 1.119
1990
- * @experimental (since 1.119)
1991
- *
1992
2108
  * Data source information.
1993
2109
  *
1994
2110
  * **Structure of Exposed Data:**
@@ -2009,9 +2125,16 @@ declare module "sap/sac/df/model/DataSourceInfo" {
2009
2125
  * "LastUpdatedBy": "",
2010
2126
  * "LastUpdatedText": ""
2011
2127
  * ```
2128
+ *
2129
+ *
2130
+ * @since 1.119
2131
+ * @experimental (since 1.119)
2012
2132
  */
2013
2133
  export default class DataSourceInfo extends BaseObject {
2014
- constructor();
2134
+ /**
2135
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2136
+ */
2137
+ protected constructor();
2015
2138
 
2016
2139
  /**
2017
2140
  * Creates a new subclass of class sap.sac.df.model.DataSourceInfo with name `sClassName` and enriches it
@@ -2019,6 +2142,7 @@ declare module "sap/sac/df/model/DataSourceInfo" {
2019
2142
  *
2020
2143
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2021
2144
  *
2145
+ *
2022
2146
  * @returns Created class / constructor function
2023
2147
  */
2024
2148
  static extend<T extends Record<string, unknown>>(
@@ -2039,6 +2163,7 @@ declare module "sap/sac/df/model/DataSourceInfo" {
2039
2163
  /**
2040
2164
  * Returns a metadata object for class sap.sac.df.model.DataSourceInfo.
2041
2165
  *
2166
+ *
2042
2167
  * @returns Metadata object describing this class
2043
2168
  */
2044
2169
  static getMetadata(): Metadata;
@@ -2051,9 +2176,6 @@ declare module "sap/sac/df/model/Dimension" {
2051
2176
  import Metadata from "sap/ui/base/Metadata";
2052
2177
 
2053
2178
  /**
2054
- * @since 1.119
2055
- * @experimental (since 1.119)
2056
- *
2057
2179
  * Dimension Object
2058
2180
  *
2059
2181
  * **Structure of Exposed Data:**
@@ -2082,9 +2204,16 @@ declare module "sap/sac/df/model/Dimension" {
2082
2204
  * "SemanticObject": "
2083
2205
  * }]
2084
2206
  * ```
2207
+ *
2208
+ *
2209
+ * @since 1.119
2210
+ * @experimental (since 1.119)
2085
2211
  */
2086
2212
  export default class Dimension extends BaseObject {
2087
- constructor();
2213
+ /**
2214
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2215
+ */
2216
+ protected constructor();
2088
2217
 
2089
2218
  /**
2090
2219
  * Creates a new subclass of class sap.sac.df.model.Dimension with name `sClassName` and enriches it with
@@ -2092,6 +2221,7 @@ declare module "sap/sac/df/model/Dimension" {
2092
2221
  *
2093
2222
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2094
2223
  *
2224
+ *
2095
2225
  * @returns Created class / constructor function
2096
2226
  */
2097
2227
  static extend<T extends Record<string, unknown>>(
@@ -2112,12 +2242,14 @@ declare module "sap/sac/df/model/Dimension" {
2112
2242
  /**
2113
2243
  * Returns a metadata object for class sap.sac.df.model.Dimension.
2114
2244
  *
2245
+ *
2115
2246
  * @returns Metadata object describing this class
2116
2247
  */
2117
2248
  static getMetadata(): Metadata;
2118
2249
  /**
2119
2250
  * Set Display Type of Dimension
2120
2251
  *
2252
+ *
2121
2253
  * @returns } resolving to the Dimension to allow chaining.
2122
2254
  */
2123
2255
  static setDimensionDisplay(
@@ -2129,6 +2261,7 @@ declare module "sap/sac/df/model/Dimension" {
2129
2261
  /**
2130
2262
  * Add dimension filters
2131
2263
  *
2264
+ *
2132
2265
  * @returns Reference to this in order to allow method chaining
2133
2266
  */
2134
2267
  addMemberFilter(
@@ -2144,6 +2277,7 @@ declare module "sap/sac/df/model/Dimension" {
2144
2277
  /**
2145
2278
  * Add a member filter by its key
2146
2279
  *
2280
+ *
2147
2281
  * @returns Reference to this in order to allow method chaining
2148
2282
  */
2149
2283
  addMemberFilterByKey(
@@ -2159,6 +2293,7 @@ declare module "sap/sac/df/model/Dimension" {
2159
2293
  /**
2160
2294
  * Clear the filter of a dimension
2161
2295
  *
2296
+ *
2162
2297
  * @returns Reference to this in order to allow method chaining
2163
2298
  */
2164
2299
  clearMemberFilter(
@@ -2170,30 +2305,35 @@ declare module "sap/sac/df/model/Dimension" {
2170
2305
  /**
2171
2306
  * Get effective dimension filters
2172
2307
  *
2308
+ *
2173
2309
  * @returns array of member filters
2174
2310
  */
2175
2311
  getMemberFilter(): /* was: sap.sac.df.model.MemberFilter */ any[];
2176
2312
  /**
2177
2313
  * Move dimension one position down on it's axis
2178
2314
  *
2315
+ *
2179
2316
  * @returns Reference to this in order to allow method chaining
2180
2317
  */
2181
2318
  moveDown(): this;
2182
2319
  /**
2183
2320
  * Move dimension one position up on it's axis
2184
2321
  *
2322
+ *
2185
2323
  * @returns Reference to this in order to allow method chaining
2186
2324
  */
2187
2325
  moveUp(): this;
2188
2326
  /**
2189
2327
  * Open a dialog to display and change the settings of a dimension of the `DataProvider`
2190
2328
  *
2329
+ *
2191
2330
  * @returns indicator whether the dialog was confirmed or canceled
2192
2331
  */
2193
2332
  openPropertyDialog(): Promise<boolean>;
2194
2333
  /**
2195
2334
  * Open a dialog to display and change the filter on a dimension
2196
2335
  *
2336
+ *
2197
2337
  * @returns resolving to a boolean which is false when the dialog is cancelled and true if is was closed
2198
2338
  * with Ok and dynamic filters of the given dimension are updated
2199
2339
  */
@@ -2206,6 +2346,7 @@ declare module "sap/sac/df/model/Dimension" {
2206
2346
  /**
2207
2347
  * Set Display Hierarchy
2208
2348
  *
2349
+ *
2209
2350
  * @returns resolving to the `Dimension` to allow chaining.
2210
2351
  */
2211
2352
  readHierarchy(
@@ -2217,12 +2358,14 @@ declare module "sap/sac/df/model/Dimension" {
2217
2358
  /**
2218
2359
  * Remove a drill operation on a dimension member
2219
2360
  *
2361
+ *
2220
2362
  * @returns Reference to this in order to allow method chaining
2221
2363
  */
2222
2364
  removeDrilldown(): this;
2223
2365
  /**
2224
2366
  * Remove the filter of a dimension
2225
2367
  *
2368
+ *
2226
2369
  * @returns Reference to this in order to allow method chaining
2227
2370
  */
2228
2371
  removeMemberFilter(
@@ -2238,6 +2381,7 @@ declare module "sap/sac/df/model/Dimension" {
2238
2381
  /**
2239
2382
  * Remove a member filter by its key
2240
2383
  *
2384
+ *
2241
2385
  * @returns Reference to this in order to allow method chaining
2242
2386
  */
2243
2387
  removeMemberFilterByKey(
@@ -2253,6 +2397,7 @@ declare module "sap/sac/df/model/Dimension" {
2253
2397
  /**
2254
2398
  * Performs the search for a given value
2255
2399
  *
2400
+ *
2256
2401
  * @returns array of found member filters
2257
2402
  */
2258
2403
  searchMember(
@@ -2285,6 +2430,7 @@ declare module "sap/sac/df/model/Dimension" {
2285
2430
  /**
2286
2431
  * Set Display Hierarchy
2287
2432
  *
2433
+ *
2288
2434
  * @returns resolving to the `Dimension` to allow chaining.
2289
2435
  */
2290
2436
  setDisplayHierarchy(
@@ -2304,6 +2450,7 @@ declare module "sap/sac/df/model/Dimension" {
2304
2450
  /**
2305
2451
  * Set dimension filters
2306
2452
  *
2453
+ *
2307
2454
  * @returns Reference to this in order to allow method chaining
2308
2455
  */
2309
2456
  setMemberFilter(
@@ -2319,6 +2466,7 @@ declare module "sap/sac/df/model/Dimension" {
2319
2466
  /**
2320
2467
  * Set a member filter by its key
2321
2468
  *
2469
+ *
2322
2470
  * @returns Reference to this in order to allow method chaining
2323
2471
  */
2324
2472
  setMemberFilterByKey(
@@ -2334,6 +2482,7 @@ declare module "sap/sac/df/model/Dimension" {
2334
2482
  /**
2335
2483
  * Sort the members of a dimension
2336
2484
  *
2485
+ *
2337
2486
  * @returns Promise referencing to this in order to allow method chaining
2338
2487
  */
2339
2488
  sort(
@@ -2353,12 +2502,14 @@ declare module "sap/sac/df/model/Dimension" {
2353
2502
  /**
2354
2503
  * Move dimension to the columns axis
2355
2504
  *
2505
+ *
2356
2506
  * @returns Reference to this in order to allow method chaining
2357
2507
  */
2358
2508
  toColumns(): this;
2359
2509
  /**
2360
2510
  * Move dimension to the rows axis
2361
2511
  *
2512
+ *
2362
2513
  * @returns Reference to this in order to allow method chaining
2363
2514
  */
2364
2515
  toRows(): this;
@@ -2371,13 +2522,16 @@ declare module "sap/sac/df/model/Document" {
2371
2522
  import Metadata from "sap/ui/base/Metadata";
2372
2523
 
2373
2524
  /**
2525
+ * Document Object
2526
+ *
2374
2527
  * @since 1.119
2375
2528
  * @experimental (since 1.119)
2376
- *
2377
- * Document Object
2378
2529
  */
2379
2530
  export default class Document extends BaseObject {
2380
- constructor();
2531
+ /**
2532
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2533
+ */
2534
+ protected constructor();
2381
2535
 
2382
2536
  /**
2383
2537
  * Creates a new subclass of class sap.sac.df.model.Document with name `sClassName` and enriches it with
@@ -2385,6 +2539,7 @@ declare module "sap/sac/df/model/Document" {
2385
2539
  *
2386
2540
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2387
2541
  *
2542
+ *
2388
2543
  * @returns Created class / constructor function
2389
2544
  */
2390
2545
  static extend<T extends Record<string, unknown>>(
@@ -2405,12 +2560,14 @@ declare module "sap/sac/df/model/Document" {
2405
2560
  /**
2406
2561
  * Returns a metadata object for class sap.sac.df.model.Document.
2407
2562
  *
2563
+ *
2408
2564
  * @returns Metadata object describing this class
2409
2565
  */
2410
2566
  static getMetadata(): Metadata;
2411
2567
  /**
2412
2568
  * Creates a document in the document store
2413
2569
  *
2570
+ *
2414
2571
  * @returns a promise which resolves to true if create operation is successful, otherwise false.
2415
2572
  */
2416
2573
  createDocument(
@@ -2426,6 +2583,7 @@ declare module "sap/sac/df/model/Document" {
2426
2583
  /**
2427
2584
  * Creates a document ID for a data cell in the result set
2428
2585
  *
2586
+ *
2429
2587
  * @returns a promise which resolves with the newly created document ID
2430
2588
  */
2431
2589
  createDocumentId(
@@ -2441,6 +2599,7 @@ declare module "sap/sac/df/model/Document" {
2441
2599
  /**
2442
2600
  * Deletes a document in the document store
2443
2601
  *
2602
+ *
2444
2603
  * @returns a promise which resolves to true if delete operation is successful, otherwise false.
2445
2604
  */
2446
2605
  deleteDocument(
@@ -2452,6 +2611,7 @@ declare module "sap/sac/df/model/Document" {
2452
2611
  /**
2453
2612
  * Deletes a document ID for a data cell in the result set
2454
2613
  *
2614
+ *
2455
2615
  * @returns a promise which resolves to true if the delete operation is successful, otherwise false.
2456
2616
  */
2457
2617
  deleteDocumentId(
@@ -2467,6 +2627,7 @@ declare module "sap/sac/df/model/Document" {
2467
2627
  /**
2468
2628
  * Gets a document ID of a data cell in the result set
2469
2629
  *
2630
+ *
2470
2631
  * @returns a promise which resolves with the document ID
2471
2632
  */
2472
2633
  getDocumentId(
@@ -2482,12 +2643,14 @@ declare module "sap/sac/df/model/Document" {
2482
2643
  /**
2483
2644
  * Gets the type of DocumentsSupport.
2484
2645
  *
2646
+ *
2485
2647
  * @returns DocumentsSupport type
2486
2648
  */
2487
2649
  getDocumentsSupportType(): string;
2488
2650
  /**
2489
2651
  * Retrieves a document from the document store
2490
2652
  *
2653
+ *
2491
2654
  * @returns a promise which resolves with the version(s) of the document.
2492
2655
  */
2493
2656
  retrieveDocument(
@@ -2503,6 +2666,7 @@ declare module "sap/sac/df/model/Document" {
2503
2666
  /**
2504
2667
  * Retrieves multiple documents from the document store
2505
2668
  *
2669
+ *
2506
2670
  * @returns a promise which resolves with all documents and its versions.
2507
2671
  */
2508
2672
  retrieveMultipleDocuments(
@@ -2514,6 +2678,7 @@ declare module "sap/sac/df/model/Document" {
2514
2678
  /**
2515
2679
  * Updates a document in the document store
2516
2680
  *
2681
+ *
2517
2682
  * @returns a promise which resolves to true if update operation is successful, otherwise false.
2518
2683
  */
2519
2684
  updateDocument(
@@ -2537,13 +2702,16 @@ declare module "sap/sac/df/model/Grid" {
2537
2702
  import Metadata from "sap/ui/base/Metadata";
2538
2703
 
2539
2704
  /**
2705
+ * Grid Object
2706
+ *
2540
2707
  * @since 1.119
2541
2708
  * @experimental (since 1.119)
2542
- *
2543
- * Grid Object
2544
2709
  */
2545
2710
  export default class Grid extends BaseObject {
2546
- constructor();
2711
+ /**
2712
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2713
+ */
2714
+ protected constructor();
2547
2715
  /**
2548
2716
  * Documents
2549
2717
  */
@@ -2555,6 +2723,7 @@ declare module "sap/sac/df/model/Grid" {
2555
2723
  *
2556
2724
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2557
2725
  *
2726
+ *
2558
2727
  * @returns Created class / constructor function
2559
2728
  */
2560
2729
  static extend<T extends Record<string, unknown>>(
@@ -2575,12 +2744,14 @@ declare module "sap/sac/df/model/Grid" {
2575
2744
  /**
2576
2745
  * Returns a metadata object for class sap.sac.df.model.Grid.
2577
2746
  *
2747
+ *
2578
2748
  * @returns Metadata object describing this class
2579
2749
  */
2580
2750
  static getMetadata(): Metadata;
2581
2751
  /**
2582
2752
  * Gets the cell context for a data cell in the result set
2583
2753
  *
2754
+ *
2584
2755
  * @returns a promise which resolves with the retrieved cell context
2585
2756
  */
2586
2757
  getCellContext(
@@ -2596,6 +2767,7 @@ declare module "sap/sac/df/model/Grid" {
2596
2767
  /**
2597
2768
  * Get the list of the jump targets associated to a cell defined via the Report-To-Report Interface.
2598
2769
  *
2770
+ *
2599
2771
  * @returns resolving to the List of jump targets.
2600
2772
  */
2601
2773
  getRRITargets(
@@ -2627,9 +2799,6 @@ declare module "sap/sac/df/model/MultiDimModel" {
2627
2799
  import Event from "sap/ui/base/Event";
2628
2800
 
2629
2801
  /**
2630
- * @since 1.119
2631
- * @experimental (since 1.119)
2632
- *
2633
2802
  * The multidimensional model allows to access and change data accessed via the InA Protocol. The multidimensional
2634
2803
  * model populate it's exposed data in JSON format via binding to controls.
2635
2804
  *
@@ -2640,6 +2809,10 @@ declare module "sap/sac/df/model/MultiDimModel" {
2640
2809
  * "VariableGroups": { },
2641
2810
  * "Messages": [ ]
2642
2811
  * ```
2812
+ *
2813
+ *
2814
+ * @since 1.119
2815
+ * @experimental (since 1.119)
2643
2816
  */
2644
2817
  export default class MultiDimModel extends JSONModel {
2645
2818
  /**
@@ -2676,6 +2849,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2676
2849
  *
2677
2850
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.json.JSONModel.extend}.
2678
2851
  *
2852
+ *
2679
2853
  * @returns Created class / constructor function
2680
2854
  */
2681
2855
  static extend<T extends Record<string, unknown>>(
@@ -2696,12 +2870,14 @@ declare module "sap/sac/df/model/MultiDimModel" {
2696
2870
  /**
2697
2871
  * Returns a metadata object for class sap.sac.df.model.MultiDimModel.
2698
2872
  *
2873
+ *
2699
2874
  * @returns Metadata object describing this class
2700
2875
  */
2701
2876
  static getMetadata(): Metadata;
2702
2877
  /**
2703
2878
  * Creates a new data provider and attaches it to the model.
2704
2879
  *
2880
+ *
2705
2881
  * @returns Promise which resolves the created data provider
2706
2882
  */
2707
2883
  addDataProvider(
@@ -2736,6 +2912,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2736
2912
  * A variable group defines which variables of the underlying data providers should behave as the same variable.
2737
2913
  * The group is defined by a name and a rule. The first added variable becomes automatically the `MergedVariable`.
2738
2914
  *
2915
+ *
2739
2916
  * @returns Promise which resolves the created variable group
2740
2917
  */
2741
2918
  addVariableGroup(
@@ -2756,6 +2933,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2756
2933
  /**
2757
2934
  * Updates the model from the given the model state including all aggregated data providers
2758
2935
  *
2936
+ *
2759
2937
  * @returns Promise with reference to this in order to allow method chaining
2760
2938
  */
2761
2939
  deserialize(
@@ -2771,6 +2949,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2771
2949
  /**
2772
2950
  * Fires event {@link #event:dataProviderAdded dataProviderAdded} to attached listeners.
2773
2951
  *
2952
+ *
2774
2953
  * @returns Reference to this in order to allow method chaining
2775
2954
  */
2776
2955
  fireDataProviderAdded(
@@ -2782,6 +2961,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2782
2961
  /**
2783
2962
  * Fires event {@link #event:dataProviderRemoved dataProviderRemoved} to attached listeners.
2784
2963
  *
2964
+ *
2785
2965
  * @returns Reference to this in order to allow method chaining
2786
2966
  */
2787
2967
  fireDataProviderRemoved(
@@ -2793,6 +2973,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2793
2973
  /**
2794
2974
  * Fires event {@link #event:dataProviderUpdated dataProviderUpdated} to attached listeners.
2795
2975
  *
2976
+ *
2796
2977
  * @returns Reference to this in order to allow method chaining
2797
2978
  */
2798
2979
  fireDataProviderUpdated(
@@ -2804,6 +2985,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2804
2985
  /**
2805
2986
  * Get a data provider
2806
2987
  *
2988
+ *
2807
2989
  * @returns Data provider instance if found
2808
2990
  */
2809
2991
  getDataProvider(
@@ -2815,18 +2997,21 @@ declare module "sap/sac/df/model/MultiDimModel" {
2815
2997
  /**
2816
2998
  * Get all data providers
2817
2999
  *
3000
+ *
2818
3001
  * @returns Object of all data providers
2819
3002
  */
2820
3003
  getDataProviders(): Record<string, DataProvider>;
2821
3004
  /**
2822
3005
  * Get all messages
2823
3006
  *
3007
+ *
2824
3008
  * @returns Array of messages
2825
3009
  */
2826
3010
  getMessages(): Message[];
2827
3011
  /**
2828
3012
  * Get a variable group
2829
3013
  *
3014
+ *
2830
3015
  * @returns Variable group object
2831
3016
  */
2832
3017
  getVariableGroup(
@@ -2838,18 +3023,21 @@ declare module "sap/sac/df/model/MultiDimModel" {
2838
3023
  /**
2839
3024
  * Get all variable groups
2840
3025
  *
3026
+ *
2841
3027
  * @returns Object of all variable groups
2842
3028
  */
2843
3029
  getVariableGroups(): Record<string, VariableGroup>;
2844
3030
  /**
2845
3031
  * Ensures all aggregated DataProviders are logged off.
2846
3032
  *
3033
+ *
2847
3034
  * @returns Promise which resolves when logoff is finished.
2848
3035
  */
2849
3036
  logoff(): Promise<void>;
2850
3037
  /**
2851
3038
  * Remove existing data provider from the model.
2852
3039
  *
3040
+ *
2853
3041
  * @returns Promise which resolves when the removing s finished
2854
3042
  */
2855
3043
  removeDataProvider(
@@ -2861,6 +3049,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2861
3049
  /**
2862
3050
  * Remove a variable group from the model
2863
3051
  *
3052
+ *
2864
3053
  * @returns Promise which resolves when the removing s finished
2865
3054
  */
2866
3055
  removeVariableGroup(
@@ -2872,12 +3061,14 @@ declare module "sap/sac/df/model/MultiDimModel" {
2872
3061
  /**
2873
3062
  * Reset the model to the initial state
2874
3063
  *
3064
+ *
2875
3065
  * @returns Promise which resolves when reset is finished.
2876
3066
  */
2877
3067
  resetModel(): Promise<void>;
2878
3068
  /**
2879
3069
  * Serialize the model with all aggregated data providers to a JSON representation
2880
3070
  *
3071
+ *
2881
3072
  * @returns A JSON object which represents the multidimensional model
2882
3073
  */
2883
3074
  serialize(
@@ -2932,9 +3123,6 @@ declare module "sap/sac/df/model/Variable" {
2932
3123
  import Metadata from "sap/ui/base/Metadata";
2933
3124
 
2934
3125
  /**
2935
- * @since 1.119
2936
- * @experimental (since 1.119)
2937
- *
2938
3126
  * Variable Object
2939
3127
  *
2940
3128
  * **Structure of Exposed Data:**
@@ -2954,9 +3142,16 @@ declare module "sap/sac/df/model/Variable" {
2954
3142
  * "DataProviderName": "",
2955
3143
  * "MemberFilter": []
2956
3144
  * ```
3145
+ *
3146
+ *
3147
+ * @since 1.119
3148
+ * @experimental (since 1.119)
2957
3149
  */
2958
3150
  export default class Variable extends BaseObject {
2959
- constructor();
3151
+ /**
3152
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3153
+ */
3154
+ protected constructor();
2960
3155
 
2961
3156
  /**
2962
3157
  * Creates a new subclass of class sap.sac.df.model.Variable with name `sClassName` and enriches it with
@@ -2964,6 +3159,7 @@ declare module "sap/sac/df/model/Variable" {
2964
3159
  *
2965
3160
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2966
3161
  *
3162
+ *
2967
3163
  * @returns Created class / constructor function
2968
3164
  */
2969
3165
  static extend<T extends Record<string, unknown>>(
@@ -2984,12 +3180,14 @@ declare module "sap/sac/df/model/Variable" {
2984
3180
  /**
2985
3181
  * Returns a metadata object for class sap.sac.df.model.Variable.
2986
3182
  *
3183
+ *
2987
3184
  * @returns Metadata object describing this class
2988
3185
  */
2989
3186
  static getMetadata(): Metadata;
2990
3187
  /**
2991
3188
  * Add variable filters
2992
3189
  *
3190
+ *
2993
3191
  * @returns Reference to this in order to allow method chaining
2994
3192
  */
2995
3193
  addMemberFilter(
@@ -3005,6 +3203,7 @@ declare module "sap/sac/df/model/Variable" {
3005
3203
  /**
3006
3204
  * Add a member filter by its key
3007
3205
  *
3206
+ *
3008
3207
  * @returns Reference to this in order to allow method chaining
3009
3208
  */
3010
3209
  addMemberFilterByKey(
@@ -3020,6 +3219,7 @@ declare module "sap/sac/df/model/Variable" {
3020
3219
  /**
3021
3220
  * Clear variable filter
3022
3221
  *
3222
+ *
3023
3223
  * @returns Reference to this in order to allow method chaining
3024
3224
  */
3025
3225
  clearMemberFilter(
@@ -3031,12 +3231,14 @@ declare module "sap/sac/df/model/Variable" {
3031
3231
  /**
3032
3232
  * Get effective variable filters
3033
3233
  *
3234
+ *
3034
3235
  * @returns array of member filters
3035
3236
  */
3036
3237
  getMemberFilter(): /* was: sap.sac.df.model.MemberFilter */ any[];
3037
3238
  /**
3038
3239
  * Open a dialog to display and change the filter on a variable
3039
3240
  *
3241
+ *
3040
3242
  * @returns resolving to a boolean which is false when the dialog is cancelled and true if is was closed
3041
3243
  * with Ok and dynamic filters of the given dimension are updated
3042
3244
  */
@@ -3049,6 +3251,7 @@ declare module "sap/sac/df/model/Variable" {
3049
3251
  /**
3050
3252
  * Remove variable filter
3051
3253
  *
3254
+ *
3052
3255
  * @returns Reference to this in order to allow method chaining
3053
3256
  */
3054
3257
  removeMemberFilter(
@@ -3064,6 +3267,7 @@ declare module "sap/sac/df/model/Variable" {
3064
3267
  /**
3065
3268
  * Remove a member filter by its key
3066
3269
  *
3270
+ *
3067
3271
  * @returns Reference to this in order to allow method chaining
3068
3272
  */
3069
3273
  removeMemberFilterByKey(
@@ -3079,6 +3283,7 @@ declare module "sap/sac/df/model/Variable" {
3079
3283
  /**
3080
3284
  * Performs the search for a given value
3081
3285
  *
3286
+ *
3082
3287
  * @returns array of found member filters
3083
3288
  */
3084
3289
  searchMember(
@@ -3111,6 +3316,7 @@ declare module "sap/sac/df/model/Variable" {
3111
3316
  /**
3112
3317
  * Set variable filters
3113
3318
  *
3319
+ *
3114
3320
  * @returns Reference to this in order to allow method chaining
3115
3321
  */
3116
3322
  setMemberFilter(
@@ -3126,6 +3332,7 @@ declare module "sap/sac/df/model/Variable" {
3126
3332
  /**
3127
3333
  * Set a member filter by its key
3128
3334
  *
3335
+ *
3129
3336
  * @returns Reference to this in order to allow method chaining
3130
3337
  */
3131
3338
  setMemberFilterByKey(
@@ -3149,9 +3356,6 @@ declare module "sap/sac/df/model/VariableGroup" {
3149
3356
  import Metadata from "sap/ui/base/Metadata";
3150
3357
 
3151
3358
  /**
3152
- * @since 1.119
3153
- * @experimental (since 1.119)
3154
- *
3155
3359
  * Variable Group Object
3156
3360
  *
3157
3361
  * **Structure of Exposed Data:**
@@ -3161,9 +3365,16 @@ declare module "sap/sac/df/model/VariableGroup" {
3161
3365
  * "MergedVariable": { },
3162
3366
  * "Rule: function () {}
3163
3367
  * ```
3368
+ *
3369
+ *
3370
+ * @since 1.119
3371
+ * @experimental (since 1.119)
3164
3372
  */
3165
3373
  export default class VariableGroup extends BaseObject {
3166
- constructor();
3374
+ /**
3375
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3376
+ */
3377
+ protected constructor();
3167
3378
  /**
3168
3379
  * Merged Variable
3169
3380
  */
@@ -3180,6 +3391,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3180
3391
  *
3181
3392
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
3182
3393
  *
3394
+ *
3183
3395
  * @returns Created class / constructor function
3184
3396
  */
3185
3397
  static extend<T extends Record<string, unknown>>(
@@ -3200,12 +3412,14 @@ declare module "sap/sac/df/model/VariableGroup" {
3200
3412
  /**
3201
3413
  * Returns a metadata object for class sap.sac.df.model.VariableGroup.
3202
3414
  *
3415
+ *
3203
3416
  * @returns Metadata object describing this class
3204
3417
  */
3205
3418
  static getMetadata(): Metadata;
3206
3419
  /**
3207
3420
  * Add variable group filters
3208
3421
  *
3422
+ *
3209
3423
  * @returns Reference to this in order to allow method chaining
3210
3424
  */
3211
3425
  addMemberFilter(
@@ -3221,6 +3435,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3221
3435
  /**
3222
3436
  * Add a member filter by its key
3223
3437
  *
3438
+ *
3224
3439
  * @returns Reference to this in order to allow method chaining
3225
3440
  */
3226
3441
  addMemberFilterByKey(
@@ -3236,6 +3451,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3236
3451
  /**
3237
3452
  * Clear variable group filter
3238
3453
  *
3454
+ *
3239
3455
  * @returns Reference to this in order to allow method chaining
3240
3456
  */
3241
3457
  clearMemberFilter(
@@ -3247,6 +3463,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3247
3463
  /**
3248
3464
  * Get effective variable group filters
3249
3465
  *
3466
+ *
3250
3467
  * @returns array of member filters
3251
3468
  */
3252
3469
  getMemberFilter(): /* was: sap.sac.df.model.MemberFilter */ any[];
@@ -3255,6 +3472,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3255
3472
  * only teh VariableGroup.MergedVariable is updated. The variables of the aggregated DataProviders are updated
3256
3473
  * with the next ResultSet fetch
3257
3474
  *
3475
+ *
3258
3476
  * @returns to indicate if the VariableGroup has been updated
3259
3477
  */
3260
3478
  openValueHelpDialog(
@@ -3266,6 +3484,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3266
3484
  /**
3267
3485
  * Remove variable group filter
3268
3486
  *
3487
+ *
3269
3488
  * @returns Reference to this in order to allow method chaining
3270
3489
  */
3271
3490
  removeMemberFilter(
@@ -3281,6 +3500,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3281
3500
  /**
3282
3501
  * Remove a member filter by its key
3283
3502
  *
3503
+ *
3284
3504
  * @returns Reference to this in order to allow method chaining
3285
3505
  */
3286
3506
  removeMemberFilterByKey(
@@ -3296,6 +3516,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3296
3516
  /**
3297
3517
  * Performs the search in values of a given Variable
3298
3518
  *
3519
+ *
3299
3520
  * @returns array with found values
3300
3521
  */
3301
3522
  searchMember(
@@ -3328,6 +3549,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3328
3549
  /**
3329
3550
  * Set variable group filters
3330
3551
  *
3552
+ *
3331
3553
  * @returns Promise which resolve when the value is set
3332
3554
  */
3333
3555
  setMemberFilter(
@@ -3343,6 +3565,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3343
3565
  /**
3344
3566
  * Set a member filter by its key
3345
3567
  *
3568
+ *
3346
3569
  * @returns Reference to this in order to allow method chaining
3347
3570
  */
3348
3571
  setMemberFilterByKey(