@hypertestco/node-sdk-v3 0.0.1-21 → 0.0.1-23
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/helpers/getUncommittedChanges.d.ts +1 -0
- package/helpers/isCurrentFolderAGitRepo.d.ts +1 -0
- package/helpers/isHavingUncommittedChanges.d.ts +1 -0
- package/index.cjs +345 -265
- package/index.mjs +346 -266
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -49528,13 +49528,13 @@ var require_B3MultiPropagator = __commonJS({
|
|
|
49528
49528
|
return "";
|
|
49529
49529
|
}
|
|
49530
49530
|
function getDebug(carrier, getter) {
|
|
49531
|
-
const
|
|
49532
|
-
return
|
|
49531
|
+
const debug23 = getHeaderValue(carrier, getter, constants_1.X_B3_FLAGS);
|
|
49532
|
+
return debug23 === "1" ? "1" : void 0;
|
|
49533
49533
|
}
|
|
49534
49534
|
function getTraceFlags(carrier, getter) {
|
|
49535
49535
|
const traceFlags = getHeaderValue(carrier, getter, constants_1.X_B3_SAMPLED);
|
|
49536
|
-
const
|
|
49537
|
-
if (
|
|
49536
|
+
const debug23 = getDebug(carrier, getter);
|
|
49537
|
+
if (debug23 === "1" || VALID_SAMPLED_VALUES.has(traceFlags)) {
|
|
49538
49538
|
return api_1.TraceFlags.SAMPLED;
|
|
49539
49539
|
}
|
|
49540
49540
|
if (traceFlags === void 0 || VALID_UNSAMPLED_VALUES.has(traceFlags)) {
|
|
@@ -49547,11 +49547,11 @@ var require_B3MultiPropagator = __commonJS({
|
|
|
49547
49547
|
const spanContext = api_1.trace.getSpanContext(context53);
|
|
49548
49548
|
if (!spanContext || !(0, api_1.isSpanContextValid)(spanContext) || (0, core_1.isTracingSuppressed)(context53))
|
|
49549
49549
|
return;
|
|
49550
|
-
const
|
|
49550
|
+
const debug23 = context53.getValue(common_1.B3_DEBUG_FLAG_KEY);
|
|
49551
49551
|
setter.set(carrier, constants_1.X_B3_TRACE_ID, spanContext.traceId);
|
|
49552
49552
|
setter.set(carrier, constants_1.X_B3_SPAN_ID, spanContext.spanId);
|
|
49553
|
-
if (
|
|
49554
|
-
setter.set(carrier, constants_1.X_B3_FLAGS,
|
|
49553
|
+
if (debug23 === "1") {
|
|
49554
|
+
setter.set(carrier, constants_1.X_B3_FLAGS, debug23);
|
|
49555
49555
|
} else if (spanContext.traceFlags !== void 0) {
|
|
49556
49556
|
setter.set(carrier, constants_1.X_B3_SAMPLED, (api_1.TraceFlags.SAMPLED & spanContext.traceFlags) === api_1.TraceFlags.SAMPLED ? "1" : "0");
|
|
49557
49557
|
}
|
|
@@ -49560,9 +49560,9 @@ var require_B3MultiPropagator = __commonJS({
|
|
|
49560
49560
|
const traceId = getTraceId(carrier, getter);
|
|
49561
49561
|
const spanId = getSpanId(carrier, getter);
|
|
49562
49562
|
const traceFlags = getTraceFlags(carrier, getter);
|
|
49563
|
-
const
|
|
49563
|
+
const debug23 = getDebug(carrier, getter);
|
|
49564
49564
|
if ((0, api_1.isValidTraceId)(traceId) && (0, api_1.isValidSpanId)(spanId) && isValidSampledValue(traceFlags)) {
|
|
49565
|
-
context53 = context53.setValue(common_1.B3_DEBUG_FLAG_KEY,
|
|
49565
|
+
context53 = context53.setValue(common_1.B3_DEBUG_FLAG_KEY, debug23);
|
|
49566
49566
|
return api_1.trace.setSpanContext(context53, {
|
|
49567
49567
|
traceId,
|
|
49568
49568
|
spanId,
|
|
@@ -51169,9 +51169,9 @@ var require_constants4 = __commonJS({
|
|
|
51169
51169
|
// ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/debug.js
|
|
51170
51170
|
var require_debug = __commonJS({
|
|
51171
51171
|
"../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/debug.js"(exports2, module2) {
|
|
51172
|
-
var
|
|
51172
|
+
var debug23 = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {
|
|
51173
51173
|
};
|
|
51174
|
-
module2.exports =
|
|
51174
|
+
module2.exports = debug23;
|
|
51175
51175
|
}
|
|
51176
51176
|
});
|
|
51177
51177
|
|
|
@@ -51183,7 +51183,7 @@ var require_re = __commonJS({
|
|
|
51183
51183
|
MAX_SAFE_BUILD_LENGTH,
|
|
51184
51184
|
MAX_LENGTH
|
|
51185
51185
|
} = require_constants4();
|
|
51186
|
-
var
|
|
51186
|
+
var debug23 = require_debug();
|
|
51187
51187
|
exports2 = module2.exports = {};
|
|
51188
51188
|
var re2 = exports2.re = [];
|
|
51189
51189
|
var safeRe = exports2.safeRe = [];
|
|
@@ -51206,7 +51206,7 @@ var require_re = __commonJS({
|
|
|
51206
51206
|
var createToken = (name, value, isGlobal) => {
|
|
51207
51207
|
const safe = makeSafeRegex(value);
|
|
51208
51208
|
const index = R2++;
|
|
51209
|
-
|
|
51209
|
+
debug23(name, index, value);
|
|
51210
51210
|
t[name] = index;
|
|
51211
51211
|
src[index] = value;
|
|
51212
51212
|
safeSrc[index] = safe;
|
|
@@ -51304,7 +51304,7 @@ var require_identifiers = __commonJS({
|
|
|
51304
51304
|
// ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/classes/semver.js
|
|
51305
51305
|
var require_semver2 = __commonJS({
|
|
51306
51306
|
"../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/classes/semver.js"(exports2, module2) {
|
|
51307
|
-
var
|
|
51307
|
+
var debug23 = require_debug();
|
|
51308
51308
|
var { MAX_LENGTH, MAX_SAFE_INTEGER: MAX_SAFE_INTEGER2 } = require_constants4();
|
|
51309
51309
|
var { safeRe: re2, safeSrc: src, t } = require_re();
|
|
51310
51310
|
var parseOptions = require_parse_options();
|
|
@@ -51326,7 +51326,7 @@ var require_semver2 = __commonJS({
|
|
|
51326
51326
|
`version is longer than ${MAX_LENGTH} characters`
|
|
51327
51327
|
);
|
|
51328
51328
|
}
|
|
51329
|
-
|
|
51329
|
+
debug23("SemVer", version2, options);
|
|
51330
51330
|
this.options = options;
|
|
51331
51331
|
this.loose = !!options.loose;
|
|
51332
51332
|
this.includePrerelease = !!options.includePrerelease;
|
|
@@ -51374,7 +51374,7 @@ var require_semver2 = __commonJS({
|
|
|
51374
51374
|
return this.version;
|
|
51375
51375
|
}
|
|
51376
51376
|
compare(other) {
|
|
51377
|
-
|
|
51377
|
+
debug23("SemVer.compare", this.version, this.options, other);
|
|
51378
51378
|
if (!(other instanceof _SemVer)) {
|
|
51379
51379
|
if (typeof other === "string" && other === this.version) {
|
|
51380
51380
|
return 0;
|
|
@@ -51407,7 +51407,7 @@ var require_semver2 = __commonJS({
|
|
|
51407
51407
|
do {
|
|
51408
51408
|
const a = this.prerelease[i];
|
|
51409
51409
|
const b2 = other.prerelease[i];
|
|
51410
|
-
|
|
51410
|
+
debug23("prerelease compare", i, a, b2);
|
|
51411
51411
|
if (a === void 0 && b2 === void 0) {
|
|
51412
51412
|
return 0;
|
|
51413
51413
|
} else if (b2 === void 0) {
|
|
@@ -51429,7 +51429,7 @@ var require_semver2 = __commonJS({
|
|
|
51429
51429
|
do {
|
|
51430
51430
|
const a = this.build[i];
|
|
51431
51431
|
const b2 = other.build[i];
|
|
51432
|
-
|
|
51432
|
+
debug23("build compare", i, a, b2);
|
|
51433
51433
|
if (a === void 0 && b2 === void 0) {
|
|
51434
51434
|
return 0;
|
|
51435
51435
|
} else if (b2 === void 0) {
|
|
@@ -52033,21 +52033,21 @@ var require_range = __commonJS({
|
|
|
52033
52033
|
const loose = this.options.loose;
|
|
52034
52034
|
const hr2 = loose ? re2[t.HYPHENRANGELOOSE] : re2[t.HYPHENRANGE];
|
|
52035
52035
|
range = range.replace(hr2, hyphenReplace(this.options.includePrerelease));
|
|
52036
|
-
|
|
52036
|
+
debug23("hyphen replace", range);
|
|
52037
52037
|
range = range.replace(re2[t.COMPARATORTRIM], comparatorTrimReplace);
|
|
52038
|
-
|
|
52038
|
+
debug23("comparator trim", range);
|
|
52039
52039
|
range = range.replace(re2[t.TILDETRIM], tildeTrimReplace);
|
|
52040
|
-
|
|
52040
|
+
debug23("tilde trim", range);
|
|
52041
52041
|
range = range.replace(re2[t.CARETTRIM], caretTrimReplace);
|
|
52042
|
-
|
|
52042
|
+
debug23("caret trim", range);
|
|
52043
52043
|
let rangeList = range.split(" ").map((comp) => parseComparator(comp, this.options)).join(" ").split(/\s+/).map((comp) => replaceGTE0(comp, this.options));
|
|
52044
52044
|
if (loose) {
|
|
52045
52045
|
rangeList = rangeList.filter((comp) => {
|
|
52046
|
-
|
|
52046
|
+
debug23("loose invalid filter", comp, this.options);
|
|
52047
52047
|
return !!comp.match(re2[t.COMPARATORLOOSE]);
|
|
52048
52048
|
});
|
|
52049
52049
|
}
|
|
52050
|
-
|
|
52050
|
+
debug23("range list", rangeList);
|
|
52051
52051
|
const rangeMap = /* @__PURE__ */ new Map();
|
|
52052
52052
|
const comparators = rangeList.map((comp) => new Comparator(comp, this.options));
|
|
52053
52053
|
for (const comp of comparators) {
|
|
@@ -52102,7 +52102,7 @@ var require_range = __commonJS({
|
|
|
52102
52102
|
var cache2 = new LRU();
|
|
52103
52103
|
var parseOptions = require_parse_options();
|
|
52104
52104
|
var Comparator = require_comparator();
|
|
52105
|
-
var
|
|
52105
|
+
var debug23 = require_debug();
|
|
52106
52106
|
var SemVer = require_semver2();
|
|
52107
52107
|
var {
|
|
52108
52108
|
safeRe: re2,
|
|
@@ -52127,15 +52127,15 @@ var require_range = __commonJS({
|
|
|
52127
52127
|
return result;
|
|
52128
52128
|
};
|
|
52129
52129
|
var parseComparator = (comp, options) => {
|
|
52130
|
-
|
|
52130
|
+
debug23("comp", comp, options);
|
|
52131
52131
|
comp = replaceCarets(comp, options);
|
|
52132
|
-
|
|
52132
|
+
debug23("caret", comp);
|
|
52133
52133
|
comp = replaceTildes(comp, options);
|
|
52134
|
-
|
|
52134
|
+
debug23("tildes", comp);
|
|
52135
52135
|
comp = replaceXRanges(comp, options);
|
|
52136
|
-
|
|
52136
|
+
debug23("xrange", comp);
|
|
52137
52137
|
comp = replaceStars(comp, options);
|
|
52138
|
-
|
|
52138
|
+
debug23("stars", comp);
|
|
52139
52139
|
return comp;
|
|
52140
52140
|
};
|
|
52141
52141
|
var isX = (id2) => !id2 || id2.toLowerCase() === "x" || id2 === "*";
|
|
@@ -52145,7 +52145,7 @@ var require_range = __commonJS({
|
|
|
52145
52145
|
var replaceTilde = (comp, options) => {
|
|
52146
52146
|
const r = options.loose ? re2[t.TILDELOOSE] : re2[t.TILDE];
|
|
52147
52147
|
return comp.replace(r, (_, M2, m2, p, pr2) => {
|
|
52148
|
-
|
|
52148
|
+
debug23("tilde", comp, _, M2, m2, p, pr2);
|
|
52149
52149
|
let ret;
|
|
52150
52150
|
if (isX(M2)) {
|
|
52151
52151
|
ret = "";
|
|
@@ -52154,12 +52154,12 @@ var require_range = __commonJS({
|
|
|
52154
52154
|
} else if (isX(p)) {
|
|
52155
52155
|
ret = `>=${M2}.${m2}.0 <${M2}.${+m2 + 1}.0-0`;
|
|
52156
52156
|
} else if (pr2) {
|
|
52157
|
-
|
|
52157
|
+
debug23("replaceTilde pr", pr2);
|
|
52158
52158
|
ret = `>=${M2}.${m2}.${p}-${pr2} <${M2}.${+m2 + 1}.0-0`;
|
|
52159
52159
|
} else {
|
|
52160
52160
|
ret = `>=${M2}.${m2}.${p} <${M2}.${+m2 + 1}.0-0`;
|
|
52161
52161
|
}
|
|
52162
|
-
|
|
52162
|
+
debug23("tilde return", ret);
|
|
52163
52163
|
return ret;
|
|
52164
52164
|
});
|
|
52165
52165
|
};
|
|
@@ -52167,11 +52167,11 @@ var require_range = __commonJS({
|
|
|
52167
52167
|
return comp.trim().split(/\s+/).map((c2) => replaceCaret(c2, options)).join(" ");
|
|
52168
52168
|
};
|
|
52169
52169
|
var replaceCaret = (comp, options) => {
|
|
52170
|
-
|
|
52170
|
+
debug23("caret", comp, options);
|
|
52171
52171
|
const r = options.loose ? re2[t.CARETLOOSE] : re2[t.CARET];
|
|
52172
52172
|
const z2 = options.includePrerelease ? "-0" : "";
|
|
52173
52173
|
return comp.replace(r, (_, M2, m2, p, pr2) => {
|
|
52174
|
-
|
|
52174
|
+
debug23("caret", comp, _, M2, m2, p, pr2);
|
|
52175
52175
|
let ret;
|
|
52176
52176
|
if (isX(M2)) {
|
|
52177
52177
|
ret = "";
|
|
@@ -52184,7 +52184,7 @@ var require_range = __commonJS({
|
|
|
52184
52184
|
ret = `>=${M2}.${m2}.0${z2} <${+M2 + 1}.0.0-0`;
|
|
52185
52185
|
}
|
|
52186
52186
|
} else if (pr2) {
|
|
52187
|
-
|
|
52187
|
+
debug23("replaceCaret pr", pr2);
|
|
52188
52188
|
if (M2 === "0") {
|
|
52189
52189
|
if (m2 === "0") {
|
|
52190
52190
|
ret = `>=${M2}.${m2}.${p}-${pr2} <${M2}.${m2}.${+p + 1}-0`;
|
|
@@ -52195,7 +52195,7 @@ var require_range = __commonJS({
|
|
|
52195
52195
|
ret = `>=${M2}.${m2}.${p}-${pr2} <${+M2 + 1}.0.0-0`;
|
|
52196
52196
|
}
|
|
52197
52197
|
} else {
|
|
52198
|
-
|
|
52198
|
+
debug23("no pr");
|
|
52199
52199
|
if (M2 === "0") {
|
|
52200
52200
|
if (m2 === "0") {
|
|
52201
52201
|
ret = `>=${M2}.${m2}.${p}${z2} <${M2}.${m2}.${+p + 1}-0`;
|
|
@@ -52206,19 +52206,19 @@ var require_range = __commonJS({
|
|
|
52206
52206
|
ret = `>=${M2}.${m2}.${p} <${+M2 + 1}.0.0-0`;
|
|
52207
52207
|
}
|
|
52208
52208
|
}
|
|
52209
|
-
|
|
52209
|
+
debug23("caret return", ret);
|
|
52210
52210
|
return ret;
|
|
52211
52211
|
});
|
|
52212
52212
|
};
|
|
52213
52213
|
var replaceXRanges = (comp, options) => {
|
|
52214
|
-
|
|
52214
|
+
debug23("replaceXRanges", comp, options);
|
|
52215
52215
|
return comp.split(/\s+/).map((c2) => replaceXRange(c2, options)).join(" ");
|
|
52216
52216
|
};
|
|
52217
52217
|
var replaceXRange = (comp, options) => {
|
|
52218
52218
|
comp = comp.trim();
|
|
52219
52219
|
const r = options.loose ? re2[t.XRANGELOOSE] : re2[t.XRANGE];
|
|
52220
52220
|
return comp.replace(r, (ret, gtlt, M2, m2, p, pr2) => {
|
|
52221
|
-
|
|
52221
|
+
debug23("xRange", comp, ret, gtlt, M2, m2, p, pr2);
|
|
52222
52222
|
const xM = isX(M2);
|
|
52223
52223
|
const xm2 = xM || isX(m2);
|
|
52224
52224
|
const xp2 = xm2 || isX(p);
|
|
@@ -52265,16 +52265,16 @@ var require_range = __commonJS({
|
|
|
52265
52265
|
} else if (xp2) {
|
|
52266
52266
|
ret = `>=${M2}.${m2}.0${pr2} <${M2}.${+m2 + 1}.0-0`;
|
|
52267
52267
|
}
|
|
52268
|
-
|
|
52268
|
+
debug23("xRange return", ret);
|
|
52269
52269
|
return ret;
|
|
52270
52270
|
});
|
|
52271
52271
|
};
|
|
52272
52272
|
var replaceStars = (comp, options) => {
|
|
52273
|
-
|
|
52273
|
+
debug23("replaceStars", comp, options);
|
|
52274
52274
|
return comp.trim().replace(re2[t.STAR], "");
|
|
52275
52275
|
};
|
|
52276
52276
|
var replaceGTE0 = (comp, options) => {
|
|
52277
|
-
|
|
52277
|
+
debug23("replaceGTE0", comp, options);
|
|
52278
52278
|
return comp.trim().replace(re2[options.includePrerelease ? t.GTE0PRE : t.GTE0], "");
|
|
52279
52279
|
};
|
|
52280
52280
|
var hyphenReplace = (incPr) => ($0, from, fM, fm2, fp2, fpr, fb, to2, tM, tm2, tp2, tpr) => {
|
|
@@ -52312,7 +52312,7 @@ var require_range = __commonJS({
|
|
|
52312
52312
|
}
|
|
52313
52313
|
if (version2.prerelease.length && !options.includePrerelease) {
|
|
52314
52314
|
for (let i = 0; i < set2.length; i++) {
|
|
52315
|
-
|
|
52315
|
+
debug23(set2[i].semver);
|
|
52316
52316
|
if (set2[i].semver === Comparator.ANY) {
|
|
52317
52317
|
continue;
|
|
52318
52318
|
}
|
|
@@ -52348,7 +52348,7 @@ var require_comparator = __commonJS({
|
|
|
52348
52348
|
}
|
|
52349
52349
|
}
|
|
52350
52350
|
comp = comp.trim().split(/\s+/).join(" ");
|
|
52351
|
-
|
|
52351
|
+
debug23("comparator", comp, options);
|
|
52352
52352
|
this.options = options;
|
|
52353
52353
|
this.loose = !!options.loose;
|
|
52354
52354
|
this.parse(comp);
|
|
@@ -52357,7 +52357,7 @@ var require_comparator = __commonJS({
|
|
|
52357
52357
|
} else {
|
|
52358
52358
|
this.value = this.operator + this.semver.version;
|
|
52359
52359
|
}
|
|
52360
|
-
|
|
52360
|
+
debug23("comp", this);
|
|
52361
52361
|
}
|
|
52362
52362
|
parse(comp) {
|
|
52363
52363
|
const r = this.options.loose ? re2[t.COMPARATORLOOSE] : re2[t.COMPARATOR];
|
|
@@ -52379,7 +52379,7 @@ var require_comparator = __commonJS({
|
|
|
52379
52379
|
return this.value;
|
|
52380
52380
|
}
|
|
52381
52381
|
test(version2) {
|
|
52382
|
-
|
|
52382
|
+
debug23("Comparator.test", version2, this.options.loose);
|
|
52383
52383
|
if (this.semver === ANY || version2 === ANY) {
|
|
52384
52384
|
return true;
|
|
52385
52385
|
}
|
|
@@ -52436,7 +52436,7 @@ var require_comparator = __commonJS({
|
|
|
52436
52436
|
var parseOptions = require_parse_options();
|
|
52437
52437
|
var { safeRe: re2, t } = require_re();
|
|
52438
52438
|
var cmp = require_cmp();
|
|
52439
|
-
var
|
|
52439
|
+
var debug23 = require_debug();
|
|
52440
52440
|
var SemVer = require_semver2();
|
|
52441
52441
|
var Range = require_range();
|
|
52442
52442
|
}
|
|
@@ -54788,11 +54788,11 @@ var require_common3 = __commonJS({
|
|
|
54788
54788
|
let enableOverride = null;
|
|
54789
54789
|
let namespacesCache;
|
|
54790
54790
|
let enabledCache;
|
|
54791
|
-
function
|
|
54792
|
-
if (!
|
|
54791
|
+
function debug23(...args) {
|
|
54792
|
+
if (!debug23.enabled) {
|
|
54793
54793
|
return;
|
|
54794
54794
|
}
|
|
54795
|
-
const self2 =
|
|
54795
|
+
const self2 = debug23;
|
|
54796
54796
|
const curr = Number(/* @__PURE__ */ new Date());
|
|
54797
54797
|
const ms = curr - (prevTime || curr);
|
|
54798
54798
|
self2.diff = ms;
|
|
@@ -54822,12 +54822,12 @@ var require_common3 = __commonJS({
|
|
|
54822
54822
|
const logFn = self2.log || createDebug.log;
|
|
54823
54823
|
logFn.apply(self2, args);
|
|
54824
54824
|
}
|
|
54825
|
-
|
|
54826
|
-
|
|
54827
|
-
|
|
54828
|
-
|
|
54829
|
-
|
|
54830
|
-
Object.defineProperty(
|
|
54825
|
+
debug23.namespace = namespace;
|
|
54826
|
+
debug23.useColors = createDebug.useColors();
|
|
54827
|
+
debug23.color = createDebug.selectColor(namespace);
|
|
54828
|
+
debug23.extend = extend2;
|
|
54829
|
+
debug23.destroy = createDebug.destroy;
|
|
54830
|
+
Object.defineProperty(debug23, "enabled", {
|
|
54831
54831
|
enumerable: true,
|
|
54832
54832
|
configurable: false,
|
|
54833
54833
|
get: () => {
|
|
@@ -54845,9 +54845,9 @@ var require_common3 = __commonJS({
|
|
|
54845
54845
|
}
|
|
54846
54846
|
});
|
|
54847
54847
|
if (typeof createDebug.init === "function") {
|
|
54848
|
-
createDebug.init(
|
|
54848
|
+
createDebug.init(debug23);
|
|
54849
54849
|
}
|
|
54850
|
-
return
|
|
54850
|
+
return debug23;
|
|
54851
54851
|
}
|
|
54852
54852
|
function extend2(namespace, delimiter) {
|
|
54853
54853
|
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
@@ -55372,11 +55372,11 @@ var require_node8 = __commonJS({
|
|
|
55372
55372
|
function load() {
|
|
55373
55373
|
return process.env.DEBUG;
|
|
55374
55374
|
}
|
|
55375
|
-
function init(
|
|
55376
|
-
|
|
55375
|
+
function init(debug23) {
|
|
55376
|
+
debug23.inspectOpts = {};
|
|
55377
55377
|
const keys = Object.keys(exports2.inspectOpts);
|
|
55378
55378
|
for (let i = 0; i < keys.length; i++) {
|
|
55379
|
-
|
|
55379
|
+
debug23.inspectOpts[keys[i]] = exports2.inspectOpts[keys[i]];
|
|
55380
55380
|
}
|
|
55381
55381
|
}
|
|
55382
55382
|
module2.exports = require_common3()(exports2);
|
|
@@ -55496,7 +55496,7 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55496
55496
|
var path4 = require("path");
|
|
55497
55497
|
var Module = require("module");
|
|
55498
55498
|
var resolve = require_resolve();
|
|
55499
|
-
var
|
|
55499
|
+
var debug23 = require_src18()("require-in-the-middle");
|
|
55500
55500
|
var moduleDetailsFromPath = require_module_details_from_path();
|
|
55501
55501
|
module2.exports = Hook2;
|
|
55502
55502
|
module2.exports.Hook = Hook2;
|
|
@@ -55549,7 +55549,7 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55549
55549
|
} else if (filename in require.cache) {
|
|
55550
55550
|
require.cache[filename][this._kRitmExports] = exports3;
|
|
55551
55551
|
} else {
|
|
55552
|
-
|
|
55552
|
+
debug23('non-core module is unexpectedly not in require.cache: "%s"', filename);
|
|
55553
55553
|
this._localCache.set(filename, exports3);
|
|
55554
55554
|
}
|
|
55555
55555
|
}
|
|
@@ -55576,10 +55576,10 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55576
55576
|
const patching = /* @__PURE__ */ new Set();
|
|
55577
55577
|
const internals = options ? options.internals === true : false;
|
|
55578
55578
|
const hasWhitelist = Array.isArray(modules);
|
|
55579
|
-
|
|
55579
|
+
debug23("registering require hook");
|
|
55580
55580
|
this._require = Module.prototype.require = function(id2) {
|
|
55581
55581
|
if (self2._unhooked === true) {
|
|
55582
|
-
|
|
55582
|
+
debug23("ignoring require call - module is soft-unhooked");
|
|
55583
55583
|
return self2._origRequire.apply(this, arguments);
|
|
55584
55584
|
}
|
|
55585
55585
|
return patchedRequire.call(this, arguments, false);
|
|
@@ -55588,7 +55588,7 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55588
55588
|
this._origGetBuiltinModule = process.getBuiltinModule;
|
|
55589
55589
|
this._getBuiltinModule = process.getBuiltinModule = function(id2) {
|
|
55590
55590
|
if (self2._unhooked === true) {
|
|
55591
|
-
|
|
55591
|
+
debug23("ignoring process.getBuiltinModule call - module is soft-unhooked");
|
|
55592
55592
|
return self2._origGetBuiltinModule.apply(this, arguments);
|
|
55593
55593
|
}
|
|
55594
55594
|
return patchedRequire.call(this, arguments, true);
|
|
@@ -55607,20 +55607,20 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55607
55607
|
}
|
|
55608
55608
|
}
|
|
55609
55609
|
} else if (coreOnly) {
|
|
55610
|
-
|
|
55610
|
+
debug23("call to process.getBuiltinModule with unknown built-in id");
|
|
55611
55611
|
return self2._origGetBuiltinModule.apply(this, args);
|
|
55612
55612
|
} else {
|
|
55613
55613
|
try {
|
|
55614
55614
|
filename = Module._resolveFilename(id2, this);
|
|
55615
55615
|
} catch (resolveErr) {
|
|
55616
|
-
|
|
55616
|
+
debug23('Module._resolveFilename("%s") threw %j, calling original Module.require', id2, resolveErr.message);
|
|
55617
55617
|
return self2._origRequire.apply(this, args);
|
|
55618
55618
|
}
|
|
55619
55619
|
}
|
|
55620
55620
|
let moduleName2, basedir;
|
|
55621
|
-
|
|
55621
|
+
debug23("processing %s module require('%s'): %s", core === true ? "core" : "non-core", id2, filename);
|
|
55622
55622
|
if (self2._cache.has(filename, core) === true) {
|
|
55623
|
-
|
|
55623
|
+
debug23("returning already patched cached module: %s", filename);
|
|
55624
55624
|
return self2._cache.get(filename, core);
|
|
55625
55625
|
}
|
|
55626
55626
|
const isPatching = patching.has(filename);
|
|
@@ -55629,13 +55629,13 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55629
55629
|
}
|
|
55630
55630
|
const exports3 = coreOnly ? self2._origGetBuiltinModule.apply(this, args) : self2._origRequire.apply(this, args);
|
|
55631
55631
|
if (isPatching === true) {
|
|
55632
|
-
|
|
55632
|
+
debug23("module is in the process of being patched already - ignoring: %s", filename);
|
|
55633
55633
|
return exports3;
|
|
55634
55634
|
}
|
|
55635
55635
|
patching.delete(filename);
|
|
55636
55636
|
if (core === true) {
|
|
55637
55637
|
if (hasWhitelist === true && modules.includes(filename) === false) {
|
|
55638
|
-
|
|
55638
|
+
debug23("ignoring core module not on whitelist: %s", filename);
|
|
55639
55639
|
return exports3;
|
|
55640
55640
|
}
|
|
55641
55641
|
moduleName2 = filename;
|
|
@@ -55646,13 +55646,13 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55646
55646
|
} else {
|
|
55647
55647
|
const stat = moduleDetailsFromPath(filename);
|
|
55648
55648
|
if (stat === void 0) {
|
|
55649
|
-
|
|
55649
|
+
debug23("could not parse filename: %s", filename);
|
|
55650
55650
|
return exports3;
|
|
55651
55651
|
}
|
|
55652
55652
|
moduleName2 = stat.name;
|
|
55653
55653
|
basedir = stat.basedir;
|
|
55654
55654
|
const fullModuleName = resolveModuleName(stat);
|
|
55655
|
-
|
|
55655
|
+
debug23("resolved filename to module: %s (id: %s, resolved: %s, basedir: %s)", moduleName2, id2, fullModuleName, basedir);
|
|
55656
55656
|
let matchFound = false;
|
|
55657
55657
|
if (hasWhitelist) {
|
|
55658
55658
|
if (!id2.startsWith(".") && modules.includes(id2)) {
|
|
@@ -55672,16 +55672,16 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55672
55672
|
try {
|
|
55673
55673
|
res = resolve.sync(moduleName2, { basedir });
|
|
55674
55674
|
} catch (e) {
|
|
55675
|
-
|
|
55675
|
+
debug23("could not resolve module: %s", moduleName2);
|
|
55676
55676
|
self2._cache.set(filename, exports3, core);
|
|
55677
55677
|
return exports3;
|
|
55678
55678
|
}
|
|
55679
55679
|
if (res !== filename) {
|
|
55680
55680
|
if (internals === true) {
|
|
55681
55681
|
moduleName2 = moduleName2 + path4.sep + path4.relative(basedir, filename);
|
|
55682
|
-
|
|
55682
|
+
debug23("preparing to process require of internal file: %s", moduleName2);
|
|
55683
55683
|
} else {
|
|
55684
|
-
|
|
55684
|
+
debug23("ignoring require of non-main module file: %s", res);
|
|
55685
55685
|
self2._cache.set(filename, exports3, core);
|
|
55686
55686
|
return exports3;
|
|
55687
55687
|
}
|
|
@@ -55689,10 +55689,10 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55689
55689
|
}
|
|
55690
55690
|
}
|
|
55691
55691
|
self2._cache.set(filename, exports3, core);
|
|
55692
|
-
|
|
55692
|
+
debug23("calling require hook: %s", moduleName2);
|
|
55693
55693
|
const patchedExports = onrequire(exports3, moduleName2, basedir);
|
|
55694
55694
|
self2._cache.set(filename, patchedExports, core);
|
|
55695
|
-
|
|
55695
|
+
debug23("returning module: %s", moduleName2);
|
|
55696
55696
|
return patchedExports;
|
|
55697
55697
|
}
|
|
55698
55698
|
}
|
|
@@ -55700,16 +55700,16 @@ var require_require_in_the_middle = __commonJS({
|
|
|
55700
55700
|
this._unhooked = true;
|
|
55701
55701
|
if (this._require === Module.prototype.require) {
|
|
55702
55702
|
Module.prototype.require = this._origRequire;
|
|
55703
|
-
|
|
55703
|
+
debug23("require unhook successful");
|
|
55704
55704
|
} else {
|
|
55705
|
-
|
|
55705
|
+
debug23("require unhook unsuccessful");
|
|
55706
55706
|
}
|
|
55707
55707
|
if (process.getBuiltinModule !== void 0) {
|
|
55708
55708
|
if (this._getBuiltinModule === process.getBuiltinModule) {
|
|
55709
55709
|
process.getBuiltinModule = this._origGetBuiltinModule;
|
|
55710
|
-
|
|
55710
|
+
debug23("process.getBuiltinModule unhook successful");
|
|
55711
55711
|
} else {
|
|
55712
|
-
|
|
55712
|
+
debug23("process.getBuiltinModule unhook unsuccessful");
|
|
55713
55713
|
}
|
|
55714
55714
|
}
|
|
55715
55715
|
};
|
|
@@ -80890,19 +80890,19 @@ var require_proxy_from_env = __commonJS({
|
|
|
80890
80890
|
// ../../node_modules/.pnpm/follow-redirects@1.15.6_debug@4.4.0/node_modules/follow-redirects/debug.js
|
|
80891
80891
|
var require_debug2 = __commonJS({
|
|
80892
80892
|
"../../node_modules/.pnpm/follow-redirects@1.15.6_debug@4.4.0/node_modules/follow-redirects/debug.js"(exports2, module2) {
|
|
80893
|
-
var
|
|
80893
|
+
var debug23;
|
|
80894
80894
|
module2.exports = function() {
|
|
80895
|
-
if (!
|
|
80895
|
+
if (!debug23) {
|
|
80896
80896
|
try {
|
|
80897
|
-
|
|
80897
|
+
debug23 = require_src18()("follow-redirects");
|
|
80898
80898
|
} catch (error) {
|
|
80899
80899
|
}
|
|
80900
|
-
if (typeof
|
|
80901
|
-
|
|
80900
|
+
if (typeof debug23 !== "function") {
|
|
80901
|
+
debug23 = function() {
|
|
80902
80902
|
};
|
|
80903
80903
|
}
|
|
80904
80904
|
}
|
|
80905
|
-
|
|
80905
|
+
debug23.apply(null, arguments);
|
|
80906
80906
|
};
|
|
80907
80907
|
}
|
|
80908
80908
|
});
|
|
@@ -80916,7 +80916,7 @@ var require_follow_redirects = __commonJS({
|
|
|
80916
80916
|
var https3 = require("https");
|
|
80917
80917
|
var Writable = require("stream").Writable;
|
|
80918
80918
|
var assert = require("assert");
|
|
80919
|
-
var
|
|
80919
|
+
var debug23 = require_debug2();
|
|
80920
80920
|
var useNativeURL = false;
|
|
80921
80921
|
try {
|
|
80922
80922
|
assert(new URL4());
|
|
@@ -81225,7 +81225,7 @@ var require_follow_redirects = __commonJS({
|
|
|
81225
81225
|
var currentHost = currentHostHeader || currentUrlParts.host;
|
|
81226
81226
|
var currentUrl = /^\w+:/.test(location) ? this._currentUrl : url2.format(Object.assign(currentUrlParts, { host: currentHost }));
|
|
81227
81227
|
var redirectUrl = resolveUrl(location, currentUrl);
|
|
81228
|
-
|
|
81228
|
+
debug23("redirecting to", redirectUrl.href);
|
|
81229
81229
|
this._isRedirect = true;
|
|
81230
81230
|
spreadUrlObject(redirectUrl, this._options);
|
|
81231
81231
|
if (redirectUrl.protocol !== currentUrlParts.protocol && redirectUrl.protocol !== "https:" || redirectUrl.host !== currentHost && !isSubdomain(redirectUrl.host, currentHost)) {
|
|
@@ -81279,7 +81279,7 @@ var require_follow_redirects = __commonJS({
|
|
|
81279
81279
|
options.hostname = "::1";
|
|
81280
81280
|
}
|
|
81281
81281
|
assert.equal(options.protocol, protocol, "protocol mismatch");
|
|
81282
|
-
|
|
81282
|
+
debug23("options", options);
|
|
81283
81283
|
return new RedirectableRequest(options, callback);
|
|
81284
81284
|
}
|
|
81285
81285
|
function get2(input, options, callback) {
|
|
@@ -94312,7 +94312,7 @@ var require_transform_utils = __commonJS({
|
|
|
94312
94312
|
var require_transformer = __commonJS({
|
|
94313
94313
|
"../../node_modules/.pnpm/istanbul-lib-source-maps@4.0.1_patch_hash=64aa1ef477ab6d1b23b0de660c800e802db4887f5fbe3e34bf8563ccb4c86447/node_modules/istanbul-lib-source-maps/lib/transformer.js"(exports2, module2) {
|
|
94314
94314
|
"use strict";
|
|
94315
|
-
var
|
|
94315
|
+
var debug23 = require_src18()("istanbuljs");
|
|
94316
94316
|
var libCoverage2 = require_istanbul_lib_coverage();
|
|
94317
94317
|
var { MappedCoverage } = require_mapped();
|
|
94318
94318
|
var getMapping = require_get_mapping();
|
|
@@ -94412,7 +94412,7 @@ var require_transformer = __commonJS({
|
|
|
94412
94412
|
getMappedCoverage
|
|
94413
94413
|
);
|
|
94414
94414
|
if (!changed) {
|
|
94415
|
-
|
|
94415
|
+
debug23(`File [${file}] ignored, nothing could be mapped`);
|
|
94416
94416
|
}
|
|
94417
94417
|
} else {
|
|
94418
94418
|
uniqueFiles[getUniqueKey(file)] = {
|
|
@@ -94436,7 +94436,7 @@ var require_map_store = __commonJS({
|
|
|
94436
94436
|
"use strict";
|
|
94437
94437
|
var path4 = require("path");
|
|
94438
94438
|
var fs3 = require("fs");
|
|
94439
|
-
var
|
|
94439
|
+
var debug23 = require_src18()("istanbuljs");
|
|
94440
94440
|
var { SourceMapConsumer } = require_source_map();
|
|
94441
94441
|
var pathutils = require_pathutils();
|
|
94442
94442
|
var { SourceMapTransformer } = require_transformer();
|
|
@@ -94485,7 +94485,7 @@ var require_map_store = __commonJS({
|
|
|
94485
94485
|
data: sourceMapUrl.substring(pos + b64.length)
|
|
94486
94486
|
};
|
|
94487
94487
|
} else {
|
|
94488
|
-
|
|
94488
|
+
debug23(`Unable to interpret source map URL: ${sourceMapUrl}`);
|
|
94489
94489
|
}
|
|
94490
94490
|
return;
|
|
94491
94491
|
}
|
|
@@ -94506,7 +94506,7 @@ var require_map_store = __commonJS({
|
|
|
94506
94506
|
data: sourceMap
|
|
94507
94507
|
};
|
|
94508
94508
|
} else {
|
|
94509
|
-
|
|
94509
|
+
debug23(
|
|
94510
94510
|
"Invalid source map object: " + JSON.stringify(sourceMap, null, 2)
|
|
94511
94511
|
);
|
|
94512
94512
|
}
|
|
@@ -94532,8 +94532,8 @@ var require_map_store = __commonJS({
|
|
|
94532
94532
|
...d.data
|
|
94533
94533
|
};
|
|
94534
94534
|
} catch (error) {
|
|
94535
|
-
|
|
94536
|
-
|
|
94535
|
+
debug23("Error returning source map for " + filePath);
|
|
94536
|
+
debug23(error.stack);
|
|
94537
94537
|
return;
|
|
94538
94538
|
}
|
|
94539
94539
|
}
|
|
@@ -94600,8 +94600,8 @@ var require_map_store = __commonJS({
|
|
|
94600
94600
|
});
|
|
94601
94601
|
return smc;
|
|
94602
94602
|
} catch (error) {
|
|
94603
|
-
|
|
94604
|
-
|
|
94603
|
+
debug23("Error returning source map for " + filePath);
|
|
94604
|
+
debug23(error.stack);
|
|
94605
94605
|
return null;
|
|
94606
94606
|
}
|
|
94607
94607
|
}
|
|
@@ -115461,9 +115461,9 @@ var require_debug3 = __commonJS({
|
|
|
115461
115461
|
"../../node_modules/.pnpm/avvio@8.3.2/node_modules/avvio/lib/debug.js"(exports2, module2) {
|
|
115462
115462
|
"use strict";
|
|
115463
115463
|
var { debuglog } = require("util");
|
|
115464
|
-
var
|
|
115464
|
+
var debug23 = debuglog("avvio");
|
|
115465
115465
|
module2.exports = {
|
|
115466
|
-
debug:
|
|
115466
|
+
debug: debug23
|
|
115467
115467
|
};
|
|
115468
115468
|
}
|
|
115469
115469
|
});
|
|
@@ -115533,7 +115533,7 @@ var require_plugin = __commonJS({
|
|
|
115533
115533
|
"use strict";
|
|
115534
115534
|
var { EventEmitter: EventEmitter14 } = require("events");
|
|
115535
115535
|
var { inherits: inherits2 } = require("util");
|
|
115536
|
-
var { debug:
|
|
115536
|
+
var { debug: debug23 } = require_debug3();
|
|
115537
115537
|
var { createPromise } = require_create_promise();
|
|
115538
115538
|
var { AVV_ERR_PLUGIN_EXEC_TIMEOUT } = require_errors();
|
|
115539
115539
|
var { getPluginName } = require_get_plugin_name();
|
|
@@ -115554,7 +115554,7 @@ var require_plugin = __commonJS({
|
|
|
115554
115554
|
}
|
|
115555
115555
|
inherits2(Plugin, EventEmitter14);
|
|
115556
115556
|
Plugin.prototype.exec = function(server, callback) {
|
|
115557
|
-
|
|
115557
|
+
debug23("exec", this.name);
|
|
115558
115558
|
this.server = server;
|
|
115559
115559
|
const func = this.func;
|
|
115560
115560
|
const name = this.name;
|
|
@@ -115563,14 +115563,14 @@ var require_plugin = __commonJS({
|
|
|
115563
115563
|
let timer = null;
|
|
115564
115564
|
const done = (execErr) => {
|
|
115565
115565
|
if (completed) {
|
|
115566
|
-
|
|
115566
|
+
debug23("loading complete", name);
|
|
115567
115567
|
return;
|
|
115568
115568
|
}
|
|
115569
115569
|
this._error = execErr;
|
|
115570
115570
|
if (execErr) {
|
|
115571
|
-
|
|
115571
|
+
debug23("exec errored", name);
|
|
115572
115572
|
} else {
|
|
115573
|
-
|
|
115573
|
+
debug23("exec completed", name);
|
|
115574
115574
|
}
|
|
115575
115575
|
completed = true;
|
|
115576
115576
|
if (timer) {
|
|
@@ -115579,9 +115579,9 @@ var require_plugin = __commonJS({
|
|
|
115579
115579
|
callback(execErr);
|
|
115580
115580
|
};
|
|
115581
115581
|
if (this.timeout > 0) {
|
|
115582
|
-
|
|
115582
|
+
debug23("setting up timeout", name, this.timeout);
|
|
115583
115583
|
timer = setTimeout(function() {
|
|
115584
|
-
|
|
115584
|
+
debug23("timed out", name);
|
|
115585
115585
|
timer = null;
|
|
115586
115586
|
const readyTimeoutErr = new AVV_ERR_PLUGIN_EXEC_TIMEOUT(name);
|
|
115587
115587
|
readyTimeoutErr.fn = func;
|
|
@@ -115593,7 +115593,7 @@ var require_plugin = __commonJS({
|
|
|
115593
115593
|
this.emit("start", this.server ? this.server.name : null, this.name, Date.now());
|
|
115594
115594
|
const maybePromiseLike = func(this.server, this.options, done);
|
|
115595
115595
|
if (isPromiseLike(maybePromiseLike)) {
|
|
115596
|
-
|
|
115596
|
+
debug23("exec: resolving promise", name);
|
|
115597
115597
|
maybePromiseLike.then(
|
|
115598
115598
|
() => process.nextTick(done),
|
|
115599
115599
|
(e) => process.nextTick(done, e)
|
|
@@ -115601,7 +115601,7 @@ var require_plugin = __commonJS({
|
|
|
115601
115601
|
}
|
|
115602
115602
|
};
|
|
115603
115603
|
Plugin.prototype.loadedSoFar = function() {
|
|
115604
|
-
|
|
115604
|
+
debug23("loadedSoFar", this.name);
|
|
115605
115605
|
if (this.loaded) {
|
|
115606
115606
|
return Promise.resolve();
|
|
115607
115607
|
}
|
|
@@ -115611,10 +115611,10 @@ var require_plugin = __commonJS({
|
|
|
115611
115611
|
this.queue.pause();
|
|
115612
115612
|
if (this._promise) {
|
|
115613
115613
|
if (afterErr) {
|
|
115614
|
-
|
|
115614
|
+
debug23("rejecting promise", this.name, afterErr);
|
|
115615
115615
|
this._promise.reject(afterErr);
|
|
115616
115616
|
} else {
|
|
115617
|
-
|
|
115617
|
+
debug23("resolving promise", this.name);
|
|
115618
115618
|
this._promise.resolve();
|
|
115619
115619
|
}
|
|
115620
115620
|
this._promise = null;
|
|
@@ -115638,17 +115638,17 @@ var require_plugin = __commonJS({
|
|
|
115638
115638
|
return res;
|
|
115639
115639
|
};
|
|
115640
115640
|
Plugin.prototype.enqueue = function(plugin, callback) {
|
|
115641
|
-
|
|
115641
|
+
debug23("enqueue", this.name, plugin.name);
|
|
115642
115642
|
this.emit("enqueue", this.server ? this.server.name : null, this.name, Date.now());
|
|
115643
115643
|
this.queue.push(plugin, callback);
|
|
115644
115644
|
};
|
|
115645
115645
|
Plugin.prototype.finish = function(err, callback) {
|
|
115646
|
-
|
|
115646
|
+
debug23("finish", this.name, err);
|
|
115647
115647
|
const done = () => {
|
|
115648
115648
|
if (this.loaded) {
|
|
115649
115649
|
return;
|
|
115650
115650
|
}
|
|
115651
|
-
|
|
115651
|
+
debug23("loaded", this.name);
|
|
115652
115652
|
this.emit("loaded", this.server ? this.server.name : null, this.name, Date.now());
|
|
115653
115653
|
this.loaded = true;
|
|
115654
115654
|
callback(err);
|
|
@@ -115662,11 +115662,11 @@ var require_plugin = __commonJS({
|
|
|
115662
115662
|
return;
|
|
115663
115663
|
}
|
|
115664
115664
|
const check = () => {
|
|
115665
|
-
|
|
115665
|
+
debug23("check", this.name, this.queue.length(), this.queue.running(), this._promise);
|
|
115666
115666
|
if (this.queue.length() === 0 && this.queue.running() === 0) {
|
|
115667
115667
|
if (this._promise) {
|
|
115668
115668
|
const wrap2 = () => {
|
|
115669
|
-
|
|
115669
|
+
debug23("wrap");
|
|
115670
115670
|
queueMicrotask(check);
|
|
115671
115671
|
};
|
|
115672
115672
|
this._promise.resolve();
|
|
@@ -115676,9 +115676,9 @@ var require_plugin = __commonJS({
|
|
|
115676
115676
|
done();
|
|
115677
115677
|
}
|
|
115678
115678
|
} else {
|
|
115679
|
-
|
|
115679
|
+
debug23("delayed", this.name);
|
|
115680
115680
|
this.queue.drain = () => {
|
|
115681
|
-
|
|
115681
|
+
debug23("drain", this.name);
|
|
115682
115682
|
this.queue.drain = noop2;
|
|
115683
115683
|
queueMicrotask(check);
|
|
115684
115684
|
};
|
|
@@ -115734,18 +115734,18 @@ var require_is_bundled_or_typescript_plugin = __commonJS({
|
|
|
115734
115734
|
var require_thenify = __commonJS({
|
|
115735
115735
|
"../../node_modules/.pnpm/avvio@8.3.2/node_modules/avvio/lib/thenify.js"(exports2, module2) {
|
|
115736
115736
|
"use strict";
|
|
115737
|
-
var { debug:
|
|
115737
|
+
var { debug: debug23 } = require_debug3();
|
|
115738
115738
|
var { kThenifyDoNotWrap } = require_symbols();
|
|
115739
115739
|
function thenify() {
|
|
115740
115740
|
if (this.booted) {
|
|
115741
|
-
|
|
115741
|
+
debug23("thenify returning undefined because we are already booted");
|
|
115742
115742
|
return;
|
|
115743
115743
|
}
|
|
115744
115744
|
if (this[kThenifyDoNotWrap]) {
|
|
115745
115745
|
this[kThenifyDoNotWrap] = false;
|
|
115746
115746
|
return;
|
|
115747
115747
|
}
|
|
115748
|
-
|
|
115748
|
+
debug23("thenify");
|
|
115749
115749
|
return (resolve, reject) => {
|
|
115750
115750
|
const p = this._loadRegistered();
|
|
115751
115751
|
return p.then(() => {
|
|
@@ -115800,7 +115800,7 @@ var require_boot = __commonJS({
|
|
|
115800
115800
|
} = require_symbols();
|
|
115801
115801
|
var { TimeTree } = require_time_tree();
|
|
115802
115802
|
var { Plugin } = require_plugin();
|
|
115803
|
-
var { debug:
|
|
115803
|
+
var { debug: debug23 } = require_debug3();
|
|
115804
115804
|
var { validatePlugin } = require_validate_plugin();
|
|
115805
115805
|
var { isBundledOrTypescriptPlugin } = require_is_bundled_or_typescript_plugin();
|
|
115806
115806
|
var { isPromiseLike } = require_is_promise_like();
|
|
@@ -115858,7 +115858,7 @@ var require_boot = __commonJS({
|
|
|
115858
115858
|
}, opts, false, 0);
|
|
115859
115859
|
this._trackPluginLoading(this._root);
|
|
115860
115860
|
this._loadPlugin(this._root, (err) => {
|
|
115861
|
-
|
|
115861
|
+
debug23("root plugin ready");
|
|
115862
115862
|
try {
|
|
115863
115863
|
this.emit("preReady");
|
|
115864
115864
|
this._root = null;
|
|
@@ -116089,7 +116089,7 @@ var require_boot = __commonJS({
|
|
|
116089
116089
|
const last = instance2._current[0];
|
|
116090
116090
|
instance2._current.unshift(plugin);
|
|
116091
116091
|
if (instance2._error && !plugin.isAfter) {
|
|
116092
|
-
|
|
116092
|
+
debug23("skipping loading of plugin as instance errored and it is not an after", plugin.name);
|
|
116093
116093
|
process.nextTick(execCallback);
|
|
116094
116094
|
return;
|
|
116095
116095
|
}
|
|
@@ -116098,7 +116098,7 @@ var require_boot = __commonJS({
|
|
|
116098
116098
|
try {
|
|
116099
116099
|
server = instance2.override(server, plugin.func, plugin.options);
|
|
116100
116100
|
} catch (overrideErr) {
|
|
116101
|
-
|
|
116101
|
+
debug23("override errored", plugin.name);
|
|
116102
116102
|
return execCallback(overrideErr);
|
|
116103
116103
|
}
|
|
116104
116104
|
}
|
|
@@ -116142,9 +116142,9 @@ var require_boot = __commonJS({
|
|
|
116142
116142
|
}
|
|
116143
116143
|
function timeoutCall(func, rootErr, context53, cb) {
|
|
116144
116144
|
const name = func.name;
|
|
116145
|
-
|
|
116145
|
+
debug23("setting up ready timeout", name, this._opts.timeout);
|
|
116146
116146
|
let timer = setTimeout(() => {
|
|
116147
|
-
|
|
116147
|
+
debug23("timed out", name);
|
|
116148
116148
|
timer = null;
|
|
116149
116149
|
const toutErr = new AVV_ERR_READY_TIMEOUT(name);
|
|
116150
116150
|
toutErr.fn = func;
|
|
@@ -116176,7 +116176,7 @@ var require_boot = __commonJS({
|
|
|
116176
116176
|
promise = func(this._error);
|
|
116177
116177
|
}
|
|
116178
116178
|
if (promise && typeof promise.then === "function") {
|
|
116179
|
-
|
|
116179
|
+
debug23("resolving close/onClose promise");
|
|
116180
116180
|
promise.then(
|
|
116181
116181
|
() => process.nextTick(cb),
|
|
116182
116182
|
(e) => process.nextTick(cb, e)
|
|
@@ -124626,9 +124626,9 @@ var require_constants7 = __commonJS({
|
|
|
124626
124626
|
// ../../node_modules/.pnpm/semver@7.6.3/node_modules/semver/internal/debug.js
|
|
124627
124627
|
var require_debug4 = __commonJS({
|
|
124628
124628
|
"../../node_modules/.pnpm/semver@7.6.3/node_modules/semver/internal/debug.js"(exports2, module2) {
|
|
124629
|
-
var
|
|
124629
|
+
var debug23 = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {
|
|
124630
124630
|
};
|
|
124631
|
-
module2.exports =
|
|
124631
|
+
module2.exports = debug23;
|
|
124632
124632
|
}
|
|
124633
124633
|
});
|
|
124634
124634
|
|
|
@@ -124640,7 +124640,7 @@ var require_re2 = __commonJS({
|
|
|
124640
124640
|
MAX_SAFE_BUILD_LENGTH,
|
|
124641
124641
|
MAX_LENGTH
|
|
124642
124642
|
} = require_constants7();
|
|
124643
|
-
var
|
|
124643
|
+
var debug23 = require_debug4();
|
|
124644
124644
|
exports2 = module2.exports = {};
|
|
124645
124645
|
var re2 = exports2.re = [];
|
|
124646
124646
|
var safeRe = exports2.safeRe = [];
|
|
@@ -124662,7 +124662,7 @@ var require_re2 = __commonJS({
|
|
|
124662
124662
|
var createToken = (name, value, isGlobal) => {
|
|
124663
124663
|
const safe = makeSafeRegex(value);
|
|
124664
124664
|
const index = R2++;
|
|
124665
|
-
|
|
124665
|
+
debug23(name, index, value);
|
|
124666
124666
|
t[name] = index;
|
|
124667
124667
|
src[index] = value;
|
|
124668
124668
|
re2[index] = new RegExp(value, isGlobal ? "g" : void 0);
|
|
@@ -124759,7 +124759,7 @@ var require_identifiers2 = __commonJS({
|
|
|
124759
124759
|
// ../../node_modules/.pnpm/semver@7.6.3/node_modules/semver/classes/semver.js
|
|
124760
124760
|
var require_semver4 = __commonJS({
|
|
124761
124761
|
"../../node_modules/.pnpm/semver@7.6.3/node_modules/semver/classes/semver.js"(exports2, module2) {
|
|
124762
|
-
var
|
|
124762
|
+
var debug23 = require_debug4();
|
|
124763
124763
|
var { MAX_LENGTH, MAX_SAFE_INTEGER: MAX_SAFE_INTEGER2 } = require_constants7();
|
|
124764
124764
|
var { safeRe: re2, t } = require_re2();
|
|
124765
124765
|
var parseOptions = require_parse_options2();
|
|
@@ -124781,7 +124781,7 @@ var require_semver4 = __commonJS({
|
|
|
124781
124781
|
`version is longer than ${MAX_LENGTH} characters`
|
|
124782
124782
|
);
|
|
124783
124783
|
}
|
|
124784
|
-
|
|
124784
|
+
debug23("SemVer", version2, options);
|
|
124785
124785
|
this.options = options;
|
|
124786
124786
|
this.loose = !!options.loose;
|
|
124787
124787
|
this.includePrerelease = !!options.includePrerelease;
|
|
@@ -124829,7 +124829,7 @@ var require_semver4 = __commonJS({
|
|
|
124829
124829
|
return this.version;
|
|
124830
124830
|
}
|
|
124831
124831
|
compare(other) {
|
|
124832
|
-
|
|
124832
|
+
debug23("SemVer.compare", this.version, this.options, other);
|
|
124833
124833
|
if (!(other instanceof _SemVer)) {
|
|
124834
124834
|
if (typeof other === "string" && other === this.version) {
|
|
124835
124835
|
return 0;
|
|
@@ -124862,7 +124862,7 @@ var require_semver4 = __commonJS({
|
|
|
124862
124862
|
do {
|
|
124863
124863
|
const a = this.prerelease[i];
|
|
124864
124864
|
const b2 = other.prerelease[i];
|
|
124865
|
-
|
|
124865
|
+
debug23("prerelease compare", i, a, b2);
|
|
124866
124866
|
if (a === void 0 && b2 === void 0) {
|
|
124867
124867
|
return 0;
|
|
124868
124868
|
} else if (b2 === void 0) {
|
|
@@ -124884,7 +124884,7 @@ var require_semver4 = __commonJS({
|
|
|
124884
124884
|
do {
|
|
124885
124885
|
const a = this.build[i];
|
|
124886
124886
|
const b2 = other.build[i];
|
|
124887
|
-
|
|
124887
|
+
debug23("build compare", i, a, b2);
|
|
124888
124888
|
if (a === void 0 && b2 === void 0) {
|
|
124889
124889
|
return 0;
|
|
124890
124890
|
} else if (b2 === void 0) {
|
|
@@ -125474,21 +125474,21 @@ var require_range3 = __commonJS({
|
|
|
125474
125474
|
const loose = this.options.loose;
|
|
125475
125475
|
const hr2 = loose ? re2[t.HYPHENRANGELOOSE] : re2[t.HYPHENRANGE];
|
|
125476
125476
|
range = range.replace(hr2, hyphenReplace(this.options.includePrerelease));
|
|
125477
|
-
|
|
125477
|
+
debug23("hyphen replace", range);
|
|
125478
125478
|
range = range.replace(re2[t.COMPARATORTRIM], comparatorTrimReplace);
|
|
125479
|
-
|
|
125479
|
+
debug23("comparator trim", range);
|
|
125480
125480
|
range = range.replace(re2[t.TILDETRIM], tildeTrimReplace);
|
|
125481
|
-
|
|
125481
|
+
debug23("tilde trim", range);
|
|
125482
125482
|
range = range.replace(re2[t.CARETTRIM], caretTrimReplace);
|
|
125483
|
-
|
|
125483
|
+
debug23("caret trim", range);
|
|
125484
125484
|
let rangeList = range.split(" ").map((comp) => parseComparator(comp, this.options)).join(" ").split(/\s+/).map((comp) => replaceGTE0(comp, this.options));
|
|
125485
125485
|
if (loose) {
|
|
125486
125486
|
rangeList = rangeList.filter((comp) => {
|
|
125487
|
-
|
|
125487
|
+
debug23("loose invalid filter", comp, this.options);
|
|
125488
125488
|
return !!comp.match(re2[t.COMPARATORLOOSE]);
|
|
125489
125489
|
});
|
|
125490
125490
|
}
|
|
125491
|
-
|
|
125491
|
+
debug23("range list", rangeList);
|
|
125492
125492
|
const rangeMap = /* @__PURE__ */ new Map();
|
|
125493
125493
|
const comparators = rangeList.map((comp) => new Comparator(comp, this.options));
|
|
125494
125494
|
for (const comp of comparators) {
|
|
@@ -125543,7 +125543,7 @@ var require_range3 = __commonJS({
|
|
|
125543
125543
|
var cache2 = new LRU();
|
|
125544
125544
|
var parseOptions = require_parse_options2();
|
|
125545
125545
|
var Comparator = require_comparator2();
|
|
125546
|
-
var
|
|
125546
|
+
var debug23 = require_debug4();
|
|
125547
125547
|
var SemVer = require_semver4();
|
|
125548
125548
|
var {
|
|
125549
125549
|
safeRe: re2,
|
|
@@ -125568,15 +125568,15 @@ var require_range3 = __commonJS({
|
|
|
125568
125568
|
return result;
|
|
125569
125569
|
};
|
|
125570
125570
|
var parseComparator = (comp, options) => {
|
|
125571
|
-
|
|
125571
|
+
debug23("comp", comp, options);
|
|
125572
125572
|
comp = replaceCarets(comp, options);
|
|
125573
|
-
|
|
125573
|
+
debug23("caret", comp);
|
|
125574
125574
|
comp = replaceTildes(comp, options);
|
|
125575
|
-
|
|
125575
|
+
debug23("tildes", comp);
|
|
125576
125576
|
comp = replaceXRanges(comp, options);
|
|
125577
|
-
|
|
125577
|
+
debug23("xrange", comp);
|
|
125578
125578
|
comp = replaceStars(comp, options);
|
|
125579
|
-
|
|
125579
|
+
debug23("stars", comp);
|
|
125580
125580
|
return comp;
|
|
125581
125581
|
};
|
|
125582
125582
|
var isX = (id2) => !id2 || id2.toLowerCase() === "x" || id2 === "*";
|
|
@@ -125586,7 +125586,7 @@ var require_range3 = __commonJS({
|
|
|
125586
125586
|
var replaceTilde = (comp, options) => {
|
|
125587
125587
|
const r = options.loose ? re2[t.TILDELOOSE] : re2[t.TILDE];
|
|
125588
125588
|
return comp.replace(r, (_, M2, m2, p, pr2) => {
|
|
125589
|
-
|
|
125589
|
+
debug23("tilde", comp, _, M2, m2, p, pr2);
|
|
125590
125590
|
let ret;
|
|
125591
125591
|
if (isX(M2)) {
|
|
125592
125592
|
ret = "";
|
|
@@ -125595,12 +125595,12 @@ var require_range3 = __commonJS({
|
|
|
125595
125595
|
} else if (isX(p)) {
|
|
125596
125596
|
ret = `>=${M2}.${m2}.0 <${M2}.${+m2 + 1}.0-0`;
|
|
125597
125597
|
} else if (pr2) {
|
|
125598
|
-
|
|
125598
|
+
debug23("replaceTilde pr", pr2);
|
|
125599
125599
|
ret = `>=${M2}.${m2}.${p}-${pr2} <${M2}.${+m2 + 1}.0-0`;
|
|
125600
125600
|
} else {
|
|
125601
125601
|
ret = `>=${M2}.${m2}.${p} <${M2}.${+m2 + 1}.0-0`;
|
|
125602
125602
|
}
|
|
125603
|
-
|
|
125603
|
+
debug23("tilde return", ret);
|
|
125604
125604
|
return ret;
|
|
125605
125605
|
});
|
|
125606
125606
|
};
|
|
@@ -125608,11 +125608,11 @@ var require_range3 = __commonJS({
|
|
|
125608
125608
|
return comp.trim().split(/\s+/).map((c2) => replaceCaret(c2, options)).join(" ");
|
|
125609
125609
|
};
|
|
125610
125610
|
var replaceCaret = (comp, options) => {
|
|
125611
|
-
|
|
125611
|
+
debug23("caret", comp, options);
|
|
125612
125612
|
const r = options.loose ? re2[t.CARETLOOSE] : re2[t.CARET];
|
|
125613
125613
|
const z2 = options.includePrerelease ? "-0" : "";
|
|
125614
125614
|
return comp.replace(r, (_, M2, m2, p, pr2) => {
|
|
125615
|
-
|
|
125615
|
+
debug23("caret", comp, _, M2, m2, p, pr2);
|
|
125616
125616
|
let ret;
|
|
125617
125617
|
if (isX(M2)) {
|
|
125618
125618
|
ret = "";
|
|
@@ -125625,7 +125625,7 @@ var require_range3 = __commonJS({
|
|
|
125625
125625
|
ret = `>=${M2}.${m2}.0${z2} <${+M2 + 1}.0.0-0`;
|
|
125626
125626
|
}
|
|
125627
125627
|
} else if (pr2) {
|
|
125628
|
-
|
|
125628
|
+
debug23("replaceCaret pr", pr2);
|
|
125629
125629
|
if (M2 === "0") {
|
|
125630
125630
|
if (m2 === "0") {
|
|
125631
125631
|
ret = `>=${M2}.${m2}.${p}-${pr2} <${M2}.${m2}.${+p + 1}-0`;
|
|
@@ -125636,7 +125636,7 @@ var require_range3 = __commonJS({
|
|
|
125636
125636
|
ret = `>=${M2}.${m2}.${p}-${pr2} <${+M2 + 1}.0.0-0`;
|
|
125637
125637
|
}
|
|
125638
125638
|
} else {
|
|
125639
|
-
|
|
125639
|
+
debug23("no pr");
|
|
125640
125640
|
if (M2 === "0") {
|
|
125641
125641
|
if (m2 === "0") {
|
|
125642
125642
|
ret = `>=${M2}.${m2}.${p}${z2} <${M2}.${m2}.${+p + 1}-0`;
|
|
@@ -125647,19 +125647,19 @@ var require_range3 = __commonJS({
|
|
|
125647
125647
|
ret = `>=${M2}.${m2}.${p} <${+M2 + 1}.0.0-0`;
|
|
125648
125648
|
}
|
|
125649
125649
|
}
|
|
125650
|
-
|
|
125650
|
+
debug23("caret return", ret);
|
|
125651
125651
|
return ret;
|
|
125652
125652
|
});
|
|
125653
125653
|
};
|
|
125654
125654
|
var replaceXRanges = (comp, options) => {
|
|
125655
|
-
|
|
125655
|
+
debug23("replaceXRanges", comp, options);
|
|
125656
125656
|
return comp.split(/\s+/).map((c2) => replaceXRange(c2, options)).join(" ");
|
|
125657
125657
|
};
|
|
125658
125658
|
var replaceXRange = (comp, options) => {
|
|
125659
125659
|
comp = comp.trim();
|
|
125660
125660
|
const r = options.loose ? re2[t.XRANGELOOSE] : re2[t.XRANGE];
|
|
125661
125661
|
return comp.replace(r, (ret, gtlt, M2, m2, p, pr2) => {
|
|
125662
|
-
|
|
125662
|
+
debug23("xRange", comp, ret, gtlt, M2, m2, p, pr2);
|
|
125663
125663
|
const xM = isX(M2);
|
|
125664
125664
|
const xm2 = xM || isX(m2);
|
|
125665
125665
|
const xp2 = xm2 || isX(p);
|
|
@@ -125706,16 +125706,16 @@ var require_range3 = __commonJS({
|
|
|
125706
125706
|
} else if (xp2) {
|
|
125707
125707
|
ret = `>=${M2}.${m2}.0${pr2} <${M2}.${+m2 + 1}.0-0`;
|
|
125708
125708
|
}
|
|
125709
|
-
|
|
125709
|
+
debug23("xRange return", ret);
|
|
125710
125710
|
return ret;
|
|
125711
125711
|
});
|
|
125712
125712
|
};
|
|
125713
125713
|
var replaceStars = (comp, options) => {
|
|
125714
|
-
|
|
125714
|
+
debug23("replaceStars", comp, options);
|
|
125715
125715
|
return comp.trim().replace(re2[t.STAR], "");
|
|
125716
125716
|
};
|
|
125717
125717
|
var replaceGTE0 = (comp, options) => {
|
|
125718
|
-
|
|
125718
|
+
debug23("replaceGTE0", comp, options);
|
|
125719
125719
|
return comp.trim().replace(re2[options.includePrerelease ? t.GTE0PRE : t.GTE0], "");
|
|
125720
125720
|
};
|
|
125721
125721
|
var hyphenReplace = (incPr) => ($0, from, fM, fm2, fp2, fpr, fb, to2, tM, tm2, tp2, tpr) => {
|
|
@@ -125753,7 +125753,7 @@ var require_range3 = __commonJS({
|
|
|
125753
125753
|
}
|
|
125754
125754
|
if (version2.prerelease.length && !options.includePrerelease) {
|
|
125755
125755
|
for (let i = 0; i < set2.length; i++) {
|
|
125756
|
-
|
|
125756
|
+
debug23(set2[i].semver);
|
|
125757
125757
|
if (set2[i].semver === Comparator.ANY) {
|
|
125758
125758
|
continue;
|
|
125759
125759
|
}
|
|
@@ -125789,7 +125789,7 @@ var require_comparator2 = __commonJS({
|
|
|
125789
125789
|
}
|
|
125790
125790
|
}
|
|
125791
125791
|
comp = comp.trim().split(/\s+/).join(" ");
|
|
125792
|
-
|
|
125792
|
+
debug23("comparator", comp, options);
|
|
125793
125793
|
this.options = options;
|
|
125794
125794
|
this.loose = !!options.loose;
|
|
125795
125795
|
this.parse(comp);
|
|
@@ -125798,7 +125798,7 @@ var require_comparator2 = __commonJS({
|
|
|
125798
125798
|
} else {
|
|
125799
125799
|
this.value = this.operator + this.semver.version;
|
|
125800
125800
|
}
|
|
125801
|
-
|
|
125801
|
+
debug23("comp", this);
|
|
125802
125802
|
}
|
|
125803
125803
|
parse(comp) {
|
|
125804
125804
|
const r = this.options.loose ? re2[t.COMPARATORLOOSE] : re2[t.COMPARATOR];
|
|
@@ -125820,7 +125820,7 @@ var require_comparator2 = __commonJS({
|
|
|
125820
125820
|
return this.value;
|
|
125821
125821
|
}
|
|
125822
125822
|
test(version2) {
|
|
125823
|
-
|
|
125823
|
+
debug23("Comparator.test", version2, this.options.loose);
|
|
125824
125824
|
if (this.semver === ANY || version2 === ANY) {
|
|
125825
125825
|
return true;
|
|
125826
125826
|
}
|
|
@@ -125877,7 +125877,7 @@ var require_comparator2 = __commonJS({
|
|
|
125877
125877
|
var parseOptions = require_parse_options2();
|
|
125878
125878
|
var { safeRe: re2, t } = require_re2();
|
|
125879
125879
|
var cmp = require_cmp2();
|
|
125880
|
-
var
|
|
125880
|
+
var debug23 = require_debug4();
|
|
125881
125881
|
var SemVer = require_semver4();
|
|
125882
125882
|
var Range = require_range3();
|
|
125883
125883
|
}
|
|
@@ -147438,7 +147438,7 @@ var opentelemetry = __toESM(require_src30());
|
|
|
147438
147438
|
var import_register = __toESM(require_register());
|
|
147439
147439
|
|
|
147440
147440
|
// ../../package.json
|
|
147441
|
-
var version = "0.0.1-
|
|
147441
|
+
var version = "0.0.1-23";
|
|
147442
147442
|
|
|
147443
147443
|
// ../utils/syncSleep/index.ts
|
|
147444
147444
|
function synchronousBlock(seconds) {
|
|
@@ -147508,6 +147508,13 @@ var DEFAULT_SERVER_HOST_LISTEN_ON_ALL_INTERFACES = "::";
|
|
|
147508
147508
|
var DEFAULT_TRANSACTION_TIMEOUT_MS = 30 * 1e3;
|
|
147509
147509
|
var NODE_SQL_PARSER_TIMEOUT = 5e3;
|
|
147510
147510
|
var HT_SDK_PLATFORM_HEADER = "ht-sdk-platform-header";
|
|
147511
|
+
var GIT_DIFF_IGNORED_FILES = [
|
|
147512
|
+
"package.json",
|
|
147513
|
+
"package-lock.json",
|
|
147514
|
+
"yarn.lock",
|
|
147515
|
+
"pnpm-lock.yaml",
|
|
147516
|
+
"bun.lockb"
|
|
147517
|
+
];
|
|
147511
147518
|
var CURRENT_REPLAY_RESULT_MOCK_SCHEMA_MAP_VERSION = "v2";
|
|
147512
147519
|
|
|
147513
147520
|
// ../utils/types/index.ts
|
|
@@ -161597,6 +161604,65 @@ var manualRequest = {
|
|
|
161597
161604
|
create
|
|
161598
161605
|
};
|
|
161599
161606
|
|
|
161607
|
+
// src/helpers/getUncommittedChanges.ts
|
|
161608
|
+
var import_child_process6 = require("child_process");
|
|
161609
|
+
var debug8 = debug_default("ht-node-sdk::getUncommittedChanges");
|
|
161610
|
+
function getUncommittedChanges() {
|
|
161611
|
+
var _a4, _b2;
|
|
161612
|
+
const projectRoot2 = getProjectRoot();
|
|
161613
|
+
const pathspecs = ["."];
|
|
161614
|
+
pathspecs.push('":(exclude,glob).*/"');
|
|
161615
|
+
pathspecs.push('":(exclude,glob).*"');
|
|
161616
|
+
for (const f of GIT_DIFF_IGNORED_FILES) {
|
|
161617
|
+
pathspecs.push(`":(exclude,glob)**/${f}"`);
|
|
161618
|
+
}
|
|
161619
|
+
const command = `git diff HEAD -- ${pathspecs.join(" ")}`;
|
|
161620
|
+
debug8(`Executing: ${command}`);
|
|
161621
|
+
try {
|
|
161622
|
+
const output = (0, import_child_process6.execSync)(command, { cwd: projectRoot2 }).toString().trim();
|
|
161623
|
+
return output;
|
|
161624
|
+
} catch (err) {
|
|
161625
|
+
debug8(`Error executing git diff: ${err.message}`);
|
|
161626
|
+
return ((_b2 = (_a4 = err == null ? void 0 : err.stdout) == null ? void 0 : _a4.toString()) == null ? void 0 : _b2.trim()) || "";
|
|
161627
|
+
}
|
|
161628
|
+
}
|
|
161629
|
+
|
|
161630
|
+
// src/helpers/isCurrentFolderAGitRepo.ts
|
|
161631
|
+
var import_child_process7 = require("child_process");
|
|
161632
|
+
function isCurrentFolderInGitRepoFn() {
|
|
161633
|
+
try {
|
|
161634
|
+
(0, import_child_process7.execSync)("git rev-parse HEAD");
|
|
161635
|
+
} catch (_err) {
|
|
161636
|
+
return false;
|
|
161637
|
+
}
|
|
161638
|
+
return true;
|
|
161639
|
+
}
|
|
161640
|
+
|
|
161641
|
+
// src/helpers/isHavingUncommittedChanges.ts
|
|
161642
|
+
var import_child_process8 = require("child_process");
|
|
161643
|
+
function isHavingUncommittedChangesFn() {
|
|
161644
|
+
const projectRoot2 = getProjectRoot();
|
|
161645
|
+
const pathspecs = ["."];
|
|
161646
|
+
pathspecs.push('":(exclude,glob).*/"');
|
|
161647
|
+
pathspecs.push('":(exclude,glob).*"');
|
|
161648
|
+
for (const file of GIT_DIFF_IGNORED_FILES) {
|
|
161649
|
+
pathspecs.push(`":(exclude,glob)**/${file}"`);
|
|
161650
|
+
}
|
|
161651
|
+
const pathspecArgs = pathspecs.join(" ");
|
|
161652
|
+
try {
|
|
161653
|
+
(0, import_child_process8.execSync)(
|
|
161654
|
+
`git diff HEAD --ignore-submodules --quiet --exit-code -- ${pathspecArgs}`,
|
|
161655
|
+
{
|
|
161656
|
+
cwd: projectRoot2,
|
|
161657
|
+
stdio: "ignore"
|
|
161658
|
+
}
|
|
161659
|
+
);
|
|
161660
|
+
return false;
|
|
161661
|
+
} catch {
|
|
161662
|
+
return true;
|
|
161663
|
+
}
|
|
161664
|
+
}
|
|
161665
|
+
|
|
161600
161666
|
// src/instrumentation/core/types/ExperimentalFlagEnums.ts
|
|
161601
161667
|
var ExperimentalFlags = /* @__PURE__ */ ((ExperimentalFlags2) => {
|
|
161602
161668
|
ExperimentalFlags2["EnableSqlite3Instrumentation"] = "enableSqlite3Instrumentation";
|
|
@@ -161737,7 +161803,7 @@ var isContinuousCoverageActive = async (backendBaseUrl, serviceIdentifier) => {
|
|
|
161737
161803
|
};
|
|
161738
161804
|
|
|
161739
161805
|
// src/instrumentation/helpers/measureContinuousCoverage.ts
|
|
161740
|
-
var
|
|
161806
|
+
var debug9 = debug_default("ht::node-sdk::measureContinuosCoverage");
|
|
161741
161807
|
async function calculateContinuousCoverage({
|
|
161742
161808
|
serviceIdentifier,
|
|
161743
161809
|
buildId,
|
|
@@ -161746,7 +161812,7 @@ async function calculateContinuousCoverage({
|
|
|
161746
161812
|
if (!("__coverage__" in global)) {
|
|
161747
161813
|
return;
|
|
161748
161814
|
}
|
|
161749
|
-
|
|
161815
|
+
debug9("Calculating continuous coverage...");
|
|
161750
161816
|
const globalCoverage = global.__coverage__;
|
|
161751
161817
|
const latestCoverage = {};
|
|
161752
161818
|
const filePaths = Object.keys(globalCoverage);
|
|
@@ -161775,7 +161841,7 @@ async function calculateContinuousCoverage({
|
|
|
161775
161841
|
commitHash: getGitCommitHash(),
|
|
161776
161842
|
coverage: latestCoverage
|
|
161777
161843
|
});
|
|
161778
|
-
|
|
161844
|
+
debug9("Calculated continuous coverage.");
|
|
161779
161845
|
} catch (e) {
|
|
161780
161846
|
console.error("Error in updating coverage.", e);
|
|
161781
161847
|
}
|
|
@@ -161807,7 +161873,7 @@ var measureContinuousCoverage = ({
|
|
|
161807
161873
|
return;
|
|
161808
161874
|
}
|
|
161809
161875
|
if (!("__coverage__" in global)) {
|
|
161810
|
-
|
|
161876
|
+
debug9("__coverage__ not found in global");
|
|
161811
161877
|
console.error(
|
|
161812
161878
|
"App not started with nyc. Not measuring continuous coverage."
|
|
161813
161879
|
);
|
|
@@ -161824,10 +161890,10 @@ var measureContinuousCoverage = ({
|
|
|
161824
161890
|
serviceId
|
|
161825
161891
|
);
|
|
161826
161892
|
if (!isActive) {
|
|
161827
|
-
|
|
161893
|
+
debug9(`Continuous coverage is not active for service '${serviceId}'.`);
|
|
161828
161894
|
return;
|
|
161829
161895
|
}
|
|
161830
|
-
|
|
161896
|
+
debug9(`Continuous coverage is active for service '${serviceId}'.`);
|
|
161831
161897
|
await calculateContinuousCoverage({
|
|
161832
161898
|
serviceIdentifier: serviceId,
|
|
161833
161899
|
instanceJobId,
|
|
@@ -162388,7 +162454,7 @@ var import_semver = __toESM(require_semver3());
|
|
|
162388
162454
|
// src/instrumentation/core/helpers/shimmer.ts
|
|
162389
162455
|
var import_api27 = __toESM(require_src());
|
|
162390
162456
|
var logger = console.error.bind(console);
|
|
162391
|
-
var
|
|
162457
|
+
var debug10 = debug_default("debug-ht-node-sdk:shimmer");
|
|
162392
162458
|
function defineProperty(obj, name, value) {
|
|
162393
162459
|
Object.defineProperty(obj, name, {
|
|
162394
162460
|
configurable: true,
|
|
@@ -162407,7 +162473,7 @@ function wrap(nodule, name, wrapper) {
|
|
|
162407
162473
|
logger(`no original function ${name.description} to wrap`);
|
|
162408
162474
|
return;
|
|
162409
162475
|
}
|
|
162410
|
-
|
|
162476
|
+
debug10(`no original function ${name} to wrap`);
|
|
162411
162477
|
return;
|
|
162412
162478
|
}
|
|
162413
162479
|
if (!wrapper) {
|
|
@@ -162424,7 +162490,7 @@ function wrap(nodule, name, wrapper) {
|
|
|
162424
162490
|
const wrapped = function(...args) {
|
|
162425
162491
|
const isDate2 = nodule === global && name === "Date";
|
|
162426
162492
|
if (!isDate2) {
|
|
162427
|
-
|
|
162493
|
+
debug10(
|
|
162428
162494
|
`Inside meta wrapper for ${typeof name === "string" ? name : name.description} method, ${internalWrapper.name} patch function`
|
|
162429
162495
|
);
|
|
162430
162496
|
}
|
|
@@ -187065,7 +187131,7 @@ var import_mysql = __toESM(require_mysql());
|
|
|
187065
187131
|
var import_vm = require("vm");
|
|
187066
187132
|
var import_rfdc8 = __toESM(require_rfdc());
|
|
187067
187133
|
var clone2 = (0, import_rfdc8.default)();
|
|
187068
|
-
var
|
|
187134
|
+
var debug11 = debug_default("ht-sql-parser");
|
|
187069
187135
|
function removeValueField(obj) {
|
|
187070
187136
|
if (typeof obj !== "object" || obj === null) {
|
|
187071
187137
|
return;
|
|
@@ -187121,8 +187187,8 @@ var SqlParser = class {
|
|
|
187121
187187
|
dialect: this.dialect
|
|
187122
187188
|
}
|
|
187123
187189
|
};
|
|
187124
|
-
|
|
187125
|
-
|
|
187190
|
+
debug11(`Error parsing sql query - ${sql}, parser - ${this.dialect}`);
|
|
187191
|
+
debug11(e);
|
|
187126
187192
|
if (e.message.includes("Script execution timed out")) {
|
|
187127
187193
|
sqlErrorPayload.event = "sql_parser_timeout";
|
|
187128
187194
|
console.error(
|
|
@@ -187163,7 +187229,7 @@ var SqlParser = class {
|
|
|
187163
187229
|
const startTime = Date.now();
|
|
187164
187230
|
const sql = this.parser.sqlify(ast);
|
|
187165
187231
|
const interval = Date.now() - startTime;
|
|
187166
|
-
|
|
187232
|
+
debug11(
|
|
187167
187233
|
`Time taken to sqlify ast - ${interval / 1e3} seconds, by parser - ${this.dialect}`
|
|
187168
187234
|
);
|
|
187169
187235
|
return sql;
|
|
@@ -202991,7 +203057,7 @@ var GraphqlServerRequestMock = class extends HtServerMockAbstract {
|
|
|
202991
203057
|
|
|
202992
203058
|
// src/instrumentation/libraries/graphql/utils.ts
|
|
202993
203059
|
var import_api50 = __toESM(require_src());
|
|
202994
|
-
var
|
|
203060
|
+
var debug12 = debug_default("ht-instrumentation-graphql::utils");
|
|
202995
203061
|
var getTypeString = (typeNode) => {
|
|
202996
203062
|
if (typeNode.kind === "NonNullType") {
|
|
202997
203063
|
return `${getTypeString(typeNode.type)}!`;
|
|
@@ -203091,7 +203157,7 @@ var getVariablesUsed = (currentSelection) => {
|
|
|
203091
203157
|
}
|
|
203092
203158
|
}
|
|
203093
203159
|
} else {
|
|
203094
|
-
|
|
203160
|
+
debug12(`unhandled arg ${arg.kind} - ${arg.value.kind}`);
|
|
203095
203161
|
sendPostHogEvent(
|
|
203096
203162
|
"graphql_unhandled_arg_parsing_error",
|
|
203097
203163
|
arg,
|
|
@@ -203481,7 +203547,7 @@ var addSamplingModeHeader = (requestHeaders) => {
|
|
|
203481
203547
|
};
|
|
203482
203548
|
|
|
203483
203549
|
// src/instrumentation/libraries/graphql/instrumentation.ts
|
|
203484
|
-
var
|
|
203550
|
+
var debug13 = debug_default("ht-instrumentation-graphql" /* HtGraphqlInstrumentation */);
|
|
203485
203551
|
var HtGraphqlInstrumentation = class extends HtInstrumentationBase {
|
|
203486
203552
|
_Original_ApolloServer;
|
|
203487
203553
|
_HT_Patched_ApolloServer;
|
|
@@ -203879,7 +203945,7 @@ var HtGraphqlInstrumentation = class extends HtInstrumentationBase {
|
|
|
203879
203945
|
}
|
|
203880
203946
|
if (plugin.IS_REPLAY_MODE) {
|
|
203881
203947
|
const graphqlReqId = import_api51.context.active().getValue(HT_REQUEST_ID);
|
|
203882
|
-
|
|
203948
|
+
debug13(`received graphql req with htRequestId - ${graphqlReqId}`);
|
|
203883
203949
|
const storeInstance5 = MemoryStore.getInstance();
|
|
203884
203950
|
const selectionSet = storeInstance5.getSelectionSet(graphqlReqId);
|
|
203885
203951
|
const shouldInstrumentDate = shouldInstrumentDateInGraphqlRequest({
|
|
@@ -204266,7 +204332,7 @@ var HtGraphqlInstrumentation = class extends HtInstrumentationBase {
|
|
|
204266
204332
|
}
|
|
204267
204333
|
if (plugin.IS_REPLAY_MODE) {
|
|
204268
204334
|
const graphqlReqId = import_api51.context.active().getValue(HT_REQUEST_ID);
|
|
204269
|
-
|
|
204335
|
+
debug13(`received graphql req with htRequestId - ${graphqlReqId}`);
|
|
204270
204336
|
const storeInstance5 = MemoryStore.getInstance();
|
|
204271
204337
|
const selectionSet = storeInstance5.getSelectionSet(graphqlReqId);
|
|
204272
204338
|
const shouldInstrumentDate = shouldInstrumentDateInGraphqlRequest({
|
|
@@ -205970,7 +206036,7 @@ var generateClusterPath_default = generateClusterPath;
|
|
|
205970
206036
|
|
|
205971
206037
|
// src/instrumentation/libraries/http/helpers/decodeBody.ts
|
|
205972
206038
|
var zlib3 = __toESM(require("zlib"));
|
|
205973
|
-
var
|
|
206039
|
+
var debug14 = debug_default(
|
|
205974
206040
|
`${"ht-instrumentation-http" /* HtHttpInstrumentation */}-bodyDecoder`
|
|
205975
206041
|
);
|
|
205976
206042
|
var encodingFunctionMap = {
|
|
@@ -205990,7 +206056,7 @@ var decodeBody = async (buffer, encoding) => {
|
|
|
205990
206056
|
});
|
|
205991
206057
|
});
|
|
205992
206058
|
}
|
|
205993
|
-
|
|
206059
|
+
debug14(`Unknown encoding: ${encoding} - skipping decoding.`);
|
|
205994
206060
|
return Promise.resolve(buffer);
|
|
205995
206061
|
};
|
|
205996
206062
|
|
|
@@ -205999,7 +206065,7 @@ var import_stream9 = require("stream");
|
|
|
205999
206065
|
var import_busboy = __toESM(require_lib5());
|
|
206000
206066
|
var import_qs4 = __toESM(require_lib4());
|
|
206001
206067
|
var MULTIPART_FORM_DATA_HEADER = "multipart/form-data";
|
|
206002
|
-
var
|
|
206068
|
+
var debug15 = debug_default("ht-instrumentation-http" /* HtHttpInstrumentation */);
|
|
206003
206069
|
function busboyMultipartParserAsync(buffer, contentType) {
|
|
206004
206070
|
return new Promise((resolve, reject) => {
|
|
206005
206071
|
const boundary = contentType.split("boundary=")[1];
|
|
@@ -206116,7 +206182,7 @@ var htHttpBodyParserMultipart = async (bodyBuffer, contentType) => {
|
|
|
206116
206182
|
jsonBody = { fields, filesMetaData };
|
|
206117
206183
|
multipartFiles = filesBodyArr;
|
|
206118
206184
|
} catch (_err) {
|
|
206119
|
-
|
|
206185
|
+
debug15("Error occurred while parsing body");
|
|
206120
206186
|
bodyType = HtHttpBodyType.RAW;
|
|
206121
206187
|
bodyParsingError = true;
|
|
206122
206188
|
const { bufferStr, encoding } = bufferToString(bodyBuffer);
|
|
@@ -206158,14 +206224,14 @@ var htHttpBodyParserSync = (bodyBuffer, contentType) => {
|
|
|
206158
206224
|
rawBody = bufferStr;
|
|
206159
206225
|
rawBodyEncoding = encoding;
|
|
206160
206226
|
} else if (bodyBuffer.length > 0) {
|
|
206161
|
-
|
|
206227
|
+
debug15("contentType not found in htHttpBodyParser");
|
|
206162
206228
|
bodyType = HtHttpBodyType.UNSPECIFIED;
|
|
206163
206229
|
const { bufferStr, encoding } = bufferToString(bodyBuffer);
|
|
206164
206230
|
rawBody = bufferStr;
|
|
206165
206231
|
rawBodyEncoding = encoding;
|
|
206166
206232
|
}
|
|
206167
206233
|
} catch (_err) {
|
|
206168
|
-
|
|
206234
|
+
debug15("Error occurred while parsing body");
|
|
206169
206235
|
bodyType = HtHttpBodyType.RAW;
|
|
206170
206236
|
bodyParsingError = true;
|
|
206171
206237
|
const { bufferStr, encoding } = bufferToString(bodyBuffer);
|
|
@@ -206190,7 +206256,7 @@ var htHttpBodyParser = async (bodyBuffer, contentType) => {
|
|
|
206190
206256
|
};
|
|
206191
206257
|
|
|
206192
206258
|
// src/instrumentation/libraries/http/httpHooks.ts
|
|
206193
|
-
var
|
|
206259
|
+
var debug16 = debug_default("ht-instrumentation-http" /* HtHttpInstrumentation */);
|
|
206194
206260
|
var CONTENT_ENCODING_LOWER_CASE = "content-encoding";
|
|
206195
206261
|
var httpReqObjWeakMap = /* @__PURE__ */ new WeakMap();
|
|
206196
206262
|
var parseHeaders = (headers) => {
|
|
@@ -206294,12 +206360,12 @@ var parseAndStoreFetchHttpRequest = async ({
|
|
|
206294
206360
|
const { httpMeta, ...readableInput } = fetchReqInputObj;
|
|
206295
206361
|
mock.setReadableInput(readableInput, httpMeta || {});
|
|
206296
206362
|
} catch (e) {
|
|
206297
|
-
|
|
206298
|
-
|
|
206363
|
+
debug16(e);
|
|
206364
|
+
debug16("Error occurred while setting client request body.");
|
|
206299
206365
|
}
|
|
206300
206366
|
}).catch(async (err) => {
|
|
206301
|
-
|
|
206302
|
-
|
|
206367
|
+
debug16(err);
|
|
206368
|
+
debug16(
|
|
206303
206369
|
`Error occurred while decoding "${encoding}" client request payload.`
|
|
206304
206370
|
);
|
|
206305
206371
|
try {
|
|
@@ -206310,8 +206376,8 @@ var parseAndStoreFetchHttpRequest = async ({
|
|
|
206310
206376
|
const { httpMeta, ...readableInput } = fetchReqInputObj;
|
|
206311
206377
|
mock.setReadableInput(readableInput, httpMeta || {});
|
|
206312
206378
|
} catch (e) {
|
|
206313
|
-
|
|
206314
|
-
|
|
206379
|
+
debug16(e);
|
|
206380
|
+
debug16("Error occurred while setting client request body.");
|
|
206315
206381
|
}
|
|
206316
206382
|
});
|
|
206317
206383
|
} else {
|
|
@@ -206323,8 +206389,8 @@ var parseAndStoreFetchHttpRequest = async ({
|
|
|
206323
206389
|
const { httpMeta, ...readableInput } = fetchReqInputObj;
|
|
206324
206390
|
mock.setReadableInput(readableInput, httpMeta || {});
|
|
206325
206391
|
} catch (e) {
|
|
206326
|
-
|
|
206327
|
-
|
|
206392
|
+
debug16(e);
|
|
206393
|
+
debug16("Error occurred while setting client request body.");
|
|
206328
206394
|
}
|
|
206329
206395
|
}
|
|
206330
206396
|
} else {
|
|
@@ -206522,8 +206588,8 @@ var httpServerRequestHookRecordMode = (req, mock) => {
|
|
|
206522
206588
|
try {
|
|
206523
206589
|
decodedBody = await decodeBody(bodyBuffer, encoding);
|
|
206524
206590
|
} catch (err) {
|
|
206525
|
-
|
|
206526
|
-
|
|
206591
|
+
debug16(err);
|
|
206592
|
+
debug16(
|
|
206527
206593
|
`Error occurred while decoding "${encoding}" incoming request payload`
|
|
206528
206594
|
);
|
|
206529
206595
|
}
|
|
@@ -206536,8 +206602,8 @@ var httpServerRequestHookRecordMode = (req, mock) => {
|
|
|
206536
206602
|
bodyBuffer: decodedBody
|
|
206537
206603
|
});
|
|
206538
206604
|
} catch (e) {
|
|
206539
|
-
|
|
206540
|
-
|
|
206605
|
+
debug16(e);
|
|
206606
|
+
debug16("Error occurred while setting server request body.");
|
|
206541
206607
|
}
|
|
206542
206608
|
});
|
|
206543
206609
|
});
|
|
@@ -206591,12 +206657,12 @@ var httpServerResponseHookRecordMode = (res, mock) => {
|
|
|
206591
206657
|
mock,
|
|
206592
206658
|
bodyBuffer: decodedBuffer
|
|
206593
206659
|
}).catch((e) => {
|
|
206594
|
-
|
|
206595
|
-
|
|
206660
|
+
debug16(e);
|
|
206661
|
+
debug16("Error occurred while setting server response. #HH-01");
|
|
206596
206662
|
});
|
|
206597
206663
|
}).catch((err) => {
|
|
206598
|
-
|
|
206599
|
-
|
|
206664
|
+
debug16(err);
|
|
206665
|
+
debug16(
|
|
206600
206666
|
`Error occurred while decoding "${encoding}" server response. #HH-02`
|
|
206601
206667
|
);
|
|
206602
206668
|
parseAndSetServerResponseRecordMode({
|
|
@@ -206605,8 +206671,8 @@ var httpServerResponseHookRecordMode = (res, mock) => {
|
|
|
206605
206671
|
mock,
|
|
206606
206672
|
bodyBuffer: buffer
|
|
206607
206673
|
}).catch((e) => {
|
|
206608
|
-
|
|
206609
|
-
|
|
206674
|
+
debug16(e);
|
|
206675
|
+
debug16("Error occurred while setting server response. #HH-03");
|
|
206610
206676
|
});
|
|
206611
206677
|
});
|
|
206612
206678
|
} else {
|
|
@@ -206616,8 +206682,8 @@ var httpServerResponseHookRecordMode = (res, mock) => {
|
|
|
206616
206682
|
mock,
|
|
206617
206683
|
bodyBuffer: buffer
|
|
206618
206684
|
}).catch((e) => {
|
|
206619
|
-
|
|
206620
|
-
|
|
206685
|
+
debug16(e);
|
|
206686
|
+
debug16("Error occurred while setting server response. #HH-04");
|
|
206621
206687
|
});
|
|
206622
206688
|
}
|
|
206623
206689
|
const cTraceId = getCurrTraceId();
|
|
@@ -206694,7 +206760,7 @@ var httpClientRequestHookRecordMode = (req, _mock) => {
|
|
|
206694
206760
|
);
|
|
206695
206761
|
}
|
|
206696
206762
|
}
|
|
206697
|
-
|
|
206763
|
+
debug16(`Outbound request hook trace id: ${currTraceId}`);
|
|
206698
206764
|
const oldEnd = req.end;
|
|
206699
206765
|
const outgoingChunks = [];
|
|
206700
206766
|
req.write = function write(...args) {
|
|
@@ -206716,12 +206782,12 @@ var httpClientRequestHookRecordMode = (req, _mock) => {
|
|
|
206716
206782
|
htHttReqWithoutBody,
|
|
206717
206783
|
bodyBuffer: decodedBuffer
|
|
206718
206784
|
}).catch((e) => {
|
|
206719
|
-
|
|
206720
|
-
|
|
206785
|
+
debug16(e);
|
|
206786
|
+
debug16("Error occurred while setting client request body.");
|
|
206721
206787
|
});
|
|
206722
206788
|
}).catch((err) => {
|
|
206723
|
-
|
|
206724
|
-
|
|
206789
|
+
debug16(err);
|
|
206790
|
+
debug16(
|
|
206725
206791
|
`Error occurred while decoding "${encoding}" client request payload.`
|
|
206726
206792
|
);
|
|
206727
206793
|
parseAndSetClientRequestRecordMode({
|
|
@@ -206729,8 +206795,8 @@ var httpClientRequestHookRecordMode = (req, _mock) => {
|
|
|
206729
206795
|
htHttReqWithoutBody,
|
|
206730
206796
|
bodyBuffer
|
|
206731
206797
|
}).catch((e) => {
|
|
206732
|
-
|
|
206733
|
-
|
|
206798
|
+
debug16(e);
|
|
206799
|
+
debug16("Error occurred while setting client request body.");
|
|
206734
206800
|
});
|
|
206735
206801
|
});
|
|
206736
206802
|
} else {
|
|
@@ -206739,8 +206805,8 @@ var httpClientRequestHookRecordMode = (req, _mock) => {
|
|
|
206739
206805
|
htHttReqWithoutBody,
|
|
206740
206806
|
bodyBuffer
|
|
206741
206807
|
}).catch((e) => {
|
|
206742
|
-
|
|
206743
|
-
|
|
206808
|
+
debug16(e);
|
|
206809
|
+
debug16("Error occurred while setting client request body.");
|
|
206744
206810
|
});
|
|
206745
206811
|
}
|
|
206746
206812
|
return oldEnd.apply(req, args);
|
|
@@ -206813,8 +206879,8 @@ var httpClientResponseHookRecordMode = (req, res, mock) => {
|
|
|
206813
206879
|
try {
|
|
206814
206880
|
decodedBody = await decodeBody(buffer, encoding);
|
|
206815
206881
|
} catch (err) {
|
|
206816
|
-
|
|
206817
|
-
|
|
206882
|
+
debug16(err);
|
|
206883
|
+
debug16(
|
|
206818
206884
|
`Error occurred while decoding "${encoding}" client request's response body.`
|
|
206819
206885
|
);
|
|
206820
206886
|
}
|
|
@@ -206827,8 +206893,8 @@ var httpClientResponseHookRecordMode = (req, res, mock) => {
|
|
|
206827
206893
|
bodyBuffer: decodedBody
|
|
206828
206894
|
});
|
|
206829
206895
|
} catch (e) {
|
|
206830
|
-
|
|
206831
|
-
|
|
206896
|
+
debug16(e);
|
|
206897
|
+
debug16("Error occurred while setting server request body.");
|
|
206832
206898
|
}
|
|
206833
206899
|
});
|
|
206834
206900
|
};
|
|
@@ -206934,12 +207000,12 @@ var httpServerResponseHookReplayMode = (res, req, mock) => {
|
|
|
206934
207000
|
bodyBuffer: decodedBuffer
|
|
206935
207001
|
});
|
|
206936
207002
|
} catch (e) {
|
|
206937
|
-
|
|
206938
|
-
|
|
207003
|
+
debug16(e);
|
|
207004
|
+
debug16("Error occurred while setting server response for replay");
|
|
206939
207005
|
}
|
|
206940
207006
|
}).catch((err) => {
|
|
206941
|
-
|
|
206942
|
-
|
|
207007
|
+
debug16(err);
|
|
207008
|
+
debug16("Error occurred while decoding server response for replay");
|
|
206943
207009
|
try {
|
|
206944
207010
|
parseAndSetServerResponseReplayMode({
|
|
206945
207011
|
res,
|
|
@@ -206950,8 +207016,8 @@ var httpServerResponseHookReplayMode = (res, req, mock) => {
|
|
|
206950
207016
|
bodyBuffer: buffer
|
|
206951
207017
|
});
|
|
206952
207018
|
} catch (e) {
|
|
206953
|
-
|
|
206954
|
-
|
|
207019
|
+
debug16(e);
|
|
207020
|
+
debug16("Error occurred while setting server response for replay");
|
|
206955
207021
|
}
|
|
206956
207022
|
});
|
|
206957
207023
|
} else {
|
|
@@ -206965,8 +207031,8 @@ var httpServerResponseHookReplayMode = (res, req, mock) => {
|
|
|
206965
207031
|
bodyBuffer: buffer
|
|
206966
207032
|
});
|
|
206967
207033
|
} catch (e) {
|
|
206968
|
-
|
|
206969
|
-
|
|
207034
|
+
debug16(e);
|
|
207035
|
+
debug16("Error occurred while setting server response for replay");
|
|
206970
207036
|
}
|
|
206971
207037
|
}
|
|
206972
207038
|
}
|
|
@@ -207406,7 +207472,7 @@ var HttpClientRequestMock = class _HttpClientRequestMock extends HtInstrumentati
|
|
|
207406
207472
|
};
|
|
207407
207473
|
|
|
207408
207474
|
// src/instrumentation/libraries/http/HtMockClientRequest.ts
|
|
207409
|
-
var
|
|
207475
|
+
var debug17 = debug_default(
|
|
207410
207476
|
`${"ht-instrumentation-http" /* HtHttpInstrumentation */}-HtMockClientRequest`
|
|
207411
207477
|
);
|
|
207412
207478
|
var CONTENT_ENCODING_LOWER_CASE2 = "content-encoding";
|
|
@@ -207609,8 +207675,8 @@ var HtMockClientRequest = class {
|
|
|
207609
207675
|
contentEncoding
|
|
207610
207676
|
);
|
|
207611
207677
|
} catch (e) {
|
|
207612
|
-
|
|
207613
|
-
|
|
207678
|
+
debug17(e);
|
|
207679
|
+
debug17("Error occurred while decoding the client request body.");
|
|
207614
207680
|
}
|
|
207615
207681
|
}
|
|
207616
207682
|
const reqContentType = req.getHeader(CONTENT_TYPE_LOWER_CASE) ?? req.getHeader(CONTENT_TYPE_PASCAL_CASE);
|
|
@@ -207657,8 +207723,8 @@ var HtMockClientRequest = class {
|
|
|
207657
207723
|
try {
|
|
207658
207724
|
mockObj = mock.getReplayValue();
|
|
207659
207725
|
} catch (e) {
|
|
207660
|
-
|
|
207661
|
-
|
|
207726
|
+
debug17(e);
|
|
207727
|
+
debug17("Error in getting http client mock replay value");
|
|
207662
207728
|
if (process.env.SHOULD_EMIT_ERROR_IN_HTTP_OUTBOUND === "true") {
|
|
207663
207729
|
this.emit("error", e);
|
|
207664
207730
|
return;
|
|
@@ -207838,7 +207904,7 @@ function getClusterPathHelper(path4) {
|
|
|
207838
207904
|
}
|
|
207839
207905
|
|
|
207840
207906
|
// src/instrumentation/libraries/http/instrumentation.ts
|
|
207841
|
-
var
|
|
207907
|
+
var debug18 = debug_default("ht-instrumentation-http" /* HtHttpInstrumentation */);
|
|
207842
207908
|
var requestMakerFn = (component, args, plugin) => {
|
|
207843
207909
|
const req = component === "http" ? plugin.htHttpRequestFn(...args) : plugin.htHttpsRequestFn(...args);
|
|
207844
207910
|
return req;
|
|
@@ -207912,7 +207978,7 @@ var HtHttpInstrumentation = class extends HtInstrumentationBase {
|
|
|
207912
207978
|
}));
|
|
207913
207979
|
}
|
|
207914
207980
|
} catch (e) {
|
|
207915
|
-
|
|
207981
|
+
debug18(
|
|
207916
207982
|
"Error occurred while setting 'cache-control' header for outgoing fetch request : ",
|
|
207917
207983
|
e
|
|
207918
207984
|
);
|
|
@@ -207928,8 +207994,8 @@ var HtHttpInstrumentation = class extends HtInstrumentationBase {
|
|
|
207928
207994
|
header: HTTP_PARENT_REQUEST_HEADER
|
|
207929
207995
|
}));
|
|
207930
207996
|
} catch (e) {
|
|
207931
|
-
|
|
207932
|
-
|
|
207997
|
+
debug18(e);
|
|
207998
|
+
debug18(
|
|
207933
207999
|
"Error occurred while setting http parent request header for outgoing fetch http call."
|
|
207934
208000
|
);
|
|
207935
208001
|
}
|
|
@@ -207943,8 +208009,8 @@ var HtHttpInstrumentation = class extends HtInstrumentationBase {
|
|
|
207943
208009
|
header: HYPERTEST_SAMPLING_MODE_HEADER
|
|
207944
208010
|
}));
|
|
207945
208011
|
} catch (e) {
|
|
207946
|
-
|
|
207947
|
-
|
|
208012
|
+
debug18(e);
|
|
208013
|
+
debug18(
|
|
207948
208014
|
"Error occurred while setting sampling mode header for outgoing fetch http call."
|
|
207949
208015
|
);
|
|
207950
208016
|
}
|
|
@@ -208208,7 +208274,7 @@ var HtHttpInstrumentation = class extends HtInstrumentationBase {
|
|
|
208208
208274
|
incomingRequestPath: parsedUrl.pathname
|
|
208209
208275
|
});
|
|
208210
208276
|
const htRequestId = request3.headers["x-ht-request-id"];
|
|
208211
|
-
|
|
208277
|
+
debug18(`received req with htRequestId ${htRequestId}`);
|
|
208212
208278
|
const ctxWithRootTraceKeyAndRequestId = import_api58.context.active().setValue(IS_ROOT_TRACE_KEY, false).setValue(HT_REQUEST_ID, htRequestId).setValue(SHOULD_INSTRUMENT_DATE, shouldInstrumentDate);
|
|
208213
208279
|
return import_api58.context.with(ctxWithRootTraceKeyAndRequestId, () => {
|
|
208214
208280
|
const mock = new HttpServerRequestMock({
|
|
@@ -208227,11 +208293,11 @@ var HtHttpInstrumentation = class extends HtInstrumentationBase {
|
|
|
208227
208293
|
import_api58.context.bind(import_api58.context.active(), response);
|
|
208228
208294
|
const isHtSdkGraphqlReq = isHtSdkGraphqlReqFn(request3);
|
|
208229
208295
|
if (isHtSdkGraphqlReq) {
|
|
208230
|
-
|
|
208296
|
+
debug18(
|
|
208231
208297
|
`received a graphql request with htRequestId - ${htRequestId}`
|
|
208232
208298
|
);
|
|
208233
208299
|
} else {
|
|
208234
|
-
|
|
208300
|
+
debug18(
|
|
208235
208301
|
`received a http request with htRequestId - ${htRequestId}`
|
|
208236
208302
|
);
|
|
208237
208303
|
httpServerResponseHookReplayMode(response, request3, mock);
|
|
@@ -209700,7 +209766,7 @@ var MockCursor = class extends import_stream10.Readable {
|
|
|
209700
209766
|
};
|
|
209701
209767
|
|
|
209702
209768
|
// src/instrumentation/libraries/mongoose/mongooseHelpers/processPayloadHelpers.ts
|
|
209703
|
-
var
|
|
209769
|
+
var debug19 = debug_default("ht-mongoose-process-payload-helpers");
|
|
209704
209770
|
function isObjectIdInstance2(payload) {
|
|
209705
209771
|
var _a4, _b2;
|
|
209706
209772
|
return typeof payload === "object" && (((_a4 = payload.constructor) == null ? void 0 : _a4.name) === "ObjectId" || ((_b2 = payload.constructor) == null ? void 0 : _b2.name) === "ObjectID") && (payload._bsontype === "ObjectId" || payload._bsontype === "ObjectID");
|
|
@@ -209830,7 +209896,7 @@ var convertSanitizedPayloadToRealPayload3 = (sanitizedPayload, meta, version2) =
|
|
|
209830
209896
|
try {
|
|
209831
209897
|
obj[key] = new ObjectConstructor(obj[key]);
|
|
209832
209898
|
} catch (_e2) {
|
|
209833
|
-
|
|
209899
|
+
debug19("Error converting sanitized payload to real payload", key);
|
|
209834
209900
|
}
|
|
209835
209901
|
}
|
|
209836
209902
|
};
|
|
@@ -212209,7 +212275,7 @@ var HtNodemailerInstrumentation = class extends HtInstrumentationBase {
|
|
|
212209
212275
|
};
|
|
212210
212276
|
|
|
212211
212277
|
// src/instrumentation/libraries/opossum/instrumentation.ts
|
|
212212
|
-
var
|
|
212278
|
+
var debug20 = debug_default("ht-instrumentation-opossum" /* HtOpossumInstrumentation */);
|
|
212213
212279
|
var HtOpossumInstrumentation = class extends HtInstrumentationBase {
|
|
212214
212280
|
_Original_CircuitBreaker;
|
|
212215
212281
|
_HT_Patched_CircuitBreaker;
|
|
@@ -212262,15 +212328,15 @@ var HtOpossumInstrumentation = class extends HtInstrumentationBase {
|
|
|
212262
212328
|
super(...args);
|
|
212263
212329
|
if (process.env.HT_MODE === "RECORD") {
|
|
212264
212330
|
this.on("reject", (err) => {
|
|
212265
|
-
|
|
212331
|
+
debug20("This request is discarded as reject event is emitted", err);
|
|
212266
212332
|
discardRequest();
|
|
212267
212333
|
});
|
|
212268
212334
|
this.on("failure", (err) => {
|
|
212269
|
-
|
|
212335
|
+
debug20("This request is discarded as failure event is emitted", err);
|
|
212270
212336
|
discardRequest();
|
|
212271
212337
|
});
|
|
212272
212338
|
this.on("timeout", (err) => {
|
|
212273
|
-
|
|
212339
|
+
debug20("This request is discarded as timeout event is emitted", err);
|
|
212274
212340
|
discardRequest();
|
|
212275
212341
|
});
|
|
212276
212342
|
}
|
|
@@ -223071,7 +223137,7 @@ var zGenerateReadableInputFromProcessedInputPayload = z.object({
|
|
|
223071
223137
|
});
|
|
223072
223138
|
|
|
223073
223139
|
// src/server/index.ts
|
|
223074
|
-
var
|
|
223140
|
+
var debug21 = debug_default("ht-sdk::server");
|
|
223075
223141
|
var ONE_MB_IN_BYTES2 = 1048576;
|
|
223076
223142
|
var FASTIFY_REQ_PAYLOAD_LIMIT_BYTES = ONE_MB_IN_BYTES2 * 500;
|
|
223077
223143
|
var app = (0, import_fastify.default)({
|
|
@@ -223919,12 +223985,12 @@ app.route({
|
|
|
223919
223985
|
method: "GET",
|
|
223920
223986
|
url: "/isSdkReadyForTest",
|
|
223921
223987
|
handler(_req, reply) {
|
|
223922
|
-
|
|
223988
|
+
debug21("/isSdkReadyForTest called");
|
|
223923
223989
|
const memoryStoreInst = MemoryStore.getInstance();
|
|
223924
223990
|
const retVal = {
|
|
223925
223991
|
isReady: memoryStoreInst.isRootMockUpdated()
|
|
223926
223992
|
};
|
|
223927
|
-
|
|
223993
|
+
debug21(`/isSdkReadyForTest responding with: ${JSON.stringify(retVal)}`);
|
|
223928
223994
|
reply.send(retVal);
|
|
223929
223995
|
}
|
|
223930
223996
|
});
|
|
@@ -223932,14 +223998,14 @@ app.route({
|
|
|
223932
223998
|
method: "GET",
|
|
223933
223999
|
url: "/isAppReadyForTest",
|
|
223934
224000
|
handler(_req, reply) {
|
|
223935
|
-
|
|
224001
|
+
debug21("/isAppReadyForTest called");
|
|
223936
224002
|
const memoryStoreInst = MemoryStore.getInstance();
|
|
223937
224003
|
const retVal = {
|
|
223938
224004
|
isReady: memoryStoreInst.getAppHealthStatus() === "UP",
|
|
223939
224005
|
PID: process.pid,
|
|
223940
224006
|
PPID: process.ppid
|
|
223941
224007
|
};
|
|
223942
|
-
|
|
224008
|
+
debug21(`/isAppReadyForTest responding with: ${JSON.stringify(retVal)}`);
|
|
223943
224009
|
reply.send(retVal);
|
|
223944
224010
|
}
|
|
223945
224011
|
});
|
|
@@ -224101,7 +224167,7 @@ if (typeof fetch === "undefined") {
|
|
|
224101
224167
|
global.Response = import_node_fetch.Response;
|
|
224102
224168
|
global.Request = import_node_fetch.Request;
|
|
224103
224169
|
}
|
|
224104
|
-
var
|
|
224170
|
+
var debug22 = debug_default("ht-sdk::index");
|
|
224105
224171
|
var MARK_APP_AS_READY_NOT_CALLED = "[WARNING] markAppAsReady has not been called, please call markAppAsReady after your app boots because tests will not execute without it in REPLAY mode";
|
|
224106
224172
|
var deprecatedAutoInstrumentation = () => {
|
|
224107
224173
|
console.error(
|
|
@@ -224246,6 +224312,20 @@ var initialiseNormally = (htConfig) => {
|
|
|
224246
224312
|
if (!hasHttp2) {
|
|
224247
224313
|
process.env.DD_TRACE_DISABLED_PLUGINS = current === "" ? "http2" : `${current},http2`;
|
|
224248
224314
|
}
|
|
224315
|
+
const isCurrentFolderInGitRepo = isCurrentFolderInGitRepoFn();
|
|
224316
|
+
if (isCurrentFolderInGitRepo && isHavingUncommittedChangesFn()) {
|
|
224317
|
+
const gitDiff = getUncommittedChanges();
|
|
224318
|
+
console.log(
|
|
224319
|
+
"The following are the uncommitted changes in your repository."
|
|
224320
|
+
);
|
|
224321
|
+
console.log(`
|
|
224322
|
+
${gitDiff}
|
|
224323
|
+
`);
|
|
224324
|
+
console.error(
|
|
224325
|
+
"Your repository contains uncommitted changes, please commit them or remove from git tracking and add them to .gitignore before recording requests with hypertest."
|
|
224326
|
+
);
|
|
224327
|
+
process.exit(1);
|
|
224328
|
+
}
|
|
224249
224329
|
}
|
|
224250
224330
|
const packageNames = alreadyRequiredModules();
|
|
224251
224331
|
if (packageNames.size > 0 && process.env.HT_ENV === "prod" && IS_RECORD_MODE) {
|
|
@@ -224397,7 +224477,7 @@ function alreadyRequiredModules() {
|
|
|
224397
224477
|
async function monitorOtelCollectorStatus(exporterUrl) {
|
|
224398
224478
|
const { accessible } = await pingOtelCollector(exporterUrl);
|
|
224399
224479
|
if (accessible) {
|
|
224400
|
-
|
|
224480
|
+
debug22("Hypertest otel collector is accessible");
|
|
224401
224481
|
} else {
|
|
224402
224482
|
console.error(`
|
|
224403
224483
|
ERROR: Hypertest otel collector is not accessible.
|