@openui5/ts-types-esm 1.136.2 → 1.136.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.136.2",
3
+ "version": "1.136.3",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.136.2
282
+ // For Library Version: 1.136.3
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -11051,7 +11051,11 @@ declare module "sap/ui/base/DataType" {
11051
11051
  /**
11052
11052
  * Qualified name of the type to retrieve
11053
11053
  */
11054
- sTypeName: string
11054
+ sTypeName: string,
11055
+ /**
11056
+ * Metadata of the property
11057
+ */
11058
+ oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
11055
11059
  ): DataType | undefined;
11056
11060
  /**
11057
11061
  * Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
@@ -59684,6 +59688,8 @@ declare module "sap/ui/model/json/JSONPropertyBinding" {
59684
59688
 
59685
59689
  import Context from "sap/ui/model/Context";
59686
59690
 
59691
+ import Metadata from "sap/ui/base/Metadata";
59692
+
59687
59693
  /**
59688
59694
  * Property binding implementation for JSON format.
59689
59695
  *
@@ -59717,6 +59723,40 @@ declare module "sap/ui/model/json/JSONPropertyBinding" {
59717
59723
  */
59718
59724
  mParameters?: object
59719
59725
  );
59726
+
59727
+ /**
59728
+ * Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
59729
+ * it with the information contained in `oClassInfo`.
59730
+ *
59731
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
59732
+ *
59733
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
59734
+ *
59735
+ * @returns Created class / constructor function
59736
+ */
59737
+ static extend<T extends Record<string, unknown>>(
59738
+ /**
59739
+ * Name of the class being created
59740
+ */
59741
+ sClassName: string,
59742
+ /**
59743
+ * Object literal with information about the class
59744
+ */
59745
+ oClassInfo?: sap.ClassInfo<T, JSONPropertyBinding>,
59746
+ /**
59747
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
59748
+ * used by this class
59749
+ */
59750
+ FNMetaImpl?: Function
59751
+ ): Function;
59752
+ /**
59753
+ * Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
59754
+ *
59755
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
59756
+ *
59757
+ * @returns Metadata object describing this class
59758
+ */
59759
+ static getMetadata(): Metadata;
59720
59760
  }
59721
59761
  }
59722
59762
 
@@ -69340,6 +69380,10 @@ declare module "sap/ui/model/odata/v2/ODataAnnotations" {
69340
69380
  * A valid cache key
69341
69381
  */
69342
69382
  cacheKey?: string;
69383
+ /**
69384
+ * If set to `true`, the user credentials are included in a cross-origin request
69385
+ */
69386
+ withCredentials?: boolean;
69343
69387
  }
69344
69388
  );
69345
69389
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**