@sap/ux-ui5-tooling 1.12.0 → 1.12.2
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/CHANGELOG.md +8 -0
- package/dist/cli/index.js +507 -3904
- package/dist/markdowns/add/add.en.md +1 -1
- package/dist/middlewares/fiori-tools-appreload.js +183 -111
- package/dist/middlewares/fiori-tools-preview.js +377 -270
- package/dist/middlewares/fiori-tools-proxy.js +382 -941
- package/dist/tasks/cf-deploy/index.js +397 -288
- package/dist/tasks/deploy/index.js +1143 -4542
- package/package.json +11 -11
|
@@ -17286,7 +17286,7 @@ var require_config = __commonJS({
|
|
|
17286
17286
|
"../lib/odata-client/dist/config.js"(exports2) {
|
|
17287
17287
|
"use strict";
|
|
17288
17288
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
17289
|
-
exports2.hasHTML5DynamicDestinationAttrib = exports2.hasFullUrlDestAttribute = exports2.hasDestinationAttrib = exports2.destinationPropertyId = exports2.DestinationAttributeProperty = exports2.DestinationProperties = exports2.AuthenticationType = exports2.ServiceName = void 0;
|
|
17289
|
+
exports2.hasHTML5DynamicDestinationAttrib = exports2.hasFullUrlDestAttribute = exports2.hasDestinationAttrib = exports2.DestinationProxyType = exports2.destinationPropertyId = exports2.DestinationAttributeProperty = exports2.DestinationProperties = exports2.AuthenticationType = exports2.ServiceName = void 0;
|
|
17290
17290
|
var ServiceName;
|
|
17291
17291
|
(function(ServiceName2) {
|
|
17292
17292
|
ServiceName2["SystemInfo"] = "fiori/system/info";
|
|
@@ -17310,6 +17310,7 @@ var require_config = __commonJS({
|
|
|
17310
17310
|
DestinationProperties2["HTML5DynamicDestination"] = "HTML5.DynamicDestination";
|
|
17311
17311
|
DestinationProperties2["HTML5SetXForwardedHeaders"] = "HTML5.SetXForwardedHeaders";
|
|
17312
17312
|
DestinationProperties2["TrustAll"] = "TrustAll";
|
|
17313
|
+
DestinationProperties2["ProxyType"] = "ProxyType";
|
|
17313
17314
|
})(DestinationProperties || (exports2.DestinationProperties = DestinationProperties = {}));
|
|
17314
17315
|
exports2.DestinationAttributeProperty = {
|
|
17315
17316
|
ODATA_GENERIC: "odata_gen",
|
|
@@ -17319,6 +17320,12 @@ var require_config = __commonJS({
|
|
|
17319
17320
|
ABAP_CLOUD: "abap_cloud"
|
|
17320
17321
|
};
|
|
17321
17322
|
exports2.destinationPropertyId = Object.keys(exports2.DestinationAttributeProperty);
|
|
17323
|
+
var DestinationProxyType;
|
|
17324
|
+
(function(DestinationProxyType2) {
|
|
17325
|
+
DestinationProxyType2["ON_PREMISE"] = "OnPremise";
|
|
17326
|
+
DestinationProxyType2["INTERNET"] = "Internet";
|
|
17327
|
+
DestinationProxyType2["PRIVATE_LINK"] = "PrivateLink";
|
|
17328
|
+
})(DestinationProxyType || (exports2.DestinationProxyType = DestinationProxyType = {}));
|
|
17322
17329
|
function hasDestinationAttrib(destinationProperty, destinationAttributeProperty, destinationAttribs = {}) {
|
|
17323
17330
|
var _a2;
|
|
17324
17331
|
return (destinationAttribs && ((_a2 = destinationAttribs[destinationProperty]) == null ? void 0 : _a2.includes(destinationAttributeProperty))) ?? false;
|
|
@@ -27013,6 +27020,24 @@ var require_follow_redirects = __commonJS({
|
|
|
27013
27020
|
var Writable = require("stream").Writable;
|
|
27014
27021
|
var assert = require("assert");
|
|
27015
27022
|
var debug = require_debug();
|
|
27023
|
+
var useNativeURL = false;
|
|
27024
|
+
try {
|
|
27025
|
+
assert(new URL2());
|
|
27026
|
+
} catch (error5) {
|
|
27027
|
+
useNativeURL = error5.code === "ERR_INVALID_URL";
|
|
27028
|
+
}
|
|
27029
|
+
var preservedUrlFields = [
|
|
27030
|
+
"auth",
|
|
27031
|
+
"host",
|
|
27032
|
+
"hostname",
|
|
27033
|
+
"href",
|
|
27034
|
+
"path",
|
|
27035
|
+
"pathname",
|
|
27036
|
+
"port",
|
|
27037
|
+
"protocol",
|
|
27038
|
+
"query",
|
|
27039
|
+
"search"
|
|
27040
|
+
];
|
|
27016
27041
|
var events = ["abort", "aborted", "connect", "error", "socket", "timeout"];
|
|
27017
27042
|
var eventHandlers = /* @__PURE__ */ Object.create(null);
|
|
27018
27043
|
events.forEach(function(event) {
|
|
@@ -27020,13 +27045,19 @@ var require_follow_redirects = __commonJS({
|
|
|
27020
27045
|
this._redirectable.emit(event, arg1, arg2, arg3);
|
|
27021
27046
|
};
|
|
27022
27047
|
});
|
|
27048
|
+
var InvalidUrlError = createErrorType(
|
|
27049
|
+
"ERR_INVALID_URL",
|
|
27050
|
+
"Invalid URL",
|
|
27051
|
+
TypeError
|
|
27052
|
+
);
|
|
27023
27053
|
var RedirectionError = createErrorType(
|
|
27024
27054
|
"ERR_FR_REDIRECTION_FAILURE",
|
|
27025
27055
|
"Redirected request failed"
|
|
27026
27056
|
);
|
|
27027
27057
|
var TooManyRedirectsError = createErrorType(
|
|
27028
27058
|
"ERR_FR_TOO_MANY_REDIRECTS",
|
|
27029
|
-
"Maximum number of redirects exceeded"
|
|
27059
|
+
"Maximum number of redirects exceeded",
|
|
27060
|
+
RedirectionError
|
|
27030
27061
|
);
|
|
27031
27062
|
var MaxBodyLengthExceededError = createErrorType(
|
|
27032
27063
|
"ERR_FR_MAX_BODY_LENGTH_EXCEEDED",
|
|
@@ -27036,6 +27067,7 @@ var require_follow_redirects = __commonJS({
|
|
|
27036
27067
|
"ERR_STREAM_WRITE_AFTER_END",
|
|
27037
27068
|
"write after end"
|
|
27038
27069
|
);
|
|
27070
|
+
var destroy = Writable.prototype.destroy || noop6;
|
|
27039
27071
|
function RedirectableRequest(options2, responseCallback) {
|
|
27040
27072
|
Writable.call(this);
|
|
27041
27073
|
this._sanitizeOptions(options2);
|
|
@@ -27051,23 +27083,33 @@ var require_follow_redirects = __commonJS({
|
|
|
27051
27083
|
}
|
|
27052
27084
|
var self2 = this;
|
|
27053
27085
|
this._onNativeResponse = function(response) {
|
|
27054
|
-
|
|
27086
|
+
try {
|
|
27087
|
+
self2._processResponse(response);
|
|
27088
|
+
} catch (cause) {
|
|
27089
|
+
self2.emit("error", cause instanceof RedirectionError ? cause : new RedirectionError({ cause }));
|
|
27090
|
+
}
|
|
27055
27091
|
};
|
|
27056
27092
|
this._performRequest();
|
|
27057
27093
|
}
|
|
27058
27094
|
RedirectableRequest.prototype = Object.create(Writable.prototype);
|
|
27059
27095
|
RedirectableRequest.prototype.abort = function() {
|
|
27060
|
-
|
|
27096
|
+
destroyRequest(this._currentRequest);
|
|
27097
|
+
this._currentRequest.abort();
|
|
27061
27098
|
this.emit("abort");
|
|
27062
27099
|
};
|
|
27100
|
+
RedirectableRequest.prototype.destroy = function(error5) {
|
|
27101
|
+
destroyRequest(this._currentRequest, error5);
|
|
27102
|
+
destroy.call(this, error5);
|
|
27103
|
+
return this;
|
|
27104
|
+
};
|
|
27063
27105
|
RedirectableRequest.prototype.write = function(data2, encoding, callback) {
|
|
27064
27106
|
if (this._ending) {
|
|
27065
27107
|
throw new WriteAfterEndError();
|
|
27066
27108
|
}
|
|
27067
|
-
if (!(
|
|
27109
|
+
if (!isString2(data2) && !isBuffer2(data2)) {
|
|
27068
27110
|
throw new TypeError("data should be a string, Buffer or Uint8Array");
|
|
27069
27111
|
}
|
|
27070
|
-
if (
|
|
27112
|
+
if (isFunction2(encoding)) {
|
|
27071
27113
|
callback = encoding;
|
|
27072
27114
|
encoding = null;
|
|
27073
27115
|
}
|
|
@@ -27087,10 +27129,10 @@ var require_follow_redirects = __commonJS({
|
|
|
27087
27129
|
}
|
|
27088
27130
|
};
|
|
27089
27131
|
RedirectableRequest.prototype.end = function(data2, encoding, callback) {
|
|
27090
|
-
if (
|
|
27132
|
+
if (isFunction2(data2)) {
|
|
27091
27133
|
callback = data2;
|
|
27092
27134
|
data2 = encoding = null;
|
|
27093
|
-
} else if (
|
|
27135
|
+
} else if (isFunction2(encoding)) {
|
|
27094
27136
|
callback = encoding;
|
|
27095
27137
|
encoding = null;
|
|
27096
27138
|
}
|
|
@@ -27140,6 +27182,7 @@ var require_follow_redirects = __commonJS({
|
|
|
27140
27182
|
self2.removeListener("abort", clearTimer);
|
|
27141
27183
|
self2.removeListener("error", clearTimer);
|
|
27142
27184
|
self2.removeListener("response", clearTimer);
|
|
27185
|
+
self2.removeListener("close", clearTimer);
|
|
27143
27186
|
if (callback) {
|
|
27144
27187
|
self2.removeListener("timeout", callback);
|
|
27145
27188
|
}
|
|
@@ -27159,6 +27202,7 @@ var require_follow_redirects = __commonJS({
|
|
|
27159
27202
|
this.on("abort", clearTimer);
|
|
27160
27203
|
this.on("error", clearTimer);
|
|
27161
27204
|
this.on("response", clearTimer);
|
|
27205
|
+
this.on("close", clearTimer);
|
|
27162
27206
|
return this;
|
|
27163
27207
|
};
|
|
27164
27208
|
[
|
|
@@ -27202,19 +27246,22 @@ var require_follow_redirects = __commonJS({
|
|
|
27202
27246
|
var protocol = this._options.protocol;
|
|
27203
27247
|
var nativeProtocol = this._options.nativeProtocols[protocol];
|
|
27204
27248
|
if (!nativeProtocol) {
|
|
27205
|
-
|
|
27206
|
-
return;
|
|
27249
|
+
throw new TypeError("Unsupported protocol " + protocol);
|
|
27207
27250
|
}
|
|
27208
27251
|
if (this._options.agents) {
|
|
27209
|
-
var scheme = protocol.
|
|
27252
|
+
var scheme = protocol.slice(0, -1);
|
|
27210
27253
|
this._options.agent = this._options.agents[scheme];
|
|
27211
27254
|
}
|
|
27212
27255
|
var request = this._currentRequest = nativeProtocol.request(this._options, this._onNativeResponse);
|
|
27213
|
-
this._currentUrl = url2.format(this._options);
|
|
27214
27256
|
request._redirectable = this;
|
|
27215
|
-
for (var
|
|
27216
|
-
request.on(
|
|
27257
|
+
for (var event of events) {
|
|
27258
|
+
request.on(event, eventHandlers[event]);
|
|
27217
27259
|
}
|
|
27260
|
+
this._currentUrl = /^\//.test(this._options.path) ? url2.format(this._options) : (
|
|
27261
|
+
// When making a request to a proxy, […]
|
|
27262
|
+
// a client MUST send the target URI in absolute-form […].
|
|
27263
|
+
this._options.path
|
|
27264
|
+
);
|
|
27218
27265
|
if (this._isRedirect) {
|
|
27219
27266
|
var i = 0;
|
|
27220
27267
|
var self2 = this;
|
|
@@ -27245,61 +27292,61 @@ var require_follow_redirects = __commonJS({
|
|
|
27245
27292
|
});
|
|
27246
27293
|
}
|
|
27247
27294
|
var location = response.headers.location;
|
|
27248
|
-
if (location
|
|
27249
|
-
abortRequest(this._currentRequest);
|
|
27250
|
-
response.destroy();
|
|
27251
|
-
if (++this._redirectCount > this._options.maxRedirects) {
|
|
27252
|
-
this.emit("error", new TooManyRedirectsError());
|
|
27253
|
-
return;
|
|
27254
|
-
}
|
|
27255
|
-
if ((statusCode === 301 || statusCode === 302) && this._options.method === "POST" || // RFC7231§6.4.4: The 303 (See Other) status code indicates that
|
|
27256
|
-
// the server is redirecting the user agent to a different resource […]
|
|
27257
|
-
// A user agent can perform a retrieval request targeting that URI
|
|
27258
|
-
// (a GET or HEAD request if using HTTP) […]
|
|
27259
|
-
statusCode === 303 && !/^(?:GET|HEAD)$/.test(this._options.method)) {
|
|
27260
|
-
this._options.method = "GET";
|
|
27261
|
-
this._requestBodyBuffers = [];
|
|
27262
|
-
removeMatchingHeaders(/^content-/i, this._options.headers);
|
|
27263
|
-
}
|
|
27264
|
-
var currentHostHeader = removeMatchingHeaders(/^host$/i, this._options.headers);
|
|
27265
|
-
var currentUrlParts = url2.parse(this._currentUrl);
|
|
27266
|
-
var currentHost = currentHostHeader || currentUrlParts.host;
|
|
27267
|
-
var currentUrl = /^\w+:/.test(location) ? this._currentUrl : url2.format(Object.assign(currentUrlParts, { host: currentHost }));
|
|
27268
|
-
var redirectUrl;
|
|
27269
|
-
try {
|
|
27270
|
-
redirectUrl = url2.resolve(currentUrl, location);
|
|
27271
|
-
} catch (cause) {
|
|
27272
|
-
this.emit("error", new RedirectionError(cause));
|
|
27273
|
-
return;
|
|
27274
|
-
}
|
|
27275
|
-
debug("redirecting to", redirectUrl);
|
|
27276
|
-
this._isRedirect = true;
|
|
27277
|
-
var redirectUrlParts = url2.parse(redirectUrl);
|
|
27278
|
-
Object.assign(this._options, redirectUrlParts);
|
|
27279
|
-
if (redirectUrlParts.protocol !== currentUrlParts.protocol || !isSameOrSubdomain(redirectUrlParts.host, currentHost)) {
|
|
27280
|
-
removeMatchingHeaders(/^(?:authorization|cookie)$/i, this._options.headers);
|
|
27281
|
-
}
|
|
27282
|
-
if (typeof this._options.beforeRedirect === "function") {
|
|
27283
|
-
var responseDetails = { headers: response.headers };
|
|
27284
|
-
try {
|
|
27285
|
-
this._options.beforeRedirect.call(null, this._options, responseDetails);
|
|
27286
|
-
} catch (err) {
|
|
27287
|
-
this.emit("error", err);
|
|
27288
|
-
return;
|
|
27289
|
-
}
|
|
27290
|
-
this._sanitizeOptions(this._options);
|
|
27291
|
-
}
|
|
27292
|
-
try {
|
|
27293
|
-
this._performRequest();
|
|
27294
|
-
} catch (cause) {
|
|
27295
|
-
this.emit("error", new RedirectionError(cause));
|
|
27296
|
-
}
|
|
27297
|
-
} else {
|
|
27295
|
+
if (!location || this._options.followRedirects === false || statusCode < 300 || statusCode >= 400) {
|
|
27298
27296
|
response.responseUrl = this._currentUrl;
|
|
27299
27297
|
response.redirects = this._redirects;
|
|
27300
27298
|
this.emit("response", response);
|
|
27301
27299
|
this._requestBodyBuffers = [];
|
|
27300
|
+
return;
|
|
27302
27301
|
}
|
|
27302
|
+
destroyRequest(this._currentRequest);
|
|
27303
|
+
response.destroy();
|
|
27304
|
+
if (++this._redirectCount > this._options.maxRedirects) {
|
|
27305
|
+
throw new TooManyRedirectsError();
|
|
27306
|
+
}
|
|
27307
|
+
var requestHeaders;
|
|
27308
|
+
var beforeRedirect = this._options.beforeRedirect;
|
|
27309
|
+
if (beforeRedirect) {
|
|
27310
|
+
requestHeaders = Object.assign({
|
|
27311
|
+
// The Host header was set by nativeProtocol.request
|
|
27312
|
+
Host: response.req.getHeader("host")
|
|
27313
|
+
}, this._options.headers);
|
|
27314
|
+
}
|
|
27315
|
+
var method = this._options.method;
|
|
27316
|
+
if ((statusCode === 301 || statusCode === 302) && this._options.method === "POST" || // RFC7231§6.4.4: The 303 (See Other) status code indicates that
|
|
27317
|
+
// the server is redirecting the user agent to a different resource […]
|
|
27318
|
+
// A user agent can perform a retrieval request targeting that URI
|
|
27319
|
+
// (a GET or HEAD request if using HTTP) […]
|
|
27320
|
+
statusCode === 303 && !/^(?:GET|HEAD)$/.test(this._options.method)) {
|
|
27321
|
+
this._options.method = "GET";
|
|
27322
|
+
this._requestBodyBuffers = [];
|
|
27323
|
+
removeMatchingHeaders(/^content-/i, this._options.headers);
|
|
27324
|
+
}
|
|
27325
|
+
var currentHostHeader = removeMatchingHeaders(/^host$/i, this._options.headers);
|
|
27326
|
+
var currentUrlParts = parseUrl(this._currentUrl);
|
|
27327
|
+
var currentHost = currentHostHeader || currentUrlParts.host;
|
|
27328
|
+
var currentUrl = /^\w+:/.test(location) ? this._currentUrl : url2.format(Object.assign(currentUrlParts, { host: currentHost }));
|
|
27329
|
+
var redirectUrl = resolveUrl(location, currentUrl);
|
|
27330
|
+
debug("redirecting to", redirectUrl.href);
|
|
27331
|
+
this._isRedirect = true;
|
|
27332
|
+
spreadUrlObject(redirectUrl, this._options);
|
|
27333
|
+
if (redirectUrl.protocol !== currentUrlParts.protocol && redirectUrl.protocol !== "https:" || redirectUrl.host !== currentHost && !isSubdomain(redirectUrl.host, currentHost)) {
|
|
27334
|
+
removeMatchingHeaders(/^(?:authorization|cookie)$/i, this._options.headers);
|
|
27335
|
+
}
|
|
27336
|
+
if (isFunction2(beforeRedirect)) {
|
|
27337
|
+
var responseDetails = {
|
|
27338
|
+
headers: response.headers,
|
|
27339
|
+
statusCode
|
|
27340
|
+
};
|
|
27341
|
+
var requestDetails = {
|
|
27342
|
+
url: currentUrl,
|
|
27343
|
+
method,
|
|
27344
|
+
headers: requestHeaders
|
|
27345
|
+
};
|
|
27346
|
+
beforeRedirect(this._options, responseDetails, requestDetails);
|
|
27347
|
+
this._sanitizeOptions(this._options);
|
|
27348
|
+
}
|
|
27349
|
+
this._performRequest();
|
|
27303
27350
|
};
|
|
27304
27351
|
function wrap(protocols) {
|
|
27305
27352
|
var exports3 = {
|
|
@@ -27312,21 +27359,16 @@ var require_follow_redirects = __commonJS({
|
|
|
27312
27359
|
var nativeProtocol = nativeProtocols[protocol] = protocols[scheme];
|
|
27313
27360
|
var wrappedProtocol = exports3[scheme] = Object.create(nativeProtocol);
|
|
27314
27361
|
function request(input, options2, callback) {
|
|
27315
|
-
if (
|
|
27316
|
-
|
|
27317
|
-
|
|
27318
|
-
|
|
27319
|
-
} catch (err) {
|
|
27320
|
-
input = url2.parse(urlStr);
|
|
27321
|
-
}
|
|
27322
|
-
} else if (URL2 && input instanceof URL2) {
|
|
27323
|
-
input = urlToOptions(input);
|
|
27362
|
+
if (isURL(input)) {
|
|
27363
|
+
input = spreadUrlObject(input);
|
|
27364
|
+
} else if (isString2(input)) {
|
|
27365
|
+
input = spreadUrlObject(parseUrl(input));
|
|
27324
27366
|
} else {
|
|
27325
27367
|
callback = options2;
|
|
27326
|
-
options2 = input;
|
|
27368
|
+
options2 = validateUrl(input);
|
|
27327
27369
|
input = { protocol };
|
|
27328
27370
|
}
|
|
27329
|
-
if (
|
|
27371
|
+
if (isFunction2(options2)) {
|
|
27330
27372
|
callback = options2;
|
|
27331
27373
|
options2 = null;
|
|
27332
27374
|
}
|
|
@@ -27335,6 +27377,9 @@ var require_follow_redirects = __commonJS({
|
|
|
27335
27377
|
maxBodyLength: exports3.maxBodyLength
|
|
27336
27378
|
}, input, options2);
|
|
27337
27379
|
options2.nativeProtocols = nativeProtocols;
|
|
27380
|
+
if (!isString2(options2.host) && !isString2(options2.hostname)) {
|
|
27381
|
+
options2.hostname = "::1";
|
|
27382
|
+
}
|
|
27338
27383
|
assert.equal(options2.protocol, protocol, "protocol mismatch");
|
|
27339
27384
|
debug("options", options2);
|
|
27340
27385
|
return new RedirectableRequest(options2, callback);
|
|
@@ -27353,23 +27398,43 @@ var require_follow_redirects = __commonJS({
|
|
|
27353
27398
|
}
|
|
27354
27399
|
function noop6() {
|
|
27355
27400
|
}
|
|
27356
|
-
function
|
|
27357
|
-
var
|
|
27358
|
-
|
|
27359
|
-
|
|
27360
|
-
|
|
27361
|
-
|
|
27362
|
-
)
|
|
27363
|
-
|
|
27364
|
-
|
|
27365
|
-
|
|
27366
|
-
|
|
27367
|
-
|
|
27368
|
-
|
|
27369
|
-
|
|
27370
|
-
|
|
27401
|
+
function parseUrl(input) {
|
|
27402
|
+
var parsed;
|
|
27403
|
+
if (useNativeURL) {
|
|
27404
|
+
parsed = new URL2(input);
|
|
27405
|
+
} else {
|
|
27406
|
+
parsed = validateUrl(url2.parse(input));
|
|
27407
|
+
if (!isString2(parsed.protocol)) {
|
|
27408
|
+
throw new InvalidUrlError({ input });
|
|
27409
|
+
}
|
|
27410
|
+
}
|
|
27411
|
+
return parsed;
|
|
27412
|
+
}
|
|
27413
|
+
function resolveUrl(relative, base) {
|
|
27414
|
+
return useNativeURL ? new URL2(relative, base) : parseUrl(url2.resolve(base, relative));
|
|
27415
|
+
}
|
|
27416
|
+
function validateUrl(input) {
|
|
27417
|
+
if (/^\[/.test(input.hostname) && !/^\[[:0-9a-f]+\]$/i.test(input.hostname)) {
|
|
27418
|
+
throw new InvalidUrlError({ input: input.href || input });
|
|
27371
27419
|
}
|
|
27372
|
-
|
|
27420
|
+
if (/^\[/.test(input.host) && !/^\[[:0-9a-f]+\](:\d+)?$/i.test(input.host)) {
|
|
27421
|
+
throw new InvalidUrlError({ input: input.href || input });
|
|
27422
|
+
}
|
|
27423
|
+
return input;
|
|
27424
|
+
}
|
|
27425
|
+
function spreadUrlObject(urlObject, target) {
|
|
27426
|
+
var spread3 = target || {};
|
|
27427
|
+
for (var key of preservedUrlFields) {
|
|
27428
|
+
spread3[key] = urlObject[key];
|
|
27429
|
+
}
|
|
27430
|
+
if (spread3.hostname.startsWith("[")) {
|
|
27431
|
+
spread3.hostname = spread3.hostname.slice(1, -1);
|
|
27432
|
+
}
|
|
27433
|
+
if (spread3.port !== "") {
|
|
27434
|
+
spread3.port = Number(spread3.port);
|
|
27435
|
+
}
|
|
27436
|
+
spread3.path = spread3.search ? spread3.pathname + spread3.search : spread3.pathname;
|
|
27437
|
+
return spread3;
|
|
27373
27438
|
}
|
|
27374
27439
|
function removeMatchingHeaders(regex, headers) {
|
|
27375
27440
|
var lastValue;
|
|
@@ -27381,36 +27446,50 @@ var require_follow_redirects = __commonJS({
|
|
|
27381
27446
|
}
|
|
27382
27447
|
return lastValue === null || typeof lastValue === "undefined" ? void 0 : String(lastValue).trim();
|
|
27383
27448
|
}
|
|
27384
|
-
function createErrorType(code,
|
|
27385
|
-
function CustomError(
|
|
27449
|
+
function createErrorType(code, message, baseClass) {
|
|
27450
|
+
function CustomError(properties) {
|
|
27386
27451
|
Error.captureStackTrace(this, this.constructor);
|
|
27387
|
-
|
|
27388
|
-
|
|
27389
|
-
|
|
27390
|
-
this.message = defaultMessage + ": " + cause.message;
|
|
27391
|
-
this.cause = cause;
|
|
27392
|
-
}
|
|
27452
|
+
Object.assign(this, properties || {});
|
|
27453
|
+
this.code = code;
|
|
27454
|
+
this.message = this.cause ? message + ": " + this.cause.message : message;
|
|
27393
27455
|
}
|
|
27394
|
-
CustomError.prototype = new Error();
|
|
27395
|
-
CustomError.prototype
|
|
27396
|
-
|
|
27397
|
-
|
|
27456
|
+
CustomError.prototype = new (baseClass || Error)();
|
|
27457
|
+
Object.defineProperties(CustomError.prototype, {
|
|
27458
|
+
constructor: {
|
|
27459
|
+
value: CustomError,
|
|
27460
|
+
enumerable: false
|
|
27461
|
+
},
|
|
27462
|
+
name: {
|
|
27463
|
+
value: "Error [" + code + "]",
|
|
27464
|
+
enumerable: false
|
|
27465
|
+
}
|
|
27466
|
+
});
|
|
27398
27467
|
return CustomError;
|
|
27399
27468
|
}
|
|
27400
|
-
function
|
|
27401
|
-
for (var
|
|
27402
|
-
request.removeListener(
|
|
27469
|
+
function destroyRequest(request, error5) {
|
|
27470
|
+
for (var event of events) {
|
|
27471
|
+
request.removeListener(event, eventHandlers[event]);
|
|
27403
27472
|
}
|
|
27404
27473
|
request.on("error", noop6);
|
|
27405
|
-
request.
|
|
27474
|
+
request.destroy(error5);
|
|
27406
27475
|
}
|
|
27407
|
-
function
|
|
27408
|
-
|
|
27409
|
-
|
|
27410
|
-
}
|
|
27411
|
-
const dot = subdomain.length - domain.length - 1;
|
|
27476
|
+
function isSubdomain(subdomain, domain) {
|
|
27477
|
+
assert(isString2(subdomain) && isString2(domain));
|
|
27478
|
+
var dot = subdomain.length - domain.length - 1;
|
|
27412
27479
|
return dot > 0 && subdomain[dot] === "." && subdomain.endsWith(domain);
|
|
27413
27480
|
}
|
|
27481
|
+
function isString2(value) {
|
|
27482
|
+
return typeof value === "string" || value instanceof String;
|
|
27483
|
+
}
|
|
27484
|
+
function isFunction2(value) {
|
|
27485
|
+
return typeof value === "function";
|
|
27486
|
+
}
|
|
27487
|
+
function isBuffer2(value) {
|
|
27488
|
+
return typeof value === "object" && "length" in value;
|
|
27489
|
+
}
|
|
27490
|
+
function isURL(value) {
|
|
27491
|
+
return URL2 && value instanceof URL2;
|
|
27492
|
+
}
|
|
27414
27493
|
module2.exports = wrap({ http: http2, https: https2 });
|
|
27415
27494
|
module2.exports.wrap = wrap;
|
|
27416
27495
|
}
|
|
@@ -30771,9 +30850,9 @@ var require_error2 = __commonJS({
|
|
|
30771
30850
|
}
|
|
30772
30851
|
});
|
|
30773
30852
|
|
|
30774
|
-
//
|
|
30853
|
+
// ../../node_modules/qs/lib/utils.js
|
|
30775
30854
|
var require_utils3 = __commonJS({
|
|
30776
|
-
"
|
|
30855
|
+
"../../node_modules/qs/lib/utils.js"(exports2, module2) {
|
|
30777
30856
|
"use strict";
|
|
30778
30857
|
var has = Object.prototype.hasOwnProperty;
|
|
30779
30858
|
var isArray2 = Array.isArray;
|
|
@@ -30953,9 +31032,9 @@ var require_utils3 = __commonJS({
|
|
|
30953
31032
|
}
|
|
30954
31033
|
});
|
|
30955
31034
|
|
|
30956
|
-
//
|
|
31035
|
+
// ../../node_modules/qs/lib/formats.js
|
|
30957
31036
|
var require_formats = __commonJS({
|
|
30958
|
-
"
|
|
31037
|
+
"../../node_modules/qs/lib/formats.js"(exports2, module2) {
|
|
30959
31038
|
"use strict";
|
|
30960
31039
|
var replace = String.prototype.replace;
|
|
30961
31040
|
var percentTwenties = /%20/g;
|
|
@@ -30981,9 +31060,9 @@ var require_formats = __commonJS({
|
|
|
30981
31060
|
}
|
|
30982
31061
|
});
|
|
30983
31062
|
|
|
30984
|
-
//
|
|
31063
|
+
// ../../node_modules/qs/lib/stringify.js
|
|
30985
31064
|
var require_stringify2 = __commonJS({
|
|
30986
|
-
"
|
|
31065
|
+
"../../node_modules/qs/lib/stringify.js"(exports2, module2) {
|
|
30987
31066
|
"use strict";
|
|
30988
31067
|
var utils = require_utils3();
|
|
30989
31068
|
var formats = require_formats();
|
|
@@ -31216,9 +31295,9 @@ var require_stringify2 = __commonJS({
|
|
|
31216
31295
|
}
|
|
31217
31296
|
});
|
|
31218
31297
|
|
|
31219
|
-
//
|
|
31298
|
+
// ../../node_modules/qs/lib/parse.js
|
|
31220
31299
|
var require_parse = __commonJS({
|
|
31221
|
-
"
|
|
31300
|
+
"../../node_modules/qs/lib/parse.js"(exports2, module2) {
|
|
31222
31301
|
"use strict";
|
|
31223
31302
|
var utils = require_utils3();
|
|
31224
31303
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -31422,9 +31501,9 @@ var require_parse = __commonJS({
|
|
|
31422
31501
|
}
|
|
31423
31502
|
});
|
|
31424
31503
|
|
|
31425
|
-
//
|
|
31504
|
+
// ../../node_modules/qs/lib/index.js
|
|
31426
31505
|
var require_lib = __commonJS({
|
|
31427
|
-
"
|
|
31506
|
+
"../../node_modules/qs/lib/index.js"(exports2, module2) {
|
|
31428
31507
|
"use strict";
|
|
31429
31508
|
var stringify = require_stringify2();
|
|
31430
31509
|
var parse4 = require_parse();
|
|
@@ -31728,7 +31807,8 @@ var require_uaaOauth = __commonJS({
|
|
|
31728
31807
|
const response = await axios_1.default.get(url2, {
|
|
31729
31808
|
headers: {
|
|
31730
31809
|
authorization: `bearer ${accessToken}`,
|
|
31731
|
-
[common_1.CSRF.requestHeaderName]: common_1.CSRF.requestHeaderValue
|
|
31810
|
+
[common_1.CSRF.requestHeaderName]: common_1.CSRF.requestHeaderValue,
|
|
31811
|
+
"x-sap-security-session": "create"
|
|
31732
31812
|
}
|
|
31733
31813
|
});
|
|
31734
31814
|
return {
|
|
@@ -46741,7 +46821,7 @@ var require_connection = __commonJS({
|
|
|
46741
46821
|
return {
|
|
46742
46822
|
auth: config.auth,
|
|
46743
46823
|
cookies: new cookies_1.Cookies().setCookie(response),
|
|
46744
|
-
xsrfToken: response.headers[common_1.CSRF.responseHeaderName]
|
|
46824
|
+
xsrfToken: response == null ? void 0 : response.headers[common_1.CSRF.responseHeaderName]
|
|
46745
46825
|
};
|
|
46746
46826
|
}
|
|
46747
46827
|
function throwIfHtmlLoginForm(response) {
|
|
@@ -50747,6 +50827,7 @@ var require_utils6 = __commonJS({
|
|
|
50747
50827
|
error5 = err;
|
|
50748
50828
|
}
|
|
50749
50829
|
}
|
|
50830
|
+
await sapSystem.endSecuritySession();
|
|
50750
50831
|
return {
|
|
50751
50832
|
v2Count: result2[__1.ODataVersion.v2],
|
|
50752
50833
|
v4Count: result2[__1.ODataVersion.v4],
|
|
@@ -50993,6 +51074,15 @@ var require_oDataClient = __commonJS({
|
|
|
50993
51074
|
}
|
|
50994
51075
|
return response == null ? void 0 : response.data;
|
|
50995
51076
|
}
|
|
51077
|
+
async icfLogOff() {
|
|
51078
|
+
const httpClient = await this.getClient();
|
|
51079
|
+
const logOffPath = "bc/icf/logoff";
|
|
51080
|
+
try {
|
|
51081
|
+
await httpClient.get(logOffPath);
|
|
51082
|
+
} catch (e) {
|
|
51083
|
+
console.log(`Error ending security session ${e.message}`);
|
|
51084
|
+
}
|
|
51085
|
+
}
|
|
50996
51086
|
};
|
|
50997
51087
|
exports2.ODataClient = ODataClient;
|
|
50998
51088
|
ODataClient.hasAxiosDebugLoggerConfig = false;
|
|
@@ -51709,7 +51799,7 @@ var require_sapSystem = __commonJS({
|
|
|
51709
51799
|
* DO NOT directly create instances of this class outside of odata-client
|
|
51710
51800
|
*
|
|
51711
51801
|
* Please use the functions newSapSystem, newSapSystemForServiceUrl, newSapSystemForSteampunk
|
|
51712
|
-
*
|
|
51802
|
+
* newSapSystemForDestination
|
|
51713
51803
|
*
|
|
51714
51804
|
*/
|
|
51715
51805
|
constructor(name2, config, credentials = {}, userDisplayName, unSaved = false, postConnectionCallbackCreator, sapSystemType = types_1.SapSystemType.BTP) {
|
|
@@ -51831,10 +51921,14 @@ var require_sapSystem = __commonJS({
|
|
|
51831
51921
|
}
|
|
51832
51922
|
return systemDisplayName + userDisplayName;
|
|
51833
51923
|
}
|
|
51834
|
-
|
|
51924
|
+
/**
|
|
51925
|
+
* Determine if the current Sap System has credentials saved against it
|
|
51926
|
+
*/
|
|
51927
|
+
hasSavedCredentials() {
|
|
51928
|
+
return Object.keys(this.credentials).length !== 0;
|
|
51929
|
+
}
|
|
51835
51930
|
isOnPremSystem() {
|
|
51836
|
-
|
|
51837
|
-
return ((_a2 = this.config) == null ? void 0 : _a2.authenticationType) === ux_store_1.AuthenticationType.Basic || Object.keys(this.credentials).length !== 0 && !(this.isScp() || this.isS4HC());
|
|
51931
|
+
return (0, config_1.hasDestinationAttrib)("ProxyType", "OnPremise", this.config.destinationAttributes);
|
|
51838
51932
|
}
|
|
51839
51933
|
isS4HC() {
|
|
51840
51934
|
var _a2;
|
|
@@ -51927,6 +52021,19 @@ var require_sapSystem = __commonJS({
|
|
|
51927
52021
|
return client;
|
|
51928
52022
|
}
|
|
51929
52023
|
}
|
|
52024
|
+
async endSecuritySession() {
|
|
52025
|
+
const path2 = "/sap/public/";
|
|
52026
|
+
const system = deepClone(this.config);
|
|
52027
|
+
system.service = path2;
|
|
52028
|
+
if (this.connection) {
|
|
52029
|
+
const client = new client_1.ODataClient({
|
|
52030
|
+
system,
|
|
52031
|
+
connection: this.connection,
|
|
52032
|
+
postConnectionCallback: this.postConnectionCallback()
|
|
52033
|
+
});
|
|
52034
|
+
await client.icfLogOff();
|
|
52035
|
+
}
|
|
52036
|
+
}
|
|
51930
52037
|
setUserDisplayName(u) {
|
|
51931
52038
|
this._userDisplayName = u;
|
|
51932
52039
|
}
|
|
@@ -55766,35 +55873,35 @@ var require_common7 = __commonJS({
|
|
|
55766
55873
|
var Ke = Object.getOwnPropertyNames;
|
|
55767
55874
|
var Ye = Object.prototype.hasOwnProperty;
|
|
55768
55875
|
var d = (x, p) => {
|
|
55769
|
-
for (var
|
|
55770
|
-
P(x,
|
|
55876
|
+
for (var t in p)
|
|
55877
|
+
P(x, t, { get: p[t], enumerable: true });
|
|
55771
55878
|
};
|
|
55772
|
-
var
|
|
55879
|
+
var Ne = (x, p, t, o) => {
|
|
55773
55880
|
if (p && typeof p == "object" || typeof p == "function")
|
|
55774
55881
|
for (let n of Ke(p))
|
|
55775
|
-
!Ye.call(x, n) && n !==
|
|
55882
|
+
!Ye.call(x, n) && n !== t && P(x, n, { get: () => p[n], enumerable: !(o = Qe(p, n)) || o.enumerable });
|
|
55776
55883
|
return x;
|
|
55777
55884
|
};
|
|
55778
|
-
var
|
|
55779
|
-
var
|
|
55780
|
-
d(
|
|
55781
|
-
module2.exports =
|
|
55782
|
-
var
|
|
55783
|
-
var
|
|
55784
|
-
var qe = { ...
|
|
55885
|
+
var ze = (x) => Ne(P({}, "__esModule", { value: true }), x);
|
|
55886
|
+
var _t = {};
|
|
55887
|
+
d(_t, { ALPViewType: () => j, ActionTitlePrefix: () => Ze, ActionType: () => h, ArtifactType: () => v, BindingPropertyRegexAsString: () => De, ControlType: () => I, CustomExtensionType: () => D, DATESETTINGSPATH: () => pt, DataSourceType: () => z, DefinitionName: () => B, DirName: () => w, DraftDiscardEnabledSettings: () => Q, ExportArtifacts: () => L, FIORI_FCL_ROOT_ID: () => mt, FIORI_FCL_ROOT_VIEW_NAME: () => gt2, FRAGMENTNAMEPART: () => ct, FacetBase: () => _89, FacetTitlePrefix: () => $e, Features: () => ee, FileName: () => M, FioriElementsVersion: () => E, FlexChangeLayer: () => V, FlexibleColumnLayoutAggregations: () => N, FlexibleColumnLayoutType: () => y, GENERICAPPSETTINGS: () => lt, LogSeverity: () => $, LogSeverityLabel: () => ut, MANIFESTPATH: () => et, MacrosPropertyType: () => X, ManifestSection: () => q, OdataVersion: () => O, PAGETYPE_VIEW_EXTENSION_TEMPLATE_MAP: () => Je, PageType: () => qe, PageTypeV2: () => C, PageTypeV4: () => A, PropertyName: () => G, QUICKVARPATH: () => rt, QUICKVARPATHX: () => st, SAPUI5_FRAGMENT_CLASS: () => St, SAPUI5_VIEW_CLASS: () => bt, SchemaKeyName: () => W, SchemaTag: () => H, SchemaType: () => F, SectionType: () => R, StatePreservationMode: () => Y, TableColumnVerticalAlignment: () => K, TemplateType: () => Z, UIVOCABULARY: () => at, UIVOCABULARYALPHADOT: () => it, UIVOCABULARYDOT: () => nt, VOCWITHCOLONS: () => ot, VOCWITHSLASH: () => tt, ViewTemplateType: () => k, ViewTypes: () => J, Visualization: () => U, v2: () => f, v4: () => T });
|
|
55888
|
+
module2.exports = ze(_t);
|
|
55889
|
+
var C = ((r) => (r.ObjectPage = "ObjectPage", r.ListReport = "ListReport", r.OverviewPage = "OverviewPage", r.CustomPage = "CustomPage", r.AnalyticalListPage = "AnalyticalListPage", r))(C || {});
|
|
55890
|
+
var A = ((r) => (r.ObjectPage = "ObjectPage", r.ListReport = "ListReport", r.CustomPage = "CustomPage", r.FPMCustomPage = "FPMCustomPage", r.AnalyticalListPage = "AnalyticalListPage", r))(A || {});
|
|
55891
|
+
var qe = { ...C, ...A };
|
|
55785
55892
|
var Je = /* @__PURE__ */ new Map([["ListReport", "sap.suite.ui.generic.template.ListReport.view.ListReport"], ["AnalyticalListPage", "sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage"], ["ObjectPage", "sap.suite.ui.generic.template.ObjectPage.view.Details"]]);
|
|
55786
|
-
var E = ((
|
|
55787
|
-
var
|
|
55788
|
-
var
|
|
55789
|
-
var V = ((
|
|
55893
|
+
var E = ((t) => (t.v2 = "v2", t.v4 = "v4", t))(E || {});
|
|
55894
|
+
var O = ((t) => (t.v2 = "v2", t.v4 = "v4", t))(O || {});
|
|
55895
|
+
var y = ((m) => (m.OneColumn = "OneColumn", m.TwoColumnsBeginExpanded = "TwoColumnsBeginExpanded", m.TwoColumnsMidExpanded = "TwoColumnsMidExpanded", m.MidColumnFullScreen = "MidColumnFullScreen", m.ThreeColumnsMidExpanded = "ThreeColumnsMidExpanded", m.ThreeColumnsEndExpanded = "ThreeColumnsEndExpanded", m.ThreeColumnsMidExpandedEndHidden = "ThreeColumnsMidExpandedEndHidden", m.ThreeColumnsBeginExpandedEndHidden = "ThreeColumnsBeginExpandedEndHidden", m.EndColumnFullScreen = "EndColumnFullScreen", m))(y || {});
|
|
55896
|
+
var V = ((t) => (t.Vendor = "VENDOR", t.Customer = "CUSTOMER_BASE", t))(V || {});
|
|
55790
55897
|
var F = ((b) => (b.Application = "Application", b.ObjectPage = "ObjectPage", b.ListReport = "ListReport", b.OverviewPage = "OverviewPage", b.AnalyticalListPage = "AnalyticalListPage", b.FreestylePage = "FreestylePage", b.FPMCustomPage = "FPMCustomPage", b.BuildingBlocks = "BuildingBlocks", b))(F || {});
|
|
55791
|
-
var L = ((
|
|
55792
|
-
var j = ((
|
|
55793
|
-
var
|
|
55794
|
-
var
|
|
55795
|
-
var
|
|
55898
|
+
var L = ((t) => (t.flex = "flex", t.manifest = "manifest", t))(L || {});
|
|
55899
|
+
var j = ((t) => (t.Primary = "primary", t.Secondary = "secondary", t))(j || {});
|
|
55900
|
+
var R = ((o) => (o.Section = "Section", o.SubSection = "SubSection", o.HeaderSection = "HeaderSection", o))(R || {});
|
|
55901
|
+
var v = ((n) => (n.Manifest = "Manifest", n.FlexChange = "FlexChange", n.Annotation = "Annotation", n.XMLProperty = "XMLProperty", n))(v || {});
|
|
55902
|
+
var h = ((o) => (o.Annotation = "Annotation", o.Custom = "Custom", o.Standard = "Standard", o))(h || {});
|
|
55796
55903
|
var I = ((g) => (g.Table = "sap.m.Table", g.TableColumn = "sap.m.Column", g.SmartTable = "sap.ui.comp.smarttable.SmartTable", g.SmartFilterBar = "sap.ui.comp.smartfilterbar.SmartFilterBar", g.SmartChart = "sap.ui.comp.smartchart.SmartChart", g.Group = "sap.ui.comp.smartform.Group", g.GroupElement = "sap.ui.comp.smartform.GroupElement", g.Button = "sap.m.Button", g.ToolbarButton = "sap.m.OverflowToolbarButton", g.Avatar = "sap.f.Avatar", g.ObjectPageDynamicHeaderTitle = "sap.uxap.ObjectPageDynamicHeaderTitle", g.ObjectPageGridProperties = "sap.ui.layout.GridData", g.ObjectPageHeader = "sap.uxap.ObjectPageHeader", g.ObjectPageLayout = "sap.uxap.ObjectPageLayout", g.HeaderAction = "sap.uxap.ObjectPageHeaderActionButton", g.DynamicPage = "sap.f.DynamicPage", g.Form = "sap.ui.layout.form", g.Chart = "sap.suite.ui.microchart", g.Section = "sap.uxap.ObjectPageSection", g.SubSection = "sap.uxap.ObjectPageSubSection", g))(I || {});
|
|
55797
|
-
var U = ((
|
|
55904
|
+
var U = ((t) => (t.LineItem = "LineItem", t.Chart = "Chart", t))(U || {});
|
|
55798
55905
|
var w = ((u) => (u.Sapux = "src", u.Schemas = ".schemas", u.Pages = "pages", u.Webapp = "webapp", u.Temp = ".tmp", u.Changes = "changes", u.LocalService = "localService", u.Controller = "controller", u.View = "view", u.Fragment = "fragment", u.Ext = "ext", u.VSCode = ".vscode", u))(w || {});
|
|
55799
55906
|
var M = ((p) => (p.App = "app.json", p))(M || {});
|
|
55800
55907
|
var $e = "Facet ID: ";
|
|
@@ -55806,103 +55913,102 @@ var require_common7 = __commonJS({
|
|
|
55806
55913
|
var G = ((s) => (s.actions = "actions", s.annotationPath = "annotationPath", s.chart = "chart", s.columns = "columns", s.defaultPath = "defaultPath", s.defaultTemplateAnnotationPath = "defaultTemplateAnnotationPath", s.footer = "footer", s.header = "header", s.sections = "sections", s.table = "table", s.views = "views", s.visualFilters = "visualFilters", s.selectionFields = "selectionFields", s))(G || {});
|
|
55807
55914
|
var H = ((s) => (s.annotationPath = "annotationPath", s.annotationType = "annotationType", s.artifactType = "artifactType", s.controlType = "controlType", s.actionType = "actionType", s.dataType = "dataType", s.fullyQualifiedName = "fullyQualifiedName", s.hidden = "hidden", s.isViewNode = "isViewNode", s.key = "key", s.keys = "keys", s.target = "target", s.propertyIndex = "propertyIndex", s))(H || {});
|
|
55808
55915
|
var W = ((S) => (S.id = "ID", S.value = "Value", S.action = "Action", S.target = "Target", S.key = "Key", S.semanticObject = "SemanticObject", S))(W || {});
|
|
55809
|
-
var et = "webapp/
|
|
55810
|
-
var tt = "
|
|
55811
|
-
var ot = "
|
|
55812
|
-
var at = "
|
|
55813
|
-
var nt = "com.sap.vocabularies.UI.v1";
|
|
55814
|
-
var it = "com.sap.vocabularies.UI.v1.";
|
|
55815
|
-
var rt = "
|
|
55816
|
-
var st = "/
|
|
55817
|
-
var pt = "/
|
|
55818
|
-
var ct = "
|
|
55819
|
-
var lt = ".fragment.";
|
|
55916
|
+
var et = "webapp/manifest.json";
|
|
55917
|
+
var tt = "/@com.sap.vocabularies";
|
|
55918
|
+
var ot = "::@com.sap.vocabularies";
|
|
55919
|
+
var at = "com.sap.vocabularies.UI.v1";
|
|
55920
|
+
var nt = "com.sap.vocabularies.UI.v1.";
|
|
55921
|
+
var it = "@com.sap.vocabularies.UI.v1.";
|
|
55922
|
+
var rt = "/quickVariantSelection";
|
|
55923
|
+
var st = "/quickVariantSelectionX";
|
|
55924
|
+
var pt = "/filterSettings/dateSettings";
|
|
55925
|
+
var ct = ".fragment.";
|
|
55820
55926
|
var X = ((n) => (n.Control = "Control", n.Property = "Property", n.Aggregation = "Aggregation", n.Event = "Event", n))(X || {});
|
|
55821
55927
|
var Q = ((p) => (p.restricted = "restricted", p))(Q || {});
|
|
55822
|
-
var K = ((
|
|
55823
|
-
var Y = ((
|
|
55824
|
-
var
|
|
55825
|
-
var
|
|
55928
|
+
var K = ((o) => (o.Top = "Top", o.Middle = "Middle", o.Bottom = "Bottom", o))(K || {});
|
|
55929
|
+
var Y = ((t) => (t.persistence = "persistence", t.discovery = "discovery", t))(Y || {});
|
|
55930
|
+
var N = ((o) => (o.BeginColumnPages = "beginColumnPages", o.MidColumnPages = "midColumnPages", o.EndColumnPages = "endColumnPages", o))(N || {});
|
|
55931
|
+
var z = ((t) => (t.OData = "OData", t.ODataAnnotation = "ODataAnnotation", t))(z || {});
|
|
55826
55932
|
var q = ((r) => (r.ui = "sap.ui", r.app = "sap.app", r.generic = "sap.ui.generic.app", r.ovp = "sap.ovp", r.ui5 = "sap.ui5", r))(q || {});
|
|
55827
|
-
var
|
|
55828
|
-
var
|
|
55829
|
-
var
|
|
55830
|
-
var J = ((
|
|
55831
|
-
var
|
|
55832
|
-
var
|
|
55833
|
-
var $ = ((
|
|
55834
|
-
var
|
|
55933
|
+
var lt = "sap.ui.generic.app/settings";
|
|
55934
|
+
var gt2 = "sap.fe.templates.RootContainer.view.Fcl";
|
|
55935
|
+
var mt = "appRootView";
|
|
55936
|
+
var J = ((o) => (o.XML = "XML", o.HTML = "HTML", o.JSON = "JSON", o))(J || {});
|
|
55937
|
+
var bt = "sap.ui.core.mvc.View";
|
|
55938
|
+
var St = "sap.ui.core.Fragment";
|
|
55939
|
+
var $ = ((o) => (o.Error = "error", o.Warning = "warning", o.Info = "info", o))($ || {});
|
|
55940
|
+
var ut = { error: "Error", warning: "Warning", info: "Information" };
|
|
55835
55941
|
var Z = ((S) => (S.ListReportObjectPageV2 = "ListReportObjectPageV2", S.ListReportObjectPageV4 = "ListReportObjectPageV4", S.OverviewPageV2 = "OverviewPageV2", S.AnalyticalListPageV2 = "AnalyticalListPageV2", S.AnalyticalListPageV4 = "AnalyticalListPageV4", S.FreestylePageV4 = "FreestylePageV4", S))(Z || {});
|
|
55836
55942
|
var D = ((c) => (c.CustomPage = "CustomPage", c.CustomColumn = "CustomColumn", c.CustomSection = "CustomSection", c.ObjectPage = "ObjectPage", c.CustomAction = "CustomAction", c.CustomView = "CustomView", c.ControllerExtension = "ControllerExtension", c.CustomSubSection = "CustomSubSection", c.CustomFilterField = "CustomFilterField", c.CustomHeaderSection = "CustomHeaderSection", c))(D || {});
|
|
55837
55943
|
var ee = ((p) => (p.BuildingBlocks = "BuildingBlocks", p))(ee || {});
|
|
55838
|
-
var
|
|
55839
|
-
d(
|
|
55840
|
-
var te = ((
|
|
55944
|
+
var f = {};
|
|
55945
|
+
d(f, { CardSettingsType: () => ae, CardTemplateType: () => oe, ChartCardType: () => te, ChartType: () => Ae, ContainerLayoutType: () => Oe, CreateMode: () => Ee, DateRangeType: () => ce, DefaultContentView: () => Pe, DefaultDateRangeValueType: () => le, DefaultFilterMode: () => de, ExtensionFragmentTypes: () => Te, FE_TEMPLATE_V2: () => Pt, FE_TEMPLATE_V2_ALP: () => At, FE_TEMPLATE_V2_LIST_REPORT: () => Ct, FE_TEMPLATE_V2_OBJECT_PAGE: () => dt, FilterPathType: () => ge, IgnoredFieldsType: () => xe, LinkListFlavorType: () => pe, ListFlavorType: () => ie, ListTypeType: () => re, LoadDataOnAppLaunchSettings: () => Ce, MeasureAggregateValues: () => ne, SAPUI5_CONTROLLER_EXTENSION: () => Tt, SAPUI5_VIEW_EXTENSION: () => ft, SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE: () => yt, SAPUI5_VIEW_EXTENSION_LIST_REPORT: () => Ot, SAPUI5_VIEW_EXTENSION_OBJECT_PAGE: () => Et, SectionPosition: () => fe, SortOrderType: () => se, Strategy: () => ue, TableColumnExtensionTypeV2: () => Se, TableTypeV2: () => be, cardTemplateTypeMap: () => xt, customColumnViewTypes: () => me });
|
|
55946
|
+
var te = ((o) => (o.cardBubble = "cardBubble", o.cardchartsline = "cardchartsline", o.cardchartsdonut = "cardchartsdonut", o))(te || {});
|
|
55841
55947
|
var oe = ((m) => (m.analytical = "sap.ovp.cards.charts.analytical", m.analyticalv4 = "sap.ovp.cards.v4.charts.analytical", m.list = "sap.ovp.cards.list", m.listv4 = "sap.ovp.cards.v4.list", m.linklist = "sap.ovp.cards.linklist", m.linklistv4 = "sap.ovp.cards.v4.linklist", m.table = "sap.ovp.cards.table", m.tablev4 = "sap.ovp.cards.v4.table", m.stack = "sap.ovp.cards.stack", m))(oe || {});
|
|
55842
|
-
var
|
|
55948
|
+
var xt = { "sap.ovp.cards.charts.analytical": "AnalyticalCard", "sap.ovp.cards.v4.charts.analytical": "AnalyticalCard", "sap.ovp.cards.list": "ListCard", "sap.ovp.cards.v4.list": "ListCard", "sap.ovp.cards.linklist": "LinklistCard", "sap.ovp.cards.v4.linklist": "LinklistCard", "sap.ovp.cards.table": "TableCard", "sap.ovp.cards.v4.table": "TableCard", "sap.ovp.cards.stack": "StackCard" };
|
|
55843
55949
|
var ae = ((b) => (b.analyticalCardSettings = "analyticalCardSettings", b.analyticalCardSettingsv4 = "analyticalCardSettingsv4", b.listCardSettings = "listCardSettings", b.listCardSettingsv4 = "listCardSettingsv4", b.stackCardSettings = "stackCardSettings", b.linkListCardSettings = "linkListCardSettings", b.tableCardSettings = "tableCardSettings", b.tableCardSettingsv4 = "tableCardSettingsv4", b))(ae || {});
|
|
55844
55950
|
var ne = ((r) => (r.average = "average", r.max = "max", r.min = "min", r.sum = "sum", r.count = "$count", r))(ne || {});
|
|
55845
|
-
var ie = ((
|
|
55846
|
-
var re = ((
|
|
55847
|
-
var se = ((
|
|
55848
|
-
var pe = ((
|
|
55951
|
+
var ie = ((o) => (o.standard = "standard", o.bar = "bar", o.carousel = "carousel", o))(ie || {});
|
|
55952
|
+
var re = ((t) => (t.extended = "extended", t.condensed = "condensed", t))(re || {});
|
|
55953
|
+
var se = ((t) => (t.ascending = "ascending", t.descending = "descending", t))(se || {});
|
|
55954
|
+
var pe = ((t) => (t.standard = "standard", t.carousel = "carousel", t))(pe || {});
|
|
55849
55955
|
var ce = ((a) => (a.DATERANGE = "DATERANGE", a.DATE = "DATE", a.FROM = "FROM", a.TO = "TO", a.DAYS = "DAYS", a.LASTDAYS = "LASTDAYS", a.LASTWEEKS = "LASTWEEKS", a.WEEK = "WEEK", a.LASTMONTHS = "LASTMONTHS", a.MONTH = "MONTH", a.QUARTER = "QUARTER", a.LASTQUARTERS = "LASTQUARTERS", a.LASTYEARS = "LASTYEARS", a.LASTYEAR = "LASTYEAR", a.YEAR = "YEAR", a.NEXTDAYS = "NEXTDAYS", a.NEXTWEEKS = "NEXTWEEKS", a.NEXTMONTHS = "NEXTMONTHS", a.NEXTQUARTERS = "NEXTQUARTERS", a.NEXTYEARS = "NEXTYEARS", a.NEXT = "NEXT", a.SPECIFICMONTH = "SPECIFICMONTH", a.YESTERDAY = "YESTERDAY", a.YEARTODATE = "YEARTODATE", a.TODAY = "TODAY", a.TOMORROW = "TOMORROW", a.THISWEEK = "THISWEEK", a.LASTWEEK = "LASTWEEK", a.LAST2WEEKS = "LAST2WEEKS", a.LAST3WEEKS = "LAST3WEEKS", a.LAST4WEEKS = "LAST4WEEKS", a.LAST5WEEKS = "LAST5WEEKS", a.NEXTWEEK = "NEXTWEEK", a.NEXT2WEEKS = "NEXT2WEEKS", a.NEXT3WEEKS = "NEXT3WEEKS", a.NEXT4WEEKS = "NEXT4WEEKS", a.NEXT5WEEKS = "NEXT5WEEKS", a.THISMONTH = "THISMONTH", a.LASTMONTH = "LASTMONTH", a.NEXTMONTH = "NEXTMONTH", a.THISQUARTER = "THISQUARTER", a.LASTQUARTER = "LASTQUARTER", a.NEXTQUARTER = "NEXTQUARTER", a.QUARTER1 = "QUARTER1", a.QUARTER2 = "QUARTER2", a.QUARTER3 = "QUARTER3", a.QUARTER4 = "QUARTER4", a.TODAYFROMTO = "TODAYFROMTO", a))(ce || {});
|
|
55850
55956
|
var le = ((l) => (l.YESTERDAY = "YESTERDAY", l.TODAY = "TODAY", l.THISWEEK = "THISWEEK", l.LASTWEEK = "LASTWEEK", l.THISMONTH = "THISMONTH", l.TOMORROW = "TOMORROW", l.LASTMONTH = "LASTMONTH", l.THISQUARTER = "THISQUARTER", l.LASTQUARTER = "LASTQUARTER", l.THISYEAR = "THISYEAR", l.LASTYEAR = "LASTYEAR", l.LAST2WEEKS = "LAST2WEEKS", l.LAST3WEEKS = "LAST3WEEKS", l.LAST4WEEKS = "LAST4WEEKS", l.LAST5WEEKS = "LAST5WEEKS", l.YEARTODATE = "YEARTODATE", l.QUARTER1 = "QUARTER1", l.QUARTER2 = "QUARTER2", l.QUARTER3 = "QUARTER3", l.QUARTER4 = "QUARTER4", l.DATETOYEAR = "DATETOYEAR", l))(le || {});
|
|
55851
|
-
var ge = ((
|
|
55957
|
+
var ge = ((t) => (t.key = "key", t.catgory = "category", t))(ge || {});
|
|
55852
55958
|
var me = ((p) => (p.XML = "XML", p))(me || {});
|
|
55853
55959
|
var be = ((n) => (n.ResponsiveTable = "ResponsiveTable", n.GridTable = "GridTable", n.AnalyticalTable = "AnalyticalTable", n.TreeTable = "TreeTable", n))(be || {});
|
|
55854
55960
|
var Se = ((n) => (n.ResponsiveTableColumnsExtension = "ResponsiveTableColumnsExtension", n.AnalyticalTableColumnsExtension = "AnalyticalTableColumnsExtension", n.TreeTableColumnsExtension = "TreeTableColumnsExtension", n.GridTableColumnsExtension = "GridTableColumnsExtension", n))(Se || {});
|
|
55855
55961
|
var ue = ((p) => (p.extension = "extension", p))(ue || {});
|
|
55856
55962
|
var xe = ((p) => (p.GENERICPROPERTY = "GENERICPROPERTY", p))(xe || {});
|
|
55857
|
-
var Pe = ((
|
|
55858
|
-
var de = ((
|
|
55859
|
-
var
|
|
55860
|
-
var
|
|
55861
|
-
var
|
|
55862
|
-
var
|
|
55863
|
-
var Ee = ((
|
|
55864
|
-
var
|
|
55865
|
-
var
|
|
55963
|
+
var Pe = ((o) => (o.charttable = "charttable", o.chart = "chart", o.table = "table", o))(Pe || {});
|
|
55964
|
+
var de = ((t) => (t.visual = "visual", t.compact = "compact", t))(de || {});
|
|
55965
|
+
var Ce = ((o) => (o.always = "always", o.never = "never", o.ifAnyFilterExist = "ifAnyFilterExist", o))(Ce || {});
|
|
55966
|
+
var Ae = ((i) => (i.bar = "bar", i.column = "column", i.line = "line", i.combination = "combination", i.pie = "pie", i.donut = "donut", i.scatter = "scatter", i.bubble = "bubble", i.heatmap = "heatmap", i.bullet = "bullet", i.verticalBullet = "vertical_bullet", i.stackedBar = "stacked_bar", i.stackedColumn = "stacked_column", i.stackedCombination = "stacked_combination", i.horizontalStackedCombination = "horizontal_stacked_combination", i.dualBar = "dual_bar", i.dualColumn = "dual_column", i.dualLine = "dual_line", i.dualStackedBar = "dual_stacked_bar", i.dualStackedColumn = "dual_stacked_column", i.dualCombination = "dual_combination", i.dualStackedCombination = "dual_stacked_combination", i.dualHorizontalCombination = "dual_horizontal_combination", i.dualHorizontalStackedCombination = "dual_horizontal_stacked_combination", i.hundredStackedBar = "100_stacked_bar", i.hundredStackedColumn = "100_stacked_column", i.hundredDualStackedBar = "100_dual_stacked_bar", i.hundredDualStackedColumn = "100_dual_stacked_column", i.waterfall = "waterfall", i.horizontalWaterfall = "horizontal_waterfall", i))(Ae || {});
|
|
55967
|
+
var fe = ((o) => (o.AfterFacet = "AfterFacet", o.BeforeFacet = "BeforeFacet", o.ReplaceFacet = "ReplaceFacet", o))(fe || {});
|
|
55968
|
+
var Te = ((p) => (p.XML = "XML", p))(Te || {});
|
|
55969
|
+
var Ee = ((o) => (o.creationRows = "creationRows", o.creationRowsHiddenInEditMode = "creationRowsHiddenInEditMode", o.inline = "inline", o))(Ee || {});
|
|
55970
|
+
var Pt = "sap.suite.ui.generic.template";
|
|
55971
|
+
var dt = "sap.suite.ui.generic.template.ObjectPage";
|
|
55866
55972
|
var Ct = "sap.suite.ui.generic.template.ListReport";
|
|
55867
|
-
var
|
|
55973
|
+
var At = "sap.suite.ui.generic.template.AnalyticalListPage";
|
|
55868
55974
|
var ft = "sap.ui.viewExtensions";
|
|
55869
|
-
var
|
|
55870
|
-
var
|
|
55975
|
+
var Tt = "sap.ui.controllerExtensions";
|
|
55976
|
+
var Et = "sap.suite.ui.generic.template.ObjectPage.view.Details";
|
|
55871
55977
|
var Ot = "sap.suite.ui.generic.template.ListReport.view.ListReport";
|
|
55872
|
-
var
|
|
55873
|
-
var
|
|
55874
|
-
var
|
|
55875
|
-
d(
|
|
55876
|
-
var
|
|
55978
|
+
var yt = "sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage";
|
|
55979
|
+
var Oe = ((t) => (t.fixed = "fixed", t.resizable = "resizable", t))(Oe || {});
|
|
55980
|
+
var T = {};
|
|
55981
|
+
d(T, { ActionPlacement: () => ye, Availability: () => Ge, CustomSectionViewTypesV4: () => Me, DefaultPathType: () => je, FE_TEMPLATE_V4: () => Vt, FE_TEMPLATE_V4_ALP: () => Rt, FE_TEMPLATE_V4_CUSTOM_PAGE: () => Ft, FE_TEMPLATE_V4_LIST_REPORT: () => jt, FE_TEMPLATE_V4_OBJECT_PAGE: () => Lt, FIORI_FCL_ROUTER_CLASS: () => ht, FilterFieldPlacement: () => he, HorizontalAlign: () => He, InitialLayoutType: () => ve, InitialLoadType: () => Le, LayoutType: () => Re, Placement: () => Be, SAPUI5_CONTROLLER_EXTENSION: () => Ut, SAPUI5_DEPENDENCY_LIB_SAP_F: () => It, SAPUI5_FRAGMENT_TYPE_V4: () => vt, SAPUI5_VIEW_EXTENSION_LIST_REPORT: () => Mt, SAPUI5_VIEW_EXTENSION_OBJECT_PAGE: () => wt, SectionLayoutType: () => Ue, SectionPosition: () => we, SectionPositionV4: () => ke, SelectType: () => Ie, SelectionMode: () => Ve, TableCreationModeType: () => _e, TableTypeV4: () => Fe, VariantManagementTypeListReport: () => Xe, VariantManagementTypeObjectPage: () => We });
|
|
55982
|
+
var ye = ((t) => (t.After = "After", t.Before = "Before", t))(ye || {});
|
|
55877
55983
|
var Ve = ((n) => (n.Multi = "Multi", n.None = "None", n.Single = "Single", n.Auto = "Auto", n))(Ve || {});
|
|
55878
|
-
var Fe = ((
|
|
55879
|
-
var Le = ((
|
|
55880
|
-
var je = ((
|
|
55881
|
-
var
|
|
55882
|
-
var
|
|
55883
|
-
var
|
|
55884
|
-
var Ie = ((
|
|
55885
|
-
var Ue = ((
|
|
55886
|
-
var we = ((
|
|
55984
|
+
var Fe = ((n) => (n.ResponsiveTable = "ResponsiveTable", n.GridTable = "GridTable", n.AnalyticalTable = "AnalyticalTable", n.TreeTable = "TreeTable", n))(Fe || {});
|
|
55985
|
+
var Le = ((o) => (o.Disabled = "Disabled", o.Enabled = "Enabled", o.Auto = "Auto", o))(Le || {});
|
|
55986
|
+
var je = ((o) => (o.Primary = "primary", o.Secondary = "secondary", o.Both = "both", o))(je || {});
|
|
55987
|
+
var Re = ((t) => (t.Compact = "Compact", t.CompactVisual = "CompactVisual", t))(Re || {});
|
|
55988
|
+
var ve = ((t) => (t.Compact = "Compact", t.Visual = "Visual", t))(ve || {});
|
|
55989
|
+
var he = ((t) => (t.After = "After", t.Before = "Before", t))(he || {});
|
|
55990
|
+
var Ie = ((t) => (t.single = "single", t.multi = "multi", t))(Ie || {});
|
|
55991
|
+
var Ue = ((t) => (t.Tabs = "Tabs", t.Page = "Page", t))(Ue || {});
|
|
55992
|
+
var we = ((t) => (t.After = "After", t.Before = "Before", t))(we || {});
|
|
55887
55993
|
var Me = ((p) => (p.XML = "XML", p))(Me || {});
|
|
55888
|
-
var _e = ((
|
|
55889
|
-
var
|
|
55890
|
-
var
|
|
55891
|
-
var
|
|
55892
|
-
var
|
|
55994
|
+
var _e = ((o) => (o.NewPage = "NewPage", o.InlineCreationRows = "InlineCreationRows", o.Inline = "Inline", o))(_e || {});
|
|
55995
|
+
var Vt = "sap.fe.templates";
|
|
55996
|
+
var Ft = "sap.fe.core.fpm";
|
|
55997
|
+
var Lt = "sap.fe.templates.ObjectPage";
|
|
55998
|
+
var jt = "sap.fe.templates.ListReport";
|
|
55893
55999
|
var Rt = "sap.fe.templates.AnalyticalListPage";
|
|
55894
56000
|
var vt = "XMLFragment";
|
|
55895
|
-
var ke = ((
|
|
55896
|
-
var
|
|
55897
|
-
var
|
|
55898
|
-
var
|
|
55899
|
-
var
|
|
55900
|
-
var
|
|
55901
|
-
var Be = ((
|
|
55902
|
-
var Ge = ((
|
|
55903
|
-
var He = ((
|
|
55904
|
-
var We = ((
|
|
55905
|
-
var Xe = ((
|
|
56001
|
+
var ke = ((t) => (t.AfterFacet = "AfterFacet", t.BeforeFacet = "BeforeFacet", t))(ke || {});
|
|
56002
|
+
var ht = "sap.f.routing.Router";
|
|
56003
|
+
var It = "sap.f";
|
|
56004
|
+
var Ut = "sap.ui.controllerExtensions";
|
|
56005
|
+
var wt = "sap.fe.templates.ObjectPage.ObjectPageController";
|
|
56006
|
+
var Mt = "sap.fe.templates.ListReport.ListReportController";
|
|
56007
|
+
var Be = ((t) => (t.After = "After", t.Before = "Before", t))(Be || {});
|
|
56008
|
+
var Ge = ((o) => (o.Default = "Default", o.Adaptation = "Adaptation", o.Hidden = "Hidden", o))(Ge || {});
|
|
56009
|
+
var He = ((o) => (o.Begin = "Begin", o.Center = "Center", o.End = "End", o))(He || {});
|
|
56010
|
+
var We = ((t) => (t.None = "None", t.Control = "Control", t))(We || {});
|
|
56011
|
+
var Xe = ((o) => (o.None = "None", o.Control = "Control", o.Page = "Page", o))(Xe || {});
|
|
55906
56012
|
}
|
|
55907
56013
|
});
|
|
55908
56014
|
|
|
@@ -55965,48 +56071,48 @@ var require_apiTypes = __commonJS({
|
|
|
55965
56071
|
var require_v2 = __commonJS({
|
|
55966
56072
|
"../../node_modules/@sap/ux-specification-types/dist/v2.js"(exports2, module2) {
|
|
55967
56073
|
var p = Object.defineProperty;
|
|
55968
|
-
var
|
|
55969
|
-
var
|
|
55970
|
-
var
|
|
56074
|
+
var W = Object.getOwnPropertyDescriptor;
|
|
56075
|
+
var F = Object.getOwnPropertyNames;
|
|
56076
|
+
var h = Object.prototype.hasOwnProperty;
|
|
55971
56077
|
var w = (c, o) => {
|
|
55972
56078
|
for (var a in o)
|
|
55973
56079
|
p(c, a, { get: o[a], enumerable: true });
|
|
55974
56080
|
};
|
|
55975
56081
|
var M = (c, o, a, n) => {
|
|
55976
56082
|
if (o && typeof o == "object" || typeof o == "function")
|
|
55977
|
-
for (let r of
|
|
55978
|
-
!
|
|
56083
|
+
for (let r of F(o))
|
|
56084
|
+
!h.call(c, r) && r !== a && p(c, r, { get: () => o[r], enumerable: !(n = W(o, r)) || n.enumerable });
|
|
55979
56085
|
return c;
|
|
55980
56086
|
};
|
|
55981
|
-
var
|
|
55982
|
-
var
|
|
55983
|
-
w(
|
|
55984
|
-
module2.exports =
|
|
56087
|
+
var Q = (c) => M(p({}, "__esModule", { value: true }), c);
|
|
56088
|
+
var D = {};
|
|
56089
|
+
w(D, { CardSettingsType: () => d, CardTemplateType: () => m, ChartCardType: () => b, ChartType: () => _89, ContainerLayoutType: () => j, CreateMode: () => k, DateRangeType: () => u, DefaultContentView: () => U, DefaultDateRangeValueType: () => f, DefaultFilterMode: () => I, ExtensionFragmentTypes: () => y, FE_TEMPLATE_V2: () => B, FE_TEMPLATE_V2_ALP: () => K, FE_TEMPLATE_V2_LIST_REPORT: () => G, FE_TEMPLATE_V2_OBJECT_PAGE: () => H, FilterPathType: () => C, IgnoredFieldsType: () => v, LinkListFlavorType: () => A, ListFlavorType: () => g, ListTypeType: () => E, LoadDataOnAppLaunchSettings: () => V, MeasureAggregateValues: () => T, SAPUI5_CONTROLLER_EXTENSION: () => z, SAPUI5_VIEW_EXTENSION: () => Y, SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE: () => $, SAPUI5_VIEW_EXTENSION_LIST_REPORT: () => J, SAPUI5_VIEW_EXTENSION_OBJECT_PAGE: () => q, SectionPosition: () => N, SortOrderType: () => x, Strategy: () => L, TableColumnExtensionTypeV2: () => R, TableTypeV2: () => O, cardTemplateTypeMap: () => X, customColumnViewTypes: () => P });
|
|
56090
|
+
module2.exports = Q(D);
|
|
55985
56091
|
var b = ((n) => (n.cardBubble = "cardBubble", n.cardchartsline = "cardchartsline", n.cardchartsdonut = "cardchartsdonut", n))(b || {});
|
|
55986
|
-
var
|
|
55987
|
-
var
|
|
55988
|
-
var
|
|
55989
|
-
var
|
|
55990
|
-
var
|
|
55991
|
-
var
|
|
55992
|
-
var
|
|
56092
|
+
var m = ((s) => (s.analytical = "sap.ovp.cards.charts.analytical", s.analyticalv4 = "sap.ovp.cards.v4.charts.analytical", s.list = "sap.ovp.cards.list", s.listv4 = "sap.ovp.cards.v4.list", s.linklist = "sap.ovp.cards.linklist", s.linklistv4 = "sap.ovp.cards.v4.linklist", s.table = "sap.ovp.cards.table", s.tablev4 = "sap.ovp.cards.v4.table", s.stack = "sap.ovp.cards.stack", s))(m || {});
|
|
56093
|
+
var X = { "sap.ovp.cards.charts.analytical": "AnalyticalCard", "sap.ovp.cards.v4.charts.analytical": "AnalyticalCard", "sap.ovp.cards.list": "ListCard", "sap.ovp.cards.v4.list": "ListCard", "sap.ovp.cards.linklist": "LinklistCard", "sap.ovp.cards.v4.linklist": "LinklistCard", "sap.ovp.cards.table": "TableCard", "sap.ovp.cards.v4.table": "TableCard", "sap.ovp.cards.stack": "StackCard" };
|
|
56094
|
+
var d = ((l) => (l.analyticalCardSettings = "analyticalCardSettings", l.analyticalCardSettingsv4 = "analyticalCardSettingsv4", l.listCardSettings = "listCardSettings", l.listCardSettingsv4 = "listCardSettingsv4", l.stackCardSettings = "stackCardSettings", l.linkListCardSettings = "linkListCardSettings", l.tableCardSettings = "tableCardSettings", l.tableCardSettingsv4 = "tableCardSettingsv4", l))(d || {});
|
|
56095
|
+
var T = ((S) => (S.average = "average", S.max = "max", S.min = "min", S.sum = "sum", S.count = "$count", S))(T || {});
|
|
56096
|
+
var g = ((n) => (n.standard = "standard", n.bar = "bar", n.carousel = "carousel", n))(g || {});
|
|
56097
|
+
var E = ((a) => (a.extended = "extended", a.condensed = "condensed", a))(E || {});
|
|
56098
|
+
var x = ((a) => (a.ascending = "ascending", a.descending = "descending", a))(x || {});
|
|
55993
56099
|
var A = ((a) => (a.standard = "standard", a.carousel = "carousel", a))(A || {});
|
|
55994
56100
|
var u = ((e) => (e.DATERANGE = "DATERANGE", e.DATE = "DATE", e.FROM = "FROM", e.TO = "TO", e.DAYS = "DAYS", e.LASTDAYS = "LASTDAYS", e.LASTWEEKS = "LASTWEEKS", e.WEEK = "WEEK", e.LASTMONTHS = "LASTMONTHS", e.MONTH = "MONTH", e.QUARTER = "QUARTER", e.LASTQUARTERS = "LASTQUARTERS", e.LASTYEARS = "LASTYEARS", e.LASTYEAR = "LASTYEAR", e.YEAR = "YEAR", e.NEXTDAYS = "NEXTDAYS", e.NEXTWEEKS = "NEXTWEEKS", e.NEXTMONTHS = "NEXTMONTHS", e.NEXTQUARTERS = "NEXTQUARTERS", e.NEXTYEARS = "NEXTYEARS", e.NEXT = "NEXT", e.SPECIFICMONTH = "SPECIFICMONTH", e.YESTERDAY = "YESTERDAY", e.YEARTODATE = "YEARTODATE", e.TODAY = "TODAY", e.TOMORROW = "TOMORROW", e.THISWEEK = "THISWEEK", e.LASTWEEK = "LASTWEEK", e.LAST2WEEKS = "LAST2WEEKS", e.LAST3WEEKS = "LAST3WEEKS", e.LAST4WEEKS = "LAST4WEEKS", e.LAST5WEEKS = "LAST5WEEKS", e.NEXTWEEK = "NEXTWEEK", e.NEXT2WEEKS = "NEXT2WEEKS", e.NEXT3WEEKS = "NEXT3WEEKS", e.NEXT4WEEKS = "NEXT4WEEKS", e.NEXT5WEEKS = "NEXT5WEEKS", e.THISMONTH = "THISMONTH", e.LASTMONTH = "LASTMONTH", e.NEXTMONTH = "NEXTMONTH", e.THISQUARTER = "THISQUARTER", e.LASTQUARTER = "LASTQUARTER", e.NEXTQUARTER = "NEXTQUARTER", e.QUARTER1 = "QUARTER1", e.QUARTER2 = "QUARTER2", e.QUARTER3 = "QUARTER3", e.QUARTER4 = "QUARTER4", e.TODAYFROMTO = "TODAYFROMTO", e))(u || {});
|
|
55995
|
-
var
|
|
55996
|
-
var
|
|
55997
|
-
var
|
|
56101
|
+
var f = ((i) => (i.YESTERDAY = "YESTERDAY", i.TODAY = "TODAY", i.THISWEEK = "THISWEEK", i.LASTWEEK = "LASTWEEK", i.THISMONTH = "THISMONTH", i.TOMORROW = "TOMORROW", i.LASTMONTH = "LASTMONTH", i.THISQUARTER = "THISQUARTER", i.LASTQUARTER = "LASTQUARTER", i.THISYEAR = "THISYEAR", i.LASTYEAR = "LASTYEAR", i.LAST2WEEKS = "LAST2WEEKS", i.LAST3WEEKS = "LAST3WEEKS", i.LAST4WEEKS = "LAST4WEEKS", i.LAST5WEEKS = "LAST5WEEKS", i.YEARTODATE = "YEARTODATE", i.QUARTER1 = "QUARTER1", i.QUARTER2 = "QUARTER2", i.QUARTER3 = "QUARTER3", i.QUARTER4 = "QUARTER4", i.DATETOYEAR = "DATETOYEAR", i))(f || {});
|
|
56102
|
+
var C = ((a) => (a.key = "key", a.catgory = "category", a))(C || {});
|
|
56103
|
+
var P = ((o) => (o.XML = "XML", o))(P || {});
|
|
55998
56104
|
var O = ((r) => (r.ResponsiveTable = "ResponsiveTable", r.GridTable = "GridTable", r.AnalyticalTable = "AnalyticalTable", r.TreeTable = "TreeTable", r))(O || {});
|
|
55999
|
-
var
|
|
56000
|
-
var
|
|
56105
|
+
var R = ((r) => (r.ResponsiveTableColumnsExtension = "ResponsiveTableColumnsExtension", r.AnalyticalTableColumnsExtension = "AnalyticalTableColumnsExtension", r.TreeTableColumnsExtension = "TreeTableColumnsExtension", r.GridTableColumnsExtension = "GridTableColumnsExtension", r))(R || {});
|
|
56106
|
+
var L = ((o) => (o.extension = "extension", o))(L || {});
|
|
56001
56107
|
var v = ((o) => (o.GENERICPROPERTY = "GENERICPROPERTY", o))(v || {});
|
|
56002
|
-
var
|
|
56003
|
-
var
|
|
56004
|
-
var
|
|
56005
|
-
var
|
|
56006
|
-
var
|
|
56007
|
-
var
|
|
56108
|
+
var U = ((n) => (n.charttable = "charttable", n.chart = "chart", n.table = "table", n))(U || {});
|
|
56109
|
+
var I = ((a) => (a.visual = "visual", a.compact = "compact", a))(I || {});
|
|
56110
|
+
var V = ((n) => (n.always = "always", n.never = "never", n.ifAnyFilterExist = "ifAnyFilterExist", n))(V || {});
|
|
56111
|
+
var _89 = ((t) => (t.bar = "bar", t.column = "column", t.line = "line", t.combination = "combination", t.pie = "pie", t.donut = "donut", t.scatter = "scatter", t.bubble = "bubble", t.heatmap = "heatmap", t.bullet = "bullet", t.verticalBullet = "vertical_bullet", t.stackedBar = "stacked_bar", t.stackedColumn = "stacked_column", t.stackedCombination = "stacked_combination", t.horizontalStackedCombination = "horizontal_stacked_combination", t.dualBar = "dual_bar", t.dualColumn = "dual_column", t.dualLine = "dual_line", t.dualStackedBar = "dual_stacked_bar", t.dualStackedColumn = "dual_stacked_column", t.dualCombination = "dual_combination", t.dualStackedCombination = "dual_stacked_combination", t.dualHorizontalCombination = "dual_horizontal_combination", t.dualHorizontalStackedCombination = "dual_horizontal_stacked_combination", t.hundredStackedBar = "100_stacked_bar", t.hundredStackedColumn = "100_stacked_column", t.hundredDualStackedBar = "100_dual_stacked_bar", t.hundredDualStackedColumn = "100_dual_stacked_column", t.waterfall = "waterfall", t.horizontalWaterfall = "horizontal_waterfall", t))(_89 || {});
|
|
56112
|
+
var N = ((n) => (n.AfterFacet = "AfterFacet", n.BeforeFacet = "BeforeFacet", n.ReplaceFacet = "ReplaceFacet", n))(N || {});
|
|
56113
|
+
var y = ((o) => (o.XML = "XML", o))(y || {});
|
|
56008
56114
|
var k = ((n) => (n.creationRows = "creationRows", n.creationRowsHiddenInEditMode = "creationRowsHiddenInEditMode", n.inline = "inline", n))(k || {});
|
|
56009
|
-
var
|
|
56115
|
+
var B = "sap.suite.ui.generic.template";
|
|
56010
56116
|
var H = "sap.suite.ui.generic.template.ObjectPage";
|
|
56011
56117
|
var G = "sap.suite.ui.generic.template.ListReport";
|
|
56012
56118
|
var K = "sap.suite.ui.generic.template.AnalyticalListPage";
|
|
@@ -56015,7 +56121,7 @@ var require_v2 = __commonJS({
|
|
|
56015
56121
|
var q = "sap.suite.ui.generic.template.ObjectPage.view.Details";
|
|
56016
56122
|
var J = "sap.suite.ui.generic.template.ListReport.view.ListReport";
|
|
56017
56123
|
var $ = "sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage";
|
|
56018
|
-
var
|
|
56124
|
+
var j = ((a) => (a.fixed = "fixed", a.resizable = "resizable", a))(j || {});
|
|
56019
56125
|
}
|
|
56020
56126
|
});
|
|
56021
56127
|
|
|
@@ -56026,23 +56132,23 @@ var require_v4 = __commonJS({
|
|
|
56026
56132
|
var O = Object.getOwnPropertyDescriptor;
|
|
56027
56133
|
var U = Object.getOwnPropertyNames;
|
|
56028
56134
|
var E = Object.prototype.hasOwnProperty;
|
|
56029
|
-
var w = (n,
|
|
56030
|
-
for (var e in
|
|
56031
|
-
a(n, e, { get:
|
|
56032
|
-
};
|
|
56033
|
-
var
|
|
56034
|
-
if (
|
|
56035
|
-
for (let
|
|
56036
|
-
!E.call(n,
|
|
56135
|
+
var w = (n, i) => {
|
|
56136
|
+
for (var e in i)
|
|
56137
|
+
a(n, e, { get: i[e], enumerable: true });
|
|
56138
|
+
};
|
|
56139
|
+
var h = (n, i, e, t) => {
|
|
56140
|
+
if (i && typeof i == "object" || typeof i == "function")
|
|
56141
|
+
for (let o of U(i))
|
|
56142
|
+
!E.call(n, o) && o !== e && a(n, o, { get: () => i[o], enumerable: !(t = O(i, o)) || t.enumerable });
|
|
56037
56143
|
return n;
|
|
56038
56144
|
};
|
|
56039
|
-
var
|
|
56145
|
+
var R = (n) => h(a({}, "__esModule", { value: true }), n);
|
|
56040
56146
|
var D = {};
|
|
56041
56147
|
w(D, { ActionPlacement: () => r, Availability: () => A, CustomSectionViewTypesV4: () => S, DefaultPathType: () => c, FE_TEMPLATE_V4: () => j, FE_TEMPLATE_V4_ALP: () => L, FE_TEMPLATE_V4_CUSTOM_PAGE: () => F, FE_TEMPLATE_V4_LIST_REPORT: () => B, FE_TEMPLATE_V4_OBJECT_PAGE: () => _89, FIORI_FCL_ROUTER_CLASS: () => N, FilterFieldPlacement: () => u, HorizontalAlign: () => V, InitialLayoutType: () => m, InitialLoadType: () => l, LayoutType: () => g, Placement: () => T, SAPUI5_CONTROLLER_EXTENSION: () => k, SAPUI5_DEPENDENCY_LIB_SAP_F: () => v, SAPUI5_FRAGMENT_TYPE_V4: () => I, SAPUI5_VIEW_EXTENSION_LIST_REPORT: () => G, SAPUI5_VIEW_EXTENSION_OBJECT_PAGE: () => M, SectionLayoutType: () => f, SectionPosition: () => x, SectionPositionV4: () => C, SelectType: () => b, SelectionMode: () => s, TableCreationModeType: () => P, TableTypeV4: () => p, VariantManagementTypeListReport: () => y, VariantManagementTypeObjectPage: () => d });
|
|
56042
|
-
module2.exports =
|
|
56148
|
+
module2.exports = R(D);
|
|
56043
56149
|
var r = ((e) => (e.After = "After", e.Before = "Before", e))(r || {});
|
|
56044
|
-
var s = ((
|
|
56045
|
-
var p = ((
|
|
56150
|
+
var s = ((o) => (o.Multi = "Multi", o.None = "None", o.Single = "Single", o.Auto = "Auto", o))(s || {});
|
|
56151
|
+
var p = ((o) => (o.ResponsiveTable = "ResponsiveTable", o.GridTable = "GridTable", o.AnalyticalTable = "AnalyticalTable", o.TreeTable = "TreeTable", o))(p || {});
|
|
56046
56152
|
var l = ((t) => (t.Disabled = "Disabled", t.Enabled = "Enabled", t.Auto = "Auto", t))(l || {});
|
|
56047
56153
|
var c = ((t) => (t.Primary = "primary", t.Secondary = "secondary", t.Both = "both", t))(c || {});
|
|
56048
56154
|
var g = ((e) => (e.Compact = "Compact", e.CompactVisual = "CompactVisual", e))(g || {});
|
|
@@ -56051,7 +56157,7 @@ var require_v4 = __commonJS({
|
|
|
56051
56157
|
var b = ((e) => (e.single = "single", e.multi = "multi", e))(b || {});
|
|
56052
56158
|
var f = ((e) => (e.Tabs = "Tabs", e.Page = "Page", e))(f || {});
|
|
56053
56159
|
var x = ((e) => (e.After = "After", e.Before = "Before", e))(x || {});
|
|
56054
|
-
var S = ((
|
|
56160
|
+
var S = ((i) => (i.XML = "XML", i))(S || {});
|
|
56055
56161
|
var P = ((t) => (t.NewPage = "NewPage", t.InlineCreationRows = "InlineCreationRows", t.Inline = "Inline", t))(P || {});
|
|
56056
56162
|
var j = "sap.fe.templates";
|
|
56057
56163
|
var F = "sap.fe.core.fpm";
|
|
@@ -56467,7 +56573,7 @@ var require_package2 = __commonJS({
|
|
|
56467
56573
|
"../lib/telemetry/dist/package.json"(exports2, module2) {
|
|
56468
56574
|
module2.exports = {
|
|
56469
56575
|
name: "@sap/ux-telemetry",
|
|
56470
|
-
version: "1.12.
|
|
56576
|
+
version: "1.12.2",
|
|
56471
56577
|
description: "SAP Fiori tools telemetry library",
|
|
56472
56578
|
main: "dist/src/index.js",
|
|
56473
56579
|
author: "SAP SE",
|
|
@@ -56492,10 +56598,10 @@ var require_package2 = __commonJS({
|
|
|
56492
56598
|
},
|
|
56493
56599
|
dependencies: {
|
|
56494
56600
|
"@sap-ux/store": "0.4.0",
|
|
56495
|
-
"@sap/ux-cds": "1.12.
|
|
56496
|
-
"@sap/ux-common-utils": "1.12.
|
|
56497
|
-
"@sap/ux-feature-toggle": "1.12.
|
|
56498
|
-
"@sap/ux-project-access": "1.12.
|
|
56601
|
+
"@sap/ux-cds": "1.12.2",
|
|
56602
|
+
"@sap/ux-common-utils": "1.12.2",
|
|
56603
|
+
"@sap/ux-feature-toggle": "1.12.2",
|
|
56604
|
+
"@sap/ux-project-access": "1.12.2",
|
|
56499
56605
|
applicationinsights: "1.4.1",
|
|
56500
56606
|
axios: "1.6.1",
|
|
56501
56607
|
"performance-now": "2.1.0",
|
|
@@ -79470,6 +79576,7 @@ var require_EventName = __commonJS({
|
|
|
79470
79576
|
EventName3["GA_LINK_CREATED"] = "GA_LINK_CREATED";
|
|
79471
79577
|
EventName3["LIB_REFERENCE_ADDED"] = "LIB_REFERENCE_ADDED";
|
|
79472
79578
|
EventName3["ADT_TOOLS_APP_GEN"] = "ADT_TOOLS_APP_GEN";
|
|
79579
|
+
EventName3["AI_GEN"] = "AI_GEN";
|
|
79473
79580
|
})(EventName2 || (exports2.EventName = EventName2 = {}));
|
|
79474
79581
|
}
|
|
79475
79582
|
});
|
|
@@ -117296,672 +117403,6 @@ var require_reentrance_ticket = __commonJS({
|
|
|
117296
117403
|
}
|
|
117297
117404
|
});
|
|
117298
117405
|
|
|
117299
|
-
// ../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/utils.js
|
|
117300
|
-
var require_utils16 = __commonJS({
|
|
117301
|
-
"../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/utils.js"(exports2, module2) {
|
|
117302
|
-
"use strict";
|
|
117303
|
-
var has = Object.prototype.hasOwnProperty;
|
|
117304
|
-
var isArray2 = Array.isArray;
|
|
117305
|
-
var hexTable = function() {
|
|
117306
|
-
var array = [];
|
|
117307
|
-
for (var i = 0; i < 256; ++i) {
|
|
117308
|
-
array.push("%" + ((i < 16 ? "0" : "") + i.toString(16)).toUpperCase());
|
|
117309
|
-
}
|
|
117310
|
-
return array;
|
|
117311
|
-
}();
|
|
117312
|
-
var compactQueue = function compactQueue2(queue) {
|
|
117313
|
-
while (queue.length > 1) {
|
|
117314
|
-
var item = queue.pop();
|
|
117315
|
-
var obj = item.obj[item.prop];
|
|
117316
|
-
if (isArray2(obj)) {
|
|
117317
|
-
var compacted = [];
|
|
117318
|
-
for (var j = 0; j < obj.length; ++j) {
|
|
117319
|
-
if (typeof obj[j] !== "undefined") {
|
|
117320
|
-
compacted.push(obj[j]);
|
|
117321
|
-
}
|
|
117322
|
-
}
|
|
117323
|
-
item.obj[item.prop] = compacted;
|
|
117324
|
-
}
|
|
117325
|
-
}
|
|
117326
|
-
};
|
|
117327
|
-
var arrayToObject2 = function arrayToObject3(source, options2) {
|
|
117328
|
-
var obj = options2 && options2.plainObjects ? /* @__PURE__ */ Object.create(null) : {};
|
|
117329
|
-
for (var i = 0; i < source.length; ++i) {
|
|
117330
|
-
if (typeof source[i] !== "undefined") {
|
|
117331
|
-
obj[i] = source[i];
|
|
117332
|
-
}
|
|
117333
|
-
}
|
|
117334
|
-
return obj;
|
|
117335
|
-
};
|
|
117336
|
-
var merge2 = function merge3(target, source, options2) {
|
|
117337
|
-
if (!source) {
|
|
117338
|
-
return target;
|
|
117339
|
-
}
|
|
117340
|
-
if (typeof source !== "object") {
|
|
117341
|
-
if (isArray2(target)) {
|
|
117342
|
-
target.push(source);
|
|
117343
|
-
} else if (target && typeof target === "object") {
|
|
117344
|
-
if (options2 && (options2.plainObjects || options2.allowPrototypes) || !has.call(Object.prototype, source)) {
|
|
117345
|
-
target[source] = true;
|
|
117346
|
-
}
|
|
117347
|
-
} else {
|
|
117348
|
-
return [target, source];
|
|
117349
|
-
}
|
|
117350
|
-
return target;
|
|
117351
|
-
}
|
|
117352
|
-
if (!target || typeof target !== "object") {
|
|
117353
|
-
return [target].concat(source);
|
|
117354
|
-
}
|
|
117355
|
-
var mergeTarget = target;
|
|
117356
|
-
if (isArray2(target) && !isArray2(source)) {
|
|
117357
|
-
mergeTarget = arrayToObject2(target, options2);
|
|
117358
|
-
}
|
|
117359
|
-
if (isArray2(target) && isArray2(source)) {
|
|
117360
|
-
source.forEach(function(item, i) {
|
|
117361
|
-
if (has.call(target, i)) {
|
|
117362
|
-
var targetItem = target[i];
|
|
117363
|
-
if (targetItem && typeof targetItem === "object" && item && typeof item === "object") {
|
|
117364
|
-
target[i] = merge3(targetItem, item, options2);
|
|
117365
|
-
} else {
|
|
117366
|
-
target.push(item);
|
|
117367
|
-
}
|
|
117368
|
-
} else {
|
|
117369
|
-
target[i] = item;
|
|
117370
|
-
}
|
|
117371
|
-
});
|
|
117372
|
-
return target;
|
|
117373
|
-
}
|
|
117374
|
-
return Object.keys(source).reduce(function(acc, key) {
|
|
117375
|
-
var value = source[key];
|
|
117376
|
-
if (has.call(acc, key)) {
|
|
117377
|
-
acc[key] = merge3(acc[key], value, options2);
|
|
117378
|
-
} else {
|
|
117379
|
-
acc[key] = value;
|
|
117380
|
-
}
|
|
117381
|
-
return acc;
|
|
117382
|
-
}, mergeTarget);
|
|
117383
|
-
};
|
|
117384
|
-
var assign2 = function assignSingleSource(target, source) {
|
|
117385
|
-
return Object.keys(source).reduce(function(acc, key) {
|
|
117386
|
-
acc[key] = source[key];
|
|
117387
|
-
return acc;
|
|
117388
|
-
}, target);
|
|
117389
|
-
};
|
|
117390
|
-
var decode = function(str, decoder, charset) {
|
|
117391
|
-
var strWithoutPlus = str.replace(/\+/g, " ");
|
|
117392
|
-
if (charset === "iso-8859-1") {
|
|
117393
|
-
return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape);
|
|
117394
|
-
}
|
|
117395
|
-
try {
|
|
117396
|
-
return decodeURIComponent(strWithoutPlus);
|
|
117397
|
-
} catch (e) {
|
|
117398
|
-
return strWithoutPlus;
|
|
117399
|
-
}
|
|
117400
|
-
};
|
|
117401
|
-
var encode3 = function encode4(str, defaultEncoder, charset) {
|
|
117402
|
-
if (str.length === 0) {
|
|
117403
|
-
return str;
|
|
117404
|
-
}
|
|
117405
|
-
var string = typeof str === "string" ? str : String(str);
|
|
117406
|
-
if (charset === "iso-8859-1") {
|
|
117407
|
-
return escape(string).replace(/%u[0-9a-f]{4}/gi, function($0) {
|
|
117408
|
-
return "%26%23" + parseInt($0.slice(2), 16) + "%3B";
|
|
117409
|
-
});
|
|
117410
|
-
}
|
|
117411
|
-
var out = "";
|
|
117412
|
-
for (var i = 0; i < string.length; ++i) {
|
|
117413
|
-
var c = string.charCodeAt(i);
|
|
117414
|
-
if (c === 45 || c === 46 || c === 95 || c === 126 || c >= 48 && c <= 57 || c >= 65 && c <= 90 || c >= 97 && c <= 122) {
|
|
117415
|
-
out += string.charAt(i);
|
|
117416
|
-
continue;
|
|
117417
|
-
}
|
|
117418
|
-
if (c < 128) {
|
|
117419
|
-
out = out + hexTable[c];
|
|
117420
|
-
continue;
|
|
117421
|
-
}
|
|
117422
|
-
if (c < 2048) {
|
|
117423
|
-
out = out + (hexTable[192 | c >> 6] + hexTable[128 | c & 63]);
|
|
117424
|
-
continue;
|
|
117425
|
-
}
|
|
117426
|
-
if (c < 55296 || c >= 57344) {
|
|
117427
|
-
out = out + (hexTable[224 | c >> 12] + hexTable[128 | c >> 6 & 63] + hexTable[128 | c & 63]);
|
|
117428
|
-
continue;
|
|
117429
|
-
}
|
|
117430
|
-
i += 1;
|
|
117431
|
-
c = 65536 + ((c & 1023) << 10 | string.charCodeAt(i) & 1023);
|
|
117432
|
-
out += hexTable[240 | c >> 18] + hexTable[128 | c >> 12 & 63] + hexTable[128 | c >> 6 & 63] + hexTable[128 | c & 63];
|
|
117433
|
-
}
|
|
117434
|
-
return out;
|
|
117435
|
-
};
|
|
117436
|
-
var compact = function compact2(value) {
|
|
117437
|
-
var queue = [{ obj: { o: value }, prop: "o" }];
|
|
117438
|
-
var refs = [];
|
|
117439
|
-
for (var i = 0; i < queue.length; ++i) {
|
|
117440
|
-
var item = queue[i];
|
|
117441
|
-
var obj = item.obj[item.prop];
|
|
117442
|
-
var keys = Object.keys(obj);
|
|
117443
|
-
for (var j = 0; j < keys.length; ++j) {
|
|
117444
|
-
var key = keys[j];
|
|
117445
|
-
var val2 = obj[key];
|
|
117446
|
-
if (typeof val2 === "object" && val2 !== null && refs.indexOf(val2) === -1) {
|
|
117447
|
-
queue.push({ obj, prop: key });
|
|
117448
|
-
refs.push(val2);
|
|
117449
|
-
}
|
|
117450
|
-
}
|
|
117451
|
-
}
|
|
117452
|
-
compactQueue(queue);
|
|
117453
|
-
return value;
|
|
117454
|
-
};
|
|
117455
|
-
var isRegExp2 = function isRegExp3(obj) {
|
|
117456
|
-
return Object.prototype.toString.call(obj) === "[object RegExp]";
|
|
117457
|
-
};
|
|
117458
|
-
var isBuffer2 = function isBuffer3(obj) {
|
|
117459
|
-
if (!obj || typeof obj !== "object") {
|
|
117460
|
-
return false;
|
|
117461
|
-
}
|
|
117462
|
-
return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));
|
|
117463
|
-
};
|
|
117464
|
-
var combine = function combine2(a, b) {
|
|
117465
|
-
return [].concat(a, b);
|
|
117466
|
-
};
|
|
117467
|
-
module2.exports = {
|
|
117468
|
-
arrayToObject: arrayToObject2,
|
|
117469
|
-
assign: assign2,
|
|
117470
|
-
combine,
|
|
117471
|
-
compact,
|
|
117472
|
-
decode,
|
|
117473
|
-
encode: encode3,
|
|
117474
|
-
isBuffer: isBuffer2,
|
|
117475
|
-
isRegExp: isRegExp2,
|
|
117476
|
-
merge: merge2
|
|
117477
|
-
};
|
|
117478
|
-
}
|
|
117479
|
-
});
|
|
117480
|
-
|
|
117481
|
-
// ../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/formats.js
|
|
117482
|
-
var require_formats2 = __commonJS({
|
|
117483
|
-
"../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/formats.js"(exports2, module2) {
|
|
117484
|
-
"use strict";
|
|
117485
|
-
var replace = String.prototype.replace;
|
|
117486
|
-
var percentTwenties = /%20/g;
|
|
117487
|
-
var util2 = require_utils16();
|
|
117488
|
-
var Format = {
|
|
117489
|
-
RFC1738: "RFC1738",
|
|
117490
|
-
RFC3986: "RFC3986"
|
|
117491
|
-
};
|
|
117492
|
-
module2.exports = util2.assign(
|
|
117493
|
-
{
|
|
117494
|
-
"default": Format.RFC3986,
|
|
117495
|
-
formatters: {
|
|
117496
|
-
RFC1738: function(value) {
|
|
117497
|
-
return replace.call(value, percentTwenties, "+");
|
|
117498
|
-
},
|
|
117499
|
-
RFC3986: function(value) {
|
|
117500
|
-
return String(value);
|
|
117501
|
-
}
|
|
117502
|
-
}
|
|
117503
|
-
},
|
|
117504
|
-
Format
|
|
117505
|
-
);
|
|
117506
|
-
}
|
|
117507
|
-
});
|
|
117508
|
-
|
|
117509
|
-
// ../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/stringify.js
|
|
117510
|
-
var require_stringify5 = __commonJS({
|
|
117511
|
-
"../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/stringify.js"(exports2, module2) {
|
|
117512
|
-
"use strict";
|
|
117513
|
-
var utils = require_utils16();
|
|
117514
|
-
var formats = require_formats2();
|
|
117515
|
-
var has = Object.prototype.hasOwnProperty;
|
|
117516
|
-
var arrayPrefixGenerators = {
|
|
117517
|
-
brackets: function brackets(prefix) {
|
|
117518
|
-
return prefix + "[]";
|
|
117519
|
-
},
|
|
117520
|
-
comma: "comma",
|
|
117521
|
-
indices: function indices(prefix, key) {
|
|
117522
|
-
return prefix + "[" + key + "]";
|
|
117523
|
-
},
|
|
117524
|
-
repeat: function repeat2(prefix) {
|
|
117525
|
-
return prefix;
|
|
117526
|
-
}
|
|
117527
|
-
};
|
|
117528
|
-
var isArray2 = Array.isArray;
|
|
117529
|
-
var split = String.prototype.split;
|
|
117530
|
-
var push = Array.prototype.push;
|
|
117531
|
-
var pushToArray = function(arr, valueOrArray) {
|
|
117532
|
-
push.apply(arr, isArray2(valueOrArray) ? valueOrArray : [valueOrArray]);
|
|
117533
|
-
};
|
|
117534
|
-
var toISO = Date.prototype.toISOString;
|
|
117535
|
-
var defaultFormat = formats["default"];
|
|
117536
|
-
var defaults2 = {
|
|
117537
|
-
addQueryPrefix: false,
|
|
117538
|
-
allowDots: false,
|
|
117539
|
-
charset: "utf-8",
|
|
117540
|
-
charsetSentinel: false,
|
|
117541
|
-
delimiter: "&",
|
|
117542
|
-
encode: true,
|
|
117543
|
-
encoder: utils.encode,
|
|
117544
|
-
encodeValuesOnly: false,
|
|
117545
|
-
format: defaultFormat,
|
|
117546
|
-
formatter: formats.formatters[defaultFormat],
|
|
117547
|
-
// deprecated
|
|
117548
|
-
indices: false,
|
|
117549
|
-
serializeDate: function serializeDate(date) {
|
|
117550
|
-
return toISO.call(date);
|
|
117551
|
-
},
|
|
117552
|
-
skipNulls: false,
|
|
117553
|
-
strictNullHandling: false
|
|
117554
|
-
};
|
|
117555
|
-
var stringify = function stringify2(object, prefix, generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter2, sort, allowDots, serializeDate, formatter, encodeValuesOnly, charset) {
|
|
117556
|
-
var obj = object;
|
|
117557
|
-
if (typeof filter2 === "function") {
|
|
117558
|
-
obj = filter2(prefix, obj);
|
|
117559
|
-
} else if (obj instanceof Date) {
|
|
117560
|
-
obj = serializeDate(obj);
|
|
117561
|
-
} else if (generateArrayPrefix === "comma" && isArray2(obj)) {
|
|
117562
|
-
obj = obj.join(",");
|
|
117563
|
-
}
|
|
117564
|
-
if (obj === null) {
|
|
117565
|
-
if (strictNullHandling) {
|
|
117566
|
-
return encoder && !encodeValuesOnly ? encoder(prefix, defaults2.encoder, charset) : prefix;
|
|
117567
|
-
}
|
|
117568
|
-
obj = "";
|
|
117569
|
-
}
|
|
117570
|
-
if (typeof obj === "string" || typeof obj === "number" || typeof obj === "boolean" || utils.isBuffer(obj)) {
|
|
117571
|
-
if (encoder) {
|
|
117572
|
-
var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults2.encoder, charset);
|
|
117573
|
-
if (generateArrayPrefix === "comma" && encodeValuesOnly) {
|
|
117574
|
-
var valuesArray = split.call(String(obj), ",");
|
|
117575
|
-
var valuesJoined = "";
|
|
117576
|
-
for (var i = 0; i < valuesArray.length; ++i) {
|
|
117577
|
-
valuesJoined += (i === 0 ? "" : ",") + formatter(encoder(valuesArray[i], defaults2.encoder, charset));
|
|
117578
|
-
}
|
|
117579
|
-
return [formatter(keyValue) + "=" + valuesJoined];
|
|
117580
|
-
}
|
|
117581
|
-
return [formatter(keyValue) + "=" + formatter(encoder(obj, defaults2.encoder, charset))];
|
|
117582
|
-
}
|
|
117583
|
-
return [formatter(prefix) + "=" + formatter(String(obj))];
|
|
117584
|
-
}
|
|
117585
|
-
var values = [];
|
|
117586
|
-
if (typeof obj === "undefined") {
|
|
117587
|
-
return values;
|
|
117588
|
-
}
|
|
117589
|
-
var objKeys;
|
|
117590
|
-
if (isArray2(filter2)) {
|
|
117591
|
-
objKeys = filter2;
|
|
117592
|
-
} else {
|
|
117593
|
-
var keys = Object.keys(obj);
|
|
117594
|
-
objKeys = sort ? keys.sort(sort) : keys;
|
|
117595
|
-
}
|
|
117596
|
-
for (var j = 0; j < objKeys.length; ++j) {
|
|
117597
|
-
var key = objKeys[j];
|
|
117598
|
-
var value = typeof key === "object" && typeof key.value !== "undefined" ? key.value : obj[key];
|
|
117599
|
-
if (skipNulls && obj[key] === null) {
|
|
117600
|
-
continue;
|
|
117601
|
-
}
|
|
117602
|
-
if (isArray2(obj)) {
|
|
117603
|
-
pushToArray(values, stringify2(
|
|
117604
|
-
value,
|
|
117605
|
-
typeof generateArrayPrefix === "function" ? generateArrayPrefix(prefix, key) : prefix,
|
|
117606
|
-
generateArrayPrefix,
|
|
117607
|
-
strictNullHandling,
|
|
117608
|
-
skipNulls,
|
|
117609
|
-
encoder,
|
|
117610
|
-
filter2,
|
|
117611
|
-
sort,
|
|
117612
|
-
allowDots,
|
|
117613
|
-
serializeDate,
|
|
117614
|
-
formatter,
|
|
117615
|
-
encodeValuesOnly,
|
|
117616
|
-
charset
|
|
117617
|
-
));
|
|
117618
|
-
} else {
|
|
117619
|
-
pushToArray(values, stringify2(
|
|
117620
|
-
value,
|
|
117621
|
-
prefix + (allowDots ? "." + key : "[" + key + "]"),
|
|
117622
|
-
generateArrayPrefix,
|
|
117623
|
-
strictNullHandling,
|
|
117624
|
-
skipNulls,
|
|
117625
|
-
encoder,
|
|
117626
|
-
filter2,
|
|
117627
|
-
sort,
|
|
117628
|
-
allowDots,
|
|
117629
|
-
serializeDate,
|
|
117630
|
-
formatter,
|
|
117631
|
-
encodeValuesOnly,
|
|
117632
|
-
charset
|
|
117633
|
-
));
|
|
117634
|
-
}
|
|
117635
|
-
}
|
|
117636
|
-
return values;
|
|
117637
|
-
};
|
|
117638
|
-
var normalizeStringifyOptions = function normalizeStringifyOptions2(opts) {
|
|
117639
|
-
if (!opts) {
|
|
117640
|
-
return defaults2;
|
|
117641
|
-
}
|
|
117642
|
-
if (opts.encoder !== null && typeof opts.encoder !== "undefined" && typeof opts.encoder !== "function") {
|
|
117643
|
-
throw new TypeError("Encoder has to be a function.");
|
|
117644
|
-
}
|
|
117645
|
-
var charset = opts.charset || defaults2.charset;
|
|
117646
|
-
if (typeof opts.charset !== "undefined" && opts.charset !== "utf-8" && opts.charset !== "iso-8859-1") {
|
|
117647
|
-
throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
|
|
117648
|
-
}
|
|
117649
|
-
var format4 = formats["default"];
|
|
117650
|
-
if (typeof opts.format !== "undefined") {
|
|
117651
|
-
if (!has.call(formats.formatters, opts.format)) {
|
|
117652
|
-
throw new TypeError("Unknown format option provided.");
|
|
117653
|
-
}
|
|
117654
|
-
format4 = opts.format;
|
|
117655
|
-
}
|
|
117656
|
-
var formatter = formats.formatters[format4];
|
|
117657
|
-
var filter2 = defaults2.filter;
|
|
117658
|
-
if (typeof opts.filter === "function" || isArray2(opts.filter)) {
|
|
117659
|
-
filter2 = opts.filter;
|
|
117660
|
-
}
|
|
117661
|
-
return {
|
|
117662
|
-
addQueryPrefix: typeof opts.addQueryPrefix === "boolean" ? opts.addQueryPrefix : defaults2.addQueryPrefix,
|
|
117663
|
-
allowDots: typeof opts.allowDots === "undefined" ? defaults2.allowDots : !!opts.allowDots,
|
|
117664
|
-
charset,
|
|
117665
|
-
charsetSentinel: typeof opts.charsetSentinel === "boolean" ? opts.charsetSentinel : defaults2.charsetSentinel,
|
|
117666
|
-
delimiter: typeof opts.delimiter === "undefined" ? defaults2.delimiter : opts.delimiter,
|
|
117667
|
-
encode: typeof opts.encode === "boolean" ? opts.encode : defaults2.encode,
|
|
117668
|
-
encoder: typeof opts.encoder === "function" ? opts.encoder : defaults2.encoder,
|
|
117669
|
-
encodeValuesOnly: typeof opts.encodeValuesOnly === "boolean" ? opts.encodeValuesOnly : defaults2.encodeValuesOnly,
|
|
117670
|
-
filter: filter2,
|
|
117671
|
-
formatter,
|
|
117672
|
-
serializeDate: typeof opts.serializeDate === "function" ? opts.serializeDate : defaults2.serializeDate,
|
|
117673
|
-
skipNulls: typeof opts.skipNulls === "boolean" ? opts.skipNulls : defaults2.skipNulls,
|
|
117674
|
-
sort: typeof opts.sort === "function" ? opts.sort : null,
|
|
117675
|
-
strictNullHandling: typeof opts.strictNullHandling === "boolean" ? opts.strictNullHandling : defaults2.strictNullHandling
|
|
117676
|
-
};
|
|
117677
|
-
};
|
|
117678
|
-
module2.exports = function(object, opts) {
|
|
117679
|
-
var obj = object;
|
|
117680
|
-
var options2 = normalizeStringifyOptions(opts);
|
|
117681
|
-
var objKeys;
|
|
117682
|
-
var filter2;
|
|
117683
|
-
if (typeof options2.filter === "function") {
|
|
117684
|
-
filter2 = options2.filter;
|
|
117685
|
-
obj = filter2("", obj);
|
|
117686
|
-
} else if (isArray2(options2.filter)) {
|
|
117687
|
-
filter2 = options2.filter;
|
|
117688
|
-
objKeys = filter2;
|
|
117689
|
-
}
|
|
117690
|
-
var keys = [];
|
|
117691
|
-
if (typeof obj !== "object" || obj === null) {
|
|
117692
|
-
return "";
|
|
117693
|
-
}
|
|
117694
|
-
var arrayFormat;
|
|
117695
|
-
if (opts && opts.arrayFormat in arrayPrefixGenerators) {
|
|
117696
|
-
arrayFormat = opts.arrayFormat;
|
|
117697
|
-
} else if (opts && "indices" in opts) {
|
|
117698
|
-
arrayFormat = opts.indices ? "indices" : "repeat";
|
|
117699
|
-
} else {
|
|
117700
|
-
arrayFormat = "indices";
|
|
117701
|
-
}
|
|
117702
|
-
var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];
|
|
117703
|
-
if (!objKeys) {
|
|
117704
|
-
objKeys = Object.keys(obj);
|
|
117705
|
-
}
|
|
117706
|
-
if (options2.sort) {
|
|
117707
|
-
objKeys.sort(options2.sort);
|
|
117708
|
-
}
|
|
117709
|
-
for (var i = 0; i < objKeys.length; ++i) {
|
|
117710
|
-
var key = objKeys[i];
|
|
117711
|
-
if (options2.skipNulls && obj[key] === null) {
|
|
117712
|
-
continue;
|
|
117713
|
-
}
|
|
117714
|
-
pushToArray(keys, stringify(
|
|
117715
|
-
obj[key],
|
|
117716
|
-
key,
|
|
117717
|
-
generateArrayPrefix,
|
|
117718
|
-
options2.strictNullHandling,
|
|
117719
|
-
options2.skipNulls,
|
|
117720
|
-
options2.encode ? options2.encoder : null,
|
|
117721
|
-
options2.filter,
|
|
117722
|
-
options2.sort,
|
|
117723
|
-
options2.allowDots,
|
|
117724
|
-
options2.serializeDate,
|
|
117725
|
-
options2.formatter,
|
|
117726
|
-
options2.encodeValuesOnly,
|
|
117727
|
-
options2.charset
|
|
117728
|
-
));
|
|
117729
|
-
}
|
|
117730
|
-
var joined = keys.join(options2.delimiter);
|
|
117731
|
-
var prefix = options2.addQueryPrefix === true ? "?" : "";
|
|
117732
|
-
if (options2.charsetSentinel) {
|
|
117733
|
-
if (options2.charset === "iso-8859-1") {
|
|
117734
|
-
prefix += "utf8=%26%2310003%3B&";
|
|
117735
|
-
} else {
|
|
117736
|
-
prefix += "utf8=%E2%9C%93&";
|
|
117737
|
-
}
|
|
117738
|
-
}
|
|
117739
|
-
return joined.length > 0 ? prefix + joined : "";
|
|
117740
|
-
};
|
|
117741
|
-
}
|
|
117742
|
-
});
|
|
117743
|
-
|
|
117744
|
-
// ../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/parse.js
|
|
117745
|
-
var require_parse6 = __commonJS({
|
|
117746
|
-
"../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/parse.js"(exports2, module2) {
|
|
117747
|
-
"use strict";
|
|
117748
|
-
var utils = require_utils16();
|
|
117749
|
-
var has = Object.prototype.hasOwnProperty;
|
|
117750
|
-
var isArray2 = Array.isArray;
|
|
117751
|
-
var defaults2 = {
|
|
117752
|
-
allowDots: false,
|
|
117753
|
-
allowPrototypes: false,
|
|
117754
|
-
arrayLimit: 20,
|
|
117755
|
-
charset: "utf-8",
|
|
117756
|
-
charsetSentinel: false,
|
|
117757
|
-
comma: false,
|
|
117758
|
-
decoder: utils.decode,
|
|
117759
|
-
delimiter: "&",
|
|
117760
|
-
depth: 5,
|
|
117761
|
-
ignoreQueryPrefix: false,
|
|
117762
|
-
interpretNumericEntities: false,
|
|
117763
|
-
parameterLimit: 1e3,
|
|
117764
|
-
parseArrays: true,
|
|
117765
|
-
plainObjects: false,
|
|
117766
|
-
strictNullHandling: false
|
|
117767
|
-
};
|
|
117768
|
-
var interpretNumericEntities = function(str) {
|
|
117769
|
-
return str.replace(/&#(\d+);/g, function($0, numberStr) {
|
|
117770
|
-
return String.fromCharCode(parseInt(numberStr, 10));
|
|
117771
|
-
});
|
|
117772
|
-
};
|
|
117773
|
-
var parseArrayValue = function(val2, options2) {
|
|
117774
|
-
if (val2 && typeof val2 === "string" && options2.comma && val2.indexOf(",") > -1) {
|
|
117775
|
-
return val2.split(",");
|
|
117776
|
-
}
|
|
117777
|
-
return val2;
|
|
117778
|
-
};
|
|
117779
|
-
var maybeMap = function maybeMap2(val2, fn2) {
|
|
117780
|
-
if (isArray2(val2)) {
|
|
117781
|
-
var mapped = [];
|
|
117782
|
-
for (var i = 0; i < val2.length; i += 1) {
|
|
117783
|
-
mapped.push(fn2(val2[i]));
|
|
117784
|
-
}
|
|
117785
|
-
return mapped;
|
|
117786
|
-
}
|
|
117787
|
-
return fn2(val2);
|
|
117788
|
-
};
|
|
117789
|
-
var isoSentinel = "utf8=%26%2310003%3B";
|
|
117790
|
-
var charsetSentinel = "utf8=%E2%9C%93";
|
|
117791
|
-
var parseValues = function parseQueryStringValues(str, options2) {
|
|
117792
|
-
var obj = {};
|
|
117793
|
-
var cleanStr = options2.ignoreQueryPrefix ? str.replace(/^\?/, "") : str;
|
|
117794
|
-
var limit = options2.parameterLimit === Infinity ? void 0 : options2.parameterLimit;
|
|
117795
|
-
var parts = cleanStr.split(options2.delimiter, limit);
|
|
117796
|
-
var skipIndex = -1;
|
|
117797
|
-
var i;
|
|
117798
|
-
var charset = options2.charset;
|
|
117799
|
-
if (options2.charsetSentinel) {
|
|
117800
|
-
for (i = 0; i < parts.length; ++i) {
|
|
117801
|
-
if (parts[i].indexOf("utf8=") === 0) {
|
|
117802
|
-
if (parts[i] === charsetSentinel) {
|
|
117803
|
-
charset = "utf-8";
|
|
117804
|
-
} else if (parts[i] === isoSentinel) {
|
|
117805
|
-
charset = "iso-8859-1";
|
|
117806
|
-
}
|
|
117807
|
-
skipIndex = i;
|
|
117808
|
-
i = parts.length;
|
|
117809
|
-
}
|
|
117810
|
-
}
|
|
117811
|
-
}
|
|
117812
|
-
for (i = 0; i < parts.length; ++i) {
|
|
117813
|
-
if (i === skipIndex) {
|
|
117814
|
-
continue;
|
|
117815
|
-
}
|
|
117816
|
-
var part = parts[i];
|
|
117817
|
-
var bracketEqualsPos = part.indexOf("]=");
|
|
117818
|
-
var pos = bracketEqualsPos === -1 ? part.indexOf("=") : bracketEqualsPos + 1;
|
|
117819
|
-
var key, val2;
|
|
117820
|
-
if (pos === -1) {
|
|
117821
|
-
key = options2.decoder(part, defaults2.decoder, charset);
|
|
117822
|
-
val2 = options2.strictNullHandling ? null : "";
|
|
117823
|
-
} else {
|
|
117824
|
-
key = options2.decoder(part.slice(0, pos), defaults2.decoder, charset);
|
|
117825
|
-
val2 = maybeMap(
|
|
117826
|
-
parseArrayValue(part.slice(pos + 1), options2),
|
|
117827
|
-
function(encodedVal) {
|
|
117828
|
-
return options2.decoder(encodedVal, defaults2.decoder, charset);
|
|
117829
|
-
}
|
|
117830
|
-
);
|
|
117831
|
-
}
|
|
117832
|
-
if (val2 && options2.interpretNumericEntities && charset === "iso-8859-1") {
|
|
117833
|
-
val2 = interpretNumericEntities(val2);
|
|
117834
|
-
}
|
|
117835
|
-
if (part.indexOf("[]=") > -1) {
|
|
117836
|
-
val2 = isArray2(val2) ? [val2] : val2;
|
|
117837
|
-
}
|
|
117838
|
-
if (has.call(obj, key)) {
|
|
117839
|
-
obj[key] = utils.combine(obj[key], val2);
|
|
117840
|
-
} else {
|
|
117841
|
-
obj[key] = val2;
|
|
117842
|
-
}
|
|
117843
|
-
}
|
|
117844
|
-
return obj;
|
|
117845
|
-
};
|
|
117846
|
-
var parseObject = function(chain, val2, options2, valuesParsed) {
|
|
117847
|
-
var leaf = valuesParsed ? val2 : parseArrayValue(val2, options2);
|
|
117848
|
-
for (var i = chain.length - 1; i >= 0; --i) {
|
|
117849
|
-
var obj;
|
|
117850
|
-
var root = chain[i];
|
|
117851
|
-
if (root === "[]" && options2.parseArrays) {
|
|
117852
|
-
obj = [].concat(leaf);
|
|
117853
|
-
} else {
|
|
117854
|
-
obj = options2.plainObjects ? /* @__PURE__ */ Object.create(null) : {};
|
|
117855
|
-
var cleanRoot = root.charAt(0) === "[" && root.charAt(root.length - 1) === "]" ? root.slice(1, -1) : root;
|
|
117856
|
-
var index = parseInt(cleanRoot, 10);
|
|
117857
|
-
if (!options2.parseArrays && cleanRoot === "") {
|
|
117858
|
-
obj = { 0: leaf };
|
|
117859
|
-
} else if (!isNaN(index) && root !== cleanRoot && String(index) === cleanRoot && index >= 0 && (options2.parseArrays && index <= options2.arrayLimit)) {
|
|
117860
|
-
obj = [];
|
|
117861
|
-
obj[index] = leaf;
|
|
117862
|
-
} else if (cleanRoot !== "__proto__") {
|
|
117863
|
-
obj[cleanRoot] = leaf;
|
|
117864
|
-
}
|
|
117865
|
-
}
|
|
117866
|
-
leaf = obj;
|
|
117867
|
-
}
|
|
117868
|
-
return leaf;
|
|
117869
|
-
};
|
|
117870
|
-
var parseKeys = function parseQueryStringKeys(givenKey, val2, options2, valuesParsed) {
|
|
117871
|
-
if (!givenKey) {
|
|
117872
|
-
return;
|
|
117873
|
-
}
|
|
117874
|
-
var key = options2.allowDots ? givenKey.replace(/\.([^.[]+)/g, "[$1]") : givenKey;
|
|
117875
|
-
var brackets = /(\[[^[\]]*])/;
|
|
117876
|
-
var child = /(\[[^[\]]*])/g;
|
|
117877
|
-
var segment = brackets.exec(key);
|
|
117878
|
-
var parent = segment ? key.slice(0, segment.index) : key;
|
|
117879
|
-
var keys = [];
|
|
117880
|
-
if (parent) {
|
|
117881
|
-
if (!options2.plainObjects && has.call(Object.prototype, parent)) {
|
|
117882
|
-
if (!options2.allowPrototypes) {
|
|
117883
|
-
return;
|
|
117884
|
-
}
|
|
117885
|
-
}
|
|
117886
|
-
keys.push(parent);
|
|
117887
|
-
}
|
|
117888
|
-
var i = 0;
|
|
117889
|
-
while ((segment = child.exec(key)) !== null && i < options2.depth) {
|
|
117890
|
-
i += 1;
|
|
117891
|
-
if (!options2.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) {
|
|
117892
|
-
if (!options2.allowPrototypes) {
|
|
117893
|
-
return;
|
|
117894
|
-
}
|
|
117895
|
-
}
|
|
117896
|
-
keys.push(segment[1]);
|
|
117897
|
-
}
|
|
117898
|
-
if (segment) {
|
|
117899
|
-
keys.push("[" + key.slice(segment.index) + "]");
|
|
117900
|
-
}
|
|
117901
|
-
return parseObject(keys, val2, options2, valuesParsed);
|
|
117902
|
-
};
|
|
117903
|
-
var normalizeParseOptions = function normalizeParseOptions2(opts) {
|
|
117904
|
-
if (!opts) {
|
|
117905
|
-
return defaults2;
|
|
117906
|
-
}
|
|
117907
|
-
if (opts.decoder !== null && opts.decoder !== void 0 && typeof opts.decoder !== "function") {
|
|
117908
|
-
throw new TypeError("Decoder has to be a function.");
|
|
117909
|
-
}
|
|
117910
|
-
if (typeof opts.charset !== "undefined" && opts.charset !== "utf-8" && opts.charset !== "iso-8859-1") {
|
|
117911
|
-
throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
|
|
117912
|
-
}
|
|
117913
|
-
var charset = typeof opts.charset === "undefined" ? defaults2.charset : opts.charset;
|
|
117914
|
-
return {
|
|
117915
|
-
allowDots: typeof opts.allowDots === "undefined" ? defaults2.allowDots : !!opts.allowDots,
|
|
117916
|
-
allowPrototypes: typeof opts.allowPrototypes === "boolean" ? opts.allowPrototypes : defaults2.allowPrototypes,
|
|
117917
|
-
arrayLimit: typeof opts.arrayLimit === "number" ? opts.arrayLimit : defaults2.arrayLimit,
|
|
117918
|
-
charset,
|
|
117919
|
-
charsetSentinel: typeof opts.charsetSentinel === "boolean" ? opts.charsetSentinel : defaults2.charsetSentinel,
|
|
117920
|
-
comma: typeof opts.comma === "boolean" ? opts.comma : defaults2.comma,
|
|
117921
|
-
decoder: typeof opts.decoder === "function" ? opts.decoder : defaults2.decoder,
|
|
117922
|
-
delimiter: typeof opts.delimiter === "string" || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults2.delimiter,
|
|
117923
|
-
depth: typeof opts.depth === "number" ? opts.depth : defaults2.depth,
|
|
117924
|
-
ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
|
|
117925
|
-
interpretNumericEntities: typeof opts.interpretNumericEntities === "boolean" ? opts.interpretNumericEntities : defaults2.interpretNumericEntities,
|
|
117926
|
-
parameterLimit: typeof opts.parameterLimit === "number" ? opts.parameterLimit : defaults2.parameterLimit,
|
|
117927
|
-
parseArrays: opts.parseArrays !== false,
|
|
117928
|
-
plainObjects: typeof opts.plainObjects === "boolean" ? opts.plainObjects : defaults2.plainObjects,
|
|
117929
|
-
strictNullHandling: typeof opts.strictNullHandling === "boolean" ? opts.strictNullHandling : defaults2.strictNullHandling
|
|
117930
|
-
};
|
|
117931
|
-
};
|
|
117932
|
-
module2.exports = function(str, opts) {
|
|
117933
|
-
var options2 = normalizeParseOptions(opts);
|
|
117934
|
-
if (str === "" || str === null || typeof str === "undefined") {
|
|
117935
|
-
return options2.plainObjects ? /* @__PURE__ */ Object.create(null) : {};
|
|
117936
|
-
}
|
|
117937
|
-
var tempObj = typeof str === "string" ? parseValues(str, options2) : str;
|
|
117938
|
-
var obj = options2.plainObjects ? /* @__PURE__ */ Object.create(null) : {};
|
|
117939
|
-
var keys = Object.keys(tempObj);
|
|
117940
|
-
for (var i = 0; i < keys.length; ++i) {
|
|
117941
|
-
var key = keys[i];
|
|
117942
|
-
var newObj = parseKeys(key, tempObj[key], options2, typeof str === "string");
|
|
117943
|
-
obj = utils.merge(obj, newObj, options2);
|
|
117944
|
-
}
|
|
117945
|
-
return utils.compact(obj);
|
|
117946
|
-
};
|
|
117947
|
-
}
|
|
117948
|
-
});
|
|
117949
|
-
|
|
117950
|
-
// ../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/index.js
|
|
117951
|
-
var require_lib3 = __commonJS({
|
|
117952
|
-
"../../node_modules/@sap-ux/axios-extension/node_modules/qs/lib/index.js"(exports2, module2) {
|
|
117953
|
-
"use strict";
|
|
117954
|
-
var stringify = require_stringify5();
|
|
117955
|
-
var parse4 = require_parse6();
|
|
117956
|
-
var formats = require_formats2();
|
|
117957
|
-
module2.exports = {
|
|
117958
|
-
formats,
|
|
117959
|
-
parse: parse4,
|
|
117960
|
-
stringify
|
|
117961
|
-
};
|
|
117962
|
-
}
|
|
117963
|
-
});
|
|
117964
|
-
|
|
117965
117406
|
// ../../node_modules/@sap-ux/axios-extension/dist/auth/redirect.js
|
|
117966
117407
|
var require_redirect2 = __commonJS({
|
|
117967
117408
|
"../../node_modules/@sap-ux/axios-extension/dist/auth/redirect.js"(exports2) {
|
|
@@ -118030,7 +117471,7 @@ var require_uaa = __commonJS({
|
|
|
118030
117471
|
var open = require_open2();
|
|
118031
117472
|
var axios_1 = __importDefault(require_axios3());
|
|
118032
117473
|
var http_1 = __importDefault(require("http"));
|
|
118033
|
-
var qs_1 = __importDefault(
|
|
117474
|
+
var qs_1 = __importDefault(require_lib());
|
|
118034
117475
|
var redirect_1 = require_redirect2();
|
|
118035
117476
|
var message_1 = require_message2();
|
|
118036
117477
|
var error_1 = require_error3();
|
|
@@ -128161,7 +127602,7 @@ var require_dom_parser = __commonJS({
|
|
|
128161
127602
|
});
|
|
128162
127603
|
|
|
128163
127604
|
// ../../node_modules/@xmldom/xmldom/lib/index.js
|
|
128164
|
-
var
|
|
127605
|
+
var require_lib3 = __commonJS({
|
|
128165
127606
|
"../../node_modules/@xmldom/xmldom/lib/index.js"(exports2) {
|
|
128166
127607
|
var dom = require_dom();
|
|
128167
127608
|
exports2.DOMImplementation = dom.DOMImplementation;
|
|
@@ -128239,7 +127680,7 @@ var require_transportcheck_service = __commonJS({
|
|
|
128239
127680
|
var types_1 = require_types12();
|
|
128240
127681
|
var fast_xml_parser_1 = require_fxp();
|
|
128241
127682
|
var xpath = __importStar(require_xpath());
|
|
128242
|
-
var xmldom_1 =
|
|
127683
|
+
var xmldom_1 = require_lib3();
|
|
128243
127684
|
var TransportChecksService = class _TransportChecksService extends adt_service_1.AdtService {
|
|
128244
127685
|
/**
|
|
128245
127686
|
* @see AdtService.getAdtCatagory()
|
|
@@ -134637,7 +134078,7 @@ var require_prompts2 = __commonJS({
|
|
|
134637
134078
|
});
|
|
134638
134079
|
|
|
134639
134080
|
// ../../node_modules/prompts/lib/index.js
|
|
134640
|
-
var
|
|
134081
|
+
var require_lib4 = __commonJS({
|
|
134641
134082
|
"../../node_modules/prompts/lib/index.js"(exports2, module2) {
|
|
134642
134083
|
"use strict";
|
|
134643
134084
|
var prompts = require_prompts2();
|
|
@@ -134727,7 +134168,7 @@ var require_prompts3 = __commonJS({
|
|
|
134727
134168
|
}
|
|
134728
134169
|
return false;
|
|
134729
134170
|
}
|
|
134730
|
-
module2.exports = isNodeLT("8.6.0") ? require_dist20() :
|
|
134171
|
+
module2.exports = isNodeLT("8.6.0") ? require_dist20() : require_lib4();
|
|
134731
134172
|
}
|
|
134732
134173
|
});
|
|
134733
134174
|
|