@sap/ux-ui5-tooling 1.12.1 → 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.
@@ -49,7 +49,7 @@ var require_package = __commonJS({
49
49
  "../lib/telemetry/dist/package.json"(exports2, module2) {
50
50
  module2.exports = {
51
51
  name: "@sap/ux-telemetry",
52
- version: "1.12.1",
52
+ version: "1.12.2",
53
53
  description: "SAP Fiori tools telemetry library",
54
54
  main: "dist/src/index.js",
55
55
  author: "SAP SE",
@@ -74,10 +74,10 @@ var require_package = __commonJS({
74
74
  },
75
75
  dependencies: {
76
76
  "@sap-ux/store": "0.4.0",
77
- "@sap/ux-cds": "1.12.1",
78
- "@sap/ux-common-utils": "1.12.1",
79
- "@sap/ux-feature-toggle": "1.12.1",
80
- "@sap/ux-project-access": "1.12.1",
77
+ "@sap/ux-cds": "1.12.2",
78
+ "@sap/ux-common-utils": "1.12.2",
79
+ "@sap/ux-feature-toggle": "1.12.2",
80
+ "@sap/ux-project-access": "1.12.2",
81
81
  applicationinsights: "1.4.1",
82
82
  axios: "1.6.1",
83
83
  "performance-now": "2.1.0",
@@ -21564,6 +21564,24 @@ var require_follow_redirects = __commonJS({
21564
21564
  var Writable = require("stream").Writable;
21565
21565
  var assert = require("assert");
21566
21566
  var debug = require_debug2();
21567
+ var useNativeURL = false;
21568
+ try {
21569
+ assert(new URL2());
21570
+ } catch (error3) {
21571
+ useNativeURL = error3.code === "ERR_INVALID_URL";
21572
+ }
21573
+ var preservedUrlFields = [
21574
+ "auth",
21575
+ "host",
21576
+ "hostname",
21577
+ "href",
21578
+ "path",
21579
+ "pathname",
21580
+ "port",
21581
+ "protocol",
21582
+ "query",
21583
+ "search"
21584
+ ];
21567
21585
  var events = ["abort", "aborted", "connect", "error", "socket", "timeout"];
21568
21586
  var eventHandlers = /* @__PURE__ */ Object.create(null);
21569
21587
  events.forEach(function(event) {
@@ -21571,13 +21589,19 @@ var require_follow_redirects = __commonJS({
21571
21589
  this._redirectable.emit(event, arg1, arg2, arg3);
21572
21590
  };
21573
21591
  });
21592
+ var InvalidUrlError = createErrorType(
21593
+ "ERR_INVALID_URL",
21594
+ "Invalid URL",
21595
+ TypeError
21596
+ );
21574
21597
  var RedirectionError = createErrorType(
21575
21598
  "ERR_FR_REDIRECTION_FAILURE",
21576
21599
  "Redirected request failed"
21577
21600
  );
21578
21601
  var TooManyRedirectsError = createErrorType(
21579
21602
  "ERR_FR_TOO_MANY_REDIRECTS",
21580
- "Maximum number of redirects exceeded"
21603
+ "Maximum number of redirects exceeded",
21604
+ RedirectionError
21581
21605
  );
21582
21606
  var MaxBodyLengthExceededError = createErrorType(
21583
21607
  "ERR_FR_MAX_BODY_LENGTH_EXCEEDED",
@@ -21587,6 +21611,7 @@ var require_follow_redirects = __commonJS({
21587
21611
  "ERR_STREAM_WRITE_AFTER_END",
21588
21612
  "write after end"
21589
21613
  );
21614
+ var destroy = Writable.prototype.destroy || noop3;
21590
21615
  function RedirectableRequest(options2, responseCallback) {
21591
21616
  Writable.call(this);
21592
21617
  this._sanitizeOptions(options2);
@@ -21602,23 +21627,33 @@ var require_follow_redirects = __commonJS({
21602
21627
  }
21603
21628
  var self2 = this;
21604
21629
  this._onNativeResponse = function(response) {
21605
- self2._processResponse(response);
21630
+ try {
21631
+ self2._processResponse(response);
21632
+ } catch (cause) {
21633
+ self2.emit("error", cause instanceof RedirectionError ? cause : new RedirectionError({ cause }));
21634
+ }
21606
21635
  };
21607
21636
  this._performRequest();
21608
21637
  }
21609
21638
  RedirectableRequest.prototype = Object.create(Writable.prototype);
21610
21639
  RedirectableRequest.prototype.abort = function() {
21611
- abortRequest(this._currentRequest);
21640
+ destroyRequest(this._currentRequest);
21641
+ this._currentRequest.abort();
21612
21642
  this.emit("abort");
21613
21643
  };
21644
+ RedirectableRequest.prototype.destroy = function(error3) {
21645
+ destroyRequest(this._currentRequest, error3);
21646
+ destroy.call(this, error3);
21647
+ return this;
21648
+ };
21614
21649
  RedirectableRequest.prototype.write = function(data2, encoding, callback) {
21615
21650
  if (this._ending) {
21616
21651
  throw new WriteAfterEndError();
21617
21652
  }
21618
- if (!(typeof data2 === "string" || typeof data2 === "object" && "length" in data2)) {
21653
+ if (!isString(data2) && !isBuffer(data2)) {
21619
21654
  throw new TypeError("data should be a string, Buffer or Uint8Array");
21620
21655
  }
21621
- if (typeof encoding === "function") {
21656
+ if (isFunction(encoding)) {
21622
21657
  callback = encoding;
21623
21658
  encoding = null;
21624
21659
  }
@@ -21638,10 +21673,10 @@ var require_follow_redirects = __commonJS({
21638
21673
  }
21639
21674
  };
21640
21675
  RedirectableRequest.prototype.end = function(data2, encoding, callback) {
21641
- if (typeof data2 === "function") {
21676
+ if (isFunction(data2)) {
21642
21677
  callback = data2;
21643
21678
  data2 = encoding = null;
21644
- } else if (typeof encoding === "function") {
21679
+ } else if (isFunction(encoding)) {
21645
21680
  callback = encoding;
21646
21681
  encoding = null;
21647
21682
  }
@@ -21691,6 +21726,7 @@ var require_follow_redirects = __commonJS({
21691
21726
  self2.removeListener("abort", clearTimer);
21692
21727
  self2.removeListener("error", clearTimer);
21693
21728
  self2.removeListener("response", clearTimer);
21729
+ self2.removeListener("close", clearTimer);
21694
21730
  if (callback) {
21695
21731
  self2.removeListener("timeout", callback);
21696
21732
  }
@@ -21710,6 +21746,7 @@ var require_follow_redirects = __commonJS({
21710
21746
  this.on("abort", clearTimer);
21711
21747
  this.on("error", clearTimer);
21712
21748
  this.on("response", clearTimer);
21749
+ this.on("close", clearTimer);
21713
21750
  return this;
21714
21751
  };
21715
21752
  [
@@ -21753,19 +21790,22 @@ var require_follow_redirects = __commonJS({
21753
21790
  var protocol = this._options.protocol;
21754
21791
  var nativeProtocol = this._options.nativeProtocols[protocol];
21755
21792
  if (!nativeProtocol) {
21756
- this.emit("error", new TypeError("Unsupported protocol " + protocol));
21757
- return;
21793
+ throw new TypeError("Unsupported protocol " + protocol);
21758
21794
  }
21759
21795
  if (this._options.agents) {
21760
- var scheme = protocol.substr(0, protocol.length - 1);
21796
+ var scheme = protocol.slice(0, -1);
21761
21797
  this._options.agent = this._options.agents[scheme];
21762
21798
  }
21763
21799
  var request = this._currentRequest = nativeProtocol.request(this._options, this._onNativeResponse);
21764
- this._currentUrl = url.format(this._options);
21765
21800
  request._redirectable = this;
21766
- for (var e = 0; e < events.length; e++) {
21767
- request.on(events[e], eventHandlers[events[e]]);
21801
+ for (var event of events) {
21802
+ request.on(event, eventHandlers[event]);
21768
21803
  }
21804
+ this._currentUrl = /^\//.test(this._options.path) ? url.format(this._options) : (
21805
+ // When making a request to a proxy, […]
21806
+ // a client MUST send the target URI in absolute-form […].
21807
+ this._options.path
21808
+ );
21769
21809
  if (this._isRedirect) {
21770
21810
  var i = 0;
21771
21811
  var self2 = this;
@@ -21796,61 +21836,61 @@ var require_follow_redirects = __commonJS({
21796
21836
  });
21797
21837
  }
21798
21838
  var location = response.headers.location;
21799
- if (location && this._options.followRedirects !== false && statusCode >= 300 && statusCode < 400) {
21800
- abortRequest(this._currentRequest);
21801
- response.destroy();
21802
- if (++this._redirectCount > this._options.maxRedirects) {
21803
- this.emit("error", new TooManyRedirectsError());
21804
- return;
21805
- }
21806
- if ((statusCode === 301 || statusCode === 302) && this._options.method === "POST" || // RFC7231§6.4.4: The 303 (See Other) status code indicates that
21807
- // the server is redirecting the user agent to a different resource […]
21808
- // A user agent can perform a retrieval request targeting that URI
21809
- // (a GET or HEAD request if using HTTP) […]
21810
- statusCode === 303 && !/^(?:GET|HEAD)$/.test(this._options.method)) {
21811
- this._options.method = "GET";
21812
- this._requestBodyBuffers = [];
21813
- removeMatchingHeaders(/^content-/i, this._options.headers);
21814
- }
21815
- var currentHostHeader = removeMatchingHeaders(/^host$/i, this._options.headers);
21816
- var currentUrlParts = url.parse(this._currentUrl);
21817
- var currentHost = currentHostHeader || currentUrlParts.host;
21818
- var currentUrl = /^\w+:/.test(location) ? this._currentUrl : url.format(Object.assign(currentUrlParts, { host: currentHost }));
21819
- var redirectUrl;
21820
- try {
21821
- redirectUrl = url.resolve(currentUrl, location);
21822
- } catch (cause) {
21823
- this.emit("error", new RedirectionError(cause));
21824
- return;
21825
- }
21826
- debug("redirecting to", redirectUrl);
21827
- this._isRedirect = true;
21828
- var redirectUrlParts = url.parse(redirectUrl);
21829
- Object.assign(this._options, redirectUrlParts);
21830
- if (redirectUrlParts.protocol !== currentUrlParts.protocol || !isSameOrSubdomain(redirectUrlParts.host, currentHost)) {
21831
- removeMatchingHeaders(/^(?:authorization|cookie)$/i, this._options.headers);
21832
- }
21833
- if (typeof this._options.beforeRedirect === "function") {
21834
- var responseDetails = { headers: response.headers };
21835
- try {
21836
- this._options.beforeRedirect.call(null, this._options, responseDetails);
21837
- } catch (err) {
21838
- this.emit("error", err);
21839
- return;
21840
- }
21841
- this._sanitizeOptions(this._options);
21842
- }
21843
- try {
21844
- this._performRequest();
21845
- } catch (cause) {
21846
- this.emit("error", new RedirectionError(cause));
21847
- }
21848
- } else {
21839
+ if (!location || this._options.followRedirects === false || statusCode < 300 || statusCode >= 400) {
21849
21840
  response.responseUrl = this._currentUrl;
21850
21841
  response.redirects = this._redirects;
21851
21842
  this.emit("response", response);
21852
21843
  this._requestBodyBuffers = [];
21844
+ return;
21853
21845
  }
21846
+ destroyRequest(this._currentRequest);
21847
+ response.destroy();
21848
+ if (++this._redirectCount > this._options.maxRedirects) {
21849
+ throw new TooManyRedirectsError();
21850
+ }
21851
+ var requestHeaders;
21852
+ var beforeRedirect = this._options.beforeRedirect;
21853
+ if (beforeRedirect) {
21854
+ requestHeaders = Object.assign({
21855
+ // The Host header was set by nativeProtocol.request
21856
+ Host: response.req.getHeader("host")
21857
+ }, this._options.headers);
21858
+ }
21859
+ var method = this._options.method;
21860
+ if ((statusCode === 301 || statusCode === 302) && this._options.method === "POST" || // RFC7231§6.4.4: The 303 (See Other) status code indicates that
21861
+ // the server is redirecting the user agent to a different resource […]
21862
+ // A user agent can perform a retrieval request targeting that URI
21863
+ // (a GET or HEAD request if using HTTP) […]
21864
+ statusCode === 303 && !/^(?:GET|HEAD)$/.test(this._options.method)) {
21865
+ this._options.method = "GET";
21866
+ this._requestBodyBuffers = [];
21867
+ removeMatchingHeaders(/^content-/i, this._options.headers);
21868
+ }
21869
+ var currentHostHeader = removeMatchingHeaders(/^host$/i, this._options.headers);
21870
+ var currentUrlParts = parseUrl(this._currentUrl);
21871
+ var currentHost = currentHostHeader || currentUrlParts.host;
21872
+ var currentUrl = /^\w+:/.test(location) ? this._currentUrl : url.format(Object.assign(currentUrlParts, { host: currentHost }));
21873
+ var redirectUrl = resolveUrl(location, currentUrl);
21874
+ debug("redirecting to", redirectUrl.href);
21875
+ this._isRedirect = true;
21876
+ spreadUrlObject(redirectUrl, this._options);
21877
+ if (redirectUrl.protocol !== currentUrlParts.protocol && redirectUrl.protocol !== "https:" || redirectUrl.host !== currentHost && !isSubdomain(redirectUrl.host, currentHost)) {
21878
+ removeMatchingHeaders(/^(?:authorization|cookie)$/i, this._options.headers);
21879
+ }
21880
+ if (isFunction(beforeRedirect)) {
21881
+ var responseDetails = {
21882
+ headers: response.headers,
21883
+ statusCode
21884
+ };
21885
+ var requestDetails = {
21886
+ url: currentUrl,
21887
+ method,
21888
+ headers: requestHeaders
21889
+ };
21890
+ beforeRedirect(this._options, responseDetails, requestDetails);
21891
+ this._sanitizeOptions(this._options);
21892
+ }
21893
+ this._performRequest();
21854
21894
  };
21855
21895
  function wrap(protocols) {
21856
21896
  var exports3 = {
@@ -21863,21 +21903,16 @@ var require_follow_redirects = __commonJS({
21863
21903
  var nativeProtocol = nativeProtocols[protocol] = protocols[scheme];
21864
21904
  var wrappedProtocol = exports3[scheme] = Object.create(nativeProtocol);
21865
21905
  function request(input, options2, callback) {
21866
- if (typeof input === "string") {
21867
- var urlStr = input;
21868
- try {
21869
- input = urlToOptions(new URL2(urlStr));
21870
- } catch (err) {
21871
- input = url.parse(urlStr);
21872
- }
21873
- } else if (URL2 && input instanceof URL2) {
21874
- input = urlToOptions(input);
21906
+ if (isURL(input)) {
21907
+ input = spreadUrlObject(input);
21908
+ } else if (isString(input)) {
21909
+ input = spreadUrlObject(parseUrl(input));
21875
21910
  } else {
21876
21911
  callback = options2;
21877
- options2 = input;
21912
+ options2 = validateUrl(input);
21878
21913
  input = { protocol };
21879
21914
  }
21880
- if (typeof options2 === "function") {
21915
+ if (isFunction(options2)) {
21881
21916
  callback = options2;
21882
21917
  options2 = null;
21883
21918
  }
@@ -21886,6 +21921,9 @@ var require_follow_redirects = __commonJS({
21886
21921
  maxBodyLength: exports3.maxBodyLength
21887
21922
  }, input, options2);
21888
21923
  options2.nativeProtocols = nativeProtocols;
21924
+ if (!isString(options2.host) && !isString(options2.hostname)) {
21925
+ options2.hostname = "::1";
21926
+ }
21889
21927
  assert.equal(options2.protocol, protocol, "protocol mismatch");
21890
21928
  debug("options", options2);
21891
21929
  return new RedirectableRequest(options2, callback);
@@ -21904,23 +21942,43 @@ var require_follow_redirects = __commonJS({
21904
21942
  }
21905
21943
  function noop3() {
21906
21944
  }
21907
- function urlToOptions(urlObject) {
21908
- var options2 = {
21909
- protocol: urlObject.protocol,
21910
- hostname: urlObject.hostname.startsWith("[") ? (
21911
- /* istanbul ignore next */
21912
- urlObject.hostname.slice(1, -1)
21913
- ) : urlObject.hostname,
21914
- hash: urlObject.hash,
21915
- search: urlObject.search,
21916
- pathname: urlObject.pathname,
21917
- path: urlObject.pathname + urlObject.search,
21918
- href: urlObject.href
21919
- };
21920
- if (urlObject.port !== "") {
21921
- options2.port = Number(urlObject.port);
21945
+ function parseUrl(input) {
21946
+ var parsed;
21947
+ if (useNativeURL) {
21948
+ parsed = new URL2(input);
21949
+ } else {
21950
+ parsed = validateUrl(url.parse(input));
21951
+ if (!isString(parsed.protocol)) {
21952
+ throw new InvalidUrlError({ input });
21953
+ }
21922
21954
  }
21923
- return options2;
21955
+ return parsed;
21956
+ }
21957
+ function resolveUrl(relative, base) {
21958
+ return useNativeURL ? new URL2(relative, base) : parseUrl(url.resolve(base, relative));
21959
+ }
21960
+ function validateUrl(input) {
21961
+ if (/^\[/.test(input.hostname) && !/^\[[:0-9a-f]+\]$/i.test(input.hostname)) {
21962
+ throw new InvalidUrlError({ input: input.href || input });
21963
+ }
21964
+ if (/^\[/.test(input.host) && !/^\[[:0-9a-f]+\](:\d+)?$/i.test(input.host)) {
21965
+ throw new InvalidUrlError({ input: input.href || input });
21966
+ }
21967
+ return input;
21968
+ }
21969
+ function spreadUrlObject(urlObject, target) {
21970
+ var spread = target || {};
21971
+ for (var key of preservedUrlFields) {
21972
+ spread[key] = urlObject[key];
21973
+ }
21974
+ if (spread.hostname.startsWith("[")) {
21975
+ spread.hostname = spread.hostname.slice(1, -1);
21976
+ }
21977
+ if (spread.port !== "") {
21978
+ spread.port = Number(spread.port);
21979
+ }
21980
+ spread.path = spread.search ? spread.pathname + spread.search : spread.pathname;
21981
+ return spread;
21924
21982
  }
21925
21983
  function removeMatchingHeaders(regex, headers) {
21926
21984
  var lastValue;
@@ -21932,36 +21990,50 @@ var require_follow_redirects = __commonJS({
21932
21990
  }
21933
21991
  return lastValue === null || typeof lastValue === "undefined" ? void 0 : String(lastValue).trim();
21934
21992
  }
21935
- function createErrorType(code, defaultMessage) {
21936
- function CustomError(cause) {
21993
+ function createErrorType(code, message, baseClass) {
21994
+ function CustomError(properties) {
21937
21995
  Error.captureStackTrace(this, this.constructor);
21938
- if (!cause) {
21939
- this.message = defaultMessage;
21940
- } else {
21941
- this.message = defaultMessage + ": " + cause.message;
21942
- this.cause = cause;
21943
- }
21996
+ Object.assign(this, properties || {});
21997
+ this.code = code;
21998
+ this.message = this.cause ? message + ": " + this.cause.message : message;
21944
21999
  }
21945
- CustomError.prototype = new Error();
21946
- CustomError.prototype.constructor = CustomError;
21947
- CustomError.prototype.name = "Error [" + code + "]";
21948
- CustomError.prototype.code = code;
22000
+ CustomError.prototype = new (baseClass || Error)();
22001
+ Object.defineProperties(CustomError.prototype, {
22002
+ constructor: {
22003
+ value: CustomError,
22004
+ enumerable: false
22005
+ },
22006
+ name: {
22007
+ value: "Error [" + code + "]",
22008
+ enumerable: false
22009
+ }
22010
+ });
21949
22011
  return CustomError;
21950
22012
  }
21951
- function abortRequest(request) {
21952
- for (var e = 0; e < events.length; e++) {
21953
- request.removeListener(events[e], eventHandlers[events[e]]);
22013
+ function destroyRequest(request, error3) {
22014
+ for (var event of events) {
22015
+ request.removeListener(event, eventHandlers[event]);
21954
22016
  }
21955
22017
  request.on("error", noop3);
21956
- request.abort();
22018
+ request.destroy(error3);
21957
22019
  }
21958
- function isSameOrSubdomain(subdomain, domain) {
21959
- if (subdomain === domain) {
21960
- return true;
21961
- }
21962
- const dot = subdomain.length - domain.length - 1;
22020
+ function isSubdomain(subdomain, domain) {
22021
+ assert(isString(subdomain) && isString(domain));
22022
+ var dot = subdomain.length - domain.length - 1;
21963
22023
  return dot > 0 && subdomain[dot] === "." && subdomain.endsWith(domain);
21964
22024
  }
22025
+ function isString(value) {
22026
+ return typeof value === "string" || value instanceof String;
22027
+ }
22028
+ function isFunction(value) {
22029
+ return typeof value === "function";
22030
+ }
22031
+ function isBuffer(value) {
22032
+ return typeof value === "object" && "length" in value;
22033
+ }
22034
+ function isURL(value) {
22035
+ return URL2 && value instanceof URL2;
22036
+ }
21965
22037
  module2.exports = wrap({ http, https });
21966
22038
  module2.exports.wrap = wrap;
21967
22039
  }
@@ -33865,35 +33937,35 @@ var require_common2 = __commonJS({
33865
33937
  var Ke = Object.getOwnPropertyNames;
33866
33938
  var Ye = Object.prototype.hasOwnProperty;
33867
33939
  var d = (x, p) => {
33868
- for (var o in p)
33869
- P(x, o, { get: p[o], enumerable: true });
33940
+ for (var t in p)
33941
+ P(x, t, { get: p[t], enumerable: true });
33870
33942
  };
33871
- var ze = (x, p, o, t) => {
33943
+ var Ne = (x, p, t, o) => {
33872
33944
  if (p && typeof p == "object" || typeof p == "function")
33873
33945
  for (let n of Ke(p))
33874
- !Ye.call(x, n) && n !== o && P(x, n, { get: () => p[n], enumerable: !(t = Qe(p, n)) || t.enumerable });
33946
+ !Ye.call(x, n) && n !== t && P(x, n, { get: () => p[n], enumerable: !(o = Qe(p, n)) || o.enumerable });
33875
33947
  return x;
33876
33948
  };
33877
- var Ne = (x) => ze(P({}, "__esModule", { value: true }), x);
33878
- var kt = {};
33879
- d(kt, { ALPViewType: () => j, ActionTitlePrefix: () => Ze, ActionType: () => v, ArtifactType: () => R, BindingPropertyRegexAsString: () => De, ControlType: () => I, CustomExtensionType: () => D, DATESETTINGSPATH: () => ct, DataSourceType: () => N, DefinitionName: () => B, DirName: () => w, DraftDiscardEnabledSettings: () => Q, ExportArtifacts: () => L, FIORI_FCL_ROOT_ID: () => bt, FIORI_FCL_ROOT_VIEW_NAME: () => mt, FRAGMENTNAMEPART: () => lt, FacetBase: () => _45, FacetTitlePrefix: () => $e, Features: () => ee, FileName: () => M, FioriElementsVersion: () => E, FlexChangeLayer: () => V, FlexibleColumnLayoutAggregations: () => z, FlexibleColumnLayoutType: () => O, GENERICAPPSETTINGS: () => gt2, LogSeverity: () => $, LogSeverityLabel: () => xt, MANIFESTPATH: () => tt, METADATAPATH: () => et, MacrosPropertyType: () => X, ManifestSection: () => q, OdataVersion: () => y, PAGETYPE_VIEW_EXTENSION_TEMPLATE_MAP: () => Je, PageType: () => qe, PageTypeV2: () => A, PageTypeV4: () => C, PropertyName: () => G, QUICKVARPATH: () => st, QUICKVARPATHX: () => pt, SAPUI5_FRAGMENT_CLASS: () => ut, SAPUI5_VIEW_CLASS: () => St, SchemaKeyName: () => W, SchemaTag: () => H, SchemaType: () => F, SectionType: () => h, StatePreservationMode: () => Y, TableColumnVerticalAlignment: () => K, TemplateType: () => Z, UIVOCABULARY: () => nt, UIVOCABULARYALPHADOT: () => rt, UIVOCABULARYDOT: () => it, VOCWITHCOLONS: () => at, VOCWITHSLASH: () => ot, ViewTemplateType: () => k, ViewTypes: () => J, Visualization: () => U, v2: () => T, v4: () => f });
33880
- module2.exports = Ne(kt);
33881
- var A = ((r) => (r.ObjectPage = "ObjectPage", r.ListReport = "ListReport", r.OverviewPage = "OverviewPage", r.CustomPage = "CustomPage", r.AnalyticalListPage = "AnalyticalListPage", r))(A || {});
33882
- var C = ((r) => (r.ObjectPage = "ObjectPage", r.ListReport = "ListReport", r.CustomPage = "CustomPage", r.FPMCustomPage = "FPMCustomPage", r.AnalyticalListPage = "AnalyticalListPage", r))(C || {});
33883
- var qe = { ...A, ...C };
33949
+ var ze = (x) => Ne(P({}, "__esModule", { value: true }), x);
33950
+ var _t = {};
33951
+ 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: () => _45, 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 });
33952
+ module2.exports = ze(_t);
33953
+ var C = ((r) => (r.ObjectPage = "ObjectPage", r.ListReport = "ListReport", r.OverviewPage = "OverviewPage", r.CustomPage = "CustomPage", r.AnalyticalListPage = "AnalyticalListPage", r))(C || {});
33954
+ var A = ((r) => (r.ObjectPage = "ObjectPage", r.ListReport = "ListReport", r.CustomPage = "CustomPage", r.FPMCustomPage = "FPMCustomPage", r.AnalyticalListPage = "AnalyticalListPage", r))(A || {});
33955
+ var qe = { ...C, ...A };
33884
33956
  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"]]);
33885
- var E = ((o) => (o.v2 = "v2", o.v4 = "v4", o))(E || {});
33886
- var y = ((o) => (o.v2 = "v2", o.v4 = "v4", o))(y || {});
33887
- var O = ((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))(O || {});
33888
- var V = ((o) => (o.Vendor = "VENDOR", o.Customer = "CUSTOMER_BASE", o))(V || {});
33957
+ var E = ((t) => (t.v2 = "v2", t.v4 = "v4", t))(E || {});
33958
+ var O = ((t) => (t.v2 = "v2", t.v4 = "v4", t))(O || {});
33959
+ 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 || {});
33960
+ var V = ((t) => (t.Vendor = "VENDOR", t.Customer = "CUSTOMER_BASE", t))(V || {});
33889
33961
  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 || {});
33890
- var L = ((o) => (o.flex = "flex", o.manifest = "manifest", o))(L || {});
33891
- var j = ((o) => (o.Primary = "primary", o.Secondary = "secondary", o))(j || {});
33892
- var h = ((t) => (t.Section = "Section", t.SubSection = "SubSection", t.HeaderSection = "HeaderSection", t))(h || {});
33893
- var R = ((n) => (n.Manifest = "Manifest", n.FlexChange = "FlexChange", n.Annotation = "Annotation", n.XMLProperty = "XMLProperty", n))(R || {});
33894
- var v = ((t) => (t.Annotation = "Annotation", t.Custom = "Custom", t.Standard = "Standard", t))(v || {});
33962
+ var L = ((t) => (t.flex = "flex", t.manifest = "manifest", t))(L || {});
33963
+ var j = ((t) => (t.Primary = "primary", t.Secondary = "secondary", t))(j || {});
33964
+ var R = ((o) => (o.Section = "Section", o.SubSection = "SubSection", o.HeaderSection = "HeaderSection", o))(R || {});
33965
+ var v = ((n) => (n.Manifest = "Manifest", n.FlexChange = "FlexChange", n.Annotation = "Annotation", n.XMLProperty = "XMLProperty", n))(v || {});
33966
+ var h = ((o) => (o.Annotation = "Annotation", o.Custom = "Custom", o.Standard = "Standard", o))(h || {});
33895
33967
  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 || {});
33896
- var U = ((o) => (o.LineItem = "LineItem", o.Chart = "Chart", o))(U || {});
33968
+ var U = ((t) => (t.LineItem = "LineItem", t.Chart = "Chart", t))(U || {});
33897
33969
  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 || {});
33898
33970
  var M = ((p) => (p.App = "app.json", p))(M || {});
33899
33971
  var $e = "Facet ID: ";
@@ -33905,103 +33977,102 @@ var require_common2 = __commonJS({
33905
33977
  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 || {});
33906
33978
  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 || {});
33907
33979
  var W = ((S) => (S.id = "ID", S.value = "Value", S.action = "Action", S.target = "Target", S.key = "Key", S.semanticObject = "SemanticObject", S))(W || {});
33908
- var et = "webapp/localService/metadata.xml";
33909
- var tt = "webapp/manifest.json";
33910
- var ot = "/@com.sap.vocabularies";
33911
- var at = "::@com.sap.vocabularies";
33912
- var nt = "com.sap.vocabularies.UI.v1";
33913
- var it = "com.sap.vocabularies.UI.v1.";
33914
- var rt = "@com.sap.vocabularies.UI.v1.";
33915
- var st = "/quickVariantSelection";
33916
- var pt = "/quickVariantSelectionX";
33917
- var ct = "/filterSettings/dateSettings";
33918
- var lt = ".fragment.";
33980
+ var et = "webapp/manifest.json";
33981
+ var tt = "/@com.sap.vocabularies";
33982
+ var ot = "::@com.sap.vocabularies";
33983
+ var at = "com.sap.vocabularies.UI.v1";
33984
+ var nt = "com.sap.vocabularies.UI.v1.";
33985
+ var it = "@com.sap.vocabularies.UI.v1.";
33986
+ var rt = "/quickVariantSelection";
33987
+ var st = "/quickVariantSelectionX";
33988
+ var pt = "/filterSettings/dateSettings";
33989
+ var ct = ".fragment.";
33919
33990
  var X = ((n) => (n.Control = "Control", n.Property = "Property", n.Aggregation = "Aggregation", n.Event = "Event", n))(X || {});
33920
33991
  var Q = ((p) => (p.restricted = "restricted", p))(Q || {});
33921
- var K = ((t) => (t.Top = "Top", t.Middle = "Middle", t.Bottom = "Bottom", t))(K || {});
33922
- var Y = ((o) => (o.persistence = "persistence", o.discovery = "discovery", o))(Y || {});
33923
- var z = ((t) => (t.BeginColumnPages = "beginColumnPages", t.MidColumnPages = "midColumnPages", t.EndColumnPages = "endColumnPages", t))(z || {});
33924
- var N = ((o) => (o.OData = "OData", o.ODataAnnotation = "ODataAnnotation", o))(N || {});
33992
+ var K = ((o) => (o.Top = "Top", o.Middle = "Middle", o.Bottom = "Bottom", o))(K || {});
33993
+ var Y = ((t) => (t.persistence = "persistence", t.discovery = "discovery", t))(Y || {});
33994
+ var N = ((o) => (o.BeginColumnPages = "beginColumnPages", o.MidColumnPages = "midColumnPages", o.EndColumnPages = "endColumnPages", o))(N || {});
33995
+ var z = ((t) => (t.OData = "OData", t.ODataAnnotation = "ODataAnnotation", t))(z || {});
33925
33996
  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 || {});
33926
- var gt2 = "sap.ui.generic.app/settings";
33927
- var mt = "sap.fe.templates.RootContainer.view.Fcl";
33928
- var bt = "appRootView";
33929
- var J = ((t) => (t.XML = "XML", t.HTML = "HTML", t.JSON = "JSON", t))(J || {});
33930
- var St = "sap.ui.core.mvc.View";
33931
- var ut = "sap.ui.core.Fragment";
33932
- var $ = ((t) => (t.Error = "error", t.Warning = "warning", t.Info = "info", t))($ || {});
33933
- var xt = { error: "Error", warning: "Warning", info: "Information" };
33997
+ var lt = "sap.ui.generic.app/settings";
33998
+ var gt2 = "sap.fe.templates.RootContainer.view.Fcl";
33999
+ var mt = "appRootView";
34000
+ var J = ((o) => (o.XML = "XML", o.HTML = "HTML", o.JSON = "JSON", o))(J || {});
34001
+ var bt = "sap.ui.core.mvc.View";
34002
+ var St = "sap.ui.core.Fragment";
34003
+ var $ = ((o) => (o.Error = "error", o.Warning = "warning", o.Info = "info", o))($ || {});
34004
+ var ut = { error: "Error", warning: "Warning", info: "Information" };
33934
34005
  var Z = ((S) => (S.ListReportObjectPageV2 = "ListReportObjectPageV2", S.ListReportObjectPageV4 = "ListReportObjectPageV4", S.OverviewPageV2 = "OverviewPageV2", S.AnalyticalListPageV2 = "AnalyticalListPageV2", S.AnalyticalListPageV4 = "AnalyticalListPageV4", S.FreestylePageV4 = "FreestylePageV4", S))(Z || {});
33935
34006
  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 || {});
33936
34007
  var ee = ((p) => (p.BuildingBlocks = "BuildingBlocks", p))(ee || {});
33937
- var T = {};
33938
- d(T, { CardSettingsType: () => ae, CardTemplateType: () => oe, ChartCardType: () => te, ChartType: () => Ce, ContainerLayoutType: () => ye, CreateMode: () => Ee, DateRangeType: () => ce, DefaultContentView: () => Pe, DefaultDateRangeValueType: () => le, DefaultFilterMode: () => de, ExtensionFragmentTypes: () => fe, FE_TEMPLATE_V2: () => dt, FE_TEMPLATE_V2_ALP: () => Tt, FE_TEMPLATE_V2_LIST_REPORT: () => Ct, FE_TEMPLATE_V2_OBJECT_PAGE: () => At, FilterPathType: () => ge, IgnoredFieldsType: () => xe, LinkListFlavorType: () => pe, ListFlavorType: () => ie, ListTypeType: () => re, LoadDataOnAppLaunchSettings: () => Ae, MeasureAggregateValues: () => ne, SAPUI5_CONTROLLER_EXTENSION: () => Et, SAPUI5_VIEW_EXTENSION: () => ft, SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE: () => Vt, SAPUI5_VIEW_EXTENSION_LIST_REPORT: () => Ot, SAPUI5_VIEW_EXTENSION_OBJECT_PAGE: () => yt, SectionPosition: () => Te, SortOrderType: () => se, Strategy: () => ue, TableColumnExtensionTypeV2: () => Se, TableTypeV2: () => be, cardTemplateTypeMap: () => Pt, customColumnViewTypes: () => me });
33939
- var te = ((t) => (t.cardBubble = "cardBubble", t.cardchartsline = "cardchartsline", t.cardchartsdonut = "cardchartsdonut", t))(te || {});
34008
+ var f = {};
34009
+ 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 });
34010
+ var te = ((o) => (o.cardBubble = "cardBubble", o.cardchartsline = "cardchartsline", o.cardchartsdonut = "cardchartsdonut", o))(te || {});
33940
34011
  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 || {});
33941
- var Pt = { "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" };
34012
+ 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" };
33942
34013
  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 || {});
33943
34014
  var ne = ((r) => (r.average = "average", r.max = "max", r.min = "min", r.sum = "sum", r.count = "$count", r))(ne || {});
33944
- var ie = ((t) => (t.standard = "standard", t.bar = "bar", t.carousel = "carousel", t))(ie || {});
33945
- var re = ((o) => (o.extended = "extended", o.condensed = "condensed", o))(re || {});
33946
- var se = ((o) => (o.ascending = "ascending", o.descending = "descending", o))(se || {});
33947
- var pe = ((o) => (o.standard = "standard", o.carousel = "carousel", o))(pe || {});
34015
+ var ie = ((o) => (o.standard = "standard", o.bar = "bar", o.carousel = "carousel", o))(ie || {});
34016
+ var re = ((t) => (t.extended = "extended", t.condensed = "condensed", t))(re || {});
34017
+ var se = ((t) => (t.ascending = "ascending", t.descending = "descending", t))(se || {});
34018
+ var pe = ((t) => (t.standard = "standard", t.carousel = "carousel", t))(pe || {});
33948
34019
  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 || {});
33949
34020
  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 || {});
33950
- var ge = ((o) => (o.key = "key", o.catgory = "category", o))(ge || {});
34021
+ var ge = ((t) => (t.key = "key", t.catgory = "category", t))(ge || {});
33951
34022
  var me = ((p) => (p.XML = "XML", p))(me || {});
33952
34023
  var be = ((n) => (n.ResponsiveTable = "ResponsiveTable", n.GridTable = "GridTable", n.AnalyticalTable = "AnalyticalTable", n.TreeTable = "TreeTable", n))(be || {});
33953
34024
  var Se = ((n) => (n.ResponsiveTableColumnsExtension = "ResponsiveTableColumnsExtension", n.AnalyticalTableColumnsExtension = "AnalyticalTableColumnsExtension", n.TreeTableColumnsExtension = "TreeTableColumnsExtension", n.GridTableColumnsExtension = "GridTableColumnsExtension", n))(Se || {});
33954
34025
  var ue = ((p) => (p.extension = "extension", p))(ue || {});
33955
34026
  var xe = ((p) => (p.GENERICPROPERTY = "GENERICPROPERTY", p))(xe || {});
33956
- var Pe = ((t) => (t.charttable = "charttable", t.chart = "chart", t.table = "table", t))(Pe || {});
33957
- var de = ((o) => (o.visual = "visual", o.compact = "compact", o))(de || {});
33958
- var Ae = ((t) => (t.always = "always", t.never = "never", t.ifAnyFilterExist = "ifAnyFilterExist", t))(Ae || {});
33959
- var Ce = ((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))(Ce || {});
33960
- var Te = ((t) => (t.AfterFacet = "AfterFacet", t.BeforeFacet = "BeforeFacet", t.ReplaceFacet = "ReplaceFacet", t))(Te || {});
33961
- var fe = ((p) => (p.XML = "XML", p))(fe || {});
33962
- var Ee = ((t) => (t.creationRows = "creationRows", t.creationRowsHiddenInEditMode = "creationRowsHiddenInEditMode", t.inline = "inline", t))(Ee || {});
33963
- var dt = "sap.suite.ui.generic.template";
33964
- var At = "sap.suite.ui.generic.template.ObjectPage";
34027
+ var Pe = ((o) => (o.charttable = "charttable", o.chart = "chart", o.table = "table", o))(Pe || {});
34028
+ var de = ((t) => (t.visual = "visual", t.compact = "compact", t))(de || {});
34029
+ var Ce = ((o) => (o.always = "always", o.never = "never", o.ifAnyFilterExist = "ifAnyFilterExist", o))(Ce || {});
34030
+ 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 || {});
34031
+ var fe = ((o) => (o.AfterFacet = "AfterFacet", o.BeforeFacet = "BeforeFacet", o.ReplaceFacet = "ReplaceFacet", o))(fe || {});
34032
+ var Te = ((p) => (p.XML = "XML", p))(Te || {});
34033
+ var Ee = ((o) => (o.creationRows = "creationRows", o.creationRowsHiddenInEditMode = "creationRowsHiddenInEditMode", o.inline = "inline", o))(Ee || {});
34034
+ var Pt = "sap.suite.ui.generic.template";
34035
+ var dt = "sap.suite.ui.generic.template.ObjectPage";
33965
34036
  var Ct = "sap.suite.ui.generic.template.ListReport";
33966
- var Tt = "sap.suite.ui.generic.template.AnalyticalListPage";
34037
+ var At = "sap.suite.ui.generic.template.AnalyticalListPage";
33967
34038
  var ft = "sap.ui.viewExtensions";
33968
- var Et = "sap.ui.controllerExtensions";
33969
- var yt = "sap.suite.ui.generic.template.ObjectPage.view.Details";
34039
+ var Tt = "sap.ui.controllerExtensions";
34040
+ var Et = "sap.suite.ui.generic.template.ObjectPage.view.Details";
33970
34041
  var Ot = "sap.suite.ui.generic.template.ListReport.view.ListReport";
33971
- var Vt = "sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage";
33972
- var ye = ((o) => (o.fixed = "fixed", o.resizable = "resizable", o))(ye || {});
33973
- var f = {};
33974
- d(f, { ActionPlacement: () => Oe, Availability: () => Ge, CustomSectionViewTypesV4: () => Me, DefaultPathType: () => je, FE_TEMPLATE_V4: () => Ft, FE_TEMPLATE_V4_ALP: () => Rt, FE_TEMPLATE_V4_CUSTOM_PAGE: () => Lt, FE_TEMPLATE_V4_LIST_REPORT: () => ht, FE_TEMPLATE_V4_OBJECT_PAGE: () => jt, FIORI_FCL_ROUTER_CLASS: () => It, FilterFieldPlacement: () => ve, HorizontalAlign: () => He, InitialLayoutType: () => Re, InitialLoadType: () => Le, LayoutType: () => he, Placement: () => Be, SAPUI5_CONTROLLER_EXTENSION: () => wt, SAPUI5_DEPENDENCY_LIB_SAP_F: () => Ut, SAPUI5_FRAGMENT_TYPE_V4: () => vt, SAPUI5_VIEW_EXTENSION_LIST_REPORT: () => _t, SAPUI5_VIEW_EXTENSION_OBJECT_PAGE: () => Mt, SectionLayoutType: () => Ue, SectionPosition: () => we, SectionPositionV4: () => ke, SelectType: () => Ie, SelectionMode: () => Ve, TableCreationModeType: () => _e, TableTypeV4: () => Fe, VariantManagementTypeListReport: () => Xe, VariantManagementTypeObjectPage: () => We });
33975
- var Oe = ((o) => (o.After = "After", o.Before = "Before", o))(Oe || {});
34042
+ var yt = "sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage";
34043
+ var Oe = ((t) => (t.fixed = "fixed", t.resizable = "resizable", t))(Oe || {});
34044
+ var T = {};
34045
+ 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 });
34046
+ var ye = ((t) => (t.After = "After", t.Before = "Before", t))(ye || {});
33976
34047
  var Ve = ((n) => (n.Multi = "Multi", n.None = "None", n.Single = "Single", n.Auto = "Auto", n))(Ve || {});
33977
- var Fe = ((t) => (t.ResponsiveTable = "ResponsiveTable", t.GridTable = "GridTable", t.AnalyticalTable = "AnalyticalTable", t))(Fe || {});
33978
- var Le = ((t) => (t.Disabled = "Disabled", t.Enabled = "Enabled", t.Auto = "Auto", t))(Le || {});
33979
- var je = ((t) => (t.Primary = "primary", t.Secondary = "secondary", t.Both = "both", t))(je || {});
33980
- var he = ((o) => (o.Compact = "Compact", o.CompactVisual = "CompactVisual", o))(he || {});
33981
- var Re = ((o) => (o.Compact = "Compact", o.Visual = "Visual", o))(Re || {});
33982
- var ve = ((o) => (o.After = "After", o.Before = "Before", o))(ve || {});
33983
- var Ie = ((o) => (o.single = "single", o.multi = "multi", o))(Ie || {});
33984
- var Ue = ((o) => (o.Tabs = "Tabs", o.Page = "Page", o))(Ue || {});
33985
- var we = ((o) => (o.After = "After", o.Before = "Before", o))(we || {});
34048
+ var Fe = ((n) => (n.ResponsiveTable = "ResponsiveTable", n.GridTable = "GridTable", n.AnalyticalTable = "AnalyticalTable", n.TreeTable = "TreeTable", n))(Fe || {});
34049
+ var Le = ((o) => (o.Disabled = "Disabled", o.Enabled = "Enabled", o.Auto = "Auto", o))(Le || {});
34050
+ var je = ((o) => (o.Primary = "primary", o.Secondary = "secondary", o.Both = "both", o))(je || {});
34051
+ var Re = ((t) => (t.Compact = "Compact", t.CompactVisual = "CompactVisual", t))(Re || {});
34052
+ var ve = ((t) => (t.Compact = "Compact", t.Visual = "Visual", t))(ve || {});
34053
+ var he = ((t) => (t.After = "After", t.Before = "Before", t))(he || {});
34054
+ var Ie = ((t) => (t.single = "single", t.multi = "multi", t))(Ie || {});
34055
+ var Ue = ((t) => (t.Tabs = "Tabs", t.Page = "Page", t))(Ue || {});
34056
+ var we = ((t) => (t.After = "After", t.Before = "Before", t))(we || {});
33986
34057
  var Me = ((p) => (p.XML = "XML", p))(Me || {});
33987
- var _e = ((t) => (t.NewPage = "NewPage", t.InlineCreationRows = "InlineCreationRows", t.Inline = "Inline", t))(_e || {});
33988
- var Ft = "sap.fe.templates";
33989
- var Lt = "sap.fe.core.fpm";
33990
- var jt = "sap.fe.templates.ObjectPage";
33991
- var ht = "sap.fe.templates.ListReport";
34058
+ var _e = ((o) => (o.NewPage = "NewPage", o.InlineCreationRows = "InlineCreationRows", o.Inline = "Inline", o))(_e || {});
34059
+ var Vt = "sap.fe.templates";
34060
+ var Ft = "sap.fe.core.fpm";
34061
+ var Lt = "sap.fe.templates.ObjectPage";
34062
+ var jt = "sap.fe.templates.ListReport";
33992
34063
  var Rt = "sap.fe.templates.AnalyticalListPage";
33993
34064
  var vt = "XMLFragment";
33994
- var ke = ((o) => (o.AfterFacet = "AfterFacet", o.BeforeFacet = "BeforeFacet", o))(ke || {});
33995
- var It = "sap.f.routing.Router";
33996
- var Ut = "sap.f";
33997
- var wt = "sap.ui.controllerExtensions";
33998
- var Mt = "sap.fe.templates.ObjectPage.ObjectPageController";
33999
- var _t = "sap.fe.templates.ListReport.ListReportController";
34000
- var Be = ((o) => (o.After = "After", o.Before = "Before", o))(Be || {});
34001
- var Ge = ((t) => (t.Default = "Default", t.Adaptation = "Adaptation", t.Hidden = "Hidden", t))(Ge || {});
34002
- var He = ((t) => (t.Begin = "Begin", t.Center = "Center", t.End = "End", t))(He || {});
34003
- var We = ((o) => (o.None = "None", o.Control = "Control", o))(We || {});
34004
- var Xe = ((t) => (t.None = "None", t.Control = "Control", t.Page = "Page", t))(Xe || {});
34065
+ var ke = ((t) => (t.AfterFacet = "AfterFacet", t.BeforeFacet = "BeforeFacet", t))(ke || {});
34066
+ var ht = "sap.f.routing.Router";
34067
+ var It = "sap.f";
34068
+ var Ut = "sap.ui.controllerExtensions";
34069
+ var wt = "sap.fe.templates.ObjectPage.ObjectPageController";
34070
+ var Mt = "sap.fe.templates.ListReport.ListReportController";
34071
+ var Be = ((t) => (t.After = "After", t.Before = "Before", t))(Be || {});
34072
+ var Ge = ((o) => (o.Default = "Default", o.Adaptation = "Adaptation", o.Hidden = "Hidden", o))(Ge || {});
34073
+ var He = ((o) => (o.Begin = "Begin", o.Center = "Center", o.End = "End", o))(He || {});
34074
+ var We = ((t) => (t.None = "None", t.Control = "Control", t))(We || {});
34075
+ var Xe = ((o) => (o.None = "None", o.Control = "Control", o.Page = "Page", o))(Xe || {});
34005
34076
  }
34006
34077
  });
34007
34078
 
@@ -34064,48 +34135,48 @@ var require_apiTypes = __commonJS({
34064
34135
  var require_v2 = __commonJS({
34065
34136
  "../../node_modules/@sap/ux-specification-types/dist/v2.js"(exports2, module2) {
34066
34137
  var p = Object.defineProperty;
34067
- var F = Object.getOwnPropertyDescriptor;
34068
- var j = Object.getOwnPropertyNames;
34069
- var W = Object.prototype.hasOwnProperty;
34138
+ var W = Object.getOwnPropertyDescriptor;
34139
+ var F = Object.getOwnPropertyNames;
34140
+ var h = Object.prototype.hasOwnProperty;
34070
34141
  var w = (c, o) => {
34071
34142
  for (var a in o)
34072
34143
  p(c, a, { get: o[a], enumerable: true });
34073
34144
  };
34074
34145
  var M = (c, o, a, n) => {
34075
34146
  if (o && typeof o == "object" || typeof o == "function")
34076
- for (let r of j(o))
34077
- !W.call(c, r) && r !== a && p(c, r, { get: () => o[r], enumerable: !(n = F(o, r)) || n.enumerable });
34147
+ for (let r of F(o))
34148
+ !h.call(c, r) && r !== a && p(c, r, { get: () => o[r], enumerable: !(n = W(o, r)) || n.enumerable });
34078
34149
  return c;
34079
34150
  };
34080
- var B = (c) => M(p({}, "__esModule", { value: true }), c);
34081
- var Z = {};
34082
- w(Z, { CardSettingsType: () => m, CardTemplateType: () => d, ChartCardType: () => b, ChartType: () => V, ContainerLayoutType: () => h, CreateMode: () => k, DateRangeType: () => u, DefaultContentView: () => y, DefaultDateRangeValueType: () => P, DefaultFilterMode: () => U, ExtensionFragmentTypes: () => N, FE_TEMPLATE_V2: () => X, FE_TEMPLATE_V2_ALP: () => K, FE_TEMPLATE_V2_LIST_REPORT: () => G, FE_TEMPLATE_V2_OBJECT_PAGE: () => H, FilterPathType: () => f, IgnoredFieldsType: () => v, LinkListFlavorType: () => A, ListFlavorType: () => T, ListTypeType: () => x, LoadDataOnAppLaunchSettings: () => I, MeasureAggregateValues: () => g, 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: () => _45, SortOrderType: () => E, Strategy: () => R, TableColumnExtensionTypeV2: () => L, TableTypeV2: () => O, cardTemplateTypeMap: () => Q, customColumnViewTypes: () => C });
34083
- module2.exports = B(Z);
34151
+ var Q = (c) => M(p({}, "__esModule", { value: true }), c);
34152
+ var D = {};
34153
+ w(D, { CardSettingsType: () => d, CardTemplateType: () => m, ChartCardType: () => b, ChartType: () => _45, 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 });
34154
+ module2.exports = Q(D);
34084
34155
  var b = ((n) => (n.cardBubble = "cardBubble", n.cardchartsline = "cardchartsline", n.cardchartsdonut = "cardchartsdonut", n))(b || {});
34085
- var d = ((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))(d || {});
34086
- var Q = { "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" };
34087
- var m = ((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))(m || {});
34088
- var g = ((S) => (S.average = "average", S.max = "max", S.min = "min", S.sum = "sum", S.count = "$count", S))(g || {});
34089
- var T = ((n) => (n.standard = "standard", n.bar = "bar", n.carousel = "carousel", n))(T || {});
34090
- var x = ((a) => (a.extended = "extended", a.condensed = "condensed", a))(x || {});
34091
- var E = ((a) => (a.ascending = "ascending", a.descending = "descending", a))(E || {});
34156
+ 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 || {});
34157
+ 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" };
34158
+ 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 || {});
34159
+ var T = ((S) => (S.average = "average", S.max = "max", S.min = "min", S.sum = "sum", S.count = "$count", S))(T || {});
34160
+ var g = ((n) => (n.standard = "standard", n.bar = "bar", n.carousel = "carousel", n))(g || {});
34161
+ var E = ((a) => (a.extended = "extended", a.condensed = "condensed", a))(E || {});
34162
+ var x = ((a) => (a.ascending = "ascending", a.descending = "descending", a))(x || {});
34092
34163
  var A = ((a) => (a.standard = "standard", a.carousel = "carousel", a))(A || {});
34093
34164
  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 || {});
34094
- var P = ((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))(P || {});
34095
- var f = ((a) => (a.key = "key", a.catgory = "category", a))(f || {});
34096
- var C = ((o) => (o.XML = "XML", o))(C || {});
34165
+ 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 || {});
34166
+ var C = ((a) => (a.key = "key", a.catgory = "category", a))(C || {});
34167
+ var P = ((o) => (o.XML = "XML", o))(P || {});
34097
34168
  var O = ((r) => (r.ResponsiveTable = "ResponsiveTable", r.GridTable = "GridTable", r.AnalyticalTable = "AnalyticalTable", r.TreeTable = "TreeTable", r))(O || {});
34098
- var L = ((r) => (r.ResponsiveTableColumnsExtension = "ResponsiveTableColumnsExtension", r.AnalyticalTableColumnsExtension = "AnalyticalTableColumnsExtension", r.TreeTableColumnsExtension = "TreeTableColumnsExtension", r.GridTableColumnsExtension = "GridTableColumnsExtension", r))(L || {});
34099
- var R = ((o) => (o.extension = "extension", o))(R || {});
34169
+ var R = ((r) => (r.ResponsiveTableColumnsExtension = "ResponsiveTableColumnsExtension", r.AnalyticalTableColumnsExtension = "AnalyticalTableColumnsExtension", r.TreeTableColumnsExtension = "TreeTableColumnsExtension", r.GridTableColumnsExtension = "GridTableColumnsExtension", r))(R || {});
34170
+ var L = ((o) => (o.extension = "extension", o))(L || {});
34100
34171
  var v = ((o) => (o.GENERICPROPERTY = "GENERICPROPERTY", o))(v || {});
34101
- var y = ((n) => (n.charttable = "charttable", n.chart = "chart", n.table = "table", n))(y || {});
34102
- var U = ((a) => (a.visual = "visual", a.compact = "compact", a))(U || {});
34103
- var I = ((n) => (n.always = "always", n.never = "never", n.ifAnyFilterExist = "ifAnyFilterExist", n))(I || {});
34104
- var V = ((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))(V || {});
34105
- var _45 = ((n) => (n.AfterFacet = "AfterFacet", n.BeforeFacet = "BeforeFacet", n.ReplaceFacet = "ReplaceFacet", n))(_45 || {});
34106
- var N = ((o) => (o.XML = "XML", o))(N || {});
34172
+ var U = ((n) => (n.charttable = "charttable", n.chart = "chart", n.table = "table", n))(U || {});
34173
+ var I = ((a) => (a.visual = "visual", a.compact = "compact", a))(I || {});
34174
+ var V = ((n) => (n.always = "always", n.never = "never", n.ifAnyFilterExist = "ifAnyFilterExist", n))(V || {});
34175
+ var _45 = ((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))(_45 || {});
34176
+ var N = ((n) => (n.AfterFacet = "AfterFacet", n.BeforeFacet = "BeforeFacet", n.ReplaceFacet = "ReplaceFacet", n))(N || {});
34177
+ var y = ((o) => (o.XML = "XML", o))(y || {});
34107
34178
  var k = ((n) => (n.creationRows = "creationRows", n.creationRowsHiddenInEditMode = "creationRowsHiddenInEditMode", n.inline = "inline", n))(k || {});
34108
- var X = "sap.suite.ui.generic.template";
34179
+ var B = "sap.suite.ui.generic.template";
34109
34180
  var H = "sap.suite.ui.generic.template.ObjectPage";
34110
34181
  var G = "sap.suite.ui.generic.template.ListReport";
34111
34182
  var K = "sap.suite.ui.generic.template.AnalyticalListPage";
@@ -34114,7 +34185,7 @@ var require_v2 = __commonJS({
34114
34185
  var q = "sap.suite.ui.generic.template.ObjectPage.view.Details";
34115
34186
  var J = "sap.suite.ui.generic.template.ListReport.view.ListReport";
34116
34187
  var $ = "sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage";
34117
- var h = ((a) => (a.fixed = "fixed", a.resizable = "resizable", a))(h || {});
34188
+ var j = ((a) => (a.fixed = "fixed", a.resizable = "resizable", a))(j || {});
34118
34189
  }
34119
34190
  });
34120
34191
 
@@ -34125,23 +34196,23 @@ var require_v4 = __commonJS({
34125
34196
  var O = Object.getOwnPropertyDescriptor;
34126
34197
  var U = Object.getOwnPropertyNames;
34127
34198
  var E = Object.prototype.hasOwnProperty;
34128
- var w = (n, o) => {
34129
- for (var e in o)
34130
- a(n, e, { get: o[e], enumerable: true });
34131
- };
34132
- var R = (n, o, e, t) => {
34133
- if (o && typeof o == "object" || typeof o == "function")
34134
- for (let i of U(o))
34135
- !E.call(n, i) && i !== e && a(n, i, { get: () => o[i], enumerable: !(t = O(o, i)) || t.enumerable });
34199
+ var w = (n, i) => {
34200
+ for (var e in i)
34201
+ a(n, e, { get: i[e], enumerable: true });
34202
+ };
34203
+ var h = (n, i, e, t) => {
34204
+ if (i && typeof i == "object" || typeof i == "function")
34205
+ for (let o of U(i))
34206
+ !E.call(n, o) && o !== e && a(n, o, { get: () => i[o], enumerable: !(t = O(i, o)) || t.enumerable });
34136
34207
  return n;
34137
34208
  };
34138
- var h = (n) => R(a({}, "__esModule", { value: true }), n);
34209
+ var R = (n) => h(a({}, "__esModule", { value: true }), n);
34139
34210
  var D = {};
34140
34211
  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: () => _45, 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 });
34141
- module2.exports = h(D);
34212
+ module2.exports = R(D);
34142
34213
  var r = ((e) => (e.After = "After", e.Before = "Before", e))(r || {});
34143
- var s = ((i) => (i.Multi = "Multi", i.None = "None", i.Single = "Single", i.Auto = "Auto", i))(s || {});
34144
- var p = ((t) => (t.ResponsiveTable = "ResponsiveTable", t.GridTable = "GridTable", t.AnalyticalTable = "AnalyticalTable", t))(p || {});
34214
+ var s = ((o) => (o.Multi = "Multi", o.None = "None", o.Single = "Single", o.Auto = "Auto", o))(s || {});
34215
+ var p = ((o) => (o.ResponsiveTable = "ResponsiveTable", o.GridTable = "GridTable", o.AnalyticalTable = "AnalyticalTable", o.TreeTable = "TreeTable", o))(p || {});
34145
34216
  var l = ((t) => (t.Disabled = "Disabled", t.Enabled = "Enabled", t.Auto = "Auto", t))(l || {});
34146
34217
  var c = ((t) => (t.Primary = "primary", t.Secondary = "secondary", t.Both = "both", t))(c || {});
34147
34218
  var g = ((e) => (e.Compact = "Compact", e.CompactVisual = "CompactVisual", e))(g || {});
@@ -34150,7 +34221,7 @@ var require_v4 = __commonJS({
34150
34221
  var b = ((e) => (e.single = "single", e.multi = "multi", e))(b || {});
34151
34222
  var f = ((e) => (e.Tabs = "Tabs", e.Page = "Page", e))(f || {});
34152
34223
  var x = ((e) => (e.After = "After", e.Before = "Before", e))(x || {});
34153
- var S = ((o) => (o.XML = "XML", o))(S || {});
34224
+ var S = ((i) => (i.XML = "XML", i))(S || {});
34154
34225
  var P = ((t) => (t.NewPage = "NewPage", t.InlineCreationRows = "InlineCreationRows", t.Inline = "Inline", t))(P || {});
34155
34226
  var j = "sap.fe.templates";
34156
34227
  var F = "sap.fe.core.fpm";
@@ -48944,7 +49015,7 @@ var require_config = __commonJS({
48944
49015
  "../lib/odata-client/dist/config.js"(exports2) {
48945
49016
  "use strict";
48946
49017
  Object.defineProperty(exports2, "__esModule", { value: true });
48947
- exports2.hasHTML5DynamicDestinationAttrib = exports2.hasFullUrlDestAttribute = exports2.hasDestinationAttrib = exports2.destinationPropertyId = exports2.DestinationAttributeProperty = exports2.DestinationProperties = exports2.AuthenticationType = exports2.ServiceName = void 0;
49018
+ exports2.hasHTML5DynamicDestinationAttrib = exports2.hasFullUrlDestAttribute = exports2.hasDestinationAttrib = exports2.DestinationProxyType = exports2.destinationPropertyId = exports2.DestinationAttributeProperty = exports2.DestinationProperties = exports2.AuthenticationType = exports2.ServiceName = void 0;
48948
49019
  var ServiceName;
48949
49020
  (function(ServiceName2) {
48950
49021
  ServiceName2["SystemInfo"] = "fiori/system/info";
@@ -48968,6 +49039,7 @@ var require_config = __commonJS({
48968
49039
  DestinationProperties2["HTML5DynamicDestination"] = "HTML5.DynamicDestination";
48969
49040
  DestinationProperties2["HTML5SetXForwardedHeaders"] = "HTML5.SetXForwardedHeaders";
48970
49041
  DestinationProperties2["TrustAll"] = "TrustAll";
49042
+ DestinationProperties2["ProxyType"] = "ProxyType";
48971
49043
  })(DestinationProperties || (exports2.DestinationProperties = DestinationProperties = {}));
48972
49044
  exports2.DestinationAttributeProperty = {
48973
49045
  ODATA_GENERIC: "odata_gen",
@@ -48977,6 +49049,12 @@ var require_config = __commonJS({
48977
49049
  ABAP_CLOUD: "abap_cloud"
48978
49050
  };
48979
49051
  exports2.destinationPropertyId = Object.keys(exports2.DestinationAttributeProperty);
49052
+ var DestinationProxyType;
49053
+ (function(DestinationProxyType2) {
49054
+ DestinationProxyType2["ON_PREMISE"] = "OnPremise";
49055
+ DestinationProxyType2["INTERNET"] = "Internet";
49056
+ DestinationProxyType2["PRIVATE_LINK"] = "PrivateLink";
49057
+ })(DestinationProxyType || (exports2.DestinationProxyType = DestinationProxyType = {}));
48980
49058
  function hasDestinationAttrib(destinationProperty, destinationAttributeProperty, destinationAttribs = {}) {
48981
49059
  var _a2;
48982
49060
  return (destinationAttribs && ((_a2 = destinationAttribs[destinationProperty]) == null ? void 0 : _a2.includes(destinationAttributeProperty))) ?? false;
@@ -49496,9 +49574,9 @@ var require_error2 = __commonJS({
49496
49574
  }
49497
49575
  });
49498
49576
 
49499
- // ../lib/odata-client/node_modules/qs/lib/utils.js
49577
+ // ../../node_modules/qs/lib/utils.js
49500
49578
  var require_utils3 = __commonJS({
49501
- "../lib/odata-client/node_modules/qs/lib/utils.js"(exports2, module2) {
49579
+ "../../node_modules/qs/lib/utils.js"(exports2, module2) {
49502
49580
  "use strict";
49503
49581
  var has = Object.prototype.hasOwnProperty;
49504
49582
  var isArray = Array.isArray;
@@ -49678,9 +49756,9 @@ var require_utils3 = __commonJS({
49678
49756
  }
49679
49757
  });
49680
49758
 
49681
- // ../lib/odata-client/node_modules/qs/lib/formats.js
49759
+ // ../../node_modules/qs/lib/formats.js
49682
49760
  var require_formats = __commonJS({
49683
- "../lib/odata-client/node_modules/qs/lib/formats.js"(exports2, module2) {
49761
+ "../../node_modules/qs/lib/formats.js"(exports2, module2) {
49684
49762
  "use strict";
49685
49763
  var replace = String.prototype.replace;
49686
49764
  var percentTwenties = /%20/g;
@@ -49706,9 +49784,9 @@ var require_formats = __commonJS({
49706
49784
  }
49707
49785
  });
49708
49786
 
49709
- // ../lib/odata-client/node_modules/qs/lib/stringify.js
49787
+ // ../../node_modules/qs/lib/stringify.js
49710
49788
  var require_stringify2 = __commonJS({
49711
- "../lib/odata-client/node_modules/qs/lib/stringify.js"(exports2, module2) {
49789
+ "../../node_modules/qs/lib/stringify.js"(exports2, module2) {
49712
49790
  "use strict";
49713
49791
  var utils = require_utils3();
49714
49792
  var formats = require_formats();
@@ -49941,9 +50019,9 @@ var require_stringify2 = __commonJS({
49941
50019
  }
49942
50020
  });
49943
50021
 
49944
- // ../lib/odata-client/node_modules/qs/lib/parse.js
50022
+ // ../../node_modules/qs/lib/parse.js
49945
50023
  var require_parse2 = __commonJS({
49946
- "../lib/odata-client/node_modules/qs/lib/parse.js"(exports2, module2) {
50024
+ "../../node_modules/qs/lib/parse.js"(exports2, module2) {
49947
50025
  "use strict";
49948
50026
  var utils = require_utils3();
49949
50027
  var has = Object.prototype.hasOwnProperty;
@@ -50147,9 +50225,9 @@ var require_parse2 = __commonJS({
50147
50225
  }
50148
50226
  });
50149
50227
 
50150
- // ../lib/odata-client/node_modules/qs/lib/index.js
50228
+ // ../../node_modules/qs/lib/index.js
50151
50229
  var require_lib = __commonJS({
50152
- "../lib/odata-client/node_modules/qs/lib/index.js"(exports2, module2) {
50230
+ "../../node_modules/qs/lib/index.js"(exports2, module2) {
50153
50231
  "use strict";
50154
50232
  var stringify = require_stringify2();
50155
50233
  var parse4 = require_parse2();
@@ -50453,7 +50531,8 @@ var require_uaaOauth = __commonJS({
50453
50531
  const response = await axios_1.default.get(url, {
50454
50532
  headers: {
50455
50533
  authorization: `bearer ${accessToken}`,
50456
- [common_1.CSRF.requestHeaderName]: common_1.CSRF.requestHeaderValue
50534
+ [common_1.CSRF.requestHeaderName]: common_1.CSRF.requestHeaderValue,
50535
+ "x-sap-security-session": "create"
50457
50536
  }
50458
50537
  });
50459
50538
  return {
@@ -65466,7 +65545,7 @@ var require_connection = __commonJS({
65466
65545
  return {
65467
65546
  auth: config.auth,
65468
65547
  cookies: new cookies_1.Cookies().setCookie(response),
65469
- xsrfToken: response.headers[common_1.CSRF.responseHeaderName]
65548
+ xsrfToken: response == null ? void 0 : response.headers[common_1.CSRF.responseHeaderName]
65470
65549
  };
65471
65550
  }
65472
65551
  function throwIfHtmlLoginForm(response) {
@@ -67786,6 +67865,7 @@ var require_utils6 = __commonJS({
67786
67865
  error3 = err;
67787
67866
  }
67788
67867
  }
67868
+ await sapSystem.endSecuritySession();
67789
67869
  return {
67790
67870
  v2Count: result2[__1.ODataVersion.v2],
67791
67871
  v4Count: result2[__1.ODataVersion.v4],
@@ -68032,6 +68112,15 @@ var require_oDataClient = __commonJS({
68032
68112
  }
68033
68113
  return response == null ? void 0 : response.data;
68034
68114
  }
68115
+ async icfLogOff() {
68116
+ const httpClient = await this.getClient();
68117
+ const logOffPath = "bc/icf/logoff";
68118
+ try {
68119
+ await httpClient.get(logOffPath);
68120
+ } catch (e) {
68121
+ console.log(`Error ending security session ${e.message}`);
68122
+ }
68123
+ }
68035
68124
  };
68036
68125
  exports2.ODataClient = ODataClient;
68037
68126
  ODataClient.hasAxiosDebugLoggerConfig = false;
@@ -68748,7 +68837,7 @@ var require_sapSystem = __commonJS({
68748
68837
  * DO NOT directly create instances of this class outside of odata-client
68749
68838
  *
68750
68839
  * Please use the functions newSapSystem, newSapSystemForServiceUrl, newSapSystemForSteampunk
68751
- * newSapSystemForDestinaton
68840
+ * newSapSystemForDestination
68752
68841
  *
68753
68842
  */
68754
68843
  constructor(name, config, credentials = {}, userDisplayName, unSaved = false, postConnectionCallbackCreator, sapSystemType = types_1.SapSystemType.BTP) {
@@ -68870,10 +68959,14 @@ var require_sapSystem = __commonJS({
68870
68959
  }
68871
68960
  return systemDisplayName + userDisplayName;
68872
68961
  }
68873
- // @todo: this class clearly needs to be refactored into classes representing OnPrem, BTP, S4HC and Destinations
68962
+ /**
68963
+ * Determine if the current Sap System has credentials saved against it
68964
+ */
68965
+ hasSavedCredentials() {
68966
+ return Object.keys(this.credentials).length !== 0;
68967
+ }
68874
68968
  isOnPremSystem() {
68875
- var _a2;
68876
- return ((_a2 = this.config) == null ? void 0 : _a2.authenticationType) === ux_store_1.AuthenticationType.Basic || Object.keys(this.credentials).length !== 0 && !(this.isScp() || this.isS4HC());
68969
+ return (0, config_1.hasDestinationAttrib)("ProxyType", "OnPremise", this.config.destinationAttributes);
68877
68970
  }
68878
68971
  isS4HC() {
68879
68972
  var _a2;
@@ -68966,6 +69059,19 @@ var require_sapSystem = __commonJS({
68966
69059
  return client;
68967
69060
  }
68968
69061
  }
69062
+ async endSecuritySession() {
69063
+ const path2 = "/sap/public/";
69064
+ const system = deepClone(this.config);
69065
+ system.service = path2;
69066
+ if (this.connection) {
69067
+ const client = new client_1.ODataClient({
69068
+ system,
69069
+ connection: this.connection,
69070
+ postConnectionCallback: this.postConnectionCallback()
69071
+ });
69072
+ await client.icfLogOff();
69073
+ }
69074
+ }
68969
69075
  setUserDisplayName(u) {
68970
69076
  this._userDisplayName = u;
68971
69077
  }
@@ -76106,6 +76212,7 @@ var require_EventName = __commonJS({
76106
76212
  EventName4["GA_LINK_CREATED"] = "GA_LINK_CREATED";
76107
76213
  EventName4["LIB_REFERENCE_ADDED"] = "LIB_REFERENCE_ADDED";
76108
76214
  EventName4["ADT_TOOLS_APP_GEN"] = "ADT_TOOLS_APP_GEN";
76215
+ EventName4["AI_GEN"] = "AI_GEN";
76109
76216
  })(EventName3 || (exports2.EventName = EventName3 = {}));
76110
76217
  }
76111
76218
  });
@@ -103631,7 +103738,7 @@ var import_yaml2 = __toESM(require_dist2());
103631
103738
  var package_default = {
103632
103739
  name: "@sap/ux-ui5-tooling",
103633
103740
  displayName: "SAP Fiori Tools \u2013 UI5 Tooling",
103634
- version: "1.12.1",
103741
+ version: "1.12.2",
103635
103742
  description: "SAP Fiori Tools \u2013 UI5 Tooling",
103636
103743
  publisher: "SAPSE",
103637
103744
  license: "SEE LICENSE IN LICENSE",
@@ -103664,7 +103771,7 @@ var package_default = {
103664
103771
  madge: "madge --warning --circular --extensions ts ./"
103665
103772
  },
103666
103773
  dependencies: {
103667
- "@sap-ux/preview-middleware": "0.11.20",
103774
+ "@sap-ux/preview-middleware": "0.11.22",
103668
103775
  "@ui5/fs": "3.0.4",
103669
103776
  debug: "4.3.4",
103670
103777
  express: "4.17.3",
@@ -103679,20 +103786,20 @@ var package_default = {
103679
103786
  "@sap-ux/adp-tooling": "0.7.2",
103680
103787
  "@sap-ux/backend-proxy-middleware": "0.7.5",
103681
103788
  "@sap-ux/btp-utils": "0.12.1",
103682
- "@sap-ux/deploy-tooling": "0.11.8",
103789
+ "@sap-ux/deploy-tooling": "0.11.10",
103683
103790
  "@sap-ux/logger": "0.4.0",
103684
103791
  "@sap-ux/project-access": "1.15.3",
103685
103792
  "@sap-ux/store": "0.4.0",
103686
103793
  "@sap-ux/ui5-config": "0.20.0",
103687
103794
  "@sap-ux/ui5-proxy-middleware": "1.3.0",
103688
- "@sap/ux-app-templates": "1.12.1",
103689
- "@sap/ux-cds": "1.12.1",
103690
- "@sap/ux-common-utils": "1.12.1",
103691
- "@sap/ux-jest-runner-puppeteer": "1.12.1",
103692
- "@sap/ux-odata-client": "1.12.1",
103693
- "@sap/ux-telemetry": "1.12.1",
103694
- "@sap/ux-ui5-info": "1.12.1",
103695
- "@sapux/project-spec": "1.12.1",
103795
+ "@sap/ux-app-templates": "1.12.2",
103796
+ "@sap/ux-cds": "1.12.2",
103797
+ "@sap/ux-common-utils": "1.12.2",
103798
+ "@sap/ux-jest-runner-puppeteer": "1.12.2",
103799
+ "@sap/ux-odata-client": "1.12.2",
103800
+ "@sap/ux-telemetry": "1.12.2",
103801
+ "@sap/ux-ui5-info": "1.12.2",
103802
+ "@sapux/project-spec": "1.12.2",
103696
103803
  "@types/expect-puppeteer": "4.4.5",
103697
103804
  "@types/jest-dev-server": "5.0.0",
103698
103805
  "@types/marked": "4.0.1",
@@ -103906,15 +104013,17 @@ async function _reportDeployTelemetry(exitCode, markName) {
103906
104013
  } catch (error3) {
103907
104014
  }
103908
104015
  const eventName = exitCode === 0 ? import_ux_telemetry2.EventName.DEPLOY : import_ux_telemetry2.EventName.DEPLOY_FAIL;
103909
- import_ux_telemetry2.ClientFactory.getTelemetryClient().report(
103910
- eventName,
104016
+ import_ux_telemetry2.ClientFactory.getTelemetryClient().reportEvent(
103911
104017
  {
103912
- target: "cf" /* CLOUD_FOUNDRY */,
103913
- exitCode: `${exitCode}`,
103914
- scp,
103915
- authType
104018
+ eventName,
104019
+ properties: {
104020
+ target: "cf" /* CLOUD_FOUNDRY */,
104021
+ exitCode: `${exitCode}`,
104022
+ scp,
104023
+ authType
104024
+ },
104025
+ measurements: { DeployTime: executionTime }
103916
104026
  },
103917
- { DeployTime: executionTime },
103918
104027
  import_ux_telemetry2.SampleRate.NoSampling,
103919
104028
  { appPath: process.cwd() }
103920
104029
  );