@sap/ux-ui5-tooling 1.13.6 → 1.14.1
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 +4 -0
- package/dist/cli/index.js +29204 -27403
- package/dist/middlewares/fiori-tools-preview.js +41335 -39559
- package/dist/middlewares/fiori-tools-proxy.js +2423 -647
- package/dist/tasks/cf-deploy/index.js +35392 -33616
- package/dist/tasks/deploy/index.js +2574 -773
- package/package.json +15 -15
|
@@ -29954,13 +29954,12 @@ var require_backend_system = __commonJS({
|
|
|
29954
29954
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
29955
29955
|
exports2.BackendSystemKey = exports2.BackendSystem = exports2.AuthenticationType = void 0;
|
|
29956
29956
|
var decorators_1 = require_decorators();
|
|
29957
|
-
|
|
29958
|
-
|
|
29959
|
-
|
|
29960
|
-
|
|
29961
|
-
|
|
29962
|
-
|
|
29963
|
-
})(AuthenticationType2 || (exports2.AuthenticationType = AuthenticationType2 = {}));
|
|
29957
|
+
exports2.AuthenticationType = {
|
|
29958
|
+
Basic: "basic",
|
|
29959
|
+
ReentranceTicket: "reentranceTicket",
|
|
29960
|
+
OAuth2RefreshToken: "oauth2",
|
|
29961
|
+
OAuth2ClientCredential: "oauth2ClientCredential"
|
|
29962
|
+
};
|
|
29964
29963
|
var BackendSystem = class {
|
|
29965
29964
|
constructor({ name: name2, url: url2, client, serviceKeys, refreshToken, username, password, userDisplayName, authenticationType }) {
|
|
29966
29965
|
this.name = name2;
|
|
@@ -31992,8 +31991,8 @@ var require_DataView = __commonJS({
|
|
|
31992
31991
|
"../../node_modules/lodash/_DataView.js"(exports2, module2) {
|
|
31993
31992
|
var getNative = require_getNative();
|
|
31994
31993
|
var root = require_root();
|
|
31995
|
-
var
|
|
31996
|
-
module2.exports =
|
|
31994
|
+
var DataView2 = getNative(root, "DataView");
|
|
31995
|
+
module2.exports = DataView2;
|
|
31997
31996
|
}
|
|
31998
31997
|
});
|
|
31999
31998
|
|
|
@@ -32030,7 +32029,7 @@ var require_WeakMap = __commonJS({
|
|
|
32030
32029
|
// ../../node_modules/lodash/_getTag.js
|
|
32031
32030
|
var require_getTag = __commonJS({
|
|
32032
32031
|
"../../node_modules/lodash/_getTag.js"(exports2, module2) {
|
|
32033
|
-
var
|
|
32032
|
+
var DataView2 = require_DataView();
|
|
32034
32033
|
var Map2 = require_Map();
|
|
32035
32034
|
var Promise2 = require_Promise();
|
|
32036
32035
|
var Set2 = require_Set();
|
|
@@ -32043,13 +32042,13 @@ var require_getTag = __commonJS({
|
|
|
32043
32042
|
var setTag = "[object Set]";
|
|
32044
32043
|
var weakMapTag = "[object WeakMap]";
|
|
32045
32044
|
var dataViewTag = "[object DataView]";
|
|
32046
|
-
var dataViewCtorString = toSource(
|
|
32045
|
+
var dataViewCtorString = toSource(DataView2);
|
|
32047
32046
|
var mapCtorString = toSource(Map2);
|
|
32048
32047
|
var promiseCtorString = toSource(Promise2);
|
|
32049
32048
|
var setCtorString = toSource(Set2);
|
|
32050
32049
|
var weakMapCtorString = toSource(WeakMap2);
|
|
32051
32050
|
var getTag = baseGetTag2;
|
|
32052
|
-
if (
|
|
32051
|
+
if (DataView2 && getTag(new DataView2(new ArrayBuffer(1))) != dataViewTag || Map2 && getTag(new Map2()) != mapTag || Promise2 && getTag(Promise2.resolve()) != promiseTag || Set2 && getTag(new Set2()) != setTag || WeakMap2 && getTag(new WeakMap2()) != weakMapTag) {
|
|
32053
32052
|
getTag = function(value) {
|
|
32054
32053
|
var result2 = baseGetTag2(value), Ctor = result2 == objectTag2 ? value.constructor : void 0, ctorString = Ctor ? toSource(Ctor) : "";
|
|
32055
32054
|
if (ctorString) {
|
|
@@ -69164,10 +69163,10 @@ var require_lodash = __commonJS({
|
|
|
69164
69163
|
}();
|
|
69165
69164
|
var ctxClearTimeout = context2.clearTimeout !== root.clearTimeout && context2.clearTimeout, ctxNow = Date2 && Date2.now !== root.Date.now && Date2.now, ctxSetTimeout = context2.setTimeout !== root.setTimeout && context2.setTimeout;
|
|
69166
69165
|
var nativeCeil = Math2.ceil, nativeFloor = Math2.floor, nativeGetSymbols = Object2.getOwnPropertySymbols, nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : undefined2, nativeIsFinite = context2.isFinite, nativeJoin = arrayProto.join, nativeKeys = overArg2(Object2.keys, Object2), nativeMax = Math2.max, nativeMin = Math2.min, nativeNow = Date2.now, nativeParseInt = context2.parseInt, nativeRandom = Math2.random, nativeReverse = arrayProto.reverse;
|
|
69167
|
-
var
|
|
69166
|
+
var DataView2 = getNative(context2, "DataView"), Map2 = getNative(context2, "Map"), Promise2 = getNative(context2, "Promise"), Set2 = getNative(context2, "Set"), WeakMap2 = getNative(context2, "WeakMap"), nativeCreate = getNative(Object2, "create");
|
|
69168
69167
|
var metaMap = WeakMap2 && new WeakMap2();
|
|
69169
69168
|
var realNames = {};
|
|
69170
|
-
var dataViewCtorString = toSource(
|
|
69169
|
+
var dataViewCtorString = toSource(DataView2), mapCtorString = toSource(Map2), promiseCtorString = toSource(Promise2), setCtorString = toSource(Set2), weakMapCtorString = toSource(WeakMap2);
|
|
69171
69170
|
var symbolProto = Symbol2 ? Symbol2.prototype : undefined2, symbolValueOf = symbolProto ? symbolProto.valueOf : undefined2, symbolToString = symbolProto ? symbolProto.toString : undefined2;
|
|
69172
69171
|
function lodash(value) {
|
|
69173
69172
|
if (isObjectLike2(value) && !isArray3(value) && !(value instanceof LazyWrapper)) {
|
|
@@ -71221,7 +71220,7 @@ var require_lodash = __commonJS({
|
|
|
71221
71220
|
return result3;
|
|
71222
71221
|
};
|
|
71223
71222
|
var getTag = baseGetTag2;
|
|
71224
|
-
if (
|
|
71223
|
+
if (DataView2 && getTag(new DataView2(new ArrayBuffer(1))) != dataViewTag || Map2 && getTag(new Map2()) != mapTag || Promise2 && getTag(Promise2.resolve()) != promiseTag || Set2 && getTag(new Set2()) != setTag || WeakMap2 && getTag(new WeakMap2()) != weakMapTag) {
|
|
71225
71224
|
getTag = function(value) {
|
|
71226
71225
|
var result3 = baseGetTag2(value), Ctor = result3 == objectTag2 ? value.constructor : undefined2, ctorString = Ctor ? toSource(Ctor) : "";
|
|
71227
71226
|
if (ctorString) {
|
|
@@ -75734,10 +75733,1293 @@ var require_error3 = __commonJS({
|
|
|
75734
75733
|
}
|
|
75735
75734
|
});
|
|
75736
75735
|
|
|
75737
|
-
//
|
|
75736
|
+
// ../../node_modules/has-symbols/shams.js
|
|
75737
|
+
var require_shams = __commonJS({
|
|
75738
|
+
"../../node_modules/has-symbols/shams.js"(exports2, module2) {
|
|
75739
|
+
"use strict";
|
|
75740
|
+
module2.exports = function hasSymbols() {
|
|
75741
|
+
if (typeof Symbol !== "function" || typeof Object.getOwnPropertySymbols !== "function") {
|
|
75742
|
+
return false;
|
|
75743
|
+
}
|
|
75744
|
+
if (typeof Symbol.iterator === "symbol") {
|
|
75745
|
+
return true;
|
|
75746
|
+
}
|
|
75747
|
+
var obj = {};
|
|
75748
|
+
var sym = Symbol("test");
|
|
75749
|
+
var symObj = Object(sym);
|
|
75750
|
+
if (typeof sym === "string") {
|
|
75751
|
+
return false;
|
|
75752
|
+
}
|
|
75753
|
+
if (Object.prototype.toString.call(sym) !== "[object Symbol]") {
|
|
75754
|
+
return false;
|
|
75755
|
+
}
|
|
75756
|
+
if (Object.prototype.toString.call(symObj) !== "[object Symbol]") {
|
|
75757
|
+
return false;
|
|
75758
|
+
}
|
|
75759
|
+
var symVal = 42;
|
|
75760
|
+
obj[sym] = symVal;
|
|
75761
|
+
for (sym in obj) {
|
|
75762
|
+
return false;
|
|
75763
|
+
}
|
|
75764
|
+
if (typeof Object.keys === "function" && Object.keys(obj).length !== 0) {
|
|
75765
|
+
return false;
|
|
75766
|
+
}
|
|
75767
|
+
if (typeof Object.getOwnPropertyNames === "function" && Object.getOwnPropertyNames(obj).length !== 0) {
|
|
75768
|
+
return false;
|
|
75769
|
+
}
|
|
75770
|
+
var syms = Object.getOwnPropertySymbols(obj);
|
|
75771
|
+
if (syms.length !== 1 || syms[0] !== sym) {
|
|
75772
|
+
return false;
|
|
75773
|
+
}
|
|
75774
|
+
if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) {
|
|
75775
|
+
return false;
|
|
75776
|
+
}
|
|
75777
|
+
if (typeof Object.getOwnPropertyDescriptor === "function") {
|
|
75778
|
+
var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
|
|
75779
|
+
if (descriptor.value !== symVal || descriptor.enumerable !== true) {
|
|
75780
|
+
return false;
|
|
75781
|
+
}
|
|
75782
|
+
}
|
|
75783
|
+
return true;
|
|
75784
|
+
};
|
|
75785
|
+
}
|
|
75786
|
+
});
|
|
75787
|
+
|
|
75788
|
+
// ../../node_modules/has-symbols/index.js
|
|
75789
|
+
var require_has_symbols = __commonJS({
|
|
75790
|
+
"../../node_modules/has-symbols/index.js"(exports2, module2) {
|
|
75791
|
+
"use strict";
|
|
75792
|
+
var origSymbol = global.Symbol;
|
|
75793
|
+
var hasSymbolSham = require_shams();
|
|
75794
|
+
module2.exports = function hasNativeSymbols() {
|
|
75795
|
+
if (typeof origSymbol !== "function") {
|
|
75796
|
+
return false;
|
|
75797
|
+
}
|
|
75798
|
+
if (typeof Symbol !== "function") {
|
|
75799
|
+
return false;
|
|
75800
|
+
}
|
|
75801
|
+
if (typeof origSymbol("foo") !== "symbol") {
|
|
75802
|
+
return false;
|
|
75803
|
+
}
|
|
75804
|
+
if (typeof Symbol("bar") !== "symbol") {
|
|
75805
|
+
return false;
|
|
75806
|
+
}
|
|
75807
|
+
return hasSymbolSham();
|
|
75808
|
+
};
|
|
75809
|
+
}
|
|
75810
|
+
});
|
|
75811
|
+
|
|
75812
|
+
// ../../node_modules/side-channel/node_modules/get-intrinsic/index.js
|
|
75813
|
+
var require_get_intrinsic = __commonJS({
|
|
75814
|
+
"../../node_modules/side-channel/node_modules/get-intrinsic/index.js"(exports2, module2) {
|
|
75815
|
+
"use strict";
|
|
75816
|
+
var undefined2;
|
|
75817
|
+
var $SyntaxError = SyntaxError;
|
|
75818
|
+
var $Function = Function;
|
|
75819
|
+
var $TypeError = TypeError;
|
|
75820
|
+
var getEvalledConstructor = function(expressionSyntax) {
|
|
75821
|
+
try {
|
|
75822
|
+
return $Function('"use strict"; return (' + expressionSyntax + ").constructor;")();
|
|
75823
|
+
} catch (e) {
|
|
75824
|
+
}
|
|
75825
|
+
};
|
|
75826
|
+
var $gOPD = Object.getOwnPropertyDescriptor;
|
|
75827
|
+
if ($gOPD) {
|
|
75828
|
+
try {
|
|
75829
|
+
$gOPD({}, "");
|
|
75830
|
+
} catch (e) {
|
|
75831
|
+
$gOPD = null;
|
|
75832
|
+
}
|
|
75833
|
+
}
|
|
75834
|
+
var throwTypeError = function() {
|
|
75835
|
+
throw new $TypeError();
|
|
75836
|
+
};
|
|
75837
|
+
var ThrowTypeError = $gOPD ? function() {
|
|
75838
|
+
try {
|
|
75839
|
+
arguments.callee;
|
|
75840
|
+
return throwTypeError;
|
|
75841
|
+
} catch (calleeThrows) {
|
|
75842
|
+
try {
|
|
75843
|
+
return $gOPD(arguments, "callee").get;
|
|
75844
|
+
} catch (gOPDthrows) {
|
|
75845
|
+
return throwTypeError;
|
|
75846
|
+
}
|
|
75847
|
+
}
|
|
75848
|
+
}() : throwTypeError;
|
|
75849
|
+
var hasSymbols = require_has_symbols()();
|
|
75850
|
+
var getProto = Object.getPrototypeOf || function(x) {
|
|
75851
|
+
return x.__proto__;
|
|
75852
|
+
};
|
|
75853
|
+
var needsEval = {};
|
|
75854
|
+
var TypedArray = typeof Uint8Array === "undefined" ? undefined2 : getProto(Uint8Array);
|
|
75855
|
+
var INTRINSICS = {
|
|
75856
|
+
"%AggregateError%": typeof AggregateError === "undefined" ? undefined2 : AggregateError,
|
|
75857
|
+
"%Array%": Array,
|
|
75858
|
+
"%ArrayBuffer%": typeof ArrayBuffer === "undefined" ? undefined2 : ArrayBuffer,
|
|
75859
|
+
"%ArrayIteratorPrototype%": hasSymbols ? getProto([][Symbol.iterator]()) : undefined2,
|
|
75860
|
+
"%AsyncFromSyncIteratorPrototype%": undefined2,
|
|
75861
|
+
"%AsyncFunction%": needsEval,
|
|
75862
|
+
"%AsyncGenerator%": needsEval,
|
|
75863
|
+
"%AsyncGeneratorFunction%": needsEval,
|
|
75864
|
+
"%AsyncIteratorPrototype%": needsEval,
|
|
75865
|
+
"%Atomics%": typeof Atomics === "undefined" ? undefined2 : Atomics,
|
|
75866
|
+
"%BigInt%": typeof BigInt === "undefined" ? undefined2 : BigInt,
|
|
75867
|
+
"%Boolean%": Boolean,
|
|
75868
|
+
"%DataView%": typeof DataView === "undefined" ? undefined2 : DataView,
|
|
75869
|
+
"%Date%": Date,
|
|
75870
|
+
"%decodeURI%": decodeURI,
|
|
75871
|
+
"%decodeURIComponent%": decodeURIComponent,
|
|
75872
|
+
"%encodeURI%": encodeURI,
|
|
75873
|
+
"%encodeURIComponent%": encodeURIComponent,
|
|
75874
|
+
"%Error%": Error,
|
|
75875
|
+
"%eval%": eval,
|
|
75876
|
+
// eslint-disable-line no-eval
|
|
75877
|
+
"%EvalError%": EvalError,
|
|
75878
|
+
"%Float32Array%": typeof Float32Array === "undefined" ? undefined2 : Float32Array,
|
|
75879
|
+
"%Float64Array%": typeof Float64Array === "undefined" ? undefined2 : Float64Array,
|
|
75880
|
+
"%FinalizationRegistry%": typeof FinalizationRegistry === "undefined" ? undefined2 : FinalizationRegistry,
|
|
75881
|
+
"%Function%": $Function,
|
|
75882
|
+
"%GeneratorFunction%": needsEval,
|
|
75883
|
+
"%Int8Array%": typeof Int8Array === "undefined" ? undefined2 : Int8Array,
|
|
75884
|
+
"%Int16Array%": typeof Int16Array === "undefined" ? undefined2 : Int16Array,
|
|
75885
|
+
"%Int32Array%": typeof Int32Array === "undefined" ? undefined2 : Int32Array,
|
|
75886
|
+
"%isFinite%": isFinite,
|
|
75887
|
+
"%isNaN%": isNaN,
|
|
75888
|
+
"%IteratorPrototype%": hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined2,
|
|
75889
|
+
"%JSON%": typeof JSON === "object" ? JSON : undefined2,
|
|
75890
|
+
"%Map%": typeof Map === "undefined" ? undefined2 : Map,
|
|
75891
|
+
"%MapIteratorPrototype%": typeof Map === "undefined" || !hasSymbols ? undefined2 : getProto((/* @__PURE__ */ new Map())[Symbol.iterator]()),
|
|
75892
|
+
"%Math%": Math,
|
|
75893
|
+
"%Number%": Number,
|
|
75894
|
+
"%Object%": Object,
|
|
75895
|
+
"%parseFloat%": parseFloat,
|
|
75896
|
+
"%parseInt%": parseInt,
|
|
75897
|
+
"%Promise%": typeof Promise === "undefined" ? undefined2 : Promise,
|
|
75898
|
+
"%Proxy%": typeof Proxy === "undefined" ? undefined2 : Proxy,
|
|
75899
|
+
"%RangeError%": RangeError,
|
|
75900
|
+
"%ReferenceError%": ReferenceError,
|
|
75901
|
+
"%Reflect%": typeof Reflect === "undefined" ? undefined2 : Reflect,
|
|
75902
|
+
"%RegExp%": RegExp,
|
|
75903
|
+
"%Set%": typeof Set === "undefined" ? undefined2 : Set,
|
|
75904
|
+
"%SetIteratorPrototype%": typeof Set === "undefined" || !hasSymbols ? undefined2 : getProto((/* @__PURE__ */ new Set())[Symbol.iterator]()),
|
|
75905
|
+
"%SharedArrayBuffer%": typeof SharedArrayBuffer === "undefined" ? undefined2 : SharedArrayBuffer,
|
|
75906
|
+
"%String%": String,
|
|
75907
|
+
"%StringIteratorPrototype%": hasSymbols ? getProto(""[Symbol.iterator]()) : undefined2,
|
|
75908
|
+
"%Symbol%": hasSymbols ? Symbol : undefined2,
|
|
75909
|
+
"%SyntaxError%": $SyntaxError,
|
|
75910
|
+
"%ThrowTypeError%": ThrowTypeError,
|
|
75911
|
+
"%TypedArray%": TypedArray,
|
|
75912
|
+
"%TypeError%": $TypeError,
|
|
75913
|
+
"%Uint8Array%": typeof Uint8Array === "undefined" ? undefined2 : Uint8Array,
|
|
75914
|
+
"%Uint8ClampedArray%": typeof Uint8ClampedArray === "undefined" ? undefined2 : Uint8ClampedArray,
|
|
75915
|
+
"%Uint16Array%": typeof Uint16Array === "undefined" ? undefined2 : Uint16Array,
|
|
75916
|
+
"%Uint32Array%": typeof Uint32Array === "undefined" ? undefined2 : Uint32Array,
|
|
75917
|
+
"%URIError%": URIError,
|
|
75918
|
+
"%WeakMap%": typeof WeakMap === "undefined" ? undefined2 : WeakMap,
|
|
75919
|
+
"%WeakRef%": typeof WeakRef === "undefined" ? undefined2 : WeakRef,
|
|
75920
|
+
"%WeakSet%": typeof WeakSet === "undefined" ? undefined2 : WeakSet
|
|
75921
|
+
};
|
|
75922
|
+
var doEval = function doEval2(name2) {
|
|
75923
|
+
var value;
|
|
75924
|
+
if (name2 === "%AsyncFunction%") {
|
|
75925
|
+
value = getEvalledConstructor("async function () {}");
|
|
75926
|
+
} else if (name2 === "%GeneratorFunction%") {
|
|
75927
|
+
value = getEvalledConstructor("function* () {}");
|
|
75928
|
+
} else if (name2 === "%AsyncGeneratorFunction%") {
|
|
75929
|
+
value = getEvalledConstructor("async function* () {}");
|
|
75930
|
+
} else if (name2 === "%AsyncGenerator%") {
|
|
75931
|
+
var fn2 = doEval2("%AsyncGeneratorFunction%");
|
|
75932
|
+
if (fn2) {
|
|
75933
|
+
value = fn2.prototype;
|
|
75934
|
+
}
|
|
75935
|
+
} else if (name2 === "%AsyncIteratorPrototype%") {
|
|
75936
|
+
var gen = doEval2("%AsyncGenerator%");
|
|
75937
|
+
if (gen) {
|
|
75938
|
+
value = getProto(gen.prototype);
|
|
75939
|
+
}
|
|
75940
|
+
}
|
|
75941
|
+
INTRINSICS[name2] = value;
|
|
75942
|
+
return value;
|
|
75943
|
+
};
|
|
75944
|
+
var LEGACY_ALIASES = {
|
|
75945
|
+
"%ArrayBufferPrototype%": ["ArrayBuffer", "prototype"],
|
|
75946
|
+
"%ArrayPrototype%": ["Array", "prototype"],
|
|
75947
|
+
"%ArrayProto_entries%": ["Array", "prototype", "entries"],
|
|
75948
|
+
"%ArrayProto_forEach%": ["Array", "prototype", "forEach"],
|
|
75949
|
+
"%ArrayProto_keys%": ["Array", "prototype", "keys"],
|
|
75950
|
+
"%ArrayProto_values%": ["Array", "prototype", "values"],
|
|
75951
|
+
"%AsyncFunctionPrototype%": ["AsyncFunction", "prototype"],
|
|
75952
|
+
"%AsyncGenerator%": ["AsyncGeneratorFunction", "prototype"],
|
|
75953
|
+
"%AsyncGeneratorPrototype%": ["AsyncGeneratorFunction", "prototype", "prototype"],
|
|
75954
|
+
"%BooleanPrototype%": ["Boolean", "prototype"],
|
|
75955
|
+
"%DataViewPrototype%": ["DataView", "prototype"],
|
|
75956
|
+
"%DatePrototype%": ["Date", "prototype"],
|
|
75957
|
+
"%ErrorPrototype%": ["Error", "prototype"],
|
|
75958
|
+
"%EvalErrorPrototype%": ["EvalError", "prototype"],
|
|
75959
|
+
"%Float32ArrayPrototype%": ["Float32Array", "prototype"],
|
|
75960
|
+
"%Float64ArrayPrototype%": ["Float64Array", "prototype"],
|
|
75961
|
+
"%FunctionPrototype%": ["Function", "prototype"],
|
|
75962
|
+
"%Generator%": ["GeneratorFunction", "prototype"],
|
|
75963
|
+
"%GeneratorPrototype%": ["GeneratorFunction", "prototype", "prototype"],
|
|
75964
|
+
"%Int8ArrayPrototype%": ["Int8Array", "prototype"],
|
|
75965
|
+
"%Int16ArrayPrototype%": ["Int16Array", "prototype"],
|
|
75966
|
+
"%Int32ArrayPrototype%": ["Int32Array", "prototype"],
|
|
75967
|
+
"%JSONParse%": ["JSON", "parse"],
|
|
75968
|
+
"%JSONStringify%": ["JSON", "stringify"],
|
|
75969
|
+
"%MapPrototype%": ["Map", "prototype"],
|
|
75970
|
+
"%NumberPrototype%": ["Number", "prototype"],
|
|
75971
|
+
"%ObjectPrototype%": ["Object", "prototype"],
|
|
75972
|
+
"%ObjProto_toString%": ["Object", "prototype", "toString"],
|
|
75973
|
+
"%ObjProto_valueOf%": ["Object", "prototype", "valueOf"],
|
|
75974
|
+
"%PromisePrototype%": ["Promise", "prototype"],
|
|
75975
|
+
"%PromiseProto_then%": ["Promise", "prototype", "then"],
|
|
75976
|
+
"%Promise_all%": ["Promise", "all"],
|
|
75977
|
+
"%Promise_reject%": ["Promise", "reject"],
|
|
75978
|
+
"%Promise_resolve%": ["Promise", "resolve"],
|
|
75979
|
+
"%RangeErrorPrototype%": ["RangeError", "prototype"],
|
|
75980
|
+
"%ReferenceErrorPrototype%": ["ReferenceError", "prototype"],
|
|
75981
|
+
"%RegExpPrototype%": ["RegExp", "prototype"],
|
|
75982
|
+
"%SetPrototype%": ["Set", "prototype"],
|
|
75983
|
+
"%SharedArrayBufferPrototype%": ["SharedArrayBuffer", "prototype"],
|
|
75984
|
+
"%StringPrototype%": ["String", "prototype"],
|
|
75985
|
+
"%SymbolPrototype%": ["Symbol", "prototype"],
|
|
75986
|
+
"%SyntaxErrorPrototype%": ["SyntaxError", "prototype"],
|
|
75987
|
+
"%TypedArrayPrototype%": ["TypedArray", "prototype"],
|
|
75988
|
+
"%TypeErrorPrototype%": ["TypeError", "prototype"],
|
|
75989
|
+
"%Uint8ArrayPrototype%": ["Uint8Array", "prototype"],
|
|
75990
|
+
"%Uint8ClampedArrayPrototype%": ["Uint8ClampedArray", "prototype"],
|
|
75991
|
+
"%Uint16ArrayPrototype%": ["Uint16Array", "prototype"],
|
|
75992
|
+
"%Uint32ArrayPrototype%": ["Uint32Array", "prototype"],
|
|
75993
|
+
"%URIErrorPrototype%": ["URIError", "prototype"],
|
|
75994
|
+
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
75995
|
+
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
75996
|
+
};
|
|
75997
|
+
var bind2 = require_function_bind();
|
|
75998
|
+
var hasOwn = require_src();
|
|
75999
|
+
var $concat = bind2.call(Function.call, Array.prototype.concat);
|
|
76000
|
+
var $spliceApply = bind2.call(Function.apply, Array.prototype.splice);
|
|
76001
|
+
var $replace = bind2.call(Function.call, String.prototype.replace);
|
|
76002
|
+
var $strSlice = bind2.call(Function.call, String.prototype.slice);
|
|
76003
|
+
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
76004
|
+
var reEscapeChar = /\\(\\)?/g;
|
|
76005
|
+
var stringToPath = function stringToPath2(string) {
|
|
76006
|
+
var first = $strSlice(string, 0, 1);
|
|
76007
|
+
var last = $strSlice(string, -1);
|
|
76008
|
+
if (first === "%" && last !== "%") {
|
|
76009
|
+
throw new $SyntaxError("invalid intrinsic syntax, expected closing `%`");
|
|
76010
|
+
} else if (last === "%" && first !== "%") {
|
|
76011
|
+
throw new $SyntaxError("invalid intrinsic syntax, expected opening `%`");
|
|
76012
|
+
}
|
|
76013
|
+
var result2 = [];
|
|
76014
|
+
$replace(string, rePropName, function(match, number, quote, subString) {
|
|
76015
|
+
result2[result2.length] = quote ? $replace(subString, reEscapeChar, "$1") : number || match;
|
|
76016
|
+
});
|
|
76017
|
+
return result2;
|
|
76018
|
+
};
|
|
76019
|
+
var getBaseIntrinsic = function getBaseIntrinsic2(name2, allowMissing) {
|
|
76020
|
+
var intrinsicName = name2;
|
|
76021
|
+
var alias;
|
|
76022
|
+
if (hasOwn(LEGACY_ALIASES, intrinsicName)) {
|
|
76023
|
+
alias = LEGACY_ALIASES[intrinsicName];
|
|
76024
|
+
intrinsicName = "%" + alias[0] + "%";
|
|
76025
|
+
}
|
|
76026
|
+
if (hasOwn(INTRINSICS, intrinsicName)) {
|
|
76027
|
+
var value = INTRINSICS[intrinsicName];
|
|
76028
|
+
if (value === needsEval) {
|
|
76029
|
+
value = doEval(intrinsicName);
|
|
76030
|
+
}
|
|
76031
|
+
if (typeof value === "undefined" && !allowMissing) {
|
|
76032
|
+
throw new $TypeError("intrinsic " + name2 + " exists, but is not available. Please file an issue!");
|
|
76033
|
+
}
|
|
76034
|
+
return {
|
|
76035
|
+
alias,
|
|
76036
|
+
name: intrinsicName,
|
|
76037
|
+
value
|
|
76038
|
+
};
|
|
76039
|
+
}
|
|
76040
|
+
throw new $SyntaxError("intrinsic " + name2 + " does not exist!");
|
|
76041
|
+
};
|
|
76042
|
+
module2.exports = function GetIntrinsic(name2, allowMissing) {
|
|
76043
|
+
if (typeof name2 !== "string" || name2.length === 0) {
|
|
76044
|
+
throw new $TypeError("intrinsic name must be a non-empty string");
|
|
76045
|
+
}
|
|
76046
|
+
if (arguments.length > 1 && typeof allowMissing !== "boolean") {
|
|
76047
|
+
throw new $TypeError('"allowMissing" argument must be a boolean');
|
|
76048
|
+
}
|
|
76049
|
+
var parts = stringToPath(name2);
|
|
76050
|
+
var intrinsicBaseName = parts.length > 0 ? parts[0] : "";
|
|
76051
|
+
var intrinsic = getBaseIntrinsic("%" + intrinsicBaseName + "%", allowMissing);
|
|
76052
|
+
var intrinsicRealName = intrinsic.name;
|
|
76053
|
+
var value = intrinsic.value;
|
|
76054
|
+
var skipFurtherCaching = false;
|
|
76055
|
+
var alias = intrinsic.alias;
|
|
76056
|
+
if (alias) {
|
|
76057
|
+
intrinsicBaseName = alias[0];
|
|
76058
|
+
$spliceApply(parts, $concat([0, 1], alias));
|
|
76059
|
+
}
|
|
76060
|
+
for (var i = 1, isOwn = true; i < parts.length; i += 1) {
|
|
76061
|
+
var part = parts[i];
|
|
76062
|
+
var first = $strSlice(part, 0, 1);
|
|
76063
|
+
var last = $strSlice(part, -1);
|
|
76064
|
+
if ((first === '"' || first === "'" || first === "`" || (last === '"' || last === "'" || last === "`")) && first !== last) {
|
|
76065
|
+
throw new $SyntaxError("property names with quotes must have matching quotes");
|
|
76066
|
+
}
|
|
76067
|
+
if (part === "constructor" || !isOwn) {
|
|
76068
|
+
skipFurtherCaching = true;
|
|
76069
|
+
}
|
|
76070
|
+
intrinsicBaseName += "." + part;
|
|
76071
|
+
intrinsicRealName = "%" + intrinsicBaseName + "%";
|
|
76072
|
+
if (hasOwn(INTRINSICS, intrinsicRealName)) {
|
|
76073
|
+
value = INTRINSICS[intrinsicRealName];
|
|
76074
|
+
} else if (value != null) {
|
|
76075
|
+
if (!(part in value)) {
|
|
76076
|
+
if (!allowMissing) {
|
|
76077
|
+
throw new $TypeError("base intrinsic for " + name2 + " exists, but the property is not available.");
|
|
76078
|
+
}
|
|
76079
|
+
return void 0;
|
|
76080
|
+
}
|
|
76081
|
+
if ($gOPD && i + 1 >= parts.length) {
|
|
76082
|
+
var desc = $gOPD(value, part);
|
|
76083
|
+
isOwn = !!desc;
|
|
76084
|
+
if (isOwn && "get" in desc && !("originalValue" in desc.get)) {
|
|
76085
|
+
value = desc.get;
|
|
76086
|
+
} else {
|
|
76087
|
+
value = value[part];
|
|
76088
|
+
}
|
|
76089
|
+
} else {
|
|
76090
|
+
isOwn = hasOwn(value, part);
|
|
76091
|
+
value = value[part];
|
|
76092
|
+
}
|
|
76093
|
+
if (isOwn && !skipFurtherCaching) {
|
|
76094
|
+
INTRINSICS[intrinsicRealName] = value;
|
|
76095
|
+
}
|
|
76096
|
+
}
|
|
76097
|
+
}
|
|
76098
|
+
return value;
|
|
76099
|
+
};
|
|
76100
|
+
}
|
|
76101
|
+
});
|
|
76102
|
+
|
|
76103
|
+
// ../../node_modules/side-channel/node_modules/call-bind/node_modules/get-intrinsic/index.js
|
|
76104
|
+
var require_get_intrinsic2 = __commonJS({
|
|
76105
|
+
"../../node_modules/side-channel/node_modules/call-bind/node_modules/get-intrinsic/index.js"(exports2, module2) {
|
|
76106
|
+
"use strict";
|
|
76107
|
+
var undefined2;
|
|
76108
|
+
var $SyntaxError = SyntaxError;
|
|
76109
|
+
var $Function = Function;
|
|
76110
|
+
var $TypeError = TypeError;
|
|
76111
|
+
var getEvalledConstructor = function(expressionSyntax) {
|
|
76112
|
+
try {
|
|
76113
|
+
return Function('"use strict"; return (' + expressionSyntax + ").constructor;")();
|
|
76114
|
+
} catch (e) {
|
|
76115
|
+
}
|
|
76116
|
+
};
|
|
76117
|
+
var $gOPD = Object.getOwnPropertyDescriptor;
|
|
76118
|
+
if ($gOPD) {
|
|
76119
|
+
try {
|
|
76120
|
+
$gOPD({}, "");
|
|
76121
|
+
} catch (e) {
|
|
76122
|
+
$gOPD = null;
|
|
76123
|
+
}
|
|
76124
|
+
}
|
|
76125
|
+
var throwTypeError = function() {
|
|
76126
|
+
throw new $TypeError();
|
|
76127
|
+
};
|
|
76128
|
+
var ThrowTypeError = $gOPD ? function() {
|
|
76129
|
+
try {
|
|
76130
|
+
arguments.callee;
|
|
76131
|
+
return throwTypeError;
|
|
76132
|
+
} catch (calleeThrows) {
|
|
76133
|
+
try {
|
|
76134
|
+
return $gOPD(arguments, "callee").get;
|
|
76135
|
+
} catch (gOPDthrows) {
|
|
76136
|
+
return throwTypeError;
|
|
76137
|
+
}
|
|
76138
|
+
}
|
|
76139
|
+
}() : throwTypeError;
|
|
76140
|
+
var hasSymbols = require_has_symbols()();
|
|
76141
|
+
var getProto = Object.getPrototypeOf || function(x) {
|
|
76142
|
+
return x.__proto__;
|
|
76143
|
+
};
|
|
76144
|
+
var asyncGenFunction = getEvalledConstructor("async function* () {}");
|
|
76145
|
+
var asyncGenFunctionPrototype = asyncGenFunction ? asyncGenFunction.prototype : undefined2;
|
|
76146
|
+
var asyncGenPrototype = asyncGenFunctionPrototype ? asyncGenFunctionPrototype.prototype : undefined2;
|
|
76147
|
+
var TypedArray = typeof Uint8Array === "undefined" ? undefined2 : getProto(Uint8Array);
|
|
76148
|
+
var INTRINSICS = {
|
|
76149
|
+
"%AggregateError%": typeof AggregateError === "undefined" ? undefined2 : AggregateError,
|
|
76150
|
+
"%Array%": Array,
|
|
76151
|
+
"%ArrayBuffer%": typeof ArrayBuffer === "undefined" ? undefined2 : ArrayBuffer,
|
|
76152
|
+
"%ArrayIteratorPrototype%": hasSymbols ? getProto([][Symbol.iterator]()) : undefined2,
|
|
76153
|
+
"%AsyncFromSyncIteratorPrototype%": undefined2,
|
|
76154
|
+
"%AsyncFunction%": getEvalledConstructor("async function () {}"),
|
|
76155
|
+
"%AsyncGenerator%": asyncGenFunctionPrototype,
|
|
76156
|
+
"%AsyncGeneratorFunction%": asyncGenFunction,
|
|
76157
|
+
"%AsyncIteratorPrototype%": asyncGenPrototype ? getProto(asyncGenPrototype) : undefined2,
|
|
76158
|
+
"%Atomics%": typeof Atomics === "undefined" ? undefined2 : Atomics,
|
|
76159
|
+
"%BigInt%": typeof BigInt === "undefined" ? undefined2 : BigInt,
|
|
76160
|
+
"%Boolean%": Boolean,
|
|
76161
|
+
"%DataView%": typeof DataView === "undefined" ? undefined2 : DataView,
|
|
76162
|
+
"%Date%": Date,
|
|
76163
|
+
"%decodeURI%": decodeURI,
|
|
76164
|
+
"%decodeURIComponent%": decodeURIComponent,
|
|
76165
|
+
"%encodeURI%": encodeURI,
|
|
76166
|
+
"%encodeURIComponent%": encodeURIComponent,
|
|
76167
|
+
"%Error%": Error,
|
|
76168
|
+
"%eval%": eval,
|
|
76169
|
+
// eslint-disable-line no-eval
|
|
76170
|
+
"%EvalError%": EvalError,
|
|
76171
|
+
"%Float32Array%": typeof Float32Array === "undefined" ? undefined2 : Float32Array,
|
|
76172
|
+
"%Float64Array%": typeof Float64Array === "undefined" ? undefined2 : Float64Array,
|
|
76173
|
+
"%FinalizationRegistry%": typeof FinalizationRegistry === "undefined" ? undefined2 : FinalizationRegistry,
|
|
76174
|
+
"%Function%": $Function,
|
|
76175
|
+
"%GeneratorFunction%": getEvalledConstructor("function* () {}"),
|
|
76176
|
+
"%Int8Array%": typeof Int8Array === "undefined" ? undefined2 : Int8Array,
|
|
76177
|
+
"%Int16Array%": typeof Int16Array === "undefined" ? undefined2 : Int16Array,
|
|
76178
|
+
"%Int32Array%": typeof Int32Array === "undefined" ? undefined2 : Int32Array,
|
|
76179
|
+
"%isFinite%": isFinite,
|
|
76180
|
+
"%isNaN%": isNaN,
|
|
76181
|
+
"%IteratorPrototype%": hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined2,
|
|
76182
|
+
"%JSON%": typeof JSON === "object" ? JSON : undefined2,
|
|
76183
|
+
"%Map%": typeof Map === "undefined" ? undefined2 : Map,
|
|
76184
|
+
"%MapIteratorPrototype%": typeof Map === "undefined" || !hasSymbols ? undefined2 : getProto((/* @__PURE__ */ new Map())[Symbol.iterator]()),
|
|
76185
|
+
"%Math%": Math,
|
|
76186
|
+
"%Number%": Number,
|
|
76187
|
+
"%Object%": Object,
|
|
76188
|
+
"%parseFloat%": parseFloat,
|
|
76189
|
+
"%parseInt%": parseInt,
|
|
76190
|
+
"%Promise%": typeof Promise === "undefined" ? undefined2 : Promise,
|
|
76191
|
+
"%Proxy%": typeof Proxy === "undefined" ? undefined2 : Proxy,
|
|
76192
|
+
"%RangeError%": RangeError,
|
|
76193
|
+
"%ReferenceError%": ReferenceError,
|
|
76194
|
+
"%Reflect%": typeof Reflect === "undefined" ? undefined2 : Reflect,
|
|
76195
|
+
"%RegExp%": RegExp,
|
|
76196
|
+
"%Set%": typeof Set === "undefined" ? undefined2 : Set,
|
|
76197
|
+
"%SetIteratorPrototype%": typeof Set === "undefined" || !hasSymbols ? undefined2 : getProto((/* @__PURE__ */ new Set())[Symbol.iterator]()),
|
|
76198
|
+
"%SharedArrayBuffer%": typeof SharedArrayBuffer === "undefined" ? undefined2 : SharedArrayBuffer,
|
|
76199
|
+
"%String%": String,
|
|
76200
|
+
"%StringIteratorPrototype%": hasSymbols ? getProto(""[Symbol.iterator]()) : undefined2,
|
|
76201
|
+
"%Symbol%": hasSymbols ? Symbol : undefined2,
|
|
76202
|
+
"%SyntaxError%": $SyntaxError,
|
|
76203
|
+
"%ThrowTypeError%": ThrowTypeError,
|
|
76204
|
+
"%TypedArray%": TypedArray,
|
|
76205
|
+
"%TypeError%": $TypeError,
|
|
76206
|
+
"%Uint8Array%": typeof Uint8Array === "undefined" ? undefined2 : Uint8Array,
|
|
76207
|
+
"%Uint8ClampedArray%": typeof Uint8ClampedArray === "undefined" ? undefined2 : Uint8ClampedArray,
|
|
76208
|
+
"%Uint16Array%": typeof Uint16Array === "undefined" ? undefined2 : Uint16Array,
|
|
76209
|
+
"%Uint32Array%": typeof Uint32Array === "undefined" ? undefined2 : Uint32Array,
|
|
76210
|
+
"%URIError%": URIError,
|
|
76211
|
+
"%WeakMap%": typeof WeakMap === "undefined" ? undefined2 : WeakMap,
|
|
76212
|
+
"%WeakRef%": typeof WeakRef === "undefined" ? undefined2 : WeakRef,
|
|
76213
|
+
"%WeakSet%": typeof WeakSet === "undefined" ? undefined2 : WeakSet
|
|
76214
|
+
};
|
|
76215
|
+
var LEGACY_ALIASES = {
|
|
76216
|
+
"%ArrayBufferPrototype%": ["ArrayBuffer", "prototype"],
|
|
76217
|
+
"%ArrayPrototype%": ["Array", "prototype"],
|
|
76218
|
+
"%ArrayProto_entries%": ["Array", "prototype", "entries"],
|
|
76219
|
+
"%ArrayProto_forEach%": ["Array", "prototype", "forEach"],
|
|
76220
|
+
"%ArrayProto_keys%": ["Array", "prototype", "keys"],
|
|
76221
|
+
"%ArrayProto_values%": ["Array", "prototype", "values"],
|
|
76222
|
+
"%AsyncFunctionPrototype%": ["AsyncFunction", "prototype"],
|
|
76223
|
+
"%AsyncGenerator%": ["AsyncGeneratorFunction", "prototype"],
|
|
76224
|
+
"%AsyncGeneratorPrototype%": ["AsyncGeneratorFunction", "prototype", "prototype"],
|
|
76225
|
+
"%BooleanPrototype%": ["Boolean", "prototype"],
|
|
76226
|
+
"%DataViewPrototype%": ["DataView", "prototype"],
|
|
76227
|
+
"%DatePrototype%": ["Date", "prototype"],
|
|
76228
|
+
"%ErrorPrototype%": ["Error", "prototype"],
|
|
76229
|
+
"%EvalErrorPrototype%": ["EvalError", "prototype"],
|
|
76230
|
+
"%Float32ArrayPrototype%": ["Float32Array", "prototype"],
|
|
76231
|
+
"%Float64ArrayPrototype%": ["Float64Array", "prototype"],
|
|
76232
|
+
"%FunctionPrototype%": ["Function", "prototype"],
|
|
76233
|
+
"%Generator%": ["GeneratorFunction", "prototype"],
|
|
76234
|
+
"%GeneratorPrototype%": ["GeneratorFunction", "prototype", "prototype"],
|
|
76235
|
+
"%Int8ArrayPrototype%": ["Int8Array", "prototype"],
|
|
76236
|
+
"%Int16ArrayPrototype%": ["Int16Array", "prototype"],
|
|
76237
|
+
"%Int32ArrayPrototype%": ["Int32Array", "prototype"],
|
|
76238
|
+
"%JSONParse%": ["JSON", "parse"],
|
|
76239
|
+
"%JSONStringify%": ["JSON", "stringify"],
|
|
76240
|
+
"%MapPrototype%": ["Map", "prototype"],
|
|
76241
|
+
"%NumberPrototype%": ["Number", "prototype"],
|
|
76242
|
+
"%ObjectPrototype%": ["Object", "prototype"],
|
|
76243
|
+
"%ObjProto_toString%": ["Object", "prototype", "toString"],
|
|
76244
|
+
"%ObjProto_valueOf%": ["Object", "prototype", "valueOf"],
|
|
76245
|
+
"%PromisePrototype%": ["Promise", "prototype"],
|
|
76246
|
+
"%PromiseProto_then%": ["Promise", "prototype", "then"],
|
|
76247
|
+
"%Promise_all%": ["Promise", "all"],
|
|
76248
|
+
"%Promise_reject%": ["Promise", "reject"],
|
|
76249
|
+
"%Promise_resolve%": ["Promise", "resolve"],
|
|
76250
|
+
"%RangeErrorPrototype%": ["RangeError", "prototype"],
|
|
76251
|
+
"%ReferenceErrorPrototype%": ["ReferenceError", "prototype"],
|
|
76252
|
+
"%RegExpPrototype%": ["RegExp", "prototype"],
|
|
76253
|
+
"%SetPrototype%": ["Set", "prototype"],
|
|
76254
|
+
"%SharedArrayBufferPrototype%": ["SharedArrayBuffer", "prototype"],
|
|
76255
|
+
"%StringPrototype%": ["String", "prototype"],
|
|
76256
|
+
"%SymbolPrototype%": ["Symbol", "prototype"],
|
|
76257
|
+
"%SyntaxErrorPrototype%": ["SyntaxError", "prototype"],
|
|
76258
|
+
"%TypedArrayPrototype%": ["TypedArray", "prototype"],
|
|
76259
|
+
"%TypeErrorPrototype%": ["TypeError", "prototype"],
|
|
76260
|
+
"%Uint8ArrayPrototype%": ["Uint8Array", "prototype"],
|
|
76261
|
+
"%Uint8ClampedArrayPrototype%": ["Uint8ClampedArray", "prototype"],
|
|
76262
|
+
"%Uint16ArrayPrototype%": ["Uint16Array", "prototype"],
|
|
76263
|
+
"%Uint32ArrayPrototype%": ["Uint32Array", "prototype"],
|
|
76264
|
+
"%URIErrorPrototype%": ["URIError", "prototype"],
|
|
76265
|
+
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
76266
|
+
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
76267
|
+
};
|
|
76268
|
+
var bind2 = require_function_bind();
|
|
76269
|
+
var hasOwn = require_src();
|
|
76270
|
+
var $concat = bind2.call(Function.call, Array.prototype.concat);
|
|
76271
|
+
var $spliceApply = bind2.call(Function.apply, Array.prototype.splice);
|
|
76272
|
+
var $replace = bind2.call(Function.call, String.prototype.replace);
|
|
76273
|
+
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
76274
|
+
var reEscapeChar = /\\(\\)?/g;
|
|
76275
|
+
var stringToPath = function stringToPath2(string) {
|
|
76276
|
+
var result2 = [];
|
|
76277
|
+
$replace(string, rePropName, function(match, number, quote, subString) {
|
|
76278
|
+
result2[result2.length] = quote ? $replace(subString, reEscapeChar, "$1") : number || match;
|
|
76279
|
+
});
|
|
76280
|
+
return result2;
|
|
76281
|
+
};
|
|
76282
|
+
var getBaseIntrinsic = function getBaseIntrinsic2(name2, allowMissing) {
|
|
76283
|
+
var intrinsicName = name2;
|
|
76284
|
+
var alias;
|
|
76285
|
+
if (hasOwn(LEGACY_ALIASES, intrinsicName)) {
|
|
76286
|
+
alias = LEGACY_ALIASES[intrinsicName];
|
|
76287
|
+
intrinsicName = "%" + alias[0] + "%";
|
|
76288
|
+
}
|
|
76289
|
+
if (hasOwn(INTRINSICS, intrinsicName)) {
|
|
76290
|
+
var value = INTRINSICS[intrinsicName];
|
|
76291
|
+
if (typeof value === "undefined" && !allowMissing) {
|
|
76292
|
+
throw new $TypeError("intrinsic " + name2 + " exists, but is not available. Please file an issue!");
|
|
76293
|
+
}
|
|
76294
|
+
return {
|
|
76295
|
+
alias,
|
|
76296
|
+
name: intrinsicName,
|
|
76297
|
+
value
|
|
76298
|
+
};
|
|
76299
|
+
}
|
|
76300
|
+
throw new $SyntaxError("intrinsic " + name2 + " does not exist!");
|
|
76301
|
+
};
|
|
76302
|
+
module2.exports = function GetIntrinsic(name2, allowMissing) {
|
|
76303
|
+
if (typeof name2 !== "string" || name2.length === 0) {
|
|
76304
|
+
throw new $TypeError("intrinsic name must be a non-empty string");
|
|
76305
|
+
}
|
|
76306
|
+
if (arguments.length > 1 && typeof allowMissing !== "boolean") {
|
|
76307
|
+
throw new $TypeError('"allowMissing" argument must be a boolean');
|
|
76308
|
+
}
|
|
76309
|
+
var parts = stringToPath(name2);
|
|
76310
|
+
var intrinsicBaseName = parts.length > 0 ? parts[0] : "";
|
|
76311
|
+
var intrinsic = getBaseIntrinsic("%" + intrinsicBaseName + "%", allowMissing);
|
|
76312
|
+
var intrinsicRealName = intrinsic.name;
|
|
76313
|
+
var value = intrinsic.value;
|
|
76314
|
+
var skipFurtherCaching = false;
|
|
76315
|
+
var alias = intrinsic.alias;
|
|
76316
|
+
if (alias) {
|
|
76317
|
+
intrinsicBaseName = alias[0];
|
|
76318
|
+
$spliceApply(parts, $concat([0, 1], alias));
|
|
76319
|
+
}
|
|
76320
|
+
for (var i = 1, isOwn = true; i < parts.length; i += 1) {
|
|
76321
|
+
var part = parts[i];
|
|
76322
|
+
if (part === "constructor" || !isOwn) {
|
|
76323
|
+
skipFurtherCaching = true;
|
|
76324
|
+
}
|
|
76325
|
+
intrinsicBaseName += "." + part;
|
|
76326
|
+
intrinsicRealName = "%" + intrinsicBaseName + "%";
|
|
76327
|
+
if (hasOwn(INTRINSICS, intrinsicRealName)) {
|
|
76328
|
+
value = INTRINSICS[intrinsicRealName];
|
|
76329
|
+
} else if (value != null) {
|
|
76330
|
+
if ($gOPD && i + 1 >= parts.length) {
|
|
76331
|
+
var desc = $gOPD(value, part);
|
|
76332
|
+
isOwn = !!desc;
|
|
76333
|
+
if (!allowMissing && !(part in value)) {
|
|
76334
|
+
throw new $TypeError("base intrinsic for " + name2 + " exists, but the property is not available.");
|
|
76335
|
+
}
|
|
76336
|
+
if (isOwn && "get" in desc && !("originalValue" in desc.get)) {
|
|
76337
|
+
value = desc.get;
|
|
76338
|
+
} else {
|
|
76339
|
+
value = value[part];
|
|
76340
|
+
}
|
|
76341
|
+
} else {
|
|
76342
|
+
isOwn = hasOwn(value, part);
|
|
76343
|
+
value = value[part];
|
|
76344
|
+
}
|
|
76345
|
+
if (isOwn && !skipFurtherCaching) {
|
|
76346
|
+
INTRINSICS[intrinsicRealName] = value;
|
|
76347
|
+
}
|
|
76348
|
+
}
|
|
76349
|
+
}
|
|
76350
|
+
return value;
|
|
76351
|
+
};
|
|
76352
|
+
}
|
|
76353
|
+
});
|
|
76354
|
+
|
|
76355
|
+
// ../../node_modules/side-channel/node_modules/call-bind/index.js
|
|
76356
|
+
var require_call_bind = __commonJS({
|
|
76357
|
+
"../../node_modules/side-channel/node_modules/call-bind/index.js"(exports2, module2) {
|
|
76358
|
+
"use strict";
|
|
76359
|
+
var bind2 = require_function_bind();
|
|
76360
|
+
var GetIntrinsic = require_get_intrinsic2();
|
|
76361
|
+
var $apply = GetIntrinsic("%Function.prototype.apply%");
|
|
76362
|
+
var $call = GetIntrinsic("%Function.prototype.call%");
|
|
76363
|
+
var $reflectApply = GetIntrinsic("%Reflect.apply%", true) || bind2.call($call, $apply);
|
|
76364
|
+
var $defineProperty = GetIntrinsic("%Object.defineProperty%", true);
|
|
76365
|
+
if ($defineProperty) {
|
|
76366
|
+
try {
|
|
76367
|
+
$defineProperty({}, "a", { value: 1 });
|
|
76368
|
+
} catch (e) {
|
|
76369
|
+
$defineProperty = null;
|
|
76370
|
+
}
|
|
76371
|
+
}
|
|
76372
|
+
module2.exports = function callBind() {
|
|
76373
|
+
return $reflectApply(bind2, $call, arguments);
|
|
76374
|
+
};
|
|
76375
|
+
var applyBind = function applyBind2() {
|
|
76376
|
+
return $reflectApply(bind2, $apply, arguments);
|
|
76377
|
+
};
|
|
76378
|
+
if ($defineProperty) {
|
|
76379
|
+
$defineProperty(module2.exports, "apply", { value: applyBind });
|
|
76380
|
+
} else {
|
|
76381
|
+
module2.exports.apply = applyBind;
|
|
76382
|
+
}
|
|
76383
|
+
}
|
|
76384
|
+
});
|
|
76385
|
+
|
|
76386
|
+
// ../../node_modules/side-channel/node_modules/call-bind/callBound.js
|
|
76387
|
+
var require_callBound = __commonJS({
|
|
76388
|
+
"../../node_modules/side-channel/node_modules/call-bind/callBound.js"(exports2, module2) {
|
|
76389
|
+
"use strict";
|
|
76390
|
+
var GetIntrinsic = require_get_intrinsic2();
|
|
76391
|
+
var callBind = require_call_bind();
|
|
76392
|
+
var $indexOf = callBind(GetIntrinsic("String.prototype.indexOf"));
|
|
76393
|
+
module2.exports = function callBoundIntrinsic(name2, allowMissing) {
|
|
76394
|
+
var intrinsic = GetIntrinsic(name2, !!allowMissing);
|
|
76395
|
+
if (typeof intrinsic === "function" && $indexOf(name2, ".prototype.") > -1) {
|
|
76396
|
+
return callBind(intrinsic);
|
|
76397
|
+
}
|
|
76398
|
+
return intrinsic;
|
|
76399
|
+
};
|
|
76400
|
+
}
|
|
76401
|
+
});
|
|
76402
|
+
|
|
76403
|
+
// ../../node_modules/side-channel/node_modules/object-inspect/util.inspect.js
|
|
76404
|
+
var require_util_inspect = __commonJS({
|
|
76405
|
+
"../../node_modules/side-channel/node_modules/object-inspect/util.inspect.js"(exports2, module2) {
|
|
76406
|
+
module2.exports = require("util").inspect;
|
|
76407
|
+
}
|
|
76408
|
+
});
|
|
76409
|
+
|
|
76410
|
+
// ../../node_modules/side-channel/node_modules/object-inspect/index.js
|
|
76411
|
+
var require_object_inspect = __commonJS({
|
|
76412
|
+
"../../node_modules/side-channel/node_modules/object-inspect/index.js"(exports2, module2) {
|
|
76413
|
+
var hasMap = typeof Map === "function" && Map.prototype;
|
|
76414
|
+
var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, "size") : null;
|
|
76415
|
+
var mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === "function" ? mapSizeDescriptor.get : null;
|
|
76416
|
+
var mapForEach = hasMap && Map.prototype.forEach;
|
|
76417
|
+
var hasSet = typeof Set === "function" && Set.prototype;
|
|
76418
|
+
var setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescriptor(Set.prototype, "size") : null;
|
|
76419
|
+
var setSize = hasSet && setSizeDescriptor && typeof setSizeDescriptor.get === "function" ? setSizeDescriptor.get : null;
|
|
76420
|
+
var setForEach = hasSet && Set.prototype.forEach;
|
|
76421
|
+
var hasWeakMap = typeof WeakMap === "function" && WeakMap.prototype;
|
|
76422
|
+
var weakMapHas = hasWeakMap ? WeakMap.prototype.has : null;
|
|
76423
|
+
var hasWeakSet = typeof WeakSet === "function" && WeakSet.prototype;
|
|
76424
|
+
var weakSetHas = hasWeakSet ? WeakSet.prototype.has : null;
|
|
76425
|
+
var hasWeakRef = typeof WeakRef === "function" && WeakRef.prototype;
|
|
76426
|
+
var weakRefDeref = hasWeakRef ? WeakRef.prototype.deref : null;
|
|
76427
|
+
var booleanValueOf = Boolean.prototype.valueOf;
|
|
76428
|
+
var objectToString2 = Object.prototype.toString;
|
|
76429
|
+
var functionToString = Function.prototype.toString;
|
|
76430
|
+
var match = String.prototype.match;
|
|
76431
|
+
var bigIntValueOf = typeof BigInt === "function" ? BigInt.prototype.valueOf : null;
|
|
76432
|
+
var gOPS = Object.getOwnPropertySymbols;
|
|
76433
|
+
var symToString = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? Symbol.prototype.toString : null;
|
|
76434
|
+
var hasShammedSymbols = typeof Symbol === "function" && typeof Symbol.iterator === "object";
|
|
76435
|
+
var isEnumerable = Object.prototype.propertyIsEnumerable;
|
|
76436
|
+
var gPO = (typeof Reflect === "function" ? Reflect.getPrototypeOf : Object.getPrototypeOf) || ([].__proto__ === Array.prototype ? function(O) {
|
|
76437
|
+
return O.__proto__;
|
|
76438
|
+
} : null);
|
|
76439
|
+
var inspectCustom = require_util_inspect().custom;
|
|
76440
|
+
var inspectSymbol = inspectCustom && isSymbol(inspectCustom) ? inspectCustom : null;
|
|
76441
|
+
var toStringTag = typeof Symbol === "function" && typeof Symbol.toStringTag !== "undefined" ? Symbol.toStringTag : null;
|
|
76442
|
+
module2.exports = function inspect_(obj, options2, depth, seen) {
|
|
76443
|
+
var opts = options2 || {};
|
|
76444
|
+
if (has(opts, "quoteStyle") && (opts.quoteStyle !== "single" && opts.quoteStyle !== "double")) {
|
|
76445
|
+
throw new TypeError('option "quoteStyle" must be "single" or "double"');
|
|
76446
|
+
}
|
|
76447
|
+
if (has(opts, "maxStringLength") && (typeof opts.maxStringLength === "number" ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity : opts.maxStringLength !== null)) {
|
|
76448
|
+
throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');
|
|
76449
|
+
}
|
|
76450
|
+
var customInspect = has(opts, "customInspect") ? opts.customInspect : true;
|
|
76451
|
+
if (typeof customInspect !== "boolean") {
|
|
76452
|
+
throw new TypeError('option "customInspect", if provided, must be `true` or `false`');
|
|
76453
|
+
}
|
|
76454
|
+
if (has(opts, "indent") && opts.indent !== null && opts.indent !== " " && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0)) {
|
|
76455
|
+
throw new TypeError('options "indent" must be "\\t", an integer > 0, or `null`');
|
|
76456
|
+
}
|
|
76457
|
+
if (typeof obj === "undefined") {
|
|
76458
|
+
return "undefined";
|
|
76459
|
+
}
|
|
76460
|
+
if (obj === null) {
|
|
76461
|
+
return "null";
|
|
76462
|
+
}
|
|
76463
|
+
if (typeof obj === "boolean") {
|
|
76464
|
+
return obj ? "true" : "false";
|
|
76465
|
+
}
|
|
76466
|
+
if (typeof obj === "string") {
|
|
76467
|
+
return inspectString(obj, opts);
|
|
76468
|
+
}
|
|
76469
|
+
if (typeof obj === "number") {
|
|
76470
|
+
if (obj === 0) {
|
|
76471
|
+
return Infinity / obj > 0 ? "0" : "-0";
|
|
76472
|
+
}
|
|
76473
|
+
return String(obj);
|
|
76474
|
+
}
|
|
76475
|
+
if (typeof obj === "bigint") {
|
|
76476
|
+
return String(obj) + "n";
|
|
76477
|
+
}
|
|
76478
|
+
var maxDepth = typeof opts.depth === "undefined" ? 5 : opts.depth;
|
|
76479
|
+
if (typeof depth === "undefined") {
|
|
76480
|
+
depth = 0;
|
|
76481
|
+
}
|
|
76482
|
+
if (depth >= maxDepth && maxDepth > 0 && typeof obj === "object") {
|
|
76483
|
+
return isArray3(obj) ? "[Array]" : "[Object]";
|
|
76484
|
+
}
|
|
76485
|
+
var indent = getIndent(opts, depth);
|
|
76486
|
+
if (typeof seen === "undefined") {
|
|
76487
|
+
seen = [];
|
|
76488
|
+
} else if (indexOf(seen, obj) >= 0) {
|
|
76489
|
+
return "[Circular]";
|
|
76490
|
+
}
|
|
76491
|
+
function inspect2(value, from, noIndent) {
|
|
76492
|
+
if (from) {
|
|
76493
|
+
seen = seen.slice();
|
|
76494
|
+
seen.push(from);
|
|
76495
|
+
}
|
|
76496
|
+
if (noIndent) {
|
|
76497
|
+
var newOpts = {
|
|
76498
|
+
depth: opts.depth
|
|
76499
|
+
};
|
|
76500
|
+
if (has(opts, "quoteStyle")) {
|
|
76501
|
+
newOpts.quoteStyle = opts.quoteStyle;
|
|
76502
|
+
}
|
|
76503
|
+
return inspect_(value, newOpts, depth + 1, seen);
|
|
76504
|
+
}
|
|
76505
|
+
return inspect_(value, opts, depth + 1, seen);
|
|
76506
|
+
}
|
|
76507
|
+
if (typeof obj === "function") {
|
|
76508
|
+
var name2 = nameOf(obj);
|
|
76509
|
+
var keys = arrObjKeys(obj, inspect2);
|
|
76510
|
+
return "[Function" + (name2 ? ": " + name2 : " (anonymous)") + "]" + (keys.length > 0 ? " { " + keys.join(", ") + " }" : "");
|
|
76511
|
+
}
|
|
76512
|
+
if (isSymbol(obj)) {
|
|
76513
|
+
var symString = hasShammedSymbols ? String(obj).replace(/^(Symbol\(.*\))_[^)]*$/, "$1") : symToString.call(obj);
|
|
76514
|
+
return typeof obj === "object" && !hasShammedSymbols ? markBoxed(symString) : symString;
|
|
76515
|
+
}
|
|
76516
|
+
if (isElement(obj)) {
|
|
76517
|
+
var s = "<" + String(obj.nodeName).toLowerCase();
|
|
76518
|
+
var attrs = obj.attributes || [];
|
|
76519
|
+
for (var i = 0; i < attrs.length; i++) {
|
|
76520
|
+
s += " " + attrs[i].name + "=" + wrapQuotes(quote(attrs[i].value), "double", opts);
|
|
76521
|
+
}
|
|
76522
|
+
s += ">";
|
|
76523
|
+
if (obj.childNodes && obj.childNodes.length) {
|
|
76524
|
+
s += "...";
|
|
76525
|
+
}
|
|
76526
|
+
s += "</" + String(obj.nodeName).toLowerCase() + ">";
|
|
76527
|
+
return s;
|
|
76528
|
+
}
|
|
76529
|
+
if (isArray3(obj)) {
|
|
76530
|
+
if (obj.length === 0) {
|
|
76531
|
+
return "[]";
|
|
76532
|
+
}
|
|
76533
|
+
var xs = arrObjKeys(obj, inspect2);
|
|
76534
|
+
if (indent && !singleLineValues(xs)) {
|
|
76535
|
+
return "[" + indentedJoin(xs, indent) + "]";
|
|
76536
|
+
}
|
|
76537
|
+
return "[ " + xs.join(", ") + " ]";
|
|
76538
|
+
}
|
|
76539
|
+
if (isError2(obj)) {
|
|
76540
|
+
var parts = arrObjKeys(obj, inspect2);
|
|
76541
|
+
if (parts.length === 0) {
|
|
76542
|
+
return "[" + String(obj) + "]";
|
|
76543
|
+
}
|
|
76544
|
+
return "{ [" + String(obj) + "] " + parts.join(", ") + " }";
|
|
76545
|
+
}
|
|
76546
|
+
if (typeof obj === "object" && customInspect) {
|
|
76547
|
+
if (inspectSymbol && typeof obj[inspectSymbol] === "function") {
|
|
76548
|
+
return obj[inspectSymbol]();
|
|
76549
|
+
} else if (typeof obj.inspect === "function") {
|
|
76550
|
+
return obj.inspect();
|
|
76551
|
+
}
|
|
76552
|
+
}
|
|
76553
|
+
if (isMap(obj)) {
|
|
76554
|
+
var mapParts = [];
|
|
76555
|
+
mapForEach.call(obj, function(value, key) {
|
|
76556
|
+
mapParts.push(inspect2(key, obj, true) + " => " + inspect2(value, obj));
|
|
76557
|
+
});
|
|
76558
|
+
return collectionOf("Map", mapSize.call(obj), mapParts, indent);
|
|
76559
|
+
}
|
|
76560
|
+
if (isSet(obj)) {
|
|
76561
|
+
var setParts = [];
|
|
76562
|
+
setForEach.call(obj, function(value) {
|
|
76563
|
+
setParts.push(inspect2(value, obj));
|
|
76564
|
+
});
|
|
76565
|
+
return collectionOf("Set", setSize.call(obj), setParts, indent);
|
|
76566
|
+
}
|
|
76567
|
+
if (isWeakMap(obj)) {
|
|
76568
|
+
return weakCollectionOf("WeakMap");
|
|
76569
|
+
}
|
|
76570
|
+
if (isWeakSet(obj)) {
|
|
76571
|
+
return weakCollectionOf("WeakSet");
|
|
76572
|
+
}
|
|
76573
|
+
if (isWeakRef(obj)) {
|
|
76574
|
+
return weakCollectionOf("WeakRef");
|
|
76575
|
+
}
|
|
76576
|
+
if (isNumber2(obj)) {
|
|
76577
|
+
return markBoxed(inspect2(Number(obj)));
|
|
76578
|
+
}
|
|
76579
|
+
if (isBigInt(obj)) {
|
|
76580
|
+
return markBoxed(inspect2(bigIntValueOf.call(obj)));
|
|
76581
|
+
}
|
|
76582
|
+
if (isBoolean2(obj)) {
|
|
76583
|
+
return markBoxed(booleanValueOf.call(obj));
|
|
76584
|
+
}
|
|
76585
|
+
if (isString2(obj)) {
|
|
76586
|
+
return markBoxed(inspect2(String(obj)));
|
|
76587
|
+
}
|
|
76588
|
+
if (!isDate2(obj) && !isRegExp2(obj)) {
|
|
76589
|
+
var ys = arrObjKeys(obj, inspect2);
|
|
76590
|
+
var isPlainObject3 = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
76591
|
+
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
76592
|
+
var stringTag = !isPlainObject3 && toStringTag && Object(obj) === obj && toStringTag in obj ? toStr(obj).slice(8, -1) : protoTag ? "Object" : "";
|
|
76593
|
+
var constructorTag = isPlainObject3 || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
76594
|
+
var tag = constructorTag + (stringTag || protoTag ? "[" + [].concat(stringTag || [], protoTag || []).join(": ") + "] " : "");
|
|
76595
|
+
if (ys.length === 0) {
|
|
76596
|
+
return tag + "{}";
|
|
76597
|
+
}
|
|
76598
|
+
if (indent) {
|
|
76599
|
+
return tag + "{" + indentedJoin(ys, indent) + "}";
|
|
76600
|
+
}
|
|
76601
|
+
return tag + "{ " + ys.join(", ") + " }";
|
|
76602
|
+
}
|
|
76603
|
+
return String(obj);
|
|
76604
|
+
};
|
|
76605
|
+
function wrapQuotes(s, defaultStyle, opts) {
|
|
76606
|
+
var quoteChar = (opts.quoteStyle || defaultStyle) === "double" ? '"' : "'";
|
|
76607
|
+
return quoteChar + s + quoteChar;
|
|
76608
|
+
}
|
|
76609
|
+
function quote(s) {
|
|
76610
|
+
return String(s).replace(/"/g, """);
|
|
76611
|
+
}
|
|
76612
|
+
function isArray3(obj) {
|
|
76613
|
+
return toStr(obj) === "[object Array]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
|
|
76614
|
+
}
|
|
76615
|
+
function isDate2(obj) {
|
|
76616
|
+
return toStr(obj) === "[object Date]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
|
|
76617
|
+
}
|
|
76618
|
+
function isRegExp2(obj) {
|
|
76619
|
+
return toStr(obj) === "[object RegExp]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
|
|
76620
|
+
}
|
|
76621
|
+
function isError2(obj) {
|
|
76622
|
+
return toStr(obj) === "[object Error]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
|
|
76623
|
+
}
|
|
76624
|
+
function isString2(obj) {
|
|
76625
|
+
return toStr(obj) === "[object String]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
|
|
76626
|
+
}
|
|
76627
|
+
function isNumber2(obj) {
|
|
76628
|
+
return toStr(obj) === "[object Number]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
|
|
76629
|
+
}
|
|
76630
|
+
function isBoolean2(obj) {
|
|
76631
|
+
return toStr(obj) === "[object Boolean]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
|
|
76632
|
+
}
|
|
76633
|
+
function isSymbol(obj) {
|
|
76634
|
+
if (hasShammedSymbols) {
|
|
76635
|
+
return obj && typeof obj === "object" && obj instanceof Symbol;
|
|
76636
|
+
}
|
|
76637
|
+
if (typeof obj === "symbol") {
|
|
76638
|
+
return true;
|
|
76639
|
+
}
|
|
76640
|
+
if (!obj || typeof obj !== "object" || !symToString) {
|
|
76641
|
+
return false;
|
|
76642
|
+
}
|
|
76643
|
+
try {
|
|
76644
|
+
symToString.call(obj);
|
|
76645
|
+
return true;
|
|
76646
|
+
} catch (e) {
|
|
76647
|
+
}
|
|
76648
|
+
return false;
|
|
76649
|
+
}
|
|
76650
|
+
function isBigInt(obj) {
|
|
76651
|
+
if (!obj || typeof obj !== "object" || !bigIntValueOf) {
|
|
76652
|
+
return false;
|
|
76653
|
+
}
|
|
76654
|
+
try {
|
|
76655
|
+
bigIntValueOf.call(obj);
|
|
76656
|
+
return true;
|
|
76657
|
+
} catch (e) {
|
|
76658
|
+
}
|
|
76659
|
+
return false;
|
|
76660
|
+
}
|
|
76661
|
+
var hasOwn = Object.prototype.hasOwnProperty || function(key) {
|
|
76662
|
+
return key in this;
|
|
76663
|
+
};
|
|
76664
|
+
function has(obj, key) {
|
|
76665
|
+
return hasOwn.call(obj, key);
|
|
76666
|
+
}
|
|
76667
|
+
function toStr(obj) {
|
|
76668
|
+
return objectToString2.call(obj);
|
|
76669
|
+
}
|
|
76670
|
+
function nameOf(f) {
|
|
76671
|
+
if (f.name) {
|
|
76672
|
+
return f.name;
|
|
76673
|
+
}
|
|
76674
|
+
var m = match.call(functionToString.call(f), /^function\s*([\w$]+)/);
|
|
76675
|
+
if (m) {
|
|
76676
|
+
return m[1];
|
|
76677
|
+
}
|
|
76678
|
+
return null;
|
|
76679
|
+
}
|
|
76680
|
+
function indexOf(xs, x) {
|
|
76681
|
+
if (xs.indexOf) {
|
|
76682
|
+
return xs.indexOf(x);
|
|
76683
|
+
}
|
|
76684
|
+
for (var i = 0, l = xs.length; i < l; i++) {
|
|
76685
|
+
if (xs[i] === x) {
|
|
76686
|
+
return i;
|
|
76687
|
+
}
|
|
76688
|
+
}
|
|
76689
|
+
return -1;
|
|
76690
|
+
}
|
|
76691
|
+
function isMap(x) {
|
|
76692
|
+
if (!mapSize || !x || typeof x !== "object") {
|
|
76693
|
+
return false;
|
|
76694
|
+
}
|
|
76695
|
+
try {
|
|
76696
|
+
mapSize.call(x);
|
|
76697
|
+
try {
|
|
76698
|
+
setSize.call(x);
|
|
76699
|
+
} catch (s) {
|
|
76700
|
+
return true;
|
|
76701
|
+
}
|
|
76702
|
+
return x instanceof Map;
|
|
76703
|
+
} catch (e) {
|
|
76704
|
+
}
|
|
76705
|
+
return false;
|
|
76706
|
+
}
|
|
76707
|
+
function isWeakMap(x) {
|
|
76708
|
+
if (!weakMapHas || !x || typeof x !== "object") {
|
|
76709
|
+
return false;
|
|
76710
|
+
}
|
|
76711
|
+
try {
|
|
76712
|
+
weakMapHas.call(x, weakMapHas);
|
|
76713
|
+
try {
|
|
76714
|
+
weakSetHas.call(x, weakSetHas);
|
|
76715
|
+
} catch (s) {
|
|
76716
|
+
return true;
|
|
76717
|
+
}
|
|
76718
|
+
return x instanceof WeakMap;
|
|
76719
|
+
} catch (e) {
|
|
76720
|
+
}
|
|
76721
|
+
return false;
|
|
76722
|
+
}
|
|
76723
|
+
function isWeakRef(x) {
|
|
76724
|
+
if (!weakRefDeref || !x || typeof x !== "object") {
|
|
76725
|
+
return false;
|
|
76726
|
+
}
|
|
76727
|
+
try {
|
|
76728
|
+
weakRefDeref.call(x);
|
|
76729
|
+
return true;
|
|
76730
|
+
} catch (e) {
|
|
76731
|
+
}
|
|
76732
|
+
return false;
|
|
76733
|
+
}
|
|
76734
|
+
function isSet(x) {
|
|
76735
|
+
if (!setSize || !x || typeof x !== "object") {
|
|
76736
|
+
return false;
|
|
76737
|
+
}
|
|
76738
|
+
try {
|
|
76739
|
+
setSize.call(x);
|
|
76740
|
+
try {
|
|
76741
|
+
mapSize.call(x);
|
|
76742
|
+
} catch (m) {
|
|
76743
|
+
return true;
|
|
76744
|
+
}
|
|
76745
|
+
return x instanceof Set;
|
|
76746
|
+
} catch (e) {
|
|
76747
|
+
}
|
|
76748
|
+
return false;
|
|
76749
|
+
}
|
|
76750
|
+
function isWeakSet(x) {
|
|
76751
|
+
if (!weakSetHas || !x || typeof x !== "object") {
|
|
76752
|
+
return false;
|
|
76753
|
+
}
|
|
76754
|
+
try {
|
|
76755
|
+
weakSetHas.call(x, weakSetHas);
|
|
76756
|
+
try {
|
|
76757
|
+
weakMapHas.call(x, weakMapHas);
|
|
76758
|
+
} catch (s) {
|
|
76759
|
+
return true;
|
|
76760
|
+
}
|
|
76761
|
+
return x instanceof WeakSet;
|
|
76762
|
+
} catch (e) {
|
|
76763
|
+
}
|
|
76764
|
+
return false;
|
|
76765
|
+
}
|
|
76766
|
+
function isElement(x) {
|
|
76767
|
+
if (!x || typeof x !== "object") {
|
|
76768
|
+
return false;
|
|
76769
|
+
}
|
|
76770
|
+
if (typeof HTMLElement !== "undefined" && x instanceof HTMLElement) {
|
|
76771
|
+
return true;
|
|
76772
|
+
}
|
|
76773
|
+
return typeof x.nodeName === "string" && typeof x.getAttribute === "function";
|
|
76774
|
+
}
|
|
76775
|
+
function inspectString(str, opts) {
|
|
76776
|
+
if (str.length > opts.maxStringLength) {
|
|
76777
|
+
var remaining = str.length - opts.maxStringLength;
|
|
76778
|
+
var trailer = "... " + remaining + " more character" + (remaining > 1 ? "s" : "");
|
|
76779
|
+
return inspectString(str.slice(0, opts.maxStringLength), opts) + trailer;
|
|
76780
|
+
}
|
|
76781
|
+
var s = str.replace(/(['\\])/g, "\\$1").replace(/[\x00-\x1f]/g, lowbyte);
|
|
76782
|
+
return wrapQuotes(s, "single", opts);
|
|
76783
|
+
}
|
|
76784
|
+
function lowbyte(c) {
|
|
76785
|
+
var n = c.charCodeAt(0);
|
|
76786
|
+
var x = {
|
|
76787
|
+
8: "b",
|
|
76788
|
+
9: "t",
|
|
76789
|
+
10: "n",
|
|
76790
|
+
12: "f",
|
|
76791
|
+
13: "r"
|
|
76792
|
+
}[n];
|
|
76793
|
+
if (x) {
|
|
76794
|
+
return "\\" + x;
|
|
76795
|
+
}
|
|
76796
|
+
return "\\x" + (n < 16 ? "0" : "") + n.toString(16).toUpperCase();
|
|
76797
|
+
}
|
|
76798
|
+
function markBoxed(str) {
|
|
76799
|
+
return "Object(" + str + ")";
|
|
76800
|
+
}
|
|
76801
|
+
function weakCollectionOf(type2) {
|
|
76802
|
+
return type2 + " { ? }";
|
|
76803
|
+
}
|
|
76804
|
+
function collectionOf(type2, size, entries, indent) {
|
|
76805
|
+
var joinedEntries = indent ? indentedJoin(entries, indent) : entries.join(", ");
|
|
76806
|
+
return type2 + " (" + size + ") {" + joinedEntries + "}";
|
|
76807
|
+
}
|
|
76808
|
+
function singleLineValues(xs) {
|
|
76809
|
+
for (var i = 0; i < xs.length; i++) {
|
|
76810
|
+
if (indexOf(xs[i], "\n") >= 0) {
|
|
76811
|
+
return false;
|
|
76812
|
+
}
|
|
76813
|
+
}
|
|
76814
|
+
return true;
|
|
76815
|
+
}
|
|
76816
|
+
function getIndent(opts, depth) {
|
|
76817
|
+
var baseIndent;
|
|
76818
|
+
if (opts.indent === " ") {
|
|
76819
|
+
baseIndent = " ";
|
|
76820
|
+
} else if (typeof opts.indent === "number" && opts.indent > 0) {
|
|
76821
|
+
baseIndent = Array(opts.indent + 1).join(" ");
|
|
76822
|
+
} else {
|
|
76823
|
+
return null;
|
|
76824
|
+
}
|
|
76825
|
+
return {
|
|
76826
|
+
base: baseIndent,
|
|
76827
|
+
prev: Array(depth + 1).join(baseIndent)
|
|
76828
|
+
};
|
|
76829
|
+
}
|
|
76830
|
+
function indentedJoin(xs, indent) {
|
|
76831
|
+
if (xs.length === 0) {
|
|
76832
|
+
return "";
|
|
76833
|
+
}
|
|
76834
|
+
var lineJoiner = "\n" + indent.prev + indent.base;
|
|
76835
|
+
return lineJoiner + xs.join("," + lineJoiner) + "\n" + indent.prev;
|
|
76836
|
+
}
|
|
76837
|
+
function arrObjKeys(obj, inspect2) {
|
|
76838
|
+
var isArr = isArray3(obj);
|
|
76839
|
+
var xs = [];
|
|
76840
|
+
if (isArr) {
|
|
76841
|
+
xs.length = obj.length;
|
|
76842
|
+
for (var i = 0; i < obj.length; i++) {
|
|
76843
|
+
xs[i] = has(obj, i) ? inspect2(obj[i], obj) : "";
|
|
76844
|
+
}
|
|
76845
|
+
}
|
|
76846
|
+
var syms = typeof gOPS === "function" ? gOPS(obj) : [];
|
|
76847
|
+
var symMap;
|
|
76848
|
+
if (hasShammedSymbols) {
|
|
76849
|
+
symMap = {};
|
|
76850
|
+
for (var k = 0; k < syms.length; k++) {
|
|
76851
|
+
symMap["$" + syms[k]] = syms[k];
|
|
76852
|
+
}
|
|
76853
|
+
}
|
|
76854
|
+
for (var key in obj) {
|
|
76855
|
+
if (!has(obj, key)) {
|
|
76856
|
+
continue;
|
|
76857
|
+
}
|
|
76858
|
+
if (isArr && String(Number(key)) === key && key < obj.length) {
|
|
76859
|
+
continue;
|
|
76860
|
+
}
|
|
76861
|
+
if (hasShammedSymbols && symMap["$" + key] instanceof Symbol) {
|
|
76862
|
+
continue;
|
|
76863
|
+
} else if (/[^\w$]/.test(key)) {
|
|
76864
|
+
xs.push(inspect2(key, obj) + ": " + inspect2(obj[key], obj));
|
|
76865
|
+
} else {
|
|
76866
|
+
xs.push(key + ": " + inspect2(obj[key], obj));
|
|
76867
|
+
}
|
|
76868
|
+
}
|
|
76869
|
+
if (typeof gOPS === "function") {
|
|
76870
|
+
for (var j = 0; j < syms.length; j++) {
|
|
76871
|
+
if (isEnumerable.call(obj, syms[j])) {
|
|
76872
|
+
xs.push("[" + inspect2(syms[j]) + "]: " + inspect2(obj[syms[j]], obj));
|
|
76873
|
+
}
|
|
76874
|
+
}
|
|
76875
|
+
}
|
|
76876
|
+
return xs;
|
|
76877
|
+
}
|
|
76878
|
+
}
|
|
76879
|
+
});
|
|
76880
|
+
|
|
76881
|
+
// ../../node_modules/side-channel/index.js
|
|
76882
|
+
var require_side_channel = __commonJS({
|
|
76883
|
+
"../../node_modules/side-channel/index.js"(exports2, module2) {
|
|
76884
|
+
"use strict";
|
|
76885
|
+
var GetIntrinsic = require_get_intrinsic();
|
|
76886
|
+
var callBound = require_callBound();
|
|
76887
|
+
var inspect2 = require_object_inspect();
|
|
76888
|
+
var $TypeError = GetIntrinsic("%TypeError%");
|
|
76889
|
+
var $WeakMap = GetIntrinsic("%WeakMap%", true);
|
|
76890
|
+
var $Map = GetIntrinsic("%Map%", true);
|
|
76891
|
+
var $weakMapGet = callBound("WeakMap.prototype.get", true);
|
|
76892
|
+
var $weakMapSet = callBound("WeakMap.prototype.set", true);
|
|
76893
|
+
var $weakMapHas = callBound("WeakMap.prototype.has", true);
|
|
76894
|
+
var $mapGet = callBound("Map.prototype.get", true);
|
|
76895
|
+
var $mapSet = callBound("Map.prototype.set", true);
|
|
76896
|
+
var $mapHas = callBound("Map.prototype.has", true);
|
|
76897
|
+
var listGetNode = function(list, key) {
|
|
76898
|
+
for (var prev = list, curr; (curr = prev.next) !== null; prev = curr) {
|
|
76899
|
+
if (curr.key === key) {
|
|
76900
|
+
prev.next = curr.next;
|
|
76901
|
+
curr.next = list.next;
|
|
76902
|
+
list.next = curr;
|
|
76903
|
+
return curr;
|
|
76904
|
+
}
|
|
76905
|
+
}
|
|
76906
|
+
};
|
|
76907
|
+
var listGet = function(objects, key) {
|
|
76908
|
+
var node = listGetNode(objects, key);
|
|
76909
|
+
return node && node.value;
|
|
76910
|
+
};
|
|
76911
|
+
var listSet = function(objects, key, value) {
|
|
76912
|
+
var node = listGetNode(objects, key);
|
|
76913
|
+
if (node) {
|
|
76914
|
+
node.value = value;
|
|
76915
|
+
} else {
|
|
76916
|
+
objects.next = {
|
|
76917
|
+
// eslint-disable-line no-param-reassign
|
|
76918
|
+
key,
|
|
76919
|
+
next: objects.next,
|
|
76920
|
+
value
|
|
76921
|
+
};
|
|
76922
|
+
}
|
|
76923
|
+
};
|
|
76924
|
+
var listHas = function(objects, key) {
|
|
76925
|
+
return !!listGetNode(objects, key);
|
|
76926
|
+
};
|
|
76927
|
+
module2.exports = function getSideChannel() {
|
|
76928
|
+
var $wm;
|
|
76929
|
+
var $m;
|
|
76930
|
+
var $o;
|
|
76931
|
+
var channel = {
|
|
76932
|
+
assert: function(key) {
|
|
76933
|
+
if (!channel.has(key)) {
|
|
76934
|
+
throw new $TypeError("Side channel does not contain " + inspect2(key));
|
|
76935
|
+
}
|
|
76936
|
+
},
|
|
76937
|
+
get: function(key) {
|
|
76938
|
+
if ($WeakMap && key && (typeof key === "object" || typeof key === "function")) {
|
|
76939
|
+
if ($wm) {
|
|
76940
|
+
return $weakMapGet($wm, key);
|
|
76941
|
+
}
|
|
76942
|
+
} else if ($Map) {
|
|
76943
|
+
if ($m) {
|
|
76944
|
+
return $mapGet($m, key);
|
|
76945
|
+
}
|
|
76946
|
+
} else {
|
|
76947
|
+
if ($o) {
|
|
76948
|
+
return listGet($o, key);
|
|
76949
|
+
}
|
|
76950
|
+
}
|
|
76951
|
+
},
|
|
76952
|
+
has: function(key) {
|
|
76953
|
+
if ($WeakMap && key && (typeof key === "object" || typeof key === "function")) {
|
|
76954
|
+
if ($wm) {
|
|
76955
|
+
return $weakMapHas($wm, key);
|
|
76956
|
+
}
|
|
76957
|
+
} else if ($Map) {
|
|
76958
|
+
if ($m) {
|
|
76959
|
+
return $mapHas($m, key);
|
|
76960
|
+
}
|
|
76961
|
+
} else {
|
|
76962
|
+
if ($o) {
|
|
76963
|
+
return listHas($o, key);
|
|
76964
|
+
}
|
|
76965
|
+
}
|
|
76966
|
+
return false;
|
|
76967
|
+
},
|
|
76968
|
+
set: function(key, value) {
|
|
76969
|
+
if ($WeakMap && key && (typeof key === "object" || typeof key === "function")) {
|
|
76970
|
+
if (!$wm) {
|
|
76971
|
+
$wm = new $WeakMap();
|
|
76972
|
+
}
|
|
76973
|
+
$weakMapSet($wm, key, value);
|
|
76974
|
+
} else if ($Map) {
|
|
76975
|
+
if (!$m) {
|
|
76976
|
+
$m = new $Map();
|
|
76977
|
+
}
|
|
76978
|
+
$mapSet($m, key, value);
|
|
76979
|
+
} else {
|
|
76980
|
+
if (!$o) {
|
|
76981
|
+
$o = { key: {}, next: null };
|
|
76982
|
+
}
|
|
76983
|
+
listSet($o, key, value);
|
|
76984
|
+
}
|
|
76985
|
+
}
|
|
76986
|
+
};
|
|
76987
|
+
return channel;
|
|
76988
|
+
};
|
|
76989
|
+
}
|
|
76990
|
+
});
|
|
76991
|
+
|
|
76992
|
+
// ../../node_modules/qs/lib/formats.js
|
|
76993
|
+
var require_formats = __commonJS({
|
|
76994
|
+
"../../node_modules/qs/lib/formats.js"(exports2, module2) {
|
|
76995
|
+
"use strict";
|
|
76996
|
+
var replace = String.prototype.replace;
|
|
76997
|
+
var percentTwenties = /%20/g;
|
|
76998
|
+
var Format = {
|
|
76999
|
+
RFC1738: "RFC1738",
|
|
77000
|
+
RFC3986: "RFC3986"
|
|
77001
|
+
};
|
|
77002
|
+
module2.exports = {
|
|
77003
|
+
"default": Format.RFC3986,
|
|
77004
|
+
formatters: {
|
|
77005
|
+
RFC1738: function(value) {
|
|
77006
|
+
return replace.call(value, percentTwenties, "+");
|
|
77007
|
+
},
|
|
77008
|
+
RFC3986: function(value) {
|
|
77009
|
+
return String(value);
|
|
77010
|
+
}
|
|
77011
|
+
},
|
|
77012
|
+
RFC1738: Format.RFC1738,
|
|
77013
|
+
RFC3986: Format.RFC3986
|
|
77014
|
+
};
|
|
77015
|
+
}
|
|
77016
|
+
});
|
|
77017
|
+
|
|
77018
|
+
// ../../node_modules/qs/lib/utils.js
|
|
75738
77019
|
var require_utils9 = __commonJS({
|
|
75739
|
-
"
|
|
77020
|
+
"../../node_modules/qs/lib/utils.js"(exports2, module2) {
|
|
75740
77021
|
"use strict";
|
|
77022
|
+
var formats = require_formats();
|
|
75741
77023
|
var has = Object.prototype.hasOwnProperty;
|
|
75742
77024
|
var isArray3 = Array.isArray;
|
|
75743
77025
|
var hexTable = function() {
|
|
@@ -75836,11 +77118,16 @@ var require_utils9 = __commonJS({
|
|
|
75836
77118
|
return strWithoutPlus;
|
|
75837
77119
|
}
|
|
75838
77120
|
};
|
|
75839
|
-
var encode3 = function encode4(str, defaultEncoder, charset) {
|
|
77121
|
+
var encode3 = function encode4(str, defaultEncoder, charset, kind, format4) {
|
|
75840
77122
|
if (str.length === 0) {
|
|
75841
77123
|
return str;
|
|
75842
77124
|
}
|
|
75843
|
-
var string =
|
|
77125
|
+
var string = str;
|
|
77126
|
+
if (typeof str === "symbol") {
|
|
77127
|
+
string = Symbol.prototype.toString.call(str);
|
|
77128
|
+
} else if (typeof str !== "string") {
|
|
77129
|
+
string = String(str);
|
|
77130
|
+
}
|
|
75844
77131
|
if (charset === "iso-8859-1") {
|
|
75845
77132
|
return escape(string).replace(/%u[0-9a-f]{4}/gi, function($0) {
|
|
75846
77133
|
return "%26%23" + parseInt($0.slice(2), 16) + "%3B";
|
|
@@ -75849,7 +77136,7 @@ var require_utils9 = __commonJS({
|
|
|
75849
77136
|
var out = "";
|
|
75850
77137
|
for (var i = 0; i < string.length; ++i) {
|
|
75851
77138
|
var c = string.charCodeAt(i);
|
|
75852
|
-
if (c === 45 || c === 46 || c === 95 || c === 126 || c >= 48 && c <= 57 || c >= 65 && c <= 90 || c >= 97 && c <= 122) {
|
|
77139
|
+
if (c === 45 || c === 46 || c === 95 || c === 126 || c >= 48 && c <= 57 || c >= 65 && c <= 90 || c >= 97 && c <= 122 || format4 === formats.RFC1738 && (c === 40 || c === 41)) {
|
|
75853
77140
|
out += string.charAt(i);
|
|
75854
77141
|
continue;
|
|
75855
77142
|
}
|
|
@@ -75902,6 +77189,16 @@ var require_utils9 = __commonJS({
|
|
|
75902
77189
|
var combine = function combine2(a, b) {
|
|
75903
77190
|
return [].concat(a, b);
|
|
75904
77191
|
};
|
|
77192
|
+
var maybeMap = function maybeMap2(val2, fn2) {
|
|
77193
|
+
if (isArray3(val2)) {
|
|
77194
|
+
var mapped = [];
|
|
77195
|
+
for (var i = 0; i < val2.length; i += 1) {
|
|
77196
|
+
mapped.push(fn2(val2[i]));
|
|
77197
|
+
}
|
|
77198
|
+
return mapped;
|
|
77199
|
+
}
|
|
77200
|
+
return fn2(val2);
|
|
77201
|
+
};
|
|
75905
77202
|
module2.exports = {
|
|
75906
77203
|
arrayToObject: arrayToObject2,
|
|
75907
77204
|
assign: assign2,
|
|
@@ -75911,43 +77208,17 @@ var require_utils9 = __commonJS({
|
|
|
75911
77208
|
encode: encode3,
|
|
75912
77209
|
isBuffer: isBuffer2,
|
|
75913
77210
|
isRegExp: isRegExp2,
|
|
77211
|
+
maybeMap,
|
|
75914
77212
|
merge: merge3
|
|
75915
77213
|
};
|
|
75916
77214
|
}
|
|
75917
77215
|
});
|
|
75918
77216
|
|
|
75919
|
-
//
|
|
75920
|
-
var require_formats = __commonJS({
|
|
75921
|
-
"../lib/odata-client/node_modules/qs/lib/formats.js"(exports2, module2) {
|
|
75922
|
-
"use strict";
|
|
75923
|
-
var replace = String.prototype.replace;
|
|
75924
|
-
var percentTwenties = /%20/g;
|
|
75925
|
-
var util4 = require_utils9();
|
|
75926
|
-
var Format = {
|
|
75927
|
-
RFC1738: "RFC1738",
|
|
75928
|
-
RFC3986: "RFC3986"
|
|
75929
|
-
};
|
|
75930
|
-
module2.exports = util4.assign(
|
|
75931
|
-
{
|
|
75932
|
-
"default": Format.RFC3986,
|
|
75933
|
-
formatters: {
|
|
75934
|
-
RFC1738: function(value) {
|
|
75935
|
-
return replace.call(value, percentTwenties, "+");
|
|
75936
|
-
},
|
|
75937
|
-
RFC3986: function(value) {
|
|
75938
|
-
return String(value);
|
|
75939
|
-
}
|
|
75940
|
-
}
|
|
75941
|
-
},
|
|
75942
|
-
Format
|
|
75943
|
-
);
|
|
75944
|
-
}
|
|
75945
|
-
});
|
|
75946
|
-
|
|
75947
|
-
// ../lib/odata-client/node_modules/qs/lib/stringify.js
|
|
77217
|
+
// ../../node_modules/qs/lib/stringify.js
|
|
75948
77218
|
var require_stringify4 = __commonJS({
|
|
75949
|
-
"
|
|
77219
|
+
"../../node_modules/qs/lib/stringify.js"(exports2, module2) {
|
|
75950
77220
|
"use strict";
|
|
77221
|
+
var getSideChannel = require_side_channel();
|
|
75951
77222
|
var utils = require_utils9();
|
|
75952
77223
|
var formats = require_formats();
|
|
75953
77224
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -75990,33 +77261,59 @@ var require_stringify4 = __commonJS({
|
|
|
75990
77261
|
skipNulls: false,
|
|
75991
77262
|
strictNullHandling: false
|
|
75992
77263
|
};
|
|
75993
|
-
var
|
|
77264
|
+
var isNonNullishPrimitive = function isNonNullishPrimitive2(v) {
|
|
77265
|
+
return typeof v === "string" || typeof v === "number" || typeof v === "boolean" || typeof v === "symbol" || typeof v === "bigint";
|
|
77266
|
+
};
|
|
77267
|
+
var sentinel = {};
|
|
77268
|
+
var stringify2 = function stringify3(object, prefix, generateArrayPrefix, commaRoundTrip, strictNullHandling, skipNulls, encoder, filter2, sort, allowDots, serializeDate, format4, formatter, encodeValuesOnly, charset, sideChannel) {
|
|
75994
77269
|
var obj = object;
|
|
77270
|
+
var tmpSc = sideChannel;
|
|
77271
|
+
var step = 0;
|
|
77272
|
+
var findFlag = false;
|
|
77273
|
+
while ((tmpSc = tmpSc.get(sentinel)) !== void 0 && !findFlag) {
|
|
77274
|
+
var pos = tmpSc.get(object);
|
|
77275
|
+
step += 1;
|
|
77276
|
+
if (typeof pos !== "undefined") {
|
|
77277
|
+
if (pos === step) {
|
|
77278
|
+
throw new RangeError("Cyclic object value");
|
|
77279
|
+
} else {
|
|
77280
|
+
findFlag = true;
|
|
77281
|
+
}
|
|
77282
|
+
}
|
|
77283
|
+
if (typeof tmpSc.get(sentinel) === "undefined") {
|
|
77284
|
+
step = 0;
|
|
77285
|
+
}
|
|
77286
|
+
}
|
|
75995
77287
|
if (typeof filter2 === "function") {
|
|
75996
77288
|
obj = filter2(prefix, obj);
|
|
75997
77289
|
} else if (obj instanceof Date) {
|
|
75998
77290
|
obj = serializeDate(obj);
|
|
75999
77291
|
} else if (generateArrayPrefix === "comma" && isArray3(obj)) {
|
|
76000
|
-
obj =
|
|
77292
|
+
obj = utils.maybeMap(obj, function(value2) {
|
|
77293
|
+
if (value2 instanceof Date) {
|
|
77294
|
+
return serializeDate(value2);
|
|
77295
|
+
}
|
|
77296
|
+
return value2;
|
|
77297
|
+
});
|
|
76001
77298
|
}
|
|
76002
77299
|
if (obj === null) {
|
|
76003
77300
|
if (strictNullHandling) {
|
|
76004
|
-
return encoder && !encodeValuesOnly ? encoder(prefix, defaults2.encoder, charset) : prefix;
|
|
77301
|
+
return encoder && !encodeValuesOnly ? encoder(prefix, defaults2.encoder, charset, "key", format4) : prefix;
|
|
76005
77302
|
}
|
|
76006
77303
|
obj = "";
|
|
76007
77304
|
}
|
|
76008
|
-
if (
|
|
77305
|
+
if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) {
|
|
76009
77306
|
if (encoder) {
|
|
76010
|
-
var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults2.encoder, charset);
|
|
77307
|
+
var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults2.encoder, charset, "key", format4);
|
|
76011
77308
|
if (generateArrayPrefix === "comma" && encodeValuesOnly) {
|
|
76012
77309
|
var valuesArray = split.call(String(obj), ",");
|
|
76013
77310
|
var valuesJoined = "";
|
|
76014
77311
|
for (var i = 0; i < valuesArray.length; ++i) {
|
|
76015
|
-
valuesJoined += (i === 0 ? "" : ",") + formatter(encoder(valuesArray[i], defaults2.encoder, charset));
|
|
77312
|
+
valuesJoined += (i === 0 ? "" : ",") + formatter(encoder(valuesArray[i], defaults2.encoder, charset, "value", format4));
|
|
76016
77313
|
}
|
|
76017
|
-
return [formatter(keyValue) + "=" + valuesJoined];
|
|
77314
|
+
return [formatter(keyValue) + (commaRoundTrip && isArray3(obj) && valuesArray.length === 1 ? "[]" : "") + "=" + valuesJoined];
|
|
76018
77315
|
}
|
|
76019
|
-
return [formatter(keyValue) + "=" + formatter(encoder(obj, defaults2.encoder, charset))];
|
|
77316
|
+
return [formatter(keyValue) + "=" + formatter(encoder(obj, defaults2.encoder, charset, "value", format4))];
|
|
76020
77317
|
}
|
|
76021
77318
|
return [formatter(prefix) + "=" + formatter(String(obj))];
|
|
76022
77319
|
}
|
|
@@ -76025,51 +77322,43 @@ var require_stringify4 = __commonJS({
|
|
|
76025
77322
|
return values;
|
|
76026
77323
|
}
|
|
76027
77324
|
var objKeys;
|
|
76028
|
-
if (isArray3(
|
|
77325
|
+
if (generateArrayPrefix === "comma" && isArray3(obj)) {
|
|
77326
|
+
objKeys = [{ value: obj.length > 0 ? obj.join(",") || null : void 0 }];
|
|
77327
|
+
} else if (isArray3(filter2)) {
|
|
76029
77328
|
objKeys = filter2;
|
|
76030
77329
|
} else {
|
|
76031
77330
|
var keys = Object.keys(obj);
|
|
76032
77331
|
objKeys = sort ? keys.sort(sort) : keys;
|
|
76033
77332
|
}
|
|
77333
|
+
var adjustedPrefix = commaRoundTrip && isArray3(obj) && obj.length === 1 ? prefix + "[]" : prefix;
|
|
76034
77334
|
for (var j = 0; j < objKeys.length; ++j) {
|
|
76035
77335
|
var key = objKeys[j];
|
|
76036
77336
|
var value = typeof key === "object" && typeof key.value !== "undefined" ? key.value : obj[key];
|
|
76037
|
-
if (skipNulls &&
|
|
77337
|
+
if (skipNulls && value === null) {
|
|
76038
77338
|
continue;
|
|
76039
77339
|
}
|
|
76040
|
-
|
|
76041
|
-
|
|
76042
|
-
|
|
76043
|
-
|
|
76044
|
-
|
|
76045
|
-
|
|
76046
|
-
|
|
76047
|
-
|
|
76048
|
-
|
|
76049
|
-
|
|
76050
|
-
|
|
76051
|
-
|
|
76052
|
-
|
|
76053
|
-
|
|
76054
|
-
|
|
76055
|
-
|
|
76056
|
-
|
|
76057
|
-
|
|
76058
|
-
|
|
76059
|
-
|
|
76060
|
-
|
|
76061
|
-
|
|
76062
|
-
skipNulls,
|
|
76063
|
-
encoder,
|
|
76064
|
-
filter2,
|
|
76065
|
-
sort,
|
|
76066
|
-
allowDots,
|
|
76067
|
-
serializeDate,
|
|
76068
|
-
formatter,
|
|
76069
|
-
encodeValuesOnly,
|
|
76070
|
-
charset
|
|
76071
|
-
));
|
|
76072
|
-
}
|
|
77340
|
+
var keyPrefix = isArray3(obj) ? typeof generateArrayPrefix === "function" ? generateArrayPrefix(adjustedPrefix, key) : adjustedPrefix : adjustedPrefix + (allowDots ? "." + key : "[" + key + "]");
|
|
77341
|
+
sideChannel.set(object, step);
|
|
77342
|
+
var valueSideChannel = getSideChannel();
|
|
77343
|
+
valueSideChannel.set(sentinel, sideChannel);
|
|
77344
|
+
pushToArray(values, stringify3(
|
|
77345
|
+
value,
|
|
77346
|
+
keyPrefix,
|
|
77347
|
+
generateArrayPrefix,
|
|
77348
|
+
commaRoundTrip,
|
|
77349
|
+
strictNullHandling,
|
|
77350
|
+
skipNulls,
|
|
77351
|
+
encoder,
|
|
77352
|
+
filter2,
|
|
77353
|
+
sort,
|
|
77354
|
+
allowDots,
|
|
77355
|
+
serializeDate,
|
|
77356
|
+
format4,
|
|
77357
|
+
formatter,
|
|
77358
|
+
encodeValuesOnly,
|
|
77359
|
+
charset,
|
|
77360
|
+
valueSideChannel
|
|
77361
|
+
));
|
|
76073
77362
|
}
|
|
76074
77363
|
return values;
|
|
76075
77364
|
};
|
|
@@ -76106,6 +77395,7 @@ var require_stringify4 = __commonJS({
|
|
|
76106
77395
|
encoder: typeof opts.encoder === "function" ? opts.encoder : defaults2.encoder,
|
|
76107
77396
|
encodeValuesOnly: typeof opts.encodeValuesOnly === "boolean" ? opts.encodeValuesOnly : defaults2.encodeValuesOnly,
|
|
76108
77397
|
filter: filter2,
|
|
77398
|
+
format: format4,
|
|
76109
77399
|
formatter,
|
|
76110
77400
|
serializeDate: typeof opts.serializeDate === "function" ? opts.serializeDate : defaults2.serializeDate,
|
|
76111
77401
|
skipNulls: typeof opts.skipNulls === "boolean" ? opts.skipNulls : defaults2.skipNulls,
|
|
@@ -76138,12 +77428,17 @@ var require_stringify4 = __commonJS({
|
|
|
76138
77428
|
arrayFormat = "indices";
|
|
76139
77429
|
}
|
|
76140
77430
|
var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];
|
|
77431
|
+
if (opts && "commaRoundTrip" in opts && typeof opts.commaRoundTrip !== "boolean") {
|
|
77432
|
+
throw new TypeError("`commaRoundTrip` must be a boolean, or absent");
|
|
77433
|
+
}
|
|
77434
|
+
var commaRoundTrip = generateArrayPrefix === "comma" && opts && opts.commaRoundTrip;
|
|
76141
77435
|
if (!objKeys) {
|
|
76142
77436
|
objKeys = Object.keys(obj);
|
|
76143
77437
|
}
|
|
76144
77438
|
if (options2.sort) {
|
|
76145
77439
|
objKeys.sort(options2.sort);
|
|
76146
77440
|
}
|
|
77441
|
+
var sideChannel = getSideChannel();
|
|
76147
77442
|
for (var i = 0; i < objKeys.length; ++i) {
|
|
76148
77443
|
var key = objKeys[i];
|
|
76149
77444
|
if (options2.skipNulls && obj[key] === null) {
|
|
@@ -76153,6 +77448,7 @@ var require_stringify4 = __commonJS({
|
|
|
76153
77448
|
obj[key],
|
|
76154
77449
|
key,
|
|
76155
77450
|
generateArrayPrefix,
|
|
77451
|
+
commaRoundTrip,
|
|
76156
77452
|
options2.strictNullHandling,
|
|
76157
77453
|
options2.skipNulls,
|
|
76158
77454
|
options2.encode ? options2.encoder : null,
|
|
@@ -76160,9 +77456,11 @@ var require_stringify4 = __commonJS({
|
|
|
76160
77456
|
options2.sort,
|
|
76161
77457
|
options2.allowDots,
|
|
76162
77458
|
options2.serializeDate,
|
|
77459
|
+
options2.format,
|
|
76163
77460
|
options2.formatter,
|
|
76164
77461
|
options2.encodeValuesOnly,
|
|
76165
|
-
options2.charset
|
|
77462
|
+
options2.charset,
|
|
77463
|
+
sideChannel
|
|
76166
77464
|
));
|
|
76167
77465
|
}
|
|
76168
77466
|
var joined = keys.join(options2.delimiter);
|
|
@@ -76179,9 +77477,9 @@ var require_stringify4 = __commonJS({
|
|
|
76179
77477
|
}
|
|
76180
77478
|
});
|
|
76181
77479
|
|
|
76182
|
-
//
|
|
77480
|
+
// ../../node_modules/qs/lib/parse.js
|
|
76183
77481
|
var require_parse6 = __commonJS({
|
|
76184
|
-
"
|
|
77482
|
+
"../../node_modules/qs/lib/parse.js"(exports2, module2) {
|
|
76185
77483
|
"use strict";
|
|
76186
77484
|
var utils = require_utils9();
|
|
76187
77485
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -76189,6 +77487,7 @@ var require_parse6 = __commonJS({
|
|
|
76189
77487
|
var defaults2 = {
|
|
76190
77488
|
allowDots: false,
|
|
76191
77489
|
allowPrototypes: false,
|
|
77490
|
+
allowSparse: false,
|
|
76192
77491
|
arrayLimit: 20,
|
|
76193
77492
|
charset: "utf-8",
|
|
76194
77493
|
charsetSentinel: false,
|
|
@@ -76214,16 +77513,6 @@ var require_parse6 = __commonJS({
|
|
|
76214
77513
|
}
|
|
76215
77514
|
return val2;
|
|
76216
77515
|
};
|
|
76217
|
-
var maybeMap = function maybeMap2(val2, fn2) {
|
|
76218
|
-
if (isArray3(val2)) {
|
|
76219
|
-
var mapped = [];
|
|
76220
|
-
for (var i = 0; i < val2.length; i += 1) {
|
|
76221
|
-
mapped.push(fn2(val2[i]));
|
|
76222
|
-
}
|
|
76223
|
-
return mapped;
|
|
76224
|
-
}
|
|
76225
|
-
return fn2(val2);
|
|
76226
|
-
};
|
|
76227
77516
|
var isoSentinel = "utf8=%26%2310003%3B";
|
|
76228
77517
|
var charsetSentinel = "utf8=%E2%9C%93";
|
|
76229
77518
|
var parseValues = function parseQueryStringValues(str, options2) {
|
|
@@ -76256,14 +77545,14 @@ var require_parse6 = __commonJS({
|
|
|
76256
77545
|
var pos = bracketEqualsPos === -1 ? part.indexOf("=") : bracketEqualsPos + 1;
|
|
76257
77546
|
var key, val2;
|
|
76258
77547
|
if (pos === -1) {
|
|
76259
|
-
key = options2.decoder(part, defaults2.decoder, charset);
|
|
77548
|
+
key = options2.decoder(part, defaults2.decoder, charset, "key");
|
|
76260
77549
|
val2 = options2.strictNullHandling ? null : "";
|
|
76261
77550
|
} else {
|
|
76262
|
-
key = options2.decoder(part.slice(0, pos), defaults2.decoder, charset);
|
|
76263
|
-
val2 = maybeMap(
|
|
77551
|
+
key = options2.decoder(part.slice(0, pos), defaults2.decoder, charset, "key");
|
|
77552
|
+
val2 = utils.maybeMap(
|
|
76264
77553
|
parseArrayValue(part.slice(pos + 1), options2),
|
|
76265
77554
|
function(encodedVal) {
|
|
76266
|
-
return options2.decoder(encodedVal, defaults2.decoder, charset);
|
|
77555
|
+
return options2.decoder(encodedVal, defaults2.decoder, charset, "value");
|
|
76267
77556
|
}
|
|
76268
77557
|
);
|
|
76269
77558
|
}
|
|
@@ -76312,7 +77601,7 @@ var require_parse6 = __commonJS({
|
|
|
76312
77601
|
var key = options2.allowDots ? givenKey.replace(/\.([^.[]+)/g, "[$1]") : givenKey;
|
|
76313
77602
|
var brackets = /(\[[^[\]]*])/;
|
|
76314
77603
|
var child = /(\[[^[\]]*])/g;
|
|
76315
|
-
var segment = brackets.exec(key);
|
|
77604
|
+
var segment = options2.depth > 0 && brackets.exec(key);
|
|
76316
77605
|
var parent = segment ? key.slice(0, segment.index) : key;
|
|
76317
77606
|
var keys = [];
|
|
76318
77607
|
if (parent) {
|
|
@@ -76324,7 +77613,7 @@ var require_parse6 = __commonJS({
|
|
|
76324
77613
|
keys.push(parent);
|
|
76325
77614
|
}
|
|
76326
77615
|
var i = 0;
|
|
76327
|
-
while ((segment = child.exec(key)) !== null && i < options2.depth) {
|
|
77616
|
+
while (options2.depth > 0 && (segment = child.exec(key)) !== null && i < options2.depth) {
|
|
76328
77617
|
i += 1;
|
|
76329
77618
|
if (!options2.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) {
|
|
76330
77619
|
if (!options2.allowPrototypes) {
|
|
@@ -76352,13 +77641,15 @@ var require_parse6 = __commonJS({
|
|
|
76352
77641
|
return {
|
|
76353
77642
|
allowDots: typeof opts.allowDots === "undefined" ? defaults2.allowDots : !!opts.allowDots,
|
|
76354
77643
|
allowPrototypes: typeof opts.allowPrototypes === "boolean" ? opts.allowPrototypes : defaults2.allowPrototypes,
|
|
77644
|
+
allowSparse: typeof opts.allowSparse === "boolean" ? opts.allowSparse : defaults2.allowSparse,
|
|
76355
77645
|
arrayLimit: typeof opts.arrayLimit === "number" ? opts.arrayLimit : defaults2.arrayLimit,
|
|
76356
77646
|
charset,
|
|
76357
77647
|
charsetSentinel: typeof opts.charsetSentinel === "boolean" ? opts.charsetSentinel : defaults2.charsetSentinel,
|
|
76358
77648
|
comma: typeof opts.comma === "boolean" ? opts.comma : defaults2.comma,
|
|
76359
77649
|
decoder: typeof opts.decoder === "function" ? opts.decoder : defaults2.decoder,
|
|
76360
77650
|
delimiter: typeof opts.delimiter === "string" || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults2.delimiter,
|
|
76361
|
-
|
|
77651
|
+
// eslint-disable-next-line no-implicit-coercion, no-extra-parens
|
|
77652
|
+
depth: typeof opts.depth === "number" || opts.depth === false ? +opts.depth : defaults2.depth,
|
|
76362
77653
|
ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
|
|
76363
77654
|
interpretNumericEntities: typeof opts.interpretNumericEntities === "boolean" ? opts.interpretNumericEntities : defaults2.interpretNumericEntities,
|
|
76364
77655
|
parameterLimit: typeof opts.parameterLimit === "number" ? opts.parameterLimit : defaults2.parameterLimit,
|
|
@@ -76380,14 +77671,17 @@ var require_parse6 = __commonJS({
|
|
|
76380
77671
|
var newObj = parseKeys(key, tempObj[key], options2, typeof str === "string");
|
|
76381
77672
|
obj = utils.merge(obj, newObj, options2);
|
|
76382
77673
|
}
|
|
77674
|
+
if (options2.allowSparse === true) {
|
|
77675
|
+
return obj;
|
|
77676
|
+
}
|
|
76383
77677
|
return utils.compact(obj);
|
|
76384
77678
|
};
|
|
76385
77679
|
}
|
|
76386
77680
|
});
|
|
76387
77681
|
|
|
76388
|
-
//
|
|
77682
|
+
// ../../node_modules/qs/lib/index.js
|
|
76389
77683
|
var require_lib4 = __commonJS({
|
|
76390
|
-
"
|
|
77684
|
+
"../../node_modules/qs/lib/index.js"(exports2, module2) {
|
|
76391
77685
|
"use strict";
|
|
76392
77686
|
var stringify2 = require_stringify4();
|
|
76393
77687
|
var parse4 = require_parse6();
|
|
@@ -76927,9 +78221,9 @@ var require_odata_service = __commonJS({
|
|
|
76927
78221
|
}
|
|
76928
78222
|
});
|
|
76929
78223
|
|
|
76930
|
-
// ../../node_modules
|
|
78224
|
+
// ../../node_modules/open/index.js
|
|
76931
78225
|
var require_open2 = __commonJS({
|
|
76932
|
-
"../../node_modules
|
|
78226
|
+
"../../node_modules/open/index.js"(exports2, module2) {
|
|
76933
78227
|
"use strict";
|
|
76934
78228
|
var { promisify: promisify2 } = require("util");
|
|
76935
78229
|
var path4 = require("path");
|
|
@@ -79688,6 +80982,22 @@ var require_v2_catalog_service = __commonJS({
|
|
|
79688
80982
|
this.entitySet = doc.EntitySets.includes(V2_RECOMMENDED_ENTITYSET) ? V2_RECOMMENDED_ENTITYSET : V2_CLASSIC_ENTITYSET;
|
|
79689
80983
|
});
|
|
79690
80984
|
}
|
|
80985
|
+
/**
|
|
80986
|
+
* Returns the service path for the provided serivce URL.
|
|
80987
|
+
*
|
|
80988
|
+
* @param serviceUrl - service url (may be full service url or service path)
|
|
80989
|
+
* @param baseUrl - base url for the odata service
|
|
80990
|
+
* @returns - service path
|
|
80991
|
+
*/
|
|
80992
|
+
getServicePath(serviceUrl, baseUrl) {
|
|
80993
|
+
let parsedUrl;
|
|
80994
|
+
try {
|
|
80995
|
+
parsedUrl = new URL(serviceUrl);
|
|
80996
|
+
} catch (_a3) {
|
|
80997
|
+
parsedUrl = new URL(serviceUrl, baseUrl);
|
|
80998
|
+
}
|
|
80999
|
+
return parsedUrl.pathname;
|
|
81000
|
+
}
|
|
79691
81001
|
/**
|
|
79692
81002
|
* Map the V2 service information to a version independent structure.
|
|
79693
81003
|
*
|
|
@@ -79696,10 +81006,11 @@ var require_v2_catalog_service = __commonJS({
|
|
|
79696
81006
|
*/
|
|
79697
81007
|
mapServices(services) {
|
|
79698
81008
|
return services.map((service) => {
|
|
81009
|
+
const path4 = this.getServicePath(service.ServiceUrl, this.defaults.baseURL);
|
|
79699
81010
|
return {
|
|
79700
81011
|
id: service.ID,
|
|
79701
81012
|
name: service.TechnicalServiceName,
|
|
79702
|
-
path:
|
|
81013
|
+
path: path4,
|
|
79703
81014
|
serviceVersion: service.TechnicalServiceVersion + "",
|
|
79704
81015
|
odataVersion: odata_service_1.ODataVersion.v2
|
|
79705
81016
|
};
|
|
@@ -79758,7 +81069,8 @@ var require_v2_catalog_service = __commonJS({
|
|
|
79758
81069
|
$format: "json",
|
|
79759
81070
|
$filter: `Title eq '${title}' and TechnicalServiceVersion eq ${version}`
|
|
79760
81071
|
};
|
|
79761
|
-
const
|
|
81072
|
+
const requestPath = this.entitySet ? `/${this.entitySet}` : "/ServiceCollection";
|
|
81073
|
+
const response = yield this.get(requestPath, { params });
|
|
79762
81074
|
const services = response.odata();
|
|
79763
81075
|
if (services.length > 1) {
|
|
79764
81076
|
const servicesWithSameNameSpace = services.filter((service) => {
|
|
@@ -79786,9 +81098,6 @@ var require_v2_catalog_service = __commonJS({
|
|
|
79786
81098
|
*/
|
|
79787
81099
|
getServiceAnnotations({ id, title, path: path4 }) {
|
|
79788
81100
|
return __awaiter9(this, void 0, void 0, function* () {
|
|
79789
|
-
if (!this.entitySet) {
|
|
79790
|
-
yield this.determineEntitySet();
|
|
79791
|
-
}
|
|
79792
81101
|
if (!id) {
|
|
79793
81102
|
const ServiceConfig = yield this.findService({ title, path: path4 });
|
|
79794
81103
|
if (ServiceConfig) {
|
|
@@ -79796,7 +81105,7 @@ var require_v2_catalog_service = __commonJS({
|
|
|
79796
81105
|
}
|
|
79797
81106
|
}
|
|
79798
81107
|
if (id) {
|
|
79799
|
-
const response = yield this.get(
|
|
81108
|
+
const response = yield this.get(`/ServiceCollection('${encodeURIComponent(id)}')/Annotations`, {
|
|
79800
81109
|
params: { $format: "json" }
|
|
79801
81110
|
});
|
|
79802
81111
|
return response.odata();
|
|
@@ -91029,11 +92338,12 @@ var require_generator_service = __commonJS({
|
|
|
91029
92338
|
Accept: "application/atom+xml;type=feed"
|
|
91030
92339
|
},
|
|
91031
92340
|
params: {
|
|
91032
|
-
referencedObject: `/sap/bc/adt/bo/behaviordefinitions/${businessObjectName.toLocaleLowerCase()}
|
|
92341
|
+
referencedObject: `/sap/bc/adt/bo/behaviordefinitions/${businessObjectName.toLocaleLowerCase()}`,
|
|
92342
|
+
type: "webapi"
|
|
91033
92343
|
}
|
|
91034
92344
|
});
|
|
91035
92345
|
const data2 = (_a3 = this.parseResponse(response.data).feed) === null || _a3 === void 0 ? void 0 : _a3.entry;
|
|
91036
|
-
if ((data2 === null || data2 === void 0 ? void 0 : data2.id) === "ui-service"
|
|
92346
|
+
if ((data2 === null || data2 === void 0 ? void 0 : data2.id) === "published-ui-service") {
|
|
91037
92347
|
return data2;
|
|
91038
92348
|
} else {
|
|
91039
92349
|
throw new Error("UI Service Generator not found");
|
|
@@ -91049,88 +92359,6 @@ var require_generator_service = __commonJS({
|
|
|
91049
92359
|
}
|
|
91050
92360
|
});
|
|
91051
92361
|
|
|
91052
|
-
// ../../node_modules/@sap-ux/axios-extension/dist/abap/adt-catalog/services/publish-service.js
|
|
91053
|
-
var require_publish_service = __commonJS({
|
|
91054
|
-
"../../node_modules/@sap-ux/axios-extension/dist/abap/adt-catalog/services/publish-service.js"(exports2) {
|
|
91055
|
-
"use strict";
|
|
91056
|
-
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
91057
|
-
function adopt(value) {
|
|
91058
|
-
return value instanceof P ? value : new P(function(resolve) {
|
|
91059
|
-
resolve(value);
|
|
91060
|
-
});
|
|
91061
|
-
}
|
|
91062
|
-
return new (P || (P = Promise))(function(resolve, reject) {
|
|
91063
|
-
function fulfilled(value) {
|
|
91064
|
-
try {
|
|
91065
|
-
step(generator.next(value));
|
|
91066
|
-
} catch (e) {
|
|
91067
|
-
reject(e);
|
|
91068
|
-
}
|
|
91069
|
-
}
|
|
91070
|
-
function rejected(value) {
|
|
91071
|
-
try {
|
|
91072
|
-
step(generator["throw"](value));
|
|
91073
|
-
} catch (e) {
|
|
91074
|
-
reject(e);
|
|
91075
|
-
}
|
|
91076
|
-
}
|
|
91077
|
-
function step(result2) {
|
|
91078
|
-
result2.done ? resolve(result2.value) : adopt(result2.value).then(fulfilled, rejected);
|
|
91079
|
-
}
|
|
91080
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
91081
|
-
});
|
|
91082
|
-
};
|
|
91083
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
91084
|
-
exports2.PublishService = void 0;
|
|
91085
|
-
var adt_service_1 = require_adt_service();
|
|
91086
|
-
var PublishService = class _PublishService extends adt_service_1.AdtService {
|
|
91087
|
-
/**
|
|
91088
|
-
* Get ADT scheme ID.
|
|
91089
|
-
*
|
|
91090
|
-
* @returns AdtCategory
|
|
91091
|
-
*/
|
|
91092
|
-
static getAdtCatagory() {
|
|
91093
|
-
return _PublishService.adtCategory;
|
|
91094
|
-
}
|
|
91095
|
-
/**
|
|
91096
|
-
* Build the service binding content, used in the publish request.
|
|
91097
|
-
*
|
|
91098
|
-
* @param serviceType - The service type.
|
|
91099
|
-
* @param serviceBindingName - The service binding name.
|
|
91100
|
-
* @returns The service binding content.
|
|
91101
|
-
*/
|
|
91102
|
-
buildServiceBindingContent(serviceType, serviceBindingName) {
|
|
91103
|
-
return `<?xml version="1.0" encoding="UTF-8"?><adtcore:objectReferences xmlns:adtcore="http://www.sap.com/adt/core"><adtcore:objectReference adtcore:type="${serviceType}" adtcore:name="${serviceBindingName}"/></adtcore:objectReferences>`;
|
|
91104
|
-
}
|
|
91105
|
-
/**
|
|
91106
|
-
* Publish the service binding.
|
|
91107
|
-
*
|
|
91108
|
-
* @param type - The type of the service binding.
|
|
91109
|
-
* @param bindingName - The name of the service binding.
|
|
91110
|
-
* @returns The response status message.
|
|
91111
|
-
*/
|
|
91112
|
-
publish(type2, bindingName) {
|
|
91113
|
-
return __awaiter9(this, void 0, void 0, function* () {
|
|
91114
|
-
const content = this.buildServiceBindingContent(type2, bindingName);
|
|
91115
|
-
const response = yield this.post(`/publishjobs`, content, {
|
|
91116
|
-
headers: {
|
|
91117
|
-
"Content-Type": "application/xml",
|
|
91118
|
-
Accept: "application/xml, application/vnd.sap.as+xml;charset=UTF-8;dataname=com.sap.adt.StatusMessage"
|
|
91119
|
-
}
|
|
91120
|
-
});
|
|
91121
|
-
const data2 = this.parseResponse(response.data);
|
|
91122
|
-
return data2["abap"]["values"]["DATA"];
|
|
91123
|
-
});
|
|
91124
|
-
}
|
|
91125
|
-
};
|
|
91126
|
-
exports2.PublishService = PublishService;
|
|
91127
|
-
PublishService.adtCategory = {
|
|
91128
|
-
scheme: "http://www.sap.com/categories/servicebindings/bindingtypes",
|
|
91129
|
-
term: "ODataV4"
|
|
91130
|
-
};
|
|
91131
|
-
}
|
|
91132
|
-
});
|
|
91133
|
-
|
|
91134
92362
|
// ../../node_modules/@sap-ux/axios-extension/dist/abap/adt-catalog/services/businessobjects-service.js
|
|
91135
92363
|
var require_businessobjects_service = __commonJS({
|
|
91136
92364
|
"../../node_modules/@sap-ux/axios-extension/dist/abap/adt-catalog/services/businessobjects-service.js"(exports2) {
|
|
@@ -91234,7 +92462,7 @@ var require_services2 = __commonJS({
|
|
|
91234
92462
|
"../../node_modules/@sap-ux/axios-extension/dist/abap/adt-catalog/services/index.js"(exports2) {
|
|
91235
92463
|
"use strict";
|
|
91236
92464
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
91237
|
-
exports2.BusinessObjectsService = exports2.
|
|
92465
|
+
exports2.BusinessObjectsService = exports2.GeneratorService = exports2.FileStoreService = exports2.ListPackageService = exports2.TransportRequestService = exports2.TransportChecksService = exports2.AtoService = exports2.AdtService = void 0;
|
|
91238
92466
|
var adt_service_1 = require_adt_service();
|
|
91239
92467
|
Object.defineProperty(exports2, "AdtService", { enumerable: true, get: function() {
|
|
91240
92468
|
return adt_service_1.AdtService;
|
|
@@ -91263,10 +92491,6 @@ var require_services2 = __commonJS({
|
|
|
91263
92491
|
Object.defineProperty(exports2, "GeneratorService", { enumerable: true, get: function() {
|
|
91264
92492
|
return generator_service_1.GeneratorService;
|
|
91265
92493
|
} });
|
|
91266
|
-
var publish_service_1 = require_publish_service();
|
|
91267
|
-
Object.defineProperty(exports2, "PublishService", { enumerable: true, get: function() {
|
|
91268
|
-
return publish_service_1.PublishService;
|
|
91269
|
-
} });
|
|
91270
92494
|
var businessobjects_service_1 = require_businessobjects_service();
|
|
91271
92495
|
Object.defineProperty(exports2, "BusinessObjectsService", { enumerable: true, get: function() {
|
|
91272
92496
|
return businessobjects_service_1.BusinessObjectsService;
|
|
@@ -91318,6 +92542,24 @@ var require_ui_service_generator = __commonJS({
|
|
|
91318
92542
|
configure(_config, bo) {
|
|
91319
92543
|
this.bo = bo;
|
|
91320
92544
|
}
|
|
92545
|
+
/**
|
|
92546
|
+
* Get the schema of the service binding.
|
|
92547
|
+
*
|
|
92548
|
+
* @returns The schema of the service binding.
|
|
92549
|
+
*/
|
|
92550
|
+
getSchema() {
|
|
92551
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
92552
|
+
const response = yield this.get("/schema", {
|
|
92553
|
+
headers: {
|
|
92554
|
+
Accept: "application/vnd.sap.adt.repository.generator.schema.v1+json"
|
|
92555
|
+
},
|
|
92556
|
+
params: {
|
|
92557
|
+
referencedObject: this.bo.uri
|
|
92558
|
+
}
|
|
92559
|
+
});
|
|
92560
|
+
return JSON.parse(response.data);
|
|
92561
|
+
});
|
|
92562
|
+
}
|
|
91321
92563
|
/**
|
|
91322
92564
|
* Get the content of the service binding.
|
|
91323
92565
|
*
|
|
@@ -91346,44 +92588,69 @@ var require_ui_service_generator = __commonJS({
|
|
|
91346
92588
|
});
|
|
91347
92589
|
}
|
|
91348
92590
|
/**
|
|
91349
|
-
*
|
|
92591
|
+
* Validate the package before generation.
|
|
91350
92592
|
*
|
|
91351
|
-
* @param
|
|
91352
|
-
* @
|
|
91353
|
-
* @returns The object references.
|
|
92593
|
+
* @param pckg - The package to be validated.
|
|
92594
|
+
* @returns The response of the validation.
|
|
91354
92595
|
*/
|
|
91355
|
-
|
|
92596
|
+
validatePackage(pckg) {
|
|
91356
92597
|
return __awaiter9(this, void 0, void 0, function* () {
|
|
91357
|
-
const response = yield this.
|
|
92598
|
+
const response = yield this.get("/validation", {
|
|
92599
|
+
headers: {
|
|
92600
|
+
Accept: "application/vnd.sap.adt.validationMessages.v1+xml"
|
|
92601
|
+
},
|
|
92602
|
+
params: {
|
|
92603
|
+
referencedObject: this.bo.uri,
|
|
92604
|
+
package: pckg,
|
|
92605
|
+
checks: "package"
|
|
92606
|
+
}
|
|
92607
|
+
});
|
|
92608
|
+
return this.parseResponse(response.data);
|
|
92609
|
+
});
|
|
92610
|
+
}
|
|
92611
|
+
/**
|
|
92612
|
+
* Validate the service content and package before generation.
|
|
92613
|
+
*
|
|
92614
|
+
* @param content - The content to be validated.
|
|
92615
|
+
* @returns The response of the validation.
|
|
92616
|
+
*/
|
|
92617
|
+
validateContent(content) {
|
|
92618
|
+
var _a3;
|
|
92619
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
92620
|
+
const response = yield this.post("/validation", content, {
|
|
91358
92621
|
headers: {
|
|
91359
92622
|
"Content-Type": "application/vnd.sap.adt.repository.generator.content.v1+json",
|
|
91360
|
-
Accept: "application/vnd.sap.adt.
|
|
92623
|
+
Accept: "application/vnd.sap.adt.validationMessages.v1+xml"
|
|
91361
92624
|
},
|
|
91362
92625
|
params: {
|
|
91363
92626
|
referencedObject: this.bo.uri,
|
|
91364
|
-
|
|
92627
|
+
checks: "package,referencedobject,authorization"
|
|
91365
92628
|
}
|
|
91366
92629
|
});
|
|
91367
92630
|
const data2 = this.parseResponse(response.data);
|
|
91368
|
-
return data2.
|
|
92631
|
+
return (_a3 = data2.validationMessages) === null || _a3 === void 0 ? void 0 : _a3.validationMessage;
|
|
91369
92632
|
});
|
|
91370
92633
|
}
|
|
91371
92634
|
/**
|
|
91372
|
-
*
|
|
91373
|
-
*
|
|
92635
|
+
* Generate the service binding.
|
|
92636
|
+
*
|
|
92637
|
+
* @param content - The content of the service binding.
|
|
92638
|
+
* @param transport - The transport.
|
|
92639
|
+
* @returns The object references.
|
|
91374
92640
|
*/
|
|
91375
|
-
|
|
92641
|
+
generate(content, transport) {
|
|
91376
92642
|
return __awaiter9(this, void 0, void 0, function* () {
|
|
91377
|
-
yield this.post("",
|
|
92643
|
+
const response = yield this.post("", content, {
|
|
91378
92644
|
headers: {
|
|
91379
|
-
|
|
91380
|
-
"
|
|
92645
|
+
"Content-Type": "application/vnd.sap.adt.repository.generator.content.v1+json",
|
|
92646
|
+
Accept: "application/vnd.sap.adt.repository.generator.v1+json, application/vnd.sap.as+xml;charset=UTF-8;dataname=com.sap.adt.StatusMessage"
|
|
91381
92647
|
},
|
|
91382
92648
|
params: {
|
|
91383
|
-
|
|
91384
|
-
|
|
92649
|
+
referencedObject: this.bo.uri,
|
|
92650
|
+
corrNr: transport
|
|
91385
92651
|
}
|
|
91386
92652
|
});
|
|
92653
|
+
return JSON.parse(response.data);
|
|
91387
92654
|
});
|
|
91388
92655
|
}
|
|
91389
92656
|
};
|
|
@@ -91746,6 +93013,113 @@ var require_abap = __commonJS({
|
|
|
91746
93013
|
}
|
|
91747
93014
|
});
|
|
91748
93015
|
|
|
93016
|
+
// ../../node_modules/@sap-ux/axios-extension/dist/cacerts/sap-global-root-ca.js
|
|
93017
|
+
var require_sap_global_root_ca = __commonJS({
|
|
93018
|
+
"../../node_modules/@sap-ux/axios-extension/dist/cacerts/sap-global-root-ca.js"(exports2) {
|
|
93019
|
+
"use strict";
|
|
93020
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
93021
|
+
exports2.sapGlobalRootCaCert = void 0;
|
|
93022
|
+
exports2.sapGlobalRootCaCert = `
|
|
93023
|
+
Owner: CN=SAP Global Root CA, O=SAP AG, L=Walldorf, C=DE
|
|
93024
|
+
Issuer: CN=SAP Global Root CA, O=SAP AG, L=Walldorf, C=DE
|
|
93025
|
+
Serial number: 5d03d93d31615d8f488b3970c78f1b99
|
|
93026
|
+
Valid from: Thu Apr 26 15:41:55 GMT 2012 until: Mon Apr 26 15:46:27 GMT 2032
|
|
93027
|
+
Signature algorithm name: SHA256withRSA
|
|
93028
|
+
Subject Public Key Algorithm: 4096-bit RSA key
|
|
93029
|
+
Version: 3
|
|
93030
|
+
-----BEGIN CERTIFICATE-----
|
|
93031
|
+
MIIGTDCCBDSgAwIBAgIQXQPZPTFhXY9Iizlwx48bmTANBgkqhkiG9w0BAQsFADBO
|
|
93032
|
+
MQswCQYDVQQGEwJERTERMA8GA1UEBwwIV2FsbGRvcmYxDzANBgNVBAoMBlNBUCBB
|
|
93033
|
+
RzEbMBkGA1UEAwwSU0FQIEdsb2JhbCBSb290IENBMB4XDTEyMDQyNjE1NDE1NVoX
|
|
93034
|
+
DTMyMDQyNjE1NDYyN1owTjELMAkGA1UEBhMCREUxETAPBgNVBAcMCFdhbGxkb3Jm
|
|
93035
|
+
MQ8wDQYDVQQKDAZTQVAgQUcxGzAZBgNVBAMMElNBUCBHbG9iYWwgUm9vdCBDQTCC
|
|
93036
|
+
AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAOrxJKFFA1eTrZg1Ux8ax6n/
|
|
93037
|
+
LQRHZlgLc2FZpfyAgwvkt71wLkPLiTOaRb3Bd1dyydpKcwJLy0dzGkunzNkPRSFz
|
|
93038
|
+
bKy2IPS0RS45hUCCPzhGnqQM6TcDYWeWpSUvygqujgb/cAG0mSJpvzAD3SMDQ+VJ
|
|
93039
|
+
Az5Ryq4IrP7LkfCb63LKZxLsHEkEcNKoGPsSsd4LTwuEIyM3ZHcCoA97m6hvgLWV
|
|
93040
|
+
GLzLIQMEblkswqX29z7JZH+zJopoqZB6eEogE2YpExkw52PufytEslDY3dyVubjp
|
|
93041
|
+
GlvD4T03F2zm6CYleMwgWbATLVYvk2I9WfqPAP+ln2IU9DZzegSMTWHCE+jizaiq
|
|
93042
|
+
b5f5s7m8f+cz7ndHSrz8KD/S9iNdWpuSlknHDrh+3lFTX/uWNBRs5mC/cdejcqS1
|
|
93043
|
+
v6erflyIfqPWWO6PxhIs49NL9Lix3ou6opJo+m8K757T5uP/rQ9KYALIXvl2uFP7
|
|
93044
|
+
0CqI+VGfossMlSXa1keagraW8qfplz6ffeSJQWO/+zifbfsf0tzUAC72zBuO0qvN
|
|
93045
|
+
E7rSbqAfpav/o010nKP132gbkb4uOkUfZwCuvZjA8ddsQ4udIBRj0hQlqnPLJOR1
|
|
93046
|
+
PImrAFC3PW3NgaDEo9QAJBEp5jEJmQghNvEsmzXgABebwLdI9u0VrDz4mSb6TYQC
|
|
93047
|
+
XTUaSnH3zvwAv8oMx7q7AgMBAAGjggEkMIIBIDAOBgNVHQ8BAf8EBAMCAQYwEgYD
|
|
93048
|
+
VR0TAQH/BAgwBgEB/wIBATAdBgNVHQ4EFgQUg8dB/Q4mTynBuHmOhnrhv7XXagMw
|
|
93049
|
+
gdoGA1UdIASB0jCBzzCBzAYKKwYBBAGFNgRkATCBvTAmBggrBgEFBQcCARYaaHR0
|
|
93050
|
+
cDovL3d3dy5wa2kuY28uc2FwLmNvbS8wgZIGCCsGAQUFBwICMIGFHoGCAEMAZQBy
|
|
93051
|
+
AHQAaQBmAGkAYwBhAHQAZQAgAFAAbwBsAGkAYwB5ACAAYQBuAGQAIABDAGUAcgB0
|
|
93052
|
+
AGkAZgBpAGMAYQB0AGkAbwBuACAAUAByAGEAYwB0AGkAYwBlACAAUwB0AGEAdABl
|
|
93053
|
+
AG0AZQBuAHQAIABvAGYAIABTAEEAUAAgAEEARzANBgkqhkiG9w0BAQsFAAOCAgEA
|
|
93054
|
+
0HpCIaC36me6ShB3oHDexA2a3UFcU149nZTABPKT+yUCnCQPzvK/6nJUc5I4xPfv
|
|
93055
|
+
2Q8cIlJjPNRoh9vNSF7OZGRmWQOFFrPWeqX5JA7HQPsRVURjJMeYgZWMpy4t1Tof
|
|
93056
|
+
lF13u6OY6xV6A5kQZIISFj/dOYLT3+O7wME5SItL+YsNh6BToNU0xAZt71Z8JNdY
|
|
93057
|
+
VJb2xSPMzn6bNXY8ioGzHlVxfEvzMqebV0KY7BTXR3y/Mh+v/RjXGmvZU6L/gnU7
|
|
93058
|
+
8mTRPgekYKY8JX2CXTqgfuW6QSnJ+88bHHMhMP7nPwv+YkPcsvCPBSY08ykzFATw
|
|
93059
|
+
SNoKP1/QFtERVUwrUXt3Cufz9huVysiy23dEyfAglgCCRWA+ZlaaXfieKkUWCJaE
|
|
93060
|
+
Kw/2Jqz02HDc7uXkFLS1BMYjr3WjShg1a+ulYvrBhNtseRoZT833SStlS/jzZ8Bi
|
|
93061
|
+
c1dt7UOiIZCGUIODfcZhO8l4mtjh034hdARLF0sUZhkVlosHPml5rlxh+qn8yJiJ
|
|
93062
|
+
GJ7CUQtNCDBVGksVlwew/+XnesITxrDjUMu+2297at7wjBwCnO93zr1/wsx1e2Um
|
|
93063
|
+
Xn+IfM6K/pbDar/y6uI9rHlyWu4iJ6cg7DAPJ2CCklw/YHJXhDHGwheO/qSrKtgz
|
|
93064
|
+
PGHZoN9jcvvvWDLUGtJkEotMgdFpEA2XWR83H4fVFVc=
|
|
93065
|
+
-----END CERTIFICATE-----
|
|
93066
|
+
`;
|
|
93067
|
+
}
|
|
93068
|
+
});
|
|
93069
|
+
|
|
93070
|
+
// ../../node_modules/@sap-ux/axios-extension/dist/base/patchTls.js
|
|
93071
|
+
var require_patchTls = __commonJS({
|
|
93072
|
+
"../../node_modules/@sap-ux/axios-extension/dist/base/patchTls.js"(exports2) {
|
|
93073
|
+
"use strict";
|
|
93074
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
93075
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
93076
|
+
};
|
|
93077
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
93078
|
+
exports2.TlsPatch = void 0;
|
|
93079
|
+
var tls_1 = __importDefault(require("tls"));
|
|
93080
|
+
var sap_global_root_ca_1 = require_sap_global_root_ca();
|
|
93081
|
+
var TlsPatch2 = class _TlsPatch {
|
|
93082
|
+
/**
|
|
93083
|
+
* Test if the patch is already applied.
|
|
93084
|
+
*
|
|
93085
|
+
* @returns true if the patch is already applied
|
|
93086
|
+
*/
|
|
93087
|
+
static get isPatched() {
|
|
93088
|
+
return _TlsPatch._patched;
|
|
93089
|
+
}
|
|
93090
|
+
/**
|
|
93091
|
+
* Test if the patch is required.
|
|
93092
|
+
*
|
|
93093
|
+
* @param url the url to test
|
|
93094
|
+
* @returns true if the patch is required
|
|
93095
|
+
*/
|
|
93096
|
+
static isPatchRequired(url2) {
|
|
93097
|
+
return !_TlsPatch.isPatched && url2 && (url2.includes(".sap.corp") || url2.includes(".net.sap"));
|
|
93098
|
+
}
|
|
93099
|
+
/**
|
|
93100
|
+
* Monkey patching the secure context to also support SAPs root CA.
|
|
93101
|
+
*/
|
|
93102
|
+
static apply() {
|
|
93103
|
+
if (_TlsPatch.isPatched) {
|
|
93104
|
+
return;
|
|
93105
|
+
}
|
|
93106
|
+
const origCreateSecureContext = tls_1.default.createSecureContext;
|
|
93107
|
+
tls_1.default.createSecureContext = (options2) => {
|
|
93108
|
+
const context2 = origCreateSecureContext(options2);
|
|
93109
|
+
const pem = sap_global_root_ca_1.sapGlobalRootCaCert.replace(/\r\n/g, "\n");
|
|
93110
|
+
const certs = pem.match(/-----BEGIN CERTIFICATE-----\n[\s\S]+?\n-----END CERTIFICATE-----/g);
|
|
93111
|
+
certs.forEach((cert) => {
|
|
93112
|
+
context2.context.addCACert(cert.trim());
|
|
93113
|
+
});
|
|
93114
|
+
return context2;
|
|
93115
|
+
};
|
|
93116
|
+
_TlsPatch._patched = true;
|
|
93117
|
+
}
|
|
93118
|
+
};
|
|
93119
|
+
exports2.TlsPatch = TlsPatch2;
|
|
93120
|
+
}
|
|
93121
|
+
});
|
|
93122
|
+
|
|
91749
93123
|
// ../../node_modules/@sap-ux/axios-extension/dist/factory.js
|
|
91750
93124
|
var require_factory = __commonJS({
|
|
91751
93125
|
"../../node_modules/@sap-ux/axios-extension/dist/factory.js"(exports2) {
|
|
@@ -91801,6 +93175,7 @@ var require_factory = __commonJS({
|
|
|
91801
93175
|
var service_provider_1 = require_service_provider();
|
|
91802
93176
|
var abap_1 = require_abap();
|
|
91803
93177
|
var util_1 = require("util");
|
|
93178
|
+
var patchTls_1 = require_patchTls();
|
|
91804
93179
|
function createInstance2(ProviderType, config) {
|
|
91805
93180
|
var _a3, _b2;
|
|
91806
93181
|
const providerConfig = (0, cloneDeep_1.default)(config);
|
|
@@ -91829,6 +93204,9 @@ var require_factory = __commonJS({
|
|
|
91829
93204
|
instance.cookies.addCookie(singleCookieStr.trim());
|
|
91830
93205
|
});
|
|
91831
93206
|
}
|
|
93207
|
+
if (patchTls_1.TlsPatch.isPatchRequired(config.baseURL)) {
|
|
93208
|
+
patchTls_1.TlsPatch.apply();
|
|
93209
|
+
}
|
|
91832
93210
|
return instance;
|
|
91833
93211
|
}
|
|
91834
93212
|
function create(config) {
|
|
@@ -91903,7 +93281,11 @@ var require_factory = __commonJS({
|
|
|
91903
93281
|
function createServiceForUrl(url2, config = {}) {
|
|
91904
93282
|
const urlObject = new URL(url2);
|
|
91905
93283
|
config.baseURL = urlObject.origin;
|
|
91906
|
-
|
|
93284
|
+
const searchParams = new URLSearchParams(config.params);
|
|
93285
|
+
for (const [key, val2] of urlObject.searchParams.entries()) {
|
|
93286
|
+
searchParams.append(key, val2);
|
|
93287
|
+
}
|
|
93288
|
+
config.params = searchParams;
|
|
91907
93289
|
const provider = createInstance2(service_provider_1.ServiceProvider, config);
|
|
91908
93290
|
return provider.service(urlObject.pathname);
|
|
91909
93291
|
}
|
|
@@ -92723,7 +94105,7 @@ var require_message2 = __commonJS({
|
|
|
92723
94105
|
});
|
|
92724
94106
|
|
|
92725
94107
|
// ../lib/odata-client/dist/client/patchTls.js
|
|
92726
|
-
var
|
|
94108
|
+
var require_patchTls2 = __commonJS({
|
|
92727
94109
|
"../lib/odata-client/dist/client/patchTls.js"(exports2) {
|
|
92728
94110
|
"use strict";
|
|
92729
94111
|
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
@@ -92979,7 +94361,7 @@ var require_oDataClient = __commonJS({
|
|
|
92979
94361
|
var httpClient_1 = require_httpClient();
|
|
92980
94362
|
var message_1 = require_message2();
|
|
92981
94363
|
var destination_1 = require_destination2();
|
|
92982
|
-
var patchTls_1 =
|
|
94364
|
+
var patchTls_1 = require_patchTls2();
|
|
92983
94365
|
var utils_1 = require_utils12();
|
|
92984
94366
|
var error_1 = require_error2();
|
|
92985
94367
|
var axios_debug_log_1 = __importDefault(require_axios_debug_log());
|
|
@@ -93553,7 +94935,7 @@ var require_client = __commonJS({
|
|
|
93553
94935
|
__exportStar(require_oDataClient(), exports2);
|
|
93554
94936
|
__exportStar(require_catalog2(), exports2);
|
|
93555
94937
|
__exportStar(require_message2(), exports2);
|
|
93556
|
-
__exportStar(
|
|
94938
|
+
__exportStar(require_patchTls2(), exports2);
|
|
93557
94939
|
}
|
|
93558
94940
|
});
|
|
93559
94941
|
|
|
@@ -94028,7 +95410,7 @@ var require_system = __commonJS({
|
|
|
94028
95410
|
} });
|
|
94029
95411
|
var systemStore_1 = require_systemStore();
|
|
94030
95412
|
var url_1 = require("url");
|
|
94031
|
-
var
|
|
95413
|
+
var store_1 = require_dist4();
|
|
94032
95414
|
var types_1 = require_types5();
|
|
94033
95415
|
async function listSAPSystems() {
|
|
94034
95416
|
if ((0, btp_utils_1.isAppStudio)()) {
|
|
@@ -94156,7 +95538,7 @@ var require_system = __commonJS({
|
|
|
94156
95538
|
}
|
|
94157
95539
|
exports2.newSapSystemForSteampunk = newSapSystemForSteampunk;
|
|
94158
95540
|
function newS4HCSystem({ name: name2, url: url2, unSaved = false }) {
|
|
94159
|
-
return new sapSystem_1.SapSystem(name2, { url: url2, authenticationType:
|
|
95541
|
+
return new sapSystem_1.SapSystem(name2, { url: url2, authenticationType: store_1.AuthenticationType.ReentranceTicket }, void 0, void 0, unSaved, postConnectionCallbackCreator, types_1.SapSystemType.S4HC);
|
|
94160
95542
|
}
|
|
94161
95543
|
exports2.newS4HCSystem = newS4HCSystem;
|
|
94162
95544
|
function newSapSystemForDestinaton({ destination, destinationInstance, destinationAuthType, credentials }) {
|
|
@@ -94596,6 +95978,111 @@ var require_constants7 = __commonJS({
|
|
|
94596
95978
|
}
|
|
94597
95979
|
});
|
|
94598
95980
|
|
|
95981
|
+
// ../../node_modules/@sap-ux/project-access/node_modules/json-parse-even-better-errors/lib/index.js
|
|
95982
|
+
var require_lib8 = __commonJS({
|
|
95983
|
+
"../../node_modules/@sap-ux/project-access/node_modules/json-parse-even-better-errors/lib/index.js"(exports2, module2) {
|
|
95984
|
+
"use strict";
|
|
95985
|
+
var INDENT = Symbol.for("indent");
|
|
95986
|
+
var NEWLINE = Symbol.for("newline");
|
|
95987
|
+
var DEFAULT_NEWLINE = "\n";
|
|
95988
|
+
var DEFAULT_INDENT = " ";
|
|
95989
|
+
var BOM = /^\uFEFF/;
|
|
95990
|
+
var FORMAT = /^\s*[{[]((?:\r?\n)+)([\s\t]*)/;
|
|
95991
|
+
var EMPTY = /^(?:\{\}|\[\])((?:\r?\n)+)?$/;
|
|
95992
|
+
var UNEXPECTED_TOKEN = /^Unexpected token '?(.)'?(,)? /i;
|
|
95993
|
+
var hexify = (char) => {
|
|
95994
|
+
const h = char.charCodeAt(0).toString(16).toUpperCase();
|
|
95995
|
+
return `0x${h.length % 2 ? "0" : ""}${h}`;
|
|
95996
|
+
};
|
|
95997
|
+
var stripBOM2 = (txt) => String(txt).replace(BOM, "");
|
|
95998
|
+
var makeParsedError = (msg, parsing, position = 0) => ({
|
|
95999
|
+
message: `${msg} while parsing ${parsing}`,
|
|
96000
|
+
position
|
|
96001
|
+
});
|
|
96002
|
+
var parseError = (e, txt, context2 = 20) => {
|
|
96003
|
+
let msg = e.message;
|
|
96004
|
+
if (!txt) {
|
|
96005
|
+
return makeParsedError(msg, "empty string");
|
|
96006
|
+
}
|
|
96007
|
+
const badTokenMatch = msg.match(UNEXPECTED_TOKEN);
|
|
96008
|
+
const badIndexMatch = msg.match(/ position\s+(\d+)/i);
|
|
96009
|
+
if (badTokenMatch) {
|
|
96010
|
+
msg = msg.replace(
|
|
96011
|
+
UNEXPECTED_TOKEN,
|
|
96012
|
+
`Unexpected token ${JSON.stringify(badTokenMatch[1])} (${hexify(badTokenMatch[1])})$2 `
|
|
96013
|
+
);
|
|
96014
|
+
}
|
|
96015
|
+
let errIdx;
|
|
96016
|
+
if (badIndexMatch) {
|
|
96017
|
+
errIdx = +badIndexMatch[1];
|
|
96018
|
+
} else if (msg.match(/^Unexpected end of JSON.*/i)) {
|
|
96019
|
+
errIdx = txt.length - 1;
|
|
96020
|
+
}
|
|
96021
|
+
if (errIdx == null) {
|
|
96022
|
+
return makeParsedError(msg, `'${txt.slice(0, context2 * 2)}'`);
|
|
96023
|
+
}
|
|
96024
|
+
const start = errIdx <= context2 ? 0 : errIdx - context2;
|
|
96025
|
+
const end = errIdx + context2 >= txt.length ? txt.length : errIdx + context2;
|
|
96026
|
+
const slice = `${start ? "..." : ""}${txt.slice(start, end)}${end === txt.length ? "" : "..."}`;
|
|
96027
|
+
return makeParsedError(
|
|
96028
|
+
msg,
|
|
96029
|
+
`${txt === slice ? "" : "near "}${JSON.stringify(slice)}`,
|
|
96030
|
+
errIdx
|
|
96031
|
+
);
|
|
96032
|
+
};
|
|
96033
|
+
var JSONParseError = class extends SyntaxError {
|
|
96034
|
+
constructor(er, txt, context2, caller) {
|
|
96035
|
+
const metadata = parseError(er, txt, context2);
|
|
96036
|
+
super(metadata.message);
|
|
96037
|
+
Object.assign(this, metadata);
|
|
96038
|
+
this.code = "EJSONPARSE";
|
|
96039
|
+
this.systemError = er;
|
|
96040
|
+
Error.captureStackTrace(this, caller || this.constructor);
|
|
96041
|
+
}
|
|
96042
|
+
get name() {
|
|
96043
|
+
return this.constructor.name;
|
|
96044
|
+
}
|
|
96045
|
+
set name(n) {
|
|
96046
|
+
}
|
|
96047
|
+
get [Symbol.toStringTag]() {
|
|
96048
|
+
return this.constructor.name;
|
|
96049
|
+
}
|
|
96050
|
+
};
|
|
96051
|
+
var parseJson = (txt, reviver) => {
|
|
96052
|
+
const result2 = JSON.parse(txt, reviver);
|
|
96053
|
+
if (result2 && typeof result2 === "object") {
|
|
96054
|
+
const match = txt.match(EMPTY) || txt.match(FORMAT) || [null, "", ""];
|
|
96055
|
+
result2[NEWLINE] = match[1] ?? DEFAULT_NEWLINE;
|
|
96056
|
+
result2[INDENT] = match[2] ?? DEFAULT_INDENT;
|
|
96057
|
+
}
|
|
96058
|
+
return result2;
|
|
96059
|
+
};
|
|
96060
|
+
var parseJsonError = (raw, reviver, context2) => {
|
|
96061
|
+
const txt = stripBOM2(raw);
|
|
96062
|
+
try {
|
|
96063
|
+
return parseJson(txt, reviver);
|
|
96064
|
+
} catch (e) {
|
|
96065
|
+
if (typeof raw !== "string" && !Buffer.isBuffer(raw)) {
|
|
96066
|
+
const msg = Array.isArray(raw) && raw.length === 0 ? "an empty array" : String(raw);
|
|
96067
|
+
throw Object.assign(
|
|
96068
|
+
new TypeError(`Cannot parse ${msg}`),
|
|
96069
|
+
{ code: "EJSONPARSE", systemError: e }
|
|
96070
|
+
);
|
|
96071
|
+
}
|
|
96072
|
+
throw new JSONParseError(e, txt, context2, parseJsonError);
|
|
96073
|
+
}
|
|
96074
|
+
};
|
|
96075
|
+
module2.exports = parseJsonError;
|
|
96076
|
+
parseJsonError.JSONParseError = JSONParseError;
|
|
96077
|
+
parseJsonError.noExceptions = (raw, reviver) => {
|
|
96078
|
+
try {
|
|
96079
|
+
return parseJson(stripBOM2(raw), reviver);
|
|
96080
|
+
} catch {
|
|
96081
|
+
}
|
|
96082
|
+
};
|
|
96083
|
+
}
|
|
96084
|
+
});
|
|
96085
|
+
|
|
94599
96086
|
// ../../node_modules/@sap-ux/project-access/dist/file/file-access.js
|
|
94600
96087
|
var require_file_access = __commonJS({
|
|
94601
96088
|
"../../node_modules/@sap-ux/project-access/dist/file/file-access.js"(exports2) {
|
|
@@ -94627,9 +96114,13 @@ var require_file_access = __commonJS({
|
|
|
94627
96114
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
94628
96115
|
});
|
|
94629
96116
|
};
|
|
96117
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
96118
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
96119
|
+
};
|
|
94630
96120
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
94631
|
-
exports2.fileExists = exports2.writeFile = exports2.readJSON = exports2.readFile = void 0;
|
|
96121
|
+
exports2.updateManifestJSON = exports2.updatePackageJSON = exports2.fileExists = exports2.writeFile = exports2.readJSON = exports2.readFile = void 0;
|
|
94632
96122
|
var fs_1 = require("fs");
|
|
96123
|
+
var json_parse_even_better_errors_1 = __importDefault(require_lib8());
|
|
94633
96124
|
function readFile2(path4, memFs) {
|
|
94634
96125
|
return __awaiter9(this, void 0, void 0, function* () {
|
|
94635
96126
|
if (memFs) {
|
|
@@ -94674,6 +96165,27 @@ var require_file_access = __commonJS({
|
|
|
94674
96165
|
});
|
|
94675
96166
|
}
|
|
94676
96167
|
exports2.fileExists = fileExists;
|
|
96168
|
+
function updatePackageJSON(path4, packageJson, memFs) {
|
|
96169
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
96170
|
+
yield updateJSON(path4, packageJson, memFs);
|
|
96171
|
+
});
|
|
96172
|
+
}
|
|
96173
|
+
exports2.updatePackageJSON = updatePackageJSON;
|
|
96174
|
+
function updateManifestJSON(path4, manifest, memFs) {
|
|
96175
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
96176
|
+
yield updateJSON(path4, manifest, memFs);
|
|
96177
|
+
});
|
|
96178
|
+
}
|
|
96179
|
+
exports2.updateManifestJSON = updateManifestJSON;
|
|
96180
|
+
function updateJSON(path4, content, memFs) {
|
|
96181
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
96182
|
+
const oldContentText = yield readFile2(path4, memFs);
|
|
96183
|
+
const oldContentJson = (0, json_parse_even_better_errors_1.default)(oldContentText);
|
|
96184
|
+
const indent = Symbol.for("indent");
|
|
96185
|
+
const result2 = JSON.stringify(content, null, oldContentJson[indent]) + "\n";
|
|
96186
|
+
yield writeFile(path4, result2, memFs);
|
|
96187
|
+
});
|
|
96188
|
+
}
|
|
94677
96189
|
}
|
|
94678
96190
|
});
|
|
94679
96191
|
|
|
@@ -94829,147 +96341,181 @@ var require_file_search = __commonJS({
|
|
|
94829
96341
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
94830
96342
|
});
|
|
94831
96343
|
};
|
|
94832
|
-
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
94833
|
-
return mod && mod.__esModule ? mod : { "default": mod };
|
|
94834
|
-
};
|
|
96344
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
96345
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
96346
|
+
};
|
|
96347
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
96348
|
+
exports2.getFilePaths = exports2.findFileUp = exports2.findFilesByExtension = exports2.findFiles = exports2.findBy = void 0;
|
|
96349
|
+
var path_1 = require("path");
|
|
96350
|
+
var findit2_1 = __importDefault(require_findit2());
|
|
96351
|
+
var file_access_1 = require_file_access();
|
|
96352
|
+
var fs_1 = require("fs");
|
|
96353
|
+
function getMemFsChanges(changes, fileNames, extensionNames) {
|
|
96354
|
+
const deleted = [];
|
|
96355
|
+
const modified = [];
|
|
96356
|
+
const filteredChanges = Object.keys(changes).filter((f) => fileNames.includes((0, path_1.basename)(f)) || extensionNames.includes((0, path_1.extname)(f)));
|
|
96357
|
+
for (const file of filteredChanges) {
|
|
96358
|
+
if (changes[file].state === "deleted") {
|
|
96359
|
+
deleted.push((0, path_1.join)(file));
|
|
96360
|
+
}
|
|
96361
|
+
if (changes[file].state === "modified") {
|
|
96362
|
+
modified.push((0, path_1.join)(file));
|
|
96363
|
+
}
|
|
96364
|
+
}
|
|
96365
|
+
return { deleted, modified };
|
|
96366
|
+
}
|
|
96367
|
+
function findBy(options2) {
|
|
96368
|
+
return new Promise((resolve, reject) => {
|
|
96369
|
+
const results = [];
|
|
96370
|
+
const fileNames = Array.isArray(options2.fileNames) ? options2.fileNames : [];
|
|
96371
|
+
const extensionNames = Array.isArray(options2.extensionNames) ? options2.extensionNames : [];
|
|
96372
|
+
const excludeFolders = Array.isArray(options2.excludeFolders) ? options2.excludeFolders : [];
|
|
96373
|
+
const finder = (0, findit2_1.default)(options2.root);
|
|
96374
|
+
finder.on("directory", (dir, _stat, stop) => {
|
|
96375
|
+
const base = (0, path_1.basename)(dir);
|
|
96376
|
+
if (excludeFolders.includes(base)) {
|
|
96377
|
+
stop();
|
|
96378
|
+
}
|
|
96379
|
+
});
|
|
96380
|
+
finder.on("file", (file) => {
|
|
96381
|
+
if (extensionNames.includes((0, path_1.extname)(file)) || fileNames.includes((0, path_1.basename)(file))) {
|
|
96382
|
+
results.push(file);
|
|
96383
|
+
}
|
|
96384
|
+
});
|
|
96385
|
+
finder.on("end", () => {
|
|
96386
|
+
let searchResult = results;
|
|
96387
|
+
if (options2.memFs) {
|
|
96388
|
+
const { modified, deleted } = getMemFsChanges(options2.memFs.dump(""), fileNames, extensionNames);
|
|
96389
|
+
const merged = Array.from(/* @__PURE__ */ new Set([...results, ...modified]));
|
|
96390
|
+
searchResult = merged.filter((f) => !deleted.includes(f));
|
|
96391
|
+
}
|
|
96392
|
+
resolve(searchResult);
|
|
96393
|
+
});
|
|
96394
|
+
finder.on("error", (error5) => {
|
|
96395
|
+
reject(error5);
|
|
96396
|
+
});
|
|
96397
|
+
});
|
|
96398
|
+
}
|
|
96399
|
+
exports2.findBy = findBy;
|
|
96400
|
+
function findFiles(filename, root, excludeFolders, memFs) {
|
|
96401
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
96402
|
+
const results = yield findBy({ fileNames: [filename], root, excludeFolders, memFs });
|
|
96403
|
+
return results.map((f) => (0, path_1.dirname)(f));
|
|
96404
|
+
});
|
|
96405
|
+
}
|
|
96406
|
+
exports2.findFiles = findFiles;
|
|
96407
|
+
function findFilesByExtension(extension2, root, excludeFolders, memFs) {
|
|
96408
|
+
return findBy({ extensionNames: [extension2], root, excludeFolders, memFs });
|
|
96409
|
+
}
|
|
96410
|
+
exports2.findFilesByExtension = findFilesByExtension;
|
|
96411
|
+
function findFileUp(fileName, startPath, fs4) {
|
|
96412
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
96413
|
+
const filePath = (0, path_1.join)(startPath, fileName);
|
|
96414
|
+
if (yield (0, file_access_1.fileExists)(filePath, fs4)) {
|
|
96415
|
+
return filePath;
|
|
96416
|
+
} else {
|
|
96417
|
+
return (0, path_1.dirname)(startPath) !== startPath ? findFileUp(fileName, (0, path_1.dirname)(startPath), fs4) : void 0;
|
|
96418
|
+
}
|
|
96419
|
+
});
|
|
96420
|
+
}
|
|
96421
|
+
exports2.findFileUp = findFileUp;
|
|
96422
|
+
function getFilePaths(dir) {
|
|
96423
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
96424
|
+
const entries = yield fs_1.promises.readdir(dir);
|
|
96425
|
+
const filePathsPromises = entries.map((entry) => __awaiter9(this, void 0, void 0, function* () {
|
|
96426
|
+
const entryPath = (0, path_1.join)(dir, entry);
|
|
96427
|
+
const isDirectory = (yield fs_1.promises.stat(entryPath)).isDirectory();
|
|
96428
|
+
return isDirectory ? getFilePaths(entryPath) : entryPath;
|
|
96429
|
+
}));
|
|
96430
|
+
const filePaths = yield Promise.all(filePathsPromises);
|
|
96431
|
+
return [].concat(...filePaths);
|
|
96432
|
+
});
|
|
96433
|
+
}
|
|
96434
|
+
exports2.getFilePaths = getFilePaths;
|
|
96435
|
+
}
|
|
96436
|
+
});
|
|
96437
|
+
|
|
96438
|
+
// ../../node_modules/@sap-ux/project-access/dist/file/index.js
|
|
96439
|
+
var require_file3 = __commonJS({
|
|
96440
|
+
"../../node_modules/@sap-ux/project-access/dist/file/index.js"(exports2) {
|
|
96441
|
+
"use strict";
|
|
96442
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
96443
|
+
exports2.getFilePaths = exports2.findFileUp = exports2.findFilesByExtension = exports2.findFiles = exports2.findBy = exports2.writeFile = exports2.updateManifestJSON = exports2.updatePackageJSON = exports2.readJSON = exports2.readFile = exports2.fileExists = void 0;
|
|
96444
|
+
var file_access_1 = require_file_access();
|
|
96445
|
+
Object.defineProperty(exports2, "fileExists", { enumerable: true, get: function() {
|
|
96446
|
+
return file_access_1.fileExists;
|
|
96447
|
+
} });
|
|
96448
|
+
Object.defineProperty(exports2, "readFile", { enumerable: true, get: function() {
|
|
96449
|
+
return file_access_1.readFile;
|
|
96450
|
+
} });
|
|
96451
|
+
Object.defineProperty(exports2, "readJSON", { enumerable: true, get: function() {
|
|
96452
|
+
return file_access_1.readJSON;
|
|
96453
|
+
} });
|
|
96454
|
+
Object.defineProperty(exports2, "updatePackageJSON", { enumerable: true, get: function() {
|
|
96455
|
+
return file_access_1.updatePackageJSON;
|
|
96456
|
+
} });
|
|
96457
|
+
Object.defineProperty(exports2, "updateManifestJSON", { enumerable: true, get: function() {
|
|
96458
|
+
return file_access_1.updateManifestJSON;
|
|
96459
|
+
} });
|
|
96460
|
+
Object.defineProperty(exports2, "writeFile", { enumerable: true, get: function() {
|
|
96461
|
+
return file_access_1.writeFile;
|
|
96462
|
+
} });
|
|
96463
|
+
var file_search_1 = require_file_search();
|
|
96464
|
+
Object.defineProperty(exports2, "findBy", { enumerable: true, get: function() {
|
|
96465
|
+
return file_search_1.findBy;
|
|
96466
|
+
} });
|
|
96467
|
+
Object.defineProperty(exports2, "findFiles", { enumerable: true, get: function() {
|
|
96468
|
+
return file_search_1.findFiles;
|
|
96469
|
+
} });
|
|
96470
|
+
Object.defineProperty(exports2, "findFilesByExtension", { enumerable: true, get: function() {
|
|
96471
|
+
return file_search_1.findFilesByExtension;
|
|
96472
|
+
} });
|
|
96473
|
+
Object.defineProperty(exports2, "findFileUp", { enumerable: true, get: function() {
|
|
96474
|
+
return file_search_1.findFileUp;
|
|
96475
|
+
} });
|
|
96476
|
+
Object.defineProperty(exports2, "getFilePaths", { enumerable: true, get: function() {
|
|
96477
|
+
return file_search_1.getFilePaths;
|
|
96478
|
+
} });
|
|
96479
|
+
}
|
|
96480
|
+
});
|
|
96481
|
+
|
|
96482
|
+
// ../../node_modules/@sap-ux/project-access/dist/project/dependencies.js
|
|
96483
|
+
var require_dependencies = __commonJS({
|
|
96484
|
+
"../../node_modules/@sap-ux/project-access/dist/project/dependencies.js"(exports2) {
|
|
96485
|
+
"use strict";
|
|
96486
|
+
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
96487
|
+
function adopt(value) {
|
|
96488
|
+
return value instanceof P ? value : new P(function(resolve) {
|
|
96489
|
+
resolve(value);
|
|
96490
|
+
});
|
|
96491
|
+
}
|
|
96492
|
+
return new (P || (P = Promise))(function(resolve, reject) {
|
|
96493
|
+
function fulfilled(value) {
|
|
96494
|
+
try {
|
|
96495
|
+
step(generator.next(value));
|
|
96496
|
+
} catch (e) {
|
|
96497
|
+
reject(e);
|
|
96498
|
+
}
|
|
96499
|
+
}
|
|
96500
|
+
function rejected(value) {
|
|
96501
|
+
try {
|
|
96502
|
+
step(generator["throw"](value));
|
|
96503
|
+
} catch (e) {
|
|
96504
|
+
reject(e);
|
|
96505
|
+
}
|
|
96506
|
+
}
|
|
96507
|
+
function step(result2) {
|
|
96508
|
+
result2.done ? resolve(result2.value) : adopt(result2.value).then(fulfilled, rejected);
|
|
96509
|
+
}
|
|
96510
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
96511
|
+
});
|
|
96512
|
+
};
|
|
94835
96513
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
94836
|
-
exports2.
|
|
94837
|
-
var path_1 = require("path");
|
|
94838
|
-
var findit2_1 = __importDefault(require_findit2());
|
|
94839
|
-
var file_access_1 = require_file_access();
|
|
94840
|
-
var fs_1 = require("fs");
|
|
94841
|
-
function getMemFsChanges(changes, fileNames, extensionNames) {
|
|
94842
|
-
const deleted = [];
|
|
94843
|
-
const modified = [];
|
|
94844
|
-
const filteredChanges = Object.keys(changes).filter((f) => fileNames.includes((0, path_1.basename)(f)) || extensionNames.includes((0, path_1.extname)(f)));
|
|
94845
|
-
for (const file of filteredChanges) {
|
|
94846
|
-
if (changes[file].state === "deleted") {
|
|
94847
|
-
deleted.push((0, path_1.join)(file));
|
|
94848
|
-
}
|
|
94849
|
-
if (changes[file].state === "modified") {
|
|
94850
|
-
modified.push((0, path_1.join)(file));
|
|
94851
|
-
}
|
|
94852
|
-
}
|
|
94853
|
-
return { deleted, modified };
|
|
94854
|
-
}
|
|
94855
|
-
function findBy(options2) {
|
|
94856
|
-
return new Promise((resolve, reject) => {
|
|
94857
|
-
const results = [];
|
|
94858
|
-
const fileNames = Array.isArray(options2.fileNames) ? options2.fileNames : [];
|
|
94859
|
-
const extensionNames = Array.isArray(options2.extensionNames) ? options2.extensionNames : [];
|
|
94860
|
-
const excludeFolders = Array.isArray(options2.excludeFolders) ? options2.excludeFolders : [];
|
|
94861
|
-
const finder = (0, findit2_1.default)(options2.root);
|
|
94862
|
-
finder.on("directory", (dir, _stat, stop) => {
|
|
94863
|
-
const base = (0, path_1.basename)(dir);
|
|
94864
|
-
if (excludeFolders.includes(base)) {
|
|
94865
|
-
stop();
|
|
94866
|
-
}
|
|
94867
|
-
});
|
|
94868
|
-
finder.on("file", (file) => {
|
|
94869
|
-
if (extensionNames.includes((0, path_1.extname)(file)) || fileNames.includes((0, path_1.basename)(file))) {
|
|
94870
|
-
results.push(file);
|
|
94871
|
-
}
|
|
94872
|
-
});
|
|
94873
|
-
finder.on("end", () => {
|
|
94874
|
-
let searchResult = results;
|
|
94875
|
-
if (options2.memFs) {
|
|
94876
|
-
const { modified, deleted } = getMemFsChanges(options2.memFs.dump(""), fileNames, extensionNames);
|
|
94877
|
-
const merged = Array.from(/* @__PURE__ */ new Set([...results, ...modified]));
|
|
94878
|
-
searchResult = merged.filter((f) => !deleted.includes(f));
|
|
94879
|
-
}
|
|
94880
|
-
resolve(searchResult);
|
|
94881
|
-
});
|
|
94882
|
-
finder.on("error", (error5) => {
|
|
94883
|
-
reject(error5);
|
|
94884
|
-
});
|
|
94885
|
-
});
|
|
94886
|
-
}
|
|
94887
|
-
exports2.findBy = findBy;
|
|
94888
|
-
function findFiles(filename, root, excludeFolders, memFs) {
|
|
94889
|
-
return __awaiter9(this, void 0, void 0, function* () {
|
|
94890
|
-
const results = yield findBy({ fileNames: [filename], root, excludeFolders, memFs });
|
|
94891
|
-
return results.map((f) => (0, path_1.dirname)(f));
|
|
94892
|
-
});
|
|
94893
|
-
}
|
|
94894
|
-
exports2.findFiles = findFiles;
|
|
94895
|
-
function findFilesByExtension(extension2, root, excludeFolders, memFs) {
|
|
94896
|
-
return findBy({ extensionNames: [extension2], root, excludeFolders, memFs });
|
|
94897
|
-
}
|
|
94898
|
-
exports2.findFilesByExtension = findFilesByExtension;
|
|
94899
|
-
function findFileUp(fileName, startPath, fs4) {
|
|
94900
|
-
return __awaiter9(this, void 0, void 0, function* () {
|
|
94901
|
-
const filePath = (0, path_1.join)(startPath, fileName);
|
|
94902
|
-
if (yield (0, file_access_1.fileExists)(filePath, fs4)) {
|
|
94903
|
-
return filePath;
|
|
94904
|
-
} else {
|
|
94905
|
-
return (0, path_1.dirname)(startPath) !== startPath ? findFileUp(fileName, (0, path_1.dirname)(startPath), fs4) : void 0;
|
|
94906
|
-
}
|
|
94907
|
-
});
|
|
94908
|
-
}
|
|
94909
|
-
exports2.findFileUp = findFileUp;
|
|
94910
|
-
function getFilePaths(dir) {
|
|
94911
|
-
return __awaiter9(this, void 0, void 0, function* () {
|
|
94912
|
-
const entries = yield fs_1.promises.readdir(dir);
|
|
94913
|
-
const filePathsPromises = entries.map((entry) => __awaiter9(this, void 0, void 0, function* () {
|
|
94914
|
-
const entryPath = (0, path_1.join)(dir, entry);
|
|
94915
|
-
const isDirectory = (yield fs_1.promises.stat(entryPath)).isDirectory();
|
|
94916
|
-
return isDirectory ? getFilePaths(entryPath) : entryPath;
|
|
94917
|
-
}));
|
|
94918
|
-
const filePaths = yield Promise.all(filePathsPromises);
|
|
94919
|
-
return [].concat(...filePaths);
|
|
94920
|
-
});
|
|
94921
|
-
}
|
|
94922
|
-
exports2.getFilePaths = getFilePaths;
|
|
94923
|
-
}
|
|
94924
|
-
});
|
|
94925
|
-
|
|
94926
|
-
// ../../node_modules/@sap-ux/project-access/dist/file/index.js
|
|
94927
|
-
var require_file3 = __commonJS({
|
|
94928
|
-
"../../node_modules/@sap-ux/project-access/dist/file/index.js"(exports2) {
|
|
94929
|
-
"use strict";
|
|
94930
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
94931
|
-
exports2.getFilePaths = exports2.findFileUp = exports2.findFilesByExtension = exports2.findFiles = exports2.findBy = exports2.writeFile = exports2.readJSON = exports2.readFile = exports2.fileExists = void 0;
|
|
94932
|
-
var file_access_1 = require_file_access();
|
|
94933
|
-
Object.defineProperty(exports2, "fileExists", { enumerable: true, get: function() {
|
|
94934
|
-
return file_access_1.fileExists;
|
|
94935
|
-
} });
|
|
94936
|
-
Object.defineProperty(exports2, "readFile", { enumerable: true, get: function() {
|
|
94937
|
-
return file_access_1.readFile;
|
|
94938
|
-
} });
|
|
94939
|
-
Object.defineProperty(exports2, "readJSON", { enumerable: true, get: function() {
|
|
94940
|
-
return file_access_1.readJSON;
|
|
94941
|
-
} });
|
|
94942
|
-
Object.defineProperty(exports2, "writeFile", { enumerable: true, get: function() {
|
|
94943
|
-
return file_access_1.writeFile;
|
|
94944
|
-
} });
|
|
94945
|
-
var file_search_1 = require_file_search();
|
|
94946
|
-
Object.defineProperty(exports2, "findBy", { enumerable: true, get: function() {
|
|
94947
|
-
return file_search_1.findBy;
|
|
94948
|
-
} });
|
|
94949
|
-
Object.defineProperty(exports2, "findFiles", { enumerable: true, get: function() {
|
|
94950
|
-
return file_search_1.findFiles;
|
|
94951
|
-
} });
|
|
94952
|
-
Object.defineProperty(exports2, "findFilesByExtension", { enumerable: true, get: function() {
|
|
94953
|
-
return file_search_1.findFilesByExtension;
|
|
94954
|
-
} });
|
|
94955
|
-
Object.defineProperty(exports2, "findFileUp", { enumerable: true, get: function() {
|
|
94956
|
-
return file_search_1.findFileUp;
|
|
94957
|
-
} });
|
|
94958
|
-
Object.defineProperty(exports2, "getFilePaths", { enumerable: true, get: function() {
|
|
94959
|
-
return file_search_1.getFilePaths;
|
|
94960
|
-
} });
|
|
94961
|
-
}
|
|
94962
|
-
});
|
|
94963
|
-
|
|
94964
|
-
// ../../node_modules/@sap-ux/project-access/dist/project/dependencies.js
|
|
94965
|
-
var require_dependencies = __commonJS({
|
|
94966
|
-
"../../node_modules/@sap-ux/project-access/dist/project/dependencies.js"(exports2) {
|
|
94967
|
-
"use strict";
|
|
94968
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
94969
|
-
exports2.getNodeModulesPath = exports2.hasDependency = void 0;
|
|
96514
|
+
exports2.addPackageDevDependency = exports2.getNodeModulesPath = exports2.hasDependency = void 0;
|
|
94970
96515
|
var fs_1 = require("fs");
|
|
94971
96516
|
var path_1 = require("path");
|
|
94972
96517
|
var constants_1 = require_constants7();
|
|
96518
|
+
var file_1 = require_file3();
|
|
94973
96519
|
var hasDependency = (packageJson, dependency) => {
|
|
94974
96520
|
var _a3, _b2, _c2;
|
|
94975
96521
|
return !!((_b2 = (_a3 = packageJson.dependencies) === null || _a3 === void 0 ? void 0 : _a3[dependency]) !== null && _b2 !== void 0 ? _b2 : (_c2 = packageJson.devDependencies) === null || _c2 === void 0 ? void 0 : _c2[dependency]);
|
|
@@ -94996,6 +96542,19 @@ var require_dependencies = __commonJS({
|
|
|
94996
96542
|
return modulesPath;
|
|
94997
96543
|
}
|
|
94998
96544
|
exports2.getNodeModulesPath = getNodeModulesPath;
|
|
96545
|
+
function addPackageDevDependency(basePath, depName, depVersion, fs4) {
|
|
96546
|
+
var _a3;
|
|
96547
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
96548
|
+
const filePath = (0, path_1.join)(basePath, constants_1.FileName.Package);
|
|
96549
|
+
const packageJson = yield (0, file_1.readJSON)(filePath, fs4);
|
|
96550
|
+
packageJson.devDependencies = (_a3 = packageJson.devDependencies) !== null && _a3 !== void 0 ? _a3 : {};
|
|
96551
|
+
if (!packageJson.devDependencies[depName]) {
|
|
96552
|
+
packageJson.devDependencies[depName] = depVersion;
|
|
96553
|
+
}
|
|
96554
|
+
yield (0, file_1.updatePackageJSON)(filePath, packageJson, fs4);
|
|
96555
|
+
});
|
|
96556
|
+
}
|
|
96557
|
+
exports2.addPackageDevDependency = addPackageDevDependency;
|
|
94999
96558
|
}
|
|
95000
96559
|
});
|
|
95001
96560
|
|
|
@@ -95217,7 +96776,12 @@ var require_cap = __commonJS({
|
|
|
95217
96776
|
}
|
|
95218
96777
|
return {
|
|
95219
96778
|
model,
|
|
95220
|
-
services
|
|
96779
|
+
services,
|
|
96780
|
+
cdsVersionInfo: {
|
|
96781
|
+
home: cds.home,
|
|
96782
|
+
version: cds.version,
|
|
96783
|
+
root: cds.root
|
|
96784
|
+
}
|
|
95221
96785
|
};
|
|
95222
96786
|
});
|
|
95223
96787
|
}
|
|
@@ -101185,13 +102749,17 @@ var require_utils16 = __commonJS({
|
|
|
101185
102749
|
return __awaiter9(this, void 0, void 0, function* () {
|
|
101186
102750
|
let newContent = newI18nEntries.map((entry) => (0, utils_1.printPropertiesI18nEntry)(entry.key, entry.value, entry.annotation)).join("");
|
|
101187
102751
|
const content = yield (0, utils_1.readFile)(i18nFilePath, fs4);
|
|
101188
|
-
|
|
101189
|
-
|
|
101190
|
-
|
|
102752
|
+
if (content) {
|
|
102753
|
+
const lines = content.split(/\r\n|\n/);
|
|
102754
|
+
if (lines.length > 0 && lines[lines.length - 1].trim()) {
|
|
102755
|
+
newContent = `
|
|
101191
102756
|
${newContent}`;
|
|
102757
|
+
}
|
|
102758
|
+
yield (0, utils_1.writeFile)(i18nFilePath, content.concat(newContent), fs4);
|
|
102759
|
+
return true;
|
|
102760
|
+
} else {
|
|
102761
|
+
return false;
|
|
101192
102762
|
}
|
|
101193
|
-
yield (0, utils_1.writeFile)(i18nFilePath, content.concat(newContent), fs4);
|
|
101194
|
-
return true;
|
|
101195
102763
|
});
|
|
101196
102764
|
}
|
|
101197
102765
|
exports2.writeToExistingI18nPropertiesFile = writeToExistingI18nPropertiesFile;
|
|
@@ -102258,11 +103826,15 @@ var require_yaml_document = __commonJS({
|
|
|
102258
103826
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
102259
103827
|
};
|
|
102260
103828
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
102261
|
-
exports2.YamlDocument = void 0;
|
|
103829
|
+
exports2.YamlDocument = exports2.yamlDocumentToYamlString = void 0;
|
|
102262
103830
|
var yaml_1 = __importStar(require_dist2());
|
|
102263
103831
|
var merge_1 = __importDefault(require_merge());
|
|
102264
103832
|
var errors_1 = require_errors5();
|
|
102265
103833
|
var texts_1 = require_texts();
|
|
103834
|
+
function yamlDocumentToYamlString(yamlDocument) {
|
|
103835
|
+
return yaml_1.default.stringify(yamlDocument);
|
|
103836
|
+
}
|
|
103837
|
+
exports2.yamlDocumentToYamlString = yamlDocumentToYamlString;
|
|
102266
103838
|
var YamlDocument = class _YamlDocument {
|
|
102267
103839
|
/**
|
|
102268
103840
|
* Returns a new instance of YamlDocument.
|
|
@@ -102460,6 +104032,15 @@ var require_yaml_document = __commonJS({
|
|
|
102460
104032
|
seq.items.splice(seq.items.indexOf(node), 1, newNode);
|
|
102461
104033
|
return this;
|
|
102462
104034
|
}
|
|
104035
|
+
/**
|
|
104036
|
+
* Simplified method to delete a value in the yaml document.
|
|
104037
|
+
*
|
|
104038
|
+
* @param key - key of the yaml node to delete
|
|
104039
|
+
* @returns `true` if the item was found and removed.
|
|
104040
|
+
*/
|
|
104041
|
+
delete(key) {
|
|
104042
|
+
return this.documents[0].delete(key);
|
|
104043
|
+
}
|
|
102463
104044
|
/**
|
|
102464
104045
|
* Deletes a node in a sequence in the document.
|
|
102465
104046
|
*
|
|
@@ -102574,11 +104155,14 @@ var require_dist9 = __commonJS({
|
|
|
102574
104155
|
"../../node_modules/@sap-ux/yaml/dist/index.js"(exports2) {
|
|
102575
104156
|
"use strict";
|
|
102576
104157
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
102577
|
-
exports2.YAMLError = exports2.errorCode = exports2.YAMLMap = exports2.YAMLSeq = exports2.YamlDocument = void 0;
|
|
104158
|
+
exports2.YAMLError = exports2.errorCode = exports2.YAMLMap = exports2.YAMLSeq = exports2.yamlDocumentToYamlString = exports2.YamlDocument = void 0;
|
|
102578
104159
|
var yaml_document_1 = require_yaml_document();
|
|
102579
104160
|
Object.defineProperty(exports2, "YamlDocument", { enumerable: true, get: function() {
|
|
102580
104161
|
return yaml_document_1.YamlDocument;
|
|
102581
104162
|
} });
|
|
104163
|
+
Object.defineProperty(exports2, "yamlDocumentToYamlString", { enumerable: true, get: function() {
|
|
104164
|
+
return yaml_document_1.yamlDocumentToYamlString;
|
|
104165
|
+
} });
|
|
102582
104166
|
var yaml_1 = require_dist2();
|
|
102583
104167
|
Object.defineProperty(exports2, "YAMLSeq", { enumerable: true, get: function() {
|
|
102584
104168
|
return yaml_1.YAMLSeq;
|
|
@@ -102602,7 +104186,6 @@ var require_middlewares = __commonJS({
|
|
|
102602
104186
|
"use strict";
|
|
102603
104187
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
102604
104188
|
exports2.getMockServerMiddlewareConfig = exports2.getFioriToolsProxyMiddlewareConfig = exports2.getBackendComments = exports2.getAppReloadMiddlewareConfig = void 0;
|
|
102605
|
-
var store_1 = require_dist4();
|
|
102606
104189
|
function getAppReloadMiddlewareConfig() {
|
|
102607
104190
|
return {
|
|
102608
104191
|
name: "fiori-tools-appreload",
|
|
@@ -102617,7 +104200,7 @@ var require_middlewares = __commonJS({
|
|
|
102617
104200
|
exports2.getAppReloadMiddlewareConfig = getAppReloadMiddlewareConfig;
|
|
102618
104201
|
function getBackendComments(backend, index) {
|
|
102619
104202
|
const comment = [];
|
|
102620
|
-
if (backend.authenticationType ===
|
|
104203
|
+
if (backend.authenticationType === "reentranceTicket") {
|
|
102621
104204
|
comment.push({
|
|
102622
104205
|
path: `configuration.backend.${index}.authenticationType`,
|
|
102623
104206
|
comment: " SAML support for vscode",
|
|
@@ -102658,7 +104241,7 @@ var require_middlewares = __commonJS({
|
|
|
102658
104241
|
path: (_a3 = ui5.path) !== null && _a3 !== void 0 ? _a3 : ["/resources", "/test-resources"],
|
|
102659
104242
|
url: (_b2 = ui5.url) !== null && _b2 !== void 0 ? _b2 : "https://ui5.sap.com"
|
|
102660
104243
|
};
|
|
102661
|
-
if (ui5.version) {
|
|
104244
|
+
if (ui5.version !== void 0) {
|
|
102662
104245
|
fioriToolsProxy.configuration["ui5"].version = ui5.version;
|
|
102663
104246
|
}
|
|
102664
104247
|
if (ui5.directLoad) {
|
|
@@ -102796,6 +104379,16 @@ var require_ui5config = __commonJS({
|
|
|
102796
104379
|
this.document.setIn({ path: "metadata", value });
|
|
102797
104380
|
return this;
|
|
102798
104381
|
}
|
|
104382
|
+
/**
|
|
104383
|
+
* Get the type in the yaml file.
|
|
104384
|
+
*
|
|
104385
|
+
* @returns {Ui5Document['type']} the type
|
|
104386
|
+
* @memberof Ui5Document['type']
|
|
104387
|
+
*/
|
|
104388
|
+
getType() {
|
|
104389
|
+
const type2 = this.document.getNode({ path: "type" });
|
|
104390
|
+
return type2;
|
|
104391
|
+
}
|
|
102799
104392
|
/**
|
|
102800
104393
|
* Set the type in the yaml file.
|
|
102801
104394
|
* See also https://sap.github.io/ui5-tooling/pages/Configuration/#general-configuration for reference.
|
|
@@ -102939,6 +104532,23 @@ var require_ui5config = __commonJS({
|
|
|
102939
104532
|
this.document.getMap({ start: proxyMiddleware, path: "configuration" }).set("backend", [backendNode]);
|
|
102940
104533
|
return this;
|
|
102941
104534
|
}
|
|
104535
|
+
/**
|
|
104536
|
+
* Returns the backend configurations from the fiori-tools-proxy middleware.
|
|
104537
|
+
*
|
|
104538
|
+
* @returns {FioriToolsProxyConfigBackend[]} the backend configurations
|
|
104539
|
+
*/
|
|
104540
|
+
getBackendConfigsFromFioriToolsProxydMiddleware() {
|
|
104541
|
+
let backendConfigs;
|
|
104542
|
+
try {
|
|
104543
|
+
const middlewareList = this.document.getSequence({ path: "server.customMiddleware" });
|
|
104544
|
+
const proxyMiddleware = this.document.findItem(middlewareList, (item) => item.name === constants_1.fioriToolsProxy);
|
|
104545
|
+
const configuration = this.document.getMap({ start: proxyMiddleware, path: "configuration" });
|
|
104546
|
+
backendConfigs = this.document.getSequence({ start: configuration, path: "backend" }).toJSON();
|
|
104547
|
+
} catch (e) {
|
|
104548
|
+
return [];
|
|
104549
|
+
}
|
|
104550
|
+
return backendConfigs;
|
|
104551
|
+
}
|
|
102942
104552
|
/**
|
|
102943
104553
|
* Adds a ui configuration to an existing fiori-tools-proxy middleware. If the config does not contain a fiori-tools-proxy middleware, an error is thrown.
|
|
102944
104554
|
*
|
|
@@ -102976,10 +104586,12 @@ var require_ui5config = __commonJS({
|
|
|
102976
104586
|
* @param target system that this app is to be deployed to
|
|
102977
104587
|
* @param app application configuration for the deployment to ABAP
|
|
102978
104588
|
* @param fioriTools if true use the middleware included in the @sap/ux-ui5-tooling module
|
|
104589
|
+
* @param exclude optional list of files that are to be excluded from the deployment configuration
|
|
104590
|
+
* @param index if true a standalone index.html is generated during deployment
|
|
102979
104591
|
* @returns this UI5Config instance
|
|
102980
104592
|
* @memberof UI5Config
|
|
102981
104593
|
*/
|
|
102982
|
-
addAbapDeployTask(target, app, fioriTools = true) {
|
|
104594
|
+
addAbapDeployTask(target, app, fioriTools = true, exclude, index = false) {
|
|
102983
104595
|
this.document.appendTo({
|
|
102984
104596
|
path: "builder.resources.excludes",
|
|
102985
104597
|
value: "/test/**"
|
|
@@ -102988,12 +104600,16 @@ var require_ui5config = __commonJS({
|
|
|
102988
104600
|
path: "builder.resources.excludes",
|
|
102989
104601
|
value: "/localService/**"
|
|
102990
104602
|
});
|
|
104603
|
+
const configuration = { target, app, exclude };
|
|
104604
|
+
if (index) {
|
|
104605
|
+
configuration["index"] = true;
|
|
104606
|
+
}
|
|
102991
104607
|
this.document.appendTo({
|
|
102992
104608
|
path: "builder.customTasks",
|
|
102993
104609
|
value: {
|
|
102994
104610
|
name: fioriTools ? "deploy-to-abap" : "abap-deploy-task",
|
|
102995
104611
|
afterTask: "generateCachebusterInfo",
|
|
102996
|
-
configuration
|
|
104612
|
+
configuration
|
|
102997
104613
|
}
|
|
102998
104614
|
});
|
|
102999
104615
|
return this;
|
|
@@ -103026,6 +104642,28 @@ var require_ui5config = __commonJS({
|
|
|
103026
104642
|
});
|
|
103027
104643
|
return this;
|
|
103028
104644
|
}
|
|
104645
|
+
/**
|
|
104646
|
+
* Removes the entire config for the given key.
|
|
104647
|
+
*
|
|
104648
|
+
* @param key key of the config that is to be removed
|
|
104649
|
+
* @returns {UI5Config} the UI5Config instance
|
|
104650
|
+
*/
|
|
104651
|
+
removeConfig(key) {
|
|
104652
|
+
this.document.delete(key);
|
|
104653
|
+
return this;
|
|
104654
|
+
}
|
|
104655
|
+
/**
|
|
104656
|
+
* Adds a comment to the ui5 config.
|
|
104657
|
+
*
|
|
104658
|
+
* @param root0 - the comment object
|
|
104659
|
+
* @param root0.comment - the comment object's comment
|
|
104660
|
+
* @param root0.location - the comment object's location
|
|
104661
|
+
* @returns {UI5Config} the UI5Config instance
|
|
104662
|
+
*/
|
|
104663
|
+
addComment({ comment, location = "beginning" }) {
|
|
104664
|
+
this.document.addDocumentComment({ comment, location });
|
|
104665
|
+
return this;
|
|
104666
|
+
}
|
|
103029
104667
|
/**
|
|
103030
104668
|
* Find a custom item in the UI5 config.
|
|
103031
104669
|
*
|
|
@@ -103360,11 +104998,11 @@ var require_ui5_config = __commonJS({
|
|
|
103360
104998
|
});
|
|
103361
104999
|
}
|
|
103362
105000
|
exports2.getWebappPath = getWebappPath;
|
|
103363
|
-
function readUi5Yaml(projectRoot, fileName) {
|
|
105001
|
+
function readUi5Yaml(projectRoot, fileName, memFs) {
|
|
103364
105002
|
return __awaiter9(this, void 0, void 0, function* () {
|
|
103365
105003
|
const ui5YamlPath = (0, path_1.join)(projectRoot, fileName);
|
|
103366
105004
|
if (yield (0, file_1.fileExists)(ui5YamlPath)) {
|
|
103367
|
-
const yamlString = yield (0, file_1.readFile)(ui5YamlPath);
|
|
105005
|
+
const yamlString = yield (0, file_1.readFile)(ui5YamlPath, memFs);
|
|
103368
105006
|
return yield ui5_config_1.UI5Config.newInstance(yamlString);
|
|
103369
105007
|
}
|
|
103370
105008
|
throw Error(`File '${fileName}' not found in project '${projectRoot}'`);
|
|
@@ -103848,7 +105486,7 @@ var require_info = __commonJS({
|
|
|
103848
105486
|
});
|
|
103849
105487
|
};
|
|
103850
105488
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
103851
|
-
exports2.getProjectType = exports2.getAppType = exports2.getAppProgrammingLanguage = exports2.getProject = void 0;
|
|
105489
|
+
exports2.getMinimumUI5Version = exports2.getMinUI5VersionAsArray = exports2.getMinUI5VersionFromManifest = exports2.getProjectType = exports2.getAppType = exports2.getAppProgrammingLanguage = exports2.getProject = void 0;
|
|
103852
105490
|
var path_1 = require("path");
|
|
103853
105491
|
var constants_1 = require_constants7();
|
|
103854
105492
|
var file_1 = require_file3();
|
|
@@ -103857,6 +105495,7 @@ var require_info = __commonJS({
|
|
|
103857
105495
|
var search_1 = require_search();
|
|
103858
105496
|
var service_1 = require_service2();
|
|
103859
105497
|
var ui5_config_1 = require_ui5_config();
|
|
105498
|
+
var semver_1 = require_semver2();
|
|
103860
105499
|
function getProject(root) {
|
|
103861
105500
|
return __awaiter9(this, void 0, void 0, function* () {
|
|
103862
105501
|
const checkCapType = yield (0, cap_1.getCapProjectType)(root);
|
|
@@ -103980,6 +105619,37 @@ var require_info = __commonJS({
|
|
|
103980
105619
|
});
|
|
103981
105620
|
}
|
|
103982
105621
|
exports2.getProjectType = getProjectType;
|
|
105622
|
+
function getMinUI5VersionFromManifest(manifest) {
|
|
105623
|
+
var _a3;
|
|
105624
|
+
const dependencies = (_a3 = manifest["sap.ui5"]) === null || _a3 === void 0 ? void 0 : _a3.dependencies;
|
|
105625
|
+
if (dependencies) {
|
|
105626
|
+
return dependencies.minUI5Version;
|
|
105627
|
+
}
|
|
105628
|
+
return void 0;
|
|
105629
|
+
}
|
|
105630
|
+
exports2.getMinUI5VersionFromManifest = getMinUI5VersionFromManifest;
|
|
105631
|
+
function getMinUI5VersionAsArray(manifest) {
|
|
105632
|
+
let result2 = [];
|
|
105633
|
+
const minUI5Version = getMinUI5VersionFromManifest(manifest);
|
|
105634
|
+
if (minUI5Version) {
|
|
105635
|
+
result2 = Array.isArray(minUI5Version) ? minUI5Version : [minUI5Version];
|
|
105636
|
+
}
|
|
105637
|
+
return result2;
|
|
105638
|
+
}
|
|
105639
|
+
exports2.getMinUI5VersionAsArray = getMinUI5VersionAsArray;
|
|
105640
|
+
function getMinimumUI5Version(manifest) {
|
|
105641
|
+
let result2;
|
|
105642
|
+
const minUI5VersionArray = getMinUI5VersionAsArray(manifest);
|
|
105643
|
+
if (minUI5VersionArray.length > 0) {
|
|
105644
|
+
minUI5VersionArray.forEach((version) => {
|
|
105645
|
+
if ((0, semver_1.valid)(version) && (!result2 || (0, semver_1.gte)(result2, version))) {
|
|
105646
|
+
result2 = version;
|
|
105647
|
+
}
|
|
105648
|
+
});
|
|
105649
|
+
}
|
|
105650
|
+
return result2;
|
|
105651
|
+
}
|
|
105652
|
+
exports2.getMinimumUI5Version = getMinimumUI5Version;
|
|
103983
105653
|
}
|
|
103984
105654
|
});
|
|
103985
105655
|
|
|
@@ -104074,6 +105744,8 @@ var require_access = __commonJS({
|
|
|
104074
105744
|
var i18n_1 = require_i18n3();
|
|
104075
105745
|
var info_1 = require_info();
|
|
104076
105746
|
var search_1 = require_search();
|
|
105747
|
+
var file_1 = require_file3();
|
|
105748
|
+
var constants_1 = require_constants7();
|
|
104077
105749
|
var ApplicationAccessImp = class {
|
|
104078
105750
|
/**
|
|
104079
105751
|
* Constructor for ApplicationAccess.
|
|
@@ -104195,6 +105867,28 @@ var require_access = __commonJS({
|
|
|
104195
105867
|
getI18nPropertiesPaths() {
|
|
104196
105868
|
return (0, i18n_1.getI18nPropertiesPaths)(this.app.manifest);
|
|
104197
105869
|
}
|
|
105870
|
+
/**
|
|
105871
|
+
* Updates package.json file asynchronously by keeping the previous indentation.
|
|
105872
|
+
*
|
|
105873
|
+
* @param packageJson - updated package.json file content
|
|
105874
|
+
* @param memFs - optional mem-fs-editor instance
|
|
105875
|
+
*/
|
|
105876
|
+
updatePackageJSON(packageJson, memFs) {
|
|
105877
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
105878
|
+
yield (0, file_1.updatePackageJSON)((0, path_1.join)(this.app.appRoot, constants_1.FileName.Package), packageJson, memFs);
|
|
105879
|
+
});
|
|
105880
|
+
}
|
|
105881
|
+
/**
|
|
105882
|
+
* Updates manifest.json file asynchronously by keeping the previous indentation.
|
|
105883
|
+
*
|
|
105884
|
+
* @param manifest - updated manifest.json file content
|
|
105885
|
+
* @param memFs - optional mem-fs-editor instance
|
|
105886
|
+
*/
|
|
105887
|
+
updateManifestJSON(manifest, memFs) {
|
|
105888
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
105889
|
+
yield (0, file_1.updateManifestJSON)(this.app.manifest, manifest, memFs);
|
|
105890
|
+
});
|
|
105891
|
+
}
|
|
104198
105892
|
/**
|
|
104199
105893
|
* Project structure.
|
|
104200
105894
|
*
|
|
@@ -104306,12 +106000,63 @@ var require_access = __commonJS({
|
|
|
104306
106000
|
}
|
|
104307
106001
|
});
|
|
104308
106002
|
|
|
106003
|
+
// ../../node_modules/@sap-ux/project-access/dist/project/script.js
|
|
106004
|
+
var require_script = __commonJS({
|
|
106005
|
+
"../../node_modules/@sap-ux/project-access/dist/project/script.js"(exports2) {
|
|
106006
|
+
"use strict";
|
|
106007
|
+
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
106008
|
+
function adopt(value) {
|
|
106009
|
+
return value instanceof P ? value : new P(function(resolve) {
|
|
106010
|
+
resolve(value);
|
|
106011
|
+
});
|
|
106012
|
+
}
|
|
106013
|
+
return new (P || (P = Promise))(function(resolve, reject) {
|
|
106014
|
+
function fulfilled(value) {
|
|
106015
|
+
try {
|
|
106016
|
+
step(generator.next(value));
|
|
106017
|
+
} catch (e) {
|
|
106018
|
+
reject(e);
|
|
106019
|
+
}
|
|
106020
|
+
}
|
|
106021
|
+
function rejected(value) {
|
|
106022
|
+
try {
|
|
106023
|
+
step(generator["throw"](value));
|
|
106024
|
+
} catch (e) {
|
|
106025
|
+
reject(e);
|
|
106026
|
+
}
|
|
106027
|
+
}
|
|
106028
|
+
function step(result2) {
|
|
106029
|
+
result2.done ? resolve(result2.value) : adopt(result2.value).then(fulfilled, rejected);
|
|
106030
|
+
}
|
|
106031
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
106032
|
+
});
|
|
106033
|
+
};
|
|
106034
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
106035
|
+
exports2.updatePackageScript = void 0;
|
|
106036
|
+
var path_1 = require("path");
|
|
106037
|
+
var constants_1 = require_constants7();
|
|
106038
|
+
var file_1 = require_file3();
|
|
106039
|
+
function updatePackageScript(basePath, scriptName, script, fs4) {
|
|
106040
|
+
return __awaiter9(this, void 0, void 0, function* () {
|
|
106041
|
+
const filePath = (0, path_1.join)(basePath, constants_1.FileName.Package);
|
|
106042
|
+
const packageJson = yield (0, file_1.readJSON)(filePath, fs4);
|
|
106043
|
+
if (!packageJson.scripts) {
|
|
106044
|
+
packageJson.scripts = {};
|
|
106045
|
+
}
|
|
106046
|
+
packageJson.scripts[scriptName] = script;
|
|
106047
|
+
yield (0, file_1.updatePackageJSON)(filePath, packageJson, fs4);
|
|
106048
|
+
});
|
|
106049
|
+
}
|
|
106050
|
+
exports2.updatePackageScript = updatePackageScript;
|
|
106051
|
+
}
|
|
106052
|
+
});
|
|
106053
|
+
|
|
104309
106054
|
// ../../node_modules/@sap-ux/project-access/dist/project/index.js
|
|
104310
106055
|
var require_project = __commonJS({
|
|
104311
106056
|
"../../node_modules/@sap-ux/project-access/dist/project/index.js"(exports2) {
|
|
104312
106057
|
"use strict";
|
|
104313
106058
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
104314
|
-
exports2.createProjectAccess = exports2.createApplicationAccess = exports2.getMtaPath = exports2.readUi5Yaml = exports2.getWebappPath = exports2.getAppRootFromWebappPath = exports2.findProjectRoot = exports2.findFioriArtifacts = exports2.findCapProjects = exports2.findAllApps = exports2.loadModuleFromProject = exports2.getProjectType = exports2.getProject = exports2.getAppType = exports2.getAppProgrammingLanguage = exports2.getI18nPropertiesPaths = exports2.getCapI18nFolderNames = exports2.getNodeModulesPath = exports2.clearCdsModuleCache = exports2.toReferenceUri = exports2.readCapServiceMetadataEdmx = exports2.getCapEnvironment = exports2.isCapNodeJsProject = exports2.isCapJavaProject = exports2.isCapProject = exports2.getCdsServices = exports2.getCdsRoots = exports2.getCdsFiles = exports2.getCapProjectType = exports2.getCapModelAndServices = exports2.getCapCustomPaths = void 0;
|
|
106059
|
+
exports2.updatePackageScript = exports2.createProjectAccess = exports2.createApplicationAccess = exports2.getMtaPath = exports2.readUi5Yaml = exports2.getWebappPath = exports2.getAppRootFromWebappPath = exports2.findProjectRoot = exports2.findFioriArtifacts = exports2.findCapProjects = exports2.findAllApps = exports2.loadModuleFromProject = exports2.getProjectType = exports2.getProject = exports2.getMinimumUI5Version = exports2.getMinUI5VersionAsArray = exports2.getMinUI5VersionFromManifest = exports2.getAppType = exports2.getAppProgrammingLanguage = exports2.getI18nPropertiesPaths = exports2.getCapI18nFolderNames = exports2.getNodeModulesPath = exports2.addPackageDevDependency = exports2.clearCdsModuleCache = exports2.toReferenceUri = exports2.readCapServiceMetadataEdmx = exports2.getCapEnvironment = exports2.isCapNodeJsProject = exports2.isCapJavaProject = exports2.isCapProject = exports2.getCdsServices = exports2.getCdsRoots = exports2.getCdsFiles = exports2.getCapProjectType = exports2.getCapModelAndServices = exports2.getCapCustomPaths = void 0;
|
|
104315
106060
|
var cap_1 = require_cap();
|
|
104316
106061
|
Object.defineProperty(exports2, "getCapCustomPaths", { enumerable: true, get: function() {
|
|
104317
106062
|
return cap_1.getCapCustomPaths;
|
|
@@ -104353,6 +106098,9 @@ var require_project = __commonJS({
|
|
|
104353
106098
|
return cap_1.clearCdsModuleCache;
|
|
104354
106099
|
} });
|
|
104355
106100
|
var dependencies_1 = require_dependencies();
|
|
106101
|
+
Object.defineProperty(exports2, "addPackageDevDependency", { enumerable: true, get: function() {
|
|
106102
|
+
return dependencies_1.addPackageDevDependency;
|
|
106103
|
+
} });
|
|
104356
106104
|
Object.defineProperty(exports2, "getNodeModulesPath", { enumerable: true, get: function() {
|
|
104357
106105
|
return dependencies_1.getNodeModulesPath;
|
|
104358
106106
|
} });
|
|
@@ -104370,6 +106118,15 @@ var require_project = __commonJS({
|
|
|
104370
106118
|
Object.defineProperty(exports2, "getAppType", { enumerable: true, get: function() {
|
|
104371
106119
|
return info_1.getAppType;
|
|
104372
106120
|
} });
|
|
106121
|
+
Object.defineProperty(exports2, "getMinUI5VersionFromManifest", { enumerable: true, get: function() {
|
|
106122
|
+
return info_1.getMinUI5VersionFromManifest;
|
|
106123
|
+
} });
|
|
106124
|
+
Object.defineProperty(exports2, "getMinUI5VersionAsArray", { enumerable: true, get: function() {
|
|
106125
|
+
return info_1.getMinUI5VersionAsArray;
|
|
106126
|
+
} });
|
|
106127
|
+
Object.defineProperty(exports2, "getMinimumUI5Version", { enumerable: true, get: function() {
|
|
106128
|
+
return info_1.getMinimumUI5Version;
|
|
106129
|
+
} });
|
|
104373
106130
|
Object.defineProperty(exports2, "getProject", { enumerable: true, get: function() {
|
|
104374
106131
|
return info_1.getProject;
|
|
104375
106132
|
} });
|
|
@@ -104414,6 +106171,10 @@ var require_project = __commonJS({
|
|
|
104414
106171
|
Object.defineProperty(exports2, "createProjectAccess", { enumerable: true, get: function() {
|
|
104415
106172
|
return access_1.createProjectAccess;
|
|
104416
106173
|
} });
|
|
106174
|
+
var script_1 = require_script();
|
|
106175
|
+
Object.defineProperty(exports2, "updatePackageScript", { enumerable: true, get: function() {
|
|
106176
|
+
return script_1.updatePackageScript;
|
|
106177
|
+
} });
|
|
104417
106178
|
}
|
|
104418
106179
|
});
|
|
104419
106180
|
|
|
@@ -104825,7 +106586,7 @@ var require_dist11 = __commonJS({
|
|
|
104825
106586
|
__createBinding(exports3, m, p);
|
|
104826
106587
|
};
|
|
104827
106588
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
104828
|
-
exports2.clearCdsModuleCache = exports2.toReferenceUri = exports2.readUi5Yaml = exports2.readCapServiceMetadataEdmx = exports2.loadModuleFromProject = exports2.isCapNodeJsProject = exports2.isCapJavaProject = exports2.isCapProject = exports2.getWebappPath = exports2.getProjectType = exports2.getProject = exports2.getNodeModulesPath = exports2.getMtaPath = exports2.getI18nPropertiesPaths = exports2.getCapI18nFolderNames = exports2.getCdsServices = exports2.getCdsRoots = exports2.getCdsFiles = exports2.getCapProjectType = exports2.getCapModelAndServices = exports2.getCapEnvironment = exports2.getCapCustomPaths = exports2.getAppType = exports2.getAppProgrammingLanguage = exports2.getAppRootFromWebappPath = exports2.findProjectRoot = exports2.findFioriArtifacts = exports2.findCapProjects = exports2.findAllApps = exports2.createProjectAccess = exports2.createApplicationAccess = exports2.getFilePaths = exports2.FioriToolsSettings = exports2.DirName = exports2.FileName = void 0;
|
|
106589
|
+
exports2.updatePackageScript = exports2.clearCdsModuleCache = exports2.toReferenceUri = exports2.readUi5Yaml = exports2.readCapServiceMetadataEdmx = exports2.loadModuleFromProject = exports2.isCapNodeJsProject = exports2.isCapJavaProject = exports2.isCapProject = exports2.getWebappPath = exports2.getProjectType = exports2.getProject = exports2.getNodeModulesPath = exports2.getMtaPath = exports2.getMinimumUI5Version = exports2.getMinUI5VersionAsArray = exports2.getMinUI5VersionFromManifest = exports2.getI18nPropertiesPaths = exports2.getCapI18nFolderNames = exports2.getCdsServices = exports2.getCdsRoots = exports2.getCdsFiles = exports2.getCapProjectType = exports2.getCapModelAndServices = exports2.getCapEnvironment = exports2.getCapCustomPaths = exports2.getAppType = exports2.getAppProgrammingLanguage = exports2.getAppRootFromWebappPath = exports2.findProjectRoot = exports2.findFioriArtifacts = exports2.findCapProjects = exports2.findAllApps = exports2.createProjectAccess = exports2.createApplicationAccess = exports2.addPackageDevDependency = exports2.getFilePaths = exports2.FioriToolsSettings = exports2.DirName = exports2.FileName = void 0;
|
|
104829
106590
|
var constants_1 = require_constants7();
|
|
104830
106591
|
Object.defineProperty(exports2, "FileName", { enumerable: true, get: function() {
|
|
104831
106592
|
return constants_1.FileName;
|
|
@@ -104841,6 +106602,9 @@ var require_dist11 = __commonJS({
|
|
|
104841
106602
|
return file_1.getFilePaths;
|
|
104842
106603
|
} });
|
|
104843
106604
|
var project_1 = require_project();
|
|
106605
|
+
Object.defineProperty(exports2, "addPackageDevDependency", { enumerable: true, get: function() {
|
|
106606
|
+
return project_1.addPackageDevDependency;
|
|
106607
|
+
} });
|
|
104844
106608
|
Object.defineProperty(exports2, "createApplicationAccess", { enumerable: true, get: function() {
|
|
104845
106609
|
return project_1.createApplicationAccess;
|
|
104846
106610
|
} });
|
|
@@ -104895,6 +106659,15 @@ var require_dist11 = __commonJS({
|
|
|
104895
106659
|
Object.defineProperty(exports2, "getI18nPropertiesPaths", { enumerable: true, get: function() {
|
|
104896
106660
|
return project_1.getI18nPropertiesPaths;
|
|
104897
106661
|
} });
|
|
106662
|
+
Object.defineProperty(exports2, "getMinUI5VersionFromManifest", { enumerable: true, get: function() {
|
|
106663
|
+
return project_1.getMinUI5VersionFromManifest;
|
|
106664
|
+
} });
|
|
106665
|
+
Object.defineProperty(exports2, "getMinUI5VersionAsArray", { enumerable: true, get: function() {
|
|
106666
|
+
return project_1.getMinUI5VersionAsArray;
|
|
106667
|
+
} });
|
|
106668
|
+
Object.defineProperty(exports2, "getMinimumUI5Version", { enumerable: true, get: function() {
|
|
106669
|
+
return project_1.getMinimumUI5Version;
|
|
106670
|
+
} });
|
|
104898
106671
|
Object.defineProperty(exports2, "getMtaPath", { enumerable: true, get: function() {
|
|
104899
106672
|
return project_1.getMtaPath;
|
|
104900
106673
|
} });
|
|
@@ -104934,6 +106707,9 @@ var require_dist11 = __commonJS({
|
|
|
104934
106707
|
Object.defineProperty(exports2, "clearCdsModuleCache", { enumerable: true, get: function() {
|
|
104935
106708
|
return project_1.clearCdsModuleCache;
|
|
104936
106709
|
} });
|
|
106710
|
+
Object.defineProperty(exports2, "updatePackageScript", { enumerable: true, get: function() {
|
|
106711
|
+
return project_1.updatePackageScript;
|
|
106712
|
+
} });
|
|
104937
106713
|
__exportStar(require_types9(), exports2);
|
|
104938
106714
|
__exportStar(require_library2(), exports2);
|
|
104939
106715
|
}
|
|
@@ -104974,9 +106750,9 @@ var require_client2 = __commonJS({
|
|
|
104974
106750
|
}
|
|
104975
106751
|
});
|
|
104976
106752
|
|
|
104977
|
-
// ../../node_modules
|
|
106753
|
+
// ../../node_modules/applicationinsights/out/Library/FileSystemHelper.js
|
|
104978
106754
|
var require_FileSystemHelper = __commonJS({
|
|
104979
|
-
"../../node_modules
|
|
106755
|
+
"../../node_modules/applicationinsights/out/Library/FileSystemHelper.js"(exports2) {
|
|
104980
106756
|
"use strict";
|
|
104981
106757
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
104982
106758
|
if (k2 === void 0)
|
|
@@ -105232,9 +107008,9 @@ var require_FileSystemHelper = __commonJS({
|
|
|
105232
107008
|
}
|
|
105233
107009
|
});
|
|
105234
107010
|
|
|
105235
|
-
// ../../node_modules
|
|
107011
|
+
// ../../node_modules/applicationinsights/out/Library/InternalAzureLogger.js
|
|
105236
107012
|
var require_InternalAzureLogger = __commonJS({
|
|
105237
|
-
"../../node_modules
|
|
107013
|
+
"../../node_modules/applicationinsights/out/Library/InternalAzureLogger.js"(exports2, module2) {
|
|
105238
107014
|
"use strict";
|
|
105239
107015
|
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
105240
107016
|
function adopt(value) {
|
|
@@ -105602,9 +107378,9 @@ var require_InternalAzureLogger = __commonJS({
|
|
|
105602
107378
|
}
|
|
105603
107379
|
});
|
|
105604
107380
|
|
|
105605
|
-
// ../../node_modules
|
|
107381
|
+
// ../../node_modules/applicationinsights/out/Library/Logging.js
|
|
105606
107382
|
var require_Logging = __commonJS({
|
|
105607
|
-
"../../node_modules
|
|
107383
|
+
"../../node_modules/applicationinsights/out/Library/Logging.js"(exports2, module2) {
|
|
105608
107384
|
"use strict";
|
|
105609
107385
|
var InternalAzureLogger = require_InternalAzureLogger();
|
|
105610
107386
|
var ENV_enableDebugLogging = "APPLICATION_INSIGHTS_ENABLE_DEBUG_LOGS";
|
|
@@ -105642,16 +107418,16 @@ var require_Logging = __commonJS({
|
|
|
105642
107418
|
}
|
|
105643
107419
|
});
|
|
105644
107420
|
|
|
105645
|
-
// ../../node_modules
|
|
107421
|
+
// ../../node_modules/applicationinsights/out/applicationinsights.json
|
|
105646
107422
|
var require_applicationinsights = __commonJS({
|
|
105647
|
-
"../../node_modules
|
|
107423
|
+
"../../node_modules/applicationinsights/out/applicationinsights.json"(exports2, module2) {
|
|
105648
107424
|
module2.exports = {};
|
|
105649
107425
|
}
|
|
105650
107426
|
});
|
|
105651
107427
|
|
|
105652
|
-
// ../../node_modules
|
|
107428
|
+
// ../../node_modules/applicationinsights/out/Library/JsonConfig.js
|
|
105653
107429
|
var require_JsonConfig = __commonJS({
|
|
105654
|
-
"../../node_modules
|
|
107430
|
+
"../../node_modules/applicationinsights/out/Library/JsonConfig.js"(exports2) {
|
|
105655
107431
|
"use strict";
|
|
105656
107432
|
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
105657
107433
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -105835,9 +107611,9 @@ var require_JsonConfig = __commonJS({
|
|
|
105835
107611
|
}
|
|
105836
107612
|
});
|
|
105837
107613
|
|
|
105838
|
-
// ../../node_modules
|
|
107614
|
+
// ../../node_modules/diagnostic-channel/dist/src/patchRequire.js
|
|
105839
107615
|
var require_patchRequire = __commonJS({
|
|
105840
|
-
"../../node_modules
|
|
107616
|
+
"../../node_modules/diagnostic-channel/dist/src/patchRequire.js"(exports2) {
|
|
105841
107617
|
"use strict";
|
|
105842
107618
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
105843
107619
|
exports2.makePatchingRequire = void 0;
|
|
@@ -105890,9 +107666,9 @@ var require_patchRequire = __commonJS({
|
|
|
105890
107666
|
}
|
|
105891
107667
|
});
|
|
105892
107668
|
|
|
105893
|
-
// ../../node_modules
|
|
107669
|
+
// ../../node_modules/diagnostic-channel/package.json
|
|
105894
107670
|
var require_package3 = __commonJS({
|
|
105895
|
-
"../../node_modules
|
|
107671
|
+
"../../node_modules/diagnostic-channel/package.json"(exports2, module2) {
|
|
105896
107672
|
module2.exports = {
|
|
105897
107673
|
name: "diagnostic-channel",
|
|
105898
107674
|
version: "1.1.1",
|
|
@@ -105937,9 +107713,9 @@ var require_package3 = __commonJS({
|
|
|
105937
107713
|
}
|
|
105938
107714
|
});
|
|
105939
107715
|
|
|
105940
|
-
// ../../node_modules
|
|
107716
|
+
// ../../node_modules/diagnostic-channel/dist/src/channel.js
|
|
105941
107717
|
var require_channel = __commonJS({
|
|
105942
|
-
"../../node_modules
|
|
107718
|
+
"../../node_modules/diagnostic-channel/dist/src/channel.js"(exports2) {
|
|
105943
107719
|
"use strict";
|
|
105944
107720
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
105945
107721
|
exports2.channel = exports2.ContextPreservingEventEmitter = exports2.trueFilter = exports2.makePatchingRequire = void 0;
|
|
@@ -117272,9 +119048,9 @@ var init_src2 = __esm({
|
|
|
117272
119048
|
}
|
|
117273
119049
|
});
|
|
117274
119050
|
|
|
117275
|
-
// ../../node_modules
|
|
119051
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/azure-coretracing.pub.js
|
|
117276
119052
|
var require_azure_coretracing_pub = __commonJS({
|
|
117277
|
-
"../../node_modules
|
|
119053
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/azure-coretracing.pub.js"(exports2) {
|
|
117278
119054
|
"use strict";
|
|
117279
119055
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117280
119056
|
exports2.enable = exports2.azureCoreTracing = exports2.AzureMonitorSymbol = void 0;
|
|
@@ -117361,9 +119137,9 @@ var require_azure_coretracing_pub = __commonJS({
|
|
|
117361
119137
|
}
|
|
117362
119138
|
});
|
|
117363
119139
|
|
|
117364
|
-
// ../../node_modules
|
|
119140
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/bunyan.pub.js
|
|
117365
119141
|
var require_bunyan_pub = __commonJS({
|
|
117366
|
-
"../../node_modules
|
|
119142
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/bunyan.pub.js"(exports2) {
|
|
117367
119143
|
"use strict";
|
|
117368
119144
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117369
119145
|
exports2.enable = exports2.bunyan = void 0;
|
|
@@ -117394,9 +119170,9 @@ var require_bunyan_pub = __commonJS({
|
|
|
117394
119170
|
}
|
|
117395
119171
|
});
|
|
117396
119172
|
|
|
117397
|
-
// ../../node_modules
|
|
119173
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/console.pub.js
|
|
117398
119174
|
var require_console_pub = __commonJS({
|
|
117399
|
-
"../../node_modules
|
|
119175
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/console.pub.js"(exports2) {
|
|
117400
119176
|
"use strict";
|
|
117401
119177
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117402
119178
|
exports2.enable = exports2.console = void 0;
|
|
@@ -117455,9 +119231,9 @@ var require_console_pub = __commonJS({
|
|
|
117455
119231
|
}
|
|
117456
119232
|
});
|
|
117457
119233
|
|
|
117458
|
-
// ../../node_modules
|
|
119234
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/mongodb-core.pub.js
|
|
117459
119235
|
var require_mongodb_core_pub = __commonJS({
|
|
117460
|
-
"../../node_modules
|
|
119236
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/mongodb-core.pub.js"(exports2) {
|
|
117461
119237
|
"use strict";
|
|
117462
119238
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117463
119239
|
exports2.enable = exports2.mongoCore = void 0;
|
|
@@ -117496,9 +119272,9 @@ var require_mongodb_core_pub = __commonJS({
|
|
|
117496
119272
|
}
|
|
117497
119273
|
});
|
|
117498
119274
|
|
|
117499
|
-
// ../../node_modules
|
|
119275
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/mongodb.pub.js
|
|
117500
119276
|
var require_mongodb_pub = __commonJS({
|
|
117501
|
-
"../../node_modules
|
|
119277
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/mongodb.pub.js"(exports2) {
|
|
117502
119278
|
"use strict";
|
|
117503
119279
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
117504
119280
|
__assign4 = Object.assign || function(t) {
|
|
@@ -117683,9 +119459,9 @@ var require_mongodb_pub = __commonJS({
|
|
|
117683
119459
|
}
|
|
117684
119460
|
});
|
|
117685
119461
|
|
|
117686
|
-
// ../../node_modules
|
|
119462
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/mysql.pub.js
|
|
117687
119463
|
var require_mysql_pub = __commonJS({
|
|
117688
|
-
"../../node_modules
|
|
119464
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/mysql.pub.js"(exports2) {
|
|
117689
119465
|
"use strict";
|
|
117690
119466
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117691
119467
|
exports2.enable = exports2.mysql = void 0;
|
|
@@ -117766,9 +119542,9 @@ var require_mysql_pub = __commonJS({
|
|
|
117766
119542
|
}
|
|
117767
119543
|
});
|
|
117768
119544
|
|
|
117769
|
-
// ../../node_modules
|
|
119545
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/pg-pool.pub.js
|
|
117770
119546
|
var require_pg_pool_pub = __commonJS({
|
|
117771
|
-
"../../node_modules
|
|
119547
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/pg-pool.pub.js"(exports2) {
|
|
117772
119548
|
"use strict";
|
|
117773
119549
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117774
119550
|
exports2.enable = exports2.postgresPool1 = void 0;
|
|
@@ -117794,9 +119570,9 @@ var require_pg_pool_pub = __commonJS({
|
|
|
117794
119570
|
}
|
|
117795
119571
|
});
|
|
117796
119572
|
|
|
117797
|
-
// ../../node_modules
|
|
119573
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/pg.pub.js
|
|
117798
119574
|
var require_pg_pub = __commonJS({
|
|
117799
|
-
"../../node_modules
|
|
119575
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/pg.pub.js"(exports2) {
|
|
117800
119576
|
"use strict";
|
|
117801
119577
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117802
119578
|
exports2.enable = exports2.postgres = exports2.postgres6 = void 0;
|
|
@@ -118045,9 +119821,9 @@ var require_pg_pub = __commonJS({
|
|
|
118045
119821
|
}
|
|
118046
119822
|
});
|
|
118047
119823
|
|
|
118048
|
-
// ../../node_modules
|
|
119824
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/redis.pub.js
|
|
118049
119825
|
var require_redis_pub = __commonJS({
|
|
118050
|
-
"../../node_modules
|
|
119826
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/redis.pub.js"(exports2) {
|
|
118051
119827
|
"use strict";
|
|
118052
119828
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
118053
119829
|
exports2.enable = exports2.redis = void 0;
|
|
@@ -118087,9 +119863,9 @@ var require_redis_pub = __commonJS({
|
|
|
118087
119863
|
}
|
|
118088
119864
|
});
|
|
118089
119865
|
|
|
118090
|
-
// ../../node_modules
|
|
119866
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/tedious.pub.js
|
|
118091
119867
|
var require_tedious_pub = __commonJS({
|
|
118092
|
-
"../../node_modules
|
|
119868
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/tedious.pub.js"(exports2) {
|
|
118093
119869
|
"use strict";
|
|
118094
119870
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
118095
119871
|
__assign4 = Object.assign || function(t) {
|
|
@@ -118150,9 +119926,9 @@ var require_tedious_pub = __commonJS({
|
|
|
118150
119926
|
}
|
|
118151
119927
|
});
|
|
118152
119928
|
|
|
118153
|
-
// ../../node_modules
|
|
119929
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/winston.pub.js
|
|
118154
119930
|
var require_winston_pub = __commonJS({
|
|
118155
|
-
"../../node_modules
|
|
119931
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/winston.pub.js"(exports2) {
|
|
118156
119932
|
"use strict";
|
|
118157
119933
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
118158
119934
|
var extendStatics = function(d, b) {
|
|
@@ -118307,9 +120083,9 @@ var require_winston_pub = __commonJS({
|
|
|
118307
120083
|
}
|
|
118308
120084
|
});
|
|
118309
120085
|
|
|
118310
|
-
// ../../node_modules
|
|
120086
|
+
// ../../node_modules/diagnostic-channel-publishers/dist/src/index.js
|
|
118311
120087
|
var require_src6 = __commonJS({
|
|
118312
|
-
"../../node_modules
|
|
120088
|
+
"../../node_modules/diagnostic-channel-publishers/dist/src/index.js"(exports2) {
|
|
118313
120089
|
"use strict";
|
|
118314
120090
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
118315
120091
|
exports2.enable = exports2.tedious = exports2.pgPool = exports2.pg = exports2.winston = exports2.redis = exports2.mysql = exports2.mongodb = exports2.mongodbCore = exports2.console = exports2.bunyan = exports2.azuresdk = void 0;
|
|
@@ -118352,9 +120128,9 @@ var require_src6 = __commonJS({
|
|
|
118352
120128
|
}
|
|
118353
120129
|
});
|
|
118354
120130
|
|
|
118355
|
-
// ../../node_modules
|
|
120131
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/initialization.js
|
|
118356
120132
|
var require_initialization = __commonJS({
|
|
118357
|
-
"../../node_modules
|
|
120133
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/initialization.js"(exports2) {
|
|
118358
120134
|
"use strict";
|
|
118359
120135
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
118360
120136
|
exports2.registerContextPreservation = exports2.IsInitialized = void 0;
|
|
@@ -118406,9 +120182,9 @@ var require_initialization = __commonJS({
|
|
|
118406
120182
|
}
|
|
118407
120183
|
});
|
|
118408
120184
|
|
|
118409
|
-
// ../../node_modules
|
|
120185
|
+
// ../../node_modules/applicationinsights/out/Library/RequestResponseHeaders.js
|
|
118410
120186
|
var require_RequestResponseHeaders = __commonJS({
|
|
118411
|
-
"../../node_modules
|
|
120187
|
+
"../../node_modules/applicationinsights/out/Library/RequestResponseHeaders.js"(exports2, module2) {
|
|
118412
120188
|
"use strict";
|
|
118413
120189
|
module2.exports = {
|
|
118414
120190
|
/**
|
|
@@ -118456,9 +120232,9 @@ var require_RequestResponseHeaders = __commonJS({
|
|
|
118456
120232
|
}
|
|
118457
120233
|
});
|
|
118458
120234
|
|
|
118459
|
-
// ../../node_modules
|
|
120235
|
+
// ../../node_modules/applicationinsights/out/Library/Util.js
|
|
118460
120236
|
var require_Util = __commonJS({
|
|
118461
|
-
"../../node_modules
|
|
120237
|
+
"../../node_modules/applicationinsights/out/Library/Util.js"(exports2, module2) {
|
|
118462
120238
|
"use strict";
|
|
118463
120239
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
118464
120240
|
__assign4 = Object.assign || function(t) {
|
|
@@ -118780,9 +120556,9 @@ var require_Util = __commonJS({
|
|
|
118780
120556
|
}
|
|
118781
120557
|
});
|
|
118782
120558
|
|
|
118783
|
-
// ../../node_modules
|
|
120559
|
+
// ../../node_modules/applicationinsights/out/Library/CorrelationIdManager.js
|
|
118784
120560
|
var require_CorrelationIdManager = __commonJS({
|
|
118785
|
-
"../../node_modules
|
|
120561
|
+
"../../node_modules/applicationinsights/out/Library/CorrelationIdManager.js"(exports2, module2) {
|
|
118786
120562
|
"use strict";
|
|
118787
120563
|
var Util = require_Util();
|
|
118788
120564
|
var CorrelationIdManager = (
|
|
@@ -118851,9 +120627,9 @@ var require_CorrelationIdManager = __commonJS({
|
|
|
118851
120627
|
}
|
|
118852
120628
|
});
|
|
118853
120629
|
|
|
118854
|
-
// ../../node_modules
|
|
120630
|
+
// ../../node_modules/applicationinsights/out/Library/Traceparent.js
|
|
118855
120631
|
var require_Traceparent = __commonJS({
|
|
118856
|
-
"../../node_modules
|
|
120632
|
+
"../../node_modules/applicationinsights/out/Library/Traceparent.js"(exports2, module2) {
|
|
118857
120633
|
"use strict";
|
|
118858
120634
|
var Util = require_Util();
|
|
118859
120635
|
var CorrelationIdManager = require_CorrelationIdManager();
|
|
@@ -118953,9 +120729,9 @@ var require_Traceparent = __commonJS({
|
|
|
118953
120729
|
}
|
|
118954
120730
|
});
|
|
118955
120731
|
|
|
118956
|
-
// ../../node_modules
|
|
120732
|
+
// ../../node_modules/applicationinsights/out/Library/Tracestate.js
|
|
118957
120733
|
var require_Tracestate = __commonJS({
|
|
118958
|
-
"../../node_modules
|
|
120734
|
+
"../../node_modules/applicationinsights/out/Library/Tracestate.js"(exports2, module2) {
|
|
118959
120735
|
"use strict";
|
|
118960
120736
|
var Tracestate = (
|
|
118961
120737
|
/** @class */
|
|
@@ -119023,9 +120799,9 @@ var require_Tracestate = __commonJS({
|
|
|
119023
120799
|
}
|
|
119024
120800
|
});
|
|
119025
120801
|
|
|
119026
|
-
// ../../node_modules
|
|
120802
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/Domain.js
|
|
119027
120803
|
var require_Domain = __commonJS({
|
|
119028
|
-
"../../node_modules
|
|
120804
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/Domain.js"(exports2, module2) {
|
|
119029
120805
|
"use strict";
|
|
119030
120806
|
var Domain = (
|
|
119031
120807
|
/** @class */
|
|
@@ -119039,9 +120815,9 @@ var require_Domain = __commonJS({
|
|
|
119039
120815
|
}
|
|
119040
120816
|
});
|
|
119041
120817
|
|
|
119042
|
-
// ../../node_modules
|
|
120818
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/AvailabilityData.js
|
|
119043
120819
|
var require_AvailabilityData = __commonJS({
|
|
119044
|
-
"../../node_modules
|
|
120820
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/AvailabilityData.js"(exports2, module2) {
|
|
119045
120821
|
"use strict";
|
|
119046
120822
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119047
120823
|
var extendStatics = function(d, b) {
|
|
@@ -119081,9 +120857,9 @@ var require_AvailabilityData = __commonJS({
|
|
|
119081
120857
|
}
|
|
119082
120858
|
});
|
|
119083
120859
|
|
|
119084
|
-
// ../../node_modules
|
|
120860
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/Base.js
|
|
119085
120861
|
var require_Base = __commonJS({
|
|
119086
|
-
"../../node_modules
|
|
120862
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/Base.js"(exports2, module2) {
|
|
119087
120863
|
"use strict";
|
|
119088
120864
|
var Base = (
|
|
119089
120865
|
/** @class */
|
|
@@ -119097,9 +120873,9 @@ var require_Base = __commonJS({
|
|
|
119097
120873
|
}
|
|
119098
120874
|
});
|
|
119099
120875
|
|
|
119100
|
-
// ../../node_modules
|
|
120876
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/ContextTagKeys.js
|
|
119101
120877
|
var require_ContextTagKeys = __commonJS({
|
|
119102
|
-
"../../node_modules
|
|
120878
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/ContextTagKeys.js"(exports2, module2) {
|
|
119103
120879
|
"use strict";
|
|
119104
120880
|
var ContextTagKeys = (
|
|
119105
120881
|
/** @class */
|
|
@@ -119136,9 +120912,9 @@ var require_ContextTagKeys = __commonJS({
|
|
|
119136
120912
|
}
|
|
119137
120913
|
});
|
|
119138
120914
|
|
|
119139
|
-
// ../../node_modules
|
|
120915
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/Data.js
|
|
119140
120916
|
var require_Data = __commonJS({
|
|
119141
|
-
"../../node_modules
|
|
120917
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/Data.js"(exports2, module2) {
|
|
119142
120918
|
"use strict";
|
|
119143
120919
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119144
120920
|
var extendStatics = function(d, b) {
|
|
@@ -119174,9 +120950,9 @@ var require_Data = __commonJS({
|
|
|
119174
120950
|
}
|
|
119175
120951
|
});
|
|
119176
120952
|
|
|
119177
|
-
// ../../node_modules
|
|
120953
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/DataPointType.js
|
|
119178
120954
|
var require_DataPointType = __commonJS({
|
|
119179
|
-
"../../node_modules
|
|
120955
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/DataPointType.js"(exports2, module2) {
|
|
119180
120956
|
"use strict";
|
|
119181
120957
|
var DataPointType;
|
|
119182
120958
|
(function(DataPointType2) {
|
|
@@ -119187,9 +120963,9 @@ var require_DataPointType = __commonJS({
|
|
|
119187
120963
|
}
|
|
119188
120964
|
});
|
|
119189
120965
|
|
|
119190
|
-
// ../../node_modules
|
|
120966
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/DataPoint.js
|
|
119191
120967
|
var require_DataPoint = __commonJS({
|
|
119192
|
-
"../../node_modules
|
|
120968
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/DataPoint.js"(exports2, module2) {
|
|
119193
120969
|
"use strict";
|
|
119194
120970
|
var DataPointType = require_DataPointType();
|
|
119195
120971
|
var DataPoint = (
|
|
@@ -119205,9 +120981,9 @@ var require_DataPoint = __commonJS({
|
|
|
119205
120981
|
}
|
|
119206
120982
|
});
|
|
119207
120983
|
|
|
119208
|
-
// ../../node_modules
|
|
120984
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/Envelope.js
|
|
119209
120985
|
var require_Envelope = __commonJS({
|
|
119210
|
-
"../../node_modules
|
|
120986
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/Envelope.js"(exports2, module2) {
|
|
119211
120987
|
"use strict";
|
|
119212
120988
|
var Envelope = (
|
|
119213
120989
|
/** @class */
|
|
@@ -119224,9 +121000,9 @@ var require_Envelope = __commonJS({
|
|
|
119224
121000
|
}
|
|
119225
121001
|
});
|
|
119226
121002
|
|
|
119227
|
-
// ../../node_modules
|
|
121003
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/EventData.js
|
|
119228
121004
|
var require_EventData = __commonJS({
|
|
119229
|
-
"../../node_modules
|
|
121005
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/EventData.js"(exports2, module2) {
|
|
119230
121006
|
"use strict";
|
|
119231
121007
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119232
121008
|
var extendStatics = function(d, b) {
|
|
@@ -119266,9 +121042,9 @@ var require_EventData = __commonJS({
|
|
|
119266
121042
|
}
|
|
119267
121043
|
});
|
|
119268
121044
|
|
|
119269
|
-
// ../../node_modules
|
|
121045
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/ExceptionData.js
|
|
119270
121046
|
var require_ExceptionData = __commonJS({
|
|
119271
|
-
"../../node_modules
|
|
121047
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/ExceptionData.js"(exports2, module2) {
|
|
119272
121048
|
"use strict";
|
|
119273
121049
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119274
121050
|
var extendStatics = function(d, b) {
|
|
@@ -119309,9 +121085,9 @@ var require_ExceptionData = __commonJS({
|
|
|
119309
121085
|
}
|
|
119310
121086
|
});
|
|
119311
121087
|
|
|
119312
|
-
// ../../node_modules
|
|
121088
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/ExceptionDetails.js
|
|
119313
121089
|
var require_ExceptionDetails = __commonJS({
|
|
119314
|
-
"../../node_modules
|
|
121090
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/ExceptionDetails.js"(exports2, module2) {
|
|
119315
121091
|
"use strict";
|
|
119316
121092
|
var ExceptionDetails = (
|
|
119317
121093
|
/** @class */
|
|
@@ -119327,9 +121103,9 @@ var require_ExceptionDetails = __commonJS({
|
|
|
119327
121103
|
}
|
|
119328
121104
|
});
|
|
119329
121105
|
|
|
119330
|
-
// ../../node_modules
|
|
121106
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/MessageData.js
|
|
119331
121107
|
var require_MessageData = __commonJS({
|
|
119332
|
-
"../../node_modules
|
|
121108
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/MessageData.js"(exports2, module2) {
|
|
119333
121109
|
"use strict";
|
|
119334
121110
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119335
121111
|
var extendStatics = function(d, b) {
|
|
@@ -119368,9 +121144,9 @@ var require_MessageData = __commonJS({
|
|
|
119368
121144
|
}
|
|
119369
121145
|
});
|
|
119370
121146
|
|
|
119371
|
-
// ../../node_modules
|
|
121147
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/MetricData.js
|
|
119372
121148
|
var require_MetricData = __commonJS({
|
|
119373
|
-
"../../node_modules
|
|
121149
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/MetricData.js"(exports2, module2) {
|
|
119374
121150
|
"use strict";
|
|
119375
121151
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119376
121152
|
var extendStatics = function(d, b) {
|
|
@@ -119410,9 +121186,9 @@ var require_MetricData = __commonJS({
|
|
|
119410
121186
|
}
|
|
119411
121187
|
});
|
|
119412
121188
|
|
|
119413
|
-
// ../../node_modules
|
|
121189
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/PageViewData.js
|
|
119414
121190
|
var require_PageViewData = __commonJS({
|
|
119415
|
-
"../../node_modules
|
|
121191
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/PageViewData.js"(exports2, module2) {
|
|
119416
121192
|
"use strict";
|
|
119417
121193
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119418
121194
|
var extendStatics = function(d, b) {
|
|
@@ -119452,9 +121228,9 @@ var require_PageViewData = __commonJS({
|
|
|
119452
121228
|
}
|
|
119453
121229
|
});
|
|
119454
121230
|
|
|
119455
|
-
// ../../node_modules
|
|
121231
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/RemoteDependencyData.js
|
|
119456
121232
|
var require_RemoteDependencyData = __commonJS({
|
|
119457
|
-
"../../node_modules
|
|
121233
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/RemoteDependencyData.js"(exports2, module2) {
|
|
119458
121234
|
"use strict";
|
|
119459
121235
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119460
121236
|
var extendStatics = function(d, b) {
|
|
@@ -119495,9 +121271,9 @@ var require_RemoteDependencyData = __commonJS({
|
|
|
119495
121271
|
}
|
|
119496
121272
|
});
|
|
119497
121273
|
|
|
119498
|
-
// ../../node_modules
|
|
121274
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/RequestData.js
|
|
119499
121275
|
var require_RequestData = __commonJS({
|
|
119500
|
-
"../../node_modules
|
|
121276
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/RequestData.js"(exports2, module2) {
|
|
119501
121277
|
"use strict";
|
|
119502
121278
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
119503
121279
|
var extendStatics = function(d, b) {
|
|
@@ -119537,9 +121313,9 @@ var require_RequestData = __commonJS({
|
|
|
119537
121313
|
}
|
|
119538
121314
|
});
|
|
119539
121315
|
|
|
119540
|
-
// ../../node_modules
|
|
121316
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/SeverityLevel.js
|
|
119541
121317
|
var require_SeverityLevel = __commonJS({
|
|
119542
|
-
"../../node_modules
|
|
121318
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/SeverityLevel.js"(exports2, module2) {
|
|
119543
121319
|
"use strict";
|
|
119544
121320
|
var SeverityLevel;
|
|
119545
121321
|
(function(SeverityLevel2) {
|
|
@@ -119553,9 +121329,9 @@ var require_SeverityLevel = __commonJS({
|
|
|
119553
121329
|
}
|
|
119554
121330
|
});
|
|
119555
121331
|
|
|
119556
|
-
// ../../node_modules
|
|
121332
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/StackFrame.js
|
|
119557
121333
|
var require_StackFrame = __commonJS({
|
|
119558
|
-
"../../node_modules
|
|
121334
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/StackFrame.js"(exports2, module2) {
|
|
119559
121335
|
"use strict";
|
|
119560
121336
|
var StackFrame = (
|
|
119561
121337
|
/** @class */
|
|
@@ -119569,9 +121345,9 @@ var require_StackFrame = __commonJS({
|
|
|
119569
121345
|
}
|
|
119570
121346
|
});
|
|
119571
121347
|
|
|
119572
|
-
// ../../node_modules
|
|
121348
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/index.js
|
|
119573
121349
|
var require_Generated = __commonJS({
|
|
119574
|
-
"../../node_modules
|
|
121350
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Generated/index.js"(exports2) {
|
|
119575
121351
|
"use strict";
|
|
119576
121352
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119577
121353
|
exports2.AvailabilityData = require_AvailabilityData();
|
|
@@ -119595,9 +121371,9 @@ var require_Generated = __commonJS({
|
|
|
119595
121371
|
}
|
|
119596
121372
|
});
|
|
119597
121373
|
|
|
119598
|
-
// ../../node_modules
|
|
121374
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/Constants.js
|
|
119599
121375
|
var require_Constants = __commonJS({
|
|
119600
|
-
"../../node_modules
|
|
121376
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/Constants.js"(exports2) {
|
|
119601
121377
|
"use strict";
|
|
119602
121378
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119603
121379
|
exports2.domainSupportsProperties = exports2.RemoteDependencyDataConstants = void 0;
|
|
@@ -119621,105 +121397,105 @@ var require_Constants = __commonJS({
|
|
|
119621
121397
|
}
|
|
119622
121398
|
});
|
|
119623
121399
|
|
|
119624
|
-
// ../../node_modules
|
|
121400
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/DependencyTelemetry.js
|
|
119625
121401
|
var require_DependencyTelemetry = __commonJS({
|
|
119626
|
-
"../../node_modules
|
|
121402
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/DependencyTelemetry.js"(exports2) {
|
|
119627
121403
|
"use strict";
|
|
119628
121404
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119629
121405
|
}
|
|
119630
121406
|
});
|
|
119631
121407
|
|
|
119632
|
-
// ../../node_modules
|
|
121408
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/EventTelemetry.js
|
|
119633
121409
|
var require_EventTelemetry = __commonJS({
|
|
119634
|
-
"../../node_modules
|
|
121410
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/EventTelemetry.js"(exports2) {
|
|
119635
121411
|
"use strict";
|
|
119636
121412
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119637
121413
|
}
|
|
119638
121414
|
});
|
|
119639
121415
|
|
|
119640
|
-
// ../../node_modules
|
|
121416
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/ExceptionTelemetry.js
|
|
119641
121417
|
var require_ExceptionTelemetry = __commonJS({
|
|
119642
|
-
"../../node_modules
|
|
121418
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/ExceptionTelemetry.js"(exports2) {
|
|
119643
121419
|
"use strict";
|
|
119644
121420
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119645
121421
|
}
|
|
119646
121422
|
});
|
|
119647
121423
|
|
|
119648
|
-
// ../../node_modules
|
|
121424
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/MetricTelemetry.js
|
|
119649
121425
|
var require_MetricTelemetry = __commonJS({
|
|
119650
|
-
"../../node_modules
|
|
121426
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/MetricTelemetry.js"(exports2) {
|
|
119651
121427
|
"use strict";
|
|
119652
121428
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119653
121429
|
}
|
|
119654
121430
|
});
|
|
119655
121431
|
|
|
119656
|
-
// ../../node_modules
|
|
121432
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/RequestTelemetry.js
|
|
119657
121433
|
var require_RequestTelemetry = __commonJS({
|
|
119658
|
-
"../../node_modules
|
|
121434
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/RequestTelemetry.js"(exports2) {
|
|
119659
121435
|
"use strict";
|
|
119660
121436
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119661
121437
|
}
|
|
119662
121438
|
});
|
|
119663
121439
|
|
|
119664
|
-
// ../../node_modules
|
|
121440
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/TraceTelemetry.js
|
|
119665
121441
|
var require_TraceTelemetry = __commonJS({
|
|
119666
|
-
"../../node_modules
|
|
121442
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/TraceTelemetry.js"(exports2) {
|
|
119667
121443
|
"use strict";
|
|
119668
121444
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119669
121445
|
}
|
|
119670
121446
|
});
|
|
119671
121447
|
|
|
119672
|
-
// ../../node_modules
|
|
121448
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/Telemetry.js
|
|
119673
121449
|
var require_Telemetry = __commonJS({
|
|
119674
|
-
"../../node_modules
|
|
121450
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/Telemetry.js"(exports2) {
|
|
119675
121451
|
"use strict";
|
|
119676
121452
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119677
121453
|
}
|
|
119678
121454
|
});
|
|
119679
121455
|
|
|
119680
|
-
// ../../node_modules
|
|
121456
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/NodeHttpDependencyTelemetry.js
|
|
119681
121457
|
var require_NodeHttpDependencyTelemetry = __commonJS({
|
|
119682
|
-
"../../node_modules
|
|
121458
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/NodeHttpDependencyTelemetry.js"(exports2) {
|
|
119683
121459
|
"use strict";
|
|
119684
121460
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119685
121461
|
}
|
|
119686
121462
|
});
|
|
119687
121463
|
|
|
119688
|
-
// ../../node_modules
|
|
121464
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/NodeHttpRequestTelemetry.js
|
|
119689
121465
|
var require_NodeHttpRequestTelemetry = __commonJS({
|
|
119690
|
-
"../../node_modules
|
|
121466
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/NodeHttpRequestTelemetry.js"(exports2) {
|
|
119691
121467
|
"use strict";
|
|
119692
121468
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119693
121469
|
}
|
|
119694
121470
|
});
|
|
119695
121471
|
|
|
119696
|
-
// ../../node_modules
|
|
121472
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/AvailabilityTelemetry.js
|
|
119697
121473
|
var require_AvailabilityTelemetry = __commonJS({
|
|
119698
|
-
"../../node_modules
|
|
121474
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/AvailabilityTelemetry.js"(exports2) {
|
|
119699
121475
|
"use strict";
|
|
119700
121476
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119701
121477
|
}
|
|
119702
121478
|
});
|
|
119703
121479
|
|
|
119704
|
-
// ../../node_modules
|
|
121480
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/PageViewTelemetry.js
|
|
119705
121481
|
var require_PageViewTelemetry = __commonJS({
|
|
119706
|
-
"../../node_modules
|
|
121482
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/PageViewTelemetry.js"(exports2) {
|
|
119707
121483
|
"use strict";
|
|
119708
121484
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119709
121485
|
}
|
|
119710
121486
|
});
|
|
119711
121487
|
|
|
119712
|
-
// ../../node_modules
|
|
121488
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/EnvelopeTelemetry.js
|
|
119713
121489
|
var require_EnvelopeTelemetry = __commonJS({
|
|
119714
|
-
"../../node_modules
|
|
121490
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/EnvelopeTelemetry.js"(exports2) {
|
|
119715
121491
|
"use strict";
|
|
119716
121492
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119717
121493
|
}
|
|
119718
121494
|
});
|
|
119719
121495
|
|
|
119720
|
-
// ../../node_modules
|
|
121496
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/TelemetryType.js
|
|
119721
121497
|
var require_TelemetryType = __commonJS({
|
|
119722
|
-
"../../node_modules
|
|
121498
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/TelemetryType.js"(exports2) {
|
|
119723
121499
|
"use strict";
|
|
119724
121500
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119725
121501
|
exports2.TelemetryType = exports2.TelemetryTypeString = exports2.baseTypeToTelemetryType = exports2.telemetryTypeToBaseType = void 0;
|
|
@@ -119791,9 +121567,9 @@ var require_TelemetryType = __commonJS({
|
|
|
119791
121567
|
}
|
|
119792
121568
|
});
|
|
119793
121569
|
|
|
119794
|
-
// ../../node_modules
|
|
121570
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/index.js
|
|
119795
121571
|
var require_TelemetryTypes = __commonJS({
|
|
119796
|
-
"../../node_modules
|
|
121572
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/TelemetryTypes/index.js"(exports2) {
|
|
119797
121573
|
"use strict";
|
|
119798
121574
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
119799
121575
|
if (k2 === void 0)
|
|
@@ -119828,73 +121604,73 @@ var require_TelemetryTypes = __commonJS({
|
|
|
119828
121604
|
}
|
|
119829
121605
|
});
|
|
119830
121606
|
|
|
119831
|
-
// ../../node_modules
|
|
121607
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/MetricQuickPulse.js
|
|
119832
121608
|
var require_MetricQuickPulse = __commonJS({
|
|
119833
|
-
"../../node_modules
|
|
121609
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/MetricQuickPulse.js"(exports2) {
|
|
119834
121610
|
"use strict";
|
|
119835
121611
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119836
121612
|
}
|
|
119837
121613
|
});
|
|
119838
121614
|
|
|
119839
|
-
// ../../node_modules
|
|
121615
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/EnvelopeQuickPulse.js
|
|
119840
121616
|
var require_EnvelopeQuickPulse = __commonJS({
|
|
119841
|
-
"../../node_modules
|
|
121617
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/EnvelopeQuickPulse.js"(exports2) {
|
|
119842
121618
|
"use strict";
|
|
119843
121619
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119844
121620
|
}
|
|
119845
121621
|
});
|
|
119846
121622
|
|
|
119847
|
-
// ../../node_modules
|
|
121623
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/DocumentQuickPulse.js
|
|
119848
121624
|
var require_DocumentQuickPulse = __commonJS({
|
|
119849
|
-
"../../node_modules
|
|
121625
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/DocumentQuickPulse.js"(exports2) {
|
|
119850
121626
|
"use strict";
|
|
119851
121627
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119852
121628
|
}
|
|
119853
121629
|
});
|
|
119854
121630
|
|
|
119855
|
-
// ../../node_modules
|
|
121631
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/ExceptionDocumentQuickPulse.js
|
|
119856
121632
|
var require_ExceptionDocumentQuickPulse = __commonJS({
|
|
119857
|
-
"../../node_modules
|
|
121633
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/ExceptionDocumentQuickPulse.js"(exports2) {
|
|
119858
121634
|
"use strict";
|
|
119859
121635
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119860
121636
|
}
|
|
119861
121637
|
});
|
|
119862
121638
|
|
|
119863
|
-
// ../../node_modules
|
|
121639
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/MessageDocumentQuickPulse.js
|
|
119864
121640
|
var require_MessageDocumentQuickPulse = __commonJS({
|
|
119865
|
-
"../../node_modules
|
|
121641
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/MessageDocumentQuickPulse.js"(exports2) {
|
|
119866
121642
|
"use strict";
|
|
119867
121643
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119868
121644
|
}
|
|
119869
121645
|
});
|
|
119870
121646
|
|
|
119871
|
-
// ../../node_modules
|
|
121647
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/DependencyDocumentQuickPulse.js
|
|
119872
121648
|
var require_DependencyDocumentQuickPulse = __commonJS({
|
|
119873
|
-
"../../node_modules
|
|
121649
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/DependencyDocumentQuickPulse.js"(exports2) {
|
|
119874
121650
|
"use strict";
|
|
119875
121651
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119876
121652
|
}
|
|
119877
121653
|
});
|
|
119878
121654
|
|
|
119879
|
-
// ../../node_modules
|
|
121655
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/RequestDocumentQuickPulse.js
|
|
119880
121656
|
var require_RequestDocumentQuickPulse = __commonJS({
|
|
119881
|
-
"../../node_modules
|
|
121657
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/RequestDocumentQuickPulse.js"(exports2) {
|
|
119882
121658
|
"use strict";
|
|
119883
121659
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119884
121660
|
}
|
|
119885
121661
|
});
|
|
119886
121662
|
|
|
119887
|
-
// ../../node_modules
|
|
121663
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/EventDocumentQuickPulse.js
|
|
119888
121664
|
var require_EventDocumentQuickPulse = __commonJS({
|
|
119889
|
-
"../../node_modules
|
|
121665
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/EventDocumentQuickPulse.js"(exports2) {
|
|
119890
121666
|
"use strict";
|
|
119891
121667
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
119892
121668
|
}
|
|
119893
121669
|
});
|
|
119894
121670
|
|
|
119895
|
-
// ../../node_modules
|
|
121671
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/index.js
|
|
119896
121672
|
var require_QuickPulseTypes = __commonJS({
|
|
119897
|
-
"../../node_modules
|
|
121673
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/QuickPulseTypes/index.js"(exports2) {
|
|
119898
121674
|
"use strict";
|
|
119899
121675
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
119900
121676
|
if (k2 === void 0)
|
|
@@ -119924,9 +121700,9 @@ var require_QuickPulseTypes = __commonJS({
|
|
|
119924
121700
|
}
|
|
119925
121701
|
});
|
|
119926
121702
|
|
|
119927
|
-
// ../../node_modules
|
|
121703
|
+
// ../../node_modules/applicationinsights/out/Declarations/Contracts/index.js
|
|
119928
121704
|
var require_Contracts = __commonJS({
|
|
119929
|
-
"../../node_modules
|
|
121705
|
+
"../../node_modules/applicationinsights/out/Declarations/Contracts/index.js"(exports2) {
|
|
119930
121706
|
"use strict";
|
|
119931
121707
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
119932
121708
|
if (k2 === void 0)
|
|
@@ -119952,9 +121728,9 @@ var require_Contracts = __commonJS({
|
|
|
119952
121728
|
}
|
|
119953
121729
|
});
|
|
119954
121730
|
|
|
119955
|
-
// ../../node_modules
|
|
121731
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/RequestParser.js
|
|
119956
121732
|
var require_RequestParser = __commonJS({
|
|
119957
|
-
"../../node_modules
|
|
121733
|
+
"../../node_modules/applicationinsights/out/AutoCollection/RequestParser.js"(exports2, module2) {
|
|
119958
121734
|
"use strict";
|
|
119959
121735
|
var RequestParser = (
|
|
119960
121736
|
/** @class */
|
|
@@ -119995,9 +121771,9 @@ var require_RequestParser = __commonJS({
|
|
|
119995
121771
|
}
|
|
119996
121772
|
});
|
|
119997
121773
|
|
|
119998
|
-
// ../../node_modules
|
|
121774
|
+
// ../../node_modules/applicationinsights/out/Declarations/Constants.js
|
|
119999
121775
|
var require_Constants2 = __commonJS({
|
|
120000
|
-
"../../node_modules
|
|
121776
|
+
"../../node_modules/applicationinsights/out/Declarations/Constants.js"(exports2) {
|
|
120001
121777
|
"use strict";
|
|
120002
121778
|
var _a3;
|
|
120003
121779
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -120153,9 +121929,9 @@ var require_Constants2 = __commonJS({
|
|
|
120153
121929
|
}
|
|
120154
121930
|
});
|
|
120155
121931
|
|
|
120156
|
-
// ../../node_modules
|
|
121932
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/HttpRequestParser.js
|
|
120157
121933
|
var require_HttpRequestParser = __commonJS({
|
|
120158
|
-
"../../node_modules
|
|
121934
|
+
"../../node_modules/applicationinsights/out/AutoCollection/HttpRequestParser.js"(exports2, module2) {
|
|
120159
121935
|
"use strict";
|
|
120160
121936
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
120161
121937
|
var extendStatics = function(d, b) {
|
|
@@ -122839,9 +124615,9 @@ var require_context2 = __commonJS({
|
|
|
122839
124615
|
}
|
|
122840
124616
|
});
|
|
122841
124617
|
|
|
122842
|
-
// ../../node_modules
|
|
124618
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/CorrelationContextManager.js
|
|
122843
124619
|
var require_CorrelationContextManager = __commonJS({
|
|
122844
|
-
"../../node_modules
|
|
124620
|
+
"../../node_modules/applicationinsights/out/AutoCollection/CorrelationContextManager.js"(exports2) {
|
|
122845
124621
|
"use strict";
|
|
122846
124622
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
122847
124623
|
if (k2 === void 0)
|
|
@@ -123113,9 +124889,9 @@ var require_CorrelationContextManager = __commonJS({
|
|
|
123113
124889
|
}
|
|
123114
124890
|
});
|
|
123115
124891
|
|
|
123116
|
-
// ../../node_modules
|
|
124892
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/console.sub.js
|
|
123117
124893
|
var require_console_sub = __commonJS({
|
|
123118
|
-
"../../node_modules
|
|
124894
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/console.sub.js"(exports2) {
|
|
123119
124895
|
"use strict";
|
|
123120
124896
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
123121
124897
|
exports2.dispose = exports2.enable = void 0;
|
|
@@ -123173,9 +124949,9 @@ var require_console_sub = __commonJS({
|
|
|
123173
124949
|
}
|
|
123174
124950
|
});
|
|
123175
124951
|
|
|
123176
|
-
// ../../node_modules
|
|
124952
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/bunyan.sub.js
|
|
123177
124953
|
var require_bunyan_sub = __commonJS({
|
|
123178
|
-
"../../node_modules
|
|
124954
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/bunyan.sub.js"(exports2) {
|
|
123179
124955
|
"use strict";
|
|
123180
124956
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
123181
124957
|
exports2.dispose = exports2.enable = void 0;
|
|
@@ -123248,9 +125024,9 @@ var require_bunyan_sub = __commonJS({
|
|
|
123248
125024
|
}
|
|
123249
125025
|
});
|
|
123250
125026
|
|
|
123251
|
-
// ../../node_modules
|
|
125027
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/winston.sub.js
|
|
123252
125028
|
var require_winston_sub = __commonJS({
|
|
123253
|
-
"../../node_modules
|
|
125029
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/winston.sub.js"(exports2) {
|
|
123254
125030
|
"use strict";
|
|
123255
125031
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
123256
125032
|
exports2.dispose = exports2.enable = void 0;
|
|
@@ -123346,9 +125122,9 @@ var require_winston_sub = __commonJS({
|
|
|
123346
125122
|
}
|
|
123347
125123
|
});
|
|
123348
125124
|
|
|
123349
|
-
// ../../node_modules
|
|
125125
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/Console.js
|
|
123350
125126
|
var require_Console = __commonJS({
|
|
123351
|
-
"../../node_modules
|
|
125127
|
+
"../../node_modules/applicationinsights/out/AutoCollection/Console.js"(exports2, module2) {
|
|
123352
125128
|
"use strict";
|
|
123353
125129
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
123354
125130
|
if (k2 === void 0)
|
|
@@ -123411,9 +125187,9 @@ var require_Console = __commonJS({
|
|
|
123411
125187
|
}
|
|
123412
125188
|
});
|
|
123413
125189
|
|
|
123414
|
-
// ../../node_modules
|
|
125190
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/Exceptions.js
|
|
123415
125191
|
var require_Exceptions = __commonJS({
|
|
123416
|
-
"../../node_modules
|
|
125192
|
+
"../../node_modules/applicationinsights/out/AutoCollection/Exceptions.js"(exports2, module2) {
|
|
123417
125193
|
"use strict";
|
|
123418
125194
|
var AutoCollectExceptions = (
|
|
123419
125195
|
/** @class */
|
|
@@ -123493,9 +125269,9 @@ var require_Exceptions = __commonJS({
|
|
|
123493
125269
|
}
|
|
123494
125270
|
});
|
|
123495
125271
|
|
|
123496
|
-
// ../../node_modules
|
|
125272
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/Performance.js
|
|
123497
125273
|
var require_Performance = __commonJS({
|
|
123498
|
-
"../../node_modules
|
|
125274
|
+
"../../node_modules/applicationinsights/out/AutoCollection/Performance.js"(exports2, module2) {
|
|
123499
125275
|
"use strict";
|
|
123500
125276
|
var os3 = require("os");
|
|
123501
125277
|
var Constants = require_Constants2();
|
|
@@ -123757,9 +125533,9 @@ var require_Performance = __commonJS({
|
|
|
123757
125533
|
}
|
|
123758
125534
|
});
|
|
123759
125535
|
|
|
123760
|
-
// ../../node_modules
|
|
125536
|
+
// ../../node_modules/applicationinsights/out/Declarations/Metrics/AggregatedMetricCounters.js
|
|
123761
125537
|
var require_AggregatedMetricCounters = __commonJS({
|
|
123762
|
-
"../../node_modules
|
|
125538
|
+
"../../node_modules/applicationinsights/out/Declarations/Metrics/AggregatedMetricCounters.js"(exports2) {
|
|
123763
125539
|
"use strict";
|
|
123764
125540
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
123765
125541
|
exports2.AggregatedMetricCounter = void 0;
|
|
@@ -123781,9 +125557,9 @@ var require_AggregatedMetricCounters = __commonJS({
|
|
|
123781
125557
|
}
|
|
123782
125558
|
});
|
|
123783
125559
|
|
|
123784
|
-
// ../../node_modules
|
|
125560
|
+
// ../../node_modules/applicationinsights/out/Declarations/Metrics/AggregatedMetricDimensions.js
|
|
123785
125561
|
var require_AggregatedMetricDimensions = __commonJS({
|
|
123786
|
-
"../../node_modules
|
|
125562
|
+
"../../node_modules/applicationinsights/out/Declarations/Metrics/AggregatedMetricDimensions.js"(exports2) {
|
|
123787
125563
|
"use strict";
|
|
123788
125564
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
123789
125565
|
exports2.PreaggregatedMetricPropertyNames = void 0;
|
|
@@ -123802,9 +125578,9 @@ var require_AggregatedMetricDimensions = __commonJS({
|
|
|
123802
125578
|
}
|
|
123803
125579
|
});
|
|
123804
125580
|
|
|
123805
|
-
// ../../node_modules
|
|
125581
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/PreAggregatedMetrics.js
|
|
123806
125582
|
var require_PreAggregatedMetrics = __commonJS({
|
|
123807
|
-
"../../node_modules
|
|
125583
|
+
"../../node_modules/applicationinsights/out/AutoCollection/PreAggregatedMetrics.js"(exports2, module2) {
|
|
123808
125584
|
"use strict";
|
|
123809
125585
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
123810
125586
|
__assign4 = Object.assign || function(t) {
|
|
@@ -124053,9 +125829,9 @@ var require_PreAggregatedMetrics = __commonJS({
|
|
|
124053
125829
|
}
|
|
124054
125830
|
});
|
|
124055
125831
|
|
|
124056
|
-
// ../../node_modules
|
|
125832
|
+
// ../../node_modules/applicationinsights/out/Library/Context.js
|
|
124057
125833
|
var require_Context = __commonJS({
|
|
124058
|
-
"../../node_modules
|
|
125834
|
+
"../../node_modules/applicationinsights/out/Library/Context.js"(exports2, module2) {
|
|
124059
125835
|
"use strict";
|
|
124060
125836
|
var os3 = require("os");
|
|
124061
125837
|
var fs4 = require("fs");
|
|
@@ -124118,9 +125894,9 @@ var require_Context = __commonJS({
|
|
|
124118
125894
|
}
|
|
124119
125895
|
});
|
|
124120
125896
|
|
|
124121
|
-
// ../../node_modules
|
|
125897
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/HeartBeat.js
|
|
124122
125898
|
var require_HeartBeat = __commonJS({
|
|
124123
|
-
"../../node_modules
|
|
125899
|
+
"../../node_modules/applicationinsights/out/AutoCollection/HeartBeat.js"(exports2, module2) {
|
|
124124
125900
|
"use strict";
|
|
124125
125901
|
var crypto3 = require("crypto");
|
|
124126
125902
|
var os3 = require("os");
|
|
@@ -124207,9 +125983,9 @@ var require_HeartBeat = __commonJS({
|
|
|
124207
125983
|
}
|
|
124208
125984
|
});
|
|
124209
125985
|
|
|
124210
|
-
// ../../node_modules
|
|
125986
|
+
// ../../node_modules/applicationinsights/out/Library/SnippetInjectionHelper.js
|
|
124211
125987
|
var require_SnippetInjectionHelper = __commonJS({
|
|
124212
|
-
"../../node_modules
|
|
125988
|
+
"../../node_modules/applicationinsights/out/Library/SnippetInjectionHelper.js"(exports2) {
|
|
124213
125989
|
"use strict";
|
|
124214
125990
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
124215
125991
|
exports2.isContentTypeHeaderHtml = exports2.insertSnippetByIndex = exports2.getContentEncodingFromHeaders = exports2.isSupportedContentEncoding = exports2.findBufferEncodingType = exports2.isBufferType = exports2.getBrotliDecompressSync = exports2.getBrotliDecompressAsync = exports2.getBrotliCompressSync = exports2.getBrotliCompressAsync = exports2.inflateAsync = exports2.deflateAsync = exports2.gunzipAsync = exports2.gzipAsync = exports2.isBrotliSupperted = exports2.bufferEncodingTypes = exports2.contentEncodingMethod = void 0;
|
|
@@ -124342,9 +126118,9 @@ var require_SnippetInjectionHelper = __commonJS({
|
|
|
124342
126118
|
}
|
|
124343
126119
|
});
|
|
124344
126120
|
|
|
124345
|
-
// ../../node_modules
|
|
126121
|
+
// ../../node_modules/applicationinsights/out/Library/PrefixHelper.js
|
|
124346
126122
|
var require_PrefixHelper = __commonJS({
|
|
124347
|
-
"../../node_modules
|
|
126123
|
+
"../../node_modules/applicationinsights/out/Library/PrefixHelper.js"(exports2) {
|
|
124348
126124
|
"use strict";
|
|
124349
126125
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
124350
126126
|
exports2.getResourceProvider = exports2.getOsPrefix = exports2.isFunctionApp = exports2.isWebApp = exports2.isLinux = exports2.isWindows = void 0;
|
|
@@ -124375,9 +126151,9 @@ var require_PrefixHelper = __commonJS({
|
|
|
124375
126151
|
}
|
|
124376
126152
|
});
|
|
124377
126153
|
|
|
124378
|
-
// ../../node_modules
|
|
126154
|
+
// ../../node_modules/applicationinsights/out/Library/ConnectionStringParser.js
|
|
124379
126155
|
var require_ConnectionStringParser = __commonJS({
|
|
124380
|
-
"../../node_modules
|
|
126156
|
+
"../../node_modules/applicationinsights/out/Library/ConnectionStringParser.js"(exports2, module2) {
|
|
124381
126157
|
"use strict";
|
|
124382
126158
|
var Constants = require_Constants2();
|
|
124383
126159
|
var ConnectionStringParser = (
|
|
@@ -124482,9 +126258,9 @@ var init_applicationinsights_web_snippet = __esm({
|
|
|
124482
126258
|
}
|
|
124483
126259
|
});
|
|
124484
126260
|
|
|
124485
|
-
// ../../node_modules
|
|
126261
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/WebSnippet.js
|
|
124486
126262
|
var require_WebSnippet = __commonJS({
|
|
124487
|
-
"../../node_modules
|
|
126263
|
+
"../../node_modules/applicationinsights/out/AutoCollection/WebSnippet.js"(exports2, module2) {
|
|
124488
126264
|
"use strict";
|
|
124489
126265
|
var http3 = require("http");
|
|
124490
126266
|
var https3 = require("https");
|
|
@@ -124808,9 +126584,9 @@ var require_WebSnippet = __commonJS({
|
|
|
124808
126584
|
}
|
|
124809
126585
|
});
|
|
124810
126586
|
|
|
124811
|
-
// ../../node_modules
|
|
126587
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/HttpDependencyParser.js
|
|
124812
126588
|
var require_HttpDependencyParser = __commonJS({
|
|
124813
|
-
"../../node_modules
|
|
126589
|
+
"../../node_modules/applicationinsights/out/AutoCollection/HttpDependencyParser.js"(exports2, module2) {
|
|
124814
126590
|
"use strict";
|
|
124815
126591
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
124816
126592
|
var extendStatics = function(d, b) {
|
|
@@ -124976,9 +126752,9 @@ var require_HttpDependencyParser = __commonJS({
|
|
|
124976
126752
|
}
|
|
124977
126753
|
});
|
|
124978
126754
|
|
|
124979
|
-
// ../../node_modules
|
|
126755
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/Azure/EventHub.js
|
|
124980
126756
|
var require_EventHub = __commonJS({
|
|
124981
|
-
"../../node_modules
|
|
126757
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/Azure/EventHub.js"(exports2) {
|
|
124982
126758
|
"use strict";
|
|
124983
126759
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
124984
126760
|
__assign4 = Object.assign || function(t) {
|
|
@@ -125037,9 +126813,9 @@ var require_EventHub = __commonJS({
|
|
|
125037
126813
|
}
|
|
125038
126814
|
});
|
|
125039
126815
|
|
|
125040
|
-
// ../../node_modules
|
|
126816
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/SpanParser.js
|
|
125041
126817
|
var require_SpanParser = __commonJS({
|
|
125042
|
-
"../../node_modules
|
|
126818
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/SpanParser.js"(exports2) {
|
|
125043
126819
|
"use strict";
|
|
125044
126820
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
125045
126821
|
if (k2 === void 0)
|
|
@@ -125312,9 +127088,9 @@ var require_SpanParser = __commonJS({
|
|
|
125312
127088
|
}
|
|
125313
127089
|
});
|
|
125314
127090
|
|
|
125315
|
-
// ../../node_modules
|
|
127091
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/AsyncHooksScopeManager.js
|
|
125316
127092
|
var require_AsyncHooksScopeManager = __commonJS({
|
|
125317
|
-
"../../node_modules
|
|
127093
|
+
"../../node_modules/applicationinsights/out/AutoCollection/AsyncHooksScopeManager.js"(exports2) {
|
|
125318
127094
|
"use strict";
|
|
125319
127095
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
125320
127096
|
__assign4 = Object.assign || function(t) {
|
|
@@ -125396,9 +127172,9 @@ var require_AsyncHooksScopeManager = __commonJS({
|
|
|
125396
127172
|
}
|
|
125397
127173
|
});
|
|
125398
127174
|
|
|
125399
|
-
// ../../node_modules
|
|
127175
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/azure-coretracing.sub.js
|
|
125400
127176
|
var require_azure_coretracing_sub = __commonJS({
|
|
125401
|
-
"../../node_modules
|
|
127177
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/azure-coretracing.sub.js"(exports2) {
|
|
125402
127178
|
"use strict";
|
|
125403
127179
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
125404
127180
|
if (k2 === void 0)
|
|
@@ -125485,9 +127261,9 @@ var require_azure_coretracing_sub = __commonJS({
|
|
|
125485
127261
|
}
|
|
125486
127262
|
});
|
|
125487
127263
|
|
|
125488
|
-
// ../../node_modules
|
|
127264
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/mongodb.sub.js
|
|
125489
127265
|
var require_mongodb_sub = __commonJS({
|
|
125490
|
-
"../../node_modules
|
|
127266
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/mongodb.sub.js"(exports2) {
|
|
125491
127267
|
"use strict";
|
|
125492
127268
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
125493
127269
|
exports2.enable = exports2.subscriber = void 0;
|
|
@@ -125544,9 +127320,9 @@ var require_mongodb_sub = __commonJS({
|
|
|
125544
127320
|
}
|
|
125545
127321
|
});
|
|
125546
127322
|
|
|
125547
|
-
// ../../node_modules
|
|
127323
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/mysql.sub.js
|
|
125548
127324
|
var require_mysql_sub = __commonJS({
|
|
125549
|
-
"../../node_modules
|
|
127325
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/mysql.sub.js"(exports2) {
|
|
125550
127326
|
"use strict";
|
|
125551
127327
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
125552
127328
|
exports2.enable = exports2.subscriber = void 0;
|
|
@@ -125605,9 +127381,9 @@ var require_mysql_sub = __commonJS({
|
|
|
125605
127381
|
}
|
|
125606
127382
|
});
|
|
125607
127383
|
|
|
125608
|
-
// ../../node_modules
|
|
127384
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/redis.sub.js
|
|
125609
127385
|
var require_redis_sub = __commonJS({
|
|
125610
|
-
"../../node_modules
|
|
127386
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/redis.sub.js"(exports2) {
|
|
125611
127387
|
"use strict";
|
|
125612
127388
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
125613
127389
|
exports2.enable = exports2.subscriber = void 0;
|
|
@@ -125663,9 +127439,9 @@ var require_redis_sub = __commonJS({
|
|
|
125663
127439
|
}
|
|
125664
127440
|
});
|
|
125665
127441
|
|
|
125666
|
-
// ../../node_modules
|
|
127442
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/postgres.sub.js
|
|
125667
127443
|
var require_postgres_sub = __commonJS({
|
|
125668
|
-
"../../node_modules
|
|
127444
|
+
"../../node_modules/applicationinsights/out/AutoCollection/diagnostic-channel/postgres.sub.js"(exports2) {
|
|
125669
127445
|
"use strict";
|
|
125670
127446
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
125671
127447
|
exports2.enable = exports2.subscriber = void 0;
|
|
@@ -125721,9 +127497,9 @@ var require_postgres_sub = __commonJS({
|
|
|
125721
127497
|
}
|
|
125722
127498
|
});
|
|
125723
127499
|
|
|
125724
|
-
// ../../node_modules
|
|
127500
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/HttpDependencies.js
|
|
125725
127501
|
var require_HttpDependencies = __commonJS({
|
|
125726
|
-
"../../node_modules
|
|
127502
|
+
"../../node_modules/applicationinsights/out/AutoCollection/HttpDependencies.js"(exports2, module2) {
|
|
125727
127503
|
"use strict";
|
|
125728
127504
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
125729
127505
|
if (k2 === void 0)
|
|
@@ -125989,9 +127765,9 @@ var require_HttpDependencies = __commonJS({
|
|
|
125989
127765
|
}
|
|
125990
127766
|
});
|
|
125991
127767
|
|
|
125992
|
-
// ../../node_modules
|
|
127768
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/HttpRequests.js
|
|
125993
127769
|
var require_HttpRequests = __commonJS({
|
|
125994
|
-
"../../node_modules
|
|
127770
|
+
"../../node_modules/applicationinsights/out/AutoCollection/HttpRequests.js"(exports2, module2) {
|
|
125995
127771
|
"use strict";
|
|
125996
127772
|
var http3 = require("http");
|
|
125997
127773
|
var https3 = require("https");
|
|
@@ -126207,9 +127983,9 @@ var require_HttpRequests = __commonJS({
|
|
|
126207
127983
|
}
|
|
126208
127984
|
});
|
|
126209
127985
|
|
|
126210
|
-
// ../../node_modules
|
|
127986
|
+
// ../../node_modules/applicationinsights/out/Library/QuickPulseEnvelopeFactory.js
|
|
126211
127987
|
var require_QuickPulseEnvelopeFactory = __commonJS({
|
|
126212
|
-
"../../node_modules
|
|
127988
|
+
"../../node_modules/applicationinsights/out/Library/QuickPulseEnvelopeFactory.js"(exports2, module2) {
|
|
126213
127989
|
"use strict";
|
|
126214
127990
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
126215
127991
|
__assign4 = Object.assign || function(t) {
|
|
@@ -126376,9 +128152,9 @@ var require_QuickPulseEnvelopeFactory = __commonJS({
|
|
|
126376
128152
|
}
|
|
126377
128153
|
});
|
|
126378
128154
|
|
|
126379
|
-
// ../../node_modules
|
|
128155
|
+
// ../../node_modules/applicationinsights/out/Library/QuickPulseUtil.js
|
|
126380
128156
|
var require_QuickPulseUtil = __commonJS({
|
|
126381
|
-
"../../node_modules
|
|
128157
|
+
"../../node_modules/applicationinsights/out/Library/QuickPulseUtil.js"(exports2, module2) {
|
|
126382
128158
|
"use strict";
|
|
126383
128159
|
var getTransmissionTime = function() {
|
|
126384
128160
|
return (Date.now() + 621355968e5) * 1e4;
|
|
@@ -126387,9 +128163,9 @@ var require_QuickPulseUtil = __commonJS({
|
|
|
126387
128163
|
}
|
|
126388
128164
|
});
|
|
126389
128165
|
|
|
126390
|
-
// ../../node_modules
|
|
128166
|
+
// ../../node_modules/applicationinsights/out/Library/QuickPulseSender.js
|
|
126391
128167
|
var require_QuickPulseSender = __commonJS({
|
|
126392
|
-
"../../node_modules
|
|
128168
|
+
"../../node_modules/applicationinsights/out/Library/QuickPulseSender.js"(exports2, module2) {
|
|
126393
128169
|
"use strict";
|
|
126394
128170
|
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
126395
128171
|
function adopt(value) {
|
|
@@ -126640,9 +128416,9 @@ var require_QuickPulseSender = __commonJS({
|
|
|
126640
128416
|
}
|
|
126641
128417
|
});
|
|
126642
128418
|
|
|
126643
|
-
// ../../node_modules
|
|
128419
|
+
// ../../node_modules/applicationinsights/out/Library/QuickPulseStateManager.js
|
|
126644
128420
|
var require_QuickPulseStateManager = __commonJS({
|
|
126645
|
-
"../../node_modules
|
|
128421
|
+
"../../node_modules/applicationinsights/out/Library/QuickPulseStateManager.js"(exports2, module2) {
|
|
126646
128422
|
"use strict";
|
|
126647
128423
|
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
126648
128424
|
function adopt(value) {
|
|
@@ -126918,9 +128694,9 @@ var require_QuickPulseStateManager = __commonJS({
|
|
|
126918
128694
|
}
|
|
126919
128695
|
});
|
|
126920
128696
|
|
|
126921
|
-
// ../../node_modules
|
|
128697
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/NativePerformance.js
|
|
126922
128698
|
var require_NativePerformance = __commonJS({
|
|
126923
|
-
"../../node_modules
|
|
128699
|
+
"../../node_modules/applicationinsights/out/AutoCollection/NativePerformance.js"(exports2) {
|
|
126924
128700
|
"use strict";
|
|
126925
128701
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
126926
128702
|
__assign4 = Object.assign || function(t) {
|
|
@@ -127114,9 +128890,9 @@ var require_NativePerformance = __commonJS({
|
|
|
127114
128890
|
}
|
|
127115
128891
|
});
|
|
127116
128892
|
|
|
127117
|
-
// ../../node_modules
|
|
128893
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/AzureFunctionsHook.js
|
|
127118
128894
|
var require_AzureFunctionsHook = __commonJS({
|
|
127119
|
-
"../../node_modules
|
|
128895
|
+
"../../node_modules/applicationinsights/out/AutoCollection/AzureFunctionsHook.js"(exports2) {
|
|
127120
128896
|
"use strict";
|
|
127121
128897
|
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
127122
128898
|
function adopt(value) {
|
|
@@ -127449,9 +129225,9 @@ var require_AzureFunctionsHook = __commonJS({
|
|
|
127449
129225
|
}
|
|
127450
129226
|
});
|
|
127451
129227
|
|
|
127452
|
-
// ../../node_modules
|
|
129228
|
+
// ../../node_modules/applicationinsights/out/Library/Config.js
|
|
127453
129229
|
var require_Config = __commonJS({
|
|
127454
|
-
"../../node_modules
|
|
129230
|
+
"../../node_modules/applicationinsights/out/Library/Config.js"(exports2, module2) {
|
|
127455
129231
|
"use strict";
|
|
127456
129232
|
var CorrelationIdManager = require_CorrelationIdManager();
|
|
127457
129233
|
var ConnectionStringParser = require_ConnectionStringParser();
|
|
@@ -130678,9 +132454,9 @@ var init_src5 = __esm({
|
|
|
130678
132454
|
}
|
|
130679
132455
|
});
|
|
130680
132456
|
|
|
130681
|
-
// ../../node_modules
|
|
132457
|
+
// ../../node_modules/applicationinsights/out/Library/AuthorizationHandler.js
|
|
130682
132458
|
var require_AuthorizationHandler = __commonJS({
|
|
130683
|
-
"../../node_modules
|
|
132459
|
+
"../../node_modules/applicationinsights/out/Library/AuthorizationHandler.js"(exports2, module2) {
|
|
130684
132460
|
"use strict";
|
|
130685
132461
|
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
130686
132462
|
function adopt(value) {
|
|
@@ -130824,9 +132600,9 @@ var require_AuthorizationHandler = __commonJS({
|
|
|
130824
132600
|
}
|
|
130825
132601
|
});
|
|
130826
132602
|
|
|
130827
|
-
// ../../node_modules
|
|
132603
|
+
// ../../node_modules/applicationinsights/out/Library/Channel.js
|
|
130828
132604
|
var require_Channel = __commonJS({
|
|
130829
|
-
"../../node_modules
|
|
132605
|
+
"../../node_modules/applicationinsights/out/Library/Channel.js"(exports2, module2) {
|
|
130830
132606
|
"use strict";
|
|
130831
132607
|
var Logging = require_Logging();
|
|
130832
132608
|
var Util = require_Util();
|
|
@@ -130892,9 +132668,9 @@ var require_Channel = __commonJS({
|
|
|
130892
132668
|
}
|
|
130893
132669
|
});
|
|
130894
132670
|
|
|
130895
|
-
// ../../node_modules
|
|
132671
|
+
// ../../node_modules/applicationinsights/out/TelemetryProcessors/AzureRoleEnvironmentTelemetryInitializer.js
|
|
130896
132672
|
var require_AzureRoleEnvironmentTelemetryInitializer = __commonJS({
|
|
130897
|
-
"../../node_modules
|
|
132673
|
+
"../../node_modules/applicationinsights/out/TelemetryProcessors/AzureRoleEnvironmentTelemetryInitializer.js"(exports2) {
|
|
130898
132674
|
"use strict";
|
|
130899
132675
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
130900
132676
|
exports2.azureRoleEnvironmentTelemetryProcessor = void 0;
|
|
@@ -130904,9 +132680,9 @@ var require_AzureRoleEnvironmentTelemetryInitializer = __commonJS({
|
|
|
130904
132680
|
}
|
|
130905
132681
|
});
|
|
130906
132682
|
|
|
130907
|
-
// ../../node_modules
|
|
132683
|
+
// ../../node_modules/applicationinsights/out/TelemetryProcessors/SamplingTelemetryProcessor.js
|
|
130908
132684
|
var require_SamplingTelemetryProcessor = __commonJS({
|
|
130909
|
-
"../../node_modules
|
|
132685
|
+
"../../node_modules/applicationinsights/out/TelemetryProcessors/SamplingTelemetryProcessor.js"(exports2) {
|
|
130910
132686
|
"use strict";
|
|
130911
132687
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
130912
132688
|
exports2.getSamplingHashCode = exports2.samplingTelemetryProcessor = void 0;
|
|
@@ -130946,9 +132722,9 @@ var require_SamplingTelemetryProcessor = __commonJS({
|
|
|
130946
132722
|
}
|
|
130947
132723
|
});
|
|
130948
132724
|
|
|
130949
|
-
// ../../node_modules
|
|
132725
|
+
// ../../node_modules/applicationinsights/out/TelemetryProcessors/PerformanceMetricsTelemetryProcessor.js
|
|
130950
132726
|
var require_PerformanceMetricsTelemetryProcessor = __commonJS({
|
|
130951
|
-
"../../node_modules
|
|
132727
|
+
"../../node_modules/applicationinsights/out/TelemetryProcessors/PerformanceMetricsTelemetryProcessor.js"(exports2) {
|
|
130952
132728
|
"use strict";
|
|
130953
132729
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
130954
132730
|
if (k2 === void 0)
|
|
@@ -131005,9 +132781,9 @@ var require_PerformanceMetricsTelemetryProcessor = __commonJS({
|
|
|
131005
132781
|
}
|
|
131006
132782
|
});
|
|
131007
132783
|
|
|
131008
|
-
// ../../node_modules
|
|
132784
|
+
// ../../node_modules/applicationinsights/out/TelemetryProcessors/PreAggregatedMetricsTelemetryProcessor.js
|
|
131009
132785
|
var require_PreAggregatedMetricsTelemetryProcessor = __commonJS({
|
|
131010
|
-
"../../node_modules
|
|
132786
|
+
"../../node_modules/applicationinsights/out/TelemetryProcessors/PreAggregatedMetricsTelemetryProcessor.js"(exports2) {
|
|
131011
132787
|
"use strict";
|
|
131012
132788
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
131013
132789
|
__assign4 = Object.assign || function(t) {
|
|
@@ -131110,9 +132886,9 @@ var require_PreAggregatedMetricsTelemetryProcessor = __commonJS({
|
|
|
131110
132886
|
}
|
|
131111
132887
|
});
|
|
131112
132888
|
|
|
131113
|
-
// ../../node_modules
|
|
132889
|
+
// ../../node_modules/applicationinsights/out/TelemetryProcessors/index.js
|
|
131114
132890
|
var require_TelemetryProcessors = __commonJS({
|
|
131115
|
-
"../../node_modules
|
|
132891
|
+
"../../node_modules/applicationinsights/out/TelemetryProcessors/index.js"(exports2) {
|
|
131116
132892
|
"use strict";
|
|
131117
132893
|
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
131118
132894
|
if (k2 === void 0)
|
|
@@ -131138,9 +132914,9 @@ var require_TelemetryProcessors = __commonJS({
|
|
|
131138
132914
|
}
|
|
131139
132915
|
});
|
|
131140
132916
|
|
|
131141
|
-
// ../../node_modules
|
|
132917
|
+
// ../../node_modules/applicationinsights/out/Library/EnvelopeFactory.js
|
|
131142
132918
|
var require_EnvelopeFactory = __commonJS({
|
|
131143
|
-
"../../node_modules
|
|
132919
|
+
"../../node_modules/applicationinsights/out/Library/EnvelopeFactory.js"(exports2, module2) {
|
|
131144
132920
|
"use strict";
|
|
131145
132921
|
var Contracts = require_Contracts();
|
|
131146
132922
|
var Util = require_Util();
|
|
@@ -131505,9 +133281,9 @@ var require_EnvelopeFactory = __commonJS({
|
|
|
131505
133281
|
}
|
|
131506
133282
|
});
|
|
131507
133283
|
|
|
131508
|
-
// ../../node_modules
|
|
133284
|
+
// ../../node_modules/applicationinsights/out/Library/FileAccessControl.js
|
|
131509
133285
|
var require_FileAccessControl = __commonJS({
|
|
131510
|
-
"../../node_modules
|
|
133286
|
+
"../../node_modules/applicationinsights/out/Library/FileAccessControl.js"(exports2) {
|
|
131511
133287
|
"use strict";
|
|
131512
133288
|
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
131513
133289
|
function adopt(value) {
|
|
@@ -131793,9 +133569,9 @@ var require_FileAccessControl = __commonJS({
|
|
|
131793
133569
|
}
|
|
131794
133570
|
});
|
|
131795
133571
|
|
|
131796
|
-
// ../../node_modules
|
|
133572
|
+
// ../../node_modules/applicationinsights/out/Library/Sender.js
|
|
131797
133573
|
var require_Sender = __commonJS({
|
|
131798
|
-
"../../node_modules
|
|
133574
|
+
"../../node_modules/applicationinsights/out/Library/Sender.js"(exports2, module2) {
|
|
131799
133575
|
"use strict";
|
|
131800
133576
|
var __awaiter9 = exports2 && exports2.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
131801
133577
|
function adopt(value) {
|
|
@@ -132446,9 +134222,9 @@ var require_Sender = __commonJS({
|
|
|
132446
134222
|
}
|
|
132447
134223
|
});
|
|
132448
134224
|
|
|
132449
|
-
// ../../node_modules
|
|
134225
|
+
// ../../node_modules/applicationinsights/out/Library/AzureVirtualMachine.js
|
|
132450
134226
|
var require_AzureVirtualMachine = __commonJS({
|
|
132451
|
-
"../../node_modules
|
|
134227
|
+
"../../node_modules/applicationinsights/out/Library/AzureVirtualMachine.js"(exports2) {
|
|
132452
134228
|
"use strict";
|
|
132453
134229
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
132454
134230
|
exports2.AzureVirtualMachine = void 0;
|
|
@@ -132527,9 +134303,9 @@ var require_AzureVirtualMachine = __commonJS({
|
|
|
132527
134303
|
}
|
|
132528
134304
|
});
|
|
132529
134305
|
|
|
132530
|
-
// ../../node_modules
|
|
134306
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/NetworkStatsbeat.js
|
|
132531
134307
|
var require_NetworkStatsbeat = __commonJS({
|
|
132532
|
-
"../../node_modules
|
|
134308
|
+
"../../node_modules/applicationinsights/out/AutoCollection/NetworkStatsbeat.js"(exports2) {
|
|
132533
134309
|
"use strict";
|
|
132534
134310
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
132535
134311
|
exports2.NetworkStatsbeat = void 0;
|
|
@@ -132557,9 +134333,9 @@ var require_NetworkStatsbeat = __commonJS({
|
|
|
132557
134333
|
}
|
|
132558
134334
|
});
|
|
132559
134335
|
|
|
132560
|
-
// ../../node_modules
|
|
134336
|
+
// ../../node_modules/applicationinsights/out/AutoCollection/Statsbeat.js
|
|
132561
134337
|
var require_Statsbeat = __commonJS({
|
|
132562
|
-
"../../node_modules
|
|
134338
|
+
"../../node_modules/applicationinsights/out/AutoCollection/Statsbeat.js"(exports2, module2) {
|
|
132563
134339
|
"use strict";
|
|
132564
134340
|
var __assign4 = exports2 && exports2.__assign || function() {
|
|
132565
134341
|
__assign4 = Object.assign || function(t) {
|
|
@@ -133136,9 +134912,9 @@ var require_Statsbeat = __commonJS({
|
|
|
133136
134912
|
}
|
|
133137
134913
|
});
|
|
133138
134914
|
|
|
133139
|
-
// ../../node_modules
|
|
134915
|
+
// ../../node_modules/applicationinsights/out/Library/TelemetryClient.js
|
|
133140
134916
|
var require_TelemetryClient = __commonJS({
|
|
133141
|
-
"../../node_modules
|
|
134917
|
+
"../../node_modules/applicationinsights/out/Library/TelemetryClient.js"(exports2, module2) {
|
|
133142
134918
|
"use strict";
|
|
133143
134919
|
var url2 = require("url");
|
|
133144
134920
|
var Config = require_Config();
|
|
@@ -133295,9 +135071,9 @@ var require_TelemetryClient = __commonJS({
|
|
|
133295
135071
|
}
|
|
133296
135072
|
});
|
|
133297
135073
|
|
|
133298
|
-
// ../../node_modules
|
|
135074
|
+
// ../../node_modules/applicationinsights/out/Library/NodeClient.js
|
|
133299
135075
|
var require_NodeClient = __commonJS({
|
|
133300
|
-
"../../node_modules
|
|
135076
|
+
"../../node_modules/applicationinsights/out/Library/NodeClient.js"(exports2, module2) {
|
|
133301
135077
|
"use strict";
|
|
133302
135078
|
var __extends5 = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
133303
135079
|
var extendStatics = function(d, b) {
|
|
@@ -133360,17 +135136,17 @@ var require_NodeClient = __commonJS({
|
|
|
133360
135136
|
}
|
|
133361
135137
|
});
|
|
133362
135138
|
|
|
133363
|
-
// ../../node_modules
|
|
135139
|
+
// ../../node_modules/applicationinsights/out/Library/Functions.js
|
|
133364
135140
|
var require_Functions = __commonJS({
|
|
133365
|
-
"../../node_modules
|
|
135141
|
+
"../../node_modules/applicationinsights/out/Library/Functions.js"(exports2) {
|
|
133366
135142
|
"use strict";
|
|
133367
135143
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
133368
135144
|
}
|
|
133369
135145
|
});
|
|
133370
135146
|
|
|
133371
|
-
// ../../node_modules
|
|
135147
|
+
// ../../node_modules/applicationinsights/out/applicationinsights.js
|
|
133372
135148
|
var require_applicationinsights2 = __commonJS({
|
|
133373
|
-
"../../node_modules
|
|
135149
|
+
"../../node_modules/applicationinsights/out/applicationinsights.js"(exports2) {
|
|
133374
135150
|
"use strict";
|
|
133375
135151
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
133376
135152
|
exports2.dispose = exports2.Configuration = exports2.wrapWithCorrelationContext = exports2.startOperation = exports2.getCorrelationContext = exports2.start = exports2.setup = exports2.liveMetricsClient = exports2.defaultClient = exports2.DistributedTracingModes = void 0;
|
|
@@ -133811,7 +135587,7 @@ var require_package7 = __commonJS({
|
|
|
133811
135587
|
"../../node_modules/@sap-ux/telemetry/package.json"(exports2, module2) {
|
|
133812
135588
|
module2.exports = {
|
|
133813
135589
|
name: "@sap-ux/telemetry",
|
|
133814
|
-
version: "0.4.
|
|
135590
|
+
version: "0.4.36",
|
|
133815
135591
|
description: "Library for sending usage telemetry data",
|
|
133816
135592
|
repository: {
|
|
133817
135593
|
type: "git",
|
|
@@ -133829,14 +135605,14 @@ var require_package7 = __commonJS({
|
|
|
133829
135605
|
axios: "1.6.8",
|
|
133830
135606
|
"performance-now": "2.1.0",
|
|
133831
135607
|
yaml: "2.3.3",
|
|
133832
|
-
"@sap-ux/store": "0.
|
|
133833
|
-
"@sap-ux/project-access": "1.
|
|
135608
|
+
"@sap-ux/store": "0.6.0",
|
|
135609
|
+
"@sap-ux/project-access": "1.22.3",
|
|
133834
135610
|
"@sap-ux/btp-utils": "0.14.4",
|
|
133835
|
-
"@sap-ux/ui5-config": "0.22.
|
|
135611
|
+
"@sap-ux/ui5-config": "0.22.10",
|
|
133836
135612
|
"@sap-ux/logger": "0.5.1"
|
|
133837
135613
|
},
|
|
133838
135614
|
devDependencies: {
|
|
133839
|
-
"jest-extended": "
|
|
135615
|
+
"jest-extended": "4.0.2",
|
|
133840
135616
|
memfs: "3.4.13",
|
|
133841
135617
|
"ts-jest": "29.1.2",
|
|
133842
135618
|
"ts-node": "10.9.2",
|
|
@@ -155957,7 +157733,7 @@ var require_prompts2 = __commonJS({
|
|
|
155957
157733
|
});
|
|
155958
157734
|
|
|
155959
157735
|
// ../../node_modules/prompts/lib/index.js
|
|
155960
|
-
var
|
|
157736
|
+
var require_lib9 = __commonJS({
|
|
155961
157737
|
"../../node_modules/prompts/lib/index.js"(exports2, module2) {
|
|
155962
157738
|
"use strict";
|
|
155963
157739
|
var prompts = require_prompts2();
|
|
@@ -156047,7 +157823,7 @@ var require_prompts3 = __commonJS({
|
|
|
156047
157823
|
}
|
|
156048
157824
|
return false;
|
|
156049
157825
|
}
|
|
156050
|
-
module2.exports = isNodeLT("8.6.0") ? require_dist23() :
|
|
157826
|
+
module2.exports = isNodeLT("8.6.0") ? require_dist23() : require_lib9();
|
|
156051
157827
|
}
|
|
156052
157828
|
});
|
|
156053
157829
|
|
|
@@ -162041,7 +163817,7 @@ async function resolveUI5Config({
|
|
|
162041
163817
|
const pathConfig = config.path ?? config.paths;
|
|
162042
163818
|
const paths = Array.isArray(pathConfig) ? pathConfig : [pathConfig];
|
|
162043
163819
|
for (const ui5Path of paths) {
|
|
162044
|
-
const url2 = (config.url ?? ui5Path.url)
|
|
163820
|
+
const url2 = envUI5Url || (config.url ?? ui5Path.url);
|
|
162045
163821
|
const path4 = ui5Path.path ?? ui5Path;
|
|
162046
163822
|
if (UI5_CDN_URLS.includes(url2) && await isUI5VersionRemoved(ui5Version, log6, proxy)) {
|
|
162047
163823
|
const oldVersion = ui5Version;
|