@openui5/ts-types 1.108.29 → 1.108.33

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",
3
- "version": "1.108.29",
3
+ "version": "1.108.33",
4
4
  "description": "OpenUI5 TypeScript Definitions",
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.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -12530,14 +12530,14 @@ declare namespace sap {
12530
12530
  * Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
12531
12531
  * supported by Internet Explorer 9.
12532
12532
  */
12533
- readyState?: string;
12533
+ readyState?: int;
12534
12534
  /**
12535
12535
  * Status of the XHR request.
12536
12536
  *
12537
12537
  * Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
12538
12538
  * by Internet Explorer 9.
12539
12539
  */
12540
- status?: string;
12540
+ status?: int;
12541
12541
  /**
12542
12542
  * Http-Response which comes from the server.
12543
12543
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.108.29
267
+ // For Library Version: 1.108.33
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -17202,7 +17202,6 @@ declare namespace sap {
17202
17202
  ): this;
17203
17203
  /**
17204
17204
  * @SINCE 1.30
17205
- * @deprecated (since 1.66) - Use {@link sap.ui.core.mvc.View.create View.create} instead
17206
17205
  *
17207
17206
  * Returns a Promise representing the state of the view initialization.
17208
17207
  *
@@ -44902,22 +44901,29 @@ declare namespace sap {
44902
44901
  oContext?: sap.ui.model.Context
44903
44902
  ): any | null | undefined;
44904
44903
  /**
44905
- * Load JSON-encoded data from the server using a GET HTTP request and store the resulting JSON data in
44906
- * the model. Note: Due to browser security restrictions, most "Ajax" requests are subject to the same origin
44907
- * policy, the request can not successfully retrieve data from a different domain, subdomain, or protocol.
44904
+ * Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
44905
+ * browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
44906
+ * can not successfully retrieve data from a different domain, subdomain, or protocol.
44907
+ *
44908
+ * Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
44909
+ * to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
44910
+ * property with the value `"application/json;charset=utf-8"`.
44908
44911
  *
44909
44912
  * @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
44910
44913
  * the request status
44911
44914
  */
44912
44915
  loadData(
44913
44916
  /**
44914
- * A string containing the URL to which the request is sent.
44917
+ * A string containing the URL to which the request is sent
44915
44918
  */
44916
44919
  sURL: string,
44917
44920
  /**
44918
- * A map or string that is sent to the server with the request. Data that is sent to the server is appended
44919
- * to the URL as a query string. If the value of the data parameter is an object (map), it is converted
44920
- * to a string and url-encoded before it is appended to the URL.
44921
+ * The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
44922
+ * to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
44923
+ * charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
44924
+ * is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
44925
+ * appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
44926
+ * Otherwise, the resulting string is added to the request body.
44921
44927
  */
44922
44928
  oParameters?: object | string,
44923
44929
  /**
@@ -44927,8 +44933,7 @@ declare namespace sap {
44927
44933
  */
44928
44934
  bAsync?: boolean,
44929
44935
  /**
44930
- * The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such
44931
- * as PUT and DELETE, can also be used here, but they are not supported by all browsers.
44936
+ * The HTTP verb to use for the request ("GET" or "POST")
44932
44937
  */
44933
44938
  sType?: string,
44934
44939
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.29
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**