@sapui5/ts-types 1.101.1 → 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 +1 -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 +375 -29
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +1 -669
  8. package/types/sap.f.d.ts +1785 -100
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +70 -2
  11. package/types/sap.fe.macros.d.ts +78 -34
  12. package/types/sap.fe.navigation.d.ts +144 -4
  13. package/types/sap.fe.templates.d.ts +26 -5
  14. package/types/sap.fe.test.d.ts +497 -2
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7203 -502
  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 +16491 -1149
  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 +171 -15
  25. package/types/sap.sac.df.d.ts +1430 -215
  26. package/types/sap.sac.grid.d.ts +91 -8
  27. package/types/sap.suite.ui.commons.d.ts +5515 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +157 -69
  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 +3853 -276
  34. package/types/sap.ui.core.d.ts +6248 -313
  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 +238 -64
  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 +1 -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 +30 -1
  47. package/types/sap.ui.table.d.ts +1050 -80
  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 +5353 -310
  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 +1488 -49
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +902 -87
  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 +165 -20
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +227 -14
@@ -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
+ }