@openui5/ts-types 1.108.30 → 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.30",
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.30
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.30
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.30
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.30
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.30
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.30
267
+ // For Library Version: 1.108.33
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -44901,22 +44901,29 @@ declare namespace sap {
44901
44901
  oContext?: sap.ui.model.Context
44902
44902
  ): any | null | undefined;
44903
44903
  /**
44904
- * Load JSON-encoded data from the server using a GET HTTP request and store the resulting JSON data in
44905
- * the model. Note: Due to browser security restrictions, most "Ajax" requests are subject to the same origin
44906
- * 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"`.
44907
44911
  *
44908
44912
  * @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
44909
44913
  * the request status
44910
44914
  */
44911
44915
  loadData(
44912
44916
  /**
44913
- * A string containing the URL to which the request is sent.
44917
+ * A string containing the URL to which the request is sent
44914
44918
  */
44915
44919
  sURL: string,
44916
44920
  /**
44917
- * A map or string that is sent to the server with the request. Data that is sent to the server is appended
44918
- * to the URL as a query string. If the value of the data parameter is an object (map), it is converted
44919
- * 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.
44920
44927
  */
44921
44928
  oParameters?: object | string,
44922
44929
  /**
@@ -44926,8 +44933,7 @@ declare namespace sap {
44926
44933
  */
44927
44934
  bAsync?: boolean,
44928
44935
  /**
44929
- * The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such
44930
- * 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")
44931
44937
  */
44932
44938
  sType?: string,
44933
44939
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
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.30
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.30
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.30
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.30
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.30
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.30
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.30
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.30
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.30
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.30
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.30
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.30
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.30
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.30
1
+ // For Library Version: 1.108.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**