ai-hero-cli 0.4.1 → 0.5.0
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/bin.cjs +1152 -1057
- package/package.json +1 -1
package/bin.cjs
CHANGED
|
@@ -51,9 +51,9 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
|
|
|
51
51
|
var __commonJS = (cb, mod) => function __require2() {
|
|
52
52
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
53
53
|
};
|
|
54
|
-
var __export = (
|
|
54
|
+
var __export = (target2, all10) => {
|
|
55
55
|
for (var name in all10)
|
|
56
|
-
__defProp(
|
|
56
|
+
__defProp(target2, name, { get: all10[name], enumerable: true });
|
|
57
57
|
};
|
|
58
58
|
var __copyProps = (to, from, except, desc) => {
|
|
59
59
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
@@ -63,13 +63,13 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
63
63
|
}
|
|
64
64
|
return to;
|
|
65
65
|
};
|
|
66
|
-
var __reExport = (
|
|
67
|
-
var __toESM = (mod, isNodeMode,
|
|
66
|
+
var __reExport = (target2, mod, secondTarget) => (__copyProps(target2, mod, "default"), secondTarget);
|
|
67
|
+
var __toESM = (mod, isNodeMode, target2) => (target2 = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
68
68
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
69
69
|
// file that has been converted to a CommonJS file using a Babel-
|
|
70
70
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
71
71
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
72
|
-
__defProp(
|
|
72
|
+
__defProp(target2, "default", { value: mod, enumerable: true }) ,
|
|
73
73
|
mod
|
|
74
74
|
));
|
|
75
75
|
|
|
@@ -3886,8 +3886,8 @@ var require_compiler = __commonJS({
|
|
|
3886
3886
|
valueAssignments.push(fullPath);
|
|
3887
3887
|
}
|
|
3888
3888
|
}
|
|
3889
|
-
function pathAssigned(
|
|
3890
|
-
return assignedPaths.indexOf(
|
|
3889
|
+
function pathAssigned(path16) {
|
|
3890
|
+
return assignedPaths.indexOf(path16) !== -1;
|
|
3891
3891
|
}
|
|
3892
3892
|
function reduceValueNode(node) {
|
|
3893
3893
|
if (node.type === "Array") {
|
|
@@ -3911,20 +3911,20 @@ var require_compiler = __commonJS({
|
|
|
3911
3911
|
return obj;
|
|
3912
3912
|
}
|
|
3913
3913
|
function setPath(node) {
|
|
3914
|
-
var
|
|
3915
|
-
var quotedPath =
|
|
3914
|
+
var path16 = node.value;
|
|
3915
|
+
var quotedPath = path16.map(quoteDottedString).join(".");
|
|
3916
3916
|
var line4 = node.line;
|
|
3917
3917
|
var column3 = node.column;
|
|
3918
3918
|
if (pathAssigned(quotedPath)) {
|
|
3919
|
-
genError("Cannot redefine existing key '" +
|
|
3919
|
+
genError("Cannot redefine existing key '" + path16 + "'.", line4, column3);
|
|
3920
3920
|
}
|
|
3921
3921
|
assignedPaths.push(quotedPath);
|
|
3922
|
-
context8 = deepRef(data,
|
|
3923
|
-
currentPath =
|
|
3922
|
+
context8 = deepRef(data, path16, /* @__PURE__ */ Object.create(null), line4, column3);
|
|
3923
|
+
currentPath = path16;
|
|
3924
3924
|
}
|
|
3925
3925
|
function addTableArray(node) {
|
|
3926
|
-
var
|
|
3927
|
-
var quotedPath =
|
|
3926
|
+
var path16 = node.value;
|
|
3927
|
+
var quotedPath = path16.map(quoteDottedString).join(".");
|
|
3928
3928
|
var line4 = node.line;
|
|
3929
3929
|
var column3 = node.column;
|
|
3930
3930
|
if (!pathAssigned(quotedPath)) {
|
|
@@ -3934,14 +3934,14 @@ var require_compiler = __commonJS({
|
|
|
3934
3934
|
return p3.indexOf(quotedPath) !== 0;
|
|
3935
3935
|
});
|
|
3936
3936
|
assignedPaths.push(quotedPath);
|
|
3937
|
-
context8 = deepRef(data,
|
|
3937
|
+
context8 = deepRef(data, path16, [], line4, column3);
|
|
3938
3938
|
currentPath = quotedPath;
|
|
3939
3939
|
if (context8 instanceof Array) {
|
|
3940
3940
|
var newObj = /* @__PURE__ */ Object.create(null);
|
|
3941
3941
|
context8.push(newObj);
|
|
3942
3942
|
context8 = newObj;
|
|
3943
3943
|
} else {
|
|
3944
|
-
genError("Cannot redefine existing key '" +
|
|
3944
|
+
genError("Cannot redefine existing key '" + path16 + "'.", line4, column3);
|
|
3945
3945
|
}
|
|
3946
3946
|
}
|
|
3947
3947
|
function deepRef(start5, keys6, value5, line4, column3) {
|
|
@@ -4086,17 +4086,17 @@ var require_visit = __commonJS({
|
|
|
4086
4086
|
visit.BREAK = BREAK;
|
|
4087
4087
|
visit.SKIP = SKIP;
|
|
4088
4088
|
visit.REMOVE = REMOVE;
|
|
4089
|
-
function visit_(key, node, visitor,
|
|
4090
|
-
const ctrl = callVisitor(key, node, visitor,
|
|
4089
|
+
function visit_(key, node, visitor, path16) {
|
|
4090
|
+
const ctrl = callVisitor(key, node, visitor, path16);
|
|
4091
4091
|
if (identity3.isNode(ctrl) || identity3.isPair(ctrl)) {
|
|
4092
|
-
replaceNode(key,
|
|
4093
|
-
return visit_(key, ctrl, visitor,
|
|
4092
|
+
replaceNode(key, path16, ctrl);
|
|
4093
|
+
return visit_(key, ctrl, visitor, path16);
|
|
4094
4094
|
}
|
|
4095
4095
|
if (typeof ctrl !== "symbol") {
|
|
4096
4096
|
if (identity3.isCollection(node)) {
|
|
4097
|
-
|
|
4097
|
+
path16 = Object.freeze(path16.concat(node));
|
|
4098
4098
|
for (let i = 0; i < node.items.length; ++i) {
|
|
4099
|
-
const ci = visit_(i, node.items[i], visitor,
|
|
4099
|
+
const ci = visit_(i, node.items[i], visitor, path16);
|
|
4100
4100
|
if (typeof ci === "number")
|
|
4101
4101
|
i = ci - 1;
|
|
4102
4102
|
else if (ci === BREAK)
|
|
@@ -4107,13 +4107,13 @@ var require_visit = __commonJS({
|
|
|
4107
4107
|
}
|
|
4108
4108
|
}
|
|
4109
4109
|
} else if (identity3.isPair(node)) {
|
|
4110
|
-
|
|
4111
|
-
const ck = visit_("key", node.key, visitor,
|
|
4110
|
+
path16 = Object.freeze(path16.concat(node));
|
|
4111
|
+
const ck = visit_("key", node.key, visitor, path16);
|
|
4112
4112
|
if (ck === BREAK)
|
|
4113
4113
|
return BREAK;
|
|
4114
4114
|
else if (ck === REMOVE)
|
|
4115
4115
|
node.key = null;
|
|
4116
|
-
const cv = visit_("value", node.value, visitor,
|
|
4116
|
+
const cv = visit_("value", node.value, visitor, path16);
|
|
4117
4117
|
if (cv === BREAK)
|
|
4118
4118
|
return BREAK;
|
|
4119
4119
|
else if (cv === REMOVE)
|
|
@@ -4134,17 +4134,17 @@ var require_visit = __commonJS({
|
|
|
4134
4134
|
visitAsync.BREAK = BREAK;
|
|
4135
4135
|
visitAsync.SKIP = SKIP;
|
|
4136
4136
|
visitAsync.REMOVE = REMOVE;
|
|
4137
|
-
async function visitAsync_(key, node, visitor,
|
|
4138
|
-
const ctrl = await callVisitor(key, node, visitor,
|
|
4137
|
+
async function visitAsync_(key, node, visitor, path16) {
|
|
4138
|
+
const ctrl = await callVisitor(key, node, visitor, path16);
|
|
4139
4139
|
if (identity3.isNode(ctrl) || identity3.isPair(ctrl)) {
|
|
4140
|
-
replaceNode(key,
|
|
4141
|
-
return visitAsync_(key, ctrl, visitor,
|
|
4140
|
+
replaceNode(key, path16, ctrl);
|
|
4141
|
+
return visitAsync_(key, ctrl, visitor, path16);
|
|
4142
4142
|
}
|
|
4143
4143
|
if (typeof ctrl !== "symbol") {
|
|
4144
4144
|
if (identity3.isCollection(node)) {
|
|
4145
|
-
|
|
4145
|
+
path16 = Object.freeze(path16.concat(node));
|
|
4146
4146
|
for (let i = 0; i < node.items.length; ++i) {
|
|
4147
|
-
const ci = await visitAsync_(i, node.items[i], visitor,
|
|
4147
|
+
const ci = await visitAsync_(i, node.items[i], visitor, path16);
|
|
4148
4148
|
if (typeof ci === "number")
|
|
4149
4149
|
i = ci - 1;
|
|
4150
4150
|
else if (ci === BREAK)
|
|
@@ -4155,13 +4155,13 @@ var require_visit = __commonJS({
|
|
|
4155
4155
|
}
|
|
4156
4156
|
}
|
|
4157
4157
|
} else if (identity3.isPair(node)) {
|
|
4158
|
-
|
|
4159
|
-
const ck = await visitAsync_("key", node.key, visitor,
|
|
4158
|
+
path16 = Object.freeze(path16.concat(node));
|
|
4159
|
+
const ck = await visitAsync_("key", node.key, visitor, path16);
|
|
4160
4160
|
if (ck === BREAK)
|
|
4161
4161
|
return BREAK;
|
|
4162
4162
|
else if (ck === REMOVE)
|
|
4163
4163
|
node.key = null;
|
|
4164
|
-
const cv = await visitAsync_("value", node.value, visitor,
|
|
4164
|
+
const cv = await visitAsync_("value", node.value, visitor, path16);
|
|
4165
4165
|
if (cv === BREAK)
|
|
4166
4166
|
return BREAK;
|
|
4167
4167
|
else if (cv === REMOVE)
|
|
@@ -4188,23 +4188,23 @@ var require_visit = __commonJS({
|
|
|
4188
4188
|
}
|
|
4189
4189
|
return visitor;
|
|
4190
4190
|
}
|
|
4191
|
-
function callVisitor(key, node, visitor,
|
|
4191
|
+
function callVisitor(key, node, visitor, path16) {
|
|
4192
4192
|
if (typeof visitor === "function")
|
|
4193
|
-
return visitor(key, node,
|
|
4193
|
+
return visitor(key, node, path16);
|
|
4194
4194
|
if (identity3.isMap(node))
|
|
4195
|
-
return visitor.Map?.(key, node,
|
|
4195
|
+
return visitor.Map?.(key, node, path16);
|
|
4196
4196
|
if (identity3.isSeq(node))
|
|
4197
|
-
return visitor.Seq?.(key, node,
|
|
4197
|
+
return visitor.Seq?.(key, node, path16);
|
|
4198
4198
|
if (identity3.isPair(node))
|
|
4199
|
-
return visitor.Pair?.(key, node,
|
|
4199
|
+
return visitor.Pair?.(key, node, path16);
|
|
4200
4200
|
if (identity3.isScalar(node))
|
|
4201
|
-
return visitor.Scalar?.(key, node,
|
|
4201
|
+
return visitor.Scalar?.(key, node, path16);
|
|
4202
4202
|
if (identity3.isAlias(node))
|
|
4203
|
-
return visitor.Alias?.(key, node,
|
|
4203
|
+
return visitor.Alias?.(key, node, path16);
|
|
4204
4204
|
return void 0;
|
|
4205
4205
|
}
|
|
4206
|
-
function replaceNode(key,
|
|
4207
|
-
const parent =
|
|
4206
|
+
function replaceNode(key, path16, node) {
|
|
4207
|
+
const parent = path16[path16.length - 1];
|
|
4208
4208
|
if (identity3.isCollection(parent)) {
|
|
4209
4209
|
parent.items[key] = node;
|
|
4210
4210
|
} else if (identity3.isPair(parent)) {
|
|
@@ -4803,10 +4803,10 @@ var require_Collection = __commonJS({
|
|
|
4803
4803
|
var createNode = require_createNode();
|
|
4804
4804
|
var identity3 = require_identity();
|
|
4805
4805
|
var Node = require_Node();
|
|
4806
|
-
function collectionFromPath(schema,
|
|
4806
|
+
function collectionFromPath(schema, path16, value5) {
|
|
4807
4807
|
let v = value5;
|
|
4808
|
-
for (let i =
|
|
4809
|
-
const k =
|
|
4808
|
+
for (let i = path16.length - 1; i >= 0; --i) {
|
|
4809
|
+
const k = path16[i];
|
|
4810
4810
|
if (typeof k === "number" && Number.isInteger(k) && k >= 0) {
|
|
4811
4811
|
const a = [];
|
|
4812
4812
|
a[k] = v;
|
|
@@ -4825,7 +4825,7 @@ var require_Collection = __commonJS({
|
|
|
4825
4825
|
sourceObjects: /* @__PURE__ */ new Map()
|
|
4826
4826
|
});
|
|
4827
4827
|
}
|
|
4828
|
-
var isEmptyPath = (
|
|
4828
|
+
var isEmptyPath = (path16) => path16 == null || typeof path16 === "object" && !!path16[Symbol.iterator]().next().done;
|
|
4829
4829
|
var Collection = class extends Node.NodeBase {
|
|
4830
4830
|
constructor(type2, schema) {
|
|
4831
4831
|
super(type2);
|
|
@@ -4855,11 +4855,11 @@ var require_Collection = __commonJS({
|
|
|
4855
4855
|
* be a Pair instance or a `{ key, value }` object, which may not have a key
|
|
4856
4856
|
* that already exists in the map.
|
|
4857
4857
|
*/
|
|
4858
|
-
addIn(
|
|
4859
|
-
if (isEmptyPath(
|
|
4858
|
+
addIn(path16, value5) {
|
|
4859
|
+
if (isEmptyPath(path16))
|
|
4860
4860
|
this.add(value5);
|
|
4861
4861
|
else {
|
|
4862
|
-
const [key, ...rest] =
|
|
4862
|
+
const [key, ...rest] = path16;
|
|
4863
4863
|
const node = this.get(key, true);
|
|
4864
4864
|
if (identity3.isCollection(node))
|
|
4865
4865
|
node.addIn(rest, value5);
|
|
@@ -4873,8 +4873,8 @@ var require_Collection = __commonJS({
|
|
|
4873
4873
|
* Removes a value from the collection.
|
|
4874
4874
|
* @returns `true` if the item was found and removed.
|
|
4875
4875
|
*/
|
|
4876
|
-
deleteIn(
|
|
4877
|
-
const [key, ...rest] =
|
|
4876
|
+
deleteIn(path16) {
|
|
4877
|
+
const [key, ...rest] = path16;
|
|
4878
4878
|
if (rest.length === 0)
|
|
4879
4879
|
return this.delete(key);
|
|
4880
4880
|
const node = this.get(key, true);
|
|
@@ -4888,8 +4888,8 @@ var require_Collection = __commonJS({
|
|
|
4888
4888
|
* scalar values from their surrounding node; to disable set `keepScalar` to
|
|
4889
4889
|
* `true` (collections are always returned intact).
|
|
4890
4890
|
*/
|
|
4891
|
-
getIn(
|
|
4892
|
-
const [key, ...rest] =
|
|
4891
|
+
getIn(path16, keepScalar) {
|
|
4892
|
+
const [key, ...rest] = path16;
|
|
4893
4893
|
const node = this.get(key, true);
|
|
4894
4894
|
if (rest.length === 0)
|
|
4895
4895
|
return !keepScalar && identity3.isScalar(node) ? node.value : node;
|
|
@@ -4907,8 +4907,8 @@ var require_Collection = __commonJS({
|
|
|
4907
4907
|
/**
|
|
4908
4908
|
* Checks if the collection includes a value with the key `key`.
|
|
4909
4909
|
*/
|
|
4910
|
-
hasIn(
|
|
4911
|
-
const [key, ...rest] =
|
|
4910
|
+
hasIn(path16) {
|
|
4911
|
+
const [key, ...rest] = path16;
|
|
4912
4912
|
if (rest.length === 0)
|
|
4913
4913
|
return this.has(key);
|
|
4914
4914
|
const node = this.get(key, true);
|
|
@@ -4918,8 +4918,8 @@ var require_Collection = __commonJS({
|
|
|
4918
4918
|
* Sets a value in this collection. For `!!set`, `value` needs to be a
|
|
4919
4919
|
* boolean to add/remove the item from the set.
|
|
4920
4920
|
*/
|
|
4921
|
-
setIn(
|
|
4922
|
-
const [key, ...rest] =
|
|
4921
|
+
setIn(path16, value5) {
|
|
4922
|
+
const [key, ...rest] = path16;
|
|
4923
4923
|
if (rest.length === 0) {
|
|
4924
4924
|
this.set(key, value5);
|
|
4925
4925
|
} else {
|
|
@@ -7388,9 +7388,9 @@ var require_Document = __commonJS({
|
|
|
7388
7388
|
this.contents.add(value5);
|
|
7389
7389
|
}
|
|
7390
7390
|
/** Adds a value to the document. */
|
|
7391
|
-
addIn(
|
|
7391
|
+
addIn(path16, value5) {
|
|
7392
7392
|
if (assertCollection(this.contents))
|
|
7393
|
-
this.contents.addIn(
|
|
7393
|
+
this.contents.addIn(path16, value5);
|
|
7394
7394
|
}
|
|
7395
7395
|
/**
|
|
7396
7396
|
* Create a new `Alias` node, ensuring that the target `node` has the required anchor.
|
|
@@ -7465,14 +7465,14 @@ var require_Document = __commonJS({
|
|
|
7465
7465
|
* Removes a value from the document.
|
|
7466
7466
|
* @returns `true` if the item was found and removed.
|
|
7467
7467
|
*/
|
|
7468
|
-
deleteIn(
|
|
7469
|
-
if (Collection.isEmptyPath(
|
|
7468
|
+
deleteIn(path16) {
|
|
7469
|
+
if (Collection.isEmptyPath(path16)) {
|
|
7470
7470
|
if (this.contents == null)
|
|
7471
7471
|
return false;
|
|
7472
7472
|
this.contents = null;
|
|
7473
7473
|
return true;
|
|
7474
7474
|
}
|
|
7475
|
-
return assertCollection(this.contents) ? this.contents.deleteIn(
|
|
7475
|
+
return assertCollection(this.contents) ? this.contents.deleteIn(path16) : false;
|
|
7476
7476
|
}
|
|
7477
7477
|
/**
|
|
7478
7478
|
* Returns item at `key`, or `undefined` if not found. By default unwraps
|
|
@@ -7487,10 +7487,10 @@ var require_Document = __commonJS({
|
|
|
7487
7487
|
* scalar values from their surrounding node; to disable set `keepScalar` to
|
|
7488
7488
|
* `true` (collections are always returned intact).
|
|
7489
7489
|
*/
|
|
7490
|
-
getIn(
|
|
7491
|
-
if (Collection.isEmptyPath(
|
|
7490
|
+
getIn(path16, keepScalar) {
|
|
7491
|
+
if (Collection.isEmptyPath(path16))
|
|
7492
7492
|
return !keepScalar && identity3.isScalar(this.contents) ? this.contents.value : this.contents;
|
|
7493
|
-
return identity3.isCollection(this.contents) ? this.contents.getIn(
|
|
7493
|
+
return identity3.isCollection(this.contents) ? this.contents.getIn(path16, keepScalar) : void 0;
|
|
7494
7494
|
}
|
|
7495
7495
|
/**
|
|
7496
7496
|
* Checks if the document includes a value with the key `key`.
|
|
@@ -7501,10 +7501,10 @@ var require_Document = __commonJS({
|
|
|
7501
7501
|
/**
|
|
7502
7502
|
* Checks if the document includes a value at `path`.
|
|
7503
7503
|
*/
|
|
7504
|
-
hasIn(
|
|
7505
|
-
if (Collection.isEmptyPath(
|
|
7504
|
+
hasIn(path16) {
|
|
7505
|
+
if (Collection.isEmptyPath(path16))
|
|
7506
7506
|
return this.contents !== void 0;
|
|
7507
|
-
return identity3.isCollection(this.contents) ? this.contents.hasIn(
|
|
7507
|
+
return identity3.isCollection(this.contents) ? this.contents.hasIn(path16) : false;
|
|
7508
7508
|
}
|
|
7509
7509
|
/**
|
|
7510
7510
|
* Sets a value in this document. For `!!set`, `value` needs to be a
|
|
@@ -7521,13 +7521,13 @@ var require_Document = __commonJS({
|
|
|
7521
7521
|
* Sets a value in this document. For `!!set`, `value` needs to be a
|
|
7522
7522
|
* boolean to add/remove the item from the set.
|
|
7523
7523
|
*/
|
|
7524
|
-
setIn(
|
|
7525
|
-
if (Collection.isEmptyPath(
|
|
7524
|
+
setIn(path16, value5) {
|
|
7525
|
+
if (Collection.isEmptyPath(path16)) {
|
|
7526
7526
|
this.contents = value5;
|
|
7527
7527
|
} else if (this.contents == null) {
|
|
7528
|
-
this.contents = Collection.collectionFromPath(this.schema, Array.from(
|
|
7528
|
+
this.contents = Collection.collectionFromPath(this.schema, Array.from(path16), value5);
|
|
7529
7529
|
} else if (assertCollection(this.contents)) {
|
|
7530
|
-
this.contents.setIn(
|
|
7530
|
+
this.contents.setIn(path16, value5);
|
|
7531
7531
|
}
|
|
7532
7532
|
}
|
|
7533
7533
|
/**
|
|
@@ -9459,9 +9459,9 @@ var require_cst_visit = __commonJS({
|
|
|
9459
9459
|
visit.BREAK = BREAK;
|
|
9460
9460
|
visit.SKIP = SKIP;
|
|
9461
9461
|
visit.REMOVE = REMOVE;
|
|
9462
|
-
visit.itemAtPath = (cst,
|
|
9462
|
+
visit.itemAtPath = (cst, path16) => {
|
|
9463
9463
|
let item = cst;
|
|
9464
|
-
for (const [field, index] of
|
|
9464
|
+
for (const [field, index] of path16) {
|
|
9465
9465
|
const tok = item?.[field];
|
|
9466
9466
|
if (tok && "items" in tok) {
|
|
9467
9467
|
item = tok.items[index];
|
|
@@ -9470,23 +9470,23 @@ var require_cst_visit = __commonJS({
|
|
|
9470
9470
|
}
|
|
9471
9471
|
return item;
|
|
9472
9472
|
};
|
|
9473
|
-
visit.parentCollection = (cst,
|
|
9474
|
-
const parent = visit.itemAtPath(cst,
|
|
9475
|
-
const field =
|
|
9473
|
+
visit.parentCollection = (cst, path16) => {
|
|
9474
|
+
const parent = visit.itemAtPath(cst, path16.slice(0, -1));
|
|
9475
|
+
const field = path16[path16.length - 1][0];
|
|
9476
9476
|
const coll = parent?.[field];
|
|
9477
9477
|
if (coll && "items" in coll)
|
|
9478
9478
|
return coll;
|
|
9479
9479
|
throw new Error("Parent collection not found");
|
|
9480
9480
|
};
|
|
9481
|
-
function _visit(
|
|
9482
|
-
let ctrl = visitor(item,
|
|
9481
|
+
function _visit(path16, item, visitor) {
|
|
9482
|
+
let ctrl = visitor(item, path16);
|
|
9483
9483
|
if (typeof ctrl === "symbol")
|
|
9484
9484
|
return ctrl;
|
|
9485
9485
|
for (const field of ["key", "value"]) {
|
|
9486
9486
|
const token = item[field];
|
|
9487
9487
|
if (token && "items" in token) {
|
|
9488
9488
|
for (let i = 0; i < token.items.length; ++i) {
|
|
9489
|
-
const ci = _visit(Object.freeze(
|
|
9489
|
+
const ci = _visit(Object.freeze(path16.concat([[field, i]])), token.items[i], visitor);
|
|
9490
9490
|
if (typeof ci === "number")
|
|
9491
9491
|
i = ci - 1;
|
|
9492
9492
|
else if (ci === BREAK)
|
|
@@ -9497,10 +9497,10 @@ var require_cst_visit = __commonJS({
|
|
|
9497
9497
|
}
|
|
9498
9498
|
}
|
|
9499
9499
|
if (typeof ctrl === "function" && field === "key")
|
|
9500
|
-
ctrl = ctrl(item,
|
|
9500
|
+
ctrl = ctrl(item, path16);
|
|
9501
9501
|
}
|
|
9502
9502
|
}
|
|
9503
|
-
return typeof ctrl === "function" ? ctrl(item,
|
|
9503
|
+
return typeof ctrl === "function" ? ctrl(item, path16) : ctrl;
|
|
9504
9504
|
}
|
|
9505
9505
|
exports.visit = visit;
|
|
9506
9506
|
}
|
|
@@ -12135,14 +12135,14 @@ var require_util = __commonJS({
|
|
|
12135
12135
|
}
|
|
12136
12136
|
const port2 = url2.port != null ? url2.port : url2.protocol === "https:" ? 443 : 80;
|
|
12137
12137
|
let origin = url2.origin != null ? url2.origin : `${url2.protocol || ""}//${url2.hostname || ""}:${port2}`;
|
|
12138
|
-
let
|
|
12138
|
+
let path16 = url2.path != null ? url2.path : `${url2.pathname || ""}${url2.search || ""}`;
|
|
12139
12139
|
if (origin[origin.length - 1] === "/") {
|
|
12140
12140
|
origin = origin.slice(0, origin.length - 1);
|
|
12141
12141
|
}
|
|
12142
|
-
if (
|
|
12143
|
-
|
|
12142
|
+
if (path16 && path16[0] !== "/") {
|
|
12143
|
+
path16 = `/${path16}`;
|
|
12144
12144
|
}
|
|
12145
|
-
return new URL(`${origin}${
|
|
12145
|
+
return new URL(`${origin}${path16}`);
|
|
12146
12146
|
}
|
|
12147
12147
|
if (!isHttpOrHttpsPrefixed(url2.origin || url2.protocol)) {
|
|
12148
12148
|
throw new InvalidArgumentError("Invalid URL protocol: the URL must start with `http:` or `https:`.");
|
|
@@ -12688,9 +12688,9 @@ var require_diagnostics = __commonJS({
|
|
|
12688
12688
|
"undici:client:sendHeaders",
|
|
12689
12689
|
(evt) => {
|
|
12690
12690
|
const {
|
|
12691
|
-
request: { method, path:
|
|
12691
|
+
request: { method, path: path16, origin }
|
|
12692
12692
|
} = evt;
|
|
12693
|
-
debugLog("sending request to %s %s%s", method, origin,
|
|
12693
|
+
debugLog("sending request to %s %s%s", method, origin, path16);
|
|
12694
12694
|
}
|
|
12695
12695
|
);
|
|
12696
12696
|
}
|
|
@@ -12704,14 +12704,14 @@ var require_diagnostics = __commonJS({
|
|
|
12704
12704
|
"undici:request:headers",
|
|
12705
12705
|
(evt) => {
|
|
12706
12706
|
const {
|
|
12707
|
-
request: { method, path:
|
|
12707
|
+
request: { method, path: path16, origin },
|
|
12708
12708
|
response: { statusCode }
|
|
12709
12709
|
} = evt;
|
|
12710
12710
|
debugLog(
|
|
12711
12711
|
"received response to %s %s%s - HTTP %d",
|
|
12712
12712
|
method,
|
|
12713
12713
|
origin,
|
|
12714
|
-
|
|
12714
|
+
path16,
|
|
12715
12715
|
statusCode
|
|
12716
12716
|
);
|
|
12717
12717
|
}
|
|
@@ -12720,23 +12720,23 @@ var require_diagnostics = __commonJS({
|
|
|
12720
12720
|
"undici:request:trailers",
|
|
12721
12721
|
(evt) => {
|
|
12722
12722
|
const {
|
|
12723
|
-
request: { method, path:
|
|
12723
|
+
request: { method, path: path16, origin }
|
|
12724
12724
|
} = evt;
|
|
12725
|
-
debugLog("trailers received from %s %s%s", method, origin,
|
|
12725
|
+
debugLog("trailers received from %s %s%s", method, origin, path16);
|
|
12726
12726
|
}
|
|
12727
12727
|
);
|
|
12728
12728
|
diagnosticsChannel.subscribe(
|
|
12729
12729
|
"undici:request:error",
|
|
12730
12730
|
(evt) => {
|
|
12731
12731
|
const {
|
|
12732
|
-
request: { method, path:
|
|
12732
|
+
request: { method, path: path16, origin },
|
|
12733
12733
|
error: error4
|
|
12734
12734
|
} = evt;
|
|
12735
12735
|
debugLog(
|
|
12736
12736
|
"request to %s %s%s errored - %s",
|
|
12737
12737
|
method,
|
|
12738
12738
|
origin,
|
|
12739
|
-
|
|
12739
|
+
path16,
|
|
12740
12740
|
error4.message
|
|
12741
12741
|
);
|
|
12742
12742
|
}
|
|
@@ -12830,7 +12830,7 @@ var require_request = __commonJS({
|
|
|
12830
12830
|
var kHandler = Symbol("handler");
|
|
12831
12831
|
var Request = class {
|
|
12832
12832
|
constructor(origin, {
|
|
12833
|
-
path:
|
|
12833
|
+
path: path16,
|
|
12834
12834
|
method,
|
|
12835
12835
|
body,
|
|
12836
12836
|
headers,
|
|
@@ -12846,11 +12846,11 @@ var require_request = __commonJS({
|
|
|
12846
12846
|
throwOnError,
|
|
12847
12847
|
maxRedirections
|
|
12848
12848
|
}, handler) {
|
|
12849
|
-
if (typeof
|
|
12849
|
+
if (typeof path16 !== "string") {
|
|
12850
12850
|
throw new InvalidArgumentError("path must be a string");
|
|
12851
|
-
} else if (
|
|
12851
|
+
} else if (path16[0] !== "/" && !(path16.startsWith("http://") || path16.startsWith("https://")) && method !== "CONNECT") {
|
|
12852
12852
|
throw new InvalidArgumentError("path must be an absolute URL or start with a slash");
|
|
12853
|
-
} else if (invalidPathRegex.test(
|
|
12853
|
+
} else if (invalidPathRegex.test(path16)) {
|
|
12854
12854
|
throw new InvalidArgumentError("invalid request path");
|
|
12855
12855
|
}
|
|
12856
12856
|
if (typeof method !== "string") {
|
|
@@ -12918,7 +12918,7 @@ var require_request = __commonJS({
|
|
|
12918
12918
|
this.completed = false;
|
|
12919
12919
|
this.aborted = false;
|
|
12920
12920
|
this.upgrade = upgrade || null;
|
|
12921
|
-
this.path = query ? serializePathWithQuery(
|
|
12921
|
+
this.path = query ? serializePathWithQuery(path16, query) : path16;
|
|
12922
12922
|
this.origin = origin;
|
|
12923
12923
|
this.idempotent = idempotent == null ? method === "HEAD" || method === "GET" : idempotent;
|
|
12924
12924
|
this.blocking = blocking ?? this.method !== "HEAD";
|
|
@@ -12983,14 +12983,14 @@ var require_request = __commonJS({
|
|
|
12983
12983
|
}
|
|
12984
12984
|
}
|
|
12985
12985
|
}
|
|
12986
|
-
onConnect(
|
|
12986
|
+
onConnect(abort2) {
|
|
12987
12987
|
assert3(!this.aborted);
|
|
12988
12988
|
assert3(!this.completed);
|
|
12989
12989
|
if (this.error) {
|
|
12990
|
-
|
|
12990
|
+
abort2(this.error);
|
|
12991
12991
|
} else {
|
|
12992
|
-
this.abort =
|
|
12993
|
-
return this[kHandler].onConnect(
|
|
12992
|
+
this.abort = abort2;
|
|
12993
|
+
return this[kHandler].onConnect(abort2);
|
|
12994
12994
|
}
|
|
12995
12995
|
}
|
|
12996
12996
|
onResponseStarted() {
|
|
@@ -13151,8 +13151,8 @@ var require_wrap_handler = __commonJS({
|
|
|
13151
13151
|
return handler.onRequestStart ? handler : new WrapHandler(handler);
|
|
13152
13152
|
}
|
|
13153
13153
|
// Unwrap Interface
|
|
13154
|
-
onConnect(
|
|
13155
|
-
return this.#handler.onConnect?.(
|
|
13154
|
+
onConnect(abort2, context8) {
|
|
13155
|
+
return this.#handler.onConnect?.(abort2, context8);
|
|
13156
13156
|
}
|
|
13157
13157
|
onHeaders(statusCode, rawHeaders, resume2, statusMessage) {
|
|
13158
13158
|
return this.#handler.onHeaders?.(statusCode, rawHeaders, resume2, statusMessage);
|
|
@@ -13247,7 +13247,7 @@ var require_dispatcher = __commonJS({
|
|
|
13247
13247
|
}
|
|
13248
13248
|
}
|
|
13249
13249
|
return new Proxy(this, {
|
|
13250
|
-
get: (
|
|
13250
|
+
get: (target2, key) => key === "dispatch" ? dispatch : target2[key]
|
|
13251
13251
|
});
|
|
13252
13252
|
}
|
|
13253
13253
|
};
|
|
@@ -13267,8 +13267,8 @@ var require_unwrap_handler = __commonJS({
|
|
|
13267
13267
|
#aborted = false;
|
|
13268
13268
|
#abort;
|
|
13269
13269
|
[kResume] = null;
|
|
13270
|
-
constructor(
|
|
13271
|
-
this.#abort =
|
|
13270
|
+
constructor(abort2) {
|
|
13271
|
+
this.#abort = abort2;
|
|
13272
13272
|
}
|
|
13273
13273
|
pause() {
|
|
13274
13274
|
this.#paused = true;
|
|
@@ -13305,8 +13305,8 @@ var require_unwrap_handler = __commonJS({
|
|
|
13305
13305
|
static unwrap(handler) {
|
|
13306
13306
|
return !handler.onRequestStart ? handler : new UnwrapHandler(handler);
|
|
13307
13307
|
}
|
|
13308
|
-
onConnect(
|
|
13309
|
-
this.#controller = new UnwrapController(
|
|
13308
|
+
onConnect(abort2, context8) {
|
|
13309
|
+
this.#controller = new UnwrapController(abort2);
|
|
13310
13310
|
this.#handler.onRequestStart?.(this.#controller, context8);
|
|
13311
13311
|
}
|
|
13312
13312
|
onUpgrade(statusCode, rawHeaders, socket) {
|
|
@@ -15748,8 +15748,8 @@ var require_util2 = __commonJS({
|
|
|
15748
15748
|
* @param {unknown} target
|
|
15749
15749
|
* @param {'key' | 'value' | 'key+value'} kind
|
|
15750
15750
|
*/
|
|
15751
|
-
constructor(
|
|
15752
|
-
this.#target =
|
|
15751
|
+
constructor(target2, kind) {
|
|
15752
|
+
this.#target = target2;
|
|
15753
15753
|
this.#kind = kind;
|
|
15754
15754
|
this.#index = 0;
|
|
15755
15755
|
}
|
|
@@ -15799,8 +15799,8 @@ var require_util2 = __commonJS({
|
|
|
15799
15799
|
},
|
|
15800
15800
|
next: { writable: true, enumerable: true, configurable: true }
|
|
15801
15801
|
});
|
|
15802
|
-
return function(
|
|
15803
|
-
return new FastIterableIterator(
|
|
15802
|
+
return function(target2, kind) {
|
|
15803
|
+
return new FastIterableIterator(target2, kind);
|
|
15804
15804
|
};
|
|
15805
15805
|
}
|
|
15806
15806
|
function iteratorMixin(name, object, kInternalIterator, keyIndex = 0, valueIndex = 1) {
|
|
@@ -17661,7 +17661,7 @@ var require_client_h1 = __commonJS({
|
|
|
17661
17661
|
return method !== "GET" && method !== "HEAD" && method !== "OPTIONS" && method !== "TRACE" && method !== "CONNECT";
|
|
17662
17662
|
}
|
|
17663
17663
|
function writeH1(client, request2) {
|
|
17664
|
-
const { method, path:
|
|
17664
|
+
const { method, path: path16, host, upgrade, blocking, reset: reset3 } = request2;
|
|
17665
17665
|
let { body, headers, contentLength } = request2;
|
|
17666
17666
|
const expectsPayload = method === "PUT" || method === "POST" || method === "PATCH" || method === "QUERY" || method === "PROPFIND" || method === "PROPPATCH";
|
|
17667
17667
|
if (util.isFormDataLike(body)) {
|
|
@@ -17696,7 +17696,7 @@ var require_client_h1 = __commonJS({
|
|
|
17696
17696
|
process.emitWarning(new RequestContentLengthMismatchError());
|
|
17697
17697
|
}
|
|
17698
17698
|
const socket = client[kSocket];
|
|
17699
|
-
const
|
|
17699
|
+
const abort2 = (err) => {
|
|
17700
17700
|
if (request2.aborted || request2.completed) {
|
|
17701
17701
|
return;
|
|
17702
17702
|
}
|
|
@@ -17705,7 +17705,7 @@ var require_client_h1 = __commonJS({
|
|
|
17705
17705
|
util.destroy(socket, new InformationalError("aborted"));
|
|
17706
17706
|
};
|
|
17707
17707
|
try {
|
|
17708
|
-
request2.onConnect(
|
|
17708
|
+
request2.onConnect(abort2);
|
|
17709
17709
|
} catch (err) {
|
|
17710
17710
|
util.errorRequest(client, request2, err);
|
|
17711
17711
|
}
|
|
@@ -17727,7 +17727,7 @@ var require_client_h1 = __commonJS({
|
|
|
17727
17727
|
if (blocking) {
|
|
17728
17728
|
socket[kBlocking] = true;
|
|
17729
17729
|
}
|
|
17730
|
-
let header = `${method} ${
|
|
17730
|
+
let header = `${method} ${path16} HTTP/1.1\r
|
|
17731
17731
|
`;
|
|
17732
17732
|
if (typeof host === "string") {
|
|
17733
17733
|
header += `host: ${host}\r
|
|
@@ -17763,28 +17763,28 @@ upgrade: ${upgrade}\r
|
|
|
17763
17763
|
channels.sendHeaders.publish({ request: request2, headers: header, socket });
|
|
17764
17764
|
}
|
|
17765
17765
|
if (!body || bodyLength === 0) {
|
|
17766
|
-
writeBuffer(
|
|
17766
|
+
writeBuffer(abort2, null, client, request2, socket, contentLength, header, expectsPayload);
|
|
17767
17767
|
} else if (util.isBuffer(body)) {
|
|
17768
|
-
writeBuffer(
|
|
17768
|
+
writeBuffer(abort2, body, client, request2, socket, contentLength, header, expectsPayload);
|
|
17769
17769
|
} else if (util.isBlobLike(body)) {
|
|
17770
17770
|
if (typeof body.stream === "function") {
|
|
17771
|
-
writeIterable(
|
|
17771
|
+
writeIterable(abort2, body.stream(), client, request2, socket, contentLength, header, expectsPayload);
|
|
17772
17772
|
} else {
|
|
17773
|
-
writeBlob(
|
|
17773
|
+
writeBlob(abort2, body, client, request2, socket, contentLength, header, expectsPayload);
|
|
17774
17774
|
}
|
|
17775
17775
|
} else if (util.isStream(body)) {
|
|
17776
|
-
writeStream(
|
|
17776
|
+
writeStream(abort2, body, client, request2, socket, contentLength, header, expectsPayload);
|
|
17777
17777
|
} else if (util.isIterable(body)) {
|
|
17778
|
-
writeIterable(
|
|
17778
|
+
writeIterable(abort2, body, client, request2, socket, contentLength, header, expectsPayload);
|
|
17779
17779
|
} else {
|
|
17780
17780
|
assert3(false);
|
|
17781
17781
|
}
|
|
17782
17782
|
return true;
|
|
17783
17783
|
}
|
|
17784
|
-
function writeStream(
|
|
17784
|
+
function writeStream(abort2, body, client, request2, socket, contentLength, header, expectsPayload) {
|
|
17785
17785
|
assert3(contentLength !== 0 || client[kRunning] === 0, "stream body cannot be pipelined");
|
|
17786
17786
|
let finished = false;
|
|
17787
|
-
const writer = new AsyncWriter({ abort, socket, request: request2, contentLength, client, expectsPayload, header });
|
|
17787
|
+
const writer = new AsyncWriter({ abort: abort2, socket, request: request2, contentLength, client, expectsPayload, header });
|
|
17788
17788
|
const onData = function(chunk4) {
|
|
17789
17789
|
if (finished) {
|
|
17790
17790
|
return;
|
|
@@ -17850,7 +17850,7 @@ upgrade: ${upgrade}\r
|
|
|
17850
17850
|
setImmediate(onClose);
|
|
17851
17851
|
}
|
|
17852
17852
|
}
|
|
17853
|
-
function writeBuffer(
|
|
17853
|
+
function writeBuffer(abort2, body, client, request2, socket, contentLength, header, expectsPayload) {
|
|
17854
17854
|
try {
|
|
17855
17855
|
if (!body) {
|
|
17856
17856
|
if (contentLength === 0) {
|
|
@@ -17878,10 +17878,10 @@ upgrade: ${upgrade}\r
|
|
|
17878
17878
|
request2.onRequestSent();
|
|
17879
17879
|
client[kResume]();
|
|
17880
17880
|
} catch (err) {
|
|
17881
|
-
|
|
17881
|
+
abort2(err);
|
|
17882
17882
|
}
|
|
17883
17883
|
}
|
|
17884
|
-
async function writeBlob(
|
|
17884
|
+
async function writeBlob(abort2, body, client, request2, socket, contentLength, header, expectsPayload) {
|
|
17885
17885
|
assert3(contentLength === body.size, "blob body must have content length");
|
|
17886
17886
|
try {
|
|
17887
17887
|
if (contentLength != null && contentLength !== body.size) {
|
|
@@ -17901,10 +17901,10 @@ upgrade: ${upgrade}\r
|
|
|
17901
17901
|
}
|
|
17902
17902
|
client[kResume]();
|
|
17903
17903
|
} catch (err) {
|
|
17904
|
-
|
|
17904
|
+
abort2(err);
|
|
17905
17905
|
}
|
|
17906
17906
|
}
|
|
17907
|
-
async function writeIterable(
|
|
17907
|
+
async function writeIterable(abort2, body, client, request2, socket, contentLength, header, expectsPayload) {
|
|
17908
17908
|
assert3(contentLength !== 0 || client[kRunning] === 0, "iterator body cannot be pipelined");
|
|
17909
17909
|
let callback = null;
|
|
17910
17910
|
function onDrain() {
|
|
@@ -17923,7 +17923,7 @@ upgrade: ${upgrade}\r
|
|
|
17923
17923
|
}
|
|
17924
17924
|
});
|
|
17925
17925
|
socket.on("close", onDrain).on("drain", onDrain);
|
|
17926
|
-
const writer = new AsyncWriter({ abort, socket, request: request2, contentLength, client, expectsPayload, header });
|
|
17926
|
+
const writer = new AsyncWriter({ abort: abort2, socket, request: request2, contentLength, client, expectsPayload, header });
|
|
17927
17927
|
try {
|
|
17928
17928
|
for await (const chunk4 of body) {
|
|
17929
17929
|
if (socket[kError]) {
|
|
@@ -17952,7 +17952,7 @@ upgrade: ${upgrade}\r
|
|
|
17952
17952
|
* @param {boolean} arg.expectsPayload
|
|
17953
17953
|
* @param {string} arg.header
|
|
17954
17954
|
*/
|
|
17955
|
-
constructor({ abort, socket, request: request2, contentLength, client, expectsPayload, header }) {
|
|
17955
|
+
constructor({ abort: abort2, socket, request: request2, contentLength, client, expectsPayload, header }) {
|
|
17956
17956
|
this.socket = socket;
|
|
17957
17957
|
this.request = request2;
|
|
17958
17958
|
this.contentLength = contentLength;
|
|
@@ -17960,7 +17960,7 @@ upgrade: ${upgrade}\r
|
|
|
17960
17960
|
this.bytesWritten = 0;
|
|
17961
17961
|
this.expectsPayload = expectsPayload;
|
|
17962
17962
|
this.header = header;
|
|
17963
|
-
this.abort =
|
|
17963
|
+
this.abort = abort2;
|
|
17964
17964
|
socket[kWriting] = true;
|
|
17965
17965
|
}
|
|
17966
17966
|
/**
|
|
@@ -18061,11 +18061,11 @@ ${len.toString(16)}\r
|
|
|
18061
18061
|
* @returns {void}
|
|
18062
18062
|
*/
|
|
18063
18063
|
destroy(err) {
|
|
18064
|
-
const { socket, client, abort } = this;
|
|
18064
|
+
const { socket, client, abort: abort2 } = this;
|
|
18065
18065
|
socket[kWriting] = false;
|
|
18066
18066
|
if (err) {
|
|
18067
18067
|
assert3(client[kRunning] <= 1, "pipeline should only contain this request");
|
|
18068
|
-
|
|
18068
|
+
abort2(err);
|
|
18069
18069
|
}
|
|
18070
18070
|
}
|
|
18071
18071
|
};
|
|
@@ -18283,7 +18283,7 @@ var require_client_h2 = __commonJS({
|
|
|
18283
18283
|
function writeH2(client, request2) {
|
|
18284
18284
|
const requestTimeout = request2.bodyTimeout ?? client[kBodyTimeout];
|
|
18285
18285
|
const session = client[kHTTP2Session];
|
|
18286
|
-
const { method, path:
|
|
18286
|
+
const { method, path: path16, host, upgrade, expectContinue, signal, headers: reqHeaders } = request2;
|
|
18287
18287
|
let { body } = request2;
|
|
18288
18288
|
if (upgrade) {
|
|
18289
18289
|
util.errorRequest(client, request2, new Error("Upgrade not supported for H2"));
|
|
@@ -18311,7 +18311,7 @@ var require_client_h2 = __commonJS({
|
|
|
18311
18311
|
const { hostname, port: port2 } = client[kUrl];
|
|
18312
18312
|
headers[HTTP2_HEADER_AUTHORITY] = host || `${hostname}${port2 ? `:${port2}` : ""}`;
|
|
18313
18313
|
headers[HTTP2_HEADER_METHOD] = method;
|
|
18314
|
-
const
|
|
18314
|
+
const abort2 = (err) => {
|
|
18315
18315
|
if (request2.aborted || request2.completed) {
|
|
18316
18316
|
return;
|
|
18317
18317
|
}
|
|
@@ -18326,7 +18326,7 @@ var require_client_h2 = __commonJS({
|
|
|
18326
18326
|
util.destroy(body, err);
|
|
18327
18327
|
};
|
|
18328
18328
|
try {
|
|
18329
|
-
request2.onConnect(
|
|
18329
|
+
request2.onConnect(abort2);
|
|
18330
18330
|
} catch (err) {
|
|
18331
18331
|
util.errorRequest(client, request2, err);
|
|
18332
18332
|
}
|
|
@@ -18354,7 +18354,7 @@ var require_client_h2 = __commonJS({
|
|
|
18354
18354
|
stream4.setTimeout(requestTimeout);
|
|
18355
18355
|
return true;
|
|
18356
18356
|
}
|
|
18357
|
-
headers[HTTP2_HEADER_PATH] =
|
|
18357
|
+
headers[HTTP2_HEADER_PATH] = path16;
|
|
18358
18358
|
headers[HTTP2_HEADER_SCHEME] = "https";
|
|
18359
18359
|
const expectsPayload = method === "PUT" || method === "POST" || method === "PATCH";
|
|
18360
18360
|
if (body && typeof body.read === "function") {
|
|
@@ -18437,7 +18437,7 @@ var require_client_h2 = __commonJS({
|
|
|
18437
18437
|
if (session[kOpenStreams] === 0) {
|
|
18438
18438
|
session.unref();
|
|
18439
18439
|
}
|
|
18440
|
-
|
|
18440
|
+
abort2(err ?? new InformationalError("HTTP/2: stream half-closed (remote)"));
|
|
18441
18441
|
client[kQueue][client[kRunningIdx]++] = null;
|
|
18442
18442
|
client[kPendingIdx] = client[kRunningIdx];
|
|
18443
18443
|
client[kResume]();
|
|
@@ -18452,11 +18452,11 @@ var require_client_h2 = __commonJS({
|
|
|
18452
18452
|
});
|
|
18453
18453
|
stream4.once("error", function(err) {
|
|
18454
18454
|
stream4.removeAllListeners("data");
|
|
18455
|
-
|
|
18455
|
+
abort2(err);
|
|
18456
18456
|
});
|
|
18457
18457
|
stream4.once("frameError", (type2, code2) => {
|
|
18458
18458
|
stream4.removeAllListeners("data");
|
|
18459
|
-
|
|
18459
|
+
abort2(new InformationalError(`HTTP/2: "frameError" received - type ${type2}, code ${code2}`));
|
|
18460
18460
|
});
|
|
18461
18461
|
stream4.on("aborted", () => {
|
|
18462
18462
|
stream4.removeAllListeners("data");
|
|
@@ -18468,7 +18468,7 @@ var require_client_h2 = __commonJS({
|
|
|
18468
18468
|
if (session[kOpenStreams] === 0) {
|
|
18469
18469
|
session.unref();
|
|
18470
18470
|
}
|
|
18471
|
-
|
|
18471
|
+
abort2(err);
|
|
18472
18472
|
});
|
|
18473
18473
|
stream4.once("trailers", (trailers) => {
|
|
18474
18474
|
if (request2.aborted || request2.completed) {
|
|
@@ -18480,7 +18480,7 @@ var require_client_h2 = __commonJS({
|
|
|
18480
18480
|
function writeBodyH2() {
|
|
18481
18481
|
if (!body || contentLength === 0) {
|
|
18482
18482
|
writeBuffer(
|
|
18483
|
-
|
|
18483
|
+
abort2,
|
|
18484
18484
|
stream4,
|
|
18485
18485
|
null,
|
|
18486
18486
|
client,
|
|
@@ -18491,7 +18491,7 @@ var require_client_h2 = __commonJS({
|
|
|
18491
18491
|
);
|
|
18492
18492
|
} else if (util.isBuffer(body)) {
|
|
18493
18493
|
writeBuffer(
|
|
18494
|
-
|
|
18494
|
+
abort2,
|
|
18495
18495
|
stream4,
|
|
18496
18496
|
body,
|
|
18497
18497
|
client,
|
|
@@ -18503,7 +18503,7 @@ var require_client_h2 = __commonJS({
|
|
|
18503
18503
|
} else if (util.isBlobLike(body)) {
|
|
18504
18504
|
if (typeof body.stream === "function") {
|
|
18505
18505
|
writeIterable(
|
|
18506
|
-
|
|
18506
|
+
abort2,
|
|
18507
18507
|
stream4,
|
|
18508
18508
|
body.stream(),
|
|
18509
18509
|
client,
|
|
@@ -18514,7 +18514,7 @@ var require_client_h2 = __commonJS({
|
|
|
18514
18514
|
);
|
|
18515
18515
|
} else {
|
|
18516
18516
|
writeBlob(
|
|
18517
|
-
|
|
18517
|
+
abort2,
|
|
18518
18518
|
stream4,
|
|
18519
18519
|
body,
|
|
18520
18520
|
client,
|
|
@@ -18526,7 +18526,7 @@ var require_client_h2 = __commonJS({
|
|
|
18526
18526
|
}
|
|
18527
18527
|
} else if (util.isStream(body)) {
|
|
18528
18528
|
writeStream(
|
|
18529
|
-
|
|
18529
|
+
abort2,
|
|
18530
18530
|
client[kSocket],
|
|
18531
18531
|
expectsPayload,
|
|
18532
18532
|
stream4,
|
|
@@ -18537,7 +18537,7 @@ var require_client_h2 = __commonJS({
|
|
|
18537
18537
|
);
|
|
18538
18538
|
} else if (util.isIterable(body)) {
|
|
18539
18539
|
writeIterable(
|
|
18540
|
-
|
|
18540
|
+
abort2,
|
|
18541
18541
|
stream4,
|
|
18542
18542
|
body,
|
|
18543
18543
|
client,
|
|
@@ -18551,7 +18551,7 @@ var require_client_h2 = __commonJS({
|
|
|
18551
18551
|
}
|
|
18552
18552
|
}
|
|
18553
18553
|
}
|
|
18554
|
-
function writeBuffer(
|
|
18554
|
+
function writeBuffer(abort2, h2stream, body, client, request2, socket, contentLength, expectsPayload) {
|
|
18555
18555
|
try {
|
|
18556
18556
|
if (body != null && util.isBuffer(body)) {
|
|
18557
18557
|
assert3(contentLength === body.byteLength, "buffer body must have content length");
|
|
@@ -18567,10 +18567,10 @@ var require_client_h2 = __commonJS({
|
|
|
18567
18567
|
request2.onRequestSent();
|
|
18568
18568
|
client[kResume]();
|
|
18569
18569
|
} catch (error4) {
|
|
18570
|
-
|
|
18570
|
+
abort2(error4);
|
|
18571
18571
|
}
|
|
18572
18572
|
}
|
|
18573
|
-
function writeStream(
|
|
18573
|
+
function writeStream(abort2, socket, expectsPayload, h2stream, body, client, request2, contentLength) {
|
|
18574
18574
|
assert3(contentLength !== 0 || client[kRunning] === 0, "stream body cannot be pipelined");
|
|
18575
18575
|
const pipe2 = pipeline(
|
|
18576
18576
|
body,
|
|
@@ -18578,7 +18578,7 @@ var require_client_h2 = __commonJS({
|
|
|
18578
18578
|
(err) => {
|
|
18579
18579
|
if (err) {
|
|
18580
18580
|
util.destroy(pipe2, err);
|
|
18581
|
-
|
|
18581
|
+
abort2(err);
|
|
18582
18582
|
} else {
|
|
18583
18583
|
util.removeAllListeners(pipe2);
|
|
18584
18584
|
request2.onRequestSent();
|
|
@@ -18594,7 +18594,7 @@ var require_client_h2 = __commonJS({
|
|
|
18594
18594
|
request2.onBodySent(chunk4);
|
|
18595
18595
|
}
|
|
18596
18596
|
}
|
|
18597
|
-
async function writeBlob(
|
|
18597
|
+
async function writeBlob(abort2, h2stream, body, client, request2, socket, contentLength, expectsPayload) {
|
|
18598
18598
|
assert3(contentLength === body.size, "blob body must have content length");
|
|
18599
18599
|
try {
|
|
18600
18600
|
if (contentLength != null && contentLength !== body.size) {
|
|
@@ -18612,10 +18612,10 @@ var require_client_h2 = __commonJS({
|
|
|
18612
18612
|
}
|
|
18613
18613
|
client[kResume]();
|
|
18614
18614
|
} catch (err) {
|
|
18615
|
-
|
|
18615
|
+
abort2(err);
|
|
18616
18616
|
}
|
|
18617
18617
|
}
|
|
18618
|
-
async function writeIterable(
|
|
18618
|
+
async function writeIterable(abort2, h2stream, body, client, request2, socket, contentLength, expectsPayload) {
|
|
18619
18619
|
assert3(contentLength !== 0 || client[kRunning] === 0, "iterator body cannot be pipelined");
|
|
18620
18620
|
let callback = null;
|
|
18621
18621
|
function onDrain() {
|
|
@@ -18652,7 +18652,7 @@ var require_client_h2 = __commonJS({
|
|
|
18652
18652
|
}
|
|
18653
18653
|
client[kResume]();
|
|
18654
18654
|
} catch (err) {
|
|
18655
|
-
|
|
18655
|
+
abort2(err);
|
|
18656
18656
|
} finally {
|
|
18657
18657
|
h2stream.off("close", onDrain).off("drain", onDrain);
|
|
18658
18658
|
}
|
|
@@ -19448,14 +19448,14 @@ var require_pool = __commonJS({
|
|
|
19448
19448
|
this[kFactory] = factory;
|
|
19449
19449
|
this.on("connect", (origin2, targets) => {
|
|
19450
19450
|
if (clientTtl != null && clientTtl > 0) {
|
|
19451
|
-
for (const
|
|
19452
|
-
Object.assign(
|
|
19451
|
+
for (const target2 of targets) {
|
|
19452
|
+
Object.assign(target2, { ttl: Date.now() });
|
|
19453
19453
|
}
|
|
19454
19454
|
}
|
|
19455
19455
|
});
|
|
19456
19456
|
this.on("connectionError", (origin2, targets, error4) => {
|
|
19457
|
-
for (const
|
|
19458
|
-
const idx = this[kClients].indexOf(
|
|
19457
|
+
for (const target2 of targets) {
|
|
19458
|
+
const idx = this[kClients].indexOf(target2);
|
|
19459
19459
|
if (idx !== -1) {
|
|
19460
19460
|
this[kClients].splice(idx, 1);
|
|
19461
19461
|
}
|
|
@@ -19793,10 +19793,10 @@ var require_proxy_agent = __commonJS({
|
|
|
19793
19793
|
};
|
|
19794
19794
|
const {
|
|
19795
19795
|
origin,
|
|
19796
|
-
path:
|
|
19796
|
+
path: path16 = "/",
|
|
19797
19797
|
headers = {}
|
|
19798
19798
|
} = opts;
|
|
19799
|
-
opts.path = origin +
|
|
19799
|
+
opts.path = origin + path16;
|
|
19800
19800
|
if (!("host" in headers) && !("Host" in headers)) {
|
|
19801
19801
|
const { host } = new URL2(origin);
|
|
19802
19802
|
headers.host = host;
|
|
@@ -20550,7 +20550,7 @@ var require_readable = __commonJS({
|
|
|
20550
20550
|
*/
|
|
20551
20551
|
constructor({
|
|
20552
20552
|
resume: resume2,
|
|
20553
|
-
abort,
|
|
20553
|
+
abort: abort2,
|
|
20554
20554
|
contentType = "",
|
|
20555
20555
|
contentLength,
|
|
20556
20556
|
highWaterMark = 64 * 1024
|
|
@@ -20562,7 +20562,7 @@ var require_readable = __commonJS({
|
|
|
20562
20562
|
highWaterMark
|
|
20563
20563
|
});
|
|
20564
20564
|
this._readableState.dataEmitted = false;
|
|
20565
|
-
this[kAbort] =
|
|
20565
|
+
this[kAbort] = abort2;
|
|
20566
20566
|
this[kConsume] = null;
|
|
20567
20567
|
this[kBytesRead] = 0;
|
|
20568
20568
|
this[kBody] = null;
|
|
@@ -20985,17 +20985,17 @@ var require_api_request = __commonJS({
|
|
|
20985
20985
|
});
|
|
20986
20986
|
}
|
|
20987
20987
|
}
|
|
20988
|
-
onConnect(
|
|
20988
|
+
onConnect(abort2, context8) {
|
|
20989
20989
|
if (this.reason) {
|
|
20990
|
-
|
|
20990
|
+
abort2(this.reason);
|
|
20991
20991
|
return;
|
|
20992
20992
|
}
|
|
20993
20993
|
assert3(this.callback);
|
|
20994
|
-
this.abort =
|
|
20994
|
+
this.abort = abort2;
|
|
20995
20995
|
this.context = context8;
|
|
20996
20996
|
}
|
|
20997
20997
|
onHeaders(statusCode, rawHeaders, resume2, statusMessage) {
|
|
20998
|
-
const { callback, opaque, abort, context: context8, responseHeaders, highWaterMark } = this;
|
|
20998
|
+
const { callback, opaque, abort: abort2, context: context8, responseHeaders, highWaterMark } = this;
|
|
20999
20999
|
const headers = responseHeaders === "raw" ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders);
|
|
21000
21000
|
if (statusCode < 200) {
|
|
21001
21001
|
if (this.onInfo) {
|
|
@@ -21008,7 +21008,7 @@ var require_api_request = __commonJS({
|
|
|
21008
21008
|
const contentLength = parsedHeaders["content-length"];
|
|
21009
21009
|
const res = new Readable2({
|
|
21010
21010
|
resume: resume2,
|
|
21011
|
-
abort,
|
|
21011
|
+
abort: abort2,
|
|
21012
21012
|
contentType,
|
|
21013
21013
|
contentLength: this.method !== "HEAD" && contentLength ? Number(contentLength) : null,
|
|
21014
21014
|
highWaterMark
|
|
@@ -21095,7 +21095,7 @@ var require_abort_signal = __commonJS({
|
|
|
21095
21095
|
var { RequestAbortedError } = require_errors2();
|
|
21096
21096
|
var kListener = Symbol("kListener");
|
|
21097
21097
|
var kSignal = Symbol("kSignal");
|
|
21098
|
-
function
|
|
21098
|
+
function abort2(self2) {
|
|
21099
21099
|
if (self2.abort) {
|
|
21100
21100
|
self2.abort(self2[kSignal]?.reason);
|
|
21101
21101
|
} else {
|
|
@@ -21111,12 +21111,12 @@ var require_abort_signal = __commonJS({
|
|
|
21111
21111
|
return;
|
|
21112
21112
|
}
|
|
21113
21113
|
if (signal.aborted) {
|
|
21114
|
-
|
|
21114
|
+
abort2(self2);
|
|
21115
21115
|
return;
|
|
21116
21116
|
}
|
|
21117
21117
|
self2[kSignal] = signal;
|
|
21118
21118
|
self2[kListener] = () => {
|
|
21119
|
-
|
|
21119
|
+
abort2(self2);
|
|
21120
21120
|
};
|
|
21121
21121
|
addAbortListener(self2[kSignal], self2[kListener]);
|
|
21122
21122
|
}
|
|
@@ -21196,13 +21196,13 @@ var require_api_stream = __commonJS({
|
|
|
21196
21196
|
}
|
|
21197
21197
|
addSignal(this, signal);
|
|
21198
21198
|
}
|
|
21199
|
-
onConnect(
|
|
21199
|
+
onConnect(abort2, context8) {
|
|
21200
21200
|
if (this.reason) {
|
|
21201
|
-
|
|
21201
|
+
abort2(this.reason);
|
|
21202
21202
|
return;
|
|
21203
21203
|
}
|
|
21204
21204
|
assert3(this.callback);
|
|
21205
|
-
this.abort =
|
|
21205
|
+
this.abort = abort2;
|
|
21206
21206
|
this.context = context8;
|
|
21207
21207
|
}
|
|
21208
21208
|
onHeaders(statusCode, rawHeaders, resume2, statusMessage) {
|
|
@@ -21228,7 +21228,7 @@ var require_api_stream = __commonJS({
|
|
|
21228
21228
|
throw new InvalidReturnValueError("expected Writable");
|
|
21229
21229
|
}
|
|
21230
21230
|
finished(res, { readable: false }, (err) => {
|
|
21231
|
-
const { callback, res: res2, opaque: opaque2, trailers, abort } = this;
|
|
21231
|
+
const { callback, res: res2, opaque: opaque2, trailers, abort: abort2 } = this;
|
|
21232
21232
|
this.res = null;
|
|
21233
21233
|
if (err || !res2?.readable) {
|
|
21234
21234
|
util.destroy(res2, err);
|
|
@@ -21236,7 +21236,7 @@ var require_api_stream = __commonJS({
|
|
|
21236
21236
|
this.callback = null;
|
|
21237
21237
|
this.runInAsyncScope(callback, null, err || null, { opaque: opaque2, trailers });
|
|
21238
21238
|
if (err) {
|
|
21239
|
-
|
|
21239
|
+
abort2();
|
|
21240
21240
|
}
|
|
21241
21241
|
});
|
|
21242
21242
|
res.on("drain", resume2);
|
|
@@ -21395,12 +21395,12 @@ var require_api_pipeline = __commonJS({
|
|
|
21395
21395
|
}
|
|
21396
21396
|
},
|
|
21397
21397
|
destroy: (err, callback) => {
|
|
21398
|
-
const { body, req, res, ret, abort } = this;
|
|
21398
|
+
const { body, req, res, ret, abort: abort2 } = this;
|
|
21399
21399
|
if (!err && !ret._readableState.endEmitted) {
|
|
21400
21400
|
err = new RequestAbortedError();
|
|
21401
21401
|
}
|
|
21402
|
-
if (
|
|
21403
|
-
|
|
21402
|
+
if (abort2 && err) {
|
|
21403
|
+
abort2();
|
|
21404
21404
|
}
|
|
21405
21405
|
util.destroy(body, err);
|
|
21406
21406
|
util.destroy(req, err);
|
|
@@ -21415,14 +21415,14 @@ var require_api_pipeline = __commonJS({
|
|
|
21415
21415
|
this.res = null;
|
|
21416
21416
|
addSignal(this, signal);
|
|
21417
21417
|
}
|
|
21418
|
-
onConnect(
|
|
21418
|
+
onConnect(abort2, context8) {
|
|
21419
21419
|
const { res } = this;
|
|
21420
21420
|
if (this.reason) {
|
|
21421
|
-
|
|
21421
|
+
abort2(this.reason);
|
|
21422
21422
|
return;
|
|
21423
21423
|
}
|
|
21424
21424
|
assert3(!res, "pipeline cannot be retried");
|
|
21425
|
-
this.abort =
|
|
21425
|
+
this.abort = abort2;
|
|
21426
21426
|
this.context = context8;
|
|
21427
21427
|
}
|
|
21428
21428
|
onHeaders(statusCode, rawHeaders, resume2) {
|
|
@@ -21527,13 +21527,13 @@ var require_api_upgrade = __commonJS({
|
|
|
21527
21527
|
this.context = null;
|
|
21528
21528
|
addSignal(this, signal);
|
|
21529
21529
|
}
|
|
21530
|
-
onConnect(
|
|
21530
|
+
onConnect(abort2, context8) {
|
|
21531
21531
|
if (this.reason) {
|
|
21532
|
-
|
|
21532
|
+
abort2(this.reason);
|
|
21533
21533
|
return;
|
|
21534
21534
|
}
|
|
21535
21535
|
assert3(this.callback);
|
|
21536
|
-
this.abort =
|
|
21536
|
+
this.abort = abort2;
|
|
21537
21537
|
this.context = null;
|
|
21538
21538
|
}
|
|
21539
21539
|
onHeaders() {
|
|
@@ -21618,13 +21618,13 @@ var require_api_connect = __commonJS({
|
|
|
21618
21618
|
this.abort = null;
|
|
21619
21619
|
addSignal(this, signal);
|
|
21620
21620
|
}
|
|
21621
|
-
onConnect(
|
|
21621
|
+
onConnect(abort2, context8) {
|
|
21622
21622
|
if (this.reason) {
|
|
21623
|
-
|
|
21623
|
+
abort2(this.reason);
|
|
21624
21624
|
return;
|
|
21625
21625
|
}
|
|
21626
21626
|
assert3(this.callback);
|
|
21627
|
-
this.abort =
|
|
21627
|
+
this.abort = abort2;
|
|
21628
21628
|
this.context = context8;
|
|
21629
21629
|
}
|
|
21630
21630
|
onHeaders() {
|
|
@@ -21850,20 +21850,20 @@ var require_mock_utils = __commonJS({
|
|
|
21850
21850
|
}
|
|
21851
21851
|
return normalizedQp;
|
|
21852
21852
|
}
|
|
21853
|
-
function safeUrl(
|
|
21854
|
-
if (typeof
|
|
21855
|
-
return
|
|
21853
|
+
function safeUrl(path16) {
|
|
21854
|
+
if (typeof path16 !== "string") {
|
|
21855
|
+
return path16;
|
|
21856
21856
|
}
|
|
21857
|
-
const pathSegments =
|
|
21857
|
+
const pathSegments = path16.split("?", 3);
|
|
21858
21858
|
if (pathSegments.length !== 2) {
|
|
21859
|
-
return
|
|
21859
|
+
return path16;
|
|
21860
21860
|
}
|
|
21861
21861
|
const qp = new URLSearchParams(pathSegments.pop());
|
|
21862
21862
|
qp.sort();
|
|
21863
21863
|
return [...pathSegments, qp.toString()].join("?");
|
|
21864
21864
|
}
|
|
21865
|
-
function matchKey(mockDispatch2, { path:
|
|
21866
|
-
const pathMatch = matchValue(mockDispatch2.path,
|
|
21865
|
+
function matchKey(mockDispatch2, { path: path16, method, body, headers }) {
|
|
21866
|
+
const pathMatch = matchValue(mockDispatch2.path, path16);
|
|
21867
21867
|
const methodMatch = matchValue(mockDispatch2.method, method);
|
|
21868
21868
|
const bodyMatch = typeof mockDispatch2.body !== "undefined" ? matchValue(mockDispatch2.body, body) : true;
|
|
21869
21869
|
const headersMatch = matchHeaders(mockDispatch2, headers);
|
|
@@ -21888,8 +21888,8 @@ var require_mock_utils = __commonJS({
|
|
|
21888
21888
|
const basePath = key.query ? serializePathWithQuery(key.path, key.query) : key.path;
|
|
21889
21889
|
const resolvedPath = typeof basePath === "string" ? safeUrl(basePath) : basePath;
|
|
21890
21890
|
const resolvedPathWithoutTrailingSlash = removeTrailingSlash(resolvedPath);
|
|
21891
|
-
let matchedMockDispatches = mockDispatches.filter(({ consumed }) => !consumed).filter(({ path:
|
|
21892
|
-
return ignoreTrailingSlash ? matchValue(removeTrailingSlash(safeUrl(
|
|
21891
|
+
let matchedMockDispatches = mockDispatches.filter(({ consumed }) => !consumed).filter(({ path: path16, ignoreTrailingSlash }) => {
|
|
21892
|
+
return ignoreTrailingSlash ? matchValue(removeTrailingSlash(safeUrl(path16)), resolvedPathWithoutTrailingSlash) : matchValue(safeUrl(path16), resolvedPath);
|
|
21893
21893
|
});
|
|
21894
21894
|
if (matchedMockDispatches.length === 0) {
|
|
21895
21895
|
throw new MockNotMatchedError(`Mock dispatch not matched for path '${resolvedPath}'`);
|
|
@@ -21927,19 +21927,19 @@ var require_mock_utils = __commonJS({
|
|
|
21927
21927
|
mockDispatches.splice(index, 1);
|
|
21928
21928
|
}
|
|
21929
21929
|
}
|
|
21930
|
-
function removeTrailingSlash(
|
|
21931
|
-
while (
|
|
21932
|
-
|
|
21930
|
+
function removeTrailingSlash(path16) {
|
|
21931
|
+
while (path16.endsWith("/")) {
|
|
21932
|
+
path16 = path16.slice(0, -1);
|
|
21933
21933
|
}
|
|
21934
|
-
if (
|
|
21935
|
-
|
|
21934
|
+
if (path16.length === 0) {
|
|
21935
|
+
path16 = "/";
|
|
21936
21936
|
}
|
|
21937
|
-
return
|
|
21937
|
+
return path16;
|
|
21938
21938
|
}
|
|
21939
21939
|
function buildKey(opts) {
|
|
21940
|
-
const { path:
|
|
21940
|
+
const { path: path16, method, body, headers, query } = opts;
|
|
21941
21941
|
return {
|
|
21942
|
-
path:
|
|
21942
|
+
path: path16,
|
|
21943
21943
|
method,
|
|
21944
21944
|
body,
|
|
21945
21945
|
headers,
|
|
@@ -22591,10 +22591,10 @@ var require_pending_interceptors_formatter = __commonJS({
|
|
|
22591
22591
|
}
|
|
22592
22592
|
format(pendingInterceptors) {
|
|
22593
22593
|
const withPrettyHeaders = pendingInterceptors.map(
|
|
22594
|
-
({ method, path:
|
|
22594
|
+
({ method, path: path16, data: { statusCode }, persist, times: times2, timesInvoked, origin }) => ({
|
|
22595
22595
|
Method: method,
|
|
22596
22596
|
Origin: origin,
|
|
22597
|
-
Path:
|
|
22597
|
+
Path: path16,
|
|
22598
22598
|
"Status code": statusCode,
|
|
22599
22599
|
Persistent: persist ? PERSISTENT : NOT_PERSISTENT,
|
|
22600
22600
|
Invocations: timesInvoked,
|
|
@@ -22673,9 +22673,9 @@ var require_mock_agent = __commonJS({
|
|
|
22673
22673
|
const acceptNonStandardSearchParameters = this[kMockAgentAcceptsNonStandardSearchParameters];
|
|
22674
22674
|
const dispatchOpts = { ...opts };
|
|
22675
22675
|
if (acceptNonStandardSearchParameters && dispatchOpts.path) {
|
|
22676
|
-
const [
|
|
22676
|
+
const [path16, searchParams] = dispatchOpts.path.split("?");
|
|
22677
22677
|
const normalizedSearchParams = normalizeSearchParams(searchParams, acceptNonStandardSearchParameters);
|
|
22678
|
-
dispatchOpts.path = `${
|
|
22678
|
+
dispatchOpts.path = `${path16}?${normalizedSearchParams}`;
|
|
22679
22679
|
}
|
|
22680
22680
|
return this[kAgent].dispatch(dispatchOpts, handler);
|
|
22681
22681
|
}
|
|
@@ -22793,7 +22793,7 @@ ${pendingInterceptorsFormatter.format(pending3)}`.trim()
|
|
|
22793
22793
|
var require_snapshot_recorder = __commonJS({
|
|
22794
22794
|
"node_modules/.pnpm/undici@7.13.0/node_modules/undici/lib/mock/snapshot-recorder.js"(exports, module) {
|
|
22795
22795
|
var { writeFile: writeFile3, readFile: readFile3, mkdir: mkdir2 } = __require("fs/promises");
|
|
22796
|
-
var { dirname:
|
|
22796
|
+
var { dirname: dirname4, resolve: resolve7 } = __require("path");
|
|
22797
22797
|
var { InvalidArgumentError, UndiciError } = require_errors2();
|
|
22798
22798
|
function formatRequestKey(opts, cachedSets, matchOptions2 = {}) {
|
|
22799
22799
|
const url2 = new URL(opts.path, opts.origin);
|
|
@@ -23013,12 +23013,12 @@ var require_snapshot_recorder = __commonJS({
|
|
|
23013
23013
|
* Loads snapshots from file
|
|
23014
23014
|
*/
|
|
23015
23015
|
async loadSnapshots(filePath) {
|
|
23016
|
-
const
|
|
23017
|
-
if (!
|
|
23016
|
+
const path16 = filePath || this.snapshotPath;
|
|
23017
|
+
if (!path16) {
|
|
23018
23018
|
throw new InvalidArgumentError("Snapshot path is required");
|
|
23019
23019
|
}
|
|
23020
23020
|
try {
|
|
23021
|
-
const data = await readFile3(resolve7(
|
|
23021
|
+
const data = await readFile3(resolve7(path16), "utf8");
|
|
23022
23022
|
const parsed = JSON.parse(data);
|
|
23023
23023
|
if (Array.isArray(parsed)) {
|
|
23024
23024
|
this.snapshots.clear();
|
|
@@ -23034,7 +23034,7 @@ var require_snapshot_recorder = __commonJS({
|
|
|
23034
23034
|
this.snapshots.clear();
|
|
23035
23035
|
this.loaded = true;
|
|
23036
23036
|
} else {
|
|
23037
|
-
throw new UndiciError(`Failed to load snapshots from ${
|
|
23037
|
+
throw new UndiciError(`Failed to load snapshots from ${path16}`, { cause: error4 });
|
|
23038
23038
|
}
|
|
23039
23039
|
}
|
|
23040
23040
|
}
|
|
@@ -23042,12 +23042,12 @@ var require_snapshot_recorder = __commonJS({
|
|
|
23042
23042
|
* Saves snapshots to file
|
|
23043
23043
|
*/
|
|
23044
23044
|
async saveSnapshots(filePath) {
|
|
23045
|
-
const
|
|
23046
|
-
if (!
|
|
23045
|
+
const path16 = filePath || this.snapshotPath;
|
|
23046
|
+
if (!path16) {
|
|
23047
23047
|
throw new InvalidArgumentError("Snapshot path is required");
|
|
23048
23048
|
}
|
|
23049
|
-
const resolvedPath = resolve7(
|
|
23050
|
-
await mkdir2(
|
|
23049
|
+
const resolvedPath = resolve7(path16);
|
|
23050
|
+
await mkdir2(dirname4(resolvedPath), { recursive: true });
|
|
23051
23051
|
const data = Array.from(this.snapshots.entries()).map(([hash2, snapshot]) => ({
|
|
23052
23052
|
hash: hash2,
|
|
23053
23053
|
snapshot
|
|
@@ -23623,15 +23623,15 @@ var require_redirect_handler = __commonJS({
|
|
|
23623
23623
|
return;
|
|
23624
23624
|
}
|
|
23625
23625
|
const { origin, pathname, search } = util.parseURL(new URL(this.location, this.opts.origin && new URL(this.opts.path, this.opts.origin)));
|
|
23626
|
-
const
|
|
23627
|
-
const redirectUrlString = `${origin}${
|
|
23626
|
+
const path16 = search ? `${pathname}${search}` : pathname;
|
|
23627
|
+
const redirectUrlString = `${origin}${path16}`;
|
|
23628
23628
|
for (const historyUrl of this.history) {
|
|
23629
23629
|
if (historyUrl.toString() === redirectUrlString) {
|
|
23630
23630
|
throw new InvalidArgumentError(`Redirect loop detected. Cannot redirect to ${origin}. This typically happens when using a Client or Pool with cross-origin redirects. Use an Agent for cross-origin redirects.`);
|
|
23631
23631
|
}
|
|
23632
23632
|
}
|
|
23633
23633
|
this.opts.headers = cleanRequestHeaders(this.opts.headers, statusCode === 303, this.opts.origin !== origin);
|
|
23634
|
-
this.opts.path =
|
|
23634
|
+
this.opts.path = path16;
|
|
23635
23635
|
this.opts.origin = origin;
|
|
23636
23636
|
this.opts.query = null;
|
|
23637
23637
|
}
|
|
@@ -25899,8 +25899,8 @@ var require_headers = __commonJS({
|
|
|
25899
25899
|
}
|
|
25900
25900
|
return getHeadersList(headers).append(name, value5, false);
|
|
25901
25901
|
}
|
|
25902
|
-
function headersListSortAndCombine(
|
|
25903
|
-
const headersList = getHeadersList(
|
|
25902
|
+
function headersListSortAndCombine(target2) {
|
|
25903
|
+
const headersList = getHeadersList(target2);
|
|
25904
25904
|
if (!headersList) {
|
|
25905
25905
|
return [];
|
|
25906
25906
|
}
|
|
@@ -26232,8 +26232,8 @@ var require_headers = __commonJS({
|
|
|
26232
26232
|
* @param {Headers} target
|
|
26233
26233
|
* @param {HeadersList} list
|
|
26234
26234
|
*/
|
|
26235
|
-
static setHeadersList(
|
|
26236
|
-
|
|
26235
|
+
static setHeadersList(target2, list4) {
|
|
26236
|
+
target2.#headersList = list4;
|
|
26237
26237
|
}
|
|
26238
26238
|
};
|
|
26239
26239
|
var { getHeadersGuard, setHeadersGuard, getHeadersList, setHeadersList } = Headers;
|
|
@@ -26342,21 +26342,21 @@ var require_response = __commonJS({
|
|
|
26342
26342
|
return responseObject;
|
|
26343
26343
|
}
|
|
26344
26344
|
// Creates a redirect Response that redirects to url with status status.
|
|
26345
|
-
static redirect(url2,
|
|
26345
|
+
static redirect(url2, status3 = 302) {
|
|
26346
26346
|
webidl.argumentLengthCheck(arguments, 1, "Response.redirect");
|
|
26347
26347
|
url2 = webidl.converters.USVString(url2);
|
|
26348
|
-
|
|
26348
|
+
status3 = webidl.converters["unsigned short"](status3);
|
|
26349
26349
|
let parsedURL;
|
|
26350
26350
|
try {
|
|
26351
26351
|
parsedURL = new URL(url2, relevantRealm.settingsObject.baseUrl);
|
|
26352
26352
|
} catch (err) {
|
|
26353
26353
|
throw new TypeError(`Failed to parse URL from ${url2}`, { cause: err });
|
|
26354
26354
|
}
|
|
26355
|
-
if (!redirectStatusSet.has(
|
|
26356
|
-
throw new RangeError(`Invalid status code ${
|
|
26355
|
+
if (!redirectStatusSet.has(status3)) {
|
|
26356
|
+
throw new RangeError(`Invalid status code ${status3}`);
|
|
26357
26357
|
}
|
|
26358
26358
|
const responseObject = fromInnerResponse(makeResponse({}), "immutable");
|
|
26359
|
-
responseObject.#state.status =
|
|
26359
|
+
responseObject.#state.status = status3;
|
|
26360
26360
|
const value5 = isomorphicEncode(URLSerializer(parsedURL));
|
|
26361
26361
|
responseObject.#state.headersList.append("location", value5, true);
|
|
26362
26362
|
return responseObject;
|
|
@@ -26566,12 +26566,12 @@ var require_response = __commonJS({
|
|
|
26566
26566
|
...state
|
|
26567
26567
|
};
|
|
26568
26568
|
return new Proxy(response, {
|
|
26569
|
-
get(
|
|
26570
|
-
return p3 in state ? state[p3] :
|
|
26569
|
+
get(target2, p3) {
|
|
26570
|
+
return p3 in state ? state[p3] : target2[p3];
|
|
26571
26571
|
},
|
|
26572
|
-
set(
|
|
26572
|
+
set(target2, p3, value5) {
|
|
26573
26573
|
assert3(!(p3 in state));
|
|
26574
|
-
|
|
26574
|
+
target2[p3] = value5;
|
|
26575
26575
|
return true;
|
|
26576
26576
|
}
|
|
26577
26577
|
});
|
|
@@ -26741,8 +26741,8 @@ var require_request2 = __commonJS({
|
|
|
26741
26741
|
var assert3 = __require("assert");
|
|
26742
26742
|
var { getMaxListeners, setMaxListeners, defaultMaxListeners } = __require("events");
|
|
26743
26743
|
var kAbortController = Symbol("abortController");
|
|
26744
|
-
var requestFinalizer = new FinalizationRegistry(({ signal, abort }) => {
|
|
26745
|
-
signal.removeEventListener("abort",
|
|
26744
|
+
var requestFinalizer = new FinalizationRegistry(({ signal, abort: abort2 }) => {
|
|
26745
|
+
signal.removeEventListener("abort", abort2);
|
|
26746
26746
|
});
|
|
26747
26747
|
var dependentControllerMap = /* @__PURE__ */ new WeakMap();
|
|
26748
26748
|
var abortSignalHasEventHandlerLeakWarning;
|
|
@@ -26752,12 +26752,12 @@ var require_request2 = __commonJS({
|
|
|
26752
26752
|
abortSignalHasEventHandlerLeakWarning = false;
|
|
26753
26753
|
}
|
|
26754
26754
|
function buildAbort(acRef) {
|
|
26755
|
-
return
|
|
26756
|
-
function
|
|
26755
|
+
return abort2;
|
|
26756
|
+
function abort2() {
|
|
26757
26757
|
const ac = acRef.deref();
|
|
26758
26758
|
if (ac !== void 0) {
|
|
26759
|
-
requestFinalizer.unregister(
|
|
26760
|
-
this.removeEventListener("abort",
|
|
26759
|
+
requestFinalizer.unregister(abort2);
|
|
26760
|
+
this.removeEventListener("abort", abort2);
|
|
26761
26761
|
ac.abort(this.reason);
|
|
26762
26762
|
const controllerList = dependentControllerMap.get(ac.signal);
|
|
26763
26763
|
if (controllerList !== void 0) {
|
|
@@ -26977,12 +26977,12 @@ var require_request2 = __commonJS({
|
|
|
26977
26977
|
} else {
|
|
26978
26978
|
this[kAbortController] = ac;
|
|
26979
26979
|
const acRef = new WeakRef(ac);
|
|
26980
|
-
const
|
|
26980
|
+
const abort2 = buildAbort(acRef);
|
|
26981
26981
|
if (abortSignalHasEventHandlerLeakWarning && getMaxListeners(signal) === defaultMaxListeners) {
|
|
26982
26982
|
setMaxListeners(1500, signal);
|
|
26983
26983
|
}
|
|
26984
|
-
util.addAbortListener(signal,
|
|
26985
|
-
requestFinalizer.register(ac, { signal, abort },
|
|
26984
|
+
util.addAbortListener(signal, abort2);
|
|
26985
|
+
requestFinalizer.register(ac, { signal, abort: abort2 }, abort2);
|
|
26986
26986
|
}
|
|
26987
26987
|
}
|
|
26988
26988
|
this.#headers = new Headers(kConstruct);
|
|
@@ -28200,10 +28200,10 @@ var require_fetch = __commonJS({
|
|
|
28200
28200
|
fetchParams.controller.connection = {
|
|
28201
28201
|
abort: null,
|
|
28202
28202
|
destroyed: false,
|
|
28203
|
-
destroy(err,
|
|
28203
|
+
destroy(err, abort2 = true) {
|
|
28204
28204
|
if (!this.destroyed) {
|
|
28205
28205
|
this.destroyed = true;
|
|
28206
|
-
if (
|
|
28206
|
+
if (abort2) {
|
|
28207
28207
|
this.abort?.(err ?? new DOMException("The operation was aborted.", "AbortError"));
|
|
28208
28208
|
}
|
|
28209
28209
|
}
|
|
@@ -28256,13 +28256,13 @@ var require_fetch = __commonJS({
|
|
|
28256
28256
|
})();
|
|
28257
28257
|
}
|
|
28258
28258
|
try {
|
|
28259
|
-
const { body, status:
|
|
28259
|
+
const { body, status: status3, statusText, headersList, socket } = await dispatch({ body: requestBody });
|
|
28260
28260
|
if (socket) {
|
|
28261
|
-
response = makeResponse({ status:
|
|
28261
|
+
response = makeResponse({ status: status3, statusText, headersList, socket });
|
|
28262
28262
|
} else {
|
|
28263
28263
|
const iterator = body[Symbol.asyncIterator]();
|
|
28264
28264
|
fetchParams.controller.next = () => iterator.next();
|
|
28265
|
-
response = makeResponse({ status:
|
|
28265
|
+
response = makeResponse({ status: status3, statusText, headersList });
|
|
28266
28266
|
}
|
|
28267
28267
|
} catch (err) {
|
|
28268
28268
|
if (err.name === "AbortError") {
|
|
@@ -28368,22 +28368,22 @@ var require_fetch = __commonJS({
|
|
|
28368
28368
|
{
|
|
28369
28369
|
body: null,
|
|
28370
28370
|
abort: null,
|
|
28371
|
-
onConnect(
|
|
28371
|
+
onConnect(abort2) {
|
|
28372
28372
|
const { connection } = fetchParams.controller;
|
|
28373
28373
|
timingInfo.finalConnectionTimingInfo = clampAndCoarsenConnectionTimingInfo(void 0, timingInfo.postRedirectStartTime, fetchParams.crossOriginIsolatedCapability);
|
|
28374
28374
|
if (connection.destroyed) {
|
|
28375
|
-
|
|
28375
|
+
abort2(new DOMException("The operation was aborted.", "AbortError"));
|
|
28376
28376
|
} else {
|
|
28377
|
-
fetchParams.controller.on("terminated",
|
|
28378
|
-
this.abort = connection.abort =
|
|
28377
|
+
fetchParams.controller.on("terminated", abort2);
|
|
28378
|
+
this.abort = connection.abort = abort2;
|
|
28379
28379
|
}
|
|
28380
28380
|
timingInfo.finalNetworkRequestStartTime = coarsenedSharedCurrentTime(fetchParams.crossOriginIsolatedCapability);
|
|
28381
28381
|
},
|
|
28382
28382
|
onResponseStarted() {
|
|
28383
28383
|
timingInfo.finalNetworkResponseStartTime = coarsenedSharedCurrentTime(fetchParams.crossOriginIsolatedCapability);
|
|
28384
28384
|
},
|
|
28385
|
-
onHeaders(
|
|
28386
|
-
if (
|
|
28385
|
+
onHeaders(status3, rawHeaders, resume2, statusText) {
|
|
28386
|
+
if (status3 < 200) {
|
|
28387
28387
|
return false;
|
|
28388
28388
|
}
|
|
28389
28389
|
let codings = [];
|
|
@@ -28398,8 +28398,8 @@ var require_fetch = __commonJS({
|
|
|
28398
28398
|
const location = headersList.get("location", true);
|
|
28399
28399
|
this.body = new Readable2({ read: resume2 });
|
|
28400
28400
|
const decoders = [];
|
|
28401
|
-
const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(
|
|
28402
|
-
if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(
|
|
28401
|
+
const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status3);
|
|
28402
|
+
if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status3) && !willFollow) {
|
|
28403
28403
|
for (let i = codings.length - 1; i >= 0; --i) {
|
|
28404
28404
|
const coding = codings[i];
|
|
28405
28405
|
if (coding === "x-gzip" || coding === "gzip") {
|
|
@@ -28434,7 +28434,7 @@ var require_fetch = __commonJS({
|
|
|
28434
28434
|
}
|
|
28435
28435
|
const onError4 = this.onError.bind(this);
|
|
28436
28436
|
resolve7({
|
|
28437
|
-
status:
|
|
28437
|
+
status: status3,
|
|
28438
28438
|
statusText,
|
|
28439
28439
|
headersList,
|
|
28440
28440
|
body: decoders.length ? pipeline(this.body, ...decoders, (err) => {
|
|
@@ -28468,8 +28468,8 @@ var require_fetch = __commonJS({
|
|
|
28468
28468
|
fetchParams.controller.terminate(error4);
|
|
28469
28469
|
reject(error4);
|
|
28470
28470
|
},
|
|
28471
|
-
onUpgrade(
|
|
28472
|
-
if (
|
|
28471
|
+
onUpgrade(status3, rawHeaders, socket) {
|
|
28472
|
+
if (status3 !== 101) {
|
|
28473
28473
|
return;
|
|
28474
28474
|
}
|
|
28475
28475
|
const headersList = new HeadersList();
|
|
@@ -28477,8 +28477,8 @@ var require_fetch = __commonJS({
|
|
|
28477
28477
|
headersList.append(bufferToLowerCasedHeaderName(rawHeaders[i]), rawHeaders[i + 1].toString("latin1"), true);
|
|
28478
28478
|
}
|
|
28479
28479
|
resolve7({
|
|
28480
|
-
status:
|
|
28481
|
-
statusText: STATUS_CODES[
|
|
28480
|
+
status: status3,
|
|
28481
|
+
statusText: STATUS_CODES[status3],
|
|
28482
28482
|
headersList,
|
|
28483
28483
|
socket
|
|
28484
28484
|
});
|
|
@@ -29255,9 +29255,9 @@ var require_util4 = __commonJS({
|
|
|
29255
29255
|
}
|
|
29256
29256
|
}
|
|
29257
29257
|
}
|
|
29258
|
-
function validateCookiePath(
|
|
29259
|
-
for (let i = 0; i <
|
|
29260
|
-
const code2 =
|
|
29258
|
+
function validateCookiePath(path16) {
|
|
29259
|
+
for (let i = 0; i < path16.length; ++i) {
|
|
29260
|
+
const code2 = path16.charCodeAt(i);
|
|
29261
29261
|
if (code2 < 32 || // exclude CTLs (0-31)
|
|
29262
29262
|
code2 === 127 || // DEL
|
|
29263
29263
|
code2 === 59) {
|
|
@@ -29978,9 +29978,9 @@ var require_util5 = __commonJS({
|
|
|
29978
29978
|
function isClosed(readyState) {
|
|
29979
29979
|
return readyState === states.CLOSED;
|
|
29980
29980
|
}
|
|
29981
|
-
function fireEvent(e,
|
|
29981
|
+
function fireEvent(e, target2, eventFactory = (type2, init3) => new Event(type2, init3), eventInitDict = {}) {
|
|
29982
29982
|
const event = eventFactory(e, eventInitDict);
|
|
29983
|
-
|
|
29983
|
+
target2.dispatchEvent(event);
|
|
29984
29984
|
}
|
|
29985
29985
|
function websocketMessageReceived(handler, type2, data) {
|
|
29986
29986
|
handler.onMessage(type2, data);
|
|
@@ -32314,11 +32314,11 @@ var require_undici = __commonJS({
|
|
|
32314
32314
|
if (typeof opts.path !== "string") {
|
|
32315
32315
|
throw new InvalidArgumentError("invalid opts.path");
|
|
32316
32316
|
}
|
|
32317
|
-
let
|
|
32317
|
+
let path16 = opts.path;
|
|
32318
32318
|
if (!opts.path.startsWith("/")) {
|
|
32319
|
-
|
|
32319
|
+
path16 = `/${path16}`;
|
|
32320
32320
|
}
|
|
32321
|
-
url2 = new URL(util.parseOrigin(url2).origin +
|
|
32321
|
+
url2 = new URL(util.parseOrigin(url2).origin + path16);
|
|
32322
32322
|
} else {
|
|
32323
32323
|
if (!opts) {
|
|
32324
32324
|
opts = typeof url2 === "object" ? url2 : {};
|
|
@@ -34859,22 +34859,22 @@ var require_dist2 = __commonJS({
|
|
|
34859
34859
|
}
|
|
34860
34860
|
return keys6;
|
|
34861
34861
|
}
|
|
34862
|
-
function _objectSpread(
|
|
34862
|
+
function _objectSpread(target2) {
|
|
34863
34863
|
for (var i = 1; i < arguments.length; i++) {
|
|
34864
34864
|
var source = arguments[i] != null ? arguments[i] : {};
|
|
34865
34865
|
if (i % 2) {
|
|
34866
34866
|
ownKeys(Object(source), true).forEach(function(key) {
|
|
34867
|
-
_defineProperty(
|
|
34867
|
+
_defineProperty(target2, key, source[key]);
|
|
34868
34868
|
});
|
|
34869
34869
|
} else if (Object.getOwnPropertyDescriptors) {
|
|
34870
|
-
Object.defineProperties(
|
|
34870
|
+
Object.defineProperties(target2, Object.getOwnPropertyDescriptors(source));
|
|
34871
34871
|
} else {
|
|
34872
34872
|
ownKeys(Object(source)).forEach(function(key) {
|
|
34873
|
-
Object.defineProperty(
|
|
34873
|
+
Object.defineProperty(target2, key, Object.getOwnPropertyDescriptor(source, key));
|
|
34874
34874
|
});
|
|
34875
34875
|
}
|
|
34876
34876
|
}
|
|
34877
|
-
return
|
|
34877
|
+
return target2;
|
|
34878
34878
|
}
|
|
34879
34879
|
function _defineProperty(obj, key, value5) {
|
|
34880
34880
|
if (key in obj) {
|
|
@@ -38526,11 +38526,11 @@ var require_lodash = __commonJS({
|
|
|
38526
38526
|
return isFunction3(object[key]);
|
|
38527
38527
|
});
|
|
38528
38528
|
}
|
|
38529
|
-
function baseGet(object,
|
|
38530
|
-
|
|
38531
|
-
var index = 0, length4 =
|
|
38529
|
+
function baseGet(object, path16) {
|
|
38530
|
+
path16 = castPath(path16, object);
|
|
38531
|
+
var index = 0, length4 = path16.length;
|
|
38532
38532
|
while (object != null && index < length4) {
|
|
38533
|
-
object = object[toKey(
|
|
38533
|
+
object = object[toKey(path16[index++])];
|
|
38534
38534
|
}
|
|
38535
38535
|
return index && index == length4 ? object : undefined2;
|
|
38536
38536
|
}
|
|
@@ -38594,10 +38594,10 @@ var require_lodash = __commonJS({
|
|
|
38594
38594
|
});
|
|
38595
38595
|
return accumulator;
|
|
38596
38596
|
}
|
|
38597
|
-
function baseInvoke(object,
|
|
38598
|
-
|
|
38599
|
-
object = parent(object,
|
|
38600
|
-
var func = object == null ? object : object[toKey(last5(
|
|
38597
|
+
function baseInvoke(object, path16, args2) {
|
|
38598
|
+
path16 = castPath(path16, object);
|
|
38599
|
+
object = parent(object, path16);
|
|
38600
|
+
var func = object == null ? object : object[toKey(last5(path16))];
|
|
38601
38601
|
return func == null ? undefined2 : apply(func, object, args2);
|
|
38602
38602
|
}
|
|
38603
38603
|
function baseIsArguments(value5) {
|
|
@@ -38753,13 +38753,13 @@ var require_lodash = __commonJS({
|
|
|
38753
38753
|
return object === source || baseIsMatch(object, source, matchData);
|
|
38754
38754
|
};
|
|
38755
38755
|
}
|
|
38756
|
-
function baseMatchesProperty(
|
|
38757
|
-
if (isKey(
|
|
38758
|
-
return matchesStrictComparable(toKey(
|
|
38756
|
+
function baseMatchesProperty(path16, srcValue) {
|
|
38757
|
+
if (isKey(path16) && isStrictComparable(srcValue)) {
|
|
38758
|
+
return matchesStrictComparable(toKey(path16), srcValue);
|
|
38759
38759
|
}
|
|
38760
38760
|
return function(object) {
|
|
38761
|
-
var objValue = get16(object,
|
|
38762
|
-
return objValue === undefined2 && objValue === srcValue ? hasIn(object,
|
|
38761
|
+
var objValue = get16(object, path16);
|
|
38762
|
+
return objValue === undefined2 && objValue === srcValue ? hasIn(object, path16) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
|
|
38763
38763
|
};
|
|
38764
38764
|
}
|
|
38765
38765
|
function baseMerge(object, source, srcIndex, customizer, stack) {
|
|
@@ -38856,23 +38856,23 @@ var require_lodash = __commonJS({
|
|
|
38856
38856
|
});
|
|
38857
38857
|
}
|
|
38858
38858
|
function basePick(object, paths) {
|
|
38859
|
-
return basePickBy(object, paths, function(value5,
|
|
38860
|
-
return hasIn(object,
|
|
38859
|
+
return basePickBy(object, paths, function(value5, path16) {
|
|
38860
|
+
return hasIn(object, path16);
|
|
38861
38861
|
});
|
|
38862
38862
|
}
|
|
38863
38863
|
function basePickBy(object, paths, predicate) {
|
|
38864
38864
|
var index = -1, length4 = paths.length, result2 = {};
|
|
38865
38865
|
while (++index < length4) {
|
|
38866
|
-
var
|
|
38867
|
-
if (predicate(value5,
|
|
38868
|
-
baseSet(result2, castPath(
|
|
38866
|
+
var path16 = paths[index], value5 = baseGet(object, path16);
|
|
38867
|
+
if (predicate(value5, path16)) {
|
|
38868
|
+
baseSet(result2, castPath(path16, object), value5);
|
|
38869
38869
|
}
|
|
38870
38870
|
}
|
|
38871
38871
|
return result2;
|
|
38872
38872
|
}
|
|
38873
|
-
function basePropertyDeep(
|
|
38873
|
+
function basePropertyDeep(path16) {
|
|
38874
38874
|
return function(object) {
|
|
38875
|
-
return baseGet(object,
|
|
38875
|
+
return baseGet(object, path16);
|
|
38876
38876
|
};
|
|
38877
38877
|
}
|
|
38878
38878
|
function basePullAll(array8, values4, iteratee2, comparator) {
|
|
@@ -38946,14 +38946,14 @@ var require_lodash = __commonJS({
|
|
|
38946
38946
|
var array8 = values3(collection);
|
|
38947
38947
|
return shuffleSelf(array8, baseClamp(n, 0, array8.length));
|
|
38948
38948
|
}
|
|
38949
|
-
function baseSet(object,
|
|
38949
|
+
function baseSet(object, path16, value5, customizer) {
|
|
38950
38950
|
if (!isObject2(object)) {
|
|
38951
38951
|
return object;
|
|
38952
38952
|
}
|
|
38953
|
-
|
|
38954
|
-
var index = -1, length4 =
|
|
38953
|
+
path16 = castPath(path16, object);
|
|
38954
|
+
var index = -1, length4 = path16.length, lastIndex = length4 - 1, nested3 = object;
|
|
38955
38955
|
while (nested3 != null && ++index < length4) {
|
|
38956
|
-
var key = toKey(
|
|
38956
|
+
var key = toKey(path16[index]), newValue = value5;
|
|
38957
38957
|
if (key === "__proto__" || key === "constructor" || key === "prototype") {
|
|
38958
38958
|
return object;
|
|
38959
38959
|
}
|
|
@@ -38961,7 +38961,7 @@ var require_lodash = __commonJS({
|
|
|
38961
38961
|
var objValue = nested3[key];
|
|
38962
38962
|
newValue = customizer ? customizer(objValue, key, nested3) : undefined2;
|
|
38963
38963
|
if (newValue === undefined2) {
|
|
38964
|
-
newValue = isObject2(objValue) ? objValue : isIndex(
|
|
38964
|
+
newValue = isObject2(objValue) ? objValue : isIndex(path16[index + 1]) ? [] : {};
|
|
38965
38965
|
}
|
|
38966
38966
|
}
|
|
38967
38967
|
assignValue(nested3, key, newValue);
|
|
@@ -39127,13 +39127,13 @@ var require_lodash = __commonJS({
|
|
|
39127
39127
|
}
|
|
39128
39128
|
return result2;
|
|
39129
39129
|
}
|
|
39130
|
-
function baseUnset(object,
|
|
39131
|
-
|
|
39132
|
-
object = parent(object,
|
|
39133
|
-
return object == null || delete object[toKey(last5(
|
|
39130
|
+
function baseUnset(object, path16) {
|
|
39131
|
+
path16 = castPath(path16, object);
|
|
39132
|
+
object = parent(object, path16);
|
|
39133
|
+
return object == null || delete object[toKey(last5(path16))];
|
|
39134
39134
|
}
|
|
39135
|
-
function baseUpdate(object,
|
|
39136
|
-
return baseSet(object,
|
|
39135
|
+
function baseUpdate(object, path16, updater, customizer) {
|
|
39136
|
+
return baseSet(object, path16, updater(baseGet(object, path16)), customizer);
|
|
39137
39137
|
}
|
|
39138
39138
|
function baseWhile(array8, predicate, isDrop, fromRight) {
|
|
39139
39139
|
var length4 = array8.length, index = fromRight ? length4 : -1;
|
|
@@ -40016,11 +40016,11 @@ var require_lodash = __commonJS({
|
|
|
40016
40016
|
var match18 = source.match(reWrapDetails);
|
|
40017
40017
|
return match18 ? match18[1].split(reSplitDetails) : [];
|
|
40018
40018
|
}
|
|
40019
|
-
function hasPath(object,
|
|
40020
|
-
|
|
40021
|
-
var index = -1, length4 =
|
|
40019
|
+
function hasPath(object, path16, hasFunc) {
|
|
40020
|
+
path16 = castPath(path16, object);
|
|
40021
|
+
var index = -1, length4 = path16.length, result2 = false;
|
|
40022
40022
|
while (++index < length4) {
|
|
40023
|
-
var key = toKey(
|
|
40023
|
+
var key = toKey(path16[index]);
|
|
40024
40024
|
if (!(result2 = object != null && hasFunc(object, key))) {
|
|
40025
40025
|
break;
|
|
40026
40026
|
}
|
|
@@ -40222,8 +40222,8 @@ var require_lodash = __commonJS({
|
|
|
40222
40222
|
return apply(func, this, otherArgs);
|
|
40223
40223
|
};
|
|
40224
40224
|
}
|
|
40225
|
-
function parent(object,
|
|
40226
|
-
return
|
|
40225
|
+
function parent(object, path16) {
|
|
40226
|
+
return path16.length < 2 ? object : baseGet(object, baseSlice(path16, 0, -1));
|
|
40227
40227
|
}
|
|
40228
40228
|
function reorder(array8, indexes) {
|
|
40229
40229
|
var arrLength = array8.length, length4 = nativeMin(indexes.length, arrLength), oldArray = copyArray(array8);
|
|
@@ -40500,7 +40500,7 @@ var require_lodash = __commonJS({
|
|
|
40500
40500
|
}
|
|
40501
40501
|
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped, undefined2, comparator) : [];
|
|
40502
40502
|
});
|
|
40503
|
-
function
|
|
40503
|
+
function join17(array8, separator) {
|
|
40504
40504
|
return array8 == null ? "" : nativeJoin.call(array8, separator);
|
|
40505
40505
|
}
|
|
40506
40506
|
function last5(array8) {
|
|
@@ -40858,10 +40858,10 @@ var require_lodash = __commonJS({
|
|
|
40858
40858
|
}
|
|
40859
40859
|
return isString2(collection) ? fromIndex <= length4 && collection.indexOf(value5, fromIndex) > -1 : !!length4 && baseIndexOf(collection, value5, fromIndex) > -1;
|
|
40860
40860
|
}
|
|
40861
|
-
var invokeMap = baseRest(function(collection,
|
|
40862
|
-
var index = -1, isFunc = typeof
|
|
40861
|
+
var invokeMap = baseRest(function(collection, path16, args2) {
|
|
40862
|
+
var index = -1, isFunc = typeof path16 == "function", result2 = isArrayLike(collection) ? Array2(collection.length) : [];
|
|
40863
40863
|
baseEach(collection, function(value5) {
|
|
40864
|
-
result2[++index] = isFunc ? apply(
|
|
40864
|
+
result2[++index] = isFunc ? apply(path16, value5, args2) : baseInvoke(value5, path16, args2);
|
|
40865
40865
|
});
|
|
40866
40866
|
return result2;
|
|
40867
40867
|
});
|
|
@@ -41513,15 +41513,15 @@ var require_lodash = __commonJS({
|
|
|
41513
41513
|
function functionsIn(object) {
|
|
41514
41514
|
return object == null ? [] : baseFunctions(object, keysIn(object));
|
|
41515
41515
|
}
|
|
41516
|
-
function get16(object,
|
|
41517
|
-
var result2 = object == null ? undefined2 : baseGet(object,
|
|
41516
|
+
function get16(object, path16, defaultValue) {
|
|
41517
|
+
var result2 = object == null ? undefined2 : baseGet(object, path16);
|
|
41518
41518
|
return result2 === undefined2 ? defaultValue : result2;
|
|
41519
41519
|
}
|
|
41520
|
-
function has8(object,
|
|
41521
|
-
return object != null && hasPath(object,
|
|
41520
|
+
function has8(object, path16) {
|
|
41521
|
+
return object != null && hasPath(object, path16, baseHas);
|
|
41522
41522
|
}
|
|
41523
|
-
function hasIn(object,
|
|
41524
|
-
return object != null && hasPath(object,
|
|
41523
|
+
function hasIn(object, path16) {
|
|
41524
|
+
return object != null && hasPath(object, path16, baseHasIn);
|
|
41525
41525
|
}
|
|
41526
41526
|
var invert2 = createInverter(function(result2, value5, key) {
|
|
41527
41527
|
if (value5 != null && typeof value5.toString != "function") {
|
|
@@ -41574,10 +41574,10 @@ var require_lodash = __commonJS({
|
|
|
41574
41574
|
return result2;
|
|
41575
41575
|
}
|
|
41576
41576
|
var isDeep = false;
|
|
41577
|
-
paths = arrayMap(paths, function(
|
|
41578
|
-
|
|
41579
|
-
isDeep || (isDeep =
|
|
41580
|
-
return
|
|
41577
|
+
paths = arrayMap(paths, function(path16) {
|
|
41578
|
+
path16 = castPath(path16, object);
|
|
41579
|
+
isDeep || (isDeep = path16.length > 1);
|
|
41580
|
+
return path16;
|
|
41581
41581
|
});
|
|
41582
41582
|
copyObject(object, getAllKeysIn(object), result2);
|
|
41583
41583
|
if (isDeep) {
|
|
@@ -41603,19 +41603,19 @@ var require_lodash = __commonJS({
|
|
|
41603
41603
|
return [prop];
|
|
41604
41604
|
});
|
|
41605
41605
|
predicate = getIteratee(predicate);
|
|
41606
|
-
return basePickBy(object, props, function(value5,
|
|
41607
|
-
return predicate(value5,
|
|
41606
|
+
return basePickBy(object, props, function(value5, path16) {
|
|
41607
|
+
return predicate(value5, path16[0]);
|
|
41608
41608
|
});
|
|
41609
41609
|
}
|
|
41610
|
-
function result(object,
|
|
41611
|
-
|
|
41612
|
-
var index = -1, length4 =
|
|
41610
|
+
function result(object, path16, defaultValue) {
|
|
41611
|
+
path16 = castPath(path16, object);
|
|
41612
|
+
var index = -1, length4 = path16.length;
|
|
41613
41613
|
if (!length4) {
|
|
41614
41614
|
length4 = 1;
|
|
41615
41615
|
object = undefined2;
|
|
41616
41616
|
}
|
|
41617
41617
|
while (++index < length4) {
|
|
41618
|
-
var value5 = object == null ? undefined2 : object[toKey(
|
|
41618
|
+
var value5 = object == null ? undefined2 : object[toKey(path16[index])];
|
|
41619
41619
|
if (value5 === undefined2) {
|
|
41620
41620
|
index = length4;
|
|
41621
41621
|
value5 = defaultValue;
|
|
@@ -41624,12 +41624,12 @@ var require_lodash = __commonJS({
|
|
|
41624
41624
|
}
|
|
41625
41625
|
return object;
|
|
41626
41626
|
}
|
|
41627
|
-
function set7(object,
|
|
41628
|
-
return object == null ? object : baseSet(object,
|
|
41627
|
+
function set7(object, path16, value5) {
|
|
41628
|
+
return object == null ? object : baseSet(object, path16, value5);
|
|
41629
41629
|
}
|
|
41630
|
-
function setWith(object,
|
|
41630
|
+
function setWith(object, path16, value5, customizer) {
|
|
41631
41631
|
customizer = typeof customizer == "function" ? customizer : undefined2;
|
|
41632
|
-
return object == null ? object : baseSet(object,
|
|
41632
|
+
return object == null ? object : baseSet(object, path16, value5, customizer);
|
|
41633
41633
|
}
|
|
41634
41634
|
var toPairs = createToPairs(keys6);
|
|
41635
41635
|
var toPairsIn = createToPairs(keysIn);
|
|
@@ -41651,15 +41651,15 @@ var require_lodash = __commonJS({
|
|
|
41651
41651
|
});
|
|
41652
41652
|
return accumulator;
|
|
41653
41653
|
}
|
|
41654
|
-
function unset(object,
|
|
41655
|
-
return object == null ? true : baseUnset(object,
|
|
41654
|
+
function unset(object, path16) {
|
|
41655
|
+
return object == null ? true : baseUnset(object, path16);
|
|
41656
41656
|
}
|
|
41657
|
-
function update5(object,
|
|
41658
|
-
return object == null ? object : baseUpdate(object,
|
|
41657
|
+
function update5(object, path16, updater) {
|
|
41658
|
+
return object == null ? object : baseUpdate(object, path16, castFunction(updater));
|
|
41659
41659
|
}
|
|
41660
|
-
function updateWith2(object,
|
|
41660
|
+
function updateWith2(object, path16, updater, customizer) {
|
|
41661
41661
|
customizer = typeof customizer == "function" ? customizer : undefined2;
|
|
41662
|
-
return object == null ? object : baseUpdate(object,
|
|
41662
|
+
return object == null ? object : baseUpdate(object, path16, castFunction(updater), customizer);
|
|
41663
41663
|
}
|
|
41664
41664
|
function values3(object) {
|
|
41665
41665
|
return object == null ? [] : baseValues(object, keys6(object));
|
|
@@ -41740,14 +41740,14 @@ var require_lodash = __commonJS({
|
|
|
41740
41740
|
string8 = toString(string8);
|
|
41741
41741
|
return string8 && string8.replace(reLatin, deburrLetter).replace(reComboMark, "");
|
|
41742
41742
|
}
|
|
41743
|
-
function endsWith(string8,
|
|
41743
|
+
function endsWith(string8, target2, position) {
|
|
41744
41744
|
string8 = toString(string8);
|
|
41745
|
-
|
|
41745
|
+
target2 = baseToString(target2);
|
|
41746
41746
|
var length4 = string8.length;
|
|
41747
41747
|
position = position === undefined2 ? length4 : baseClamp(toInteger(position), 0, length4);
|
|
41748
41748
|
var end5 = position;
|
|
41749
|
-
position -=
|
|
41750
|
-
return position >= 0 && string8.slice(position, end5) ==
|
|
41749
|
+
position -= target2.length;
|
|
41750
|
+
return position >= 0 && string8.slice(position, end5) == target2;
|
|
41751
41751
|
}
|
|
41752
41752
|
function escape3(string8) {
|
|
41753
41753
|
string8 = toString(string8);
|
|
@@ -41829,11 +41829,11 @@ var require_lodash = __commonJS({
|
|
|
41829
41829
|
var startCase = createCompounder(function(result2, word, index) {
|
|
41830
41830
|
return result2 + (index ? " " : "") + upperFirst(word);
|
|
41831
41831
|
});
|
|
41832
|
-
function startsWith(string8,
|
|
41832
|
+
function startsWith(string8, target2, position) {
|
|
41833
41833
|
string8 = toString(string8);
|
|
41834
41834
|
position = position == null ? 0 : baseClamp(toInteger(position), 0, string8.length);
|
|
41835
|
-
|
|
41836
|
-
return string8.slice(position, position +
|
|
41835
|
+
target2 = baseToString(target2);
|
|
41836
|
+
return string8.slice(position, position + target2.length) == target2;
|
|
41837
41837
|
}
|
|
41838
41838
|
function template(string8, options3, guard) {
|
|
41839
41839
|
var settings = lodash.templateSettings;
|
|
@@ -42040,17 +42040,17 @@ var require_lodash = __commonJS({
|
|
|
42040
42040
|
function matches(source) {
|
|
42041
42041
|
return baseMatches(baseClone(source, CLONE_DEEP_FLAG));
|
|
42042
42042
|
}
|
|
42043
|
-
function matchesProperty(
|
|
42044
|
-
return baseMatchesProperty(
|
|
42043
|
+
function matchesProperty(path16, srcValue) {
|
|
42044
|
+
return baseMatchesProperty(path16, baseClone(srcValue, CLONE_DEEP_FLAG));
|
|
42045
42045
|
}
|
|
42046
|
-
var method = baseRest(function(
|
|
42046
|
+
var method = baseRest(function(path16, args2) {
|
|
42047
42047
|
return function(object) {
|
|
42048
|
-
return baseInvoke(object,
|
|
42048
|
+
return baseInvoke(object, path16, args2);
|
|
42049
42049
|
};
|
|
42050
42050
|
});
|
|
42051
42051
|
var methodOf = baseRest(function(object, args2) {
|
|
42052
|
-
return function(
|
|
42053
|
-
return baseInvoke(object,
|
|
42052
|
+
return function(path16) {
|
|
42053
|
+
return baseInvoke(object, path16, args2);
|
|
42054
42054
|
};
|
|
42055
42055
|
});
|
|
42056
42056
|
function mixin(object, source, options3) {
|
|
@@ -42097,12 +42097,12 @@ var require_lodash = __commonJS({
|
|
|
42097
42097
|
var over = createOver(arrayMap);
|
|
42098
42098
|
var overEvery = createOver(arrayEvery);
|
|
42099
42099
|
var overSome = createOver(arraySome);
|
|
42100
|
-
function property(
|
|
42101
|
-
return isKey(
|
|
42100
|
+
function property(path16) {
|
|
42101
|
+
return isKey(path16) ? baseProperty(toKey(path16)) : basePropertyDeep(path16);
|
|
42102
42102
|
}
|
|
42103
42103
|
function propertyOf(object) {
|
|
42104
|
-
return function(
|
|
42105
|
-
return object == null ? undefined2 : baseGet(object,
|
|
42104
|
+
return function(path16) {
|
|
42105
|
+
return object == null ? undefined2 : baseGet(object, path16);
|
|
42106
42106
|
};
|
|
42107
42107
|
}
|
|
42108
42108
|
var range4 = createRange();
|
|
@@ -42419,7 +42419,7 @@ var require_lodash = __commonJS({
|
|
|
42419
42419
|
lodash.isUndefined = isUndefined2;
|
|
42420
42420
|
lodash.isWeakMap = isWeakMap;
|
|
42421
42421
|
lodash.isWeakSet = isWeakSet;
|
|
42422
|
-
lodash.join =
|
|
42422
|
+
lodash.join = join17;
|
|
42423
42423
|
lodash.kebabCase = kebabCase;
|
|
42424
42424
|
lodash.last = last5;
|
|
42425
42425
|
lodash.lastIndexOf = lastIndexOf;
|
|
@@ -42555,12 +42555,12 @@ var require_lodash = __commonJS({
|
|
|
42555
42555
|
LazyWrapper.prototype.findLast = function(predicate) {
|
|
42556
42556
|
return this.reverse().find(predicate);
|
|
42557
42557
|
};
|
|
42558
|
-
LazyWrapper.prototype.invokeMap = baseRest(function(
|
|
42559
|
-
if (typeof
|
|
42558
|
+
LazyWrapper.prototype.invokeMap = baseRest(function(path16, args2) {
|
|
42559
|
+
if (typeof path16 == "function") {
|
|
42560
42560
|
return new LazyWrapper(this);
|
|
42561
42561
|
}
|
|
42562
42562
|
return this.map(function(value5) {
|
|
42563
|
-
return baseInvoke(value5,
|
|
42563
|
+
return baseInvoke(value5, path16, args2);
|
|
42564
42564
|
});
|
|
42565
42565
|
});
|
|
42566
42566
|
LazyWrapper.prototype.reject = function(predicate) {
|
|
@@ -45061,11 +45061,11 @@ var require_baseGet = __commonJS({
|
|
|
45061
45061
|
"node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGet.js"(exports, module) {
|
|
45062
45062
|
var castPath = require_castPath();
|
|
45063
45063
|
var toKey = require_toKey();
|
|
45064
|
-
function baseGet(object,
|
|
45065
|
-
|
|
45066
|
-
var index = 0, length4 =
|
|
45064
|
+
function baseGet(object, path16) {
|
|
45065
|
+
path16 = castPath(path16, object);
|
|
45066
|
+
var index = 0, length4 = path16.length;
|
|
45067
45067
|
while (object != null && index < length4) {
|
|
45068
|
-
object = object[toKey(
|
|
45068
|
+
object = object[toKey(path16[index++])];
|
|
45069
45069
|
}
|
|
45070
45070
|
return index && index == length4 ? object : void 0;
|
|
45071
45071
|
}
|
|
@@ -45077,8 +45077,8 @@ var require_baseGet = __commonJS({
|
|
|
45077
45077
|
var require_get = __commonJS({
|
|
45078
45078
|
"node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/get.js"(exports, module) {
|
|
45079
45079
|
var baseGet = require_baseGet();
|
|
45080
|
-
function get16(object,
|
|
45081
|
-
var result = object == null ? void 0 : baseGet(object,
|
|
45080
|
+
function get16(object, path16, defaultValue) {
|
|
45081
|
+
var result = object == null ? void 0 : baseGet(object, path16);
|
|
45082
45082
|
return result === void 0 ? defaultValue : result;
|
|
45083
45083
|
}
|
|
45084
45084
|
module.exports = get16;
|
|
@@ -45104,11 +45104,11 @@ var require_hasPath = __commonJS({
|
|
|
45104
45104
|
var isIndex = require_isIndex();
|
|
45105
45105
|
var isLength = require_isLength();
|
|
45106
45106
|
var toKey = require_toKey();
|
|
45107
|
-
function hasPath(object,
|
|
45108
|
-
|
|
45109
|
-
var index = -1, length4 =
|
|
45107
|
+
function hasPath(object, path16, hasFunc) {
|
|
45108
|
+
path16 = castPath(path16, object);
|
|
45109
|
+
var index = -1, length4 = path16.length, result = false;
|
|
45110
45110
|
while (++index < length4) {
|
|
45111
|
-
var key = toKey(
|
|
45111
|
+
var key = toKey(path16[index]);
|
|
45112
45112
|
if (!(result = object != null && hasFunc(object, key))) {
|
|
45113
45113
|
break;
|
|
45114
45114
|
}
|
|
@@ -45129,8 +45129,8 @@ var require_hasIn = __commonJS({
|
|
|
45129
45129
|
"node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/hasIn.js"(exports, module) {
|
|
45130
45130
|
var baseHasIn = require_baseHasIn();
|
|
45131
45131
|
var hasPath = require_hasPath();
|
|
45132
|
-
function hasIn(object,
|
|
45133
|
-
return object != null && hasPath(object,
|
|
45132
|
+
function hasIn(object, path16) {
|
|
45133
|
+
return object != null && hasPath(object, path16, baseHasIn);
|
|
45134
45134
|
}
|
|
45135
45135
|
module.exports = hasIn;
|
|
45136
45136
|
}
|
|
@@ -45148,13 +45148,13 @@ var require_baseMatchesProperty = __commonJS({
|
|
|
45148
45148
|
var toKey = require_toKey();
|
|
45149
45149
|
var COMPARE_PARTIAL_FLAG = 1;
|
|
45150
45150
|
var COMPARE_UNORDERED_FLAG = 2;
|
|
45151
|
-
function baseMatchesProperty(
|
|
45152
|
-
if (isKey(
|
|
45153
|
-
return matchesStrictComparable(toKey(
|
|
45151
|
+
function baseMatchesProperty(path16, srcValue) {
|
|
45152
|
+
if (isKey(path16) && isStrictComparable(srcValue)) {
|
|
45153
|
+
return matchesStrictComparable(toKey(path16), srcValue);
|
|
45154
45154
|
}
|
|
45155
45155
|
return function(object) {
|
|
45156
|
-
var objValue = get16(object,
|
|
45157
|
-
return objValue === void 0 && objValue === srcValue ? hasIn(object,
|
|
45156
|
+
var objValue = get16(object, path16);
|
|
45157
|
+
return objValue === void 0 && objValue === srcValue ? hasIn(object, path16) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
|
|
45158
45158
|
};
|
|
45159
45159
|
}
|
|
45160
45160
|
module.exports = baseMatchesProperty;
|
|
@@ -45177,9 +45177,9 @@ var require_baseProperty = __commonJS({
|
|
|
45177
45177
|
var require_basePropertyDeep = __commonJS({
|
|
45178
45178
|
"node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePropertyDeep.js"(exports, module) {
|
|
45179
45179
|
var baseGet = require_baseGet();
|
|
45180
|
-
function basePropertyDeep(
|
|
45180
|
+
function basePropertyDeep(path16) {
|
|
45181
45181
|
return function(object) {
|
|
45182
|
-
return baseGet(object,
|
|
45182
|
+
return baseGet(object, path16);
|
|
45183
45183
|
};
|
|
45184
45184
|
}
|
|
45185
45185
|
module.exports = basePropertyDeep;
|
|
@@ -45193,8 +45193,8 @@ var require_property = __commonJS({
|
|
|
45193
45193
|
var basePropertyDeep = require_basePropertyDeep();
|
|
45194
45194
|
var isKey = require_isKey();
|
|
45195
45195
|
var toKey = require_toKey();
|
|
45196
|
-
function property(
|
|
45197
|
-
return isKey(
|
|
45196
|
+
function property(path16) {
|
|
45197
|
+
return isKey(path16) ? baseProperty(toKey(path16)) : basePropertyDeep(path16);
|
|
45198
45198
|
}
|
|
45199
45199
|
module.exports = property;
|
|
45200
45200
|
}
|
|
@@ -46467,10 +46467,10 @@ var require_isRemoteUrl = __commonJS({
|
|
|
46467
46467
|
var require_getSDKVersions = __commonJS({
|
|
46468
46468
|
"node_modules/.pnpm/cloudinary@2.7.0/node_modules/cloudinary/lib/utils/analytics/getSDKVersions.js"(exports, module) {
|
|
46469
46469
|
var fs = __require("fs");
|
|
46470
|
-
var
|
|
46470
|
+
var path16 = __require("path");
|
|
46471
46471
|
var sdkCode = "M";
|
|
46472
46472
|
function readSdkSemver() {
|
|
46473
|
-
const pkgJsonPath =
|
|
46473
|
+
const pkgJsonPath = path16.join(__dirname, "../../../package.json");
|
|
46474
46474
|
try {
|
|
46475
46475
|
const pkgJSONFile = fs.readFileSync(pkgJsonPath, "utf-8");
|
|
46476
46476
|
return JSON.parse(pkgJSONFile).version;
|
|
@@ -47688,11 +47688,11 @@ var require_utils2 = __commonJS({
|
|
|
47688
47688
|
if (!api_version || api_version.length === 0) {
|
|
47689
47689
|
throw new Error("api_version needs to be a non-empty string");
|
|
47690
47690
|
}
|
|
47691
|
-
return (
|
|
47691
|
+
return (path16 = [], options3 = []) => {
|
|
47692
47692
|
let cloudinary2 = ensureOption(options3, "upload_prefix", UPLOAD_PREFIX);
|
|
47693
47693
|
let cloud_name = ensureOption(options3, "cloud_name");
|
|
47694
47694
|
let encode_path = (unencoded_path) => encodeURIComponent(unencoded_path).replace("'", "%27");
|
|
47695
|
-
let encoded_path = Array.isArray(
|
|
47695
|
+
let encoded_path = Array.isArray(path16) ? path16.map(encode_path) : encode_path(path16);
|
|
47696
47696
|
return [cloudinary2, api_version, cloud_name].concat(encoded_path).join("/");
|
|
47697
47697
|
};
|
|
47698
47698
|
}
|
|
@@ -49595,19 +49595,19 @@ var require_uploader = __commonJS({
|
|
|
49595
49595
|
return isRemoteUrl(file6) ? [params, { file: file6 }] : [params, {}, file6];
|
|
49596
49596
|
});
|
|
49597
49597
|
};
|
|
49598
|
-
exports.upload_large = function upload_large(
|
|
49599
|
-
if (
|
|
49600
|
-
return exports.upload(
|
|
49598
|
+
exports.upload_large = function upload_large(path16, callback, options3 = {}) {
|
|
49599
|
+
if (path16 != null && isRemoteUrl(path16)) {
|
|
49600
|
+
return exports.upload(path16, callback, options3);
|
|
49601
49601
|
}
|
|
49602
|
-
if (
|
|
49603
|
-
options3.filename =
|
|
49602
|
+
if (path16 != null && !options3.filename) {
|
|
49603
|
+
options3.filename = path16.split(/(\\|\/)/g).pop().replace(/\.[^/.]+$/, "");
|
|
49604
49604
|
}
|
|
49605
|
-
return exports.upload_chunked(
|
|
49605
|
+
return exports.upload_chunked(path16, callback, extend5({
|
|
49606
49606
|
resource_type: "raw"
|
|
49607
49607
|
}, options3));
|
|
49608
49608
|
};
|
|
49609
|
-
exports.upload_chunked = function upload_chunked(
|
|
49610
|
-
let file_reader = fs.createReadStream(
|
|
49609
|
+
exports.upload_chunked = function upload_chunked(path16, callback, options3) {
|
|
49610
|
+
let file_reader = fs.createReadStream(path16);
|
|
49611
49611
|
let out_stream = exports.upload_chunked_stream(callback, options3);
|
|
49612
49612
|
return file_reader.pipe(out_stream);
|
|
49613
49613
|
};
|
|
@@ -50362,10 +50362,10 @@ var require_api2 = __commonJS({
|
|
|
50362
50362
|
}
|
|
50363
50363
|
return call_api("get", uri, params, callback, options3);
|
|
50364
50364
|
};
|
|
50365
|
-
exports.resources_by_moderation = function resources_by_moderation(kind,
|
|
50365
|
+
exports.resources_by_moderation = function resources_by_moderation(kind, status3, callback, options3 = {}) {
|
|
50366
50366
|
let resource_type, uri;
|
|
50367
50367
|
resource_type = options3.resource_type || "image";
|
|
50368
|
-
uri = ["resources", resource_type, "moderations", kind,
|
|
50368
|
+
uri = ["resources", resource_type, "moderations", kind, status3];
|
|
50369
50369
|
return call_api("get", uri, pickOnlyExistingValues(options3, "next_cursor", "max_results", "tags", "context", "direction", "moderations", "metadata", "fields"), callback, options3);
|
|
50370
50370
|
};
|
|
50371
50371
|
exports.resource_by_asset_id = function resource_by_asset_id(asset_id, callback, options3 = {}) {
|
|
@@ -50586,20 +50586,20 @@ var require_api2 = __commonJS({
|
|
|
50586
50586
|
params = pickOnlyExistingValues(options3, "next_cursor", "max_results");
|
|
50587
50587
|
return call_api("get", uri, params, callback, options3);
|
|
50588
50588
|
};
|
|
50589
|
-
exports.sub_folders = function sub_folders(
|
|
50589
|
+
exports.sub_folders = function sub_folders(path16, callback, options3 = {}) {
|
|
50590
50590
|
let uri, params;
|
|
50591
|
-
uri = ["folders",
|
|
50591
|
+
uri = ["folders", path16];
|
|
50592
50592
|
params = pickOnlyExistingValues(options3, "next_cursor", "max_results");
|
|
50593
50593
|
return call_api("get", uri, params, callback, options3);
|
|
50594
50594
|
};
|
|
50595
|
-
exports.create_folder = function create_folder(
|
|
50595
|
+
exports.create_folder = function create_folder(path16, callback, options3 = {}) {
|
|
50596
50596
|
let uri;
|
|
50597
|
-
uri = ["folders",
|
|
50597
|
+
uri = ["folders", path16];
|
|
50598
50598
|
return call_api("post", uri, {}, callback, options3);
|
|
50599
50599
|
};
|
|
50600
|
-
exports.delete_folder = function delete_folder(
|
|
50600
|
+
exports.delete_folder = function delete_folder(path16, callback, options3 = {}) {
|
|
50601
50601
|
let uri;
|
|
50602
|
-
uri = ["folders",
|
|
50602
|
+
uri = ["folders", path16];
|
|
50603
50603
|
return call_api("delete", uri, {}, callback, options3);
|
|
50604
50604
|
};
|
|
50605
50605
|
exports.rename_folder = function rename_folder(old_path, new_path, callback, options3 = {}) {
|
|
@@ -51776,7 +51776,7 @@ var require_package2 = __commonJS({
|
|
|
51776
51776
|
var require_main = __commonJS({
|
|
51777
51777
|
"node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/main.js"(exports, module) {
|
|
51778
51778
|
var fs = __require("fs");
|
|
51779
|
-
var
|
|
51779
|
+
var path16 = __require("path");
|
|
51780
51780
|
var os2 = __require("os");
|
|
51781
51781
|
var crypto = __require("crypto");
|
|
51782
51782
|
var packageJson = require_package2();
|
|
@@ -51925,7 +51925,7 @@ var require_main = __commonJS({
|
|
|
51925
51925
|
possibleVaultPath = options3.path.endsWith(".vault") ? options3.path : `${options3.path}.vault`;
|
|
51926
51926
|
}
|
|
51927
51927
|
} else {
|
|
51928
|
-
possibleVaultPath =
|
|
51928
|
+
possibleVaultPath = path16.resolve(process.cwd(), ".env.vault");
|
|
51929
51929
|
}
|
|
51930
51930
|
if (fs.existsSync(possibleVaultPath)) {
|
|
51931
51931
|
return possibleVaultPath;
|
|
@@ -51933,7 +51933,7 @@ var require_main = __commonJS({
|
|
|
51933
51933
|
return null;
|
|
51934
51934
|
}
|
|
51935
51935
|
function _resolveHome(envPath) {
|
|
51936
|
-
return envPath[0] === "~" ?
|
|
51936
|
+
return envPath[0] === "~" ? path16.join(os2.homedir(), envPath.slice(1)) : envPath;
|
|
51937
51937
|
}
|
|
51938
51938
|
function _configVault(options3) {
|
|
51939
51939
|
const debug3 = parseBoolean(process.env.DOTENV_CONFIG_DEBUG || options3 && options3.debug);
|
|
@@ -51950,7 +51950,7 @@ var require_main = __commonJS({
|
|
|
51950
51950
|
return { parsed };
|
|
51951
51951
|
}
|
|
51952
51952
|
function configDotenv(options3) {
|
|
51953
|
-
const dotenvPath =
|
|
51953
|
+
const dotenvPath = path16.resolve(process.cwd(), ".env");
|
|
51954
51954
|
let encoding = "utf8";
|
|
51955
51955
|
let processEnv = process.env;
|
|
51956
51956
|
if (options3 && options3.processEnv != null) {
|
|
@@ -51978,13 +51978,13 @@ var require_main = __commonJS({
|
|
|
51978
51978
|
}
|
|
51979
51979
|
let lastError;
|
|
51980
51980
|
const parsedAll = {};
|
|
51981
|
-
for (const
|
|
51981
|
+
for (const path17 of optionPaths) {
|
|
51982
51982
|
try {
|
|
51983
|
-
const parsed = DotenvModule.parse(fs.readFileSync(
|
|
51983
|
+
const parsed = DotenvModule.parse(fs.readFileSync(path17, { encoding }));
|
|
51984
51984
|
DotenvModule.populate(parsedAll, parsed, options3);
|
|
51985
51985
|
} catch (e) {
|
|
51986
51986
|
if (debug3) {
|
|
51987
|
-
_debug(`Failed to load ${
|
|
51987
|
+
_debug(`Failed to load ${path17} ${e.message}`);
|
|
51988
51988
|
}
|
|
51989
51989
|
lastError = e;
|
|
51990
51990
|
}
|
|
@@ -51997,7 +51997,7 @@ var require_main = __commonJS({
|
|
|
51997
51997
|
const shortPaths = [];
|
|
51998
51998
|
for (const filePath of optionPaths) {
|
|
51999
51999
|
try {
|
|
52000
|
-
const relative3 =
|
|
52000
|
+
const relative3 = path16.relative(process.cwd(), filePath);
|
|
52001
52001
|
shortPaths.push(relative3);
|
|
52002
52002
|
} catch (e) {
|
|
52003
52003
|
if (debug3) {
|
|
@@ -57903,22 +57903,22 @@ var catchSome = /* @__PURE__ */ dual(2, (self2, pf) => catchAllCause(self2, (cau
|
|
|
57903
57903
|
return failCause(either7.right);
|
|
57904
57904
|
}
|
|
57905
57905
|
}));
|
|
57906
|
-
var checkInterruptible = (f) => withFiberRuntime((_,
|
|
57906
|
+
var checkInterruptible = (f) => withFiberRuntime((_, status3) => f(interruption(status3.runtimeFlags)));
|
|
57907
57907
|
var originalSymbol = /* @__PURE__ */ Symbol.for("effect/OriginalAnnotation");
|
|
57908
57908
|
var capture = (obj, span4) => {
|
|
57909
57909
|
if (isSome2(span4)) {
|
|
57910
57910
|
return new Proxy(obj, {
|
|
57911
|
-
has(
|
|
57912
|
-
return p3 === spanSymbol || p3 === originalSymbol || p3 in
|
|
57911
|
+
has(target2, p3) {
|
|
57912
|
+
return p3 === spanSymbol || p3 === originalSymbol || p3 in target2;
|
|
57913
57913
|
},
|
|
57914
|
-
get(
|
|
57914
|
+
get(target2, p3) {
|
|
57915
57915
|
if (p3 === spanSymbol) {
|
|
57916
57916
|
return span4.value;
|
|
57917
57917
|
}
|
|
57918
57918
|
if (p3 === originalSymbol) {
|
|
57919
57919
|
return obj;
|
|
57920
57920
|
}
|
|
57921
|
-
return
|
|
57921
|
+
return target2[p3];
|
|
57922
57922
|
}
|
|
57923
57923
|
});
|
|
57924
57924
|
}
|
|
@@ -58080,7 +58080,7 @@ var orDieWith = /* @__PURE__ */ dual(2, (self2, f) => matchEffect(self2, {
|
|
|
58080
58080
|
onSuccess: succeed
|
|
58081
58081
|
}));
|
|
58082
58082
|
var partitionMap3 = partitionMap2;
|
|
58083
|
-
var runtimeFlags = /* @__PURE__ */ withFiberRuntime((_,
|
|
58083
|
+
var runtimeFlags = /* @__PURE__ */ withFiberRuntime((_, status3) => succeed(status3.runtimeFlags));
|
|
58084
58084
|
var succeed = (value5) => {
|
|
58085
58085
|
const effect3 = new EffectPrimitiveSuccess(OP_SUCCESS);
|
|
58086
58086
|
effect3.effect_instruction_i0 = value5;
|
|
@@ -59195,67 +59195,67 @@ var Or = (self2, that) => {
|
|
|
59195
59195
|
});
|
|
59196
59196
|
return error4;
|
|
59197
59197
|
};
|
|
59198
|
-
var InvalidData = (
|
|
59198
|
+
var InvalidData = (path16, message, options3 = {
|
|
59199
59199
|
pathDelim: "."
|
|
59200
59200
|
}) => {
|
|
59201
59201
|
const error4 = Object.create(proto2);
|
|
59202
59202
|
error4._op = OP_INVALID_DATA;
|
|
59203
|
-
error4.path =
|
|
59203
|
+
error4.path = path16;
|
|
59204
59204
|
error4.message = message;
|
|
59205
59205
|
Object.defineProperty(error4, "toString", {
|
|
59206
59206
|
enumerable: false,
|
|
59207
59207
|
value() {
|
|
59208
|
-
const
|
|
59209
|
-
return `(Invalid data at ${
|
|
59208
|
+
const path17 = pipe(this.path, join(options3.pathDelim));
|
|
59209
|
+
return `(Invalid data at ${path17}: "${this.message}")`;
|
|
59210
59210
|
}
|
|
59211
59211
|
});
|
|
59212
59212
|
return error4;
|
|
59213
59213
|
};
|
|
59214
|
-
var MissingData = (
|
|
59214
|
+
var MissingData = (path16, message, options3 = {
|
|
59215
59215
|
pathDelim: "."
|
|
59216
59216
|
}) => {
|
|
59217
59217
|
const error4 = Object.create(proto2);
|
|
59218
59218
|
error4._op = OP_MISSING_DATA;
|
|
59219
|
-
error4.path =
|
|
59219
|
+
error4.path = path16;
|
|
59220
59220
|
error4.message = message;
|
|
59221
59221
|
Object.defineProperty(error4, "toString", {
|
|
59222
59222
|
enumerable: false,
|
|
59223
59223
|
value() {
|
|
59224
|
-
const
|
|
59225
|
-
return `(Missing data at ${
|
|
59224
|
+
const path17 = pipe(this.path, join(options3.pathDelim));
|
|
59225
|
+
return `(Missing data at ${path17}: "${this.message}")`;
|
|
59226
59226
|
}
|
|
59227
59227
|
});
|
|
59228
59228
|
return error4;
|
|
59229
59229
|
};
|
|
59230
|
-
var SourceUnavailable = (
|
|
59230
|
+
var SourceUnavailable = (path16, message, cause3, options3 = {
|
|
59231
59231
|
pathDelim: "."
|
|
59232
59232
|
}) => {
|
|
59233
59233
|
const error4 = Object.create(proto2);
|
|
59234
59234
|
error4._op = OP_SOURCE_UNAVAILABLE;
|
|
59235
|
-
error4.path =
|
|
59235
|
+
error4.path = path16;
|
|
59236
59236
|
error4.message = message;
|
|
59237
59237
|
error4.cause = cause3;
|
|
59238
59238
|
Object.defineProperty(error4, "toString", {
|
|
59239
59239
|
enumerable: false,
|
|
59240
59240
|
value() {
|
|
59241
|
-
const
|
|
59242
|
-
return `(Source unavailable at ${
|
|
59241
|
+
const path17 = pipe(this.path, join(options3.pathDelim));
|
|
59242
|
+
return `(Source unavailable at ${path17}: "${this.message}")`;
|
|
59243
59243
|
}
|
|
59244
59244
|
});
|
|
59245
59245
|
return error4;
|
|
59246
59246
|
};
|
|
59247
|
-
var Unsupported = (
|
|
59247
|
+
var Unsupported = (path16, message, options3 = {
|
|
59248
59248
|
pathDelim: "."
|
|
59249
59249
|
}) => {
|
|
59250
59250
|
const error4 = Object.create(proto2);
|
|
59251
59251
|
error4._op = OP_UNSUPPORTED;
|
|
59252
|
-
error4.path =
|
|
59252
|
+
error4.path = path16;
|
|
59253
59253
|
error4.message = message;
|
|
59254
59254
|
Object.defineProperty(error4, "toString", {
|
|
59255
59255
|
enumerable: false,
|
|
59256
59256
|
value() {
|
|
59257
|
-
const
|
|
59258
|
-
return `(Unsupported operation at ${
|
|
59257
|
+
const path17 = pipe(this.path, join(options3.pathDelim));
|
|
59258
|
+
return `(Unsupported operation at ${path17}: "${this.message}")`;
|
|
59259
59259
|
}
|
|
59260
59260
|
});
|
|
59261
59261
|
return error4;
|
|
@@ -59371,9 +59371,9 @@ var isMissingDataOnly = (self2) => reduceWithContext3(self2, void 0, IsMissingDa
|
|
|
59371
59371
|
var empty20 = {
|
|
59372
59372
|
_tag: "Empty"
|
|
59373
59373
|
};
|
|
59374
|
-
var patch5 = /* @__PURE__ */ dual(2, (
|
|
59374
|
+
var patch5 = /* @__PURE__ */ dual(2, (path16, patch9) => {
|
|
59375
59375
|
let input = of3(patch9);
|
|
59376
|
-
let output =
|
|
59376
|
+
let output = path16;
|
|
59377
59377
|
while (isCons(input)) {
|
|
59378
59378
|
const patch10 = input.head;
|
|
59379
59379
|
switch (patch10._tag) {
|
|
@@ -59440,7 +59440,7 @@ var make21 = (options3) => ({
|
|
|
59440
59440
|
var makeFlat = (options3) => ({
|
|
59441
59441
|
[FlatConfigProviderTypeId]: FlatConfigProviderTypeId,
|
|
59442
59442
|
patch: options3.patch,
|
|
59443
|
-
load: (
|
|
59443
|
+
load: (path16, config3, split3 = true) => options3.load(path16, config3, split3),
|
|
59444
59444
|
enumerateChildren: options3.enumerateChildren
|
|
59445
59445
|
});
|
|
59446
59446
|
var fromFlat = (flat) => make21({
|
|
@@ -59458,29 +59458,29 @@ var fromEnv = (options3) => {
|
|
|
59458
59458
|
pathDelim: "_",
|
|
59459
59459
|
seqDelim: ","
|
|
59460
59460
|
}, options3);
|
|
59461
|
-
const makePathString = (
|
|
59461
|
+
const makePathString = (path16) => pipe(path16, join(pathDelim));
|
|
59462
59462
|
const unmakePathString = (pathString) => pathString.split(pathDelim);
|
|
59463
59463
|
const getEnv = () => typeof process !== "undefined" && "env" in process && typeof process.env === "object" ? process.env : {};
|
|
59464
|
-
const load = (
|
|
59465
|
-
const pathString = makePathString(
|
|
59464
|
+
const load = (path16, primitive2, split3 = true) => {
|
|
59465
|
+
const pathString = makePathString(path16);
|
|
59466
59466
|
const current = getEnv();
|
|
59467
59467
|
const valueOpt = pathString in current ? some2(current[pathString]) : none2();
|
|
59468
|
-
return pipe(valueOpt, mapError(() => MissingData(
|
|
59468
|
+
return pipe(valueOpt, mapError(() => MissingData(path16, `Expected ${pathString} to exist in the process context`)), flatMap7((value5) => parsePrimitive(value5, path16, primitive2, seqDelim, split3)));
|
|
59469
59469
|
};
|
|
59470
|
-
const enumerateChildren = (
|
|
59470
|
+
const enumerateChildren = (path16) => sync(() => {
|
|
59471
59471
|
const current = getEnv();
|
|
59472
59472
|
const keys6 = Object.keys(current);
|
|
59473
59473
|
const keyPaths = keys6.map((value5) => unmakePathString(value5.toUpperCase()));
|
|
59474
59474
|
const filteredKeyPaths = keyPaths.filter((keyPath) => {
|
|
59475
|
-
for (let i = 0; i <
|
|
59476
|
-
const pathComponent = pipe(
|
|
59475
|
+
for (let i = 0; i < path16.length; i++) {
|
|
59476
|
+
const pathComponent = pipe(path16, unsafeGet(i));
|
|
59477
59477
|
const currentElement = keyPath[i];
|
|
59478
59478
|
if (currentElement === void 0 || pathComponent !== currentElement) {
|
|
59479
59479
|
return false;
|
|
59480
59480
|
}
|
|
59481
59481
|
}
|
|
59482
59482
|
return true;
|
|
59483
|
-
}).flatMap((keyPath) => keyPath.slice(
|
|
59483
|
+
}).flatMap((keyPath) => keyPath.slice(path16.length, path16.length + 1));
|
|
59484
59484
|
return fromIterable6(filteredKeyPaths);
|
|
59485
59485
|
});
|
|
59486
59486
|
return fromFlat(makeFlat({
|
|
@@ -59496,17 +59496,17 @@ var extend2 = (leftDef, rightDef, left3, right3) => {
|
|
|
59496
59496
|
const rightExtension = concat(right3, rightPad);
|
|
59497
59497
|
return [leftExtension, rightExtension];
|
|
59498
59498
|
};
|
|
59499
|
-
var appendConfigPath = (
|
|
59499
|
+
var appendConfigPath = (path16, config3) => {
|
|
59500
59500
|
let op = config3;
|
|
59501
59501
|
if (op._tag === "Nested") {
|
|
59502
|
-
const out =
|
|
59502
|
+
const out = path16.slice();
|
|
59503
59503
|
while (op._tag === "Nested") {
|
|
59504
59504
|
out.push(op.name);
|
|
59505
59505
|
op = op.config;
|
|
59506
59506
|
}
|
|
59507
59507
|
return out;
|
|
59508
59508
|
}
|
|
59509
|
-
return
|
|
59509
|
+
return path16;
|
|
59510
59510
|
};
|
|
59511
59511
|
var fromFlatLoop = (flat, prefix, config3, split3) => {
|
|
59512
59512
|
const op = config3;
|
|
@@ -59582,8 +59582,8 @@ var fromFlatLoop = (flat, prefix, config3, split3) => {
|
|
|
59582
59582
|
return fail2(right3.left);
|
|
59583
59583
|
}
|
|
59584
59584
|
if (isRight2(left3) && isRight2(right3)) {
|
|
59585
|
-
const
|
|
59586
|
-
const fail20 = fromFlatLoopFail(prefix,
|
|
59585
|
+
const path16 = pipe(prefix, join("."));
|
|
59586
|
+
const fail20 = fromFlatLoopFail(prefix, path16);
|
|
59587
59587
|
const [lefts, rights] = extend2(fail20, fail20, pipe(left3.right, map3(right2)), pipe(right3.right, map3(right2)));
|
|
59588
59588
|
return pipe(lefts, zip(rights), forEachSequential(([left4, right4]) => pipe(zip2(left4, right4), map10(([left5, right5]) => op.zip(left5, right5)))));
|
|
59589
59589
|
}
|
|
@@ -59592,19 +59592,19 @@ var fromFlatLoop = (flat, prefix, config3, split3) => {
|
|
|
59592
59592
|
}
|
|
59593
59593
|
}
|
|
59594
59594
|
};
|
|
59595
|
-
var fromFlatLoopFail = (prefix,
|
|
59595
|
+
var fromFlatLoopFail = (prefix, path16) => (index) => left2(MissingData(prefix, `The element at index ${index} in a sequence at path "${path16}" was missing`));
|
|
59596
59596
|
var splitPathString = (text11, delim) => {
|
|
59597
59597
|
const split3 = text11.split(new RegExp(`\\s*${escape(delim)}\\s*`));
|
|
59598
59598
|
return split3;
|
|
59599
59599
|
};
|
|
59600
|
-
var parsePrimitive = (text11,
|
|
59600
|
+
var parsePrimitive = (text11, path16, primitive2, delimiter, split3) => {
|
|
59601
59601
|
if (!split3) {
|
|
59602
59602
|
return pipe(primitive2.parse(text11), mapBoth2({
|
|
59603
|
-
onFailure: prefixed(
|
|
59603
|
+
onFailure: prefixed(path16),
|
|
59604
59604
|
onSuccess: of
|
|
59605
59605
|
}));
|
|
59606
59606
|
}
|
|
59607
|
-
return pipe(splitPathString(text11, delimiter), forEachSequential((char4) => primitive2.parse(char4.trim())), mapError(prefixed(
|
|
59607
|
+
return pipe(splitPathString(text11, delimiter), forEachSequential((char4) => primitive2.parse(char4.trim())), mapError(prefixed(path16)));
|
|
59608
59608
|
};
|
|
59609
59609
|
var transpose = (array8) => {
|
|
59610
59610
|
return Object.keys(array8[0]).map((column3) => array8.map((row) => row[column3]));
|
|
@@ -61187,9 +61187,9 @@ var cause = (self2) => matchCause(self2, {
|
|
|
61187
61187
|
var clockWith3 = clockWith2;
|
|
61188
61188
|
var clock = /* @__PURE__ */ clockWith3(succeed);
|
|
61189
61189
|
var delay = /* @__PURE__ */ dual(2, (self2, duration3) => zipRight2(sleep2(duration3), self2));
|
|
61190
|
-
var descriptorWith = (f) => withFiberRuntime((state,
|
|
61190
|
+
var descriptorWith = (f) => withFiberRuntime((state, status3) => f({
|
|
61191
61191
|
id: state.id(),
|
|
61192
|
-
status:
|
|
61192
|
+
status: status3,
|
|
61193
61193
|
interruptors: interruptors(state.getFiberRef(currentInterruptedCause))
|
|
61194
61194
|
}));
|
|
61195
61195
|
var allowInterrupt = /* @__PURE__ */ descriptorWith((descriptor3) => size3(descriptor3.interruptors) > 0 ? interrupt2 : void_2);
|
|
@@ -62720,8 +62720,8 @@ var summary3 = (key) => {
|
|
|
62720
62720
|
const observe = (value5, timestamp) => {
|
|
62721
62721
|
if (maxSize > 0) {
|
|
62722
62722
|
head6 = head6 + 1;
|
|
62723
|
-
const
|
|
62724
|
-
values3[
|
|
62723
|
+
const target2 = head6 % maxSize;
|
|
62724
|
+
values3[target2] = [timestamp, value5];
|
|
62725
62725
|
}
|
|
62726
62726
|
min6 = count5 === 0 ? value5 : Math.min(min6, value5);
|
|
62727
62727
|
max8 = count5 === 0 ? value5 : Math.max(max8, value5);
|
|
@@ -63468,17 +63468,17 @@ var FiberRuntime = class extends Class2 {
|
|
|
63468
63468
|
* The status of the fiber.
|
|
63469
63469
|
*/
|
|
63470
63470
|
get status() {
|
|
63471
|
-
return this.ask((_,
|
|
63471
|
+
return this.ask((_, status3) => status3);
|
|
63472
63472
|
}
|
|
63473
63473
|
/**
|
|
63474
63474
|
* Gets the fiber runtime flags.
|
|
63475
63475
|
*/
|
|
63476
63476
|
get runtimeFlags() {
|
|
63477
|
-
return this.ask((state,
|
|
63478
|
-
if (isDone2(
|
|
63477
|
+
return this.ask((state, status3) => {
|
|
63478
|
+
if (isDone2(status3)) {
|
|
63479
63479
|
return state.currentRuntimeFlags;
|
|
63480
63480
|
}
|
|
63481
|
-
return
|
|
63481
|
+
return status3.runtimeFlags;
|
|
63482
63482
|
});
|
|
63483
63483
|
}
|
|
63484
63484
|
/**
|
|
@@ -63529,8 +63529,8 @@ var FiberRuntime = class extends Class2 {
|
|
|
63529
63529
|
ask(f) {
|
|
63530
63530
|
return suspend(() => {
|
|
63531
63531
|
const deferred = deferredUnsafeMake(this._fiberId);
|
|
63532
|
-
this.tell(stateful((fiber,
|
|
63533
|
-
deferredUnsafeDone(deferred, sync(() => f(fiber,
|
|
63532
|
+
this.tell(stateful((fiber, status3) => {
|
|
63533
|
+
deferredUnsafeDone(deferred, sync(() => f(fiber, status3)));
|
|
63534
63534
|
}));
|
|
63535
63535
|
return deferredAwait(deferred);
|
|
63536
63536
|
});
|
|
@@ -64620,8 +64620,8 @@ var forEachParUnbounded = (self2, f, batching) => suspend(() => {
|
|
|
64620
64620
|
});
|
|
64621
64621
|
var forEachConcurrentDiscard = (self2, f, batching, processAll, n) => uninterruptibleMask((restore) => transplant((graft) => withFiberRuntime((parent) => {
|
|
64622
64622
|
let todos = Array.from(self2).reverse();
|
|
64623
|
-
let
|
|
64624
|
-
if (
|
|
64623
|
+
let target2 = todos.length;
|
|
64624
|
+
if (target2 === 0) {
|
|
64625
64625
|
return void_2;
|
|
64626
64626
|
}
|
|
64627
64627
|
let counter6 = 0;
|
|
@@ -64661,7 +64661,7 @@ var forEachConcurrentDiscard = (self2, f, batching, processAll, n) => uninterrup
|
|
|
64661
64661
|
};
|
|
64662
64662
|
const onInterruptSignal = () => {
|
|
64663
64663
|
if (!processAll) {
|
|
64664
|
-
|
|
64664
|
+
target2 -= todos.length;
|
|
64665
64665
|
todos = [];
|
|
64666
64666
|
}
|
|
64667
64667
|
interrupted2 = true;
|
|
@@ -64719,11 +64719,11 @@ var forEachConcurrentDiscard = (self2, f, batching, processAll, n) => uninterrup
|
|
|
64719
64719
|
joinOrder.push(fiber);
|
|
64720
64720
|
fibers.delete(fiber);
|
|
64721
64721
|
pushResult(exit4, index);
|
|
64722
|
-
if (results.length ===
|
|
64722
|
+
if (results.length === target2) {
|
|
64723
64723
|
resume2(succeed(getOrElse(exitCollectAll(collectExits(), {
|
|
64724
64724
|
parallel: true
|
|
64725
64725
|
}), () => exitVoid)));
|
|
64726
|
-
} else if (residual.length + results.length ===
|
|
64726
|
+
} else if (residual.length + results.length === target2) {
|
|
64727
64727
|
const exits = collectExits();
|
|
64728
64728
|
const requests = residual.map((blocked3) => blocked3.effect_instruction_i0).reduce(par);
|
|
64729
64729
|
resume2(succeed(blocked(requests, forEachConcurrentDiscard([getOrElse(exitCollectAll(exits, {
|
|
@@ -64742,7 +64742,7 @@ var forEachConcurrentDiscard = (self2, f, batching, processAll, n) => uninterrup
|
|
|
64742
64742
|
return asVoid2(onExit(flatten5(restore(join2(processingFiber))), exitMatch({
|
|
64743
64743
|
onFailure: (cause3) => {
|
|
64744
64744
|
onInterruptSignal();
|
|
64745
|
-
const
|
|
64745
|
+
const target3 = residual.length + 1;
|
|
64746
64746
|
const concurrency = Math.min(typeof n === "number" ? n : residual.length, residual.length);
|
|
64747
64747
|
const toPop = Array.from(residual);
|
|
64748
64748
|
return async_((cb) => {
|
|
@@ -64750,7 +64750,7 @@ var forEachConcurrentDiscard = (self2, f, batching, processAll, n) => uninterrup
|
|
|
64750
64750
|
let index = 0;
|
|
64751
64751
|
const check2 = (index2, hitNext) => (exit4) => {
|
|
64752
64752
|
count5++;
|
|
64753
|
-
if (count5 ===
|
|
64753
|
+
if (count5 === target3) {
|
|
64754
64754
|
cb(exitSucceed(exitFailCause(cause3)));
|
|
64755
64755
|
}
|
|
64756
64756
|
if (toPop.length > 0 && hitNext) {
|
|
@@ -64777,7 +64777,7 @@ var forEachParN = (self2, n, f, batching) => suspend(() => {
|
|
|
64777
64777
|
const fn2 = (a, i) => map10(f(a, i), (b) => array8[i] = b);
|
|
64778
64778
|
return zipRight2(forEachConcurrentDiscard(as10, fn2, batching, false, n), succeed(array8));
|
|
64779
64779
|
});
|
|
64780
|
-
var fork = (self2) => withFiberRuntime((state,
|
|
64780
|
+
var fork = (self2) => withFiberRuntime((state, status3) => succeed(unsafeFork2(self2, state, status3.runtimeFlags)));
|
|
64781
64781
|
var forkDaemon = (self2) => forkWithScopeOverride(self2, globalScope);
|
|
64782
64782
|
var forkWithErrorHandler = /* @__PURE__ */ dual(2, (self2, handler) => fork(onError(self2, (cause3) => {
|
|
64783
64783
|
const either7 = failureOrCause(cause3);
|
|
@@ -64818,7 +64818,7 @@ var validateAll = /* @__PURE__ */ dual((args2) => isIterable(args2[0]), (element
|
|
|
64818
64818
|
batching: options3?.batching,
|
|
64819
64819
|
concurrentFinalizers: options3?.concurrentFinalizers
|
|
64820
64820
|
}), ([es, bs]) => isNonEmptyArray2(es) ? fail2(es) : options3?.discard ? void_2 : succeed(bs)));
|
|
64821
|
-
var raceAll = (all10) => withFiberRuntime((state,
|
|
64821
|
+
var raceAll = (all10) => withFiberRuntime((state, status3) => async_((resume2) => {
|
|
64822
64822
|
const fibers = /* @__PURE__ */ new Set();
|
|
64823
64823
|
let winner;
|
|
64824
64824
|
let failures2 = empty8;
|
|
@@ -64831,7 +64831,7 @@ var raceAll = (all10) => withFiberRuntime((state, status2) => async_((resume2) =
|
|
|
64831
64831
|
let empty42 = true;
|
|
64832
64832
|
for (const self2 of all10) {
|
|
64833
64833
|
empty42 = false;
|
|
64834
|
-
const fiber = unsafeFork2(interruptible2(self2), state,
|
|
64834
|
+
const fiber = unsafeFork2(interruptible2(self2), state, status3.runtimeFlags);
|
|
64835
64835
|
fibers.add(fiber);
|
|
64836
64836
|
fiber.addObserver((exit4) => {
|
|
64837
64837
|
fibers.delete(fiber);
|
|
@@ -65884,7 +65884,7 @@ var RuntimeImpl = class {
|
|
|
65884
65884
|
}
|
|
65885
65885
|
};
|
|
65886
65886
|
var make39 = (options3) => new RuntimeImpl(options3.context, options3.runtimeFlags, options3.fiberRefs);
|
|
65887
|
-
var runtime3 = () => withFiberRuntime((state,
|
|
65887
|
+
var runtime3 = () => withFiberRuntime((state, status3) => succeed(new RuntimeImpl(state.getFiberRef(currentContext), status3.runtimeFlags, state.getFiberRefs())));
|
|
65888
65888
|
var defaultRuntimeFlags = /* @__PURE__ */ make19(Interruption, CooperativeYielding, RuntimeMetrics);
|
|
65889
65889
|
var defaultRuntime = /* @__PURE__ */ make39({
|
|
65890
65890
|
context: /* @__PURE__ */ empty10(),
|
|
@@ -66115,9 +66115,9 @@ var mock = function() {
|
|
|
66115
66115
|
var mockImpl = (tag4, service3) => succeed6(tag4, new Proxy({
|
|
66116
66116
|
...service3
|
|
66117
66117
|
}, {
|
|
66118
|
-
get(
|
|
66119
|
-
if (prop in
|
|
66120
|
-
return
|
|
66118
|
+
get(target2, prop, _receiver) {
|
|
66119
|
+
if (prop in target2) {
|
|
66120
|
+
return target2[prop];
|
|
66121
66121
|
}
|
|
66122
66122
|
const prevLimit = Error.stackTraceLimit;
|
|
66123
66123
|
Error.stackTraceLimit = 2;
|
|
@@ -67808,22 +67808,22 @@ var transposeMapOption = /* @__PURE__ */ dual(2, (self2, f) => isNone(self2) ? s
|
|
|
67808
67808
|
var makeTagProxy = (TagClass) => {
|
|
67809
67809
|
const cache = /* @__PURE__ */ new Map();
|
|
67810
67810
|
return new Proxy(TagClass, {
|
|
67811
|
-
get(
|
|
67812
|
-
if (prop in
|
|
67813
|
-
return Reflect.get(
|
|
67811
|
+
get(target2, prop, receiver) {
|
|
67812
|
+
if (prop in target2) {
|
|
67813
|
+
return Reflect.get(target2, prop, receiver);
|
|
67814
67814
|
}
|
|
67815
67815
|
if (cache.has(prop)) {
|
|
67816
67816
|
return cache.get(prop);
|
|
67817
67817
|
}
|
|
67818
|
-
const fn2 = (...args2) => andThen3(
|
|
67818
|
+
const fn2 = (...args2) => andThen3(target2, (s) => {
|
|
67819
67819
|
if (typeof s[prop] === "function") {
|
|
67820
|
-
cache.set(prop, (...args3) => andThen3(
|
|
67820
|
+
cache.set(prop, (...args3) => andThen3(target2, (s2) => s2[prop](...args3)));
|
|
67821
67821
|
return s[prop](...args2);
|
|
67822
67822
|
}
|
|
67823
|
-
cache.set(prop, andThen3(
|
|
67823
|
+
cache.set(prop, andThen3(target2, (s2) => s2[prop]));
|
|
67824
67824
|
return s[prop];
|
|
67825
67825
|
});
|
|
67826
|
-
const cn = andThen3(
|
|
67826
|
+
const cn = andThen3(target2, (s) => s[prop]);
|
|
67827
67827
|
Object.assign(fn2, cn);
|
|
67828
67828
|
const apply = fn2.apply;
|
|
67829
67829
|
const bind7 = fn2.bind;
|
|
@@ -68383,14 +68383,14 @@ var memoizeThunk = (f) => {
|
|
|
68383
68383
|
var isNonEmpty5 = (x) => Array.isArray(x);
|
|
68384
68384
|
var isSingle = (x) => !Array.isArray(x);
|
|
68385
68385
|
var formatPathKey = (key) => `[${formatPropertyKey(key)}]`;
|
|
68386
|
-
var formatPath = (
|
|
68386
|
+
var formatPath = (path16) => isNonEmpty5(path16) ? path16.map(formatPathKey).join("") : formatPathKey(path16);
|
|
68387
68387
|
|
|
68388
68388
|
// node_modules/.pnpm/effect@3.21.0/node_modules/effect/dist/esm/internal/schema/errors.js
|
|
68389
|
-
var getErrorMessage = (reason, details,
|
|
68389
|
+
var getErrorMessage = (reason, details, path16, ast) => {
|
|
68390
68390
|
let out = reason;
|
|
68391
|
-
if (
|
|
68391
|
+
if (path16 && isNonEmptyReadonlyArray(path16)) {
|
|
68392
68392
|
out += `
|
|
68393
|
-
at path: ${formatPath(
|
|
68393
|
+
at path: ${formatPath(path16)}`;
|
|
68394
68394
|
}
|
|
68395
68395
|
if (details !== void 0) {
|
|
68396
68396
|
out += `
|
|
@@ -68402,7 +68402,7 @@ schema (${ast._tag}): ${ast}`;
|
|
|
68402
68402
|
}
|
|
68403
68403
|
return out;
|
|
68404
68404
|
};
|
|
68405
|
-
var getSchemaExtendErrorMessage = (x, y,
|
|
68405
|
+
var getSchemaExtendErrorMessage = (x, y, path16) => getErrorMessage("Unsupported schema or overlapping types", `cannot extend ${x} with ${y}`, path16);
|
|
68406
68406
|
var getASTUnsupportedKeySchemaErrorMessage = (ast) => getErrorMessage("Unsupported key schema", void 0, void 0, ast);
|
|
68407
68407
|
var getASTUnsupportedLiteralErrorMessage = (literal2) => getErrorMessage("Unsupported literal", `literal value: ${formatUnknown(literal2)}`);
|
|
68408
68408
|
var getASTDuplicateIndexSignatureErrorMessage = (type2) => getErrorMessage("Duplicate index signature", `${type2} index signature`);
|
|
@@ -69594,8 +69594,8 @@ var Pointer = class {
|
|
|
69594
69594
|
* @since 3.10.0
|
|
69595
69595
|
*/
|
|
69596
69596
|
_tag = "Pointer";
|
|
69597
|
-
constructor(
|
|
69598
|
-
this.path =
|
|
69597
|
+
constructor(path16, actual, issue) {
|
|
69598
|
+
this.path = path16;
|
|
69599
69599
|
this.actual = actual;
|
|
69600
69600
|
this.issue = issue;
|
|
69601
69601
|
}
|
|
@@ -73104,7 +73104,7 @@ var updateContext3 = updateContext2;
|
|
|
73104
73104
|
var spaced2 = spaced;
|
|
73105
73105
|
|
|
73106
73106
|
// node_modules/.pnpm/effect@3.21.0/node_modules/effect/dist/esm/internal/stream/emit.js
|
|
73107
|
-
var make48 = (
|
|
73107
|
+
var make48 = (emit2) => {
|
|
73108
73108
|
const ops = {
|
|
73109
73109
|
chunk(as10) {
|
|
73110
73110
|
return this(succeed9(as10));
|
|
@@ -73143,7 +73143,7 @@ var make48 = (emit) => {
|
|
|
73143
73143
|
return this(succeed9(of2(value5)));
|
|
73144
73144
|
}
|
|
73145
73145
|
};
|
|
73146
|
-
return Object.assign(
|
|
73146
|
+
return Object.assign(emit2, ops);
|
|
73147
73147
|
};
|
|
73148
73148
|
|
|
73149
73149
|
// node_modules/.pnpm/effect@3.21.0/node_modules/effect/dist/esm/internal/take.js
|
|
@@ -73901,7 +73901,7 @@ function makeTypeLiteralClass(fields, records, ast = getDefaultTypeLiteralAST(fi
|
|
|
73901
73901
|
function Struct(fields, ...records) {
|
|
73902
73902
|
return makeTypeLiteralClass(fields, records);
|
|
73903
73903
|
}
|
|
73904
|
-
var intersectTypeLiterals = (x, y,
|
|
73904
|
+
var intersectTypeLiterals = (x, y, path16) => {
|
|
73905
73905
|
if (isTypeLiteral(x) && isTypeLiteral(y)) {
|
|
73906
73906
|
const propertySignatures = [...x.propertySignatures];
|
|
73907
73907
|
for (const ps of y.propertySignatures) {
|
|
@@ -73914,18 +73914,18 @@ var intersectTypeLiterals = (x, y, path15) => {
|
|
|
73914
73914
|
isOptional,
|
|
73915
73915
|
type: type2
|
|
73916
73916
|
} = propertySignatures[i];
|
|
73917
|
-
propertySignatures[i] = new PropertySignature(name, extendAST(type2, ps.type,
|
|
73917
|
+
propertySignatures[i] = new PropertySignature(name, extendAST(type2, ps.type, path16.concat(name)), isOptional, true);
|
|
73918
73918
|
}
|
|
73919
73919
|
}
|
|
73920
73920
|
return new TypeLiteral(propertySignatures, x.indexSignatures.concat(y.indexSignatures));
|
|
73921
73921
|
}
|
|
73922
|
-
throw new Error(getSchemaExtendErrorMessage(x, y,
|
|
73922
|
+
throw new Error(getSchemaExtendErrorMessage(x, y, path16));
|
|
73923
73923
|
};
|
|
73924
73924
|
var preserveRefinementAnnotations = /* @__PURE__ */ omitAnnotations([IdentifierAnnotationId]);
|
|
73925
73925
|
var addRefinementToMembers = (refinement, asts) => asts.map((ast) => new Refinement(ast, refinement.filter, preserveRefinementAnnotations(refinement)));
|
|
73926
|
-
var extendAST = (x, y,
|
|
73926
|
+
var extendAST = (x, y, path16) => Union.make(intersectUnionMembers([x], [y], path16));
|
|
73927
73927
|
var getTypes = (ast) => isUnion(ast) ? ast.types : [ast];
|
|
73928
|
-
var intersectUnionMembers = (xs, ys,
|
|
73928
|
+
var intersectUnionMembers = (xs, ys, path16) => flatMap2(xs, (x) => flatMap2(ys, (y) => {
|
|
73929
73929
|
switch (y._tag) {
|
|
73930
73930
|
case "Literal": {
|
|
73931
73931
|
if (isString(y.literal) && isStringKeyword(x) || isNumber(y.literal) && isNumberKeyword(x) || isBoolean(y.literal) && isBooleanKeyword(x)) {
|
|
@@ -73938,7 +73938,7 @@ var intersectUnionMembers = (xs, ys, path15) => flatMap2(xs, (x) => flatMap2(ys,
|
|
|
73938
73938
|
if (isStringKeyword(x) || isLiteral(x) && isString(x.literal)) {
|
|
73939
73939
|
return [x];
|
|
73940
73940
|
} else if (isRefinement(x)) {
|
|
73941
|
-
return addRefinementToMembers(x, intersectUnionMembers(getTypes(x.from), [y],
|
|
73941
|
+
return addRefinementToMembers(x, intersectUnionMembers(getTypes(x.from), [y], path16));
|
|
73942
73942
|
}
|
|
73943
73943
|
} else if (x === stringKeyword) {
|
|
73944
73944
|
return [y];
|
|
@@ -73950,7 +73950,7 @@ var intersectUnionMembers = (xs, ys, path15) => flatMap2(xs, (x) => flatMap2(ys,
|
|
|
73950
73950
|
if (isNumberKeyword(x) || isLiteral(x) && isNumber(x.literal)) {
|
|
73951
73951
|
return [x];
|
|
73952
73952
|
} else if (isRefinement(x)) {
|
|
73953
|
-
return addRefinementToMembers(x, intersectUnionMembers(getTypes(x.from), [y],
|
|
73953
|
+
return addRefinementToMembers(x, intersectUnionMembers(getTypes(x.from), [y], path16));
|
|
73954
73954
|
}
|
|
73955
73955
|
} else if (x === numberKeyword) {
|
|
73956
73956
|
return [y];
|
|
@@ -73962,7 +73962,7 @@ var intersectUnionMembers = (xs, ys, path15) => flatMap2(xs, (x) => flatMap2(ys,
|
|
|
73962
73962
|
if (isBooleanKeyword(x) || isLiteral(x) && isBoolean(x.literal)) {
|
|
73963
73963
|
return [x];
|
|
73964
73964
|
} else if (isRefinement(x)) {
|
|
73965
|
-
return addRefinementToMembers(x, intersectUnionMembers(getTypes(x.from), [y],
|
|
73965
|
+
return addRefinementToMembers(x, intersectUnionMembers(getTypes(x.from), [y], path16));
|
|
73966
73966
|
}
|
|
73967
73967
|
} else if (x === booleanKeyword) {
|
|
73968
73968
|
return [y];
|
|
@@ -73970,25 +73970,25 @@ var intersectUnionMembers = (xs, ys, path15) => flatMap2(xs, (x) => flatMap2(ys,
|
|
|
73970
73970
|
break;
|
|
73971
73971
|
}
|
|
73972
73972
|
case "Union":
|
|
73973
|
-
return intersectUnionMembers(getTypes(x), y.types,
|
|
73973
|
+
return intersectUnionMembers(getTypes(x), y.types, path16);
|
|
73974
73974
|
case "Suspend":
|
|
73975
|
-
return [new Suspend(() => extendAST(x, y.f(),
|
|
73975
|
+
return [new Suspend(() => extendAST(x, y.f(), path16))];
|
|
73976
73976
|
case "Refinement":
|
|
73977
|
-
return addRefinementToMembers(y, intersectUnionMembers(getTypes(x), getTypes(y.from),
|
|
73977
|
+
return addRefinementToMembers(y, intersectUnionMembers(getTypes(x), getTypes(y.from), path16));
|
|
73978
73978
|
case "TypeLiteral": {
|
|
73979
73979
|
switch (x._tag) {
|
|
73980
73980
|
case "Union":
|
|
73981
|
-
return intersectUnionMembers(x.types, [y],
|
|
73981
|
+
return intersectUnionMembers(x.types, [y], path16);
|
|
73982
73982
|
case "Suspend":
|
|
73983
|
-
return [new Suspend(() => extendAST(x.f(), y,
|
|
73983
|
+
return [new Suspend(() => extendAST(x.f(), y, path16))];
|
|
73984
73984
|
case "Refinement":
|
|
73985
|
-
return addRefinementToMembers(x, intersectUnionMembers(getTypes(x.from), [y],
|
|
73985
|
+
return addRefinementToMembers(x, intersectUnionMembers(getTypes(x.from), [y], path16));
|
|
73986
73986
|
case "TypeLiteral":
|
|
73987
|
-
return [intersectTypeLiterals(x, y,
|
|
73987
|
+
return [intersectTypeLiterals(x, y, path16)];
|
|
73988
73988
|
case "Transformation": {
|
|
73989
73989
|
const transformation = x.transformation;
|
|
73990
|
-
const from = intersectTypeLiterals(x.from, y,
|
|
73991
|
-
const to = intersectTypeLiterals(x.to, typeAST(y),
|
|
73990
|
+
const from = intersectTypeLiterals(x.from, y, path16);
|
|
73991
|
+
const to = intersectTypeLiterals(x.to, typeAST(y), path16);
|
|
73992
73992
|
switch (transformation._tag) {
|
|
73993
73993
|
case "TypeLiteralTransformation":
|
|
73994
73994
|
return [new Transformation(from, to, new TypeLiteralTransformation(transformation.propertySignatureTransformations))];
|
|
@@ -74010,15 +74010,15 @@ var intersectUnionMembers = (xs, ys, path15) => flatMap2(xs, (x) => flatMap2(ys,
|
|
|
74010
74010
|
case "Transformation": {
|
|
74011
74011
|
if (isTransformation(x)) {
|
|
74012
74012
|
if (isTypeLiteralTransformation(y.transformation) && isTypeLiteralTransformation(x.transformation)) {
|
|
74013
|
-
return [new Transformation(intersectTypeLiterals(x.from, y.from,
|
|
74013
|
+
return [new Transformation(intersectTypeLiterals(x.from, y.from, path16), intersectTypeLiterals(x.to, y.to, path16), new TypeLiteralTransformation(y.transformation.propertySignatureTransformations.concat(x.transformation.propertySignatureTransformations)))];
|
|
74014
74014
|
}
|
|
74015
74015
|
} else {
|
|
74016
|
-
return intersectUnionMembers([y], [x],
|
|
74016
|
+
return intersectUnionMembers([y], [x], path16);
|
|
74017
74017
|
}
|
|
74018
74018
|
break;
|
|
74019
74019
|
}
|
|
74020
74020
|
}
|
|
74021
|
-
throw new Error(getSchemaExtendErrorMessage(x, y,
|
|
74021
|
+
throw new Error(getSchemaExtendErrorMessage(x, y, path16));
|
|
74022
74022
|
}));
|
|
74023
74023
|
var extend4 = /* @__PURE__ */ dual(2, (self2, that) => make53(extendAST(self2.ast, that.ast, [])));
|
|
74024
74024
|
var compose3 = /* @__PURE__ */ dual((args2) => isSchema(args2[1]), (from, to) => makeTransformationClass(from, to, compose(from.ast, to.ast)));
|
|
@@ -74693,8 +74693,8 @@ var PiB = (n) => Size(BigInt(n) * bigintPiB);
|
|
|
74693
74693
|
var make54 = (impl) => {
|
|
74694
74694
|
return tag.of({
|
|
74695
74695
|
...impl,
|
|
74696
|
-
exists: (
|
|
74697
|
-
readFileString: (
|
|
74696
|
+
exists: (path16) => pipe(impl.access(path16), as5(true), catchTag2("SystemError", (e) => e.reason === "NotFound" ? succeed9(false) : fail9(e))),
|
|
74697
|
+
readFileString: (path16, encoding) => tryMap2(impl.readFile(path16), {
|
|
74698
74698
|
try: (_) => new TextDecoder(encoding).decode(_),
|
|
74699
74699
|
catch: (cause3) => new BadArgument({
|
|
74700
74700
|
module: "FileSystem",
|
|
@@ -74703,14 +74703,14 @@ var make54 = (impl) => {
|
|
|
74703
74703
|
cause: cause3
|
|
74704
74704
|
})
|
|
74705
74705
|
}),
|
|
74706
|
-
stream: (
|
|
74706
|
+
stream: (path16, options3) => pipe(impl.open(path16, {
|
|
74707
74707
|
flag: "r"
|
|
74708
74708
|
}), options3?.offset ? tap4((file6) => file6.seek(options3.offset, "start")) : identity, map18((file6) => stream(file6, options3)), unwrapScoped7),
|
|
74709
|
-
sink: (
|
|
74709
|
+
sink: (path16, options3) => pipe(impl.open(path16, {
|
|
74710
74710
|
flag: "w",
|
|
74711
74711
|
...options3
|
|
74712
74712
|
}), map18((file6) => forEach11((_) => file6.writeAll(_))), unwrapScoped6),
|
|
74713
|
-
writeFileString: (
|
|
74713
|
+
writeFileString: (path16, data, options3) => flatMap10(try_2({
|
|
74714
74714
|
try: () => new TextEncoder().encode(data),
|
|
74715
74715
|
catch: (cause3) => new BadArgument({
|
|
74716
74716
|
module: "FileSystem",
|
|
@@ -74718,38 +74718,38 @@ var make54 = (impl) => {
|
|
|
74718
74718
|
description: "could not encode string",
|
|
74719
74719
|
cause: cause3
|
|
74720
74720
|
})
|
|
74721
|
-
}), (_) => impl.writeFile(
|
|
74721
|
+
}), (_) => impl.writeFile(path16, _, options3))
|
|
74722
74722
|
});
|
|
74723
74723
|
};
|
|
74724
|
-
var notFound = (method,
|
|
74724
|
+
var notFound = (method, path16) => new SystemError({
|
|
74725
74725
|
module: "FileSystem",
|
|
74726
74726
|
method,
|
|
74727
74727
|
reason: "NotFound",
|
|
74728
74728
|
description: "No such file or directory",
|
|
74729
|
-
pathOrDescriptor:
|
|
74729
|
+
pathOrDescriptor: path16
|
|
74730
74730
|
});
|
|
74731
74731
|
var makeNoop = (fileSystem) => {
|
|
74732
74732
|
return {
|
|
74733
|
-
access(
|
|
74734
|
-
return fail9(notFound("access",
|
|
74733
|
+
access(path16) {
|
|
74734
|
+
return fail9(notFound("access", path16));
|
|
74735
74735
|
},
|
|
74736
|
-
chmod(
|
|
74737
|
-
return fail9(notFound("chmod",
|
|
74736
|
+
chmod(path16) {
|
|
74737
|
+
return fail9(notFound("chmod", path16));
|
|
74738
74738
|
},
|
|
74739
|
-
chown(
|
|
74740
|
-
return fail9(notFound("chown",
|
|
74739
|
+
chown(path16) {
|
|
74740
|
+
return fail9(notFound("chown", path16));
|
|
74741
74741
|
},
|
|
74742
|
-
copy(
|
|
74743
|
-
return fail9(notFound("copy",
|
|
74742
|
+
copy(path16) {
|
|
74743
|
+
return fail9(notFound("copy", path16));
|
|
74744
74744
|
},
|
|
74745
|
-
copyFile(
|
|
74746
|
-
return fail9(notFound("copyFile",
|
|
74745
|
+
copyFile(path16) {
|
|
74746
|
+
return fail9(notFound("copyFile", path16));
|
|
74747
74747
|
},
|
|
74748
74748
|
exists() {
|
|
74749
74749
|
return succeed9(false);
|
|
74750
74750
|
},
|
|
74751
|
-
link(
|
|
74752
|
-
return fail9(notFound("link",
|
|
74751
|
+
link(path16) {
|
|
74752
|
+
return fail9(notFound("link", path16));
|
|
74753
74753
|
},
|
|
74754
74754
|
makeDirectory() {
|
|
74755
74755
|
return die6("not implemented");
|
|
@@ -74766,23 +74766,23 @@ var makeNoop = (fileSystem) => {
|
|
|
74766
74766
|
makeTempFileScoped() {
|
|
74767
74767
|
return die6("not implemented");
|
|
74768
74768
|
},
|
|
74769
|
-
open(
|
|
74770
|
-
return fail9(notFound("open",
|
|
74769
|
+
open(path16) {
|
|
74770
|
+
return fail9(notFound("open", path16));
|
|
74771
74771
|
},
|
|
74772
|
-
readDirectory(
|
|
74773
|
-
return fail9(notFound("readDirectory",
|
|
74772
|
+
readDirectory(path16) {
|
|
74773
|
+
return fail9(notFound("readDirectory", path16));
|
|
74774
74774
|
},
|
|
74775
|
-
readFile(
|
|
74776
|
-
return fail9(notFound("readFile",
|
|
74775
|
+
readFile(path16) {
|
|
74776
|
+
return fail9(notFound("readFile", path16));
|
|
74777
74777
|
},
|
|
74778
|
-
readFileString(
|
|
74779
|
-
return fail9(notFound("readFileString",
|
|
74778
|
+
readFileString(path16) {
|
|
74779
|
+
return fail9(notFound("readFileString", path16));
|
|
74780
74780
|
},
|
|
74781
|
-
readLink(
|
|
74782
|
-
return fail9(notFound("readLink",
|
|
74781
|
+
readLink(path16) {
|
|
74782
|
+
return fail9(notFound("readLink", path16));
|
|
74783
74783
|
},
|
|
74784
|
-
realPath(
|
|
74785
|
-
return fail9(notFound("realPath",
|
|
74784
|
+
realPath(path16) {
|
|
74785
|
+
return fail9(notFound("realPath", path16));
|
|
74786
74786
|
},
|
|
74787
74787
|
remove() {
|
|
74788
74788
|
return _void;
|
|
@@ -74790,32 +74790,32 @@ var makeNoop = (fileSystem) => {
|
|
|
74790
74790
|
rename(oldPath) {
|
|
74791
74791
|
return fail9(notFound("rename", oldPath));
|
|
74792
74792
|
},
|
|
74793
|
-
sink(
|
|
74794
|
-
return fail15(notFound("sink",
|
|
74793
|
+
sink(path16) {
|
|
74794
|
+
return fail15(notFound("sink", path16));
|
|
74795
74795
|
},
|
|
74796
|
-
stat(
|
|
74797
|
-
return fail9(notFound("stat",
|
|
74796
|
+
stat(path16) {
|
|
74797
|
+
return fail9(notFound("stat", path16));
|
|
74798
74798
|
},
|
|
74799
|
-
stream(
|
|
74800
|
-
return fail16(notFound("stream",
|
|
74799
|
+
stream(path16) {
|
|
74800
|
+
return fail16(notFound("stream", path16));
|
|
74801
74801
|
},
|
|
74802
74802
|
symlink(fromPath) {
|
|
74803
74803
|
return fail9(notFound("symlink", fromPath));
|
|
74804
74804
|
},
|
|
74805
|
-
truncate(
|
|
74806
|
-
return fail9(notFound("truncate",
|
|
74805
|
+
truncate(path16) {
|
|
74806
|
+
return fail9(notFound("truncate", path16));
|
|
74807
74807
|
},
|
|
74808
|
-
utimes(
|
|
74809
|
-
return fail9(notFound("utimes",
|
|
74808
|
+
utimes(path16) {
|
|
74809
|
+
return fail9(notFound("utimes", path16));
|
|
74810
74810
|
},
|
|
74811
|
-
watch(
|
|
74812
|
-
return fail16(notFound("watch",
|
|
74811
|
+
watch(path16) {
|
|
74812
|
+
return fail16(notFound("watch", path16));
|
|
74813
74813
|
},
|
|
74814
|
-
writeFile(
|
|
74815
|
-
return fail9(notFound("writeFile",
|
|
74814
|
+
writeFile(path16) {
|
|
74815
|
+
return fail9(notFound("writeFile", path16));
|
|
74816
74816
|
},
|
|
74817
|
-
writeFileString(
|
|
74818
|
-
return fail9(notFound("writeFileString",
|
|
74817
|
+
writeFileString(path16) {
|
|
74818
|
+
return fail9(notFound("writeFileString", path16));
|
|
74819
74819
|
},
|
|
74820
74820
|
...fileSystem
|
|
74821
74821
|
};
|
|
@@ -74875,22 +74875,22 @@ var fileParsers = {
|
|
|
74875
74875
|
toml: (content) => Toml.parse(content),
|
|
74876
74876
|
tml: (content) => Toml.parse(content)
|
|
74877
74877
|
};
|
|
74878
|
-
var read2 = (
|
|
74879
|
-
onFailure: (error4) => fail9(`Could not read file (${
|
|
74880
|
-
onSuccess: (content) => succeed9([
|
|
74878
|
+
var read2 = (path16) => flatMap10(FileSystem, (fs) => matchEffect2(fs.readFile(path16), {
|
|
74879
|
+
onFailure: (error4) => fail9(`Could not read file (${path16}): ${error4}`),
|
|
74880
|
+
onSuccess: (content) => succeed9([path16, content])
|
|
74881
74881
|
}));
|
|
74882
|
-
var readString = (
|
|
74883
|
-
onFailure: (error4) => fail9(`Could not read file (${
|
|
74884
|
-
onSuccess: (content) => succeed9([
|
|
74882
|
+
var readString = (path16) => flatMap10(FileSystem, (fs) => matchEffect2(fs.readFileString(path16), {
|
|
74883
|
+
onFailure: (error4) => fail9(`Could not read file (${path16}): ${error4}`),
|
|
74884
|
+
onSuccess: (content) => succeed9([path16, content])
|
|
74885
74885
|
}));
|
|
74886
|
-
var parse5 = (
|
|
74887
|
-
const parser = fileParsers[format6 ??
|
|
74886
|
+
var parse5 = (path16, content, format6) => {
|
|
74887
|
+
const parser = fileParsers[format6 ?? path16.split(".").pop()];
|
|
74888
74888
|
if (parser === void 0) {
|
|
74889
74889
|
return fail9(`Unsupported file format: ${format6}`);
|
|
74890
74890
|
}
|
|
74891
74891
|
return try_2({
|
|
74892
74892
|
try: () => parser(content),
|
|
74893
|
-
catch: (e) => `Could not parse ${format6} file (${
|
|
74893
|
+
catch: (e) => `Could not parse ${format6} file (${path16}): ${e}`
|
|
74894
74894
|
});
|
|
74895
74895
|
};
|
|
74896
74896
|
|
|
@@ -77191,15 +77191,15 @@ __export(Path_exports, {
|
|
|
77191
77191
|
// node_modules/.pnpm/@effect+platform@0.96.0_effect@3.21.0/node_modules/@effect/platform/dist/esm/internal/path.js
|
|
77192
77192
|
var TypeId22 = /* @__PURE__ */ Symbol.for("@effect/platform/Path");
|
|
77193
77193
|
var Path = /* @__PURE__ */ GenericTag("@effect/platform/Path");
|
|
77194
|
-
function normalizeStringPosix(
|
|
77194
|
+
function normalizeStringPosix(path16, allowAboveRoot) {
|
|
77195
77195
|
let res = "";
|
|
77196
77196
|
let lastSegmentLength = 0;
|
|
77197
77197
|
let lastSlash = -1;
|
|
77198
77198
|
let dots = 0;
|
|
77199
77199
|
let code2;
|
|
77200
|
-
for (let i = 0; i <=
|
|
77201
|
-
if (i <
|
|
77202
|
-
code2 =
|
|
77200
|
+
for (let i = 0; i <= path16.length; ++i) {
|
|
77201
|
+
if (i < path16.length) {
|
|
77202
|
+
code2 = path16.charCodeAt(i);
|
|
77203
77203
|
} else if (code2 === 47) {
|
|
77204
77204
|
break;
|
|
77205
77205
|
} else {
|
|
@@ -77240,9 +77240,9 @@ function normalizeStringPosix(path15, allowAboveRoot) {
|
|
|
77240
77240
|
}
|
|
77241
77241
|
} else {
|
|
77242
77242
|
if (res.length > 0) {
|
|
77243
|
-
res += "/" +
|
|
77243
|
+
res += "/" + path16.slice(lastSlash + 1, i);
|
|
77244
77244
|
} else {
|
|
77245
|
-
res =
|
|
77245
|
+
res = path16.slice(lastSlash + 1, i);
|
|
77246
77246
|
}
|
|
77247
77247
|
lastSegmentLength = i - lastSlash - 1;
|
|
77248
77248
|
}
|
|
@@ -77301,21 +77301,21 @@ var resolve = function resolve2() {
|
|
|
77301
77301
|
let resolvedAbsolute = false;
|
|
77302
77302
|
let cwd = void 0;
|
|
77303
77303
|
for (let i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
|
|
77304
|
-
let
|
|
77304
|
+
let path16;
|
|
77305
77305
|
if (i >= 0) {
|
|
77306
|
-
|
|
77306
|
+
path16 = arguments[i];
|
|
77307
77307
|
} else {
|
|
77308
77308
|
const process2 = globalThis.process;
|
|
77309
77309
|
if (cwd === void 0 && "process" in globalThis && typeof process2 === "object" && process2 !== null && typeof process2.cwd === "function") {
|
|
77310
77310
|
cwd = process2.cwd();
|
|
77311
77311
|
}
|
|
77312
|
-
|
|
77312
|
+
path16 = cwd;
|
|
77313
77313
|
}
|
|
77314
|
-
if (
|
|
77314
|
+
if (path16.length === 0) {
|
|
77315
77315
|
continue;
|
|
77316
77316
|
}
|
|
77317
|
-
resolvedPath =
|
|
77318
|
-
resolvedAbsolute =
|
|
77317
|
+
resolvedPath = path16 + "/" + resolvedPath;
|
|
77318
|
+
resolvedAbsolute = path16.charCodeAt(0) === 47;
|
|
77319
77319
|
}
|
|
77320
77320
|
resolvedPath = normalizeStringPosix(resolvedPath, !resolvedAbsolute);
|
|
77321
77321
|
if (resolvedAbsolute) {
|
|
@@ -77367,18 +77367,18 @@ function encodePathChars(filepath) {
|
|
|
77367
77367
|
var posixImpl = /* @__PURE__ */ Path.of({
|
|
77368
77368
|
[TypeId22]: TypeId22,
|
|
77369
77369
|
resolve,
|
|
77370
|
-
normalize(
|
|
77371
|
-
if (
|
|
77372
|
-
const isAbsolute =
|
|
77373
|
-
const trailingSeparator =
|
|
77374
|
-
|
|
77375
|
-
if (
|
|
77376
|
-
if (
|
|
77377
|
-
if (isAbsolute) return "/" +
|
|
77378
|
-
return
|
|
77370
|
+
normalize(path16) {
|
|
77371
|
+
if (path16.length === 0) return ".";
|
|
77372
|
+
const isAbsolute = path16.charCodeAt(0) === 47;
|
|
77373
|
+
const trailingSeparator = path16.charCodeAt(path16.length - 1) === 47;
|
|
77374
|
+
path16 = normalizeStringPosix(path16, !isAbsolute);
|
|
77375
|
+
if (path16.length === 0 && !isAbsolute) path16 = ".";
|
|
77376
|
+
if (path16.length > 0 && trailingSeparator) path16 += "/";
|
|
77377
|
+
if (isAbsolute) return "/" + path16;
|
|
77378
|
+
return path16;
|
|
77379
77379
|
},
|
|
77380
|
-
isAbsolute(
|
|
77381
|
-
return
|
|
77380
|
+
isAbsolute(path16) {
|
|
77381
|
+
return path16.length > 0 && path16.charCodeAt(0) === 47;
|
|
77382
77382
|
},
|
|
77383
77383
|
join() {
|
|
77384
77384
|
if (arguments.length === 0) {
|
|
@@ -77469,14 +77469,14 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77469
77469
|
return to.slice(toStart);
|
|
77470
77470
|
}
|
|
77471
77471
|
},
|
|
77472
|
-
dirname(
|
|
77473
|
-
if (
|
|
77474
|
-
let code2 =
|
|
77472
|
+
dirname(path16) {
|
|
77473
|
+
if (path16.length === 0) return ".";
|
|
77474
|
+
let code2 = path16.charCodeAt(0);
|
|
77475
77475
|
const hasRoot = code2 === 47;
|
|
77476
77476
|
let end5 = -1;
|
|
77477
77477
|
let matchedSlash = true;
|
|
77478
|
-
for (let i =
|
|
77479
|
-
code2 =
|
|
77478
|
+
for (let i = path16.length - 1; i >= 1; --i) {
|
|
77479
|
+
code2 = path16.charCodeAt(i);
|
|
77480
77480
|
if (code2 === 47) {
|
|
77481
77481
|
if (!matchedSlash) {
|
|
77482
77482
|
end5 = i;
|
|
@@ -77488,19 +77488,19 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77488
77488
|
}
|
|
77489
77489
|
if (end5 === -1) return hasRoot ? "/" : ".";
|
|
77490
77490
|
if (hasRoot && end5 === 1) return "//";
|
|
77491
|
-
return
|
|
77491
|
+
return path16.slice(0, end5);
|
|
77492
77492
|
},
|
|
77493
|
-
basename(
|
|
77493
|
+
basename(path16, ext) {
|
|
77494
77494
|
let start5 = 0;
|
|
77495
77495
|
let end5 = -1;
|
|
77496
77496
|
let matchedSlash = true;
|
|
77497
77497
|
let i;
|
|
77498
|
-
if (ext !== void 0 && ext.length > 0 && ext.length <=
|
|
77499
|
-
if (ext.length ===
|
|
77498
|
+
if (ext !== void 0 && ext.length > 0 && ext.length <= path16.length) {
|
|
77499
|
+
if (ext.length === path16.length && ext === path16) return "";
|
|
77500
77500
|
let extIdx = ext.length - 1;
|
|
77501
77501
|
let firstNonSlashEnd = -1;
|
|
77502
|
-
for (i =
|
|
77503
|
-
const code2 =
|
|
77502
|
+
for (i = path16.length - 1; i >= 0; --i) {
|
|
77503
|
+
const code2 = path16.charCodeAt(i);
|
|
77504
77504
|
if (code2 === 47) {
|
|
77505
77505
|
if (!matchedSlash) {
|
|
77506
77506
|
start5 = i + 1;
|
|
@@ -77524,11 +77524,11 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77524
77524
|
}
|
|
77525
77525
|
}
|
|
77526
77526
|
if (start5 === end5) end5 = firstNonSlashEnd;
|
|
77527
|
-
else if (end5 === -1) end5 =
|
|
77528
|
-
return
|
|
77527
|
+
else if (end5 === -1) end5 = path16.length;
|
|
77528
|
+
return path16.slice(start5, end5);
|
|
77529
77529
|
} else {
|
|
77530
|
-
for (i =
|
|
77531
|
-
if (
|
|
77530
|
+
for (i = path16.length - 1; i >= 0; --i) {
|
|
77531
|
+
if (path16.charCodeAt(i) === 47) {
|
|
77532
77532
|
if (!matchedSlash) {
|
|
77533
77533
|
start5 = i + 1;
|
|
77534
77534
|
break;
|
|
@@ -77539,17 +77539,17 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77539
77539
|
}
|
|
77540
77540
|
}
|
|
77541
77541
|
if (end5 === -1) return "";
|
|
77542
|
-
return
|
|
77542
|
+
return path16.slice(start5, end5);
|
|
77543
77543
|
}
|
|
77544
77544
|
},
|
|
77545
|
-
extname(
|
|
77545
|
+
extname(path16) {
|
|
77546
77546
|
let startDot = -1;
|
|
77547
77547
|
let startPart = 0;
|
|
77548
77548
|
let end5 = -1;
|
|
77549
77549
|
let matchedSlash = true;
|
|
77550
77550
|
let preDotState = 0;
|
|
77551
|
-
for (let i =
|
|
77552
|
-
const code2 =
|
|
77551
|
+
for (let i = path16.length - 1; i >= 0; --i) {
|
|
77552
|
+
const code2 = path16.charCodeAt(i);
|
|
77553
77553
|
if (code2 === 47) {
|
|
77554
77554
|
if (!matchedSlash) {
|
|
77555
77555
|
startPart = i + 1;
|
|
@@ -77576,7 +77576,7 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77576
77576
|
preDotState === 1 && startDot === end5 - 1 && startDot === startPart + 1) {
|
|
77577
77577
|
return "";
|
|
77578
77578
|
}
|
|
77579
|
-
return
|
|
77579
|
+
return path16.slice(startDot, end5);
|
|
77580
77580
|
},
|
|
77581
77581
|
format: function format5(pathObject) {
|
|
77582
77582
|
if (pathObject === null || typeof pathObject !== "object") {
|
|
@@ -77584,7 +77584,7 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77584
77584
|
}
|
|
77585
77585
|
return _format("/", pathObject);
|
|
77586
77586
|
},
|
|
77587
|
-
parse(
|
|
77587
|
+
parse(path16) {
|
|
77588
77588
|
const ret = {
|
|
77589
77589
|
root: "",
|
|
77590
77590
|
dir: "",
|
|
@@ -77592,8 +77592,8 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77592
77592
|
ext: "",
|
|
77593
77593
|
name: ""
|
|
77594
77594
|
};
|
|
77595
|
-
if (
|
|
77596
|
-
let code2 =
|
|
77595
|
+
if (path16.length === 0) return ret;
|
|
77596
|
+
let code2 = path16.charCodeAt(0);
|
|
77597
77597
|
const isAbsolute = code2 === 47;
|
|
77598
77598
|
let start5;
|
|
77599
77599
|
if (isAbsolute) {
|
|
@@ -77606,10 +77606,10 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77606
77606
|
let startPart = 0;
|
|
77607
77607
|
let end5 = -1;
|
|
77608
77608
|
let matchedSlash = true;
|
|
77609
|
-
let i =
|
|
77609
|
+
let i = path16.length - 1;
|
|
77610
77610
|
let preDotState = 0;
|
|
77611
77611
|
for (; i >= start5; --i) {
|
|
77612
|
-
code2 =
|
|
77612
|
+
code2 = path16.charCodeAt(i);
|
|
77613
77613
|
if (code2 === 47) {
|
|
77614
77614
|
if (!matchedSlash) {
|
|
77615
77615
|
startPart = i + 1;
|
|
@@ -77632,20 +77632,20 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
77632
77632
|
preDotState === 0 || // The (right-most) trimmed path component is exactly '..'
|
|
77633
77633
|
preDotState === 1 && startDot === end5 - 1 && startDot === startPart + 1) {
|
|
77634
77634
|
if (end5 !== -1) {
|
|
77635
|
-
if (startPart === 0 && isAbsolute) ret.base = ret.name =
|
|
77636
|
-
else ret.base = ret.name =
|
|
77635
|
+
if (startPart === 0 && isAbsolute) ret.base = ret.name = path16.slice(1, end5);
|
|
77636
|
+
else ret.base = ret.name = path16.slice(startPart, end5);
|
|
77637
77637
|
}
|
|
77638
77638
|
} else {
|
|
77639
77639
|
if (startPart === 0 && isAbsolute) {
|
|
77640
|
-
ret.name =
|
|
77641
|
-
ret.base =
|
|
77640
|
+
ret.name = path16.slice(1, startDot);
|
|
77641
|
+
ret.base = path16.slice(1, end5);
|
|
77642
77642
|
} else {
|
|
77643
|
-
ret.name =
|
|
77644
|
-
ret.base =
|
|
77643
|
+
ret.name = path16.slice(startPart, startDot);
|
|
77644
|
+
ret.base = path16.slice(startPart, end5);
|
|
77645
77645
|
}
|
|
77646
|
-
ret.ext =
|
|
77646
|
+
ret.ext = path16.slice(startDot, end5);
|
|
77647
77647
|
}
|
|
77648
|
-
if (startPart > 0) ret.dir =
|
|
77648
|
+
if (startPart > 0) ret.dir = path16.slice(0, startPart - 1);
|
|
77649
77649
|
else if (isAbsolute) ret.dir = "/";
|
|
77650
77650
|
return ret;
|
|
77651
77651
|
},
|
|
@@ -77682,22 +77682,22 @@ var showConfirmation = /* @__PURE__ */ Confirm.$is("Show");
|
|
|
77682
77682
|
var renderBeep2 = /* @__PURE__ */ render3(beep3, {
|
|
77683
77683
|
style: "pretty"
|
|
77684
77684
|
});
|
|
77685
|
-
function resolveCurrentPath(
|
|
77686
|
-
return match2(
|
|
77685
|
+
function resolveCurrentPath(path16, options3) {
|
|
77686
|
+
return match2(path16, {
|
|
77687
77687
|
onNone: () => match2(options3.startingPath, {
|
|
77688
77688
|
onNone: () => sync5(() => process.cwd()),
|
|
77689
|
-
onSome: (
|
|
77689
|
+
onSome: (path17) => flatMap10(FileSystem, (fs) => (
|
|
77690
77690
|
// Ensure the user provided starting path exists
|
|
77691
|
-
orDie3(fs.exists(
|
|
77691
|
+
orDie3(fs.exists(path17)).pipe(filterOrDieMessage2(identity, `The provided starting path '${path17}' does not exist`), as5(path17))
|
|
77692
77692
|
))
|
|
77693
77693
|
}),
|
|
77694
|
-
onSome: (
|
|
77694
|
+
onSome: (path17) => succeed9(path17)
|
|
77695
77695
|
});
|
|
77696
77696
|
}
|
|
77697
77697
|
function getFileList(directory5, options3) {
|
|
77698
77698
|
return gen3(function* () {
|
|
77699
77699
|
const fs = yield* FileSystem;
|
|
77700
|
-
const
|
|
77700
|
+
const path16 = yield* Path2;
|
|
77701
77701
|
const files = yield* orDie3(fs.readDirectory(directory5)).pipe(
|
|
77702
77702
|
// Always prepend the `".."` option to the file list but allow it
|
|
77703
77703
|
// to be filtered out if the user so desires
|
|
@@ -77706,7 +77706,7 @@ function getFileList(directory5, options3) {
|
|
|
77706
77706
|
return yield* filter8(files, (file6) => {
|
|
77707
77707
|
const result = options3.filter(file6);
|
|
77708
77708
|
const userDefinedFilter = isEffect2(result) ? result : succeed9(result);
|
|
77709
|
-
const directoryFilter = options3.type === "directory" ? map18(orDie3(fs.stat(
|
|
77709
|
+
const directoryFilter = options3.type === "directory" ? map18(orDie3(fs.stat(path16.join(directory5, file6))), (info3) => info3.type === "Directory") : succeed9(true);
|
|
77710
77710
|
return zipWith5(userDefinedFilter, directoryFilter, (a, b) => a && b);
|
|
77711
77711
|
}, {
|
|
77712
77712
|
concurrency: files.length
|
|
@@ -77772,13 +77772,13 @@ function renderFiles(state, files, figures2, options3) {
|
|
|
77772
77772
|
}
|
|
77773
77773
|
function renderNextFrame2(state, options3) {
|
|
77774
77774
|
return gen3(function* () {
|
|
77775
|
-
const
|
|
77775
|
+
const path16 = yield* Path2;
|
|
77776
77776
|
const terminal = yield* Terminal;
|
|
77777
77777
|
const columns = yield* terminal.columns;
|
|
77778
77778
|
const figures2 = yield* figures;
|
|
77779
77779
|
const currentPath = yield* resolveCurrentPath(state.path, options3);
|
|
77780
77780
|
const selectedPath = state.files[state.cursor];
|
|
77781
|
-
const resolvedPath =
|
|
77781
|
+
const resolvedPath = path16.resolve(currentPath, selectedPath);
|
|
77782
77782
|
const resolvedPathMsg = figures2.pointerSmall.pipe(cat2(space2), cat2(text3(resolvedPath)), annotate2(blackBright2));
|
|
77783
77783
|
if (showConfirmation(state.confirm)) {
|
|
77784
77784
|
const leadingSymbol2 = annotate2(text3("?"), cyanBright2);
|
|
@@ -77853,10 +77853,10 @@ function processCursorDown(state) {
|
|
|
77853
77853
|
function processSelection(state, options3) {
|
|
77854
77854
|
return gen3(function* () {
|
|
77855
77855
|
const fs = yield* FileSystem;
|
|
77856
|
-
const
|
|
77856
|
+
const path16 = yield* Path2;
|
|
77857
77857
|
const currentPath = yield* resolveCurrentPath(state.path, options3);
|
|
77858
77858
|
const selectedPath = state.files[state.cursor];
|
|
77859
|
-
const resolvedPath =
|
|
77859
|
+
const resolvedPath = path16.resolve(currentPath, selectedPath);
|
|
77860
77860
|
const info3 = yield* orDie3(fs.stat(resolvedPath));
|
|
77861
77861
|
if (info3.type === "Directory") {
|
|
77862
77862
|
const files = yield* getFileList(resolvedPath, options3);
|
|
@@ -77904,10 +77904,10 @@ function handleProcess2(options3) {
|
|
|
77904
77904
|
case "y":
|
|
77905
77905
|
case "t": {
|
|
77906
77906
|
if (showConfirmation(state.confirm)) {
|
|
77907
|
-
const
|
|
77907
|
+
const path16 = yield* Path2;
|
|
77908
77908
|
const currentPath = yield* resolveCurrentPath(state.path, options3);
|
|
77909
77909
|
const selectedPath = state.files[state.cursor];
|
|
77910
|
-
const resolvedPath =
|
|
77910
|
+
const resolvedPath = path16.resolve(currentPath, selectedPath);
|
|
77911
77911
|
const files = yield* getFileList(resolvedPath, options3);
|
|
77912
77912
|
return Action.NextFrame({
|
|
77913
77913
|
state: {
|
|
@@ -77923,10 +77923,10 @@ function handleProcess2(options3) {
|
|
|
77923
77923
|
case "n":
|
|
77924
77924
|
case "f": {
|
|
77925
77925
|
if (showConfirmation(state.confirm)) {
|
|
77926
|
-
const
|
|
77926
|
+
const path16 = yield* Path2;
|
|
77927
77927
|
const currentPath = yield* resolveCurrentPath(state.path, options3);
|
|
77928
77928
|
const selectedPath = state.files[state.cursor];
|
|
77929
|
-
const resolvedPath =
|
|
77929
|
+
const resolvedPath = path16.resolve(currentPath, selectedPath);
|
|
77930
77930
|
return Action.Submit({
|
|
77931
77931
|
value: resolvedPath
|
|
77932
77932
|
});
|
|
@@ -77948,14 +77948,14 @@ var file = (options3 = {}) => {
|
|
|
77948
77948
|
filter: options3.filter ?? (() => succeed9(true))
|
|
77949
77949
|
};
|
|
77950
77950
|
const initialState3 = gen3(function* () {
|
|
77951
|
-
const
|
|
77952
|
-
const currentPath = yield* resolveCurrentPath(
|
|
77951
|
+
const path16 = none2();
|
|
77952
|
+
const currentPath = yield* resolveCurrentPath(path16, opts);
|
|
77953
77953
|
const files = yield* getFileList(currentPath, opts);
|
|
77954
77954
|
const confirm = Confirm.Hide();
|
|
77955
77955
|
return {
|
|
77956
77956
|
cursor: 0,
|
|
77957
77957
|
files,
|
|
77958
|
-
path:
|
|
77958
|
+
path: path16,
|
|
77959
77959
|
confirm
|
|
77960
77960
|
};
|
|
77961
77961
|
});
|
|
@@ -79116,7 +79116,7 @@ var validateInternal = (self2, value5, config3) => {
|
|
|
79116
79116
|
case "Path": {
|
|
79117
79117
|
return flatMap10(FileSystem, (fileSystem) => {
|
|
79118
79118
|
const errorMsg = "Path options do not have a default value";
|
|
79119
|
-
return orElseFail2(value5, () => errorMsg).pipe(tap4((
|
|
79119
|
+
return orElseFail2(value5, () => errorMsg).pipe(tap4((path16) => orDie3(fileSystem.exists(path16)).pipe(tap4((pathExists) => validatePathExistence(path16, self2.pathExists, pathExists).pipe(zipRight5(validatePathType(path16, self2.pathType, fileSystem).pipe(when2(() => self2.pathExists !== "no" && pathExists))))))));
|
|
79120
79120
|
});
|
|
79121
79121
|
}
|
|
79122
79122
|
case "Redacted": {
|
|
@@ -79131,24 +79131,24 @@ var validateInternal = (self2, value5, config3) => {
|
|
|
79131
79131
|
}
|
|
79132
79132
|
};
|
|
79133
79133
|
var attempt = (option5, typeName, parse9) => orElseFail2(option5, () => `${typeName} options do not have a default value`).pipe(flatMap10((value5) => orElseFail2(parse9(value5), () => `'${value5}' is not a ${typeName}`)));
|
|
79134
|
-
var validatePathExistence = (
|
|
79134
|
+
var validatePathExistence = (path16, shouldPathExist, pathExists) => {
|
|
79135
79135
|
if (shouldPathExist === "no" && pathExists) {
|
|
79136
|
-
return fail9(`Path '${
|
|
79136
|
+
return fail9(`Path '${path16}' must not exist`);
|
|
79137
79137
|
}
|
|
79138
79138
|
if (shouldPathExist === "yes" && !pathExists) {
|
|
79139
|
-
return fail9(`Path '${
|
|
79139
|
+
return fail9(`Path '${path16}' must exist`);
|
|
79140
79140
|
}
|
|
79141
79141
|
return _void;
|
|
79142
79142
|
};
|
|
79143
|
-
var validatePathType = (
|
|
79143
|
+
var validatePathType = (path16, pathType, fileSystem) => {
|
|
79144
79144
|
switch (pathType) {
|
|
79145
79145
|
case "file": {
|
|
79146
|
-
const checkIsFile = fileSystem.stat(
|
|
79147
|
-
return fail9(`Expected path '${
|
|
79146
|
+
const checkIsFile = fileSystem.stat(path16).pipe(map18((info3) => info3.type === "File"), orDie3);
|
|
79147
|
+
return fail9(`Expected path '${path16}' to be a regular file`).pipe(unlessEffect2(checkIsFile), asVoid4);
|
|
79148
79148
|
}
|
|
79149
79149
|
case "directory": {
|
|
79150
|
-
const checkIsDirectory = fileSystem.stat(
|
|
79151
|
-
return fail9(`Expected path '${
|
|
79150
|
+
const checkIsDirectory = fileSystem.stat(path16).pipe(map18((info3) => info3.type === "Directory"), orDie3);
|
|
79151
|
+
return fail9(`Expected path '${path16}' to be a directory`).pipe(unlessEffect2(checkIsDirectory), asVoid4);
|
|
79152
79152
|
}
|
|
79153
79153
|
case "either": {
|
|
79154
79154
|
return _void;
|
|
@@ -79570,13 +79570,13 @@ var file2 = (config3) => makeSingle(fromNullable(config3?.name), path("file", co
|
|
|
79570
79570
|
var fileContent = (config3) => mapEffect5(file2({
|
|
79571
79571
|
...config3,
|
|
79572
79572
|
exists: "yes"
|
|
79573
|
-
}), (
|
|
79574
|
-
var fileParse = (config3) => mapEffect5(fileText(config3), ([
|
|
79573
|
+
}), (path16) => mapError3(read2(path16), (e) => p(e)));
|
|
79574
|
+
var fileParse = (config3) => mapEffect5(fileText(config3), ([path16, content]) => mapError3(parse5(path16, content, config3?.format), (e) => p(e)));
|
|
79575
79575
|
var fileSchema = (schema, config3) => withSchema(fileParse(config3), schema);
|
|
79576
79576
|
var fileText = (config3) => mapEffect5(file2({
|
|
79577
79577
|
...config3,
|
|
79578
79578
|
exists: "yes"
|
|
79579
|
-
}), (
|
|
79579
|
+
}), (path16) => mapError3(readString(path16), (e) => p(e)));
|
|
79580
79580
|
var float3 = (config3) => makeSingle(fromNullable(config3?.name), float2);
|
|
79581
79581
|
var integer4 = (config3) => makeSingle(fromNullable(config3?.name), integer3);
|
|
79582
79582
|
var none12 = /* @__PURE__ */ (() => {
|
|
@@ -80192,12 +80192,12 @@ var directory3 = (name, config3) => makeSingle2(name, empty3(), path("directory"
|
|
|
80192
80192
|
var file4 = (name, config3) => makeSingle2(name, empty3(), path("file", config3?.exists ?? "either"));
|
|
80193
80193
|
var fileContent3 = (name) => mapEffect7(file4(name, {
|
|
80194
80194
|
exists: "yes"
|
|
80195
|
-
}), (
|
|
80196
|
-
var fileParse3 = (name, format6) => mapEffect7(fileText3(name), ([
|
|
80195
|
+
}), (path16) => mapError3(read2(path16), (msg) => invalidValue(p(msg))));
|
|
80196
|
+
var fileParse3 = (name, format6) => mapEffect7(fileText3(name), ([path16, content]) => mapError3(parse5(path16, content, format6), (error4) => invalidValue(p(error4))));
|
|
80197
80197
|
var fileSchema3 = (name, schema, format6) => withSchema3(fileParse3(name, format6), schema);
|
|
80198
80198
|
var fileText3 = (name) => mapEffect7(file4(name, {
|
|
80199
80199
|
exists: "yes"
|
|
80200
|
-
}), (
|
|
80200
|
+
}), (path16) => mapError3(readString(path16), (error4) => invalidValue(p(error4))));
|
|
80201
80201
|
var filterMap8 = /* @__PURE__ */ dual(3, (self2, f, message) => mapEffect7(self2, (a) => match2(f(a), {
|
|
80202
80202
|
onNone: () => left2(invalidValue(p(message))),
|
|
80203
80203
|
onSome: right2
|
|
@@ -83592,7 +83592,7 @@ __export(NodeFileSystem_exports, {
|
|
|
83592
83592
|
});
|
|
83593
83593
|
|
|
83594
83594
|
// node_modules/.pnpm/@effect+platform-node-shared@0.59.0_@effect+cluster@0.58.0_@effect+platform@0.96.0_effe_794592f1554307ab57a76b09e48a12a6/node_modules/@effect/platform-node-shared/dist/esm/internal/error.js
|
|
83595
|
-
var handleErrnoException = (module, method) => (err, [
|
|
83595
|
+
var handleErrnoException = (module, method) => (err, [path16]) => {
|
|
83596
83596
|
let reason = "Unknown";
|
|
83597
83597
|
switch (err.code) {
|
|
83598
83598
|
case "ENOENT":
|
|
@@ -83621,7 +83621,7 @@ var handleErrnoException = (module, method) => (err, [path15]) => {
|
|
|
83621
83621
|
reason,
|
|
83622
83622
|
module,
|
|
83623
83623
|
method,
|
|
83624
|
-
pathOrDescriptor:
|
|
83624
|
+
pathOrDescriptor: path16,
|
|
83625
83625
|
syscall: err.syscall,
|
|
83626
83626
|
description: err.message,
|
|
83627
83627
|
cause: err
|
|
@@ -83636,7 +83636,7 @@ var handleBadArgument = (method) => (cause3) => new BadArgument({
|
|
|
83636
83636
|
});
|
|
83637
83637
|
var access2 = /* @__PURE__ */ (() => {
|
|
83638
83638
|
const nodeAccess = /* @__PURE__ */ effectify2(NFS__namespace.access, /* @__PURE__ */ handleErrnoException("FileSystem", "access"), /* @__PURE__ */ handleBadArgument("access"));
|
|
83639
|
-
return (
|
|
83639
|
+
return (path16, options3) => {
|
|
83640
83640
|
let mode = NFS__namespace.constants.F_OK;
|
|
83641
83641
|
if (options3?.readable) {
|
|
83642
83642
|
mode |= NFS__namespace.constants.R_OK;
|
|
@@ -83644,7 +83644,7 @@ var access2 = /* @__PURE__ */ (() => {
|
|
|
83644
83644
|
if (options3?.writable) {
|
|
83645
83645
|
mode |= NFS__namespace.constants.W_OK;
|
|
83646
83646
|
}
|
|
83647
|
-
return nodeAccess(
|
|
83647
|
+
return nodeAccess(path16, mode);
|
|
83648
83648
|
};
|
|
83649
83649
|
})();
|
|
83650
83650
|
var copy3 = /* @__PURE__ */ (() => {
|
|
@@ -83661,11 +83661,11 @@ var copyFile2 = /* @__PURE__ */ (() => {
|
|
|
83661
83661
|
})();
|
|
83662
83662
|
var chmod2 = /* @__PURE__ */ (() => {
|
|
83663
83663
|
const nodeChmod = /* @__PURE__ */ effectify2(NFS__namespace.chmod, /* @__PURE__ */ handleErrnoException("FileSystem", "chmod"), /* @__PURE__ */ handleBadArgument("chmod"));
|
|
83664
|
-
return (
|
|
83664
|
+
return (path16, mode) => nodeChmod(path16, mode);
|
|
83665
83665
|
})();
|
|
83666
83666
|
var chown2 = /* @__PURE__ */ (() => {
|
|
83667
83667
|
const nodeChown = /* @__PURE__ */ effectify2(NFS__namespace.chown, /* @__PURE__ */ handleErrnoException("FileSystem", "chown"), /* @__PURE__ */ handleBadArgument("chown"));
|
|
83668
|
-
return (
|
|
83668
|
+
return (path16, uid, gid) => nodeChown(path16, uid, gid);
|
|
83669
83669
|
})();
|
|
83670
83670
|
var link2 = /* @__PURE__ */ (() => {
|
|
83671
83671
|
const nodeLink = /* @__PURE__ */ effectify2(NFS__namespace.link, /* @__PURE__ */ handleErrnoException("FileSystem", "link"), /* @__PURE__ */ handleBadArgument("link"));
|
|
@@ -83673,7 +83673,7 @@ var link2 = /* @__PURE__ */ (() => {
|
|
|
83673
83673
|
})();
|
|
83674
83674
|
var makeDirectory = /* @__PURE__ */ (() => {
|
|
83675
83675
|
const nodeMkdir = /* @__PURE__ */ effectify2(NFS__namespace.mkdir, /* @__PURE__ */ handleErrnoException("FileSystem", "makeDirectory"), /* @__PURE__ */ handleBadArgument("makeDirectory"));
|
|
83676
|
-
return (
|
|
83676
|
+
return (path16, options3) => nodeMkdir(path16, {
|
|
83677
83677
|
recursive: options3?.recursive ?? false,
|
|
83678
83678
|
mode: options3?.mode
|
|
83679
83679
|
});
|
|
@@ -83689,7 +83689,7 @@ var makeTempDirectoryFactory = (method) => {
|
|
|
83689
83689
|
var makeTempDirectory = /* @__PURE__ */ makeTempDirectoryFactory("makeTempDirectory");
|
|
83690
83690
|
var removeFactory = (method) => {
|
|
83691
83691
|
const nodeRm = effectify2(NFS__namespace.rm, handleErrnoException("FileSystem", method), handleBadArgument(method));
|
|
83692
|
-
return (
|
|
83692
|
+
return (path16, options3) => nodeRm(path16, {
|
|
83693
83693
|
recursive: options3?.recursive ?? false,
|
|
83694
83694
|
force: options3?.force ?? false
|
|
83695
83695
|
});
|
|
@@ -83705,7 +83705,7 @@ var makeTempDirectoryScoped = /* @__PURE__ */ (() => {
|
|
|
83705
83705
|
var openFactory = (method) => {
|
|
83706
83706
|
const nodeOpen = effectify2(NFS__namespace.open, handleErrnoException("FileSystem", method), handleBadArgument(method));
|
|
83707
83707
|
const nodeClose = effectify2(NFS__namespace.close, handleErrnoException("FileSystem", method), handleBadArgument(method));
|
|
83708
|
-
return (
|
|
83708
|
+
return (path16, options3) => pipe(acquireRelease2(nodeOpen(path16, options3?.flag ?? "r", options3?.mode), (fd) => orDie3(nodeClose(fd))), map18((fd) => makeFile(FileDescriptor(fd), options3?.flag?.startsWith("a") ?? false)));
|
|
83709
83709
|
};
|
|
83710
83710
|
var open2 = /* @__PURE__ */ openFactory("open");
|
|
83711
83711
|
var makeFile = /* @__PURE__ */ (() => {
|
|
@@ -83820,7 +83820,7 @@ var makeTempFileFactory = (method) => {
|
|
|
83820
83820
|
const makeDirectory2 = makeTempDirectoryFactory(method);
|
|
83821
83821
|
const open3 = openFactory(method);
|
|
83822
83822
|
const randomHexString2 = (bytes) => sync5(() => Crypto__namespace.randomBytes(bytes).toString("hex"));
|
|
83823
|
-
return (options3) => pipe(zip6(makeDirectory2(options3), randomHexString2(6)), map18(([directory5, random4]) => path6__namespace.join(directory5, random4 + (options3?.suffix ?? ""))), tap4((
|
|
83823
|
+
return (options3) => pipe(zip6(makeDirectory2(options3), randomHexString2(6)), map18(([directory5, random4]) => path6__namespace.join(directory5, random4 + (options3?.suffix ?? ""))), tap4((path16) => scoped2(open3(path16, {
|
|
83824
83824
|
flag: "w+"
|
|
83825
83825
|
}))));
|
|
83826
83826
|
};
|
|
@@ -83832,17 +83832,17 @@ var makeTempFileScoped = /* @__PURE__ */ (() => {
|
|
|
83832
83832
|
recursive: true
|
|
83833
83833
|
})));
|
|
83834
83834
|
})();
|
|
83835
|
-
var readDirectory = (
|
|
83836
|
-
try: () => NFS__namespace.promises.readdir(
|
|
83837
|
-
catch: (err) => handleErrnoException("FileSystem", "readDirectory")(err, [
|
|
83835
|
+
var readDirectory = (path16, options3) => tryPromise2({
|
|
83836
|
+
try: () => NFS__namespace.promises.readdir(path16, options3),
|
|
83837
|
+
catch: (err) => handleErrnoException("FileSystem", "readDirectory")(err, [path16])
|
|
83838
83838
|
});
|
|
83839
|
-
var readFile2 = (
|
|
83839
|
+
var readFile2 = (path16) => async2((resume2, signal) => {
|
|
83840
83840
|
try {
|
|
83841
|
-
NFS__namespace.readFile(
|
|
83841
|
+
NFS__namespace.readFile(path16, {
|
|
83842
83842
|
signal
|
|
83843
83843
|
}, (err, data) => {
|
|
83844
83844
|
if (err) {
|
|
83845
|
-
resume2(fail9(handleErrnoException("FileSystem", "readFile")(err, [
|
|
83845
|
+
resume2(fail9(handleErrnoException("FileSystem", "readFile")(err, [path16])));
|
|
83846
83846
|
} else {
|
|
83847
83847
|
resume2(succeed9(data));
|
|
83848
83848
|
}
|
|
@@ -83853,11 +83853,11 @@ var readFile2 = (path15) => async2((resume2, signal) => {
|
|
|
83853
83853
|
});
|
|
83854
83854
|
var readLink = /* @__PURE__ */ (() => {
|
|
83855
83855
|
const nodeReadLink = /* @__PURE__ */ effectify2(NFS__namespace.readlink, /* @__PURE__ */ handleErrnoException("FileSystem", "readLink"), /* @__PURE__ */ handleBadArgument("readLink"));
|
|
83856
|
-
return (
|
|
83856
|
+
return (path16) => nodeReadLink(path16);
|
|
83857
83857
|
})();
|
|
83858
83858
|
var realPath = /* @__PURE__ */ (() => {
|
|
83859
83859
|
const nodeRealPath = /* @__PURE__ */ effectify2(NFS__namespace.realpath, /* @__PURE__ */ handleErrnoException("FileSystem", "realPath"), /* @__PURE__ */ handleBadArgument("realPath"));
|
|
83860
|
-
return (
|
|
83860
|
+
return (path16) => nodeRealPath(path16);
|
|
83861
83861
|
})();
|
|
83862
83862
|
var rename3 = /* @__PURE__ */ (() => {
|
|
83863
83863
|
const nodeRename = /* @__PURE__ */ effectify2(NFS__namespace.rename, /* @__PURE__ */ handleErrnoException("FileSystem", "rename"), /* @__PURE__ */ handleBadArgument("rename"));
|
|
@@ -83881,69 +83881,69 @@ var makeFileInfo = (stat3) => ({
|
|
|
83881
83881
|
});
|
|
83882
83882
|
var stat2 = /* @__PURE__ */ (() => {
|
|
83883
83883
|
const nodeStat = /* @__PURE__ */ effectify2(NFS__namespace.stat, /* @__PURE__ */ handleErrnoException("FileSystem", "stat"), /* @__PURE__ */ handleBadArgument("stat"));
|
|
83884
|
-
return (
|
|
83884
|
+
return (path16) => map18(nodeStat(path16), makeFileInfo);
|
|
83885
83885
|
})();
|
|
83886
83886
|
var symlink2 = /* @__PURE__ */ (() => {
|
|
83887
83887
|
const nodeSymlink = /* @__PURE__ */ effectify2(NFS__namespace.symlink, /* @__PURE__ */ handleErrnoException("FileSystem", "symlink"), /* @__PURE__ */ handleBadArgument("symlink"));
|
|
83888
|
-
return (
|
|
83888
|
+
return (target2, path16) => nodeSymlink(target2, path16);
|
|
83889
83889
|
})();
|
|
83890
83890
|
var truncate2 = /* @__PURE__ */ (() => {
|
|
83891
83891
|
const nodeTruncate = /* @__PURE__ */ effectify2(NFS__namespace.truncate, /* @__PURE__ */ handleErrnoException("FileSystem", "truncate"), /* @__PURE__ */ handleBadArgument("truncate"));
|
|
83892
|
-
return (
|
|
83892
|
+
return (path16, length4) => nodeTruncate(path16, length4 !== void 0 ? Number(length4) : void 0);
|
|
83893
83893
|
})();
|
|
83894
83894
|
var utimes2 = /* @__PURE__ */ (() => {
|
|
83895
83895
|
const nodeUtimes = /* @__PURE__ */ effectify2(NFS__namespace.utimes, /* @__PURE__ */ handleErrnoException("FileSystem", "utime"), /* @__PURE__ */ handleBadArgument("utime"));
|
|
83896
|
-
return (
|
|
83896
|
+
return (path16, atime, mtime) => nodeUtimes(path16, atime, mtime);
|
|
83897
83897
|
})();
|
|
83898
|
-
var watchNode = (
|
|
83899
|
-
const watcher = NFS__namespace.watch(
|
|
83898
|
+
var watchNode = (path16, options3) => asyncScoped2((emit2) => acquireRelease2(sync5(() => {
|
|
83899
|
+
const watcher = NFS__namespace.watch(path16, {
|
|
83900
83900
|
recursive: options3?.recursive
|
|
83901
|
-
}, (event,
|
|
83902
|
-
if (!
|
|
83901
|
+
}, (event, path17) => {
|
|
83902
|
+
if (!path17) return;
|
|
83903
83903
|
switch (event) {
|
|
83904
83904
|
case "rename": {
|
|
83905
|
-
|
|
83905
|
+
emit2.fromEffect(matchEffect2(stat2(path17), {
|
|
83906
83906
|
onSuccess: (_) => succeed9(WatchEventCreate({
|
|
83907
|
-
path:
|
|
83907
|
+
path: path17
|
|
83908
83908
|
})),
|
|
83909
83909
|
onFailure: (err) => err._tag === "SystemError" && err.reason === "NotFound" ? succeed9(WatchEventRemove({
|
|
83910
|
-
path:
|
|
83910
|
+
path: path17
|
|
83911
83911
|
})) : fail9(err)
|
|
83912
83912
|
}));
|
|
83913
83913
|
return;
|
|
83914
83914
|
}
|
|
83915
83915
|
case "change": {
|
|
83916
|
-
|
|
83917
|
-
path:
|
|
83916
|
+
emit2.single(WatchEventUpdate({
|
|
83917
|
+
path: path17
|
|
83918
83918
|
}));
|
|
83919
83919
|
return;
|
|
83920
83920
|
}
|
|
83921
83921
|
}
|
|
83922
83922
|
});
|
|
83923
83923
|
watcher.on("error", (error4) => {
|
|
83924
|
-
|
|
83924
|
+
emit2.fail(new SystemError({
|
|
83925
83925
|
module: "FileSystem",
|
|
83926
83926
|
reason: "Unknown",
|
|
83927
83927
|
method: "watch",
|
|
83928
|
-
pathOrDescriptor:
|
|
83928
|
+
pathOrDescriptor: path16,
|
|
83929
83929
|
cause: error4
|
|
83930
83930
|
}));
|
|
83931
83931
|
});
|
|
83932
83932
|
watcher.on("close", () => {
|
|
83933
|
-
|
|
83933
|
+
emit2.end();
|
|
83934
83934
|
});
|
|
83935
83935
|
return watcher;
|
|
83936
83936
|
}), (watcher) => sync5(() => watcher.close())));
|
|
83937
|
-
var watch2 = (backend,
|
|
83938
|
-
var writeFile2 = (
|
|
83937
|
+
var watch2 = (backend, path16, options3) => stat2(path16).pipe(map18((stat3) => backend.pipe(flatMap((_) => _.register(path16, stat3, options3)), getOrElse(() => watchNode(path16, options3)))), unwrap4);
|
|
83938
|
+
var writeFile2 = (path16, data, options3) => async2((resume2, signal) => {
|
|
83939
83939
|
try {
|
|
83940
|
-
NFS__namespace.writeFile(
|
|
83940
|
+
NFS__namespace.writeFile(path16, data, {
|
|
83941
83941
|
signal,
|
|
83942
83942
|
flag: options3?.flag,
|
|
83943
83943
|
mode: options3?.mode
|
|
83944
83944
|
}, (err) => {
|
|
83945
83945
|
if (err) {
|
|
83946
|
-
resume2(fail9(handleErrnoException("FileSystem", "writeFile")(err, [
|
|
83946
|
+
resume2(fail9(handleErrnoException("FileSystem", "writeFile")(err, [path16])));
|
|
83947
83947
|
} else {
|
|
83948
83948
|
resume2(_void);
|
|
83949
83949
|
}
|
|
@@ -83975,8 +83975,8 @@ var makeFileSystem = /* @__PURE__ */ map18(/* @__PURE__ */ serviceOption2(WatchB
|
|
|
83975
83975
|
symlink: symlink2,
|
|
83976
83976
|
truncate: truncate2,
|
|
83977
83977
|
utimes: utimes2,
|
|
83978
|
-
watch(
|
|
83979
|
-
return watch2(backend,
|
|
83978
|
+
watch(path16, options3) {
|
|
83979
|
+
return watch2(backend, path16, options3);
|
|
83980
83980
|
},
|
|
83981
83981
|
writeFile: writeFile2
|
|
83982
83982
|
}));
|
|
@@ -84236,12 +84236,12 @@ var fromFileUrl2 = (url2) => try_2({
|
|
|
84236
84236
|
cause: error4
|
|
84237
84237
|
})
|
|
84238
84238
|
});
|
|
84239
|
-
var toFileUrl2 = (
|
|
84240
|
-
try: () => NodeUrl__namespace.pathToFileURL(
|
|
84239
|
+
var toFileUrl2 = (path16) => try_2({
|
|
84240
|
+
try: () => NodeUrl__namespace.pathToFileURL(path16),
|
|
84241
84241
|
catch: (error4) => new BadArgument({
|
|
84242
84242
|
module: "Path",
|
|
84243
84243
|
method: "toFileUrl",
|
|
84244
|
-
description: `Invalid path: ${
|
|
84244
|
+
description: `Invalid path: ${path16}`,
|
|
84245
84245
|
cause: error4
|
|
84246
84246
|
})
|
|
84247
84247
|
});
|
|
@@ -84359,11 +84359,11 @@ var platformWorkerImpl = /* @__PURE__ */ makePlatform2()({
|
|
|
84359
84359
|
},
|
|
84360
84360
|
listen({
|
|
84361
84361
|
deferred,
|
|
84362
|
-
emit,
|
|
84362
|
+
emit: emit2,
|
|
84363
84363
|
port: port2
|
|
84364
84364
|
}) {
|
|
84365
84365
|
port2.worker.on("message", (message) => {
|
|
84366
|
-
|
|
84366
|
+
emit2(message);
|
|
84367
84367
|
});
|
|
84368
84368
|
port2.worker.on("messageerror", (cause3) => {
|
|
84369
84369
|
unsafeDone(deferred, new WorkerError({
|
|
@@ -84460,6 +84460,13 @@ var makeGitService = Effect_exports.gen(function* () {
|
|
|
84460
84460
|
const resetHead = Effect_exports.fn("resetHead")(function* () {
|
|
84461
84461
|
yield* runCommandWithExitCode("git", "reset", "HEAD^");
|
|
84462
84462
|
});
|
|
84463
|
+
const clean = Effect_exports.fn("clean")(function* () {
|
|
84464
|
+
yield* runCommandWithExitCode(
|
|
84465
|
+
"git",
|
|
84466
|
+
"clean",
|
|
84467
|
+
"-fd"
|
|
84468
|
+
);
|
|
84469
|
+
});
|
|
84463
84470
|
const restoreStaged = Effect_exports.fn(
|
|
84464
84471
|
"restoreStaged"
|
|
84465
84472
|
)(function* () {
|
|
@@ -84522,6 +84529,7 @@ var makeGitService = Effect_exports.gen(function* () {
|
|
|
84522
84529
|
resetHard,
|
|
84523
84530
|
resetHead,
|
|
84524
84531
|
restoreStaged,
|
|
84532
|
+
clean,
|
|
84525
84533
|
applyAsUnstagedChanges: Effect_exports.fn(
|
|
84526
84534
|
"applyAsUnstagedChanges"
|
|
84527
84535
|
)(function* (sha) {
|
|
@@ -85303,28 +85311,36 @@ var CommitNotFoundError = class extends Data_exports.TaggedError(
|
|
|
85303
85311
|
"CommitNotFoundError"
|
|
85304
85312
|
) {
|
|
85305
85313
|
};
|
|
85314
|
+
var LESSON_ID_BOUNDARY = ": ";
|
|
85306
85315
|
var parseCommits = (commitHistory) => {
|
|
85307
85316
|
return commitHistory.trim().split("\n").filter(Boolean).map((line4) => {
|
|
85308
85317
|
const [sha, ...messageParts] = line4.split(" ");
|
|
85309
85318
|
const fullMessage = messageParts.join(" ");
|
|
85310
|
-
const
|
|
85311
|
-
|
|
85319
|
+
const boundaryIndex = fullMessage.indexOf(
|
|
85320
|
+
LESSON_ID_BOUNDARY
|
|
85312
85321
|
);
|
|
85313
|
-
const
|
|
85314
|
-
|
|
85315
|
-
"0"
|
|
85316
|
-
)}.${lessonMatch[2].padStart(
|
|
85317
|
-
2,
|
|
85318
|
-
"0"
|
|
85319
|
-
)}.${lessonMatch[3].padStart(2, "0")}` : null;
|
|
85320
|
-
const message = lessonMatch ? fullMessage.slice(lessonMatch[0].length).trim() : fullMessage;
|
|
85322
|
+
const lessonId = boundaryIndex > 0 ? fullMessage.slice(0, boundaryIndex) : null;
|
|
85323
|
+
const message = boundaryIndex > 0 ? fullMessage.slice(boundaryIndex + LESSON_ID_BOUNDARY.length).trim() : fullMessage;
|
|
85321
85324
|
return {
|
|
85322
85325
|
sha,
|
|
85323
85326
|
message,
|
|
85324
|
-
lessonId
|
|
85327
|
+
lessonId
|
|
85325
85328
|
};
|
|
85326
85329
|
});
|
|
85327
85330
|
};
|
|
85331
|
+
var getCandidateCommits = (branch) => Effect_exports.gen(function* () {
|
|
85332
|
+
const git = yield* GitService;
|
|
85333
|
+
const hasUpstreamMain = yield* git.fetch("upstream", "main").pipe(
|
|
85334
|
+
Effect_exports.as(true),
|
|
85335
|
+
Effect_exports.catchTag(
|
|
85336
|
+
"FailedToFetchError",
|
|
85337
|
+
() => Effect_exports.succeed(false)
|
|
85338
|
+
)
|
|
85339
|
+
);
|
|
85340
|
+
const range4 = hasUpstreamMain ? `upstream/main..${branch}` : branch;
|
|
85341
|
+
const history = yield* git.getLogOnelineReverse(range4);
|
|
85342
|
+
return parseCommits(history);
|
|
85343
|
+
});
|
|
85328
85344
|
var selectLessonCommit = ({
|
|
85329
85345
|
branch,
|
|
85330
85346
|
excludeCurrentBranch,
|
|
@@ -85334,21 +85350,18 @@ var selectLessonCommit = ({
|
|
|
85334
85350
|
}) => Effect_exports.gen(function* () {
|
|
85335
85351
|
const gitService = yield* GitService;
|
|
85336
85352
|
const promptService = yield* PromptService;
|
|
85337
|
-
let commits;
|
|
85353
|
+
let commits = yield* getCandidateCommits(branch);
|
|
85338
85354
|
if (excludeCurrentBranch) {
|
|
85339
85355
|
const currentBranchHistory = yield* gitService.getLogOneline("HEAD");
|
|
85340
|
-
const currentBranchCommits = parseCommits(
|
|
85356
|
+
const currentBranchCommits = parseCommits(
|
|
85357
|
+
currentBranchHistory
|
|
85358
|
+
);
|
|
85341
85359
|
const currentLessonIds = new Set(
|
|
85342
85360
|
currentBranchCommits.filter((c) => c.lessonId !== null).map((c) => c.lessonId)
|
|
85343
85361
|
);
|
|
85344
|
-
|
|
85345
|
-
const allTargetCommits = parseCommits(targetBranchHistory);
|
|
85346
|
-
commits = allTargetCommits.filter(
|
|
85362
|
+
commits = commits.filter(
|
|
85347
85363
|
(c) => !c.lessonId || !currentLessonIds.has(c.lessonId)
|
|
85348
85364
|
);
|
|
85349
|
-
} else {
|
|
85350
|
-
const commitHistory = yield* gitService.getLogOneline(branch);
|
|
85351
|
-
commits = parseCommits(commitHistory);
|
|
85352
85365
|
}
|
|
85353
85366
|
let selectedLessonId;
|
|
85354
85367
|
if (Option_exports.isSome(lessonId)) {
|
|
@@ -85369,12 +85382,9 @@ var selectLessonCommit = ({
|
|
|
85369
85382
|
})
|
|
85370
85383
|
);
|
|
85371
85384
|
}
|
|
85372
|
-
const sortedCommits = commitsWithLessonIds.sort((a, b) => {
|
|
85373
|
-
return a.lessonId.localeCompare(b.lessonId);
|
|
85374
|
-
});
|
|
85375
85385
|
const choices = [
|
|
85376
85386
|
...extraChoices ?? [],
|
|
85377
|
-
...
|
|
85387
|
+
...commitsWithLessonIds.map((commit) => ({
|
|
85378
85388
|
lessonId: commit.lessonId,
|
|
85379
85389
|
message: commit.message
|
|
85380
85390
|
}))
|
|
@@ -85675,13 +85685,13 @@ var Lesson = class {
|
|
|
85675
85685
|
});
|
|
85676
85686
|
}
|
|
85677
85687
|
};
|
|
85678
|
-
var getNameAndNumberFromPath = (
|
|
85679
|
-
const numSection =
|
|
85688
|
+
var getNameAndNumberFromPath = (path16) => {
|
|
85689
|
+
const numSection = path16.split("-")[0];
|
|
85680
85690
|
if (typeof numSection === "undefined") {
|
|
85681
85691
|
return Effect_exports.fail(
|
|
85682
85692
|
new InvalidPathError({
|
|
85683
|
-
path:
|
|
85684
|
-
message: `Could not retrieve number from path: ${
|
|
85693
|
+
path: path16,
|
|
85694
|
+
message: `Could not retrieve number from path: ${path16}`
|
|
85685
85695
|
})
|
|
85686
85696
|
);
|
|
85687
85697
|
}
|
|
@@ -85689,18 +85699,18 @@ var getNameAndNumberFromPath = (path15) => {
|
|
|
85689
85699
|
if (Number.isNaN(num)) {
|
|
85690
85700
|
return Effect_exports.fail(
|
|
85691
85701
|
new PathNumberIsNaNError({
|
|
85692
|
-
path:
|
|
85702
|
+
path: path16,
|
|
85693
85703
|
numSection,
|
|
85694
|
-
message: `Could not retrieve number from path: ${
|
|
85704
|
+
message: `Could not retrieve number from path: ${path16}`
|
|
85695
85705
|
})
|
|
85696
85706
|
);
|
|
85697
85707
|
}
|
|
85698
|
-
const name =
|
|
85708
|
+
const name = path16.split("-").slice(1).join("-");
|
|
85699
85709
|
if (!name) {
|
|
85700
85710
|
return Effect_exports.fail(
|
|
85701
85711
|
new InvalidPathError({
|
|
85702
|
-
path:
|
|
85703
|
-
message: `Could not retrieve name from path: ${
|
|
85712
|
+
path: path16,
|
|
85713
|
+
message: `Could not retrieve name from path: ${path16}`
|
|
85704
85714
|
})
|
|
85705
85715
|
);
|
|
85706
85716
|
}
|
|
@@ -85709,12 +85719,12 @@ var getNameAndNumberFromPath = (path15) => {
|
|
|
85709
85719
|
num
|
|
85710
85720
|
});
|
|
85711
85721
|
};
|
|
85712
|
-
var parseSection = Effect_exports.fn("parseSection")(function* (
|
|
85713
|
-
const { name, num } = yield* getNameAndNumberFromPath(
|
|
85722
|
+
var parseSection = Effect_exports.fn("parseSection")(function* (path16) {
|
|
85723
|
+
const { name, num } = yield* getNameAndNumberFromPath(path16);
|
|
85714
85724
|
return {
|
|
85715
85725
|
name,
|
|
85716
85726
|
num,
|
|
85717
|
-
path:
|
|
85727
|
+
path: path16
|
|
85718
85728
|
};
|
|
85719
85729
|
});
|
|
85720
85730
|
var filterMeOut = Symbol("filterMeOut");
|
|
@@ -86116,8 +86126,8 @@ var RunLessonSimpleError = class extends Data_exports.TaggedError(
|
|
|
86116
86126
|
) {
|
|
86117
86127
|
};
|
|
86118
86128
|
var notFound2 = Symbol("notFound");
|
|
86119
|
-
var getNumberFromPathSegment = (
|
|
86120
|
-
const numberSegment =
|
|
86129
|
+
var getNumberFromPathSegment = (path16) => {
|
|
86130
|
+
const numberSegment = path16.split("-")[0];
|
|
86121
86131
|
return Number.isNaN(Number(numberSegment)) ? notFound2 : Number(numberSegment);
|
|
86122
86132
|
};
|
|
86123
86133
|
var startsWithNumber = (segment) => {
|
|
@@ -87066,25 +87076,6 @@ var getCommitsBetweenBranches = (opts) => Effect_exports.gen(function* () {
|
|
|
87066
87076
|
}
|
|
87067
87077
|
return commits;
|
|
87068
87078
|
});
|
|
87069
|
-
var selectCommit = (opts) => Effect_exports.gen(function* () {
|
|
87070
|
-
const promptService = yield* PromptService;
|
|
87071
|
-
const formattedCommits = opts.commits.map((commit) => ({
|
|
87072
|
-
lessonId: commit.sequence.toString().padStart(2, "0"),
|
|
87073
|
-
message: commit.message
|
|
87074
|
-
}));
|
|
87075
|
-
const selectedId = yield* promptService.selectLessonCommit(
|
|
87076
|
-
formattedCommits,
|
|
87077
|
-
opts.promptMessage
|
|
87078
|
-
);
|
|
87079
|
-
const selectedSequence = parseInt(selectedId, 10);
|
|
87080
|
-
const selectedCommit = opts.commits.find(
|
|
87081
|
-
(c) => c.sequence === selectedSequence
|
|
87082
|
-
);
|
|
87083
|
-
if (!selectedCommit) {
|
|
87084
|
-
return opts.commits[0];
|
|
87085
|
-
}
|
|
87086
|
-
return selectedCommit;
|
|
87087
|
-
});
|
|
87088
87079
|
|
|
87089
87080
|
// src/internal/diffs-to-repo.ts
|
|
87090
87081
|
var InvalidProjectRepoError2 = class extends Data_exports.TaggedError(
|
|
@@ -87287,320 +87278,423 @@ var diffsToRepo = Command_exports.make(
|
|
|
87287
87278
|
"Generate sequential lesson folders from commits on live branch"
|
|
87288
87279
|
)
|
|
87289
87280
|
);
|
|
87290
|
-
|
|
87291
|
-
|
|
87281
|
+
|
|
87282
|
+
// src/internal/edit-commit/errors.ts
|
|
87283
|
+
var SessionExistsError = class extends Data_exports.TaggedError(
|
|
87284
|
+
"SessionExistsError"
|
|
87292
87285
|
) {
|
|
87286
|
+
code = "session_exists";
|
|
87293
87287
|
};
|
|
87294
|
-
|
|
87295
|
-
"
|
|
87288
|
+
var CommitNotFoundError2 = class extends Data_exports.TaggedError(
|
|
87289
|
+
"CommitNotFoundError"
|
|
87296
87290
|
) {
|
|
87297
|
-
|
|
87298
|
-
|
|
87299
|
-
|
|
87291
|
+
code = "commit_not_found";
|
|
87292
|
+
};
|
|
87293
|
+
var NoSessionError = class extends Data_exports.TaggedError(
|
|
87294
|
+
"NoSessionError"
|
|
87300
87295
|
) {
|
|
87296
|
+
code = "no_session";
|
|
87301
87297
|
};
|
|
87302
|
-
var
|
|
87303
|
-
"
|
|
87304
|
-
|
|
87305
|
-
|
|
87306
|
-
|
|
87307
|
-
|
|
87308
|
-
|
|
87309
|
-
|
|
87310
|
-
|
|
87311
|
-
|
|
87312
|
-
|
|
87313
|
-
|
|
87314
|
-
|
|
87315
|
-
|
|
87316
|
-
|
|
87317
|
-
|
|
87318
|
-
|
|
87319
|
-
|
|
87320
|
-
|
|
87321
|
-
|
|
87322
|
-
|
|
87323
|
-
|
|
87324
|
-
|
|
87325
|
-
|
|
87326
|
-
|
|
87327
|
-
|
|
87328
|
-
|
|
87329
|
-
|
|
87330
|
-
|
|
87331
|
-
|
|
87332
|
-
|
|
87333
|
-
|
|
87334
|
-
|
|
87335
|
-
|
|
87336
|
-
|
|
87337
|
-
|
|
87338
|
-
|
|
87339
|
-
|
|
87340
|
-
|
|
87341
|
-
|
|
87342
|
-
|
|
87298
|
+
var UnresolvedConflictsError = class extends Data_exports.TaggedError(
|
|
87299
|
+
"UnresolvedConflictsError"
|
|
87300
|
+
) {
|
|
87301
|
+
code = "unresolved_conflicts";
|
|
87302
|
+
};
|
|
87303
|
+
var LeaseRejectedError = class extends Data_exports.TaggedError(
|
|
87304
|
+
"LeaseRejectedError"
|
|
87305
|
+
) {
|
|
87306
|
+
code = "lease_rejected";
|
|
87307
|
+
};
|
|
87308
|
+
var InvalidPhaseError = class extends Data_exports.TaggedError(
|
|
87309
|
+
"InvalidPhaseError"
|
|
87310
|
+
) {
|
|
87311
|
+
code = "invalid_phase";
|
|
87312
|
+
};
|
|
87313
|
+
var StateDivergedError = class extends Data_exports.TaggedError(
|
|
87314
|
+
"StateDivergedError"
|
|
87315
|
+
) {
|
|
87316
|
+
code = "state_diverged";
|
|
87317
|
+
};
|
|
87318
|
+
var stateFilePath = (cwd) => path6__namespace.join(cwd, ".git", "ai-hero", "edit-commit.json");
|
|
87319
|
+
var readState = Effect_exports.gen(function* () {
|
|
87320
|
+
const fs = yield* FileSystem_exports.FileSystem;
|
|
87321
|
+
const { cwd } = yield* GitServiceConfig;
|
|
87322
|
+
const raw = yield* fs.readFileString(stateFilePath(cwd));
|
|
87323
|
+
return JSON.parse(raw);
|
|
87324
|
+
});
|
|
87325
|
+
var readStateOption = Effect_exports.gen(function* () {
|
|
87326
|
+
const fs = yield* FileSystem_exports.FileSystem;
|
|
87327
|
+
const { cwd } = yield* GitServiceConfig;
|
|
87328
|
+
const exists4 = yield* fs.exists(stateFilePath(cwd));
|
|
87329
|
+
if (!exists4) return void 0;
|
|
87330
|
+
return yield* readState;
|
|
87331
|
+
});
|
|
87332
|
+
var requireState = Effect_exports.gen(function* () {
|
|
87333
|
+
const state = yield* readStateOption;
|
|
87334
|
+
if (!state) {
|
|
87335
|
+
return yield* Effect_exports.fail(new NoSessionError());
|
|
87336
|
+
}
|
|
87337
|
+
return state;
|
|
87338
|
+
});
|
|
87339
|
+
var writeState = (state) => Effect_exports.gen(function* () {
|
|
87340
|
+
const fs = yield* FileSystem_exports.FileSystem;
|
|
87341
|
+
const { cwd } = yield* GitServiceConfig;
|
|
87342
|
+
const file6 = stateFilePath(cwd);
|
|
87343
|
+
yield* fs.makeDirectory(path6__namespace.dirname(file6), {
|
|
87344
|
+
recursive: true
|
|
87345
|
+
});
|
|
87346
|
+
yield* fs.writeFileString(
|
|
87347
|
+
file6,
|
|
87348
|
+
JSON.stringify(state, null, 2)
|
|
87349
|
+
);
|
|
87350
|
+
});
|
|
87351
|
+
var requireSessionTempBranchExists = (state) => Effect_exports.gen(function* () {
|
|
87352
|
+
const git = yield* GitService;
|
|
87353
|
+
const exists4 = yield* git.hasLocalBranch(state.tempBranch);
|
|
87354
|
+
if (!exists4) {
|
|
87355
|
+
return yield* Effect_exports.fail(
|
|
87356
|
+
new StateDivergedError({
|
|
87357
|
+
message: `Session temp branch \`${state.tempBranch}\` no longer exists.`
|
|
87358
|
+
})
|
|
87343
87359
|
);
|
|
87344
|
-
|
|
87345
|
-
|
|
87346
|
-
|
|
87347
|
-
|
|
87348
|
-
|
|
87349
|
-
|
|
87360
|
+
}
|
|
87361
|
+
return state;
|
|
87362
|
+
});
|
|
87363
|
+
var requireSessionOnTempBranch = (state) => Effect_exports.gen(function* () {
|
|
87364
|
+
yield* requireSessionTempBranchExists(state);
|
|
87365
|
+
const git = yield* GitService;
|
|
87366
|
+
const current = yield* git.getCurrentBranch();
|
|
87367
|
+
if (current !== state.tempBranch) {
|
|
87368
|
+
return yield* Effect_exports.fail(
|
|
87369
|
+
new StateDivergedError({
|
|
87370
|
+
message: `Expected to be on session branch \`${state.tempBranch}\` but currently on \`${current}\`.`
|
|
87371
|
+
})
|
|
87350
87372
|
);
|
|
87351
|
-
|
|
87352
|
-
|
|
87353
|
-
|
|
87354
|
-
|
|
87355
|
-
|
|
87356
|
-
|
|
87357
|
-
|
|
87358
|
-
|
|
87359
|
-
|
|
87360
|
-
|
|
87361
|
-
|
|
87362
|
-
|
|
87363
|
-
|
|
87364
|
-
|
|
87365
|
-
|
|
87366
|
-
|
|
87367
|
-
|
|
87368
|
-
|
|
87369
|
-
|
|
87370
|
-
|
|
87373
|
+
}
|
|
87374
|
+
return state;
|
|
87375
|
+
});
|
|
87376
|
+
var clearState = Effect_exports.gen(function* () {
|
|
87377
|
+
const fs = yield* FileSystem_exports.FileSystem;
|
|
87378
|
+
const { cwd } = yield* GitServiceConfig;
|
|
87379
|
+
yield* fs.remove(stateFilePath(cwd), { force: true });
|
|
87380
|
+
});
|
|
87381
|
+
|
|
87382
|
+
// src/internal/edit-commit/run.ts
|
|
87383
|
+
var nextStepFor = {
|
|
87384
|
+
editing: "Edit the unstaged working-tree changes, then run `edit-commit continue`.",
|
|
87385
|
+
conflict: "Resolve the conflicted files, then run `edit-commit continue`.",
|
|
87386
|
+
ready: "Inspect the recomposed branch, then run `edit-commit publish` to force-push.",
|
|
87387
|
+
published: "Done \u2014 the live branch is updated on origin.",
|
|
87388
|
+
aborted: "Session discarded \u2014 the original branch is restored."
|
|
87389
|
+
};
|
|
87390
|
+
var runBegin = (opts) => Effect_exports.gen(function* () {
|
|
87391
|
+
const git = yield* GitService;
|
|
87392
|
+
const existing = yield* readStateOption;
|
|
87393
|
+
if (existing) {
|
|
87394
|
+
return yield* Effect_exports.fail(
|
|
87395
|
+
new SessionExistsError({ phase: existing.phase })
|
|
87371
87396
|
);
|
|
87372
|
-
|
|
87373
|
-
|
|
87374
|
-
|
|
87375
|
-
|
|
87376
|
-
|
|
87377
|
-
|
|
87378
|
-
|
|
87379
|
-
|
|
87380
|
-
|
|
87381
|
-
|
|
87382
|
-
|
|
87383
|
-
|
|
87397
|
+
}
|
|
87398
|
+
yield* git.fetchOrigin();
|
|
87399
|
+
const commits = yield* getCommitsBetweenBranches({
|
|
87400
|
+
mainBranch: opts.mainBranch,
|
|
87401
|
+
liveBranch: opts.branch
|
|
87402
|
+
});
|
|
87403
|
+
const asSequence = /^\d+$/.test(opts.commit) ? commits.find(
|
|
87404
|
+
(c) => c.sequence === Number(opts.commit)
|
|
87405
|
+
) : void 0;
|
|
87406
|
+
const target2 = asSequence ?? commits.find((c) => c.sha.startsWith(opts.commit));
|
|
87407
|
+
if (!target2) {
|
|
87408
|
+
return yield* Effect_exports.fail(
|
|
87409
|
+
new CommitNotFoundError2({ commit: opts.commit })
|
|
87384
87410
|
);
|
|
87385
|
-
|
|
87386
|
-
|
|
87387
|
-
|
|
87388
|
-
|
|
87389
|
-
|
|
87390
|
-
|
|
87411
|
+
}
|
|
87412
|
+
const following = commits.length - target2.sequence;
|
|
87413
|
+
const targetBranchHead = yield* git.revParse(opts.branch);
|
|
87414
|
+
const originalBranch = yield* git.getCurrentBranch();
|
|
87415
|
+
const tempBranch = `matt/edit-commit-${Date.now()}`;
|
|
87416
|
+
yield* git.checkoutNewBranch(tempBranch);
|
|
87417
|
+
yield* git.applyAsUnstagedChanges(target2.sha);
|
|
87418
|
+
yield* writeState({
|
|
87419
|
+
phase: "editing",
|
|
87420
|
+
tempBranch,
|
|
87421
|
+
originalBranch,
|
|
87422
|
+
liveBranch: opts.branch,
|
|
87423
|
+
mainBranch: opts.mainBranch,
|
|
87424
|
+
targetSha: target2.sha,
|
|
87425
|
+
targetMessage: target2.message,
|
|
87426
|
+
targetSequence: target2.sequence,
|
|
87427
|
+
targetBranchHead,
|
|
87428
|
+
following
|
|
87429
|
+
});
|
|
87430
|
+
const envelope = {
|
|
87431
|
+
phase: "editing",
|
|
87432
|
+
target: {
|
|
87433
|
+
sha: target2.sha,
|
|
87434
|
+
message: target2.message,
|
|
87435
|
+
sequence: target2.sequence
|
|
87436
|
+
},
|
|
87437
|
+
following,
|
|
87438
|
+
conflictedFiles: [],
|
|
87439
|
+
nextStep: nextStepFor.editing
|
|
87440
|
+
};
|
|
87441
|
+
return envelope;
|
|
87442
|
+
});
|
|
87443
|
+
var parseStatusPaths = (status3) => status3.split("\n").filter(Boolean).map((line4) => ({
|
|
87444
|
+
xy: line4.slice(0, 2),
|
|
87445
|
+
path: line4.slice(3).trim()
|
|
87446
|
+
}));
|
|
87447
|
+
var conflictedFiles = (git) => Effect_exports.gen(function* () {
|
|
87448
|
+
const status3 = yield* git.getStatusShort();
|
|
87449
|
+
return parseStatusPaths(status3).filter(
|
|
87450
|
+
({ xy }) => xy.includes("U") || xy === "AA" || xy === "DD"
|
|
87451
|
+
).map((entry) => entry.path);
|
|
87452
|
+
});
|
|
87453
|
+
var detectConflict = (effect3) => effect3.pipe(
|
|
87454
|
+
Effect_exports.map(() => ({ conflict: false })),
|
|
87455
|
+
Effect_exports.catchTag(
|
|
87456
|
+
"CherryPickConflictError",
|
|
87457
|
+
() => Effect_exports.succeed({ conflict: true })
|
|
87458
|
+
)
|
|
87459
|
+
);
|
|
87460
|
+
var target = (state) => ({
|
|
87461
|
+
sha: state.targetSha,
|
|
87462
|
+
message: state.targetMessage,
|
|
87463
|
+
sequence: state.targetSequence
|
|
87464
|
+
});
|
|
87465
|
+
var enterConflict = (git, state) => Effect_exports.gen(function* () {
|
|
87466
|
+
const files = yield* conflictedFiles(git);
|
|
87467
|
+
yield* writeState({ ...state, phase: "conflict" });
|
|
87468
|
+
return {
|
|
87469
|
+
phase: "conflict",
|
|
87470
|
+
target: target(state),
|
|
87471
|
+
following: state.following,
|
|
87472
|
+
conflictedFiles: files,
|
|
87473
|
+
nextStep: nextStepFor.conflict
|
|
87474
|
+
};
|
|
87475
|
+
});
|
|
87476
|
+
var enterReady = (state) => Effect_exports.gen(function* () {
|
|
87477
|
+
yield* writeState({ ...state, phase: "ready" });
|
|
87478
|
+
return {
|
|
87479
|
+
phase: "ready",
|
|
87480
|
+
target: target(state),
|
|
87481
|
+
following: state.following,
|
|
87482
|
+
conflictedFiles: [],
|
|
87483
|
+
nextStep: nextStepFor.ready
|
|
87484
|
+
};
|
|
87485
|
+
});
|
|
87486
|
+
var filesWithMarkers = (git) => Effect_exports.gen(function* () {
|
|
87487
|
+
const fs = yield* FileSystem_exports.FileSystem;
|
|
87488
|
+
const { cwd } = yield* GitServiceConfig;
|
|
87489
|
+
const unmerged = yield* conflictedFiles(git);
|
|
87490
|
+
const remaining = [];
|
|
87491
|
+
for (const file6 of unmerged) {
|
|
87492
|
+
const content = yield* fs.readFileString(
|
|
87493
|
+
path6__namespace.join(cwd, file6)
|
|
87391
87494
|
);
|
|
87392
|
-
if (
|
|
87393
|
-
|
|
87394
|
-
process.exitCode = 1;
|
|
87395
|
-
return;
|
|
87495
|
+
if (content.includes("<<<<<<<") || content.includes(">>>>>>>")) {
|
|
87496
|
+
remaining.push(file6);
|
|
87396
87497
|
}
|
|
87397
|
-
|
|
87398
|
-
|
|
87399
|
-
|
|
87400
|
-
|
|
87401
|
-
|
|
87402
|
-
|
|
87403
|
-
|
|
87404
|
-
|
|
87405
|
-
|
|
87406
|
-
|
|
87407
|
-
|
|
87408
|
-
|
|
87409
|
-
|
|
87410
|
-
|
|
87411
|
-
"FailedToCommitError",
|
|
87412
|
-
() => Effect_exports.succeed({ failed: true })
|
|
87413
|
-
)
|
|
87414
|
-
);
|
|
87415
|
-
if (commitResult.failed) {
|
|
87498
|
+
}
|
|
87499
|
+
return remaining;
|
|
87500
|
+
});
|
|
87501
|
+
var requirePhase = (state, allowed) => allowed.includes(state.phase) ? Effect_exports.succeed(state) : Effect_exports.fail(
|
|
87502
|
+
new InvalidPhaseError({ phase: state.phase, allowed })
|
|
87503
|
+
);
|
|
87504
|
+
var runContinue = () => Effect_exports.gen(function* () {
|
|
87505
|
+
const git = yield* GitService;
|
|
87506
|
+
const state = yield* requireState;
|
|
87507
|
+
yield* requirePhase(state, ["editing", "conflict"]);
|
|
87508
|
+
yield* requireSessionOnTempBranch(state);
|
|
87509
|
+
if (state.phase === "conflict") {
|
|
87510
|
+
const stillMarked = yield* filesWithMarkers(git);
|
|
87511
|
+
if (stillMarked.length > 0) {
|
|
87416
87512
|
return yield* Effect_exports.fail(
|
|
87417
|
-
new
|
|
87418
|
-
|
|
87513
|
+
new UnresolvedConflictsError({
|
|
87514
|
+
files: stillMarked
|
|
87419
87515
|
})
|
|
87420
87516
|
);
|
|
87421
87517
|
}
|
|
87422
|
-
yield*
|
|
87423
|
-
|
|
87424
|
-
|
|
87425
|
-
`
|
|
87426
|
-
Cherry-picking ${followingCommitCount} commit${followingCommitCount === 1 ? "" : "s"}...`
|
|
87427
|
-
);
|
|
87428
|
-
const cherryPickResult = yield* gitService.cherryPick(`${targetSha}..${targetBranchHead}`).pipe(
|
|
87429
|
-
Effect_exports.map(() => ({ conflict: false })),
|
|
87430
|
-
Effect_exports.catchTag(
|
|
87431
|
-
"CherryPickConflictError",
|
|
87432
|
-
() => Effect_exports.succeed({ conflict: true })
|
|
87433
|
-
)
|
|
87434
|
-
);
|
|
87435
|
-
if (cherryPickResult.conflict) {
|
|
87436
|
-
yield* Console_exports.log(
|
|
87437
|
-
"\n\u26A0\uFE0F Cherry-pick conflict detected!"
|
|
87438
|
-
);
|
|
87439
|
-
yield* Console_exports.log(
|
|
87440
|
-
"Resolve conflicts, then continue.\n"
|
|
87441
|
-
);
|
|
87442
|
-
yield* resolveConflictLoop(gitService, promptService);
|
|
87443
|
-
} else {
|
|
87444
|
-
yield* Console_exports.log("\u2713 Cherry-pick complete");
|
|
87445
|
-
}
|
|
87446
|
-
}
|
|
87447
|
-
yield* Console_exports.log(
|
|
87448
|
-
`
|
|
87449
|
-
\u2713 Edit complete! Commit ${commitLabel} updated.`
|
|
87450
|
-
);
|
|
87451
|
-
yield* promptService.confirmSaveToTargetBranch(liveBranch);
|
|
87452
|
-
yield* Console_exports.log(
|
|
87453
|
-
`Switching to ${liveBranch} and applying changes...`
|
|
87518
|
+
yield* git.stageAll();
|
|
87519
|
+
const result = yield* detectConflict(
|
|
87520
|
+
git.cherryPickContinue()
|
|
87454
87521
|
);
|
|
87455
|
-
|
|
87456
|
-
|
|
87457
|
-
|
|
87458
|
-
|
|
87459
|
-
|
|
87522
|
+
return result.conflict ? yield* enterConflict(git, state) : yield* enterReady(state);
|
|
87523
|
+
}
|
|
87524
|
+
yield* git.stageAll();
|
|
87525
|
+
yield* git.commit(state.targetMessage);
|
|
87526
|
+
if (state.following > 0) {
|
|
87527
|
+
const result = yield* detectConflict(
|
|
87528
|
+
git.cherryPick(
|
|
87529
|
+
`${state.targetSha}..${state.targetBranchHead}`
|
|
87460
87530
|
)
|
|
87461
87531
|
);
|
|
87462
|
-
if (
|
|
87463
|
-
yield*
|
|
87464
|
-
`Failed to checkout ${liveBranch}. Changes remain on ${tempBranchName}.`
|
|
87465
|
-
);
|
|
87466
|
-
process.exitCode = 1;
|
|
87467
|
-
return;
|
|
87532
|
+
if (result.conflict) {
|
|
87533
|
+
return yield* enterConflict(git, state);
|
|
87468
87534
|
}
|
|
87469
|
-
|
|
87470
|
-
|
|
87471
|
-
|
|
87472
|
-
|
|
87473
|
-
|
|
87535
|
+
}
|
|
87536
|
+
return yield* enterReady(state);
|
|
87537
|
+
});
|
|
87538
|
+
var runPublish = () => Effect_exports.gen(function* () {
|
|
87539
|
+
const git = yield* GitService;
|
|
87540
|
+
const state = yield* requireState;
|
|
87541
|
+
yield* requirePhase(state, ["ready"]);
|
|
87542
|
+
yield* requireSessionTempBranchExists(state);
|
|
87543
|
+
yield* git.checkout(state.liveBranch);
|
|
87544
|
+
yield* git.resetHard(state.tempBranch);
|
|
87545
|
+
yield* git.pushForceWithLease("origin", state.liveBranch).pipe(
|
|
87546
|
+
Effect_exports.catchTag(
|
|
87547
|
+
"FailedToPushError",
|
|
87548
|
+
() => Effect_exports.fail(
|
|
87549
|
+
new LeaseRejectedError({
|
|
87550
|
+
branch: state.liveBranch
|
|
87551
|
+
})
|
|
87474
87552
|
)
|
|
87475
|
-
)
|
|
87476
|
-
|
|
87477
|
-
|
|
87478
|
-
|
|
87553
|
+
)
|
|
87554
|
+
);
|
|
87555
|
+
yield* git.checkout(state.originalBranch);
|
|
87556
|
+
yield* git.deleteBranch(state.tempBranch);
|
|
87557
|
+
yield* clearState;
|
|
87558
|
+
return {
|
|
87559
|
+
phase: "published",
|
|
87560
|
+
target: target(state),
|
|
87561
|
+
following: state.following,
|
|
87562
|
+
conflictedFiles: [],
|
|
87563
|
+
nextStep: nextStepFor.published
|
|
87564
|
+
};
|
|
87565
|
+
});
|
|
87566
|
+
var runStatus = () => Effect_exports.gen(function* () {
|
|
87567
|
+
const git = yield* GitService;
|
|
87568
|
+
const state = yield* requireState;
|
|
87569
|
+
yield* requireSessionTempBranchExists(state);
|
|
87570
|
+
const files = state.phase === "conflict" ? yield* conflictedFiles(git) : [];
|
|
87571
|
+
return {
|
|
87572
|
+
phase: state.phase,
|
|
87573
|
+
target: target(state),
|
|
87574
|
+
following: state.following,
|
|
87575
|
+
conflictedFiles: files,
|
|
87576
|
+
nextStep: nextStepFor[state.phase]
|
|
87577
|
+
};
|
|
87578
|
+
});
|
|
87579
|
+
var runAbort = () => Effect_exports.gen(function* () {
|
|
87580
|
+
const git = yield* GitService;
|
|
87581
|
+
const state = yield* requireState;
|
|
87582
|
+
yield* requireSessionOnTempBranch(state);
|
|
87583
|
+
const discardedFiles = parseStatusPaths(
|
|
87584
|
+
yield* git.getStatusShort()
|
|
87585
|
+
).map((entry) => entry.path);
|
|
87586
|
+
if (state.phase === "conflict") {
|
|
87587
|
+
yield* git.cherryPickAbort();
|
|
87588
|
+
}
|
|
87589
|
+
yield* git.resetHard(state.tempBranch);
|
|
87590
|
+
yield* git.clean();
|
|
87591
|
+
yield* git.checkout(state.originalBranch);
|
|
87592
|
+
yield* git.deleteBranch(state.tempBranch);
|
|
87593
|
+
yield* clearState;
|
|
87594
|
+
return {
|
|
87595
|
+
phase: "aborted",
|
|
87596
|
+
target: target(state),
|
|
87597
|
+
following: state.following,
|
|
87598
|
+
conflictedFiles: [],
|
|
87599
|
+
nextStep: nextStepFor.aborted,
|
|
87600
|
+
restoredBranch: state.originalBranch,
|
|
87601
|
+
deletedBranch: state.tempBranch,
|
|
87602
|
+
discardedFiles
|
|
87603
|
+
};
|
|
87604
|
+
});
|
|
87605
|
+
|
|
87606
|
+
// src/internal/edit-commit/command.ts
|
|
87607
|
+
var branchOption = Options_exports.text("branch").pipe(
|
|
87608
|
+
Options_exports.withDescription("The live branch holding the commits"),
|
|
87609
|
+
Options_exports.withDefault(DEFAULT_PROJECT_TARGET_BRANCH)
|
|
87610
|
+
);
|
|
87611
|
+
var mainBranchOption = Options_exports.text("main-branch").pipe(
|
|
87612
|
+
Options_exports.withDescription("The base branch of the project"),
|
|
87613
|
+
Options_exports.withDefault("main")
|
|
87614
|
+
);
|
|
87615
|
+
var FALLBACK_ERROR_CODES = {
|
|
87616
|
+
NoCommitsFoundError: "no_commits_found"
|
|
87617
|
+
};
|
|
87618
|
+
var emit = (effect3) => effect3.pipe(
|
|
87619
|
+
Effect_exports.flatMap(
|
|
87620
|
+
(result) => Console_exports.log(JSON.stringify(result))
|
|
87621
|
+
),
|
|
87622
|
+
Effect_exports.catchAll(
|
|
87623
|
+
(error4) => Effect_exports.gen(function* () {
|
|
87624
|
+
const code2 = error4.code ?? FALLBACK_ERROR_CODES[error4._tag] ?? "error";
|
|
87625
|
+
yield* Console_exports.log(
|
|
87626
|
+
JSON.stringify({ error: code2, ...error4 })
|
|
87479
87627
|
);
|
|
87480
87628
|
process.exitCode = 1;
|
|
87481
|
-
return;
|
|
87482
|
-
}
|
|
87483
|
-
yield* Console_exports.log(
|
|
87484
|
-
`\u2713 ${liveBranch} updated with your changes`
|
|
87485
|
-
);
|
|
87486
|
-
yield* promptService.confirmForcePush(liveBranch);
|
|
87487
|
-
yield* Console_exports.log(
|
|
87488
|
-
`Force pushing ${liveBranch} to origin...`
|
|
87489
|
-
);
|
|
87490
|
-
const forcePushResult = yield* gitService.pushForceWithLease("origin", liveBranch).pipe(
|
|
87491
|
-
Effect_exports.map(() => ({ failed: false })),
|
|
87492
|
-
Effect_exports.catchTag(
|
|
87493
|
-
"FailedToPushError",
|
|
87494
|
-
() => Effect_exports.succeed({ failed: true })
|
|
87495
|
-
)
|
|
87496
|
-
);
|
|
87497
|
-
if (forcePushResult.failed) {
|
|
87498
|
-
yield* Console_exports.error("Failed to force push");
|
|
87499
|
-
process.exitCode = 1;
|
|
87500
|
-
return;
|
|
87501
|
-
}
|
|
87502
|
-
yield* Console_exports.log(
|
|
87503
|
-
`\u2713 Successfully pushed ${liveBranch} to origin`
|
|
87504
|
-
);
|
|
87505
|
-
yield* Console_exports.log(
|
|
87506
|
-
`Switching back to ${originalBranch}...`
|
|
87507
|
-
);
|
|
87508
|
-
yield* gitService.checkout(originalBranch).pipe(
|
|
87509
|
-
Effect_exports.catchTag(
|
|
87510
|
-
"FailedToCheckoutError",
|
|
87511
|
-
() => Effect_exports.void
|
|
87512
|
-
)
|
|
87513
|
-
);
|
|
87514
|
-
yield* Console_exports.log(`\u2713 Switched back to ${originalBranch}`);
|
|
87515
|
-
yield* Console_exports.log(
|
|
87516
|
-
`Deleting temporary branch ${tempBranchName}...`
|
|
87517
|
-
);
|
|
87518
|
-
yield* gitService.deleteBranch(tempBranchName).pipe(
|
|
87519
|
-
Effect_exports.catchTag(
|
|
87520
|
-
"FailedToDeleteBranchError",
|
|
87521
|
-
() => Effect_exports.void
|
|
87522
|
-
)
|
|
87523
|
-
);
|
|
87524
|
-
yield* Console_exports.log(`\u2713 Deleted temporary branch`);
|
|
87525
|
-
}).pipe(
|
|
87526
|
-
Effect_exports.catchTags({
|
|
87527
|
-
NotAGitRepoError: (error4) => {
|
|
87528
|
-
return Effect_exports.gen(function* () {
|
|
87529
|
-
yield* Console_exports.error(`Error: ${error4.message}`);
|
|
87530
|
-
process.exitCode = 1;
|
|
87531
|
-
});
|
|
87532
|
-
},
|
|
87533
|
-
NoCommitsFoundError: (error4) => {
|
|
87534
|
-
return Effect_exports.gen(function* () {
|
|
87535
|
-
yield* Console_exports.error(
|
|
87536
|
-
`Error: No commits found on ${error4.liveBranch} beyond ${error4.mainBranch}`
|
|
87537
|
-
);
|
|
87538
|
-
process.exitCode = 1;
|
|
87539
|
-
});
|
|
87540
|
-
},
|
|
87541
|
-
PromptCancelledError: () => {
|
|
87542
|
-
return Effect_exports.gen(function* () {
|
|
87543
|
-
yield* Console_exports.log(
|
|
87544
|
-
"Operation cancelled. Branch left as-is."
|
|
87545
|
-
);
|
|
87546
|
-
process.exitCode = 0;
|
|
87547
|
-
});
|
|
87548
|
-
},
|
|
87549
|
-
CommitFailedError: (error4) => {
|
|
87550
|
-
return Effect_exports.gen(function* () {
|
|
87551
|
-
yield* Console_exports.error(`Error: ${error4.message}`);
|
|
87552
|
-
process.exitCode = 1;
|
|
87553
|
-
});
|
|
87554
|
-
}
|
|
87555
|
-
}),
|
|
87556
|
-
Effect_exports.catchAll((error4) => {
|
|
87557
|
-
return Effect_exports.gen(function* () {
|
|
87558
|
-
yield* Console_exports.error(`Unexpected error: ${error4}`);
|
|
87559
|
-
process.exitCode = 1;
|
|
87560
|
-
});
|
|
87561
87629
|
})
|
|
87562
87630
|
)
|
|
87631
|
+
);
|
|
87632
|
+
var begin = Command_exports.make(
|
|
87633
|
+
"begin",
|
|
87634
|
+
{
|
|
87635
|
+
commit: Options_exports.text("commit").pipe(
|
|
87636
|
+
Options_exports.withAlias("c"),
|
|
87637
|
+
Options_exports.withDescription(
|
|
87638
|
+
"Commit to edit: a 1-based sequence number or a SHA prefix"
|
|
87639
|
+
)
|
|
87640
|
+
),
|
|
87641
|
+
branch: branchOption,
|
|
87642
|
+
mainBranch: mainBranchOption
|
|
87643
|
+
},
|
|
87644
|
+
(opts) => emit(runBegin(opts))
|
|
87563
87645
|
).pipe(
|
|
87564
87646
|
Command_exports.withDescription(
|
|
87565
|
-
"
|
|
87647
|
+
"Start editing a commit: park its diff in the working tree"
|
|
87648
|
+
)
|
|
87649
|
+
);
|
|
87650
|
+
var continueCmd = Command_exports.make(
|
|
87651
|
+
"continue",
|
|
87652
|
+
{},
|
|
87653
|
+
() => emit(runContinue())
|
|
87654
|
+
).pipe(
|
|
87655
|
+
Command_exports.withDescription(
|
|
87656
|
+
"Commit the working-tree edits and replay following commits (or resume after resolving conflicts)"
|
|
87657
|
+
)
|
|
87658
|
+
);
|
|
87659
|
+
var status2 = Command_exports.make(
|
|
87660
|
+
"status",
|
|
87661
|
+
{},
|
|
87662
|
+
() => emit(runStatus())
|
|
87663
|
+
).pipe(
|
|
87664
|
+
Command_exports.withDescription(
|
|
87665
|
+
"Report the current edit-commit session phase (read-only)"
|
|
87666
|
+
)
|
|
87667
|
+
);
|
|
87668
|
+
var abort = Command_exports.make(
|
|
87669
|
+
"abort",
|
|
87670
|
+
{},
|
|
87671
|
+
() => emit(runAbort())
|
|
87672
|
+
).pipe(
|
|
87673
|
+
Command_exports.withDescription(
|
|
87674
|
+
"Discard the session and restore the original branch"
|
|
87675
|
+
)
|
|
87676
|
+
);
|
|
87677
|
+
var publish = Command_exports.make(
|
|
87678
|
+
"publish",
|
|
87679
|
+
{},
|
|
87680
|
+
() => emit(runPublish())
|
|
87681
|
+
).pipe(
|
|
87682
|
+
Command_exports.withDescription(
|
|
87683
|
+
"Force-push the recomposed live branch to origin and clean up"
|
|
87684
|
+
)
|
|
87685
|
+
);
|
|
87686
|
+
var editCommit = Command_exports.make("edit-commit").pipe(
|
|
87687
|
+
Command_exports.withSubcommands([
|
|
87688
|
+
begin,
|
|
87689
|
+
continueCmd,
|
|
87690
|
+
status2,
|
|
87691
|
+
abort,
|
|
87692
|
+
publish
|
|
87693
|
+
]),
|
|
87694
|
+
Command_exports.withDescription(
|
|
87695
|
+
"Agent-driven, resumable editing of a commit's contents"
|
|
87566
87696
|
)
|
|
87567
87697
|
);
|
|
87568
|
-
function resolveConflictLoop(gitService, promptService) {
|
|
87569
|
-
return Effect_exports.gen(function* () {
|
|
87570
|
-
const status2 = yield* gitService.getStatusShort();
|
|
87571
|
-
if (status2) {
|
|
87572
|
-
yield* Console_exports.log(status2);
|
|
87573
|
-
}
|
|
87574
|
-
const action = yield* promptService.selectCherryPickConflictAction();
|
|
87575
|
-
if (action === "abort") {
|
|
87576
|
-
yield* Console_exports.log(
|
|
87577
|
-
"Cherry-pick aborted. Branch left as-is."
|
|
87578
|
-
);
|
|
87579
|
-
yield* gitService.cherryPickAbort();
|
|
87580
|
-
return;
|
|
87581
|
-
}
|
|
87582
|
-
if (action === "skip") {
|
|
87583
|
-
yield* Console_exports.log("\u2713 Skipping git command");
|
|
87584
|
-
return;
|
|
87585
|
-
}
|
|
87586
|
-
const continueResult = yield* gitService.cherryPickContinue().pipe(
|
|
87587
|
-
Effect_exports.map(() => ({ conflict: false })),
|
|
87588
|
-
Effect_exports.catchTag(
|
|
87589
|
-
"CherryPickConflictError",
|
|
87590
|
-
() => Effect_exports.succeed({ conflict: true })
|
|
87591
|
-
)
|
|
87592
|
-
);
|
|
87593
|
-
if (continueResult.conflict) {
|
|
87594
|
-
yield* Console_exports.log(
|
|
87595
|
-
"\n\u26A0\uFE0F Another conflict detected during cherry-pick!"
|
|
87596
|
-
);
|
|
87597
|
-
yield* Console_exports.log("Resolve conflicts, then continue.\n");
|
|
87598
|
-
yield* resolveConflictLoop(gitService, promptService);
|
|
87599
|
-
} else {
|
|
87600
|
-
yield* Console_exports.log("\u2713 Cherry-pick complete");
|
|
87601
|
-
}
|
|
87602
|
-
});
|
|
87603
|
-
}
|
|
87604
87698
|
|
|
87605
87699
|
// src/internal/rebase-to-main.ts
|
|
87606
87700
|
var rebaseToMain = Command_exports.make(
|
|
@@ -87933,12 +88027,12 @@ var init2 = Command_exports.make(
|
|
|
87933
88027
|
},
|
|
87934
88028
|
({ base }) => Effect_exports.gen(function* () {
|
|
87935
88029
|
const fs = yield* FileSystem_exports.FileSystem;
|
|
87936
|
-
const
|
|
88030
|
+
const path16 = yield* Path_exports.Path;
|
|
87937
88031
|
const promptService = yield* PromptService;
|
|
87938
88032
|
const entries2 = yield* fs.readDirectory(base);
|
|
87939
88033
|
const subdirs = [];
|
|
87940
88034
|
for (const entry of entries2) {
|
|
87941
|
-
const fullPath =
|
|
88035
|
+
const fullPath = path16.join(base, entry);
|
|
87942
88036
|
const stat3 = yield* fs.stat(fullPath);
|
|
87943
88037
|
if (stat3.type === "Directory") {
|
|
87944
88038
|
subdirs.push(entry);
|
|
@@ -87952,7 +88046,7 @@ var init2 = Command_exports.make(
|
|
|
87952
88046
|
"Select subdirectory:"
|
|
87953
88047
|
);
|
|
87954
88048
|
const repoName = yield* promptService.inputText("Enter repo name:");
|
|
87955
|
-
const repoPath =
|
|
88049
|
+
const repoPath = path16.join(base, subdirectory, repoName);
|
|
87956
88050
|
const exists4 = yield* fs.exists(repoPath);
|
|
87957
88051
|
if (exists4) {
|
|
87958
88052
|
return yield* new DirectoryExistsError({ path: repoPath });
|
|
@@ -87960,22 +88054,22 @@ var init2 = Command_exports.make(
|
|
|
87960
88054
|
yield* fs.makeDirectory(repoPath, { recursive: true });
|
|
87961
88055
|
yield* Console_exports.log(`Created directory: ${repoPath}`);
|
|
87962
88056
|
yield* fs.writeFileString(
|
|
87963
|
-
|
|
88057
|
+
path16.join(repoPath, "package.json"),
|
|
87964
88058
|
createPackageJson(repoName)
|
|
87965
88059
|
);
|
|
87966
88060
|
yield* Console_exports.log("Created package.json");
|
|
87967
88061
|
yield* fs.writeFileString(
|
|
87968
|
-
|
|
88062
|
+
path16.join(repoPath, "tsconfig.json"),
|
|
87969
88063
|
TSCONFIG
|
|
87970
88064
|
);
|
|
87971
88065
|
yield* Console_exports.log("Created tsconfig.json");
|
|
87972
88066
|
yield* fs.writeFileString(
|
|
87973
|
-
|
|
88067
|
+
path16.join(repoPath, ".gitignore"),
|
|
87974
88068
|
GITIGNORE
|
|
87975
88069
|
);
|
|
87976
88070
|
yield* Console_exports.log("Created .gitignore");
|
|
87977
88071
|
yield* fs.writeFileString(
|
|
87978
|
-
|
|
88072
|
+
path16.join(repoPath, ".prettierignore"),
|
|
87979
88073
|
PRETTIERIGNORE
|
|
87980
88074
|
);
|
|
87981
88075
|
yield* Console_exports.log("Created .prettierignore");
|
|
@@ -88449,6 +88543,7 @@ var run9 = Command_exports.run(command, {
|
|
|
88449
88543
|
var layerLive = Layer_exports.mergeAll(
|
|
88450
88544
|
NodeContext_exports.layer,
|
|
88451
88545
|
GitService.Default,
|
|
88546
|
+
defaultGitServiceConfigLayer,
|
|
88452
88547
|
LessonParserService.Default,
|
|
88453
88548
|
PromptService.Default
|
|
88454
88549
|
);
|