@sap/ux-ui5-tooling 1.17.3 → 1.17.5
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 +13 -0
- package/dist/cli/index.js +382 -162
- package/dist/middlewares/fiori-tools-appreload.js +2 -2
- package/dist/middlewares/fiori-tools-preview.js +283 -145
- package/dist/middlewares/fiori-tools-proxy.js +323 -280
- package/dist/tasks/cf-deploy/index.js +300 -162
- package/dist/tasks/deploy/index.js +382 -162
- package/package.json +18 -18
package/dist/cli/index.js
CHANGED
|
@@ -37530,7 +37530,11 @@ var require_constants2 = __commonJS({
|
|
|
37530
37530
|
Ui5LocalYaml: "ui5-local.yaml",
|
|
37531
37531
|
Ui5MockYaml: "ui5-mock.yaml",
|
|
37532
37532
|
UI5DeployYaml: "ui5-deploy.yaml",
|
|
37533
|
-
PackageLock: "package-lock.json"
|
|
37533
|
+
PackageLock: "package-lock.json",
|
|
37534
|
+
XSAppJson: "xs-app.json",
|
|
37535
|
+
XSSecurityJson: "xs-security.json",
|
|
37536
|
+
DotGitIgnore: ".gitignore",
|
|
37537
|
+
MtaExtYaml: "mta-ext.mtaext"
|
|
37534
37538
|
};
|
|
37535
37539
|
exports2.DirName = {
|
|
37536
37540
|
Changes: "changes",
|
|
@@ -38154,15 +38158,25 @@ var require_module_loader = __commonJS({
|
|
|
38154
38158
|
} : function(o, v) {
|
|
38155
38159
|
o["default"] = v;
|
|
38156
38160
|
});
|
|
38157
|
-
var __importStar = exports2 && exports2.__importStar || function(
|
|
38158
|
-
|
|
38159
|
-
|
|
38160
|
-
|
|
38161
|
-
|
|
38162
|
-
|
|
38163
|
-
|
|
38164
|
-
|
|
38165
|
-
|
|
38161
|
+
var __importStar = exports2 && exports2.__importStar || /* @__PURE__ */ function() {
|
|
38162
|
+
var ownKeys = function(o) {
|
|
38163
|
+
ownKeys = Object.getOwnPropertyNames || function(o2) {
|
|
38164
|
+
var ar = [];
|
|
38165
|
+
for (var k in o2) if (Object.prototype.hasOwnProperty.call(o2, k)) ar[ar.length] = k;
|
|
38166
|
+
return ar;
|
|
38167
|
+
};
|
|
38168
|
+
return ownKeys(o);
|
|
38169
|
+
};
|
|
38170
|
+
return function(mod) {
|
|
38171
|
+
if (mod && mod.__esModule) return mod;
|
|
38172
|
+
var result2 = {};
|
|
38173
|
+
if (mod != null) {
|
|
38174
|
+
for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result2, mod, k[i]);
|
|
38175
|
+
}
|
|
38176
|
+
__setModuleDefault(result2, mod);
|
|
38177
|
+
return result2;
|
|
38178
|
+
};
|
|
38179
|
+
}();
|
|
38166
38180
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
38167
38181
|
exports2.getModulePath = getModulePath;
|
|
38168
38182
|
exports2.loadModuleFromProject = loadModuleFromProject;
|
|
@@ -40299,15 +40313,26 @@ var require_middlewares = __commonJS({
|
|
|
40299
40313
|
}
|
|
40300
40314
|
};
|
|
40301
40315
|
}
|
|
40302
|
-
function getPreviewMiddlewareConfig(appId,
|
|
40303
|
-
|
|
40316
|
+
function getPreviewMiddlewareConfig({ ui5Theme, appId, flpAction, localStartFile }) {
|
|
40317
|
+
const fioriPreviewConfig = {
|
|
40304
40318
|
name: "fiori-tools-preview",
|
|
40305
40319
|
afterMiddleware: "fiori-tools-appreload",
|
|
40306
40320
|
configuration: {
|
|
40307
|
-
|
|
40308
|
-
|
|
40321
|
+
flp: {
|
|
40322
|
+
theme: ui5Theme
|
|
40323
|
+
}
|
|
40309
40324
|
}
|
|
40310
40325
|
};
|
|
40326
|
+
if (localStartFile) {
|
|
40327
|
+
fioriPreviewConfig.configuration.flp.path = localStartFile;
|
|
40328
|
+
}
|
|
40329
|
+
if (appId && flpAction) {
|
|
40330
|
+
fioriPreviewConfig.configuration.flp.intent = {
|
|
40331
|
+
object: appId.replace(/[._-]/g, ""),
|
|
40332
|
+
action: flpAction
|
|
40333
|
+
};
|
|
40334
|
+
}
|
|
40335
|
+
return fioriPreviewConfig;
|
|
40311
40336
|
}
|
|
40312
40337
|
function getBackendComments(backend, index2) {
|
|
40313
40338
|
const comment = [];
|
|
@@ -49810,14 +49835,17 @@ var require_ui5config = __commonJS({
|
|
|
49810
49835
|
* Adds the Fiori Tools preview middleware configuration to the UI5 server configuration.
|
|
49811
49836
|
* This middleware is used to preview the Fiori application with the specified UI5 theme.
|
|
49812
49837
|
*
|
|
49813
|
-
* @param
|
|
49814
|
-
* @param {string} ui5Theme - The UI5 theme to be used.
|
|
49838
|
+
* @param previewMiddlewareOpts - options for configuring the fiori tools preview middleware.
|
|
49839
|
+
* @param {string} previewMiddlewareOpts.ui5Theme - The UI5 theme to be used.
|
|
49840
|
+
* @param {string} previewMiddlewareOpts.appId - The ID of the application for which the preview middleware is configured.
|
|
49841
|
+
* @param {string} previewMiddlewareOpts.flpAction - The FLP action to be used for the preview.
|
|
49842
|
+
* @param {string} [previewMiddlewareOpts.localStartFile] - The local start file to be used for the preview.
|
|
49815
49843
|
* @returns {UI5Config} The updated UI5 configuration object.
|
|
49816
49844
|
*/
|
|
49817
|
-
addFioriToolsPreviewMiddleware(appId, ui5Theme) {
|
|
49845
|
+
addFioriToolsPreviewMiddleware({ appId, ui5Theme, flpAction, localStartFile }) {
|
|
49818
49846
|
this.document.appendTo({
|
|
49819
49847
|
path: "server.customMiddleware",
|
|
49820
|
-
value: (0, middlewares_1.getPreviewMiddlewareConfig)(appId,
|
|
49848
|
+
value: (0, middlewares_1.getPreviewMiddlewareConfig)({ ui5Theme, appId, flpAction, localStartFile })
|
|
49821
49849
|
});
|
|
49822
49850
|
return this;
|
|
49823
49851
|
}
|
|
@@ -50090,17 +50118,6 @@ var require_ui5config = __commonJS({
|
|
|
50090
50118
|
path: "builder.resources.excludes",
|
|
50091
50119
|
value: "/localService/**"
|
|
50092
50120
|
});
|
|
50093
|
-
this.document.appendTo({
|
|
50094
|
-
path: "builder.customTasks",
|
|
50095
|
-
value: {
|
|
50096
|
-
name: "webide-extension-task-updateManifestJson",
|
|
50097
|
-
afterTask: "replaceVersion",
|
|
50098
|
-
configuration: {
|
|
50099
|
-
appFolder: "webapp",
|
|
50100
|
-
destDir: "dist"
|
|
50101
|
-
}
|
|
50102
|
-
}
|
|
50103
|
-
});
|
|
50104
50121
|
this.document.appendTo({
|
|
50105
50122
|
path: "builder.customTasks",
|
|
50106
50123
|
value: {
|
|
@@ -50108,6 +50125,7 @@ var require_ui5config = __commonJS({
|
|
|
50108
50125
|
afterTask: "generateCachebusterInfo",
|
|
50109
50126
|
configuration: {
|
|
50110
50127
|
archiveName,
|
|
50128
|
+
relativePaths: true,
|
|
50111
50129
|
additionalFiles: ["xs-app.json"]
|
|
50112
50130
|
}
|
|
50113
50131
|
}
|
|
@@ -50436,7 +50454,7 @@ var require_dist4 = __commonJS({
|
|
|
50436
50454
|
"../../node_modules/@sap-ux/ui5-config/dist/index.js"(exports2) {
|
|
50437
50455
|
"use strict";
|
|
50438
50456
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
50439
|
-
exports2.YAMLError = exports2.yamlErrorCode = exports2.replaceEnvVariables = exports2.getTypesPackage = exports2.getTypesVersion = exports2.getEsmTypesVersion = exports2.mergeObjects = exports2.UI5Config = void 0;
|
|
50457
|
+
exports2.fioriToolsProxy = exports2.YAMLError = exports2.yamlErrorCode = exports2.replaceEnvVariables = exports2.getTypesPackage = exports2.getTypesVersion = exports2.getEsmTypesVersion = exports2.mergeObjects = exports2.UI5Config = void 0;
|
|
50440
50458
|
var ui5config_1 = require_ui5config();
|
|
50441
50459
|
Object.defineProperty(exports2, "UI5Config", { enumerable: true, get: function() {
|
|
50442
50460
|
return ui5config_1.UI5Config;
|
|
@@ -50464,6 +50482,10 @@ var require_dist4 = __commonJS({
|
|
|
50464
50482
|
Object.defineProperty(exports2, "YAMLError", { enumerable: true, get: function() {
|
|
50465
50483
|
return yaml_1.YAMLError;
|
|
50466
50484
|
} });
|
|
50485
|
+
var constants_1 = require_constants3();
|
|
50486
|
+
Object.defineProperty(exports2, "fioriToolsProxy", { enumerable: true, get: function() {
|
|
50487
|
+
return constants_1.fioriToolsProxy;
|
|
50488
|
+
} });
|
|
50467
50489
|
}
|
|
50468
50490
|
});
|
|
50469
50491
|
|
|
@@ -55027,9 +55049,9 @@ var require_merge22 = __commonJS({
|
|
|
55027
55049
|
}
|
|
55028
55050
|
});
|
|
55029
55051
|
|
|
55030
|
-
// ../../node_modules/
|
|
55052
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/array.js
|
|
55031
55053
|
var require_array = __commonJS({
|
|
55032
|
-
"../../node_modules/
|
|
55054
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/array.js"(exports2) {
|
|
55033
55055
|
"use strict";
|
|
55034
55056
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
55035
55057
|
exports2.splitWhen = exports2.flatten = void 0;
|
|
@@ -55054,9 +55076,9 @@ var require_array = __commonJS({
|
|
|
55054
55076
|
}
|
|
55055
55077
|
});
|
|
55056
55078
|
|
|
55057
|
-
// ../../node_modules/
|
|
55079
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/errno.js
|
|
55058
55080
|
var require_errno = __commonJS({
|
|
55059
|
-
"../../node_modules/
|
|
55081
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/errno.js"(exports2) {
|
|
55060
55082
|
"use strict";
|
|
55061
55083
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
55062
55084
|
exports2.isEnoentCodeError = void 0;
|
|
@@ -55067,9 +55089,9 @@ var require_errno = __commonJS({
|
|
|
55067
55089
|
}
|
|
55068
55090
|
});
|
|
55069
55091
|
|
|
55070
|
-
// ../../node_modules/
|
|
55092
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/fs.js
|
|
55071
55093
|
var require_fs = __commonJS({
|
|
55072
|
-
"../../node_modules/
|
|
55094
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/fs.js"(exports2) {
|
|
55073
55095
|
"use strict";
|
|
55074
55096
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
55075
55097
|
exports2.createDirentFromStats = void 0;
|
|
@@ -55092,9 +55114,9 @@ var require_fs = __commonJS({
|
|
|
55092
55114
|
}
|
|
55093
55115
|
});
|
|
55094
55116
|
|
|
55095
|
-
// ../../node_modules/
|
|
55117
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/path.js
|
|
55096
55118
|
var require_path = __commonJS({
|
|
55097
|
-
"../../node_modules/
|
|
55119
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/path.js"(exports2) {
|
|
55098
55120
|
"use strict";
|
|
55099
55121
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
55100
55122
|
exports2.convertPosixPathToPattern = exports2.convertWindowsPathToPattern = exports2.convertPathToPattern = exports2.escapePosixPath = exports2.escapeWindowsPath = exports2.escape = exports2.removeLeadingDotSegment = exports2.makeAbsolute = exports2.unixify = void 0;
|
|
@@ -58104,9 +58126,9 @@ var require_micromatch = __commonJS({
|
|
|
58104
58126
|
}
|
|
58105
58127
|
});
|
|
58106
58128
|
|
|
58107
|
-
// ../../node_modules/
|
|
58129
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/pattern.js
|
|
58108
58130
|
var require_pattern2 = __commonJS({
|
|
58109
|
-
"../../node_modules/
|
|
58131
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/pattern.js"(exports2) {
|
|
58110
58132
|
"use strict";
|
|
58111
58133
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
58112
58134
|
exports2.isAbsolute = exports2.partitionAbsoluteAndRelative = exports2.removeDuplicateSlashes = exports2.matchAny = exports2.convertPatternsToRe = exports2.makeRe = exports2.getPatternParts = exports2.expandBraceExpansion = exports2.expandPatternsWithBraceExpansion = exports2.isAffectDepthOfReadingPattern = exports2.endsWithSlashGlobStar = exports2.hasGlobStar = exports2.getBaseDirectory = exports2.isPatternRelatedToParentDirectory = exports2.getPatternsOutsideCurrentDirectory = exports2.getPatternsInsideCurrentDirectory = exports2.getPositivePatterns = exports2.getNegativePatterns = exports2.isPositivePattern = exports2.isNegativePattern = exports2.convertToNegativePattern = exports2.convertToPositivePattern = exports2.isDynamicPattern = exports2.isStaticPattern = void 0;
|
|
@@ -58269,9 +58291,9 @@ var require_pattern2 = __commonJS({
|
|
|
58269
58291
|
}
|
|
58270
58292
|
});
|
|
58271
58293
|
|
|
58272
|
-
// ../../node_modules/
|
|
58294
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/stream.js
|
|
58273
58295
|
var require_stream2 = __commonJS({
|
|
58274
|
-
"../../node_modules/
|
|
58296
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/stream.js"(exports2) {
|
|
58275
58297
|
"use strict";
|
|
58276
58298
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
58277
58299
|
exports2.merge = void 0;
|
|
@@ -58292,9 +58314,9 @@ var require_stream2 = __commonJS({
|
|
|
58292
58314
|
}
|
|
58293
58315
|
});
|
|
58294
58316
|
|
|
58295
|
-
// ../../node_modules/
|
|
58317
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/string.js
|
|
58296
58318
|
var require_string2 = __commonJS({
|
|
58297
|
-
"../../node_modules/
|
|
58319
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/string.js"(exports2) {
|
|
58298
58320
|
"use strict";
|
|
58299
58321
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
58300
58322
|
exports2.isEmpty = exports2.isString = void 0;
|
|
@@ -58309,9 +58331,9 @@ var require_string2 = __commonJS({
|
|
|
58309
58331
|
}
|
|
58310
58332
|
});
|
|
58311
58333
|
|
|
58312
|
-
// ../../node_modules/
|
|
58334
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/index.js
|
|
58313
58335
|
var require_utils8 = __commonJS({
|
|
58314
|
-
"../../node_modules/
|
|
58336
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/utils/index.js"(exports2) {
|
|
58315
58337
|
"use strict";
|
|
58316
58338
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
58317
58339
|
exports2.string = exports2.stream = exports2.pattern = exports2.path = exports2.fs = exports2.errno = exports2.array = void 0;
|
|
@@ -58332,9 +58354,9 @@ var require_utils8 = __commonJS({
|
|
|
58332
58354
|
}
|
|
58333
58355
|
});
|
|
58334
58356
|
|
|
58335
|
-
// ../../node_modules/
|
|
58357
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/managers/tasks.js
|
|
58336
58358
|
var require_tasks = __commonJS({
|
|
58337
|
-
"../../node_modules/
|
|
58359
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/managers/tasks.js"(exports2) {
|
|
58338
58360
|
"use strict";
|
|
58339
58361
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
58340
58362
|
exports2.convertPatternGroupToTask = exports2.convertPatternGroupsToTasks = exports2.groupPatternsByBaseDirectory = exports2.getNegativePatternsAsPositive = exports2.getPositivePatterns = exports2.convertPatternsToTasks = exports2.generate = void 0;
|
|
@@ -59482,9 +59504,9 @@ var require_out3 = __commonJS({
|
|
|
59482
59504
|
}
|
|
59483
59505
|
});
|
|
59484
59506
|
|
|
59485
|
-
// ../../node_modules/
|
|
59507
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/readers/reader.js
|
|
59486
59508
|
var require_reader2 = __commonJS({
|
|
59487
|
-
"../../node_modules/
|
|
59509
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/readers/reader.js"(exports2) {
|
|
59488
59510
|
"use strict";
|
|
59489
59511
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59490
59512
|
var path6 = require("path");
|
|
@@ -59521,9 +59543,9 @@ var require_reader2 = __commonJS({
|
|
|
59521
59543
|
}
|
|
59522
59544
|
});
|
|
59523
59545
|
|
|
59524
|
-
// ../../node_modules/
|
|
59546
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/readers/stream.js
|
|
59525
59547
|
var require_stream4 = __commonJS({
|
|
59526
|
-
"../../node_modules/
|
|
59548
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/readers/stream.js"(exports2) {
|
|
59527
59549
|
"use strict";
|
|
59528
59550
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59529
59551
|
var stream_1 = require("stream");
|
|
@@ -59578,9 +59600,9 @@ var require_stream4 = __commonJS({
|
|
|
59578
59600
|
}
|
|
59579
59601
|
});
|
|
59580
59602
|
|
|
59581
|
-
// ../../node_modules/
|
|
59603
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/readers/async.js
|
|
59582
59604
|
var require_async6 = __commonJS({
|
|
59583
|
-
"../../node_modules/
|
|
59605
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/readers/async.js"(exports2) {
|
|
59584
59606
|
"use strict";
|
|
59585
59607
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59586
59608
|
var fsWalk = require_out3();
|
|
@@ -59617,9 +59639,9 @@ var require_async6 = __commonJS({
|
|
|
59617
59639
|
}
|
|
59618
59640
|
});
|
|
59619
59641
|
|
|
59620
|
-
// ../../node_modules/
|
|
59642
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/matchers/matcher.js
|
|
59621
59643
|
var require_matcher = __commonJS({
|
|
59622
|
-
"../../node_modules/
|
|
59644
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/matchers/matcher.js"(exports2) {
|
|
59623
59645
|
"use strict";
|
|
59624
59646
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59625
59647
|
var utils = require_utils8();
|
|
@@ -59668,9 +59690,9 @@ var require_matcher = __commonJS({
|
|
|
59668
59690
|
}
|
|
59669
59691
|
});
|
|
59670
59692
|
|
|
59671
|
-
// ../../node_modules/
|
|
59693
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/matchers/partial.js
|
|
59672
59694
|
var require_partial = __commonJS({
|
|
59673
|
-
"../../node_modules/
|
|
59695
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/matchers/partial.js"(exports2) {
|
|
59674
59696
|
"use strict";
|
|
59675
59697
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59676
59698
|
var matcher_1 = require_matcher();
|
|
@@ -59705,9 +59727,9 @@ var require_partial = __commonJS({
|
|
|
59705
59727
|
}
|
|
59706
59728
|
});
|
|
59707
59729
|
|
|
59708
|
-
// ../../node_modules/
|
|
59730
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/filters/deep.js
|
|
59709
59731
|
var require_deep = __commonJS({
|
|
59710
|
-
"../../node_modules/
|
|
59732
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/filters/deep.js"(exports2) {
|
|
59711
59733
|
"use strict";
|
|
59712
59734
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59713
59735
|
var utils = require_utils8();
|
|
@@ -59770,9 +59792,9 @@ var require_deep = __commonJS({
|
|
|
59770
59792
|
}
|
|
59771
59793
|
});
|
|
59772
59794
|
|
|
59773
|
-
// ../../node_modules/
|
|
59795
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/filters/entry.js
|
|
59774
59796
|
var require_entry = __commonJS({
|
|
59775
|
-
"../../node_modules/
|
|
59797
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/filters/entry.js"(exports2) {
|
|
59776
59798
|
"use strict";
|
|
59777
59799
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59778
59800
|
var utils = require_utils8();
|
|
@@ -59858,9 +59880,9 @@ var require_entry = __commonJS({
|
|
|
59858
59880
|
}
|
|
59859
59881
|
});
|
|
59860
59882
|
|
|
59861
|
-
// ../../node_modules/
|
|
59883
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/filters/error.js
|
|
59862
59884
|
var require_error = __commonJS({
|
|
59863
|
-
"../../node_modules/
|
|
59885
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/filters/error.js"(exports2) {
|
|
59864
59886
|
"use strict";
|
|
59865
59887
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59866
59888
|
var utils = require_utils8();
|
|
@@ -59879,9 +59901,9 @@ var require_error = __commonJS({
|
|
|
59879
59901
|
}
|
|
59880
59902
|
});
|
|
59881
59903
|
|
|
59882
|
-
// ../../node_modules/
|
|
59904
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/transformers/entry.js
|
|
59883
59905
|
var require_entry2 = __commonJS({
|
|
59884
|
-
"../../node_modules/
|
|
59906
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/transformers/entry.js"(exports2) {
|
|
59885
59907
|
"use strict";
|
|
59886
59908
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59887
59909
|
var utils = require_utils8();
|
|
@@ -59911,9 +59933,9 @@ var require_entry2 = __commonJS({
|
|
|
59911
59933
|
}
|
|
59912
59934
|
});
|
|
59913
59935
|
|
|
59914
|
-
// ../../node_modules/
|
|
59936
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/provider.js
|
|
59915
59937
|
var require_provider = __commonJS({
|
|
59916
|
-
"../../node_modules/
|
|
59938
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/provider.js"(exports2) {
|
|
59917
59939
|
"use strict";
|
|
59918
59940
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59919
59941
|
var path6 = require("path");
|
|
@@ -59965,9 +59987,9 @@ var require_provider = __commonJS({
|
|
|
59965
59987
|
}
|
|
59966
59988
|
});
|
|
59967
59989
|
|
|
59968
|
-
// ../../node_modules/
|
|
59990
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/async.js
|
|
59969
59991
|
var require_async7 = __commonJS({
|
|
59970
|
-
"../../node_modules/
|
|
59992
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/async.js"(exports2) {
|
|
59971
59993
|
"use strict";
|
|
59972
59994
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
59973
59995
|
var async_1 = require_async6();
|
|
@@ -59994,9 +60016,9 @@ var require_async7 = __commonJS({
|
|
|
59994
60016
|
}
|
|
59995
60017
|
});
|
|
59996
60018
|
|
|
59997
|
-
// ../../node_modules/
|
|
60019
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/stream.js
|
|
59998
60020
|
var require_stream5 = __commonJS({
|
|
59999
|
-
"../../node_modules/
|
|
60021
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/stream.js"(exports2) {
|
|
60000
60022
|
"use strict";
|
|
60001
60023
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
60002
60024
|
var stream_1 = require("stream");
|
|
@@ -60028,9 +60050,9 @@ var require_stream5 = __commonJS({
|
|
|
60028
60050
|
}
|
|
60029
60051
|
});
|
|
60030
60052
|
|
|
60031
|
-
// ../../node_modules/
|
|
60053
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/readers/sync.js
|
|
60032
60054
|
var require_sync5 = __commonJS({
|
|
60033
|
-
"../../node_modules/
|
|
60055
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/readers/sync.js"(exports2) {
|
|
60034
60056
|
"use strict";
|
|
60035
60057
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
60036
60058
|
var fsStat = require_out();
|
|
@@ -60076,9 +60098,9 @@ var require_sync5 = __commonJS({
|
|
|
60076
60098
|
}
|
|
60077
60099
|
});
|
|
60078
60100
|
|
|
60079
|
-
// ../../node_modules/
|
|
60101
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/sync.js
|
|
60080
60102
|
var require_sync6 = __commonJS({
|
|
60081
|
-
"../../node_modules/
|
|
60103
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/providers/sync.js"(exports2) {
|
|
60082
60104
|
"use strict";
|
|
60083
60105
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
60084
60106
|
var sync_1 = require_sync5();
|
|
@@ -60105,9 +60127,9 @@ var require_sync6 = __commonJS({
|
|
|
60105
60127
|
}
|
|
60106
60128
|
});
|
|
60107
60129
|
|
|
60108
|
-
// ../../node_modules/
|
|
60130
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/settings.js
|
|
60109
60131
|
var require_settings4 = __commonJS({
|
|
60110
|
-
"../../node_modules/
|
|
60132
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/settings.js"(exports2) {
|
|
60111
60133
|
"use strict";
|
|
60112
60134
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
60113
60135
|
exports2.DEFAULT_FILE_SYSTEM_ADAPTER = void 0;
|
|
@@ -60165,9 +60187,9 @@ var require_settings4 = __commonJS({
|
|
|
60165
60187
|
}
|
|
60166
60188
|
});
|
|
60167
60189
|
|
|
60168
|
-
// ../../node_modules/
|
|
60190
|
+
// ../../node_modules/mem-fs-editor/node_modules/fast-glob/out/index.js
|
|
60169
60191
|
var require_out4 = __commonJS({
|
|
60170
|
-
"../../node_modules/
|
|
60192
|
+
"../../node_modules/mem-fs-editor/node_modules/fast-glob/out/index.js"(exports2, module2) {
|
|
60171
60193
|
"use strict";
|
|
60172
60194
|
var taskManager = require_tasks();
|
|
60173
60195
|
var async_1 = require_async7();
|
|
@@ -60371,9 +60393,9 @@ var require_dir_glob = __commonJS({
|
|
|
60371
60393
|
}
|
|
60372
60394
|
});
|
|
60373
60395
|
|
|
60374
|
-
// ../../node_modules/
|
|
60396
|
+
// ../../node_modules/mem-fs-editor/node_modules/ignore/index.js
|
|
60375
60397
|
var require_ignore = __commonJS({
|
|
60376
|
-
"../../node_modules/
|
|
60398
|
+
"../../node_modules/mem-fs-editor/node_modules/ignore/index.js"(exports2, module2) {
|
|
60377
60399
|
function makeArray(subject) {
|
|
60378
60400
|
return Array.isArray(subject) ? subject : [subject];
|
|
60379
60401
|
}
|
|
@@ -60743,9 +60765,9 @@ var require_slash = __commonJS({
|
|
|
60743
60765
|
}
|
|
60744
60766
|
});
|
|
60745
60767
|
|
|
60746
|
-
// ../../node_modules/globby/gitignore.js
|
|
60768
|
+
// ../../node_modules/mem-fs-editor/node_modules/globby/gitignore.js
|
|
60747
60769
|
var require_gitignore = __commonJS({
|
|
60748
|
-
"../../node_modules/globby/gitignore.js"(exports2, module2) {
|
|
60770
|
+
"../../node_modules/mem-fs-editor/node_modules/globby/gitignore.js"(exports2, module2) {
|
|
60749
60771
|
"use strict";
|
|
60750
60772
|
var { promisify: promisify2 } = require("util");
|
|
60751
60773
|
var fs6 = require("fs");
|
|
@@ -60840,9 +60862,9 @@ var require_gitignore = __commonJS({
|
|
|
60840
60862
|
}
|
|
60841
60863
|
});
|
|
60842
60864
|
|
|
60843
|
-
// ../../node_modules/globby/stream-utils.js
|
|
60865
|
+
// ../../node_modules/mem-fs-editor/node_modules/globby/stream-utils.js
|
|
60844
60866
|
var require_stream_utils = __commonJS({
|
|
60845
|
-
"../../node_modules/globby/stream-utils.js"(exports2, module2) {
|
|
60867
|
+
"../../node_modules/mem-fs-editor/node_modules/globby/stream-utils.js"(exports2, module2) {
|
|
60846
60868
|
"use strict";
|
|
60847
60869
|
var { Transform: Transform2 } = require("stream");
|
|
60848
60870
|
var ObjectTransform = class extends Transform2 {
|
|
@@ -60884,9 +60906,9 @@ var require_stream_utils = __commonJS({
|
|
|
60884
60906
|
}
|
|
60885
60907
|
});
|
|
60886
60908
|
|
|
60887
|
-
// ../../node_modules/globby/index.js
|
|
60909
|
+
// ../../node_modules/mem-fs-editor/node_modules/globby/index.js
|
|
60888
60910
|
var require_globby = __commonJS({
|
|
60889
|
-
"../../node_modules/globby/index.js"(exports2, module2) {
|
|
60911
|
+
"../../node_modules/mem-fs-editor/node_modules/globby/index.js"(exports2, module2) {
|
|
60890
60912
|
"use strict";
|
|
60891
60913
|
var fs6 = require("fs");
|
|
60892
60914
|
var arrayUnion = require_array_union();
|
|
@@ -72595,8 +72617,10 @@ var require_dist8 = __commonJS({
|
|
|
72595
72617
|
// Non specific destination connection error help page, currently this is mapped to the same node as BAS_CATALOG_SERVICES_REQUEST_FAILED which will be updated in the future (and the entry here removed)
|
|
72596
72618
|
UI_SERVICE_GENERATOR: 63068,
|
|
72597
72619
|
// UI Service generator
|
|
72598
|
-
DESTINATION_GATEWAY_TIMEOUT: 57914
|
|
72620
|
+
DESTINATION_GATEWAY_TIMEOUT: 57914,
|
|
72599
72621
|
// Gateway timeout 504
|
|
72622
|
+
ADT_APP_NOT_FOUND_ERROR: 63911
|
|
72623
|
+
// Error when the ADT app is not found in the UI5 ABAP repository
|
|
72600
72624
|
};
|
|
72601
72625
|
exports2.GUIDED_ANSWERS_EXTENSION_ID = "saposs.sap-guided-answers-extension";
|
|
72602
72626
|
exports2.GUIDED_ANSWERS_LAUNCH_CMD_ID = "sap.ux.guidedAnswer.openGuidedAnswer";
|
|
@@ -91600,9 +91624,9 @@ var require_is_wsl = __commonJS({
|
|
|
91600
91624
|
}
|
|
91601
91625
|
});
|
|
91602
91626
|
|
|
91603
|
-
// ../../node_modules
|
|
91627
|
+
// ../../node_modules/open/index.js
|
|
91604
91628
|
var require_open = __commonJS({
|
|
91605
|
-
"../../node_modules
|
|
91629
|
+
"../../node_modules/open/index.js"(exports2, module2) {
|
|
91606
91630
|
"use strict";
|
|
91607
91631
|
var { promisify: promisify2 } = require("util");
|
|
91608
91632
|
var path6 = require("path");
|
|
@@ -95139,6 +95163,18 @@ var require_ui5_abap_repository_service = __commonJS({
|
|
|
95139
95163
|
throw error3;
|
|
95140
95164
|
}
|
|
95141
95165
|
}
|
|
95166
|
+
/**
|
|
95167
|
+
*
|
|
95168
|
+
* @param str string to check
|
|
95169
|
+
* @returns true if the string is base64 encoded, false otherwise
|
|
95170
|
+
*/
|
|
95171
|
+
isBase64Encoded(str) {
|
|
95172
|
+
try {
|
|
95173
|
+
return Buffer.from(str, "base64").toString("base64") === str.trim();
|
|
95174
|
+
} catch (e) {
|
|
95175
|
+
return false;
|
|
95176
|
+
}
|
|
95177
|
+
}
|
|
95142
95178
|
/**
|
|
95143
95179
|
* Get the application files as zip archive. This will only work on ABAP systems 2308 or newer.
|
|
95144
95180
|
*
|
|
@@ -95155,7 +95191,11 @@ var require_ui5_abap_repository_service = __commonJS({
|
|
|
95155
95191
|
}
|
|
95156
95192
|
});
|
|
95157
95193
|
const data2 = response.odata();
|
|
95158
|
-
|
|
95194
|
+
if (!data2.ZipArchive) {
|
|
95195
|
+
return void 0;
|
|
95196
|
+
}
|
|
95197
|
+
const isBase64 = this.isBase64Encoded(data2.ZipArchive);
|
|
95198
|
+
return Buffer.from(data2.ZipArchive, isBase64 ? "base64" : void 0);
|
|
95159
95199
|
} catch (error3) {
|
|
95160
95200
|
this.log.debug(`Retrieving application ${app}, ${error3}`);
|
|
95161
95201
|
if ((0, odata_request_error_1.isAxiosError)(error3) && ((_a3 = error3.response) == null ? void 0 : _a3.status) === 404) {
|
|
@@ -95205,6 +95245,9 @@ var require_ui5_abap_repository_service = __commonJS({
|
|
|
95205
95245
|
isDest: this.isDest
|
|
95206
95246
|
}, false);
|
|
95207
95247
|
}
|
|
95248
|
+
if (!!info && info.Package !== bsp.package) {
|
|
95249
|
+
this.log.warn(`Cannot change package assignment from ${info.Package} to ${bsp.package}.`);
|
|
95250
|
+
}
|
|
95208
95251
|
return response;
|
|
95209
95252
|
} catch (error3) {
|
|
95210
95253
|
(0, message_1.logError)({ error: error3, host: frontendUrl, log: this.log, isDest: this.isDest });
|
|
@@ -104642,15 +104685,25 @@ var require_transportcheck_service = __commonJS({
|
|
|
104642
104685
|
} : function(o, v) {
|
|
104643
104686
|
o["default"] = v;
|
|
104644
104687
|
});
|
|
104645
|
-
var __importStar = exports2 && exports2.__importStar || function(
|
|
104646
|
-
|
|
104647
|
-
|
|
104648
|
-
|
|
104649
|
-
|
|
104650
|
-
|
|
104651
|
-
|
|
104652
|
-
|
|
104653
|
-
|
|
104688
|
+
var __importStar = exports2 && exports2.__importStar || /* @__PURE__ */ function() {
|
|
104689
|
+
var ownKeys = function(o) {
|
|
104690
|
+
ownKeys = Object.getOwnPropertyNames || function(o2) {
|
|
104691
|
+
var ar = [];
|
|
104692
|
+
for (var k in o2) if (Object.prototype.hasOwnProperty.call(o2, k)) ar[ar.length] = k;
|
|
104693
|
+
return ar;
|
|
104694
|
+
};
|
|
104695
|
+
return ownKeys(o);
|
|
104696
|
+
};
|
|
104697
|
+
return function(mod) {
|
|
104698
|
+
if (mod && mod.__esModule) return mod;
|
|
104699
|
+
var result2 = {};
|
|
104700
|
+
if (mod != null) {
|
|
104701
|
+
for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result2, mod, k[i]);
|
|
104702
|
+
}
|
|
104703
|
+
__setModuleDefault(result2, mod);
|
|
104704
|
+
return result2;
|
|
104705
|
+
};
|
|
104706
|
+
}();
|
|
104654
104707
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
104655
104708
|
exports2.TransportChecksService = void 0;
|
|
104656
104709
|
var adt_service_1 = require_adt_service();
|
|
@@ -111937,9 +111990,9 @@ var require_headers_helper = __commonJS({
|
|
|
111937
111990
|
}
|
|
111938
111991
|
});
|
|
111939
111992
|
|
|
111940
|
-
// ../../node_modules
|
|
111993
|
+
// ../../node_modules/url-join/lib/url-join.js
|
|
111941
111994
|
var require_url_join = __commonJS({
|
|
111942
|
-
"../../node_modules
|
|
111995
|
+
"../../node_modules/url-join/lib/url-join.js"(exports2, module2) {
|
|
111943
111996
|
(function(name2, context2, definition) {
|
|
111944
111997
|
if (typeof module2 !== "undefined" && module2.exports) module2.exports = definition();
|
|
111945
111998
|
else if (typeof define === "function" && define.amd) define(definition);
|
|
@@ -156700,7 +156753,7 @@ var require_package8 = __commonJS({
|
|
|
156700
156753
|
"../../node_modules/@sap-ux/telemetry/package.json"(exports2, module2) {
|
|
156701
156754
|
module2.exports = {
|
|
156702
156755
|
name: "@sap-ux/telemetry",
|
|
156703
|
-
version: "0.5.
|
|
156756
|
+
version: "0.5.77",
|
|
156704
156757
|
description: "Library for sending usage telemetry data",
|
|
156705
156758
|
repository: {
|
|
156706
156759
|
type: "git",
|
|
@@ -156719,9 +156772,9 @@ var require_package8 = __commonJS({
|
|
|
156719
156772
|
"performance-now": "2.1.0",
|
|
156720
156773
|
yaml: "2.3.3",
|
|
156721
156774
|
"@sap-ux/store": "1.0.0",
|
|
156722
|
-
"@sap-ux/project-access": "1.29.
|
|
156723
|
-
"@sap-ux/btp-utils": "1.0.
|
|
156724
|
-
"@sap-ux/ui5-config": "0.
|
|
156775
|
+
"@sap-ux/project-access": "1.29.21",
|
|
156776
|
+
"@sap-ux/btp-utils": "1.0.3",
|
|
156777
|
+
"@sap-ux/ui5-config": "0.27.2",
|
|
156725
156778
|
"@sap-ux/logger": "0.6.0"
|
|
156726
156779
|
},
|
|
156727
156780
|
devDependencies: {
|
|
@@ -156729,7 +156782,6 @@ var require_package8 = __commonJS({
|
|
|
156729
156782
|
memfs: "3.4.13",
|
|
156730
156783
|
"ts-jest": "29.1.2",
|
|
156731
156784
|
"ts-node": "10.9.2",
|
|
156732
|
-
typescript: "5.6.2",
|
|
156733
156785
|
unionfs: "4.4.0",
|
|
156734
156786
|
dotenv: "16.3.1"
|
|
156735
156787
|
},
|
|
@@ -156808,15 +156860,25 @@ var require_azure_appinsight_client = __commonJS({
|
|
|
156808
156860
|
} : function(o, v) {
|
|
156809
156861
|
o["default"] = v;
|
|
156810
156862
|
});
|
|
156811
|
-
var __importStar = exports2 && exports2.__importStar || function(
|
|
156812
|
-
|
|
156813
|
-
|
|
156814
|
-
|
|
156815
|
-
|
|
156816
|
-
|
|
156817
|
-
|
|
156818
|
-
|
|
156819
|
-
|
|
156863
|
+
var __importStar = exports2 && exports2.__importStar || /* @__PURE__ */ function() {
|
|
156864
|
+
var ownKeys = function(o) {
|
|
156865
|
+
ownKeys = Object.getOwnPropertyNames || function(o2) {
|
|
156866
|
+
var ar = [];
|
|
156867
|
+
for (var k in o2) if (Object.prototype.hasOwnProperty.call(o2, k)) ar[ar.length] = k;
|
|
156868
|
+
return ar;
|
|
156869
|
+
};
|
|
156870
|
+
return ownKeys(o);
|
|
156871
|
+
};
|
|
156872
|
+
return function(mod) {
|
|
156873
|
+
if (mod && mod.__esModule) return mod;
|
|
156874
|
+
var result2 = {};
|
|
156875
|
+
if (mod != null) {
|
|
156876
|
+
for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result2, mod, k[i]);
|
|
156877
|
+
}
|
|
156878
|
+
__setModuleDefault(result2, mod);
|
|
156879
|
+
return result2;
|
|
156880
|
+
};
|
|
156881
|
+
}();
|
|
156820
156882
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
156821
156883
|
exports2.ApplicationInsightClient = void 0;
|
|
156822
156884
|
var client_1 = require_client();
|
|
@@ -164537,6 +164599,14 @@ var require_data_processor = __commonJS({
|
|
|
164537
164599
|
}
|
|
164538
164600
|
});
|
|
164539
164601
|
|
|
164602
|
+
// ../../node_modules/@sap-ux/telemetry/dist/base/types/event.js
|
|
164603
|
+
var require_event = __commonJS({
|
|
164604
|
+
"../../node_modules/@sap-ux/telemetry/dist/base/types/event.js"(exports2) {
|
|
164605
|
+
"use strict";
|
|
164606
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
164607
|
+
}
|
|
164608
|
+
});
|
|
164609
|
+
|
|
164540
164610
|
// ../../node_modules/@sap-ux/telemetry/dist/base/types/event-name.js
|
|
164541
164611
|
var require_event_name = __commonJS({
|
|
164542
164612
|
"../../node_modules/@sap-ux/telemetry/dist/base/types/event-name.js"(exports2) {
|
|
@@ -164581,6 +164651,7 @@ var require_types10 = __commonJS({
|
|
|
164581
164651
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports3, p)) __createBinding(exports3, m, p);
|
|
164582
164652
|
};
|
|
164583
164653
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
164654
|
+
__exportStar(require_event(), exports2);
|
|
164584
164655
|
__exportStar(require_event_header(), exports2);
|
|
164585
164656
|
__exportStar(require_event_name(), exports2);
|
|
164586
164657
|
__exportStar(require_project_info(), exports2);
|
|
@@ -164610,15 +164681,25 @@ var require_reporting = __commonJS({
|
|
|
164610
164681
|
} : function(o, v) {
|
|
164611
164682
|
o["default"] = v;
|
|
164612
164683
|
});
|
|
164613
|
-
var __importStar = exports2 && exports2.__importStar || function(
|
|
164614
|
-
|
|
164615
|
-
|
|
164616
|
-
|
|
164617
|
-
|
|
164618
|
-
|
|
164619
|
-
|
|
164620
|
-
|
|
164621
|
-
|
|
164684
|
+
var __importStar = exports2 && exports2.__importStar || /* @__PURE__ */ function() {
|
|
164685
|
+
var ownKeys = function(o) {
|
|
164686
|
+
ownKeys = Object.getOwnPropertyNames || function(o2) {
|
|
164687
|
+
var ar = [];
|
|
164688
|
+
for (var k in o2) if (Object.prototype.hasOwnProperty.call(o2, k)) ar[ar.length] = k;
|
|
164689
|
+
return ar;
|
|
164690
|
+
};
|
|
164691
|
+
return ownKeys(o);
|
|
164692
|
+
};
|
|
164693
|
+
return function(mod) {
|
|
164694
|
+
if (mod && mod.__esModule) return mod;
|
|
164695
|
+
var result2 = {};
|
|
164696
|
+
if (mod != null) {
|
|
164697
|
+
for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result2, mod, k[i]);
|
|
164698
|
+
}
|
|
164699
|
+
__setModuleDefault(result2, mod);
|
|
164700
|
+
return result2;
|
|
164701
|
+
};
|
|
164702
|
+
}();
|
|
164622
164703
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
164623
164704
|
exports2.reportEnableTelemetryOnOff = exports2.reportRuntimeError = void 0;
|
|
164624
164705
|
var appInsights = __importStar(require_applicationinsights2());
|
|
@@ -174430,15 +174511,25 @@ var require_config4 = __commonJS({
|
|
|
174430
174511
|
} : function(o, v) {
|
|
174431
174512
|
o["default"] = v;
|
|
174432
174513
|
});
|
|
174433
|
-
var __importStar = exports2 && exports2.__importStar || function(
|
|
174434
|
-
|
|
174435
|
-
|
|
174436
|
-
|
|
174437
|
-
|
|
174438
|
-
|
|
174439
|
-
|
|
174440
|
-
|
|
174441
|
-
|
|
174514
|
+
var __importStar = exports2 && exports2.__importStar || /* @__PURE__ */ function() {
|
|
174515
|
+
var ownKeys = function(o) {
|
|
174516
|
+
ownKeys = Object.getOwnPropertyNames || function(o2) {
|
|
174517
|
+
var ar = [];
|
|
174518
|
+
for (var k in o2) if (Object.prototype.hasOwnProperty.call(o2, k)) ar[ar.length] = k;
|
|
174519
|
+
return ar;
|
|
174520
|
+
};
|
|
174521
|
+
return ownKeys(o);
|
|
174522
|
+
};
|
|
174523
|
+
return function(mod) {
|
|
174524
|
+
if (mod && mod.__esModule) return mod;
|
|
174525
|
+
var result2 = {};
|
|
174526
|
+
if (mod != null) {
|
|
174527
|
+
for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result2, mod, k[i]);
|
|
174528
|
+
}
|
|
174529
|
+
__setModuleDefault(result2, mod);
|
|
174530
|
+
return result2;
|
|
174531
|
+
};
|
|
174532
|
+
}();
|
|
174442
174533
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
174443
174534
|
exports2.asyncInterceptorTypesMapping = exports2.interceptorTypesMapping = exports2.InterceptorTypes = void 0;
|
|
174444
174535
|
var interceptors = __importStar(require_interceptor());
|
|
@@ -174641,6 +174732,30 @@ var require_ui5_version_fallback = __commonJS({
|
|
|
174641
174732
|
skipped: "Skipped"
|
|
174642
174733
|
};
|
|
174643
174734
|
exports2.ui5VersionFallbacks = [
|
|
174735
|
+
{
|
|
174736
|
+
version: "1.135.*",
|
|
174737
|
+
support: exports2.supportState.maintenance
|
|
174738
|
+
},
|
|
174739
|
+
{
|
|
174740
|
+
version: "1.134.*",
|
|
174741
|
+
support: exports2.supportState.maintenance
|
|
174742
|
+
},
|
|
174743
|
+
{
|
|
174744
|
+
version: "1.133.*",
|
|
174745
|
+
support: exports2.supportState.maintenance
|
|
174746
|
+
},
|
|
174747
|
+
{
|
|
174748
|
+
version: "1.132.*",
|
|
174749
|
+
support: exports2.supportState.outOfMaintenance
|
|
174750
|
+
},
|
|
174751
|
+
{
|
|
174752
|
+
version: "1.131.*",
|
|
174753
|
+
support: exports2.supportState.outOfMaintenance
|
|
174754
|
+
},
|
|
174755
|
+
{
|
|
174756
|
+
version: "1.130.*",
|
|
174757
|
+
support: exports2.supportState.maintenance
|
|
174758
|
+
},
|
|
174644
174759
|
{
|
|
174645
174760
|
version: "1.129.*",
|
|
174646
174761
|
support: exports2.supportState.maintenance
|
|
@@ -175256,19 +175371,24 @@ var require_ui5_theme_info = __commonJS({
|
|
|
175256
175371
|
"../../node_modules/@sap-ux/ui5-info/dist/ui5-theme-info.js"(exports2) {
|
|
175257
175372
|
"use strict";
|
|
175258
175373
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
175374
|
+
exports2.ui5Themes = void 0;
|
|
175259
175375
|
exports2.getDefaultUI5Theme = getDefaultUI5Theme;
|
|
175260
175376
|
exports2.getUi5Themes = getUi5Themes;
|
|
175261
175377
|
var constants_1 = require_constants12();
|
|
175262
175378
|
var semver_1 = require_semver2();
|
|
175263
175379
|
var MIN_UI5_VER_DARK_THEME = "1.72.0";
|
|
175264
175380
|
var MIN_UI5_VER_HORIZON_THEME = "1.102.0";
|
|
175265
|
-
var
|
|
175381
|
+
var MAX_UI5_VER_BELIZE_THEME = "1.136.0";
|
|
175382
|
+
var MIN_UI5_VER_BELIZE_DEPRECATED = "1.120.0";
|
|
175383
|
+
exports2.ui5Themes = {
|
|
175266
175384
|
[
|
|
175267
175385
|
"sap_belize"
|
|
175268
175386
|
/* ui5ThemeIds.SAP_BELIZE */
|
|
175269
175387
|
]: {
|
|
175270
175388
|
id: "sap_belize",
|
|
175271
|
-
label: "Belize"
|
|
175389
|
+
label: "Belize",
|
|
175390
|
+
supportUntil: MAX_UI5_VER_BELIZE_THEME,
|
|
175391
|
+
deprecateSince: MIN_UI5_VER_BELIZE_DEPRECATED
|
|
175272
175392
|
},
|
|
175273
175393
|
[
|
|
175274
175394
|
"sap_fiori_3"
|
|
@@ -175283,7 +175403,7 @@ var require_ui5_theme_info = __commonJS({
|
|
|
175283
175403
|
]: {
|
|
175284
175404
|
id: "sap_fiori_3_dark",
|
|
175285
175405
|
label: "Quartz Dark",
|
|
175286
|
-
|
|
175406
|
+
supportSince: MIN_UI5_VER_DARK_THEME
|
|
175287
175407
|
},
|
|
175288
175408
|
[
|
|
175289
175409
|
"sap_horizon"
|
|
@@ -175291,7 +175411,7 @@ var require_ui5_theme_info = __commonJS({
|
|
|
175291
175411
|
]: {
|
|
175292
175412
|
id: "sap_horizon",
|
|
175293
175413
|
label: "Morning Horizon",
|
|
175294
|
-
|
|
175414
|
+
supportSince: MIN_UI5_VER_HORIZON_THEME
|
|
175295
175415
|
},
|
|
175296
175416
|
[
|
|
175297
175417
|
"sap_horizon_dark"
|
|
@@ -175299,7 +175419,7 @@ var require_ui5_theme_info = __commonJS({
|
|
|
175299
175419
|
]: {
|
|
175300
175420
|
id: "sap_horizon_dark",
|
|
175301
175421
|
label: "Evening Horizon",
|
|
175302
|
-
|
|
175422
|
+
supportSince: MIN_UI5_VER_HORIZON_THEME
|
|
175303
175423
|
}
|
|
175304
175424
|
};
|
|
175305
175425
|
function getDefaultUI5Theme(ui5Version) {
|
|
@@ -175311,13 +175431,28 @@ var require_ui5_theme_info = __commonJS({
|
|
|
175311
175431
|
}
|
|
175312
175432
|
return "sap_horizon";
|
|
175313
175433
|
}
|
|
175434
|
+
function isSupported2(theme, cleanSemVer) {
|
|
175435
|
+
const isSupportedSince = theme.supportSince ? (0, semver_1.gte)(cleanSemVer, theme.supportSince) : true;
|
|
175436
|
+
const isSupportedUntil = theme.supportUntil ? (0, semver_1.lt)(cleanSemVer, theme.supportUntil) : true;
|
|
175437
|
+
return isSupportedSince && isSupportedUntil;
|
|
175438
|
+
}
|
|
175314
175439
|
function getUi5Themes(ui5Version = constants_1.defaultVersion) {
|
|
175315
175440
|
const ui5VersionSince = ui5Version.replace("snapshot-", "");
|
|
175316
175441
|
const cleanSemVer = (0, semver_1.coerce)(ui5VersionSince);
|
|
175317
|
-
if (cleanSemVer) {
|
|
175318
|
-
return Object.values(ui5Themes)
|
|
175442
|
+
if (!cleanSemVer) {
|
|
175443
|
+
return Object.values(exports2.ui5Themes);
|
|
175444
|
+
}
|
|
175445
|
+
const filteredThemes = {};
|
|
175446
|
+
for (const [id, theme] of Object.entries(exports2.ui5Themes)) {
|
|
175447
|
+
if (isSupported2(theme, cleanSemVer)) {
|
|
175448
|
+
const isDeprecated = theme.deprecateSince && (0, semver_1.gte)(cleanSemVer, theme.deprecateSince);
|
|
175449
|
+
filteredThemes[id] = {
|
|
175450
|
+
...theme,
|
|
175451
|
+
label: isDeprecated ? `${theme.label} (deprecated)` : theme.label
|
|
175452
|
+
};
|
|
175453
|
+
}
|
|
175319
175454
|
}
|
|
175320
|
-
return Object.values(
|
|
175455
|
+
return Object.values(filteredThemes);
|
|
175321
175456
|
}
|
|
175322
175457
|
}
|
|
175323
175458
|
});
|
|
@@ -175361,7 +175496,7 @@ var require_dist22 = __commonJS({
|
|
|
175361
175496
|
"../../node_modules/@sap-ux/ui5-info/dist/index.js"(exports2) {
|
|
175362
175497
|
"use strict";
|
|
175363
175498
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
175364
|
-
exports2.getSapSystemUI5Version = exports2.getUi5Themes = exports2.getDefaultUI5Theme = exports2.supportedUi5VersionFallbacks = exports2.getLatestUI5Version = exports2.getUI5Versions = exports2.defaultMinUi5Version = exports2.ui5VersionRequestInfo = exports2.latestVersionString = exports2.minUI5VersionForLocalDev = exports2.minUi5VersionV4Template = exports2.minUi5VersionSupportingCodeAssist = exports2.defaultVersion = void 0;
|
|
175499
|
+
exports2.getSapSystemUI5Version = exports2.ui5Themes = exports2.getUi5Themes = exports2.getDefaultUI5Theme = exports2.supportedUi5VersionFallbacks = exports2.getLatestUI5Version = exports2.getUI5Versions = exports2.defaultMinUi5Version = exports2.ui5VersionRequestInfo = exports2.latestVersionString = exports2.minUI5VersionForLocalDev = exports2.minUi5VersionV4Template = exports2.minUi5VersionSupportingCodeAssist = exports2.defaultVersion = void 0;
|
|
175365
175500
|
var constants_1 = require_constants12();
|
|
175366
175501
|
Object.defineProperty(exports2, "defaultVersion", { enumerable: true, get: function() {
|
|
175367
175502
|
return constants_1.defaultVersion;
|
|
@@ -175402,6 +175537,9 @@ var require_dist22 = __commonJS({
|
|
|
175402
175537
|
Object.defineProperty(exports2, "getUi5Themes", { enumerable: true, get: function() {
|
|
175403
175538
|
return ui5_theme_info_1.getUi5Themes;
|
|
175404
175539
|
} });
|
|
175540
|
+
Object.defineProperty(exports2, "ui5Themes", { enumerable: true, get: function() {
|
|
175541
|
+
return ui5_theme_info_1.ui5Themes;
|
|
175542
|
+
} });
|
|
175405
175543
|
var ui5_version_backend_1 = require_ui5_version_backend();
|
|
175406
175544
|
Object.defineProperty(exports2, "getSapSystemUI5Version", { enumerable: true, get: function() {
|
|
175407
175545
|
return ui5_version_backend_1.getSapSystemUI5Version;
|
|
@@ -190077,6 +190215,18 @@ var require_project_input_validator_i18n = __commonJS({
|
|
|
190077
190215
|
invalidValueForSpecialChars: "Input must contain only Latin alphanumeric characters or the following symbols: '-','_','$' and '.'",
|
|
190078
190216
|
maxLength: "Maximum length: {{maxLength}} characters",
|
|
190079
190217
|
supportedFormats: "Only alphanumeric and '{{allowedCharacters}}' characters are allowed"
|
|
190218
|
+
},
|
|
190219
|
+
adp: {
|
|
190220
|
+
projectNameUppercaseError: "The name cannot contain uppercase letters.",
|
|
190221
|
+
projectNameLengthErrorExt: "The name cannot contain more than 61 characters or end with the word 'component'.",
|
|
190222
|
+
projectNameValidationErrorExt: "The name must contain only latin alphanumeric characters. Different parts can be separated by a period and every part must start with a letter.",
|
|
190223
|
+
projectNameLengthErrorInt: "The name cannot start with the word 'customer', or contain more than 61 characters, or end with the word 'component'.",
|
|
190224
|
+
projectNameValidationErrorInt: "The name must contain only latin alphanumeric characters and it must have at least two parts. The different parts must be separated by a period and every part must start with a letter.",
|
|
190225
|
+
duplicatedProjectName: "A project with this name already exists in your workspace. Please choose another name.",
|
|
190226
|
+
differentNamespaceThanProjectName: "The namespace must be the same as the project name.",
|
|
190227
|
+
namespaceSameAsProjectNameError: "The namespace must be the same as the project name.",
|
|
190228
|
+
namespaceLengthError: "The namespace cannot contain more than 61 characters or end with the word 'component'.",
|
|
190229
|
+
namespaceValidationError: "The namespace must contain only latin alphanumeric characters. Different parts can be separated by a period and every part must start with a letter."
|
|
190080
190230
|
}
|
|
190081
190231
|
};
|
|
190082
190232
|
}
|
|
@@ -190610,6 +190760,15 @@ var require_validators4 = __commonJS({
|
|
|
190610
190760
|
exports2.hasContentDuplication = hasContentDuplication;
|
|
190611
190761
|
exports2.hasCustomerPrefix = hasCustomerPrefix;
|
|
190612
190762
|
exports2.isDataSourceURI = isDataSourceURI;
|
|
190763
|
+
exports2.validateProjectName = validateProjectName;
|
|
190764
|
+
exports2.validateProjectNameExternal = validateProjectNameExternal;
|
|
190765
|
+
exports2.validateProjectNameInternal = validateProjectNameInternal;
|
|
190766
|
+
exports2.validateDuplicateProjectName = validateDuplicateProjectName;
|
|
190767
|
+
exports2.validateNamespaceAdp = validateNamespaceAdp;
|
|
190768
|
+
var path_1 = require("path");
|
|
190769
|
+
var fs_1 = require("fs");
|
|
190770
|
+
var i18n_1 = require_i18n5();
|
|
190771
|
+
var validators_1 = require_validators3();
|
|
190613
190772
|
function hasContentDuplication(value, propertyName, changeFiles) {
|
|
190614
190773
|
return changeFiles.some(({ content }) => {
|
|
190615
190774
|
const contentProperty = content[propertyName];
|
|
@@ -190622,6 +190781,67 @@ var require_validators4 = __commonJS({
|
|
|
190622
190781
|
function isDataSourceURI(uri) {
|
|
190623
190782
|
return /^(?!.*\/\/)\/([^\s]*)\/$/.test(uri);
|
|
190624
190783
|
}
|
|
190784
|
+
var projectNamePattern = /^(\w\.\w|[a-zA-Z0-9]){1,61}$/;
|
|
190785
|
+
function validateProjectName(value, destinationPath, isCustomerBase) {
|
|
190786
|
+
const validationResult = (0, validators_1.validateEmptyString)(value);
|
|
190787
|
+
if (typeof validationResult === "string") {
|
|
190788
|
+
return validationResult;
|
|
190789
|
+
}
|
|
190790
|
+
if (/[A-Z]/.test(value)) {
|
|
190791
|
+
return (0, i18n_1.t)("adp.projectNameUppercaseError");
|
|
190792
|
+
}
|
|
190793
|
+
if (!isCustomerBase) {
|
|
190794
|
+
return validateProjectNameInternal(value, destinationPath);
|
|
190795
|
+
} else {
|
|
190796
|
+
return validateProjectNameExternal(value, destinationPath);
|
|
190797
|
+
}
|
|
190798
|
+
}
|
|
190799
|
+
function validateProjectNameExternal(value, destinationPath) {
|
|
190800
|
+
if (value.length > 61 || value.toLocaleLowerCase().endsWith("component")) {
|
|
190801
|
+
return (0, i18n_1.t)("adp.projectNameLengthErrorExt");
|
|
190802
|
+
}
|
|
190803
|
+
const projectNamePattern2 = /^(\w\.\w|[a-zA-Z0-9]){1,61}$/;
|
|
190804
|
+
if (!projectNamePattern2.test(value)) {
|
|
190805
|
+
return (0, i18n_1.t)("adp.projectNameValidationErrorExt");
|
|
190806
|
+
}
|
|
190807
|
+
return validateDuplicateProjectName(value, destinationPath);
|
|
190808
|
+
}
|
|
190809
|
+
function validateProjectNameInternal(value, destinationPath) {
|
|
190810
|
+
if (value.toLowerCase().startsWith("customer") || value.length > 61 || value.toLocaleLowerCase().endsWith("component")) {
|
|
190811
|
+
return (0, i18n_1.t)("adp.projectNameLengthErrorInt");
|
|
190812
|
+
}
|
|
190813
|
+
if (!projectNamePattern.test(value)) {
|
|
190814
|
+
return (0, i18n_1.t)("adp.projectNameValidationErrorInt");
|
|
190815
|
+
}
|
|
190816
|
+
return validateDuplicateProjectName(value, destinationPath);
|
|
190817
|
+
}
|
|
190818
|
+
function validateDuplicateProjectName(value, destinationPath) {
|
|
190819
|
+
if ((0, fs_1.existsSync)((0, path_1.join)(destinationPath, value))) {
|
|
190820
|
+
return (0, i18n_1.t)("adp.duplicatedProjectName");
|
|
190821
|
+
}
|
|
190822
|
+
return true;
|
|
190823
|
+
}
|
|
190824
|
+
function validateNamespaceAdp(namespace, projectName, isCustomerBase) {
|
|
190825
|
+
const validationResult = (0, validators_1.validateEmptyString)(namespace);
|
|
190826
|
+
if (typeof validationResult === "string") {
|
|
190827
|
+
return validationResult;
|
|
190828
|
+
}
|
|
190829
|
+
if (!isCustomerBase) {
|
|
190830
|
+
if (namespace !== projectName) {
|
|
190831
|
+
return (0, i18n_1.t)("adp.differentNamespaceThanProjectName");
|
|
190832
|
+
}
|
|
190833
|
+
} else if (namespace.toLowerCase().startsWith("customer.") !== true) {
|
|
190834
|
+
return (0, i18n_1.t)("adp.namespaceSameAsProjectNameError");
|
|
190835
|
+
} else {
|
|
190836
|
+
namespace = namespace.slice("customer.".length, namespace.length);
|
|
190837
|
+
}
|
|
190838
|
+
if (namespace.length > 61 || namespace.toLowerCase().endsWith("component") === true) {
|
|
190839
|
+
return (0, i18n_1.t)("adp.namespaceLengthError");
|
|
190840
|
+
} else if (namespace !== "" && projectNamePattern.test(namespace) === false) {
|
|
190841
|
+
return (0, i18n_1.t)("adp.namespaceValidationError");
|
|
190842
|
+
}
|
|
190843
|
+
return true;
|
|
190844
|
+
}
|
|
190625
190845
|
}
|
|
190626
190846
|
});
|
|
190627
190847
|
|
|
@@ -194750,7 +194970,7 @@ var init_package = __esm({
|
|
|
194750
194970
|
package_default = {
|
|
194751
194971
|
name: "@sap/ux-ui5-tooling",
|
|
194752
194972
|
displayName: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
194753
|
-
version: "1.17.
|
|
194973
|
+
version: "1.17.5",
|
|
194754
194974
|
description: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
194755
194975
|
publisher: "SAPSE",
|
|
194756
194976
|
license: "SEE LICENSE IN LICENSE",
|
|
@@ -194785,7 +195005,7 @@ var init_package = __esm({
|
|
|
194785
195005
|
madge: "madge --warning --circular --extensions ts ./"
|
|
194786
195006
|
},
|
|
194787
195007
|
dependencies: {
|
|
194788
|
-
"@sap-ux/preview-middleware": "0.19.
|
|
195008
|
+
"@sap-ux/preview-middleware": "0.19.38",
|
|
194789
195009
|
"@ui5/fs": "3.0.4",
|
|
194790
195010
|
"connect-livereload": "0.6.1",
|
|
194791
195011
|
debug: "4.3.7",
|
|
@@ -194800,28 +195020,28 @@ var init_package = __esm({
|
|
|
194800
195020
|
},
|
|
194801
195021
|
devDependencies: {
|
|
194802
195022
|
"@playwright/test": "1.51.1",
|
|
194803
|
-
"@sap-ux/adp-tooling": "0.13.
|
|
194804
|
-
"@sap-ux/axios-extension": "1.
|
|
194805
|
-
"@sap-ux/backend-proxy-middleware": "0.8.
|
|
194806
|
-
"@sap-ux/btp-utils": "1.0.
|
|
194807
|
-
"@sap-ux/deploy-tooling": "0.15.
|
|
195023
|
+
"@sap-ux/adp-tooling": "0.13.38",
|
|
195024
|
+
"@sap-ux/axios-extension": "1.20.1",
|
|
195025
|
+
"@sap-ux/backend-proxy-middleware": "0.8.42",
|
|
195026
|
+
"@sap-ux/btp-utils": "1.0.3",
|
|
195027
|
+
"@sap-ux/deploy-tooling": "0.15.58",
|
|
194808
195028
|
"@sap-ux/feature-toggle": "0.2.3",
|
|
194809
|
-
"@sap-ux/guided-answers-helper": "0.2.
|
|
195029
|
+
"@sap-ux/guided-answers-helper": "0.2.2",
|
|
194810
195030
|
"@sap-ux/logger": "0.6.0",
|
|
194811
|
-
"@sap-ux/project-access": "1.29.
|
|
194812
|
-
"@sap-ux/reload-middleware": "0.2.
|
|
195031
|
+
"@sap-ux/project-access": "1.29.21",
|
|
195032
|
+
"@sap-ux/reload-middleware": "0.2.21",
|
|
194813
195033
|
"@sap-ux/serve-static-middleware": "0.2.3",
|
|
194814
195034
|
"@sap-ux/store": "1.0.0",
|
|
194815
|
-
"@sap-ux/telemetry": "0.5.
|
|
194816
|
-
"@sap-ux/ui5-config": "0.
|
|
194817
|
-
"@sap-ux/ui5-info": "0.
|
|
194818
|
-
"@sap-ux/ui5-proxy-middleware": "1.4.
|
|
194819
|
-
"@sap/ux-app-templates": "1.17.
|
|
195035
|
+
"@sap-ux/telemetry": "0.5.77",
|
|
195036
|
+
"@sap-ux/ui5-config": "0.27.2",
|
|
195037
|
+
"@sap-ux/ui5-info": "0.10.1",
|
|
195038
|
+
"@sap-ux/ui5-proxy-middleware": "1.4.26",
|
|
195039
|
+
"@sap/ux-app-templates": "1.17.5",
|
|
194820
195040
|
"@types/fs-extra": "11.0.4",
|
|
194821
195041
|
"@types/jest-dev-server": "5.0.3",
|
|
194822
195042
|
"@types/marked": "4.0.1",
|
|
194823
195043
|
"@types/prompts": "2.0.14",
|
|
194824
|
-
"@types/supertest": "6.0.
|
|
195044
|
+
"@types/supertest": "6.0.3",
|
|
194825
195045
|
"@types/yazl": "2.4.2",
|
|
194826
195046
|
"async-retry": "1.3.1",
|
|
194827
195047
|
axios: "1.8.3",
|
|
@@ -194831,7 +195051,7 @@ var init_package = __esm({
|
|
|
194831
195051
|
ejs: "3.1.10",
|
|
194832
195052
|
"fs-extra": "11.2.0",
|
|
194833
195053
|
hasbin: "1.2.3",
|
|
194834
|
-
"http-proxy-middleware": "2.0.
|
|
195054
|
+
"http-proxy-middleware": "2.0.9",
|
|
194835
195055
|
i18next: "19.0.2",
|
|
194836
195056
|
"jest-dev-server": "7.0.0",
|
|
194837
195057
|
lodash: "4.17.21",
|
|
@@ -194841,7 +195061,7 @@ var init_package = __esm({
|
|
|
194841
195061
|
portfinder: "1.0.32",
|
|
194842
195062
|
prompts: "2.4.2",
|
|
194843
195063
|
"serve-static": "1.16.2",
|
|
194844
|
-
supertest: "
|
|
195064
|
+
supertest: "7.1.0",
|
|
194845
195065
|
"tree-kill": "1.2.2",
|
|
194846
195066
|
typescript: "5.8.2",
|
|
194847
195067
|
"wait-for-expect": "3.0.2",
|