@sapui5/ts-types 1.100.2 → 1.102.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.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1747 -124
  5. package/types/sap.chart.d.ts +376 -30
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +6 -2
  8. package/types/sap.f.d.ts +2015 -119
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +77 -64
  11. package/types/sap.fe.macros.d.ts +92 -40
  12. package/types/sap.fe.navigation.d.ts +148 -74
  13. package/types/sap.fe.templates.d.ts +115 -187
  14. package/types/sap.fe.test.d.ts +539 -25
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7242 -516
  17. package/types/sap.insights.d.ts +80 -0
  18. package/types/sap.landvisz.d.ts +1015 -66
  19. package/types/sap.m.d.ts +16699 -1186
  20. package/types/sap.makit.d.ts +575 -54
  21. package/types/sap.me.d.ts +578 -51
  22. package/types/sap.ndc.d.ts +63 -5
  23. package/types/sap.ovp.d.ts +5 -6
  24. package/types/sap.rules.ui.d.ts +209 -18
  25. package/types/sap.sac.df.d.ts +2196 -0
  26. package/types/sap.sac.grid.d.ts +115 -8
  27. package/types/sap.suite.ui.commons.d.ts +5532 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +226 -31
  29. package/types/sap.suite.ui.microchart.d.ts +1801 -160
  30. package/types/sap.tnt.d.ts +279 -19
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3784 -313
  33. package/types/sap.ui.comp.d.ts +4005 -289
  34. package/types/sap.ui.core.d.ts +6317 -336
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +247 -73
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +316 -23
  41. package/types/sap.ui.layout.d.ts +1851 -199
  42. package/types/sap.ui.mdc.d.ts +9 -1
  43. package/types/sap.ui.richtexteditor.d.ts +340 -49
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +39 -6
  47. package/types/sap.ui.table.d.ts +1060 -113
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2704 -202
  50. package/types/sap.ui.ux3.d.ts +2379 -181
  51. package/types/sap.ui.vbm.d.ts +2002 -197
  52. package/types/sap.ui.vk.d.ts +6027 -327
  53. package/types/sap.ui.vtm.d.ts +1130 -41
  54. package/types/sap.uiext.inbox.d.ts +423 -22
  55. package/types/sap.ushell.d.ts +2036 -161
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +903 -88
  58. package/types/sap.viz.d.ts +5514 -380
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +249 -1688
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +1505 -4036
@@ -0,0 +1,80 @@
1
+ // For Library Version: 1.102.0
2
+
3
+ declare module "sap/insights/CardHelper" {
4
+ /**
5
+ * @SINCE 1.102
6
+ * @EXPERIMENTAL (since 1.102)
7
+ *
8
+ * Provides functionality for Insight cards CRUD operations.
9
+ */
10
+ interface CardHelper {
11
+ /**
12
+ * @EXPERIMENTAL (since 1.102)
13
+ *
14
+ * Support storing the insight card in SAP Insights service.
15
+ */
16
+ create(
17
+ /**
18
+ * Card name which will be used to store the card in the repository
19
+ */
20
+ sCardName: string,
21
+ /**
22
+ * Card manifest which needs to be stored in the repository
23
+ */
24
+ oCardManifest: object,
25
+ /**
26
+ * Should be set to true in case the Card has to be persisted as key user
27
+ */
28
+ isKeyUser: boolean
29
+ ): void;
30
+ /**
31
+ * @EXPERIMENTAL (since 1.102)
32
+ *
33
+ * Support deleting the insight card from SAP Insights service.
34
+ */
35
+ delete(
36
+ /**
37
+ * Url of the card manifest
38
+ */
39
+ sCardManifestUrl: string,
40
+ /**
41
+ * Should be set to true in case the Card has to be persisted as key user
42
+ */
43
+ isKeyUser: boolean
44
+ ): void;
45
+ /**
46
+ * @EXPERIMENTAL (since 1.102)
47
+ *
48
+ * Retrieve the insight cards from SAP Insights service for the current user.
49
+ *
50
+ * @returns Returns array of suggested cards
51
+ */
52
+ getSuggestedCards(): any[];
53
+ /**
54
+ * @EXPERIMENTAL (since 1.102)
55
+ *
56
+ * Retrieve the insight cards from SAP Insights service for the current user.
57
+ *
58
+ * @returns Returns array of user cards
59
+ */
60
+ getUserCards(): any[];
61
+ /**
62
+ * @EXPERIMENTAL (since 1.102)
63
+ *
64
+ * Method could be used check whether insights is supported or not.
65
+ *
66
+ * @returns Returns true if supported else false
67
+ */
68
+ isSupported(): boolean;
69
+ }
70
+ const CardHelper: CardHelper;
71
+ export default CardHelper;
72
+ }
73
+
74
+ declare namespace sap {
75
+ interface IUI5DefineDependencyNames {
76
+ "sap/insights/CardHelper": undefined;
77
+
78
+ "sap/insights/library": undefined;
79
+ }
80
+ }