@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 +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +3 -3
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +16 -10
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
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?:
|
|
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?:
|
|
12540
|
+
status?: int;
|
|
12541
12541
|
/**
|
|
12542
12542
|
* Http-Response which comes from the server.
|
|
12543
12543
|
*
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.108.
|
|
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
|
-
*
|
|
44905
|
-
*
|
|
44906
|
-
*
|
|
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
|
-
*
|
|
44918
|
-
* to
|
|
44919
|
-
*
|
|
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
|
|
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
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED