codexuse-cli 3.6.4 → 3.6.6
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/dist/index.js +27 -5
- package/dist/index.js.map +1 -1
- package/dist/server/{NodeSqliteClient-BXfshIvF.mjs → NodeSqliteClient-BPNNnMBz.mjs} +3 -3
- package/dist/server/{SqlClient-DSf3-WP1.mjs → SqlClient-B-Bb00hw.mjs} +479 -818
- package/dist/server/{SqlError-Djvykpuc.mjs → SqlError-3S4KD3xN.mjs} +2 -2
- package/dist/server/{SqliteClient-DBy8Gtib.mjs → SqliteClient-9lnXlJby.mjs} +3 -3
- package/dist/server/index.mjs +202 -770
- package/package.json +1 -1
|
@@ -412,7 +412,7 @@ const byReferenceInstances = /* @__PURE__ */ new WeakSet();
|
|
|
412
412
|
* @category guards
|
|
413
413
|
* @since 2.0.0
|
|
414
414
|
*/
|
|
415
|
-
function isString
|
|
415
|
+
function isString(input) {
|
|
416
416
|
return typeof input === "string";
|
|
417
417
|
}
|
|
418
418
|
/**
|
|
@@ -443,7 +443,7 @@ function isString$1(input) {
|
|
|
443
443
|
* @category guards
|
|
444
444
|
* @since 2.0.0
|
|
445
445
|
*/
|
|
446
|
-
function isNumber
|
|
446
|
+
function isNumber(input) {
|
|
447
447
|
return typeof input === "number";
|
|
448
448
|
}
|
|
449
449
|
/**
|
|
@@ -565,7 +565,7 @@ function isSymbol(input) {
|
|
|
565
565
|
* @since 4.0.0
|
|
566
566
|
*/
|
|
567
567
|
function isPropertyKey(u) {
|
|
568
|
-
return isString
|
|
568
|
+
return isString(u) || isNumber(u) || isSymbol(u);
|
|
569
569
|
}
|
|
570
570
|
/**
|
|
571
571
|
* Checks whether a value is a `function`.
|
|
@@ -906,7 +906,7 @@ const isTagged = /* @__PURE__ */ dual(2, (self, tag) => hasProperty(self, "_tag"
|
|
|
906
906
|
* @since 2.0.0
|
|
907
907
|
*/
|
|
908
908
|
function isIterable(input) {
|
|
909
|
-
return hasProperty(input, Symbol.iterator) || isString
|
|
909
|
+
return hasProperty(input, Symbol.iterator) || isString(input);
|
|
910
910
|
}
|
|
911
911
|
//#endregion
|
|
912
912
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Hash.js
|
|
@@ -924,7 +924,7 @@ function isIterable(input) {
|
|
|
924
924
|
*
|
|
925
925
|
* @since 2.0.0
|
|
926
926
|
*/
|
|
927
|
-
const symbol$
|
|
927
|
+
const symbol$1 = "~effect/interfaces/Hash";
|
|
928
928
|
/**
|
|
929
929
|
* Computes a hash value for any given value.
|
|
930
930
|
*
|
|
@@ -962,21 +962,21 @@ const symbol$3 = "~effect/interfaces/Hash";
|
|
|
962
962
|
*/
|
|
963
963
|
const hash = (self) => {
|
|
964
964
|
switch (typeof self) {
|
|
965
|
-
case "number": return number$
|
|
966
|
-
case "bigint": return string$
|
|
967
|
-
case "boolean": return string$
|
|
968
|
-
case "symbol": return string$
|
|
969
|
-
case "string": return string$
|
|
970
|
-
case "undefined": return string$
|
|
965
|
+
case "number": return number$1(self);
|
|
966
|
+
case "bigint": return string$2(self.toString(10));
|
|
967
|
+
case "boolean": return string$2(String(self));
|
|
968
|
+
case "symbol": return string$2(String(self));
|
|
969
|
+
case "string": return string$2(self);
|
|
970
|
+
case "undefined": return string$2("undefined");
|
|
971
971
|
case "function":
|
|
972
|
-
case "object": if (self === null) return string$
|
|
973
|
-
else if (self instanceof Date) return string$
|
|
974
|
-
else if (self instanceof RegExp) return string$
|
|
972
|
+
case "object": if (self === null) return string$2("null");
|
|
973
|
+
else if (self instanceof Date) return string$2(self.toISOString());
|
|
974
|
+
else if (self instanceof RegExp) return string$2(self.toString());
|
|
975
975
|
else {
|
|
976
976
|
if (byReferenceInstances.has(self)) return random(self);
|
|
977
977
|
if (hashCache.has(self)) return hashCache.get(self);
|
|
978
978
|
const h = withVisitedTracking$1(self, () => {
|
|
979
|
-
if (isHash(self)) return self[symbol$
|
|
979
|
+
if (isHash(self)) return self[symbol$1]();
|
|
980
980
|
else if (typeof self === "function") return random(self);
|
|
981
981
|
else if (Array.isArray(self)) return array(self);
|
|
982
982
|
else if (self instanceof Map) return hashMap(self);
|
|
@@ -1014,7 +1014,7 @@ const hash = (self) => {
|
|
|
1014
1014
|
* @since 2.0.0
|
|
1015
1015
|
*/
|
|
1016
1016
|
const random = (self) => {
|
|
1017
|
-
if (!randomHashCache.has(self)) randomHashCache.set(self, number$
|
|
1017
|
+
if (!randomHashCache.has(self)) randomHashCache.set(self, number$1(Math.floor(Math.random() * Number.MAX_SAFE_INTEGER)));
|
|
1018
1018
|
return randomHashCache.get(self);
|
|
1019
1019
|
};
|
|
1020
1020
|
/**
|
|
@@ -1043,7 +1043,7 @@ const random = (self) => {
|
|
|
1043
1043
|
* @category hashing
|
|
1044
1044
|
* @since 2.0.0
|
|
1045
1045
|
*/
|
|
1046
|
-
const combine
|
|
1046
|
+
const combine = /* @__PURE__ */ dual(2, (self, b) => self * 53 ^ b);
|
|
1047
1047
|
/**
|
|
1048
1048
|
* Optimizes a hash value by applying bit manipulation techniques.
|
|
1049
1049
|
*
|
|
@@ -1091,7 +1091,7 @@ const optimize = (n) => n & 3221225471 | n >>> 1 & 1073741824;
|
|
|
1091
1091
|
* @category guards
|
|
1092
1092
|
* @since 2.0.0
|
|
1093
1093
|
*/
|
|
1094
|
-
const isHash = (u) => hasProperty(u, symbol$
|
|
1094
|
+
const isHash = (u) => hasProperty(u, symbol$1);
|
|
1095
1095
|
/**
|
|
1096
1096
|
* Computes a hash value for a number.
|
|
1097
1097
|
*
|
|
@@ -1115,10 +1115,10 @@ const isHash = (u) => hasProperty(u, symbol$3);
|
|
|
1115
1115
|
* @category hashing
|
|
1116
1116
|
* @since 2.0.0
|
|
1117
1117
|
*/
|
|
1118
|
-
const number$
|
|
1119
|
-
if (n !== n) return string$
|
|
1120
|
-
if (n === Infinity) return string$
|
|
1121
|
-
if (n === -Infinity) return string$
|
|
1118
|
+
const number$1 = (n) => {
|
|
1119
|
+
if (n !== n) return string$2("NaN");
|
|
1120
|
+
if (n === Infinity) return string$2("Infinity");
|
|
1121
|
+
if (n === -Infinity) return string$2("-Infinity");
|
|
1122
1122
|
let h = n | 0;
|
|
1123
1123
|
if (h !== n) h ^= n * 4294967295;
|
|
1124
1124
|
while (n > 4294967295) h ^= n /= 4294967295;
|
|
@@ -1146,7 +1146,7 @@ const number$2 = (n) => {
|
|
|
1146
1146
|
* @category hashing
|
|
1147
1147
|
* @since 2.0.0
|
|
1148
1148
|
*/
|
|
1149
|
-
const string$
|
|
1149
|
+
const string$2 = (str) => {
|
|
1150
1150
|
let h = 5381, i = str.length;
|
|
1151
1151
|
while (i) h = h * 33 ^ str.charCodeAt(--i);
|
|
1152
1152
|
return optimize(h);
|
|
@@ -1182,7 +1182,7 @@ const string$3 = (str) => {
|
|
|
1182
1182
|
*/
|
|
1183
1183
|
const structureKeys = (o, keys) => {
|
|
1184
1184
|
let h = 12289;
|
|
1185
|
-
for (const key of keys) h ^= combine
|
|
1185
|
+
for (const key of keys) h ^= combine(hash(key), hash(o[key]));
|
|
1186
1186
|
return optimize(h);
|
|
1187
1187
|
};
|
|
1188
1188
|
/**
|
|
@@ -1245,13 +1245,13 @@ const iterableWith = (seed, f) => (iter) => {
|
|
|
1245
1245
|
* @since 2.0.0
|
|
1246
1246
|
*/
|
|
1247
1247
|
const array = /* @__PURE__ */ iterableWith(6151, hash);
|
|
1248
|
-
const hashMap = /* @__PURE__ */ iterableWith(/* @__PURE__ */ string$
|
|
1249
|
-
const hashSet = /* @__PURE__ */ iterableWith(/* @__PURE__ */ string$
|
|
1248
|
+
const hashMap = /* @__PURE__ */ iterableWith(/* @__PURE__ */ string$2("Map"), ([k, v]) => combine(hash(k), hash(v)));
|
|
1249
|
+
const hashSet = /* @__PURE__ */ iterableWith(/* @__PURE__ */ string$2("Set"), hash);
|
|
1250
1250
|
const randomHashCache = /* @__PURE__ */ new WeakMap();
|
|
1251
1251
|
const hashCache = /* @__PURE__ */ new WeakMap();
|
|
1252
1252
|
const visitedObjects = /* @__PURE__ */ new WeakSet();
|
|
1253
1253
|
function withVisitedTracking$1(obj, fn) {
|
|
1254
|
-
if (visitedObjects.has(obj)) return string$
|
|
1254
|
+
if (visitedObjects.has(obj)) return string$2("[Circular]");
|
|
1255
1255
|
visitedObjects.add(obj);
|
|
1256
1256
|
const result = fn();
|
|
1257
1257
|
visitedObjects.delete(obj);
|
|
@@ -1296,7 +1296,7 @@ function withVisitedTracking$1(obj, fn) {
|
|
|
1296
1296
|
*
|
|
1297
1297
|
* @since 2.0.0
|
|
1298
1298
|
*/
|
|
1299
|
-
const symbol
|
|
1299
|
+
const symbol = "~effect/interfaces/Equal";
|
|
1300
1300
|
function equals$2() {
|
|
1301
1301
|
if (arguments.length === 1) return (self) => compareBoth(self, arguments[0]);
|
|
1302
1302
|
return compareBoth(arguments[0], arguments[1]);
|
|
@@ -1342,7 +1342,7 @@ function compareObjects(self, that) {
|
|
|
1342
1342
|
const bothEquals = selfIsEqual && thatIsEqual;
|
|
1343
1343
|
if (typeof self === "function" && !bothEquals) return false;
|
|
1344
1344
|
return withVisitedTracking(self, that, () => {
|
|
1345
|
-
if (bothEquals) return self[symbol
|
|
1345
|
+
if (bothEquals) return self[symbol](that);
|
|
1346
1346
|
else if (Array.isArray(self)) {
|
|
1347
1347
|
if (!Array.isArray(that) || self.length !== that.length) return false;
|
|
1348
1348
|
return compareArrays(self, that);
|
|
@@ -1455,7 +1455,7 @@ const compareSets = /* @__PURE__ */ makeCompareSet(compareBoth);
|
|
|
1455
1455
|
* @category guards
|
|
1456
1456
|
* @since 2.0.0
|
|
1457
1457
|
*/
|
|
1458
|
-
const isEqual = (u) => hasProperty(u, symbol
|
|
1458
|
+
const isEqual = (u) => hasProperty(u, symbol);
|
|
1459
1459
|
/**
|
|
1460
1460
|
* Wraps {@link equals} as an `Equivalence<A>`.
|
|
1461
1461
|
*
|
|
@@ -1705,7 +1705,7 @@ const emptyServiceMap$1 = {
|
|
|
1705
1705
|
*
|
|
1706
1706
|
* @since 4.0.0
|
|
1707
1707
|
*/
|
|
1708
|
-
function format$
|
|
1708
|
+
function format$1(input, options) {
|
|
1709
1709
|
const space = options?.space ?? 0;
|
|
1710
1710
|
const seen = /* @__PURE__ */ new WeakSet();
|
|
1711
1711
|
const gap = !space ? "" : typeof space === "number" ? " ".repeat(space) : space;
|
|
@@ -1741,7 +1741,7 @@ function format$3(input, options) {
|
|
|
1741
1741
|
if (typeof v === "object" || typeof v === "function") {
|
|
1742
1742
|
if (seen.has(v)) return CIRCULAR;
|
|
1743
1743
|
seen.add(v);
|
|
1744
|
-
if (symbolRedactable in v) return format$
|
|
1744
|
+
if (symbolRedactable in v) return format$1(getRedacted(v));
|
|
1745
1745
|
if (Symbol.iterator in v) return `${v.constructor.name}(${recur(Array.from(v), d)})`;
|
|
1746
1746
|
const keys = ownKeys(v);
|
|
1747
1747
|
if (!gap || keys.length <= 1) return wrap(v, `{${keys.map((k) => `${formatPropertyKey(k)}:${recur(v[k], d)}`).join(",")}}`);
|
|
@@ -2064,7 +2064,7 @@ const BaseProto = {
|
|
|
2064
2064
|
return this.toJSON();
|
|
2065
2065
|
},
|
|
2066
2066
|
toString() {
|
|
2067
|
-
return format$
|
|
2067
|
+
return format$1(this.toJSON());
|
|
2068
2068
|
}
|
|
2069
2069
|
};
|
|
2070
2070
|
/**
|
|
@@ -2120,7 +2120,7 @@ var Class$1 = class {
|
|
|
2120
2120
|
* @since 2.0.0
|
|
2121
2121
|
*/
|
|
2122
2122
|
toString() {
|
|
2123
|
-
return format$
|
|
2123
|
+
return format$1(this.toJSON());
|
|
2124
2124
|
}
|
|
2125
2125
|
};
|
|
2126
2126
|
//#endregion
|
|
@@ -2204,7 +2204,7 @@ const PipeInspectableProto = {
|
|
|
2204
2204
|
return { ...this };
|
|
2205
2205
|
},
|
|
2206
2206
|
toString() {
|
|
2207
|
-
return format$
|
|
2207
|
+
return format$1(this.toJSON(), {
|
|
2208
2208
|
ignoreToString: true,
|
|
2209
2209
|
space: 2
|
|
2210
2210
|
});
|
|
@@ -2214,19 +2214,6 @@ const PipeInspectableProto = {
|
|
|
2214
2214
|
}
|
|
2215
2215
|
};
|
|
2216
2216
|
/** @internal */
|
|
2217
|
-
const StructuralProto = {
|
|
2218
|
-
[symbol$3]() {
|
|
2219
|
-
return structureKeys(this, Object.keys(this));
|
|
2220
|
-
},
|
|
2221
|
-
[symbol$2](that) {
|
|
2222
|
-
const selfKeys = Object.keys(this);
|
|
2223
|
-
const thatKeys = Object.keys(that);
|
|
2224
|
-
if (selfKeys.length !== thatKeys.length) return false;
|
|
2225
|
-
for (let i = 0; i < selfKeys.length; i++) if (selfKeys[i] !== thatKeys[i] && !equals$2(this[selfKeys[i]], that[selfKeys[i]])) return false;
|
|
2226
|
-
return true;
|
|
2227
|
-
}
|
|
2228
|
-
};
|
|
2229
|
-
/** @internal */
|
|
2230
2217
|
const YieldableProto = { [Symbol.iterator]() {
|
|
2231
2218
|
return new SingleShotGen(this);
|
|
2232
2219
|
} };
|
|
@@ -2258,13 +2245,13 @@ const EffectProto = {
|
|
|
2258
2245
|
/** @internal */
|
|
2259
2246
|
const isEffect$1 = (u) => hasProperty(u, EffectTypeId);
|
|
2260
2247
|
/** @internal */
|
|
2261
|
-
const isExit
|
|
2248
|
+
const isExit = (u) => hasProperty(u, ExitTypeId);
|
|
2262
2249
|
/** @internal */
|
|
2263
2250
|
const CauseTypeId = "~effect/Cause";
|
|
2264
2251
|
/** @internal */
|
|
2265
2252
|
const CauseReasonTypeId = "~effect/Cause/Reason";
|
|
2266
2253
|
/** @internal */
|
|
2267
|
-
const isCause
|
|
2254
|
+
const isCause = (self) => hasProperty(self, CauseTypeId);
|
|
2268
2255
|
/** @internal */
|
|
2269
2256
|
var CauseImpl = class {
|
|
2270
2257
|
[CauseTypeId];
|
|
@@ -2283,15 +2270,15 @@ var CauseImpl = class {
|
|
|
2283
2270
|
};
|
|
2284
2271
|
}
|
|
2285
2272
|
toString() {
|
|
2286
|
-
return `Cause(${format$
|
|
2273
|
+
return `Cause(${format$1(this.reasons)})`;
|
|
2287
2274
|
}
|
|
2288
2275
|
[NodeInspectSymbol]() {
|
|
2289
2276
|
return this.toJSON();
|
|
2290
2277
|
}
|
|
2291
|
-
[symbol
|
|
2292
|
-
return isCause
|
|
2278
|
+
[symbol](that) {
|
|
2279
|
+
return isCause(that) && this.reasons.length === that.reasons.length && this.reasons.every((e, i) => equals$2(e, that.reasons[i]));
|
|
2293
2280
|
}
|
|
2294
|
-
[symbol$
|
|
2281
|
+
[symbol$1]() {
|
|
2295
2282
|
return array(this.reasons);
|
|
2296
2283
|
}
|
|
2297
2284
|
};
|
|
@@ -2326,7 +2313,7 @@ var ReasonBase = class {
|
|
|
2326
2313
|
return pipeArguments(this, arguments);
|
|
2327
2314
|
}
|
|
2328
2315
|
toString() {
|
|
2329
|
-
return format$
|
|
2316
|
+
return format$1(this);
|
|
2330
2317
|
}
|
|
2331
2318
|
[NodeInspectSymbol]() {
|
|
2332
2319
|
return this.toString();
|
|
@@ -2342,7 +2329,7 @@ var Fail = class extends ReasonBase {
|
|
|
2342
2329
|
this.error = error;
|
|
2343
2330
|
}
|
|
2344
2331
|
toString() {
|
|
2345
|
-
return `Fail(${format$
|
|
2332
|
+
return `Fail(${format$1(this.error)})`;
|
|
2346
2333
|
}
|
|
2347
2334
|
toJSON() {
|
|
2348
2335
|
return {
|
|
@@ -2350,11 +2337,11 @@ var Fail = class extends ReasonBase {
|
|
|
2350
2337
|
error: this.error
|
|
2351
2338
|
};
|
|
2352
2339
|
}
|
|
2353
|
-
[symbol
|
|
2354
|
-
return isFailReason
|
|
2340
|
+
[symbol](that) {
|
|
2341
|
+
return isFailReason(that) && equals$2(this.error, that.error) && equals$2(this.annotations, that.annotations);
|
|
2355
2342
|
}
|
|
2356
|
-
[symbol$
|
|
2357
|
-
return combine
|
|
2343
|
+
[symbol$1]() {
|
|
2344
|
+
return combine(string$2(this._tag))(combine(hash(this.error))(hash(this.annotations)));
|
|
2358
2345
|
}
|
|
2359
2346
|
};
|
|
2360
2347
|
/** @internal */
|
|
@@ -2371,7 +2358,7 @@ var Die = class extends ReasonBase {
|
|
|
2371
2358
|
this.defect = defect;
|
|
2372
2359
|
}
|
|
2373
2360
|
toString() {
|
|
2374
|
-
return `Die(${format$
|
|
2361
|
+
return `Die(${format$1(this.defect)})`;
|
|
2375
2362
|
}
|
|
2376
2363
|
toJSON() {
|
|
2377
2364
|
return {
|
|
@@ -2379,26 +2366,26 @@ var Die = class extends ReasonBase {
|
|
|
2379
2366
|
defect: this.defect
|
|
2380
2367
|
};
|
|
2381
2368
|
}
|
|
2382
|
-
[symbol
|
|
2383
|
-
return isDieReason
|
|
2369
|
+
[symbol](that) {
|
|
2370
|
+
return isDieReason(that) && equals$2(this.defect, that.defect) && equals$2(this.annotations, that.annotations);
|
|
2384
2371
|
}
|
|
2385
|
-
[symbol$
|
|
2386
|
-
return combine
|
|
2372
|
+
[symbol$1]() {
|
|
2373
|
+
return combine(string$2(this._tag))(combine(hash(this.defect))(hash(this.annotations)));
|
|
2387
2374
|
}
|
|
2388
2375
|
};
|
|
2389
2376
|
/** @internal */
|
|
2390
2377
|
const causeDie = (defect) => new CauseImpl([new Die(defect)]);
|
|
2391
2378
|
/** @internal */
|
|
2392
|
-
const causeAnnotate = /* @__PURE__ */ dual((args) => isCause
|
|
2379
|
+
const causeAnnotate = /* @__PURE__ */ dual((args) => isCause(args[0]), (self, annotations, options) => {
|
|
2393
2380
|
if (annotations.mapUnsafe.size === 0) return self;
|
|
2394
2381
|
return new CauseImpl(self.reasons.map((f) => f.annotate(annotations, options)));
|
|
2395
2382
|
});
|
|
2396
2383
|
/** @internal */
|
|
2397
|
-
const isFailReason
|
|
2384
|
+
const isFailReason = (self) => self._tag === "Fail";
|
|
2398
2385
|
/** @internal */
|
|
2399
|
-
const isDieReason
|
|
2386
|
+
const isDieReason = (self) => self._tag === "Die";
|
|
2400
2387
|
/** @internal */
|
|
2401
|
-
const isInterruptReason
|
|
2388
|
+
const isInterruptReason = (self) => self._tag === "Interrupt";
|
|
2402
2389
|
function defaultEvaluate(_fiber) {
|
|
2403
2390
|
return exitDie(`Effect.evaluate: Not implemented`);
|
|
2404
2391
|
}
|
|
@@ -2430,7 +2417,7 @@ const makeExit = (options) => {
|
|
|
2430
2417
|
return this[args];
|
|
2431
2418
|
},
|
|
2432
2419
|
toString() {
|
|
2433
|
-
return `${options.op}(${format$
|
|
2420
|
+
return `${options.op}(${format$1(this[args])})`;
|
|
2434
2421
|
},
|
|
2435
2422
|
toJSON() {
|
|
2436
2423
|
return {
|
|
@@ -2439,11 +2426,11 @@ const makeExit = (options) => {
|
|
|
2439
2426
|
[options.prop]: this[args]
|
|
2440
2427
|
};
|
|
2441
2428
|
},
|
|
2442
|
-
[symbol
|
|
2443
|
-
return isExit
|
|
2429
|
+
[symbol](that) {
|
|
2430
|
+
return isExit(that) && that._tag === this._tag && equals$2(this[args], that[args]);
|
|
2444
2431
|
},
|
|
2445
|
-
[symbol$
|
|
2446
|
-
return combine
|
|
2432
|
+
[symbol$1]() {
|
|
2433
|
+
return combine(string$2(options.op), hash(this[args]));
|
|
2447
2434
|
}
|
|
2448
2435
|
};
|
|
2449
2436
|
return function(value) {
|
|
@@ -2533,20 +2520,20 @@ const TaggedError$1 = (tag) => {
|
|
|
2533
2520
|
return Base;
|
|
2534
2521
|
};
|
|
2535
2522
|
/** @internal */
|
|
2536
|
-
const NoSuchElementErrorTypeId
|
|
2523
|
+
const NoSuchElementErrorTypeId = "~effect/Cause/NoSuchElementError";
|
|
2537
2524
|
/** @internal */
|
|
2538
2525
|
var NoSuchElementError$1 = class extends TaggedError$1("NoSuchElementError") {
|
|
2539
|
-
[NoSuchElementErrorTypeId
|
|
2526
|
+
[NoSuchElementErrorTypeId] = NoSuchElementErrorTypeId;
|
|
2540
2527
|
constructor(message) {
|
|
2541
2528
|
super({ message });
|
|
2542
2529
|
}
|
|
2543
2530
|
};
|
|
2544
2531
|
/** @internal */
|
|
2545
|
-
const DoneTypeId
|
|
2532
|
+
const DoneTypeId = "~effect/Cause/Done";
|
|
2546
2533
|
/** @internal */
|
|
2547
|
-
const isDone$2 = (u) => hasProperty(u, DoneTypeId
|
|
2534
|
+
const isDone$2 = (u) => hasProperty(u, DoneTypeId);
|
|
2548
2535
|
const DoneVoid = {
|
|
2549
|
-
[DoneTypeId
|
|
2536
|
+
[DoneTypeId]: DoneTypeId,
|
|
2550
2537
|
_tag: "Done",
|
|
2551
2538
|
value: void 0
|
|
2552
2539
|
};
|
|
@@ -2554,7 +2541,7 @@ const DoneVoid = {
|
|
|
2554
2541
|
const Done$1 = (value) => {
|
|
2555
2542
|
if (value === void 0) return DoneVoid;
|
|
2556
2543
|
return {
|
|
2557
|
-
[DoneTypeId
|
|
2544
|
+
[DoneTypeId]: DoneTypeId,
|
|
2558
2545
|
_tag: "Done",
|
|
2559
2546
|
value
|
|
2560
2547
|
};
|
|
@@ -2723,7 +2710,7 @@ const strictEqual = () => isStrictEquivalent;
|
|
|
2723
2710
|
* @category combinators
|
|
2724
2711
|
* @since 4.0.0
|
|
2725
2712
|
*/
|
|
2726
|
-
function Tuple$
|
|
2713
|
+
function Tuple$1(elements) {
|
|
2727
2714
|
return make$30((self, that) => {
|
|
2728
2715
|
if (self.length !== that.length) return false;
|
|
2729
2716
|
for (let i = 0; i < self.length; i++) if (!elements[i](self[i], that[i])) return false;
|
|
@@ -2780,7 +2767,7 @@ function Tuple$2(elements) {
|
|
|
2780
2767
|
* @category combinators
|
|
2781
2768
|
* @since 4.0.0
|
|
2782
2769
|
*/
|
|
2783
|
-
function Array$
|
|
2770
|
+
function Array$3(item) {
|
|
2784
2771
|
return make$30((self, that) => {
|
|
2785
2772
|
if (self.length !== that.length) return false;
|
|
2786
2773
|
for (let i = 0; i < self.length; i++) if (!item(self[i], that[i])) return false;
|
|
@@ -2799,23 +2786,23 @@ const isArrayNonEmpty$1 = (self) => self.length > 0;
|
|
|
2799
2786
|
/**
|
|
2800
2787
|
* @since 2.0.0
|
|
2801
2788
|
*/
|
|
2802
|
-
const TypeId$
|
|
2789
|
+
const TypeId$27 = "~effect/data/Option";
|
|
2803
2790
|
const CommonProto$1 = {
|
|
2804
|
-
[TypeId$
|
|
2791
|
+
[TypeId$27]: { _A: (_) => _ },
|
|
2805
2792
|
...PipeInspectableProto,
|
|
2806
2793
|
...YieldableProto
|
|
2807
2794
|
};
|
|
2808
2795
|
const SomeProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(CommonProto$1), {
|
|
2809
2796
|
_tag: "Some",
|
|
2810
2797
|
_op: "Some",
|
|
2811
|
-
[symbol
|
|
2812
|
-
return isOption
|
|
2798
|
+
[symbol](that) {
|
|
2799
|
+
return isOption(that) && isSome$1(that) && equals$2(this.value, that.value);
|
|
2813
2800
|
},
|
|
2814
|
-
[symbol$
|
|
2815
|
-
return combine
|
|
2801
|
+
[symbol$1]() {
|
|
2802
|
+
return combine(hash(this._tag))(hash(this.value));
|
|
2816
2803
|
},
|
|
2817
2804
|
toString() {
|
|
2818
|
-
return `some(${format$
|
|
2805
|
+
return `some(${format$1(this.value)})`;
|
|
2819
2806
|
},
|
|
2820
2807
|
toJSON() {
|
|
2821
2808
|
return {
|
|
@@ -2832,10 +2819,10 @@ const NoneHash = /* @__PURE__ */ hash("None");
|
|
|
2832
2819
|
const NoneProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(CommonProto$1), {
|
|
2833
2820
|
_tag: "None",
|
|
2834
2821
|
_op: "None",
|
|
2835
|
-
[symbol
|
|
2836
|
-
return isOption
|
|
2822
|
+
[symbol](that) {
|
|
2823
|
+
return isOption(that) && isNone$1(that);
|
|
2837
2824
|
},
|
|
2838
|
-
[symbol$
|
|
2825
|
+
[symbol$1]() {
|
|
2839
2826
|
return NoneHash;
|
|
2840
2827
|
},
|
|
2841
2828
|
toString() {
|
|
@@ -2852,7 +2839,7 @@ const NoneProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(Co
|
|
|
2852
2839
|
}
|
|
2853
2840
|
});
|
|
2854
2841
|
/** @internal */
|
|
2855
|
-
const isOption
|
|
2842
|
+
const isOption = (input) => hasProperty(input, TypeId$27);
|
|
2856
2843
|
/** @internal */
|
|
2857
2844
|
const isNone$1 = (fa) => fa._tag === "None";
|
|
2858
2845
|
/** @internal */
|
|
@@ -2867,9 +2854,9 @@ const some$1 = (value) => {
|
|
|
2867
2854
|
};
|
|
2868
2855
|
//#endregion
|
|
2869
2856
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/internal/result.js
|
|
2870
|
-
const TypeId$
|
|
2857
|
+
const TypeId$26 = "~effect/data/Result";
|
|
2871
2858
|
const CommonProto = {
|
|
2872
|
-
[TypeId$
|
|
2859
|
+
[TypeId$26]: {
|
|
2873
2860
|
_A: (_) => _,
|
|
2874
2861
|
_E: (_) => _
|
|
2875
2862
|
},
|
|
@@ -2879,14 +2866,14 @@ const CommonProto = {
|
|
|
2879
2866
|
const SuccessProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(CommonProto), {
|
|
2880
2867
|
_tag: "Success",
|
|
2881
2868
|
_op: "Success",
|
|
2882
|
-
[symbol
|
|
2883
|
-
return isResult
|
|
2869
|
+
[symbol](that) {
|
|
2870
|
+
return isResult(that) && isSuccess$2(that) && equals$2(this.success, that.success);
|
|
2884
2871
|
},
|
|
2885
|
-
[symbol$
|
|
2886
|
-
return combine
|
|
2872
|
+
[symbol$1]() {
|
|
2873
|
+
return combine(hash(this._tag))(hash(this.success));
|
|
2887
2874
|
},
|
|
2888
2875
|
toString() {
|
|
2889
|
-
return `success(${format$
|
|
2876
|
+
return `success(${format$1(this.success)})`;
|
|
2890
2877
|
},
|
|
2891
2878
|
toJSON() {
|
|
2892
2879
|
return {
|
|
@@ -2902,14 +2889,14 @@ const SuccessProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create
|
|
|
2902
2889
|
const FailureProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(CommonProto), {
|
|
2903
2890
|
_tag: "Failure",
|
|
2904
2891
|
_op: "Failure",
|
|
2905
|
-
[symbol
|
|
2906
|
-
return isResult
|
|
2892
|
+
[symbol](that) {
|
|
2893
|
+
return isResult(that) && isFailure$2(that) && equals$2(this.failure, that.failure);
|
|
2907
2894
|
},
|
|
2908
|
-
[symbol$
|
|
2909
|
-
return combine
|
|
2895
|
+
[symbol$1]() {
|
|
2896
|
+
return combine(hash(this._tag))(hash(this.failure));
|
|
2910
2897
|
},
|
|
2911
2898
|
toString() {
|
|
2912
|
-
return `failure(${format$
|
|
2899
|
+
return `failure(${format$1(this.failure)})`;
|
|
2913
2900
|
},
|
|
2914
2901
|
toJSON() {
|
|
2915
2902
|
return {
|
|
@@ -2923,13 +2910,13 @@ const FailureProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create
|
|
|
2923
2910
|
}
|
|
2924
2911
|
});
|
|
2925
2912
|
/** @internal */
|
|
2926
|
-
const isResult
|
|
2913
|
+
const isResult = (input) => hasProperty(input, TypeId$26);
|
|
2927
2914
|
/** @internal */
|
|
2928
|
-
const isFailure$
|
|
2915
|
+
const isFailure$2 = (result) => result._tag === "Failure";
|
|
2929
2916
|
/** @internal */
|
|
2930
|
-
const isSuccess$
|
|
2917
|
+
const isSuccess$2 = (result) => result._tag === "Success";
|
|
2931
2918
|
/** @internal */
|
|
2932
|
-
const fail$
|
|
2919
|
+
const fail$9 = (failure) => {
|
|
2933
2920
|
const a = Object.create(FailureProto);
|
|
2934
2921
|
a.failure = failure;
|
|
2935
2922
|
return a;
|
|
@@ -3141,7 +3128,7 @@ const mapInput = /* @__PURE__ */ dual(2, (self, f) => make$29((b1, b2) => self(f
|
|
|
3141
3128
|
* @category predicates
|
|
3142
3129
|
* @since 2.0.0
|
|
3143
3130
|
*/
|
|
3144
|
-
const isLessThan$
|
|
3131
|
+
const isLessThan$1 = (O) => dual(2, (self, that) => O(self, that) === -1);
|
|
3145
3132
|
/**
|
|
3146
3133
|
* Tests whether one value is strictly greater than another according to the given order.
|
|
3147
3134
|
*
|
|
@@ -3175,7 +3162,7 @@ const isLessThan$3 = (O) => dual(2, (self, that) => O(self, that) === -1);
|
|
|
3175
3162
|
* @category predicates
|
|
3176
3163
|
* @since 2.0.0
|
|
3177
3164
|
*/
|
|
3178
|
-
const isGreaterThan$
|
|
3165
|
+
const isGreaterThan$1 = (O) => dual(2, (self, that) => O(self, that) === 1);
|
|
3179
3166
|
/**
|
|
3180
3167
|
* Tests whether one value is less than or equal to another according to the given order.
|
|
3181
3168
|
*
|
|
@@ -3209,7 +3196,7 @@ const isGreaterThan$4 = (O) => dual(2, (self, that) => O(self, that) === 1);
|
|
|
3209
3196
|
* @category predicates
|
|
3210
3197
|
* @since 2.0.0
|
|
3211
3198
|
*/
|
|
3212
|
-
const isLessThanOrEqualTo$
|
|
3199
|
+
const isLessThanOrEqualTo$1 = (O) => dual(2, (self, that) => O(self, that) !== 1);
|
|
3213
3200
|
/**
|
|
3214
3201
|
* Tests whether one value is greater than or equal to another according to the given order.
|
|
3215
3202
|
*
|
|
@@ -3243,7 +3230,7 @@ const isLessThanOrEqualTo$3 = (O) => dual(2, (self, that) => O(self, that) !== 1
|
|
|
3243
3230
|
* @category predicates
|
|
3244
3231
|
* @since 2.0.0
|
|
3245
3232
|
*/
|
|
3246
|
-
const isGreaterThanOrEqualTo$
|
|
3233
|
+
const isGreaterThanOrEqualTo$1 = (O) => dual(2, (self, that) => O(self, that) !== -1);
|
|
3247
3234
|
/**
|
|
3248
3235
|
* Returns the minimum of two values according to the given order. If they are equal, returns the first argument.
|
|
3249
3236
|
*
|
|
@@ -3277,7 +3264,7 @@ const isGreaterThanOrEqualTo$3 = (O) => dual(2, (self, that) => O(self, that) !=
|
|
|
3277
3264
|
* @category comparisons
|
|
3278
3265
|
* @since 2.0.0
|
|
3279
3266
|
*/
|
|
3280
|
-
const min
|
|
3267
|
+
const min = (O) => dual(2, (self, that) => self === that || O(self, that) < 1 ? self : that);
|
|
3281
3268
|
/**
|
|
3282
3269
|
* Returns the maximum of two values according to the given order. If they are equal, returns the first argument.
|
|
3283
3270
|
*
|
|
@@ -3311,7 +3298,7 @@ const min$2 = (O) => dual(2, (self, that) => self === that || O(self, that) < 1
|
|
|
3311
3298
|
* @category comparisons
|
|
3312
3299
|
* @since 2.0.0
|
|
3313
3300
|
*/
|
|
3314
|
-
const max
|
|
3301
|
+
const max = (O) => dual(2, (self, that) => self === that || O(self, that) > -1 ? self : that);
|
|
3315
3302
|
/**
|
|
3316
3303
|
* Clamps a value between a minimum and a maximum according to the given order.
|
|
3317
3304
|
*
|
|
@@ -3348,7 +3335,7 @@ const max$2 = (O) => dual(2, (self, that) => self === that || O(self, that) > -1
|
|
|
3348
3335
|
* @category comparisons
|
|
3349
3336
|
* @since 2.0.0
|
|
3350
3337
|
*/
|
|
3351
|
-
const clamp$
|
|
3338
|
+
const clamp$1 = (O) => dual(2, (self, options) => min(O)(options.maximum, max(O)(options.minimum, self)));
|
|
3352
3339
|
//#endregion
|
|
3353
3340
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Option.js
|
|
3354
3341
|
/**
|
|
@@ -3506,7 +3493,7 @@ const isSome = isSome$1;
|
|
|
3506
3493
|
* @category Pattern matching
|
|
3507
3494
|
* @since 2.0.0
|
|
3508
3495
|
*/
|
|
3509
|
-
const match$
|
|
3496
|
+
const match$3 = /* @__PURE__ */ dual(2, (self, { onNone, onSome }) => isNone(self) ? onNone() : onSome(self.value));
|
|
3510
3497
|
/**
|
|
3511
3498
|
* Extracts the value from a `Some`, or evaluates a fallback thunk on `None`.
|
|
3512
3499
|
*
|
|
@@ -3607,7 +3594,7 @@ const orElseSome = /* @__PURE__ */ dual(2, (self, onNone) => isNone(self) ? some
|
|
|
3607
3594
|
* @category Conversions
|
|
3608
3595
|
* @since 2.0.0
|
|
3609
3596
|
*/
|
|
3610
|
-
const fromNullishOr$
|
|
3597
|
+
const fromNullishOr$1 = (a) => a == null ? none() : some(a);
|
|
3611
3598
|
/**
|
|
3612
3599
|
* Extracts the value from a `Some`, or returns `null` for `None`.
|
|
3613
3600
|
*
|
|
@@ -3703,7 +3690,7 @@ const getOrUndefined = /* @__PURE__ */ getOrElse$1(constUndefined);
|
|
|
3703
3690
|
* @category Mapping
|
|
3704
3691
|
* @since 2.0.0
|
|
3705
3692
|
*/
|
|
3706
|
-
const map$
|
|
3693
|
+
const map$7 = /* @__PURE__ */ dual(2, (self, f) => isNone(self) ? none() : some(f(self.value)));
|
|
3707
3694
|
/**
|
|
3708
3695
|
* Filters an `Option` using a predicate. Returns `None` if the predicate is
|
|
3709
3696
|
* not satisfied or the input is `None`.
|
|
@@ -3744,7 +3731,7 @@ const map$10 = /* @__PURE__ */ dual(2, (self, f) => isNone(self) ? none() : some
|
|
|
3744
3731
|
* @category Filtering
|
|
3745
3732
|
* @since 2.0.0
|
|
3746
3733
|
*/
|
|
3747
|
-
const filter$
|
|
3734
|
+
const filter$3 = /* @__PURE__ */ dual(2, (self, predicate) => isNone(self) ? none() : predicate(self.value) ? some(self.value) : none());
|
|
3748
3735
|
//#endregion
|
|
3749
3736
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Result.js
|
|
3750
3737
|
/**
|
|
@@ -3808,7 +3795,7 @@ const succeed$7 = succeed$8;
|
|
|
3808
3795
|
* @category Constructors
|
|
3809
3796
|
* @since 4.0.0
|
|
3810
3797
|
*/
|
|
3811
|
-
const fail$
|
|
3798
|
+
const fail$8 = fail$9;
|
|
3812
3799
|
/**
|
|
3813
3800
|
* A pre-built `Result<void>` holding `undefined` as its failure value.
|
|
3814
3801
|
*
|
|
@@ -3820,7 +3807,7 @@ const fail$9 = fail$10;
|
|
|
3820
3807
|
* @category Constructors
|
|
3821
3808
|
* @since 4.0.0
|
|
3822
3809
|
*/
|
|
3823
|
-
const failVoid = /* @__PURE__ */ fail$
|
|
3810
|
+
const failVoid = /* @__PURE__ */ fail$8(void 0);
|
|
3824
3811
|
/**
|
|
3825
3812
|
* Checks whether a `Result` is a `Failure`.
|
|
3826
3813
|
*
|
|
@@ -3846,7 +3833,7 @@ const failVoid = /* @__PURE__ */ fail$9(void 0);
|
|
|
3846
3833
|
* @category Type Guards
|
|
3847
3834
|
* @since 4.0.0
|
|
3848
3835
|
*/
|
|
3849
|
-
const isFailure$
|
|
3836
|
+
const isFailure$1 = isFailure$2;
|
|
3850
3837
|
/**
|
|
3851
3838
|
* Checks whether a `Result` is a `Success`.
|
|
3852
3839
|
*
|
|
@@ -3872,36 +3859,7 @@ const isFailure$3 = isFailure$4;
|
|
|
3872
3859
|
* @category Type Guards
|
|
3873
3860
|
* @since 4.0.0
|
|
3874
3861
|
*/
|
|
3875
|
-
const isSuccess$
|
|
3876
|
-
/**
|
|
3877
|
-
* Extracts the success value or throws the raw failure value `E`.
|
|
3878
|
-
*
|
|
3879
|
-
* - `Success<A>` returns `A`
|
|
3880
|
-
* - `Failure<E>` throws `E` directly
|
|
3881
|
-
* - Use {@link getOrThrowWith} for a custom error object
|
|
3882
|
-
*
|
|
3883
|
-
* **Example** (Unwrapping or throwing)
|
|
3884
|
-
*
|
|
3885
|
-
* ```ts
|
|
3886
|
-
* import { Result } from "effect"
|
|
3887
|
-
*
|
|
3888
|
-
* console.log(Result.getOrThrow(Result.succeed(1)))
|
|
3889
|
-
* // Output: 1
|
|
3890
|
-
*
|
|
3891
|
-
* // This would throw the string "error":
|
|
3892
|
-
* // Result.getOrThrow(Result.fail("error"))
|
|
3893
|
-
* ```
|
|
3894
|
-
*
|
|
3895
|
-
* @see {@link getOrThrowWith} for custom error mapping
|
|
3896
|
-
* @see {@link getOrElse} for a non-throwing alternative
|
|
3897
|
-
*
|
|
3898
|
-
* @category Getters
|
|
3899
|
-
* @since 4.0.0
|
|
3900
|
-
*/
|
|
3901
|
-
const getOrThrow = /* @__PURE__ */ (/* @__PURE__ */ dual(2, (self, onFailure) => {
|
|
3902
|
-
if (isSuccess$3(self)) return self.success;
|
|
3903
|
-
throw onFailure(self.failure);
|
|
3904
|
-
}))(identity);
|
|
3862
|
+
const isSuccess$1 = isSuccess$2;
|
|
3905
3863
|
//#endregion
|
|
3906
3864
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Tuple.js
|
|
3907
3865
|
/**
|
|
@@ -3932,7 +3890,7 @@ const getOrThrow = /* @__PURE__ */ (/* @__PURE__ */ dual(2, (self, onFailure) =>
|
|
|
3932
3890
|
* @category Equivalence
|
|
3933
3891
|
* @since 2.0.0
|
|
3934
3892
|
*/
|
|
3935
|
-
const makeEquivalence$
|
|
3893
|
+
const makeEquivalence$2 = Tuple$1;
|
|
3936
3894
|
//#endregion
|
|
3937
3895
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Iterable.js
|
|
3938
3896
|
/**
|
|
@@ -4014,14 +3972,14 @@ const headUnsafe = (self) => {
|
|
|
4014
3972
|
* @category filtering
|
|
4015
3973
|
* @since 2.0.0
|
|
4016
3974
|
*/
|
|
4017
|
-
const filterMap
|
|
3975
|
+
const filterMap = /* @__PURE__ */ dual(2, (self, f) => ({ [Symbol.iterator]() {
|
|
4018
3976
|
const iterator = self[Symbol.iterator]();
|
|
4019
3977
|
let i = 0;
|
|
4020
3978
|
return { next() {
|
|
4021
3979
|
let result = iterator.next();
|
|
4022
3980
|
while (!result.done) {
|
|
4023
3981
|
const next = f(result.value, i++);
|
|
4024
|
-
if (isSuccess$
|
|
3982
|
+
if (isSuccess$1(next)) return {
|
|
4025
3983
|
done: false,
|
|
4026
3984
|
value: next.success
|
|
4027
3985
|
};
|
|
@@ -4054,7 +4012,7 @@ const filterMap$2 = /* @__PURE__ */ dual(2, (self, f) => ({ [Symbol.iterator]()
|
|
|
4054
4012
|
* @category constructors
|
|
4055
4013
|
* @since 2.0.0
|
|
4056
4014
|
*/
|
|
4057
|
-
const empty$
|
|
4015
|
+
const empty$6 = () => ({});
|
|
4058
4016
|
/**
|
|
4059
4017
|
* Determine if a record is empty.
|
|
4060
4018
|
*
|
|
@@ -4107,7 +4065,7 @@ const has = /* @__PURE__ */ dual(2, (self, key) => Object.hasOwn(self, key));
|
|
|
4107
4065
|
* @category mapping
|
|
4108
4066
|
* @since 2.0.0
|
|
4109
4067
|
*/
|
|
4110
|
-
const map$
|
|
4068
|
+
const map$6 = /* @__PURE__ */ dual(2, (self, f) => {
|
|
4111
4069
|
const out = { ...self };
|
|
4112
4070
|
for (const key of keys(self)) out[key] = f(self[key], key);
|
|
4113
4071
|
return out;
|
|
@@ -4127,8 +4085,8 @@ const map$9 = /* @__PURE__ */ dual(2, (self, f) => {
|
|
|
4127
4085
|
* @category filtering
|
|
4128
4086
|
* @since 2.0.0
|
|
4129
4087
|
*/
|
|
4130
|
-
const filter$
|
|
4131
|
-
const out = empty$
|
|
4088
|
+
const filter$2 = /* @__PURE__ */ dual(2, (self, predicate) => {
|
|
4089
|
+
const out = empty$6();
|
|
4132
4090
|
for (const key of keys(self)) if (predicate(self[key], key)) out[key] = self[key];
|
|
4133
4091
|
return out;
|
|
4134
4092
|
});
|
|
@@ -4193,7 +4151,7 @@ const isSubrecordBy = (equivalence) => dual(2, (self, that) => {
|
|
|
4193
4151
|
* @category instances
|
|
4194
4152
|
* @since 2.0.0
|
|
4195
4153
|
*/
|
|
4196
|
-
const makeEquivalence$
|
|
4154
|
+
const makeEquivalence$1 = (equivalence) => {
|
|
4197
4155
|
const is = isSubrecordBy(equivalence);
|
|
4198
4156
|
return (self, that) => is(self, that) && is(that, self);
|
|
4199
4157
|
};
|
|
@@ -4631,7 +4589,7 @@ const union$1 = /* @__PURE__ */ dual(2, (self, that) => unionWith(self, that, as
|
|
|
4631
4589
|
* @category constructors
|
|
4632
4590
|
* @since 2.0.0
|
|
4633
4591
|
*/
|
|
4634
|
-
const empty$
|
|
4592
|
+
const empty$5 = () => [];
|
|
4635
4593
|
/**
|
|
4636
4594
|
* Wraps a single value in a `NonEmptyArray`.
|
|
4637
4595
|
*
|
|
@@ -4669,7 +4627,7 @@ const of = (a) => [a];
|
|
|
4669
4627
|
* @category mapping
|
|
4670
4628
|
* @since 2.0.0
|
|
4671
4629
|
*/
|
|
4672
|
-
const map$
|
|
4630
|
+
const map$5 = /* @__PURE__ */ dual(2, (self, f) => self.map(f));
|
|
4673
4631
|
/**
|
|
4674
4632
|
* Maps each element to an array and flattens the results into a single array.
|
|
4675
4633
|
*
|
|
@@ -4718,7 +4676,7 @@ const flatMap$5 = /* @__PURE__ */ dual(2, (self, f) => {
|
|
|
4718
4676
|
* @category filtering
|
|
4719
4677
|
* @since 2.0.0
|
|
4720
4678
|
*/
|
|
4721
|
-
const filter$
|
|
4679
|
+
const filter$1 = /* @__PURE__ */ dual(2, (self, predicate) => {
|
|
4722
4680
|
const as = fromIterable$2(self);
|
|
4723
4681
|
const out = [];
|
|
4724
4682
|
for (let i = 0; i < as.length; i++) if (predicate(as[i], i)) out.push(as[i]);
|
|
@@ -4744,7 +4702,7 @@ const filter$3 = /* @__PURE__ */ dual(2, (self, predicate) => {
|
|
|
4744
4702
|
* @category conversions
|
|
4745
4703
|
* @since 2.0.0
|
|
4746
4704
|
*/
|
|
4747
|
-
const fromNullishOr
|
|
4705
|
+
const fromNullishOr = (a) => a == null ? empty$5() : [a];
|
|
4748
4706
|
/**
|
|
4749
4707
|
* Maps each element with a nullable-returning function, keeping only non-null /
|
|
4750
4708
|
* non-undefined results.
|
|
@@ -4761,7 +4719,7 @@ const fromNullishOr$2 = (a) => a == null ? empty$6() : [a];
|
|
|
4761
4719
|
* @category sequencing
|
|
4762
4720
|
* @since 2.0.0
|
|
4763
4721
|
*/
|
|
4764
|
-
const flatMapNullishOr = /* @__PURE__ */ dual(2, (self, f) => flatMap$5(self, (a) => fromNullishOr
|
|
4722
|
+
const flatMapNullishOr = /* @__PURE__ */ dual(2, (self, f) => flatMap$5(self, (a) => fromNullishOr(f(a))));
|
|
4765
4723
|
/**
|
|
4766
4724
|
* Creates an `Equivalence` for arrays based on an element `Equivalence`. Two
|
|
4767
4725
|
* arrays are equivalent when they have the same length and all elements are
|
|
@@ -4781,7 +4739,7 @@ const flatMapNullishOr = /* @__PURE__ */ dual(2, (self, f) => flatMap$5(self, (a
|
|
|
4781
4739
|
* @category instances
|
|
4782
4740
|
* @since 2.0.0
|
|
4783
4741
|
*/
|
|
4784
|
-
const makeEquivalence
|
|
4742
|
+
const makeEquivalence = Array$3;
|
|
4785
4743
|
/**
|
|
4786
4744
|
* Removes duplicates using a custom equivalence, preserving the order of the
|
|
4787
4745
|
* first occurrence.
|
|
@@ -4812,7 +4770,7 @@ const dedupeWith = /* @__PURE__ */ dual(2, (self, isEquivalent) => {
|
|
|
4812
4770
|
});
|
|
4813
4771
|
//#endregion
|
|
4814
4772
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Duration.js
|
|
4815
|
-
const TypeId$
|
|
4773
|
+
const TypeId$25 = "~effect/time/Duration";
|
|
4816
4774
|
const bigint0$2 = /* @__PURE__ */ BigInt(0);
|
|
4817
4775
|
const bigint1e3 = /* @__PURE__ */ BigInt(1e3);
|
|
4818
4776
|
const DURATION_REGEXP = /^(-?\d+(?:\.\d+)?)\s+(nanos?|micros?|millis?|seconds?|minutes?|hours?|days?|weeks?)$/;
|
|
@@ -4835,15 +4793,15 @@ const DURATION_REGEXP = /^(-?\d+(?:\.\d+)?)\s+(nanos?|micros?|millis?|seconds?|m
|
|
|
4835
4793
|
*/
|
|
4836
4794
|
const fromInputUnsafe = (input) => {
|
|
4837
4795
|
if (isDuration(input)) return input;
|
|
4838
|
-
if (isNumber
|
|
4796
|
+
if (isNumber(input)) return millis(input);
|
|
4839
4797
|
if (isBigInt(input)) return nanos(input);
|
|
4840
|
-
if (Array.isArray(input) && input.length === 2 && input.every(isNumber
|
|
4798
|
+
if (Array.isArray(input) && input.length === 2 && input.every(isNumber)) {
|
|
4841
4799
|
if (Number.isNaN(input[0]) || Number.isNaN(input[1])) return zero$1;
|
|
4842
4800
|
if (input[0] === -Infinity || input[1] === -Infinity) return negativeInfinity;
|
|
4843
4801
|
if (input[0] === Infinity || input[1] === Infinity) return infinity;
|
|
4844
4802
|
return nanos(BigInt(Math.round(input[0] * 1e9)) + BigInt(Math.round(input[1])));
|
|
4845
4803
|
}
|
|
4846
|
-
if (isString
|
|
4804
|
+
if (isString(input)) {
|
|
4847
4805
|
const match = DURATION_REGEXP.exec(input);
|
|
4848
4806
|
if (match) {
|
|
4849
4807
|
const [_, valueStr, unit] = match;
|
|
@@ -4877,11 +4835,11 @@ const zeroDurationValue = {
|
|
|
4877
4835
|
const infinityDurationValue = { _tag: "Infinity" };
|
|
4878
4836
|
const negativeInfinityDurationValue = { _tag: "NegativeInfinity" };
|
|
4879
4837
|
const DurationProto = {
|
|
4880
|
-
[TypeId$
|
|
4881
|
-
[symbol$
|
|
4838
|
+
[TypeId$25]: TypeId$25,
|
|
4839
|
+
[symbol$1]() {
|
|
4882
4840
|
return structure(this.value);
|
|
4883
4841
|
},
|
|
4884
|
-
[symbol
|
|
4842
|
+
[symbol](that) {
|
|
4885
4843
|
return isDuration(that) && equals$1(this, that);
|
|
4886
4844
|
},
|
|
4887
4845
|
toString() {
|
|
@@ -4923,7 +4881,7 @@ const DurationProto = {
|
|
|
4923
4881
|
};
|
|
4924
4882
|
const make$28 = (input) => {
|
|
4925
4883
|
const duration = Object.create(DurationProto);
|
|
4926
|
-
if (isNumber
|
|
4884
|
+
if (isNumber(input)) if (isNaN(input) || input === 0 || Object.is(input, -0)) duration.value = zeroDurationValue;
|
|
4927
4885
|
else if (!Number.isFinite(input)) duration.value = input > 0 ? infinityDurationValue : negativeInfinityDurationValue;
|
|
4928
4886
|
else if (!Number.isInteger(input)) duration.value = {
|
|
4929
4887
|
_tag: "Nanos",
|
|
@@ -4954,7 +4912,7 @@ const make$28 = (input) => {
|
|
|
4954
4912
|
* @since 2.0.0
|
|
4955
4913
|
* @category guards
|
|
4956
4914
|
*/
|
|
4957
|
-
const isDuration = (u) => hasProperty(u, TypeId$
|
|
4915
|
+
const isDuration = (u) => hasProperty(u, TypeId$25);
|
|
4958
4916
|
/**
|
|
4959
4917
|
* Checks if a Duration is finite (not infinite).
|
|
4960
4918
|
*
|
|
@@ -4969,7 +4927,7 @@ const isDuration = (u) => hasProperty(u, TypeId$28);
|
|
|
4969
4927
|
* @since 2.0.0
|
|
4970
4928
|
* @category guards
|
|
4971
4929
|
*/
|
|
4972
|
-
const isFinite
|
|
4930
|
+
const isFinite = (self) => self.value._tag !== "Infinity" && self.value._tag !== "NegativeInfinity";
|
|
4973
4931
|
/**
|
|
4974
4932
|
* Checks if a Duration is zero.
|
|
4975
4933
|
*
|
|
@@ -5168,33 +5126,13 @@ const weeks = (weeks) => make$28(weeks * 6048e5);
|
|
|
5168
5126
|
* @since 2.0.0
|
|
5169
5127
|
* @category getters
|
|
5170
5128
|
*/
|
|
5171
|
-
const toMillis = (self) => match$
|
|
5129
|
+
const toMillis = (self) => match$1(self, {
|
|
5172
5130
|
onMillis: identity,
|
|
5173
5131
|
onNanos: (nanos) => Number(nanos) / 1e6,
|
|
5174
5132
|
onInfinity: () => Infinity,
|
|
5175
5133
|
onNegativeInfinity: () => -Infinity
|
|
5176
5134
|
});
|
|
5177
5135
|
/**
|
|
5178
|
-
* Converts a Duration to seconds.
|
|
5179
|
-
*
|
|
5180
|
-
* @example
|
|
5181
|
-
* ```ts
|
|
5182
|
-
* import { Duration } from "effect"
|
|
5183
|
-
*
|
|
5184
|
-
* console.log(Duration.toSeconds(Duration.millis(5000))) // 5
|
|
5185
|
-
* console.log(Duration.toSeconds(Duration.minutes(2))) // 120
|
|
5186
|
-
* ```
|
|
5187
|
-
*
|
|
5188
|
-
* @since 2.0.0
|
|
5189
|
-
* @category getters
|
|
5190
|
-
*/
|
|
5191
|
-
const toSeconds = (self) => match$5(self, {
|
|
5192
|
-
onMillis: (millis) => millis / 1e3,
|
|
5193
|
-
onNanos: (nanos) => Number(nanos) / 1e9,
|
|
5194
|
-
onInfinity: () => Infinity,
|
|
5195
|
-
onNegativeInfinity: () => -Infinity
|
|
5196
|
-
});
|
|
5197
|
-
/**
|
|
5198
5136
|
* Get the duration in nanoseconds as a bigint.
|
|
5199
5137
|
*
|
|
5200
5138
|
* If the duration is infinite, it throws an error.
|
|
@@ -5244,7 +5182,7 @@ const toNanosUnsafe = (self) => {
|
|
|
5244
5182
|
* @since 2.0.0
|
|
5245
5183
|
* @category pattern matching
|
|
5246
5184
|
*/
|
|
5247
|
-
const match$
|
|
5185
|
+
const match$1 = /* @__PURE__ */ dual(2, (self, options) => {
|
|
5248
5186
|
switch (self.value._tag) {
|
|
5249
5187
|
case "Millis": return options.onMillis(self.value.millis);
|
|
5250
5188
|
case "Nanos": return options.onNanos(self.value.nanos);
|
|
@@ -5289,7 +5227,7 @@ const matchPair = /* @__PURE__ */ dual(3, (self, that, options) => {
|
|
|
5289
5227
|
* @category instances
|
|
5290
5228
|
* @since 2.0.0
|
|
5291
5229
|
*/
|
|
5292
|
-
const Equivalence$
|
|
5230
|
+
const Equivalence$3 = (self, that) => matchPair(self, that, {
|
|
5293
5231
|
onMillis: (self, that) => self === that,
|
|
5294
5232
|
onNanos: (self, that) => self === that,
|
|
5295
5233
|
onInfinity: (self, that) => self.value._tag === that.value._tag
|
|
@@ -5308,7 +5246,9 @@ const Equivalence$5 = (self, that) => matchPair(self, that, {
|
|
|
5308
5246
|
* @since 2.0.0
|
|
5309
5247
|
* @category predicates
|
|
5310
5248
|
*/
|
|
5311
|
-
const equals$1 = /* @__PURE__ */ dual(2, (self, that) => Equivalence$
|
|
5249
|
+
const equals$1 = /* @__PURE__ */ dual(2, (self, that) => Equivalence$3(self, that));
|
|
5250
|
+
//#endregion
|
|
5251
|
+
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Filter.js
|
|
5312
5252
|
/**
|
|
5313
5253
|
* Composes two filters sequentially, allowing the output of the first to be
|
|
5314
5254
|
* passed to the second.
|
|
@@ -5321,9 +5261,9 @@ const equals$1 = /* @__PURE__ */ dual(2, (self, that) => Equivalence$5(self, tha
|
|
|
5321
5261
|
*/
|
|
5322
5262
|
const composePassthrough = /* @__PURE__ */ dual(2, (left, right) => (input) => {
|
|
5323
5263
|
const leftOut = left(input);
|
|
5324
|
-
if (isFailure$
|
|
5264
|
+
if (isFailure$1(leftOut)) return fail$8(input);
|
|
5325
5265
|
const rightOut = right(leftOut.success);
|
|
5326
|
-
if (isFailure$
|
|
5266
|
+
if (isFailure$1(rightOut)) return fail$8(input);
|
|
5327
5267
|
return rightOut;
|
|
5328
5268
|
});
|
|
5329
5269
|
//#endregion
|
|
@@ -5410,7 +5350,7 @@ const ServiceProto = {
|
|
|
5410
5350
|
}
|
|
5411
5351
|
};
|
|
5412
5352
|
const ReferenceTypeId = "~effect/ServiceMap/Reference";
|
|
5413
|
-
const TypeId$
|
|
5353
|
+
const TypeId$24 = "~effect/ServiceMap";
|
|
5414
5354
|
/**
|
|
5415
5355
|
* @example
|
|
5416
5356
|
* ```ts
|
|
@@ -5427,14 +5367,14 @@ const TypeId$27 = "~effect/ServiceMap";
|
|
|
5427
5367
|
* @since 4.0.0
|
|
5428
5368
|
* @category Constructors
|
|
5429
5369
|
*/
|
|
5430
|
-
const makeUnsafe$
|
|
5370
|
+
const makeUnsafe$7 = (mapUnsafe) => {
|
|
5431
5371
|
const self = Object.create(Proto$4);
|
|
5432
5372
|
self.mapUnsafe = mapUnsafe;
|
|
5433
5373
|
return self;
|
|
5434
5374
|
};
|
|
5435
5375
|
const Proto$4 = {
|
|
5436
5376
|
...PipeInspectableProto,
|
|
5437
|
-
[TypeId$
|
|
5377
|
+
[TypeId$24]: { _Services: (_) => _ },
|
|
5438
5378
|
toJSON() {
|
|
5439
5379
|
return {
|
|
5440
5380
|
_id: "ServiceMap",
|
|
@@ -5444,13 +5384,13 @@ const Proto$4 = {
|
|
|
5444
5384
|
}))
|
|
5445
5385
|
};
|
|
5446
5386
|
},
|
|
5447
|
-
[symbol
|
|
5387
|
+
[symbol](that) {
|
|
5448
5388
|
if (!isServiceMap(that) || this.mapUnsafe.size !== that.mapUnsafe.size) return false;
|
|
5449
5389
|
for (const k of this.mapUnsafe.keys()) if (!that.mapUnsafe.has(k) || !equals$2(this.mapUnsafe.get(k), that.mapUnsafe.get(k))) return false;
|
|
5450
5390
|
return true;
|
|
5451
5391
|
},
|
|
5452
|
-
[symbol$
|
|
5453
|
-
return number$
|
|
5392
|
+
[symbol$1]() {
|
|
5393
|
+
return number$1(this.mapUnsafe.size);
|
|
5454
5394
|
}
|
|
5455
5395
|
};
|
|
5456
5396
|
/**
|
|
@@ -5467,7 +5407,7 @@ const Proto$4 = {
|
|
|
5467
5407
|
* @since 4.0.0
|
|
5468
5408
|
* @category Guards
|
|
5469
5409
|
*/
|
|
5470
|
-
const isServiceMap = (u) => hasProperty(u, TypeId$
|
|
5410
|
+
const isServiceMap = (u) => hasProperty(u, TypeId$24);
|
|
5471
5411
|
/**
|
|
5472
5412
|
* Checks if the provided argument is a `Reference`.
|
|
5473
5413
|
*
|
|
@@ -5502,8 +5442,8 @@ const isReference = (u) => hasProperty(u, ReferenceTypeId);
|
|
|
5502
5442
|
* @since 4.0.0
|
|
5503
5443
|
* @category Constructors
|
|
5504
5444
|
*/
|
|
5505
|
-
const empty$
|
|
5506
|
-
const emptyServiceMap = /* @__PURE__ */ makeUnsafe$
|
|
5445
|
+
const empty$4 = () => emptyServiceMap;
|
|
5446
|
+
const emptyServiceMap = /* @__PURE__ */ makeUnsafe$7(/* @__PURE__ */ new Map());
|
|
5507
5447
|
/**
|
|
5508
5448
|
* Creates a new `ServiceMap` with a single service associated to the key.
|
|
5509
5449
|
*
|
|
@@ -5522,7 +5462,7 @@ const emptyServiceMap = /* @__PURE__ */ makeUnsafe$8(/* @__PURE__ */ new Map());
|
|
|
5522
5462
|
* @since 4.0.0
|
|
5523
5463
|
* @category Constructors
|
|
5524
5464
|
*/
|
|
5525
|
-
const make$27 = (key, service) => makeUnsafe$
|
|
5465
|
+
const make$27 = (key, service) => makeUnsafe$7(new Map([[key.key, service]]));
|
|
5526
5466
|
/**
|
|
5527
5467
|
* Adds a service to a given `ServiceMap`.
|
|
5528
5468
|
*
|
|
@@ -5548,10 +5488,10 @@ const make$27 = (key, service) => makeUnsafe$8(new Map([[key.key, service]]));
|
|
|
5548
5488
|
* @since 4.0.0
|
|
5549
5489
|
* @category Adders
|
|
5550
5490
|
*/
|
|
5551
|
-
const add
|
|
5491
|
+
const add = /* @__PURE__ */ dual(3, (self, key, service) => {
|
|
5552
5492
|
const map = new Map(self.mapUnsafe);
|
|
5553
5493
|
map.set(key.key, service);
|
|
5554
|
-
return makeUnsafe$
|
|
5494
|
+
return makeUnsafe$7(map);
|
|
5555
5495
|
});
|
|
5556
5496
|
/**
|
|
5557
5497
|
* Get a service from the context that corresponds to the given key, or
|
|
@@ -5757,7 +5697,7 @@ const merge$2 = /* @__PURE__ */ dual(2, (self, that) => {
|
|
|
5757
5697
|
if (that.mapUnsafe.size === 0) return self;
|
|
5758
5698
|
const map = new Map(self.mapUnsafe);
|
|
5759
5699
|
that.mapUnsafe.forEach((value, key) => map.set(key, value));
|
|
5760
|
-
return makeUnsafe$
|
|
5700
|
+
return makeUnsafe$7(map);
|
|
5761
5701
|
});
|
|
5762
5702
|
/**
|
|
5763
5703
|
* Merges any number of `ServiceMap`s, returning a new `ServiceMap` containing the services of all.
|
|
@@ -5793,7 +5733,7 @@ const mergeAll$2 = (...ctxs) => {
|
|
|
5793
5733
|
for (let i = 0; i < ctxs.length; i++) ctxs[i].mapUnsafe.forEach((value, key) => {
|
|
5794
5734
|
map.set(key, value);
|
|
5795
5735
|
});
|
|
5796
|
-
return makeUnsafe$
|
|
5736
|
+
return makeUnsafe$7(map);
|
|
5797
5737
|
};
|
|
5798
5738
|
/**
|
|
5799
5739
|
* Creates a service map key with a default value.
|
|
@@ -6728,35 +6668,35 @@ var Interrupt = class extends ReasonBase {
|
|
|
6728
6668
|
fiberId: this.fiberId
|
|
6729
6669
|
};
|
|
6730
6670
|
}
|
|
6731
|
-
[symbol
|
|
6732
|
-
return isInterruptReason
|
|
6671
|
+
[symbol](that) {
|
|
6672
|
+
return isInterruptReason(that) && this.fiberId === that.fiberId && this.annotations === that.annotations;
|
|
6733
6673
|
}
|
|
6734
|
-
[symbol$
|
|
6735
|
-
return combine
|
|
6674
|
+
[symbol$1]() {
|
|
6675
|
+
return combine(string$2(`${this._tag}:${this.fiberId}`))(random(this.annotations));
|
|
6736
6676
|
}
|
|
6737
6677
|
};
|
|
6738
6678
|
/** @internal */
|
|
6739
6679
|
const causeInterrupt = (fiberId) => new CauseImpl([new Interrupt(fiberId)]);
|
|
6740
6680
|
/** @internal */
|
|
6741
|
-
const findFail
|
|
6742
|
-
const reason = self.reasons.find(isFailReason
|
|
6743
|
-
return reason ? succeed$7(reason) : fail$
|
|
6681
|
+
const findFail = (self) => {
|
|
6682
|
+
const reason = self.reasons.find(isFailReason);
|
|
6683
|
+
return reason ? succeed$7(reason) : fail$8(self);
|
|
6744
6684
|
};
|
|
6745
6685
|
/** @internal */
|
|
6746
|
-
const findError$
|
|
6686
|
+
const findError$1 = (self) => {
|
|
6747
6687
|
for (let i = 0; i < self.reasons.length; i++) {
|
|
6748
6688
|
const reason = self.reasons[i];
|
|
6749
6689
|
if (reason._tag === "Fail") return succeed$7(reason.error);
|
|
6750
6690
|
}
|
|
6751
|
-
return fail$
|
|
6691
|
+
return fail$8(self);
|
|
6752
6692
|
};
|
|
6753
6693
|
/** @internal */
|
|
6754
|
-
const findDefect
|
|
6755
|
-
const reason = self.reasons.find(isDieReason
|
|
6756
|
-
return reason ? succeed$7(reason.defect) : fail$
|
|
6694
|
+
const findDefect = (self) => {
|
|
6695
|
+
const reason = self.reasons.find(isDieReason);
|
|
6696
|
+
return reason ? succeed$7(reason.defect) : fail$8(self);
|
|
6757
6697
|
};
|
|
6758
6698
|
/** @internal */
|
|
6759
|
-
const hasInterrupts$2 = (self) => self.reasons.some(isInterruptReason
|
|
6699
|
+
const hasInterrupts$2 = (self) => self.reasons.some(isInterruptReason);
|
|
6760
6700
|
/** @internal */
|
|
6761
6701
|
const causeFilterInterruptors = (self) => {
|
|
6762
6702
|
let interruptors;
|
|
@@ -6766,10 +6706,10 @@ const causeFilterInterruptors = (self) => {
|
|
|
6766
6706
|
interruptors ??= /* @__PURE__ */ new Set();
|
|
6767
6707
|
if (f.fiberId !== void 0) interruptors.add(f.fiberId);
|
|
6768
6708
|
}
|
|
6769
|
-
return interruptors ? succeed$7(interruptors) : fail$
|
|
6709
|
+
return interruptors ? succeed$7(interruptors) : fail$8(self);
|
|
6770
6710
|
};
|
|
6771
6711
|
/** @internal */
|
|
6772
|
-
const hasInterruptsOnly$1 = (self) => self.reasons.every(isInterruptReason
|
|
6712
|
+
const hasInterruptsOnly$1 = (self) => self.reasons.every(isInterruptReason);
|
|
6773
6713
|
/** @internal */
|
|
6774
6714
|
const causeCombine = /* @__PURE__ */ dual(2, (self, that) => {
|
|
6775
6715
|
if (self.reasons.length === 0) return that;
|
|
@@ -7063,7 +7003,7 @@ const fiberStackAnnotations = (fiber) => {
|
|
|
7063
7003
|
if (!fiber.currentStackFrame) return void 0;
|
|
7064
7004
|
const annotations = /* @__PURE__ */ new Map();
|
|
7065
7005
|
annotations.set(StackTraceKey.key, fiber.currentStackFrame);
|
|
7066
|
-
return makeUnsafe$
|
|
7006
|
+
return makeUnsafe$7(annotations);
|
|
7067
7007
|
};
|
|
7068
7008
|
const fiberInterruptChildren = (fiber) => {
|
|
7069
7009
|
if (fiber._children === void 0 || fiber._children.size === 0) return;
|
|
@@ -7109,20 +7049,20 @@ const fiberInterruptAs = /* @__PURE__ */ dual((args) => hasProperty(args[0], Fib
|
|
|
7109
7049
|
let ann = fiberStackAnnotations(parent);
|
|
7110
7050
|
ann = ann && annotations ? merge$2(ann, annotations) : ann ?? annotations;
|
|
7111
7051
|
self.interruptUnsafe(fiberId, ann);
|
|
7112
|
-
return asVoid$
|
|
7052
|
+
return asVoid$1(fiberAwait(self));
|
|
7113
7053
|
}));
|
|
7114
7054
|
/** @internal */
|
|
7115
7055
|
const fiberInterruptAll = (fibers) => withFiber$1((parent) => {
|
|
7116
7056
|
const annotations = fiberStackAnnotations(parent);
|
|
7117
7057
|
for (const fiber of fibers) fiber.interruptUnsafe(parent.id, annotations);
|
|
7118
|
-
return asVoid$
|
|
7058
|
+
return asVoid$1(fiberAwaitAll(fibers));
|
|
7119
7059
|
});
|
|
7120
7060
|
/** @internal */
|
|
7121
7061
|
const succeed$6 = exitSucceed;
|
|
7122
7062
|
/** @internal */
|
|
7123
7063
|
const failCause$5 = exitFailCause;
|
|
7124
7064
|
/** @internal */
|
|
7125
|
-
const fail$
|
|
7065
|
+
const fail$7 = exitFail;
|
|
7126
7066
|
/** @internal */
|
|
7127
7067
|
const sync$2 = /* @__PURE__ */ makePrimitive({
|
|
7128
7068
|
op: "Sync",
|
|
@@ -7140,7 +7080,7 @@ const suspend$4 = /* @__PURE__ */ makePrimitive({
|
|
|
7140
7080
|
}
|
|
7141
7081
|
});
|
|
7142
7082
|
/** @internal */
|
|
7143
|
-
const fromYieldable
|
|
7083
|
+
const fromYieldable = (yieldable) => yieldable.asEffect();
|
|
7144
7084
|
/** @internal */
|
|
7145
7085
|
const yieldNow$1 = /* @__PURE__ */ (/* @__PURE__ */ makePrimitive({
|
|
7146
7086
|
op: "Yield",
|
|
@@ -7160,9 +7100,9 @@ const succeedSome$1 = (a) => succeed$6(some(a));
|
|
|
7160
7100
|
/** @internal */
|
|
7161
7101
|
const succeedNone$1 = /* @__PURE__ */ succeed$6(/* @__PURE__ */ none());
|
|
7162
7102
|
/** @internal */
|
|
7163
|
-
const die$
|
|
7103
|
+
const die$4 = (defect) => exitDie(defect);
|
|
7164
7104
|
/** @internal */
|
|
7165
|
-
const failSync
|
|
7105
|
+
const failSync = (error) => suspend$4(() => fail$7(internalCall(error)));
|
|
7166
7106
|
/** @internal */
|
|
7167
7107
|
const void_$3 = /* @__PURE__ */ succeed$6(void 0);
|
|
7168
7108
|
/** @internal */
|
|
@@ -7170,12 +7110,12 @@ const try_$1 = (options) => suspend$4(() => {
|
|
|
7170
7110
|
try {
|
|
7171
7111
|
return succeed$6(internalCall(options.try));
|
|
7172
7112
|
} catch (err) {
|
|
7173
|
-
return fail$
|
|
7113
|
+
return fail$7(internalCall(() => options.catch(err)));
|
|
7174
7114
|
}
|
|
7175
7115
|
});
|
|
7176
7116
|
/** @internal */
|
|
7177
7117
|
const promise$1 = (evaluate) => callbackOptions(function(resume, signal) {
|
|
7178
|
-
internalCall(() => evaluate(signal)).then((a) => resume(succeed$6(a)), (e) => resume(die$
|
|
7118
|
+
internalCall(() => evaluate(signal)).then((a) => resume(succeed$6(a)), (e) => resume(die$4(e)));
|
|
7179
7119
|
}, evaluate.length !== 0);
|
|
7180
7120
|
/** @internal */
|
|
7181
7121
|
const tryPromise$1 = (options) => {
|
|
@@ -7183,9 +7123,9 @@ const tryPromise$1 = (options) => {
|
|
|
7183
7123
|
const catcher = typeof options === "function" ? (cause) => new UnknownError$1(cause, "An error occurred in Effect.tryPromise") : options.catch;
|
|
7184
7124
|
return callbackOptions(function(resume, signal) {
|
|
7185
7125
|
try {
|
|
7186
|
-
internalCall(() => f(signal)).then((a) => resume(succeed$6(a)), (e) => resume(fail$
|
|
7126
|
+
internalCall(() => f(signal)).then((a) => resume(succeed$6(a)), (e) => resume(fail$7(internalCall(() => catcher(e)))));
|
|
7187
7127
|
} catch (err) {
|
|
7188
|
-
resume(fail$
|
|
7128
|
+
resume(fail$7(internalCall(() => catcher(err))));
|
|
7189
7129
|
}
|
|
7190
7130
|
}, eval.length !== 0);
|
|
7191
7131
|
};
|
|
@@ -7234,7 +7174,7 @@ const asyncFinalizer = /* @__PURE__ */ makePrimitive({
|
|
|
7234
7174
|
/** @internal */
|
|
7235
7175
|
const callback$2 = (register) => callbackOptions(register, register.length >= 2);
|
|
7236
7176
|
/** @internal */
|
|
7237
|
-
const never$
|
|
7177
|
+
const never$1 = /* @__PURE__ */ callback$2(constVoid);
|
|
7238
7178
|
/** @internal */
|
|
7239
7179
|
const gen$1 = (...args) => suspend$4(() => fromIteratorUnsafe(args.length === 1 ? args[0]() : args[1].call(args[0].self)));
|
|
7240
7180
|
/** @internal */
|
|
@@ -7278,7 +7218,7 @@ const makeFn = (name, bodyOrOptions, defError, pipeables, addSpan, spanOptions)
|
|
|
7278
7218
|
globalThis.Error.stackTraceLimit = 2;
|
|
7279
7219
|
const callError = new globalThis.Error();
|
|
7280
7220
|
globalThis.Error.stackTraceLimit = prevLimit;
|
|
7281
|
-
return updateService
|
|
7221
|
+
return updateService(addSpan ? useSpan$1(name, spanOptions, (span) => provideParentSpan(result, span)) : result, CurrentStackFrame, (prev) => ({
|
|
7282
7222
|
name,
|
|
7283
7223
|
stack: fnStackCleaner(() => callError.stack),
|
|
7284
7224
|
parent: {
|
|
@@ -7321,7 +7261,7 @@ const fromIteratorEagerUnsafe = (evaluate) => {
|
|
|
7321
7261
|
}
|
|
7322
7262
|
}
|
|
7323
7263
|
} catch (error) {
|
|
7324
|
-
return die$
|
|
7264
|
+
return die$4(error);
|
|
7325
7265
|
}
|
|
7326
7266
|
};
|
|
7327
7267
|
const fromIteratorUnsafe = /* @__PURE__ */ makePrimitive({
|
|
@@ -7350,15 +7290,15 @@ const as$1 = /* @__PURE__ */ dual(2, (self, value) => {
|
|
|
7350
7290
|
return flatMap$4(self, (_) => b);
|
|
7351
7291
|
});
|
|
7352
7292
|
/** @internal */
|
|
7353
|
-
const asSome$1 = (self) => map$
|
|
7293
|
+
const asSome$1 = (self) => map$4(self, some);
|
|
7354
7294
|
/** @internal */
|
|
7355
7295
|
const andThen$1 = /* @__PURE__ */ dual(2, (self, f) => flatMap$4(self, (a) => isEffect$1(f) ? f : internalCall(() => f(a))));
|
|
7356
7296
|
/** @internal */
|
|
7357
7297
|
const tap$1 = /* @__PURE__ */ dual(2, (self, f) => flatMap$4(self, (a) => as$1(isEffect$1(f) ? f : internalCall(() => f(a)), a)));
|
|
7358
7298
|
/** @internal */
|
|
7359
|
-
const asVoid$
|
|
7299
|
+
const asVoid$1 = (self) => flatMap$4(self, (_) => exitVoid);
|
|
7360
7300
|
/** @internal */
|
|
7361
|
-
const raceAllFirst
|
|
7301
|
+
const raceAllFirst = (all, options) => withFiber$1((parent) => callback$2((resume) => {
|
|
7362
7302
|
let done = false;
|
|
7363
7303
|
const fibers = /* @__PURE__ */ new Set();
|
|
7364
7304
|
const onExit = (exit) => {
|
|
@@ -7385,7 +7325,7 @@ const raceAllFirst$1 = (all, options) => withFiber$1((parent) => callback$2((res
|
|
|
7385
7325
|
return fiberInterruptAll(fibers);
|
|
7386
7326
|
}));
|
|
7387
7327
|
/** @internal */
|
|
7388
|
-
const raceFirst
|
|
7328
|
+
const raceFirst = /* @__PURE__ */ dual((args) => isEffect$1(args[1]), (self, that, options) => raceAllFirst([self, that], options));
|
|
7389
7329
|
/** @internal */
|
|
7390
7330
|
const flatMap$4 = /* @__PURE__ */ dual(2, (self, f) => {
|
|
7391
7331
|
const onSuccess = Object.create(OnSuccessProto);
|
|
@@ -7408,19 +7348,19 @@ const flatMapEager$1 = /* @__PURE__ */ dual(2, (self, f) => {
|
|
|
7408
7348
|
return flatMap$4(self, f);
|
|
7409
7349
|
});
|
|
7410
7350
|
/** @internal */
|
|
7411
|
-
const map$
|
|
7351
|
+
const map$4 = /* @__PURE__ */ dual(2, (self, f) => flatMap$4(self, (a) => succeed$6(internalCall(() => f(a)))));
|
|
7412
7352
|
/** @internal */
|
|
7413
|
-
const mapEager$1 = /* @__PURE__ */ dual(2, (self, f) => effectIsExit(self) ? exitMap(self, f) : map$
|
|
7353
|
+
const mapEager$1 = /* @__PURE__ */ dual(2, (self, f) => effectIsExit(self) ? exitMap(self, f) : map$4(self, f));
|
|
7414
7354
|
/** @internal */
|
|
7415
7355
|
const mapErrorEager$1 = /* @__PURE__ */ dual(2, (self, f) => effectIsExit(self) ? exitMapError(self, f) : mapError$2(self, f));
|
|
7416
7356
|
/** @internal */
|
|
7417
|
-
const mapBothEager$1 = /* @__PURE__ */ dual(2, (self, options) => effectIsExit(self) ? exitMapBoth(self, options) : mapBoth
|
|
7357
|
+
const mapBothEager$1 = /* @__PURE__ */ dual(2, (self, options) => effectIsExit(self) ? exitMapBoth(self, options) : mapBoth(self, options));
|
|
7418
7358
|
/** @internal */
|
|
7419
7359
|
const catchEager$1 = /* @__PURE__ */ dual(2, (self, f) => {
|
|
7420
7360
|
if (effectIsExit(self)) {
|
|
7421
7361
|
if (self._tag === "Success") return self;
|
|
7422
|
-
const error = findError$
|
|
7423
|
-
if (isFailure$
|
|
7362
|
+
const error = findError$1(self.cause);
|
|
7363
|
+
if (isFailure$1(error)) return self;
|
|
7424
7364
|
return f(error.success);
|
|
7425
7365
|
}
|
|
7426
7366
|
return catch_$1(self, f);
|
|
@@ -7432,7 +7372,7 @@ const exitIsSuccess = (self) => self._tag === "Success";
|
|
|
7432
7372
|
/** @internal */
|
|
7433
7373
|
const exitIsFailure = (self) => self._tag === "Failure";
|
|
7434
7374
|
/** @internal */
|
|
7435
|
-
const exitFilterCause = (self) => self._tag === "Failure" ? succeed$7(self.cause) : fail$
|
|
7375
|
+
const exitFilterCause = (self) => self._tag === "Failure" ? succeed$7(self.cause) : fail$8(self);
|
|
7436
7376
|
/** @internal */
|
|
7437
7377
|
const exitHasInterrupts = (self) => self._tag === "Failure" && hasInterrupts$2(self.cause);
|
|
7438
7378
|
/** @internal */
|
|
@@ -7442,15 +7382,15 @@ const exitMap = /* @__PURE__ */ dual(2, (self, f) => self._tag === "Success" ? e
|
|
|
7442
7382
|
/** @internal */
|
|
7443
7383
|
const exitMapError = /* @__PURE__ */ dual(2, (self, f) => {
|
|
7444
7384
|
if (self._tag === "Success") return self;
|
|
7445
|
-
const error = findError$
|
|
7446
|
-
if (isFailure$
|
|
7385
|
+
const error = findError$1(self.cause);
|
|
7386
|
+
if (isFailure$1(error)) return self;
|
|
7447
7387
|
return exitFail(f(error.success));
|
|
7448
7388
|
});
|
|
7449
7389
|
/** @internal */
|
|
7450
7390
|
const exitMapBoth = /* @__PURE__ */ dual(2, (self, options) => {
|
|
7451
7391
|
if (self._tag === "Success") return exitSucceed(options.onSuccess(self.value));
|
|
7452
|
-
const error = findError$
|
|
7453
|
-
if (isFailure$
|
|
7392
|
+
const error = findError$1(self.cause);
|
|
7393
|
+
if (isFailure$1(error)) return self;
|
|
7454
7394
|
return exitFail(options.onFailure(error.success));
|
|
7455
7395
|
});
|
|
7456
7396
|
/** @internal */
|
|
@@ -7464,7 +7404,7 @@ const exitAsVoidAll = (exits) => {
|
|
|
7464
7404
|
/** @internal */
|
|
7465
7405
|
const exitGetSuccess = (self) => exitIsSuccess(self) ? some(self.value) : none();
|
|
7466
7406
|
/** @internal */
|
|
7467
|
-
const service$1 = fromYieldable
|
|
7407
|
+
const service$1 = fromYieldable;
|
|
7468
7408
|
/** @internal */
|
|
7469
7409
|
const serviceOption$1 = (service) => withFiber$1((fiber) => succeed$6(getOption(fiber.services, service)));
|
|
7470
7410
|
/** @internal */
|
|
@@ -7473,16 +7413,16 @@ const updateServices$1 = /* @__PURE__ */ dual(2, (self, f) => withFiber$1((fiber
|
|
|
7473
7413
|
const nextServices = f(prev);
|
|
7474
7414
|
if (prev === nextServices) return self;
|
|
7475
7415
|
fiber.setServices(nextServices);
|
|
7476
|
-
return onExitPrimitive
|
|
7416
|
+
return onExitPrimitive(self, () => {
|
|
7477
7417
|
fiber.setServices(prev);
|
|
7478
7418
|
});
|
|
7479
7419
|
}));
|
|
7480
7420
|
/** @internal */
|
|
7481
|
-
const updateService
|
|
7421
|
+
const updateService = /* @__PURE__ */ dual(3, (self, service, f) => updateServices$1(self, (s) => {
|
|
7482
7422
|
const prev = getUnsafe(s, service);
|
|
7483
7423
|
const next = f(prev);
|
|
7484
7424
|
if (prev === next) return s;
|
|
7485
|
-
return add
|
|
7425
|
+
return add(s, service, next);
|
|
7486
7426
|
}));
|
|
7487
7427
|
/** @internal */
|
|
7488
7428
|
const services$1 = () => getServiceMap;
|
|
@@ -7501,15 +7441,15 @@ const provideService$1 = function() {
|
|
|
7501
7441
|
};
|
|
7502
7442
|
const provideServiceImpl = (self, service, implementation) => updateServices$1(self, (s) => {
|
|
7503
7443
|
if (s.mapUnsafe.get(service.key) === implementation) return s;
|
|
7504
|
-
return add
|
|
7444
|
+
return add(s, service, implementation);
|
|
7505
7445
|
});
|
|
7506
7446
|
/** @internal */
|
|
7507
|
-
const zipWith$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[1]), (self, that, f, options) => options?.concurrent ? map$
|
|
7508
|
-
const filterOrFail$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, predicate, orFailWith) => filterOrElse
|
|
7447
|
+
const zipWith$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[1]), (self, that, f, options) => options?.concurrent ? map$4(all$2([self, that], { concurrency: 2 }), ([a, a2]) => internalCall(() => f(a, a2))) : flatMap$4(self, (a) => map$4(that, (a2) => internalCall(() => f(a, a2)))));
|
|
7448
|
+
const filterOrFail$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, predicate, orFailWith) => filterOrElse(self, predicate, orFailWith ? (a) => fail$7(orFailWith(a)) : () => fail$7(new NoSuchElementError$1())));
|
|
7509
7449
|
/** @internal */
|
|
7510
7450
|
const when$1 = /* @__PURE__ */ dual(2, (self, condition) => flatMap$4(condition, (pass) => pass ? asSome$1(self) : succeedNone$1));
|
|
7511
7451
|
/** @internal */
|
|
7512
|
-
const forever$
|
|
7452
|
+
const forever$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, options) => whileLoop$1({
|
|
7513
7453
|
while: constTrue,
|
|
7514
7454
|
body: constant(options?.disableYield ? self : flatMap$4(self, (_) => yieldNow$1)),
|
|
7515
7455
|
step: constVoid
|
|
@@ -7529,66 +7469,64 @@ const OnFailureProto = /* @__PURE__ */ makePrimitiveProto({
|
|
|
7529
7469
|
}
|
|
7530
7470
|
});
|
|
7531
7471
|
/** @internal */
|
|
7532
|
-
const catchCauseFilter
|
|
7472
|
+
const catchCauseFilter = /* @__PURE__ */ dual(3, (self, filter, f) => catchCause$1(self, (cause) => {
|
|
7533
7473
|
const eb = filter(cause);
|
|
7534
|
-
return isFailure$
|
|
7474
|
+
return isFailure$1(eb) ? failCause$5(eb.failure) : internalCall(() => f(eb.success, cause));
|
|
7535
7475
|
}));
|
|
7536
7476
|
/** @internal */
|
|
7537
|
-
const catch_$1 = /* @__PURE__ */ dual(2, (self, f) => catchCauseFilter
|
|
7477
|
+
const catch_$1 = /* @__PURE__ */ dual(2, (self, f) => catchCauseFilter(self, findError$1, (e) => f(e)));
|
|
7538
7478
|
/** @internal */
|
|
7539
|
-
const catchDefect$1 = /* @__PURE__ */ dual(2, (self, f) => catchCauseFilter
|
|
7479
|
+
const catchDefect$1 = /* @__PURE__ */ dual(2, (self, f) => catchCauseFilter(self, findDefect, f));
|
|
7540
7480
|
/** @internal */
|
|
7541
7481
|
const tapCause$1 = /* @__PURE__ */ dual(2, (self, f) => catchCause$1(self, (cause) => andThen$1(internalCall(() => f(cause)), failCause$5(cause))));
|
|
7542
7482
|
/** @internal */
|
|
7543
|
-
const catchIf
|
|
7544
|
-
const error = findError$
|
|
7545
|
-
if (isFailure$
|
|
7483
|
+
const catchIf = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, predicate, f, orElse) => catchCause$1(self, (cause) => {
|
|
7484
|
+
const error = findError$1(cause);
|
|
7485
|
+
if (isFailure$1(error)) return failCause$5(error.failure);
|
|
7546
7486
|
if (!predicate(error.success)) return orElse ? internalCall(() => orElse(error.success)) : failCause$5(cause);
|
|
7547
7487
|
return internalCall(() => f(error.success));
|
|
7548
7488
|
}));
|
|
7549
7489
|
/** @internal */
|
|
7550
7490
|
const catchFilter$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, filter, f, orElse) => catchCause$1(self, (cause) => {
|
|
7551
|
-
const error = findError$
|
|
7552
|
-
if (isFailure$
|
|
7491
|
+
const error = findError$1(cause);
|
|
7492
|
+
if (isFailure$1(error)) return failCause$5(error.failure);
|
|
7553
7493
|
const result = filter(error.success);
|
|
7554
|
-
if (isFailure$
|
|
7494
|
+
if (isFailure$1(result)) return orElse ? internalCall(() => orElse(result.failure)) : failCause$5(cause);
|
|
7555
7495
|
return internalCall(() => f(result.success));
|
|
7556
7496
|
}));
|
|
7557
7497
|
/** @internal */
|
|
7558
7498
|
const catchTag$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, k, f, orElse) => {
|
|
7559
|
-
return catchIf
|
|
7499
|
+
return catchIf(self, Array.isArray(k) ? (e) => hasProperty(e, "_tag") && k.includes(e._tag) : isTagged(k), f, orElse);
|
|
7560
7500
|
});
|
|
7561
7501
|
/** @internal */
|
|
7562
7502
|
const catchTags$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, cases, orElse) => {
|
|
7563
7503
|
let keys;
|
|
7564
7504
|
return catchFilter$1(self, (e) => {
|
|
7565
7505
|
keys ??= Object.keys(cases);
|
|
7566
|
-
return hasProperty(e, "_tag") && isString
|
|
7506
|
+
return hasProperty(e, "_tag") && isString(e["_tag"]) && keys.includes(e["_tag"]) ? succeed$7(e) : fail$8(e);
|
|
7567
7507
|
}, (e) => internalCall(() => cases[e["_tag"]](e)), orElse);
|
|
7568
7508
|
});
|
|
7569
7509
|
/** @internal */
|
|
7570
|
-
const mapError$2 = /* @__PURE__ */ dual(2, (self, f) => catch_$1(self, (error) => failSync
|
|
7571
|
-
const mapBoth
|
|
7572
|
-
onFailure: (e) => failSync
|
|
7510
|
+
const mapError$2 = /* @__PURE__ */ dual(2, (self, f) => catch_$1(self, (error) => failSync(() => f(error))));
|
|
7511
|
+
const mapBoth = /* @__PURE__ */ dual(2, (self, options) => matchEffect$1(self, {
|
|
7512
|
+
onFailure: (e) => failSync(() => options.onFailure(e)),
|
|
7573
7513
|
onSuccess: (a) => sync$2(() => options.onSuccess(a))
|
|
7574
7514
|
}));
|
|
7575
7515
|
/** @internal */
|
|
7576
|
-
const orDie$1 = (self) => catch_$1(self, die$
|
|
7516
|
+
const orDie$1 = (self) => catch_$1(self, die$4);
|
|
7577
7517
|
/** @internal */
|
|
7578
7518
|
const orElseSucceed$1 = /* @__PURE__ */ dual(2, (self, f) => catch_$1(self, (_) => sync$2(f)));
|
|
7579
7519
|
/** @internal */
|
|
7580
|
-
const eventually$1 = (self) => catch_$1(self, (_) => flatMap$4(yieldNow$1, () => eventually$1(self)));
|
|
7581
|
-
/** @internal */
|
|
7582
7520
|
const ignore$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, options) => {
|
|
7583
|
-
if (!options?.log) return matchEffect$
|
|
7521
|
+
if (!options?.log) return matchEffect$1(self, {
|
|
7584
7522
|
onFailure: (_) => void_$3,
|
|
7585
7523
|
onSuccess: (_) => void_$3
|
|
7586
7524
|
});
|
|
7587
|
-
const logEffect = logWithLevel
|
|
7525
|
+
const logEffect = logWithLevel(options.log === true ? void 0 : options.log);
|
|
7588
7526
|
return matchCauseEffect$1(self, {
|
|
7589
7527
|
onFailure(cause) {
|
|
7590
|
-
const failure = findFail
|
|
7591
|
-
return isFailure$
|
|
7528
|
+
const failure = findFail(cause);
|
|
7529
|
+
return isFailure$1(failure) ? failCause$5(failure.failure) : logEffect(cause);
|
|
7592
7530
|
},
|
|
7593
7531
|
onSuccess: (_) => void_$3
|
|
7594
7532
|
});
|
|
@@ -7600,13 +7538,13 @@ const ignoreCause$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self,
|
|
|
7600
7538
|
onSuccess: (_) => void_$3
|
|
7601
7539
|
});
|
|
7602
7540
|
return matchCauseEffect$1(self, {
|
|
7603
|
-
onFailure: logWithLevel
|
|
7541
|
+
onFailure: logWithLevel(options.log === true ? void 0 : options.log),
|
|
7604
7542
|
onSuccess: (_) => void_$3
|
|
7605
7543
|
});
|
|
7606
7544
|
});
|
|
7607
7545
|
/** @internal */
|
|
7608
|
-
const result$1 = (self) => matchEager
|
|
7609
|
-
onFailure: fail$
|
|
7546
|
+
const result$1 = (self) => matchEager(self, {
|
|
7547
|
+
onFailure: fail$8,
|
|
7610
7548
|
onSuccess: succeed$7
|
|
7611
7549
|
});
|
|
7612
7550
|
/** @internal */
|
|
@@ -7625,27 +7563,27 @@ const OnSuccessAndFailureProto = /* @__PURE__ */ makePrimitiveProto({
|
|
|
7625
7563
|
}
|
|
7626
7564
|
});
|
|
7627
7565
|
/** @internal */
|
|
7628
|
-
const matchEffect$
|
|
7566
|
+
const matchEffect$1 = /* @__PURE__ */ dual(2, (self, options) => matchCauseEffect$1(self, {
|
|
7629
7567
|
onFailure: (cause) => {
|
|
7630
|
-
const fail = cause.reasons.find(isFailReason
|
|
7568
|
+
const fail = cause.reasons.find(isFailReason);
|
|
7631
7569
|
return fail ? internalCall(() => options.onFailure(fail.error)) : failCause$5(cause);
|
|
7632
7570
|
},
|
|
7633
7571
|
onSuccess: options.onSuccess
|
|
7634
7572
|
}));
|
|
7635
7573
|
/** @internal */
|
|
7636
|
-
const match
|
|
7574
|
+
const match = /* @__PURE__ */ dual(2, (self, options) => matchEffect$1(self, {
|
|
7637
7575
|
onFailure: (error) => sync$2(() => options.onFailure(error)),
|
|
7638
7576
|
onSuccess: (value) => sync$2(() => options.onSuccess(value))
|
|
7639
7577
|
}));
|
|
7640
7578
|
/** @internal */
|
|
7641
|
-
const matchEager
|
|
7579
|
+
const matchEager = /* @__PURE__ */ dual(2, (self, options) => {
|
|
7642
7580
|
if (effectIsExit(self)) {
|
|
7643
7581
|
if (self._tag === "Success") return exitSucceed(options.onSuccess(self.value));
|
|
7644
|
-
const error = findError$
|
|
7645
|
-
if (isFailure$
|
|
7582
|
+
const error = findError$1(self.cause);
|
|
7583
|
+
if (isFailure$1(error)) return self;
|
|
7646
7584
|
return exitSucceed(options.onFailure(error.success));
|
|
7647
7585
|
}
|
|
7648
|
-
return match
|
|
7586
|
+
return match(self, options);
|
|
7649
7587
|
});
|
|
7650
7588
|
/** @internal */
|
|
7651
7589
|
const exit$1 = (self) => effectIsExit(self) ? exitSucceed(self) : exitPrimitive(self);
|
|
@@ -7663,9 +7601,9 @@ const exitPrimitive = /* @__PURE__ */ makePrimitive({
|
|
|
7663
7601
|
}
|
|
7664
7602
|
});
|
|
7665
7603
|
/** @internal */
|
|
7666
|
-
const timeoutOrElse$1 = /* @__PURE__ */ dual(2, (self, options) => raceFirst
|
|
7604
|
+
const timeoutOrElse$1 = /* @__PURE__ */ dual(2, (self, options) => raceFirst(self, flatMap$4(sleep$1(options.duration), options.onTimeout)));
|
|
7667
7605
|
/** @internal */
|
|
7668
|
-
const timeoutOption$1 = /* @__PURE__ */ dual(2, (self, duration) => raceFirst
|
|
7606
|
+
const timeoutOption$1 = /* @__PURE__ */ dual(2, (self, duration) => raceFirst(asSome$1(self), as$1(sleep$1(duration), none())));
|
|
7669
7607
|
/** @internal */
|
|
7670
7608
|
const ScopeTypeId = "~effect/Scope";
|
|
7671
7609
|
/** @internal */
|
|
@@ -7756,8 +7694,8 @@ const provideScope = /* @__PURE__ */ provideService$1(scopeTag);
|
|
|
7756
7694
|
const scoped$1 = (self) => withFiber$1((fiber) => {
|
|
7757
7695
|
const prev = fiber.services;
|
|
7758
7696
|
const scope = scopeMakeUnsafe();
|
|
7759
|
-
fiber.setServices(add
|
|
7760
|
-
return onExitPrimitive
|
|
7697
|
+
fiber.setServices(add(fiber.services, scopeTag, scope));
|
|
7698
|
+
return onExitPrimitive(self, (exit) => {
|
|
7761
7699
|
fiber.setServices(prev);
|
|
7762
7700
|
return scopeCloseUnsafe(scope, exit);
|
|
7763
7701
|
});
|
|
@@ -7772,7 +7710,7 @@ const acquireRelease$1 = (acquire, release) => uninterruptible$1(flatMap$4(scope
|
|
|
7772
7710
|
/** @internal */
|
|
7773
7711
|
const addFinalizer$2 = (finalizer) => flatMap$4(scope$1, (scope) => servicesWith$1((services) => scopeAddFinalizerExit(scope, (exit) => provideServices$1(finalizer(exit), services))));
|
|
7774
7712
|
/** @internal */
|
|
7775
|
-
const onExitPrimitive
|
|
7713
|
+
const onExitPrimitive = /* @__PURE__ */ makePrimitive({
|
|
7776
7714
|
op: "OnExit",
|
|
7777
7715
|
single: false,
|
|
7778
7716
|
[evaluate](fiber) {
|
|
@@ -7797,28 +7735,28 @@ const onExitPrimitive$1 = /* @__PURE__ */ makePrimitive({
|
|
|
7797
7735
|
}
|
|
7798
7736
|
});
|
|
7799
7737
|
/** @internal */
|
|
7800
|
-
const onExit$3 = /* @__PURE__ */ dual(2, onExitPrimitive
|
|
7738
|
+
const onExit$3 = /* @__PURE__ */ dual(2, onExitPrimitive);
|
|
7801
7739
|
/** @internal */
|
|
7802
7740
|
const ensuring$1 = /* @__PURE__ */ dual(2, (self, finalizer) => onExit$3(self, (_) => finalizer));
|
|
7803
7741
|
/** @internal */
|
|
7804
|
-
const onExitFilter
|
|
7742
|
+
const onExitFilter = /* @__PURE__ */ dual(3, (self, filter, f) => onExit$3(self, (exit) => {
|
|
7805
7743
|
const b = filter(exit);
|
|
7806
|
-
return isFailure$
|
|
7744
|
+
return isFailure$1(b) ? void_$3 : f(b.success, exit);
|
|
7807
7745
|
}));
|
|
7808
7746
|
/** @internal */
|
|
7809
|
-
const onError$1 = /* @__PURE__ */ dual(2, (self, f) => onExitFilter
|
|
7747
|
+
const onError$1 = /* @__PURE__ */ dual(2, (self, f) => onExitFilter(self, exitFilterCause, f));
|
|
7810
7748
|
/** @internal */
|
|
7811
|
-
const onErrorFilter
|
|
7749
|
+
const onErrorFilter = /* @__PURE__ */ dual(3, (self, filter, f) => onExit$3(self, (exit) => {
|
|
7812
7750
|
if (exit._tag !== "Failure") return void_$3;
|
|
7813
7751
|
const result = filter(exit.cause);
|
|
7814
|
-
return isFailure$
|
|
7752
|
+
return isFailure$1(result) ? void_$3 : f(result.success, exit.cause);
|
|
7815
7753
|
}));
|
|
7816
7754
|
/** @internal */
|
|
7817
|
-
const onInterrupt$1 = /* @__PURE__ */ dual(2, (self, finalizer) => onErrorFilter
|
|
7755
|
+
const onInterrupt$1 = /* @__PURE__ */ dual(2, (self, finalizer) => onErrorFilter(causeFilterInterruptors, finalizer)(self));
|
|
7818
7756
|
/** @internal */
|
|
7819
|
-
const acquireUseRelease$1 = (acquire, use, release) => uninterruptibleMask$1((restore) => flatMap$4(acquire, (a) => onExitPrimitive
|
|
7757
|
+
const acquireUseRelease$1 = (acquire, use, release) => uninterruptibleMask$1((restore) => flatMap$4(acquire, (a) => onExitPrimitive(restore(use(a)), (exit) => release(a, exit), true)));
|
|
7820
7758
|
/** @internal */
|
|
7821
|
-
const cachedInvalidateWithTTL
|
|
7759
|
+
const cachedInvalidateWithTTL = /* @__PURE__ */ dual(2, (self, ttl) => sync$2(() => {
|
|
7822
7760
|
const ttlMillis = toMillis(fromInputUnsafe(ttl));
|
|
7823
7761
|
const isFinite = Number.isFinite(ttlMillis);
|
|
7824
7762
|
const latch = makeLatchUnsafe(false);
|
|
@@ -7845,11 +7783,11 @@ const cachedInvalidateWithTTL$1 = /* @__PURE__ */ dual(2, (self, ttl) => sync$2(
|
|
|
7845
7783
|
})];
|
|
7846
7784
|
}));
|
|
7847
7785
|
/** @internal */
|
|
7848
|
-
const cachedWithTTL
|
|
7786
|
+
const cachedWithTTL = /* @__PURE__ */ dual(2, (self, timeToLive) => map$4(cachedInvalidateWithTTL(self, timeToLive), (tuple) => tuple[0]));
|
|
7849
7787
|
/** @internal */
|
|
7850
|
-
const cached$1 = (self) => cachedWithTTL
|
|
7788
|
+
const cached$1 = (self) => cachedWithTTL(self, infinity);
|
|
7851
7789
|
/** @internal */
|
|
7852
|
-
const interrupt$
|
|
7790
|
+
const interrupt$2 = /* @__PURE__ */ withFiber$1((fiber) => failCause$5(causeInterrupt(fiber.id)));
|
|
7853
7791
|
/** @internal */
|
|
7854
7792
|
const uninterruptible$1 = (self) => withFiber$1((fiber) => {
|
|
7855
7793
|
if (!fiber.interruptible) return self;
|
|
@@ -7867,7 +7805,7 @@ const setInterruptible = /* @__PURE__ */ makePrimitive({
|
|
|
7867
7805
|
const setInterruptibleTrue = /* @__PURE__ */ setInterruptible(true);
|
|
7868
7806
|
const setInterruptibleFalse = /* @__PURE__ */ setInterruptible(false);
|
|
7869
7807
|
/** @internal */
|
|
7870
|
-
const interruptible
|
|
7808
|
+
const interruptible = (self) => withFiber$1((fiber) => {
|
|
7871
7809
|
if (fiber.interruptible) return self;
|
|
7872
7810
|
fiber.interruptible = true;
|
|
7873
7811
|
fiber._stack.push(setInterruptibleFalse);
|
|
@@ -7879,7 +7817,7 @@ const uninterruptibleMask$1 = (f) => withFiber$1((fiber) => {
|
|
|
7879
7817
|
if (!fiber.interruptible) return f(identity);
|
|
7880
7818
|
fiber.interruptible = false;
|
|
7881
7819
|
fiber._stack.push(setInterruptibleTrue);
|
|
7882
|
-
return f(interruptible
|
|
7820
|
+
return f(interruptible);
|
|
7883
7821
|
});
|
|
7884
7822
|
/** @internal */
|
|
7885
7823
|
const all$2 = (arg, options) => {
|
|
@@ -7887,7 +7825,7 @@ const all$2 = (arg, options) => {
|
|
|
7887
7825
|
else if (options?.discard) return options.mode === "result" ? forEach$2(Object.values(arg), result$1, options) : forEach$2(Object.values(arg), identity, options);
|
|
7888
7826
|
return suspend$4(() => {
|
|
7889
7827
|
const out = {};
|
|
7890
|
-
return as$1(forEach$2(Object.entries(arg), ([key, effect]) => map$
|
|
7828
|
+
return as$1(forEach$2(Object.entries(arg), ([key, effect]) => map$4(options?.mode === "result" ? result$1(effect) : effect, (value) => {
|
|
7891
7829
|
out[key] = value;
|
|
7892
7830
|
}), {
|
|
7893
7831
|
discard: true,
|
|
@@ -7895,18 +7833,6 @@ const all$2 = (arg, options) => {
|
|
|
7895
7833
|
}), out);
|
|
7896
7834
|
});
|
|
7897
7835
|
};
|
|
7898
|
-
const findFirstLoop = (iterator, index, predicate, value) => flatMap$4(predicate(value, index), (keep) => {
|
|
7899
|
-
if (keep) return succeed$6(some(value));
|
|
7900
|
-
const next = iterator.next();
|
|
7901
|
-
if (!next.done) return findFirstLoop(iterator, index + 1, predicate, next.value);
|
|
7902
|
-
return succeed$6(none());
|
|
7903
|
-
});
|
|
7904
|
-
const findFirstFilterLoop = (iterator, index, filter, value) => flatMap$4(filter(value, index), (result) => {
|
|
7905
|
-
if (isSuccess$3(result)) return succeed$6(some(result.success));
|
|
7906
|
-
const next = iterator.next();
|
|
7907
|
-
if (!next.done) return findFirstFilterLoop(iterator, index + 1, filter, next.value);
|
|
7908
|
-
return succeed$6(none());
|
|
7909
|
-
});
|
|
7910
7836
|
/** @internal */
|
|
7911
7837
|
const whileLoop$1 = /* @__PURE__ */ makePrimitive({
|
|
7912
7838
|
op: "While",
|
|
@@ -8004,7 +7930,7 @@ const forEachSequential = (iterable, f, options) => suspend$4(() => {
|
|
|
8004
7930
|
}
|
|
8005
7931
|
}), out);
|
|
8006
7932
|
});
|
|
8007
|
-
const filterOrElse
|
|
7933
|
+
const filterOrElse = /* @__PURE__ */ dual(3, (self, predicate, orElse) => flatMap$4(self, (a) => predicate(a) ? succeed$6(a) : orElse(a)));
|
|
8008
7934
|
/** @internal */
|
|
8009
7935
|
const forkChild$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, options) => withFiber$1((fiber) => {
|
|
8010
7936
|
interruptChildrenPatch();
|
|
@@ -8040,7 +7966,7 @@ const forkScoped$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self,
|
|
|
8040
7966
|
/** @internal */
|
|
8041
7967
|
const runForkWith$1 = (services) => (effect, options) => {
|
|
8042
7968
|
const scheduler = options?.scheduler || !services.mapUnsafe.has(Scheduler.key) && new MixedScheduler();
|
|
8043
|
-
const fiber = new FiberImpl(scheduler ? add
|
|
7969
|
+
const fiber = new FiberImpl(scheduler ? add(services, Scheduler, scheduler) : services, options?.uninterruptible !== true);
|
|
8044
7970
|
fiber.evaluate(effect);
|
|
8045
7971
|
if (fiber._exit) return fiber;
|
|
8046
7972
|
if (options?.signal) if (options.signal.aborted) fiber.interruptUnsafe();
|
|
@@ -8064,9 +7990,9 @@ const fiberRunIn = /* @__PURE__ */ dual(2, (self, scope) => {
|
|
|
8064
7990
|
return self;
|
|
8065
7991
|
});
|
|
8066
7992
|
/** @internal */
|
|
8067
|
-
const runFork$1 = /* @__PURE__ */ runForkWith$1(/* @__PURE__ */ empty$
|
|
7993
|
+
const runFork$1 = /* @__PURE__ */ runForkWith$1(/* @__PURE__ */ empty$4());
|
|
8068
7994
|
/** @internal */
|
|
8069
|
-
const runPromiseExitWith
|
|
7995
|
+
const runPromiseExitWith = (services) => {
|
|
8070
7996
|
const runFork = runForkWith$1(services);
|
|
8071
7997
|
return (effect, options) => {
|
|
8072
7998
|
const fiber = runFork(effect, options);
|
|
@@ -8077,16 +8003,16 @@ const runPromiseExitWith$1 = (services) => {
|
|
|
8077
8003
|
};
|
|
8078
8004
|
/** @internal */
|
|
8079
8005
|
const runPromiseWith$1 = (services) => {
|
|
8080
|
-
const runPromiseExit = runPromiseExitWith
|
|
8006
|
+
const runPromiseExit = runPromiseExitWith(services);
|
|
8081
8007
|
return (effect, options) => runPromiseExit(effect, options).then((exit) => {
|
|
8082
8008
|
if (exit._tag === "Failure") throw causeSquash(exit.cause);
|
|
8083
8009
|
return exit.value;
|
|
8084
8010
|
});
|
|
8085
8011
|
};
|
|
8086
8012
|
/** @internal */
|
|
8087
|
-
const runPromise$1 = /* @__PURE__ */ runPromiseWith$1(/* @__PURE__ */ empty$
|
|
8013
|
+
const runPromise$1 = /* @__PURE__ */ runPromiseWith$1(/* @__PURE__ */ empty$4());
|
|
8088
8014
|
/** @internal */
|
|
8089
|
-
const runSyncExitWith
|
|
8015
|
+
const runSyncExitWith = (services) => {
|
|
8090
8016
|
const runFork = runForkWith$1(services);
|
|
8091
8017
|
return (effect) => {
|
|
8092
8018
|
if (effectIsExit(effect)) return effect;
|
|
@@ -8097,10 +8023,10 @@ const runSyncExitWith$1 = (services) => {
|
|
|
8097
8023
|
};
|
|
8098
8024
|
};
|
|
8099
8025
|
/** @internal */
|
|
8100
|
-
const runSyncExit$1 = /* @__PURE__ */ runSyncExitWith
|
|
8026
|
+
const runSyncExit$1 = /* @__PURE__ */ runSyncExitWith(/* @__PURE__ */ empty$4());
|
|
8101
8027
|
/** @internal */
|
|
8102
|
-
const runSyncWith
|
|
8103
|
-
const runSyncExit = runSyncExitWith
|
|
8028
|
+
const runSyncWith = (services) => {
|
|
8029
|
+
const runSyncExit = runSyncExitWith(services);
|
|
8104
8030
|
return (effect) => {
|
|
8105
8031
|
const exit = runSyncExit(effect);
|
|
8106
8032
|
if (exit._tag === "Failure") throw causeSquash(exit.cause);
|
|
@@ -8108,7 +8034,7 @@ const runSyncWith$1 = (services) => {
|
|
|
8108
8034
|
};
|
|
8109
8035
|
};
|
|
8110
8036
|
/** @internal */
|
|
8111
|
-
const runSync$1 = /* @__PURE__ */ runSyncWith
|
|
8037
|
+
const runSync$1 = /* @__PURE__ */ runSyncWith(/* @__PURE__ */ empty$4());
|
|
8112
8038
|
/** @internal */
|
|
8113
8039
|
var Semaphore = class {
|
|
8114
8040
|
waiters = /* @__PURE__ */ new Set();
|
|
@@ -8154,14 +8080,14 @@ var Semaphore = class {
|
|
|
8154
8080
|
updateTaken(f) {
|
|
8155
8081
|
return withFiber$1((fiber) => this.updateTakenUnsafe(fiber, f));
|
|
8156
8082
|
}
|
|
8157
|
-
resize = (permits) => asVoid$
|
|
8083
|
+
resize = (permits) => asVoid$1(withFiber$1((fiber) => {
|
|
8158
8084
|
this.permits = permits;
|
|
8159
8085
|
if (this.free < 0) return void_$3;
|
|
8160
8086
|
return this.updateTakenUnsafe(fiber, (taken) => taken);
|
|
8161
8087
|
}));
|
|
8162
8088
|
release = (n) => this.updateTaken((taken) => taken - n);
|
|
8163
8089
|
releaseAll = /* @__PURE__ */ this.updateTaken((_) => 0);
|
|
8164
|
-
withPermits = (n) => (self) => uninterruptibleMask$1((restore) => flatMap$4(restore(this.take(n)), (permits) => onExitPrimitive
|
|
8090
|
+
withPermits = (n) => (self) => uninterruptibleMask$1((restore) => flatMap$4(restore(this.take(n)), (permits) => onExitPrimitive(restore(self), () => this.release(permits), true)));
|
|
8165
8091
|
withPermit = /* @__PURE__ */ this.withPermits(1);
|
|
8166
8092
|
withPermitsIfAvailable = (n) => (self) => uninterruptibleMask$1((restore) => suspend$4(() => {
|
|
8167
8093
|
if (this.free < n) return succeedNone$1;
|
|
@@ -8259,7 +8185,7 @@ const makeSpanUnsafe = (fiber, name, options) => {
|
|
|
8259
8185
|
if (disablePropagation) span = noopSpan({
|
|
8260
8186
|
name,
|
|
8261
8187
|
parent,
|
|
8262
|
-
annotations: add
|
|
8188
|
+
annotations: add(options?.annotations ?? empty$4(), DisablePropagation, true)
|
|
8263
8189
|
});
|
|
8264
8190
|
else {
|
|
8265
8191
|
const tracer = fiber.getRef(Tracer);
|
|
@@ -8272,7 +8198,7 @@ const makeSpanUnsafe = (fiber, name, options) => {
|
|
|
8272
8198
|
span = tracer.span({
|
|
8273
8199
|
name,
|
|
8274
8200
|
parent,
|
|
8275
|
-
annotations: options?.annotations ?? empty$
|
|
8201
|
+
annotations: options?.annotations ?? empty$4(),
|
|
8276
8202
|
links,
|
|
8277
8203
|
startTime: timingEnabled ? clock.currentTimeNanosUnsafe() : 0n,
|
|
8278
8204
|
kind: options?.kind ?? "internal",
|
|
@@ -8294,7 +8220,7 @@ const makeSpanScoped$1 = (name, options) => uninterruptible$1(withFiber$1((fiber
|
|
|
8294
8220
|
}));
|
|
8295
8221
|
const provideSpanStackFrame = (name, stack) => {
|
|
8296
8222
|
stack = typeof stack === "function" ? stack : constUndefined;
|
|
8297
|
-
return updateService
|
|
8223
|
+
return updateService(CurrentStackFrame, (parent) => ({
|
|
8298
8224
|
name,
|
|
8299
8225
|
stack,
|
|
8300
8226
|
parent
|
|
@@ -8381,17 +8307,17 @@ const processOrPerformanceNow = /* @__PURE__ */ function() {
|
|
|
8381
8307
|
return () => origin + processHrtime.bigint();
|
|
8382
8308
|
}();
|
|
8383
8309
|
/** @internal */
|
|
8384
|
-
const clockWith
|
|
8310
|
+
const clockWith = (f) => withFiber$1((fiber) => f(fiber.getRef(ClockRef)));
|
|
8385
8311
|
/** @internal */
|
|
8386
|
-
const sleep$1 = (duration) => clockWith
|
|
8312
|
+
const sleep$1 = (duration) => clockWith((clock) => clock.sleep(fromInputUnsafe(duration)));
|
|
8387
8313
|
TaggedError$1("TimeoutError");
|
|
8388
8314
|
TaggedError$1("IllegalArgumentError");
|
|
8389
8315
|
TaggedError$1("ExceededCapacityError");
|
|
8390
8316
|
/** @internal */
|
|
8391
|
-
const UnknownErrorTypeId
|
|
8317
|
+
const UnknownErrorTypeId = "~effect/Cause/UnknownError";
|
|
8392
8318
|
/** @internal */
|
|
8393
8319
|
var UnknownError$1 = class extends TaggedError$1("UnknownError") {
|
|
8394
|
-
[UnknownErrorTypeId
|
|
8320
|
+
[UnknownErrorTypeId] = UnknownErrorTypeId;
|
|
8395
8321
|
constructor(cause, message) {
|
|
8396
8322
|
super({
|
|
8397
8323
|
message,
|
|
@@ -8415,7 +8341,7 @@ const logLevelToOrder = (level) => {
|
|
|
8415
8341
|
}
|
|
8416
8342
|
};
|
|
8417
8343
|
/** @internal */
|
|
8418
|
-
const isLogLevelGreaterThan = /* @__PURE__ */ isGreaterThan$
|
|
8344
|
+
const isLogLevelGreaterThan = /* @__PURE__ */ isGreaterThan$1(/* @__PURE__ */ mapInput(Number$5, logLevelToOrder));
|
|
8419
8345
|
/** @internal */
|
|
8420
8346
|
const CurrentLoggers = /* @__PURE__ */ Reference("effect/Loggers/CurrentLoggers", { defaultValue: () => new Set([defaultLogger, tracerLogger]) });
|
|
8421
8347
|
/** @internal */
|
|
@@ -8451,20 +8377,11 @@ const formatLogSpan = (self, now) => {
|
|
|
8451
8377
|
return `${formatLabel(self[0])}=${now - self[1]}ms`;
|
|
8452
8378
|
};
|
|
8453
8379
|
/** @internal */
|
|
8454
|
-
const
|
|
8455
|
-
switch (typeof u) {
|
|
8456
|
-
case "bigint":
|
|
8457
|
-
case "function":
|
|
8458
|
-
case "symbol": return String(u);
|
|
8459
|
-
default: return toJson(u);
|
|
8460
|
-
}
|
|
8461
|
-
};
|
|
8462
|
-
/** @internal */
|
|
8463
|
-
const logWithLevel$1 = (level) => (...message) => {
|
|
8380
|
+
const logWithLevel = (level) => (...message) => {
|
|
8464
8381
|
let cause = void 0;
|
|
8465
8382
|
for (let i = 0, len = message.length; i < len; i++) {
|
|
8466
8383
|
const msg = message[i];
|
|
8467
|
-
if (isCause
|
|
8384
|
+
if (isCause(msg)) {
|
|
8468
8385
|
if (cause) message.splice(i, 1);
|
|
8469
8386
|
else message = message.slice(0, i).concat(message.slice(i + 1));
|
|
8470
8387
|
cause = cause ? causeFromReasons(cause.reasons.concat(msg.reasons)) : msg;
|
|
@@ -8490,12 +8407,6 @@ const logWithLevel$1 = (level) => (...message) => {
|
|
|
8490
8407
|
return void_$3;
|
|
8491
8408
|
});
|
|
8492
8409
|
};
|
|
8493
|
-
const withColor = (text, ...colors) => {
|
|
8494
|
-
let out = "";
|
|
8495
|
-
for (let i = 0; i < colors.length; i++) out += `\x1b[${colors[i]}m`;
|
|
8496
|
-
return out + text + "\x1B[0m";
|
|
8497
|
-
};
|
|
8498
|
-
const withColorNoop = (text, ..._colors) => text;
|
|
8499
8410
|
const colors = {
|
|
8500
8411
|
bold: "1",
|
|
8501
8412
|
red: "31",
|
|
@@ -8508,108 +8419,11 @@ const colors = {
|
|
|
8508
8419
|
black: "30",
|
|
8509
8420
|
bgBrightRed: "101"
|
|
8510
8421
|
};
|
|
8511
|
-
|
|
8512
|
-
None: [],
|
|
8513
|
-
All: [],
|
|
8514
|
-
Trace: [colors.gray],
|
|
8515
|
-
Debug: [colors.blue],
|
|
8516
|
-
Info: [colors.green],
|
|
8517
|
-
Warn: [colors.yellow],
|
|
8518
|
-
Error: [colors.red],
|
|
8519
|
-
Fatal: [colors.bgBrightRed, colors.black]
|
|
8520
|
-
};
|
|
8521
|
-
const logLevelStyle = {
|
|
8522
|
-
None: "",
|
|
8523
|
-
All: "",
|
|
8524
|
-
Trace: "color:gray",
|
|
8525
|
-
Debug: "color:blue",
|
|
8526
|
-
Info: "color:green",
|
|
8527
|
-
Warn: "color:orange",
|
|
8528
|
-
Error: "color:red",
|
|
8529
|
-
Fatal: "background-color:red;color:white"
|
|
8530
|
-
};
|
|
8422
|
+
colors.gray, colors.blue, colors.green, colors.yellow, colors.red, colors.bgBrightRed, colors.black;
|
|
8531
8423
|
const defaultDateFormat = (date) => `${date.getHours().toString().padStart(2, "0")}:${date.getMinutes().toString().padStart(2, "0")}:${date.getSeconds().toString().padStart(2, "0")}.${date.getMilliseconds().toString().padStart(3, "0")}`;
|
|
8532
8424
|
const hasProcessStdout = typeof process === "object" && process !== null && typeof process.stdout === "object" && process.stdout !== null;
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
/** @internal */
|
|
8536
|
-
const consolePretty = (options) => {
|
|
8537
|
-
const mode_ = options?.mode ?? "auto";
|
|
8538
|
-
const isBrowser = (mode_ === "auto" ? hasProcessStdoutOrDeno ? "tty" : "browser" : mode_) === "browser";
|
|
8539
|
-
const showColors = typeof options?.colors === "boolean" ? options.colors : processStdoutIsTTY || isBrowser;
|
|
8540
|
-
const formatDate = options?.formatDate ?? defaultDateFormat;
|
|
8541
|
-
return isBrowser ? prettyLoggerBrowser({
|
|
8542
|
-
colors: showColors,
|
|
8543
|
-
formatDate
|
|
8544
|
-
}) : prettyLoggerTty({
|
|
8545
|
-
colors: showColors,
|
|
8546
|
-
formatDate
|
|
8547
|
-
});
|
|
8548
|
-
};
|
|
8549
|
-
const prettyLoggerTty = (options) => {
|
|
8550
|
-
const processIsBun = typeof process === "object" && "isBun" in process && process.isBun === true;
|
|
8551
|
-
const color = options.colors && processStdoutIsTTY ? withColor : withColorNoop;
|
|
8552
|
-
return loggerMake(({ cause, date, fiber, logLevel, message: message_ }) => {
|
|
8553
|
-
const console = fiber.getRef(ConsoleRef);
|
|
8554
|
-
const log = fiber.getRef(LogToStderr) ? console.error : console.log;
|
|
8555
|
-
const message = Array.isArray(message_) ? message_.slice() : [message_];
|
|
8556
|
-
let firstLine = color(`[${options.formatDate(date)}]`, colors.white) + ` ${color(logLevel.toUpperCase(), ...logLevelColors[logLevel])} (#${fiber.id})`;
|
|
8557
|
-
const now = date.getTime();
|
|
8558
|
-
const spans = fiber.getRef(CurrentLogSpans);
|
|
8559
|
-
for (const span of spans) firstLine += " " + formatLogSpan(span, now);
|
|
8560
|
-
firstLine += ":";
|
|
8561
|
-
let messageIndex = 0;
|
|
8562
|
-
if (message.length > 0) {
|
|
8563
|
-
const firstMaybeString = structuredMessage(message[0]);
|
|
8564
|
-
if (typeof firstMaybeString === "string") {
|
|
8565
|
-
firstLine += " " + color(firstMaybeString, colors.bold, colors.cyan);
|
|
8566
|
-
messageIndex++;
|
|
8567
|
-
}
|
|
8568
|
-
}
|
|
8569
|
-
log(firstLine);
|
|
8570
|
-
if (!processIsBun) console.group();
|
|
8571
|
-
if (cause.reasons.length > 0) log(causePretty(cause));
|
|
8572
|
-
if (messageIndex < message.length) for (; messageIndex < message.length; messageIndex++) log(redact(message[messageIndex]));
|
|
8573
|
-
const annotations = fiber.getRef(CurrentLogAnnotations);
|
|
8574
|
-
for (const [key, value] of Object.entries(annotations)) log(color(`${key}:`, colors.bold, colors.white), redact(value));
|
|
8575
|
-
if (!processIsBun) console.groupEnd();
|
|
8576
|
-
});
|
|
8577
|
-
};
|
|
8578
|
-
const prettyLoggerBrowser = (options) => {
|
|
8579
|
-
const color = options.colors ? "%c" : "";
|
|
8580
|
-
return loggerMake(({ cause, date, fiber, logLevel, message: message_ }) => {
|
|
8581
|
-
const console = fiber.getRef(ConsoleRef);
|
|
8582
|
-
const message = Array.isArray(message_) ? message_.slice() : [message_];
|
|
8583
|
-
let firstLine = `${color}[${options.formatDate(date)}]`;
|
|
8584
|
-
const firstParams = [];
|
|
8585
|
-
if (options.colors) firstParams.push("color:gray");
|
|
8586
|
-
firstLine += ` ${color}${logLevel.toUpperCase()}${color} (#${fiber.id})`;
|
|
8587
|
-
if (options.colors) firstParams.push(logLevelStyle[logLevel], "");
|
|
8588
|
-
const now = date.getTime();
|
|
8589
|
-
const spans = fiber.getRef(CurrentLogSpans);
|
|
8590
|
-
for (const span of spans) firstLine += " " + formatLogSpan(span, now);
|
|
8591
|
-
firstLine += ":";
|
|
8592
|
-
let messageIndex = 0;
|
|
8593
|
-
if (message.length > 0) {
|
|
8594
|
-
const firstMaybeString = structuredMessage(message[0]);
|
|
8595
|
-
if (typeof firstMaybeString === "string") {
|
|
8596
|
-
firstLine += ` ${color}${firstMaybeString}`;
|
|
8597
|
-
if (options.colors) firstParams.push("color:deepskyblue");
|
|
8598
|
-
messageIndex++;
|
|
8599
|
-
}
|
|
8600
|
-
}
|
|
8601
|
-
console.groupCollapsed(firstLine, ...firstParams);
|
|
8602
|
-
if (cause.reasons.length > 0) console.error(causePretty(cause));
|
|
8603
|
-
if (messageIndex < message.length) for (; messageIndex < message.length; messageIndex++) console.log(redact(message[messageIndex]));
|
|
8604
|
-
const annotations = fiber.getRef(CurrentLogAnnotations);
|
|
8605
|
-
for (const [key, value] of Object.entries(annotations)) {
|
|
8606
|
-
const redacted = redact(value);
|
|
8607
|
-
if (options.colors) console.log(`%c${key}:`, "color:gray", redacted);
|
|
8608
|
-
else console.log(`${key}:`, redacted);
|
|
8609
|
-
}
|
|
8610
|
-
console.groupEnd();
|
|
8611
|
-
});
|
|
8612
|
-
};
|
|
8425
|
+
hasProcessStdout && process.stdout.isTTY;
|
|
8426
|
+
hasProcessStdout || "Deno" in globalThis;
|
|
8613
8427
|
/** @internal */
|
|
8614
8428
|
const defaultLogger = /* @__PURE__ */ loggerMake(({ cause, date, fiber, logLevel, message }) => {
|
|
8615
8429
|
const message_ = Array.isArray(message) ? message.slice() : [message];
|
|
@@ -8640,6 +8454,8 @@ const tracerLogger = /* @__PURE__ */ loggerMake(({ cause, fiber, logLevel, messa
|
|
|
8640
8454
|
function interruptChildrenPatch() {
|
|
8641
8455
|
fiberMiddleware.interruptChildren ??= fiberInterruptChildren;
|
|
8642
8456
|
}
|
|
8457
|
+
//#endregion
|
|
8458
|
+
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Cause.js
|
|
8643
8459
|
/**
|
|
8644
8460
|
* Creates a {@link Cause} containing a single {@link Fail} reason with the
|
|
8645
8461
|
* given typed error.
|
|
@@ -8660,7 +8476,7 @@ function interruptChildrenPatch() {
|
|
|
8660
8476
|
* @category constructors
|
|
8661
8477
|
* @since 2.0.0
|
|
8662
8478
|
*/
|
|
8663
|
-
const fail$
|
|
8479
|
+
const fail$6 = causeFail;
|
|
8664
8480
|
/**
|
|
8665
8481
|
* Creates a {@link Cause} containing a single {@link Die} reason with the
|
|
8666
8482
|
* given defect.
|
|
@@ -8681,7 +8497,7 @@ const fail$7 = causeFail;
|
|
|
8681
8497
|
* @category constructors
|
|
8682
8498
|
* @since 2.0.0
|
|
8683
8499
|
*/
|
|
8684
|
-
const die$
|
|
8500
|
+
const die$3 = causeDie;
|
|
8685
8501
|
/**
|
|
8686
8502
|
* Returns `true` if every reason in the cause is an {@link Interrupt} (and
|
|
8687
8503
|
* there is at least one reason).
|
|
@@ -8758,7 +8574,7 @@ const squash = causeSquash;
|
|
|
8758
8574
|
* @category filters
|
|
8759
8575
|
* @since 4.0.0
|
|
8760
8576
|
*/
|
|
8761
|
-
const findError
|
|
8577
|
+
const findError = findError$1;
|
|
8762
8578
|
/**
|
|
8763
8579
|
* Returns `true` if the cause contains at least one {@link Interrupt} reason.
|
|
8764
8580
|
*
|
|
@@ -8886,6 +8702,8 @@ const done$1 = done$2;
|
|
|
8886
8702
|
const UnknownError = UnknownError$1;
|
|
8887
8703
|
Service()("effect/Cause/StackTrace");
|
|
8888
8704
|
Service()("effect/Cause/InterruptorStackTrace");
|
|
8705
|
+
//#endregion
|
|
8706
|
+
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Exit.js
|
|
8889
8707
|
/**
|
|
8890
8708
|
* Creates a successful Exit containing the given value.
|
|
8891
8709
|
*
|
|
@@ -8961,7 +8779,7 @@ const failCause$4 = exitFailCause;
|
|
|
8961
8779
|
* @category constructors
|
|
8962
8780
|
* @since 2.0.0
|
|
8963
8781
|
*/
|
|
8964
|
-
const fail$
|
|
8782
|
+
const fail$5 = exitFail;
|
|
8965
8783
|
const void_$2 = exitVoid;
|
|
8966
8784
|
/**
|
|
8967
8785
|
* Tests whether an Exit is a Success.
|
|
@@ -8987,7 +8805,7 @@ const void_$2 = exitVoid;
|
|
|
8987
8805
|
* @category guards
|
|
8988
8806
|
* @since 2.0.0
|
|
8989
8807
|
*/
|
|
8990
|
-
const isSuccess
|
|
8808
|
+
const isSuccess = exitIsSuccess;
|
|
8991
8809
|
/**
|
|
8992
8810
|
* Tests whether an Exit is a Failure.
|
|
8993
8811
|
*
|
|
@@ -9012,7 +8830,7 @@ const isSuccess$1 = exitIsSuccess;
|
|
|
9012
8830
|
* @category guards
|
|
9013
8831
|
* @since 2.0.0
|
|
9014
8832
|
*/
|
|
9015
|
-
const isFailure
|
|
8833
|
+
const isFailure = exitIsFailure;
|
|
9016
8834
|
/**
|
|
9017
8835
|
* Tests whether a failed Exit contains interruptions (Interrupt reasons).
|
|
9018
8836
|
*
|
|
@@ -9113,7 +8931,7 @@ const DeferredProto = {
|
|
|
9113
8931
|
* @since 2.0.0
|
|
9114
8932
|
* @category unsafe
|
|
9115
8933
|
*/
|
|
9116
|
-
const makeUnsafe$
|
|
8934
|
+
const makeUnsafe$6 = () => {
|
|
9117
8935
|
const self = Object.create(DeferredProto);
|
|
9118
8936
|
self.resumes = void 0;
|
|
9119
8937
|
self.effect = void 0;
|
|
@@ -9137,7 +8955,7 @@ const makeUnsafe$7 = () => {
|
|
|
9137
8955
|
* @since 2.0.0
|
|
9138
8956
|
* @category constructors
|
|
9139
8957
|
*/
|
|
9140
|
-
const make$25 = () => sync$2(() => makeUnsafe$
|
|
8958
|
+
const make$25 = () => sync$2(() => makeUnsafe$6());
|
|
9141
8959
|
const _await = (self) => callback$2((resume) => {
|
|
9142
8960
|
if (self.effect) return resume(self.effect);
|
|
9143
8961
|
self.resumes ??= [];
|
|
@@ -9186,7 +9004,7 @@ const done = /* @__PURE__ */ dual(2, (self, effect) => sync$2(() => doneUnsafe(s
|
|
|
9186
9004
|
* @since 2.0.0
|
|
9187
9005
|
* @category utils
|
|
9188
9006
|
*/
|
|
9189
|
-
const fail$
|
|
9007
|
+
const fail$4 = /* @__PURE__ */ dual(2, (self, error) => done(self, exitFail(error)));
|
|
9190
9008
|
/**
|
|
9191
9009
|
* Fails the `Deferred` with the specified `Cause`, which will be propagated to
|
|
9192
9010
|
* all fibers waiting on the value of the `Deferred`.
|
|
@@ -9304,6 +9122,23 @@ const doneUnsafe = (self, effect) => {
|
|
|
9304
9122
|
}
|
|
9305
9123
|
return true;
|
|
9306
9124
|
};
|
|
9125
|
+
//#endregion
|
|
9126
|
+
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Scope.js
|
|
9127
|
+
/**
|
|
9128
|
+
* The `Scope` module provides functionality for managing resource lifecycles
|
|
9129
|
+
* and cleanup operations in a functional and composable manner.
|
|
9130
|
+
*
|
|
9131
|
+
* A `Scope` represents a context where resources can be acquired and automatically
|
|
9132
|
+
* cleaned up when the scope is closed. This is essential for managing resources
|
|
9133
|
+
* like file handles, database connections, or any other resources that need
|
|
9134
|
+
* proper cleanup.
|
|
9135
|
+
*
|
|
9136
|
+
* Scopes support both sequential and parallel finalization strategies:
|
|
9137
|
+
* - Sequential: Finalizers run one after another in reverse order of registration
|
|
9138
|
+
* - Parallel: Finalizers run concurrently for better performance
|
|
9139
|
+
*
|
|
9140
|
+
* @since 2.0.0
|
|
9141
|
+
*/
|
|
9307
9142
|
/**
|
|
9308
9143
|
* The service tag for `Scope`, used for dependency injection in the Effect system.
|
|
9309
9144
|
*
|
|
@@ -9374,7 +9209,7 @@ const make$24 = scopeMake;
|
|
|
9374
9209
|
* @since 4.0.0
|
|
9375
9210
|
* @category constructors
|
|
9376
9211
|
*/
|
|
9377
|
-
const makeUnsafe$
|
|
9212
|
+
const makeUnsafe$5 = scopeMakeUnsafe;
|
|
9378
9213
|
/**
|
|
9379
9214
|
* Provides a `Scope` to an `Effect`, removing the `Scope` requirement from its context.
|
|
9380
9215
|
* This allows you to run effects that require a scope by explicitly providing one.
|
|
@@ -9527,10 +9362,10 @@ const forkUnsafe = scopeForkUnsafe;
|
|
|
9527
9362
|
const close = scopeClose;
|
|
9528
9363
|
//#endregion
|
|
9529
9364
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Layer.js
|
|
9530
|
-
const TypeId$
|
|
9365
|
+
const TypeId$23 = "~effect/Layer";
|
|
9531
9366
|
const MemoMapTypeId = "~effect/Layer/MemoMap";
|
|
9532
9367
|
const LayerProto = {
|
|
9533
|
-
[TypeId$
|
|
9368
|
+
[TypeId$23]: {
|
|
9534
9369
|
_ROut: identity,
|
|
9535
9370
|
_E: identity,
|
|
9536
9371
|
_RIn: identity
|
|
@@ -9616,8 +9451,8 @@ var MemoMapImpl = class {
|
|
|
9616
9451
|
entry.observers++;
|
|
9617
9452
|
return andThen$1(scopeAddFinalizerExit(scope, (exit) => entry.finalizer(exit)), entry.effect);
|
|
9618
9453
|
}
|
|
9619
|
-
const layerScope = makeUnsafe$
|
|
9620
|
-
const deferred = makeUnsafe$
|
|
9454
|
+
const layerScope = makeUnsafe$5();
|
|
9455
|
+
const deferred = makeUnsafe$6();
|
|
9621
9456
|
const entry = {
|
|
9622
9457
|
observers: 1,
|
|
9623
9458
|
effect: _await(deferred),
|
|
@@ -9725,7 +9560,7 @@ var CurrentMemoMap = class extends Service()("effect/Layer/CurrentMemoMap") {
|
|
|
9725
9560
|
* @since 2.0.0
|
|
9726
9561
|
* @category memo map
|
|
9727
9562
|
*/
|
|
9728
|
-
const buildWithMemoMap = /* @__PURE__ */ dual(3, (self, memoMap, scope) => provideService$1(map$
|
|
9563
|
+
const buildWithMemoMap = /* @__PURE__ */ dual(3, (self, memoMap, scope) => provideService$1(map$4(self.build(memoMap, scope), add(CurrentMemoMap, memoMap)), CurrentMemoMap, memoMap));
|
|
9729
9564
|
/**
|
|
9730
9565
|
* Builds a layer into an `Effect` value. Any resources associated with this
|
|
9731
9566
|
* layer will be released when the specified scope is closed unless their scope
|
|
@@ -9864,7 +9699,7 @@ const succeedServices = (services) => fromBuildUnsafe(constant(succeed$6(service
|
|
|
9864
9699
|
* @since 2.0.0
|
|
9865
9700
|
* @category constructors
|
|
9866
9701
|
*/
|
|
9867
|
-
const empty$3 = /* @__PURE__ */ succeedServices(/* @__PURE__ */ empty$
|
|
9702
|
+
const empty$3 = /* @__PURE__ */ succeedServices(/* @__PURE__ */ empty$4());
|
|
9868
9703
|
/**
|
|
9869
9704
|
* Lazily constructs a layer from the specified value.
|
|
9870
9705
|
*
|
|
@@ -9952,7 +9787,7 @@ const effect = function() {
|
|
|
9952
9787
|
if (arguments.length === 1) return (effect) => effectImpl(arguments[0], effect);
|
|
9953
9788
|
return effectImpl(arguments[0], arguments[1]);
|
|
9954
9789
|
};
|
|
9955
|
-
const effectImpl = (service, effect) => effectServices(map$
|
|
9790
|
+
const effectImpl = (service, effect) => effectServices(map$4(effect, (value) => make$27(service, value)));
|
|
9956
9791
|
/**
|
|
9957
9792
|
* Constructs a layer from the specified scoped effect, which must return one
|
|
9958
9793
|
* or more services.
|
|
@@ -10006,7 +9841,7 @@ const effectServices = (effect) => fromBuildMemo((_, scope) => provide$3(effect,
|
|
|
10006
9841
|
* @since 2.0.0
|
|
10007
9842
|
* @category constructors
|
|
10008
9843
|
*/
|
|
10009
|
-
const effectDiscard = (effect) => effectServices(as$1(effect, empty$
|
|
9844
|
+
const effectDiscard = (effect) => effectServices(as$1(effect, empty$4()));
|
|
10010
9845
|
/**
|
|
10011
9846
|
* Unwraps a Layer from an Effect, flattening the nested structure.
|
|
10012
9847
|
*
|
|
@@ -10038,7 +9873,7 @@ const unwrap$4 = (self) => {
|
|
|
10038
9873
|
};
|
|
10039
9874
|
const mergeAllEffect = (layers, memoMap, scope) => {
|
|
10040
9875
|
const parentScope = forkUnsafe(scope, "parallel");
|
|
10041
|
-
return forEach$2(layers, (layer) => layer.build(memoMap, forkUnsafe(parentScope, "sequential")), { concurrency: layers.length }).pipe(map$
|
|
9876
|
+
return forEach$2(layers, (layer) => layer.build(memoMap, forkUnsafe(parentScope, "sequential")), { concurrency: layers.length }).pipe(map$4((services) => mergeAll$2(...services)));
|
|
10042
9877
|
};
|
|
10043
9878
|
/**
|
|
10044
9879
|
* Combines all the provided layers concurrently, creating a new layer with merged input, error, and output types.
|
|
@@ -10072,7 +9907,7 @@ const mergeAllEffect = (layers, memoMap, scope) => {
|
|
|
10072
9907
|
* @category zipping
|
|
10073
9908
|
*/
|
|
10074
9909
|
const mergeAll$1 = (...layers) => fromBuild((memoMap, scope) => mergeAllEffect(layers, memoMap, scope));
|
|
10075
|
-
const provideWith = (self, that, f) => fromBuild((memoMap, scope) => flatMap$4(Array.isArray(that) ? mergeAllEffect(that, memoMap, scope) : that.build(memoMap, scope), (context) => self.build(memoMap, scope).pipe(provideServices$1(context), map$
|
|
9910
|
+
const provideWith = (self, that, f) => fromBuild((memoMap, scope) => flatMap$4(Array.isArray(that) ? mergeAllEffect(that, memoMap, scope) : that.build(memoMap, scope), (context) => self.build(memoMap, scope).pipe(provideServices$1(context), map$4((merged) => f(merged, context)))));
|
|
10076
9911
|
/**
|
|
10077
9912
|
* Feeds the output services of this builder into the input of the specified
|
|
10078
9913
|
* builder, resulting in a new builder with the inputs of this builder as
|
|
@@ -10424,11 +10259,11 @@ const Clock = ClockRef;
|
|
|
10424
10259
|
//#endregion
|
|
10425
10260
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/internal/dateTime.js
|
|
10426
10261
|
/** @internal */
|
|
10427
|
-
const TypeId$
|
|
10262
|
+
const TypeId$22 = "~effect/time/DateTime";
|
|
10428
10263
|
/** @internal */
|
|
10429
10264
|
const TimeZoneTypeId = "~effect/time/DateTime/TimeZone";
|
|
10430
10265
|
const Proto$3 = {
|
|
10431
|
-
[TypeId$
|
|
10266
|
+
[TypeId$22]: TypeId$22,
|
|
10432
10267
|
pipe() {
|
|
10433
10268
|
return pipeArguments(this, arguments);
|
|
10434
10269
|
},
|
|
@@ -10451,34 +10286,6 @@ const ProtoTimeZone = {
|
|
|
10451
10286
|
({ ...ProtoTimeZone });
|
|
10452
10287
|
/** @internal */
|
|
10453
10288
|
const toDateUtc$1 = (self) => new Date(self.epochMillis);
|
|
10454
|
-
/** @internal */
|
|
10455
|
-
const toDate$1 = (self) => {
|
|
10456
|
-
if (self._tag === "Utc") return new Date(self.epochMillis);
|
|
10457
|
-
else if (self.zone._tag === "Offset") return new Date(self.epochMillis + self.zone.offset);
|
|
10458
|
-
else if (self.adjustedEpochMillis !== void 0) return new Date(self.adjustedEpochMillis);
|
|
10459
|
-
const parts = self.zone.format.formatToParts(self.epochMillis).filter((_) => _.type !== "literal");
|
|
10460
|
-
const date = /* @__PURE__ */ new Date(0);
|
|
10461
|
-
date.setUTCFullYear(Number(parts[2].value), Number(parts[0].value) - 1, Number(parts[1].value));
|
|
10462
|
-
date.setUTCHours(Number(parts[3].value), Number(parts[4].value), Number(parts[5].value), Number(parts[6].value));
|
|
10463
|
-
self.adjustedEpochMillis = date.getTime();
|
|
10464
|
-
return date;
|
|
10465
|
-
};
|
|
10466
|
-
/** @internal */
|
|
10467
|
-
const zonedOffset$1 = (self) => {
|
|
10468
|
-
return toDate$1(self).getTime() - toEpochMillis$1(self);
|
|
10469
|
-
};
|
|
10470
|
-
const offsetToString = (offset) => {
|
|
10471
|
-
const abs = Math.abs(offset);
|
|
10472
|
-
let hours = Math.floor(abs / (3600 * 1e3));
|
|
10473
|
-
let minutes = Math.round(abs % (3600 * 1e3) / (60 * 1e3));
|
|
10474
|
-
if (minutes === 60) {
|
|
10475
|
-
hours += 1;
|
|
10476
|
-
minutes = 0;
|
|
10477
|
-
}
|
|
10478
|
-
return `${offset < 0 ? "-" : "+"}${String(hours).padStart(2, "0")}:${String(minutes).padStart(2, "0")}`;
|
|
10479
|
-
};
|
|
10480
|
-
/** @internal */
|
|
10481
|
-
const toEpochMillis$1 = (self) => self.epochMillis;
|
|
10482
10289
|
globalThis.Number;
|
|
10483
10290
|
/**
|
|
10484
10291
|
* Restricts the given `number` to be within the range specified by the `minimum` and `maximum` values.
|
|
@@ -10502,7 +10309,7 @@ globalThis.Number;
|
|
|
10502
10309
|
* @category math
|
|
10503
10310
|
* @since 2.0.0
|
|
10504
10311
|
*/
|
|
10505
|
-
const clamp
|
|
10312
|
+
const clamp = /* @__PURE__ */ clamp$1(Number$5);
|
|
10506
10313
|
globalThis.String;
|
|
10507
10314
|
/**
|
|
10508
10315
|
* Removes whitespace from both ends of a string.
|
|
@@ -10529,7 +10336,7 @@ const trim$2 = (self) => self.trim();
|
|
|
10529
10336
|
* @since 4.0.0
|
|
10530
10337
|
* @category Done
|
|
10531
10338
|
*/
|
|
10532
|
-
const catchDone = /* @__PURE__ */ dual(2, (effect, f) => catchCauseFilter
|
|
10339
|
+
const catchDone = /* @__PURE__ */ dual(2, (effect, f) => catchCauseFilter(effect, filterDoneLeftover, (l) => f(l)));
|
|
10533
10340
|
/**
|
|
10534
10341
|
* Checks if a Cause contains any done errors.
|
|
10535
10342
|
*
|
|
@@ -10550,14 +10357,14 @@ const isDoneFailure = (failure) => failure._tag === "Fail" && isDone$1(failure.e
|
|
|
10550
10357
|
* @since 4.0.0
|
|
10551
10358
|
* @category Done
|
|
10552
10359
|
*/
|
|
10553
|
-
const filterDone = /* @__PURE__ */ composePassthrough(findError
|
|
10360
|
+
const filterDone = /* @__PURE__ */ composePassthrough(findError, (e) => isDone$1(e) ? succeed$7(e) : fail$8(e));
|
|
10554
10361
|
/**
|
|
10555
10362
|
* Filters a Cause to extract the leftover value from done errors.
|
|
10556
10363
|
*
|
|
10557
10364
|
* @since 4.0.0
|
|
10558
10365
|
* @category Done
|
|
10559
10366
|
*/
|
|
10560
|
-
const filterDoneLeftover = /* @__PURE__ */ composePassthrough(findError
|
|
10367
|
+
const filterDoneLeftover = /* @__PURE__ */ composePassthrough(findError, (e) => isDone$1(e) ? succeed$7(e.value) : fail$8(e));
|
|
10561
10368
|
/**
|
|
10562
10369
|
* Converts a Cause into an Exit, extracting halt leftovers as success values.
|
|
10563
10370
|
*
|
|
@@ -10566,14 +10373,13 @@ const filterDoneLeftover = /* @__PURE__ */ composePassthrough(findError$1, (e) =
|
|
|
10566
10373
|
*/
|
|
10567
10374
|
const doneExitFromCause = (cause) => {
|
|
10568
10375
|
const halt = filterDone(cause);
|
|
10569
|
-
return !isFailure$
|
|
10376
|
+
return !isFailure$1(halt) ? succeed$5(halt.success.value) : failCause$4(halt.failure);
|
|
10570
10377
|
};
|
|
10571
10378
|
//#endregion
|
|
10572
10379
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/internal/layer.js
|
|
10573
10380
|
const provideLayer = (self, layer, options) => scopedWith$1((scope) => flatMap$4(options?.local ? buildWithMemoMap(layer, makeMemoMapUnsafe(), scope) : buildWithScope(layer, scope), (context) => provideServices$1(self, context)));
|
|
10574
10381
|
/** @internal */
|
|
10575
10382
|
const provide$1 = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (self, source, options) => isServiceMap(source) ? provideServices$1(self, source) : provideLayer(self, Array.isArray(source) ? mergeAll$1(...source) : source, options));
|
|
10576
|
-
({ ...StructuralProto });
|
|
10577
10383
|
//#endregion
|
|
10578
10384
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/Effect.js
|
|
10579
10385
|
const TypeId$21 = EffectTypeId;
|
|
@@ -11200,7 +11006,7 @@ const callback$1 = callback$2;
|
|
|
11200
11006
|
* @since 2.0.0
|
|
11201
11007
|
* @category Creating Effects
|
|
11202
11008
|
*/
|
|
11203
|
-
const never
|
|
11009
|
+
const never = never$1;
|
|
11204
11010
|
/**
|
|
11205
11011
|
* Provides a way to write effectful code using generator functions, simplifying
|
|
11206
11012
|
* control flow and error handling.
|
|
@@ -11276,7 +11082,7 @@ const gen = gen$1;
|
|
|
11276
11082
|
* @since 2.0.0
|
|
11277
11083
|
* @category Creating Effects
|
|
11278
11084
|
*/
|
|
11279
|
-
const fail$
|
|
11085
|
+
const fail$3 = fail$7;
|
|
11280
11086
|
/**
|
|
11281
11087
|
* Creates an `Effect` that represents a failure with a specific `Cause`.
|
|
11282
11088
|
*
|
|
@@ -11342,7 +11148,7 @@ const failCause$2 = failCause$5;
|
|
|
11342
11148
|
* @since 2.0.0
|
|
11343
11149
|
* @category Creating Effects
|
|
11344
11150
|
*/
|
|
11345
|
-
const die$2 = die$
|
|
11151
|
+
const die$2 = die$4;
|
|
11346
11152
|
const try_ = try_$1;
|
|
11347
11153
|
/**
|
|
11348
11154
|
* Yields control back to the Effect runtime, allowing other fibers to execute.
|
|
@@ -11721,7 +11527,7 @@ const exit = exit$1;
|
|
|
11721
11527
|
* @since 2.0.0
|
|
11722
11528
|
* @category Mapping
|
|
11723
11529
|
*/
|
|
11724
|
-
const map$3 = map$
|
|
11530
|
+
const map$3 = map$4;
|
|
11725
11531
|
/**
|
|
11726
11532
|
* Replaces the value inside an effect with a constant value.
|
|
11727
11533
|
*
|
|
@@ -11782,7 +11588,7 @@ const asSome = asSome$1;
|
|
|
11782
11588
|
* @since 2.0.0
|
|
11783
11589
|
* @category Mapping
|
|
11784
11590
|
*/
|
|
11785
|
-
const asVoid = asVoid$
|
|
11591
|
+
const asVoid = asVoid$1;
|
|
11786
11592
|
/**
|
|
11787
11593
|
* Combines two effects sequentially and applies a function to their results to
|
|
11788
11594
|
* produce a single value.
|
|
@@ -12520,7 +12326,7 @@ const matchCauseEffect = matchCauseEffect$1;
|
|
|
12520
12326
|
* @since 2.0.0
|
|
12521
12327
|
* @category Pattern Matching
|
|
12522
12328
|
*/
|
|
12523
|
-
const matchEffect = matchEffect$
|
|
12329
|
+
const matchEffect = matchEffect$1;
|
|
12524
12330
|
/**
|
|
12525
12331
|
* Returns the complete service map from the current context.
|
|
12526
12332
|
*
|
|
@@ -13270,7 +13076,7 @@ const cached = cached$1;
|
|
|
13270
13076
|
* @since 2.0.0
|
|
13271
13077
|
* @category Interruption
|
|
13272
13078
|
*/
|
|
13273
|
-
const interrupt$1 = interrupt$
|
|
13079
|
+
const interrupt$1 = interrupt$2;
|
|
13274
13080
|
/**
|
|
13275
13081
|
* Runs the specified finalizer effect if this effect is interrupted.
|
|
13276
13082
|
*
|
|
@@ -13378,7 +13184,7 @@ const uninterruptibleMask = uninterruptibleMask$1;
|
|
|
13378
13184
|
* @since 2.0.0
|
|
13379
13185
|
* @category Repetition / Recursion
|
|
13380
13186
|
*/
|
|
13381
|
-
const forever = forever$
|
|
13187
|
+
const forever = forever$1;
|
|
13382
13188
|
/**
|
|
13383
13189
|
* Create a new span for tracing, and automatically close it when the Scope
|
|
13384
13190
|
* finalizes.
|
|
@@ -13948,7 +13754,7 @@ const fn = fn$1;
|
|
|
13948
13754
|
* @since 2.0.0
|
|
13949
13755
|
* @category Logging
|
|
13950
13756
|
*/
|
|
13951
|
-
const log = /* @__PURE__ */ logWithLevel
|
|
13757
|
+
const log = /* @__PURE__ */ logWithLevel();
|
|
13952
13758
|
/**
|
|
13953
13759
|
* Logs one or more messages at the WARNING level.
|
|
13954
13760
|
*
|
|
@@ -13977,7 +13783,7 @@ const log = /* @__PURE__ */ logWithLevel$1();
|
|
|
13977
13783
|
* @since 2.0.0
|
|
13978
13784
|
* @category Logging
|
|
13979
13785
|
*/
|
|
13980
|
-
const logWarning = /* @__PURE__ */ logWithLevel
|
|
13786
|
+
const logWarning = /* @__PURE__ */ logWithLevel("Warn");
|
|
13981
13787
|
/**
|
|
13982
13788
|
* Logs one or more messages at the ERROR level.
|
|
13983
13789
|
*
|
|
@@ -14009,7 +13815,7 @@ const logWarning = /* @__PURE__ */ logWithLevel$1("Warn");
|
|
|
14009
13815
|
* @since 2.0.0
|
|
14010
13816
|
* @category Logging
|
|
14011
13817
|
*/
|
|
14012
|
-
const logError = /* @__PURE__ */ logWithLevel
|
|
13818
|
+
const logError = /* @__PURE__ */ logWithLevel("Error");
|
|
14013
13819
|
/**
|
|
14014
13820
|
* Logs one or more messages at the INFO level.
|
|
14015
13821
|
*
|
|
@@ -14036,7 +13842,7 @@ const logError = /* @__PURE__ */ logWithLevel$1("Error");
|
|
|
14036
13842
|
* @since 2.0.0
|
|
14037
13843
|
* @category Logging
|
|
14038
13844
|
*/
|
|
14039
|
-
const logInfo = /* @__PURE__ */ logWithLevel
|
|
13845
|
+
const logInfo = /* @__PURE__ */ logWithLevel("Info");
|
|
14040
13846
|
/**
|
|
14041
13847
|
* Logs one or more messages at the DEBUG level.
|
|
14042
13848
|
*
|
|
@@ -14064,7 +13870,7 @@ const logInfo = /* @__PURE__ */ logWithLevel$1("Info");
|
|
|
14064
13870
|
* @since 2.0.0
|
|
14065
13871
|
* @category Logging
|
|
14066
13872
|
*/
|
|
14067
|
-
const logDebug = /* @__PURE__ */ logWithLevel
|
|
13873
|
+
const logDebug = /* @__PURE__ */ logWithLevel("Debug");
|
|
14068
13874
|
/**
|
|
14069
13875
|
* Adds an annotation to each log line in this effect.
|
|
14070
13876
|
*
|
|
@@ -14094,7 +13900,7 @@ const logDebug = /* @__PURE__ */ logWithLevel$1("Debug");
|
|
|
14094
13900
|
* @since 2.0.0
|
|
14095
13901
|
* @category Logging
|
|
14096
13902
|
*/
|
|
14097
|
-
const annotateLogs = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (effect, ...args) => updateService
|
|
13903
|
+
const annotateLogs = /* @__PURE__ */ dual((args) => isEffect$1(args[0]), (effect, ...args) => updateService(effect, CurrentLogAnnotations, (annotations) => {
|
|
14098
13904
|
const newAnnotations = { ...annotations };
|
|
14099
13905
|
if (args.length === 1) Object.assign(newAnnotations, args[0]);
|
|
14100
13906
|
else newAnnotations[args[0]] = args[1];
|
|
@@ -14141,11 +13947,11 @@ Service()("effect/Effect/Transaction");
|
|
|
14141
13947
|
const effectify = (fn, onError, onSyncError) => (...args) => callback$1((resume) => {
|
|
14142
13948
|
try {
|
|
14143
13949
|
fn(...args, (err, result) => {
|
|
14144
|
-
if (err) resume(fail$
|
|
13950
|
+
if (err) resume(fail$3(onError ? onError(err, args) : err));
|
|
14145
13951
|
else resume(succeed$2(result));
|
|
14146
13952
|
});
|
|
14147
13953
|
} catch (err) {
|
|
14148
|
-
resume(onSyncError ? fail$
|
|
13954
|
+
resume(onSyncError ? fail$3(onSyncError(err, args)) : die$2(err));
|
|
14149
13955
|
}
|
|
14150
13956
|
});
|
|
14151
13957
|
/**
|
|
@@ -14379,20 +14185,20 @@ function set$2(self, key, value) {
|
|
|
14379
14185
|
//#endregion
|
|
14380
14186
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/internal/schema/annotations.js
|
|
14381
14187
|
/** @internal */
|
|
14382
|
-
function resolve
|
|
14188
|
+
function resolve(ast) {
|
|
14383
14189
|
return ast.checks ? ast.checks[ast.checks.length - 1].annotations : ast.annotations;
|
|
14384
14190
|
}
|
|
14385
14191
|
/** @internal */
|
|
14386
|
-
function resolveAt
|
|
14387
|
-
return (ast) => resolve
|
|
14192
|
+
function resolveAt(key) {
|
|
14193
|
+
return (ast) => resolve(ast)?.[key];
|
|
14388
14194
|
}
|
|
14389
14195
|
/** @internal */
|
|
14390
|
-
const resolveIdentifier
|
|
14196
|
+
const resolveIdentifier = /* @__PURE__ */ resolveAt("identifier");
|
|
14391
14197
|
/** @internal */
|
|
14392
|
-
const resolveBrands = /* @__PURE__ */ resolveAt
|
|
14198
|
+
const resolveBrands = /* @__PURE__ */ resolveAt("brands");
|
|
14393
14199
|
/** @internal */
|
|
14394
14200
|
const getExpected = /* @__PURE__ */ memoize((ast) => {
|
|
14395
|
-
const identifier = resolveIdentifier
|
|
14201
|
+
const identifier = resolveIdentifier(ast);
|
|
14396
14202
|
if (typeof identifier === "string") return identifier;
|
|
14397
14203
|
return ast.getExpected(getExpected);
|
|
14398
14204
|
});
|
|
@@ -14582,12 +14388,12 @@ const Proto$2 = {
|
|
|
14582
14388
|
return this.toString();
|
|
14583
14389
|
},
|
|
14584
14390
|
toString() {
|
|
14585
|
-
return `<redacted${isString
|
|
14391
|
+
return `<redacted${isString(this.label) ? ":" + this.label : ""}>`;
|
|
14586
14392
|
},
|
|
14587
|
-
[symbol$
|
|
14393
|
+
[symbol$1]() {
|
|
14588
14394
|
return hash(redactedRegistry.get(this));
|
|
14589
14395
|
},
|
|
14590
|
-
[symbol
|
|
14396
|
+
[symbol](that) {
|
|
14591
14397
|
return isRedacted(that) && equals$2(redactedRegistry.get(this), redactedRegistry.get(that));
|
|
14592
14398
|
}
|
|
14593
14399
|
};
|
|
@@ -15123,9 +14929,9 @@ const defaultLeafHook = (issue) => {
|
|
|
15123
14929
|
case "InvalidType": return getExpectedMessage(getExpected(issue.ast), formatOption(issue.actual));
|
|
15124
14930
|
case "InvalidValue": return `Invalid data ${formatOption(issue.actual)}`;
|
|
15125
14931
|
case "MissingKey": return "Missing key";
|
|
15126
|
-
case "UnexpectedKey": return `Unexpected key with value ${format$
|
|
14932
|
+
case "UnexpectedKey": return `Unexpected key with value ${format$1(issue.actual)}`;
|
|
15127
14933
|
case "Forbidden": return "Forbidden operation";
|
|
15128
|
-
case "OneOf": return `Expected exactly one member to match the input ${format$
|
|
14934
|
+
case "OneOf": return `Expected exactly one member to match the input ${format$1(issue.actual)}`;
|
|
15129
14935
|
}
|
|
15130
14936
|
};
|
|
15131
14937
|
/**
|
|
@@ -15166,7 +14972,7 @@ function toDefaultIssues(issue, path, leafHook, checkHook) {
|
|
|
15166
14972
|
switch (issue.issue._tag) {
|
|
15167
14973
|
case "InvalidValue": return [{
|
|
15168
14974
|
path,
|
|
15169
|
-
message: getExpectedMessage(formatCheck(issue.filter), format$
|
|
14975
|
+
message: getExpectedMessage(formatCheck(issue.filter), format$1(issue.actual))
|
|
15170
14976
|
}];
|
|
15171
14977
|
default: return toDefaultIssues(issue.issue, path, leafHook, checkHook);
|
|
15172
14978
|
}
|
|
@@ -15183,7 +14989,7 @@ function toDefaultIssues(issue, path, leafHook, checkHook) {
|
|
|
15183
14989
|
}];
|
|
15184
14990
|
return [{
|
|
15185
14991
|
path,
|
|
15186
|
-
message: getExpectedMessage(getExpected(issue.ast), format$
|
|
14992
|
+
message: getExpectedMessage(getExpected(issue.ast), format$1(issue.actual))
|
|
15187
14993
|
}];
|
|
15188
14994
|
}
|
|
15189
14995
|
return issue.issues.flatMap((issue) => toDefaultIssues(issue, path, leafHook, checkHook));
|
|
@@ -15266,7 +15072,7 @@ function getMessageAnnotation(annotations, type = "message") {
|
|
|
15266
15072
|
}
|
|
15267
15073
|
function formatOption(actual) {
|
|
15268
15074
|
if (isNone(actual)) return "no value provided";
|
|
15269
|
-
return format$
|
|
15075
|
+
return format$1(actual.value);
|
|
15270
15076
|
}
|
|
15271
15077
|
//#endregion
|
|
15272
15078
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/SchemaGetter.js
|
|
@@ -15401,7 +15207,7 @@ var Getter = class Getter extends Class$2 {
|
|
|
15401
15207
|
this.run = run;
|
|
15402
15208
|
}
|
|
15403
15209
|
map(f) {
|
|
15404
|
-
return new Getter((oe, options) => this.run(oe, options).pipe(mapEager(map$
|
|
15210
|
+
return new Getter((oe, options) => this.run(oe, options).pipe(mapEager(map$7(f))));
|
|
15405
15211
|
}
|
|
15406
15212
|
compose(other) {
|
|
15407
15213
|
if (isPassthrough(this)) return other;
|
|
@@ -15486,7 +15292,7 @@ function onSome(f) {
|
|
|
15486
15292
|
* @since 4.0.0
|
|
15487
15293
|
*/
|
|
15488
15294
|
function transform$1(f) {
|
|
15489
|
-
return transformOptional(map$
|
|
15295
|
+
return transformOptional(map$7(f));
|
|
15490
15296
|
}
|
|
15491
15297
|
/**
|
|
15492
15298
|
* Creates a getter that applies a fallible, effectful transformation to present values.
|
|
@@ -15612,7 +15418,7 @@ function omit$1() {
|
|
|
15612
15418
|
* @since 4.0.0
|
|
15613
15419
|
*/
|
|
15614
15420
|
function withDefault$1(defaultValue) {
|
|
15615
|
-
return transformOptional((o) => o.pipe(filter$
|
|
15421
|
+
return transformOptional((o) => o.pipe(filter$3(isNotUndefined), orElseSome(defaultValue)));
|
|
15616
15422
|
}
|
|
15617
15423
|
/**
|
|
15618
15424
|
* Coerces any value to a `string` using the global `String()` constructor.
|
|
@@ -15759,14 +15565,31 @@ function split(options) {
|
|
|
15759
15565
|
const separator = options?.separator ?? ",";
|
|
15760
15566
|
return transform$1((input) => input === "" ? [] : input.split(separator));
|
|
15761
15567
|
}
|
|
15568
|
+
//#endregion
|
|
15569
|
+
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/BigDecimal.js
|
|
15570
|
+
/**
|
|
15571
|
+
* This module provides utility functions and type class instances for working with the `BigDecimal` type in TypeScript.
|
|
15572
|
+
* It includes functions for basic arithmetic operations.
|
|
15573
|
+
*
|
|
15574
|
+
* A `BigDecimal` allows storing any real number to arbitrary precision; which avoids common floating point errors
|
|
15575
|
+
* (such as 0.1 + 0.2 ≠ 0.3) at the cost of complexity.
|
|
15576
|
+
*
|
|
15577
|
+
* Internally, `BigDecimal` uses a `BigInt` object, paired with a 64-bit integer which determines the position of the
|
|
15578
|
+
* decimal point. Therefore, the precision *is not* actually arbitrary, but limited to 2<sup>63</sup> decimal places.
|
|
15579
|
+
*
|
|
15580
|
+
* It is not recommended to convert a floating point number to a decimal directly, as the floating point representation
|
|
15581
|
+
* may be unexpected.
|
|
15582
|
+
*
|
|
15583
|
+
* @since 2.0.0
|
|
15584
|
+
*/
|
|
15762
15585
|
const TypeId$18 = "~effect/BigDecimal";
|
|
15763
15586
|
const BigDecimalProto = {
|
|
15764
15587
|
[TypeId$18]: TypeId$18,
|
|
15765
|
-
[symbol$
|
|
15588
|
+
[symbol$1]() {
|
|
15766
15589
|
const normalized = normalize(this);
|
|
15767
|
-
return combine
|
|
15590
|
+
return combine(hash(normalized.value), number$1(normalized.scale));
|
|
15768
15591
|
},
|
|
15769
|
-
[symbol
|
|
15592
|
+
[symbol](that) {
|
|
15770
15593
|
return isBigDecimal(that) && equals(this, that);
|
|
15771
15594
|
},
|
|
15772
15595
|
toString() {
|
|
@@ -16066,89 +15889,6 @@ const isZero = (n) => n.value === bigint0;
|
|
|
16066
15889
|
const isNegative = (n) => n.value < bigint0;
|
|
16067
15890
|
//#endregion
|
|
16068
15891
|
//#region ../../node_modules/.bun/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@8881a9b/node_modules/effect/dist/SchemaTransformation.js
|
|
16069
|
-
/**
|
|
16070
|
-
* Bidirectional transformations for the Effect Schema system.
|
|
16071
|
-
*
|
|
16072
|
-
* A `Transformation` pairs a decode `Getter` and an encode `Getter` into a
|
|
16073
|
-
* single bidirectional value, used by `Schema.decodeTo`, `Schema.encodeTo`,
|
|
16074
|
-
* `Schema.decode`, `Schema.encode`, and `Schema.link` to define how values
|
|
16075
|
-
* are converted between encoded and decoded representations. A `Middleware`
|
|
16076
|
-
* is the effect-level equivalent — it wraps the entire parsing `Effect`
|
|
16077
|
-
* pipeline rather than individual values.
|
|
16078
|
-
*
|
|
16079
|
-
* ## Mental model
|
|
16080
|
-
*
|
|
16081
|
-
* - **Transformation**: A pair of `Getter`s (decode + encode) that convert
|
|
16082
|
-
* individual values bidirectionally. `T` is the decoded (Type) side, `E` is
|
|
16083
|
-
* the encoded side. `RD`/`RE` are required Effect services.
|
|
16084
|
-
* - **Middleware**: Like `Transformation`, but each direction receives the full
|
|
16085
|
-
* parsing `Effect` and can intercept, retry, or modify the pipeline.
|
|
16086
|
-
* - **Getter**: A single-direction transform `Option<E> → Effect<Option<T>, Issue, R>`
|
|
16087
|
-
* (see `SchemaGetter`).
|
|
16088
|
-
* - **flip()**: Swaps decode and encode, turning a `Transformation<T, E>` into
|
|
16089
|
-
* `Transformation<E, T>`.
|
|
16090
|
-
* - **compose()**: Chains two transformations left-to-right on the decode side
|
|
16091
|
-
* and right-to-left on the encode side.
|
|
16092
|
-
* - **passthrough**: The identity transformation — no conversion in either
|
|
16093
|
-
* direction.
|
|
16094
|
-
*
|
|
16095
|
-
* ## Common tasks
|
|
16096
|
-
*
|
|
16097
|
-
* - Convert values purely (sync, infallible) → {@link transform}
|
|
16098
|
-
* - Convert values with possible failure → {@link transformOrFail}
|
|
16099
|
-
* - Handle optional/missing keys → {@link transformOptional}
|
|
16100
|
-
* - Build from existing Getters → {@link make}
|
|
16101
|
-
* - No-op identity transformation → {@link passthrough}
|
|
16102
|
-
* - Subtype/supertype coercion → {@link passthroughSupertype}, {@link passthroughSubtype}
|
|
16103
|
-
* - Trim/case strings → {@link trim}, {@link toLowerCase}, {@link toUpperCase}, {@link capitalize}, {@link uncapitalize}, {@link snakeToCamel}
|
|
16104
|
-
* - Parse key-value strings → {@link splitKeyValue}
|
|
16105
|
-
* - Coerce string ↔ number/bigint → {@link numberFromString}, {@link bigintFromString}
|
|
16106
|
-
* - Decode durations → {@link durationFromNanos}, {@link durationFromMillis}
|
|
16107
|
-
* - Wrap nullable/optional as Option → {@link optionFromNullOr}, {@link optionFromOptionalKey}, {@link optionFromOptional}
|
|
16108
|
-
* - Parse URLs → {@link urlFromString}
|
|
16109
|
-
* - Base64 ↔ Uint8Array → {@link uint8ArrayFromBase64String}
|
|
16110
|
-
* - JSON string ↔ unknown → {@link fromJsonString}
|
|
16111
|
-
* - FormData/URLSearchParams ↔ unknown → {@link fromFormData}, {@link fromURLSearchParams}
|
|
16112
|
-
* - Check if a value is a Transformation → {@link isTransformation}
|
|
16113
|
-
*
|
|
16114
|
-
* ## Gotchas
|
|
16115
|
-
*
|
|
16116
|
-
* - `Transformation` operates on individual values; `Middleware` wraps the
|
|
16117
|
-
* entire parsing Effect. Choose accordingly.
|
|
16118
|
-
* - `passthrough` requires `T === E` by default. Use `{ strict: false }` to
|
|
16119
|
-
* bypass, or use {@link passthroughSupertype} / {@link passthroughSubtype}.
|
|
16120
|
-
* - String transformations like `trim`, `toLowerCase`, and `toUpperCase` use
|
|
16121
|
-
* `passthrough` on the encode side — they are lossy and do not round-trip.
|
|
16122
|
-
* - `durationFromNanos` encode can fail if the Duration cannot be represented
|
|
16123
|
-
* as a `bigint`.
|
|
16124
|
-
*
|
|
16125
|
-
* ## Quickstart
|
|
16126
|
-
*
|
|
16127
|
-
* **Example** (Defining a custom transformation with Schema.decodeTo)
|
|
16128
|
-
*
|
|
16129
|
-
* ```ts
|
|
16130
|
-
* import { Schema, SchemaTransformation } from "effect"
|
|
16131
|
-
*
|
|
16132
|
-
* const CentsFromDollars = Schema.Number.pipe(
|
|
16133
|
-
* Schema.decodeTo(
|
|
16134
|
-
* Schema.Number,
|
|
16135
|
-
* SchemaTransformation.transform({
|
|
16136
|
-
* decode: (dollars) => dollars * 100,
|
|
16137
|
-
* encode: (cents) => cents / 100
|
|
16138
|
-
* })
|
|
16139
|
-
* )
|
|
16140
|
-
* )
|
|
16141
|
-
* ```
|
|
16142
|
-
*
|
|
16143
|
-
* ## See also
|
|
16144
|
-
*
|
|
16145
|
-
* - {@link Transformation} — the core bidirectional transformation class
|
|
16146
|
-
* - {@link Middleware} — effect-pipeline-level transformation
|
|
16147
|
-
* - {@link transform} — most common constructor
|
|
16148
|
-
* - {@link passthrough} — identity transformation
|
|
16149
|
-
*
|
|
16150
|
-
* @since 4.0.0
|
|
16151
|
-
*/
|
|
16152
15892
|
const TypeId$17 = "~effect/SchemaTransformation/Transformation";
|
|
16153
15893
|
/**
|
|
16154
15894
|
* A bidirectional transformation between a decoded type `T` and an encoded
|
|
@@ -16978,7 +16718,7 @@ var TemplateLiteral$1 = class extends Base {
|
|
|
16978
16718
|
return decodeTo$1(string$1, tuple, new Transformation(transformOrFail$1((s) => {
|
|
16979
16719
|
const match = regExp.exec(s);
|
|
16980
16720
|
if (match) return succeed$2(match.slice(1, this.parts.length + 1));
|
|
16981
|
-
return fail$
|
|
16721
|
+
return fail$3(new InvalidValue(some(s), { message: `Expected a value matching ${regExp.source}, got ${format$1(s)}` }));
|
|
16982
16722
|
}), transform$1((parts) => parts.join(""))));
|
|
16983
16723
|
}
|
|
16984
16724
|
};
|
|
@@ -17010,7 +16750,7 @@ var Literal$1 = class extends Base {
|
|
|
17010
16750
|
literal;
|
|
17011
16751
|
constructor(literal, annotations, checks, encoding, context) {
|
|
17012
16752
|
super(annotations, checks, encoding, context);
|
|
17013
|
-
if (typeof literal === "number" && !globalThis.Number.isFinite(literal)) throw new Error(`A numeric literal must be finite, got ${format$
|
|
16753
|
+
if (typeof literal === "number" && !globalThis.Number.isFinite(literal)) throw new Error(`A numeric literal must be finite, got ${format$1(literal)}`);
|
|
17014
16754
|
this.literal = literal;
|
|
17015
16755
|
}
|
|
17016
16756
|
/** @internal */
|
|
@@ -17047,7 +16787,7 @@ var String$2 = class extends Base {
|
|
|
17047
16787
|
_tag = "String";
|
|
17048
16788
|
/** @internal */
|
|
17049
16789
|
getParser() {
|
|
17050
|
-
return fromRefinement(this, isString
|
|
16790
|
+
return fromRefinement(this, isString);
|
|
17051
16791
|
}
|
|
17052
16792
|
/** @internal */
|
|
17053
16793
|
getExpected() {
|
|
@@ -17081,7 +16821,7 @@ var Number$2 = class extends Base {
|
|
|
17081
16821
|
_tag = "Number";
|
|
17082
16822
|
/** @internal */
|
|
17083
16823
|
getParser() {
|
|
17084
|
-
return fromRefinement(this, isNumber
|
|
16824
|
+
return fromRefinement(this, isNumber);
|
|
17085
16825
|
}
|
|
17086
16826
|
/** @internal */
|
|
17087
16827
|
toCodecJson() {
|
|
@@ -17202,7 +16942,7 @@ var Arrays = class Arrays extends Base {
|
|
|
17202
16942
|
return fnUntracedEager(function* (oinput, options) {
|
|
17203
16943
|
if (oinput._tag === "None") return oinput;
|
|
17204
16944
|
const input = oinput.value;
|
|
17205
|
-
if (!Array.isArray(input)) return yield* fail$
|
|
16945
|
+
if (!Array.isArray(input)) return yield* fail$3(new InvalidType(ast, oinput));
|
|
17206
16946
|
const output = [];
|
|
17207
16947
|
let issues;
|
|
17208
16948
|
const errorsAllOption = options.errors === "all";
|
|
@@ -17213,18 +16953,18 @@ var Arrays = class Arrays extends Base {
|
|
|
17213
16953
|
const eff = e.parser(value, options);
|
|
17214
16954
|
const exit$6 = effectIsExit(eff) ? eff : yield* exit(eff);
|
|
17215
16955
|
if (exit$6._tag === "Failure") {
|
|
17216
|
-
const issueElement = findError
|
|
17217
|
-
if (isFailure$
|
|
16956
|
+
const issueElement = findError(exit$6.cause);
|
|
16957
|
+
if (isFailure$1(issueElement)) return yield* exit$6;
|
|
17218
16958
|
const issue = new Pointer([i], issueElement.success);
|
|
17219
16959
|
if (errorsAllOption) if (issues) issues.push(issue);
|
|
17220
16960
|
else issues = [issue];
|
|
17221
|
-
else return yield* fail$
|
|
16961
|
+
else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17222
16962
|
} else if (exit$6.value._tag === "Some") output[i] = exit$6.value.value;
|
|
17223
16963
|
else if (!isOptional(e.ast)) {
|
|
17224
16964
|
const issue = new Pointer([i], new MissingKey(e.ast.context?.annotations));
|
|
17225
16965
|
if (errorsAllOption) if (issues) issues.push(issue);
|
|
17226
16966
|
else issues = [issue];
|
|
17227
|
-
else return yield* fail$
|
|
16967
|
+
else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17228
16968
|
}
|
|
17229
16969
|
}
|
|
17230
16970
|
const len = input.length;
|
|
@@ -17235,18 +16975,18 @@ var Arrays = class Arrays extends Base {
|
|
|
17235
16975
|
const eff = head.parser(some(input[i]), options);
|
|
17236
16976
|
const exit$3 = effectIsExit(eff) ? eff : yield* exit(eff);
|
|
17237
16977
|
if (exit$3._tag === "Failure") {
|
|
17238
|
-
const issueRest = findError
|
|
17239
|
-
if (isFailure$
|
|
16978
|
+
const issueRest = findError(exit$3.cause);
|
|
16979
|
+
if (isFailure$1(issueRest)) return yield* exit$3;
|
|
17240
16980
|
const issue = new Pointer([i], issueRest.success);
|
|
17241
16981
|
if (errorsAllOption) if (issues) issues.push(issue);
|
|
17242
16982
|
else issues = [issue];
|
|
17243
|
-
else return yield* fail$
|
|
16983
|
+
else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17244
16984
|
} else if (exit$3.value._tag === "Some") output[i] = exit$3.value.value;
|
|
17245
16985
|
else {
|
|
17246
16986
|
const issue = new Pointer([i], new MissingKey(keyAnnotations));
|
|
17247
16987
|
if (errorsAllOption) if (issues) issues.push(issue);
|
|
17248
16988
|
else issues = [issue];
|
|
17249
|
-
else return yield* fail$
|
|
16989
|
+
else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17250
16990
|
}
|
|
17251
16991
|
}
|
|
17252
16992
|
for (let j = 0; j < tail.length; j++) {
|
|
@@ -17258,18 +16998,18 @@ var Arrays = class Arrays extends Base {
|
|
|
17258
16998
|
const eff = tailj.parser(some(input[index]), options);
|
|
17259
16999
|
const exit$5 = effectIsExit(eff) ? eff : yield* exit(eff);
|
|
17260
17000
|
if (exit$5._tag === "Failure") {
|
|
17261
|
-
const issueRest = findError
|
|
17262
|
-
if (isFailure$
|
|
17001
|
+
const issueRest = findError(exit$5.cause);
|
|
17002
|
+
if (isFailure$1(issueRest)) return yield* exit$5;
|
|
17263
17003
|
const issue = new Pointer([index], issueRest.success);
|
|
17264
17004
|
if (errorsAllOption) if (issues) issues.push(issue);
|
|
17265
17005
|
else issues = [issue];
|
|
17266
|
-
else return yield* fail$
|
|
17006
|
+
else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17267
17007
|
} else if (exit$5.value._tag === "Some") output[index] = exit$5.value.value;
|
|
17268
17008
|
else {
|
|
17269
17009
|
const issue = new Pointer([index], new MissingKey(keyAnnotations));
|
|
17270
17010
|
if (errorsAllOption) if (issues) issues.push(issue);
|
|
17271
17011
|
else issues = [issue];
|
|
17272
|
-
else return yield* fail$
|
|
17012
|
+
else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17273
17013
|
}
|
|
17274
17014
|
}
|
|
17275
17015
|
}
|
|
@@ -17277,9 +17017,9 @@ var Arrays = class Arrays extends Base {
|
|
|
17277
17017
|
const issue = new Pointer([i], new UnexpectedKey(ast, input[i]));
|
|
17278
17018
|
if (errorsAllOption) if (issues) issues.push(issue);
|
|
17279
17019
|
else issues = [issue];
|
|
17280
|
-
else return yield* fail$
|
|
17020
|
+
else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17281
17021
|
}
|
|
17282
|
-
if (issues) return yield* fail$
|
|
17022
|
+
if (issues) return yield* fail$3(new Composite(ast, oinput, issues));
|
|
17283
17023
|
return some(output);
|
|
17284
17024
|
});
|
|
17285
17025
|
}
|
|
@@ -17460,7 +17200,7 @@ var Objects = class Objects extends Base {
|
|
|
17460
17200
|
return fnUntracedEager(function* (oinput, options) {
|
|
17461
17201
|
if (oinput._tag === "None") return oinput;
|
|
17462
17202
|
const input = oinput.value;
|
|
17463
|
-
if (!(typeof input === "object" && input !== null && !Array.isArray(input))) return yield* fail$
|
|
17203
|
+
if (!(typeof input === "object" && input !== null && !Array.isArray(input))) return yield* fail$3(new InvalidType(ast, oinput));
|
|
17464
17204
|
const out = {};
|
|
17465
17205
|
let issues;
|
|
17466
17206
|
const errorsAllOption = options.errors === "all";
|
|
@@ -17477,7 +17217,7 @@ var Objects = class Objects extends Base {
|
|
|
17477
17217
|
if (issues) issues.push(issue);
|
|
17478
17218
|
else issues = [issue];
|
|
17479
17219
|
continue;
|
|
17480
|
-
} else return yield* fail$
|
|
17220
|
+
} else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17481
17221
|
} else set$2(out, key, input[key]);
|
|
17482
17222
|
}
|
|
17483
17223
|
}
|
|
@@ -17487,14 +17227,14 @@ var Objects = class Objects extends Base {
|
|
|
17487
17227
|
const eff = p.parser(value, options);
|
|
17488
17228
|
const exit$4 = effectIsExit(eff) ? eff : yield* exit(eff);
|
|
17489
17229
|
if (exit$4._tag === "Failure") {
|
|
17490
|
-
const issueProp = findError
|
|
17491
|
-
if (isFailure$
|
|
17230
|
+
const issueProp = findError(exit$4.cause);
|
|
17231
|
+
if (isFailure$1(issueProp)) return yield* exit$4;
|
|
17492
17232
|
const issue = new Pointer([p.name], issueProp.success);
|
|
17493
17233
|
if (errorsAllOption) {
|
|
17494
17234
|
if (issues) issues.push(issue);
|
|
17495
17235
|
else issues = [issue];
|
|
17496
17236
|
continue;
|
|
17497
|
-
} else return yield* fail$
|
|
17237
|
+
} else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17498
17238
|
} else if (exit$4.value._tag === "Some") set$2(out, p.name, exit$4.value.value);
|
|
17499
17239
|
else if (!isOptional(p.type)) {
|
|
17500
17240
|
const issue = new Pointer([p.name], new MissingKey(p.type.context?.annotations));
|
|
@@ -17502,7 +17242,7 @@ var Objects = class Objects extends Base {
|
|
|
17502
17242
|
if (issues) issues.push(issue);
|
|
17503
17243
|
else issues = [issue];
|
|
17504
17244
|
continue;
|
|
17505
|
-
} else return yield* fail$
|
|
17245
|
+
} else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17506
17246
|
}
|
|
17507
17247
|
}
|
|
17508
17248
|
if (indexCount > 0) for (let i = 0; i < indexCount; i++) {
|
|
@@ -17513,28 +17253,28 @@ var Objects = class Objects extends Base {
|
|
|
17513
17253
|
const effKey = recur(indexSignatureParameterFromString(is.parameter))(some(key), options);
|
|
17514
17254
|
const exitKey = effectIsExit(effKey) ? effKey : yield* exit(effKey);
|
|
17515
17255
|
if (exitKey._tag === "Failure") {
|
|
17516
|
-
const issueKey = findError
|
|
17517
|
-
if (isFailure$
|
|
17256
|
+
const issueKey = findError(exitKey.cause);
|
|
17257
|
+
if (isFailure$1(issueKey)) return yield* exitKey;
|
|
17518
17258
|
const issue = new Pointer([key], issueKey.success);
|
|
17519
17259
|
if (errorsAllOption) {
|
|
17520
17260
|
if (issues) issues.push(issue);
|
|
17521
17261
|
else issues = [issue];
|
|
17522
17262
|
continue;
|
|
17523
17263
|
}
|
|
17524
|
-
return yield* fail$
|
|
17264
|
+
return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17525
17265
|
}
|
|
17526
17266
|
const value = some(input[key]);
|
|
17527
17267
|
const effValue = recur(is.type)(value, options);
|
|
17528
17268
|
const exitValue = effectIsExit(effValue) ? effValue : yield* exit(effValue);
|
|
17529
17269
|
if (exitValue._tag === "Failure") {
|
|
17530
|
-
const issueValue = findError
|
|
17531
|
-
if (isFailure$
|
|
17270
|
+
const issueValue = findError(exitValue.cause);
|
|
17271
|
+
if (isFailure$1(issueValue)) return yield* exitValue;
|
|
17532
17272
|
const issue = new Pointer([key], issueValue.success);
|
|
17533
17273
|
if (errorsAllOption) {
|
|
17534
17274
|
if (issues) issues.push(issue);
|
|
17535
17275
|
else issues = [issue];
|
|
17536
17276
|
continue;
|
|
17537
|
-
} else return yield* fail$
|
|
17277
|
+
} else return yield* fail$3(new Composite(ast, oinput, [issue]));
|
|
17538
17278
|
} else if (exitKey.value._tag === "Some" && exitValue.value._tag === "Some") {
|
|
17539
17279
|
const k2 = exitKey.value.value;
|
|
17540
17280
|
const v2 = exitValue.value.value;
|
|
@@ -17545,7 +17285,7 @@ var Objects = class Objects extends Base {
|
|
|
17545
17285
|
}
|
|
17546
17286
|
}
|
|
17547
17287
|
}
|
|
17548
|
-
if (issues) return yield* fail$
|
|
17288
|
+
if (issues) return yield* fail$3(new Composite(ast, oinput, issues));
|
|
17549
17289
|
if (options.propertyOrder === "original") {
|
|
17550
17290
|
const keys = (inputKeys ?? Reflect.ownKeys(input)).concat(expectedKeys);
|
|
17551
17291
|
const preserved = {};
|
|
@@ -17780,15 +17520,15 @@ var Union$1 = class Union$1 extends Base {
|
|
|
17780
17520
|
const eff = recur(candidate)(oinput, options);
|
|
17781
17521
|
const exit$2 = effectIsExit(eff) ? eff : yield* exit(eff);
|
|
17782
17522
|
if (exit$2._tag === "Failure") {
|
|
17783
|
-
const issueResult = findError
|
|
17784
|
-
if (isFailure$
|
|
17523
|
+
const issueResult = findError(exit$2.cause);
|
|
17524
|
+
if (isFailure$1(issueResult)) return yield* exit$2;
|
|
17785
17525
|
if (issues) issues.push(issueResult.success);
|
|
17786
17526
|
else issues = [issueResult.success];
|
|
17787
17527
|
continue;
|
|
17788
17528
|
} else {
|
|
17789
17529
|
if (tracking.out && oneOf) {
|
|
17790
17530
|
tracking.successes.push(candidate);
|
|
17791
|
-
return yield* fail$
|
|
17531
|
+
return yield* fail$3(new OneOf(ast, input, tracking.successes));
|
|
17792
17532
|
}
|
|
17793
17533
|
tracking.out = exit$2.value;
|
|
17794
17534
|
tracking.successes.push(candidate);
|
|
@@ -17796,7 +17536,7 @@ var Union$1 = class Union$1 extends Base {
|
|
|
17796
17536
|
}
|
|
17797
17537
|
}
|
|
17798
17538
|
if (tracking.out) return tracking.out;
|
|
17799
|
-
else return yield* fail$
|
|
17539
|
+
else return yield* fail$3(new AnyOf(ast, input, issues ?? []));
|
|
17800
17540
|
});
|
|
17801
17541
|
}
|
|
17802
17542
|
/** @internal */
|
|
@@ -18121,7 +17861,7 @@ function optionalKey$1(ast) {
|
|
|
18121
17861
|
/** @internal */
|
|
18122
17862
|
function withConstructorDefault$1(ast, defaultValue) {
|
|
18123
17863
|
const encoding = [new Link(unknown, new Transformation(new Getter((o) => {
|
|
18124
|
-
if (isNone(filter$
|
|
17864
|
+
if (isNone(filter$3(o, isNotUndefined))) {
|
|
18125
17865
|
const oe = defaultValue(o);
|
|
18126
17866
|
return isEffect(oe) ? oe : succeed$2(oe);
|
|
18127
17867
|
} else return succeed$2(o);
|
|
@@ -18329,13 +18069,13 @@ function fromConst(ast, value) {
|
|
|
18329
18069
|
const succeed = succeedSome(value);
|
|
18330
18070
|
return (oinput) => {
|
|
18331
18071
|
if (oinput._tag === "None") return succeedNone;
|
|
18332
|
-
return oinput.value === value ? succeed : fail$
|
|
18072
|
+
return oinput.value === value ? succeed : fail$3(new InvalidType(ast, oinput));
|
|
18333
18073
|
};
|
|
18334
18074
|
}
|
|
18335
18075
|
function fromRefinement(ast, refinement) {
|
|
18336
18076
|
return (oinput) => {
|
|
18337
18077
|
if (oinput._tag === "None") return succeedNone;
|
|
18338
|
-
return refinement(oinput.value) ? succeed$2(oinput) : fail$
|
|
18078
|
+
return refinement(oinput.value) ? succeed$2(oinput) : fail$3(new InvalidType(ast, oinput));
|
|
18339
18079
|
};
|
|
18340
18080
|
}
|
|
18341
18081
|
/** @internal */
|
|
@@ -18370,7 +18110,7 @@ const templateLiteralPartFromString = /* @__PURE__ */ toCodec((ast) => {
|
|
|
18370
18110
|
const STRING_PATTERN = "[\\s\\S]*?";
|
|
18371
18111
|
const isStringFiniteRegExp = /* @__PURE__ */ new globalThis.RegExp(`^${FINITE_PATTERN}$`);
|
|
18372
18112
|
/** @internal */
|
|
18373
|
-
function isStringFinite
|
|
18113
|
+
function isStringFinite(annotations) {
|
|
18374
18114
|
return isPattern$1(isStringFiniteRegExp, {
|
|
18375
18115
|
expected: "a string representing a finite number",
|
|
18376
18116
|
meta: {
|
|
@@ -18380,7 +18120,7 @@ function isStringFinite$1(annotations) {
|
|
|
18380
18120
|
...annotations
|
|
18381
18121
|
});
|
|
18382
18122
|
}
|
|
18383
|
-
const finiteString = /* @__PURE__ */ appendChecks(string$1, [/* @__PURE__ */ isStringFinite
|
|
18123
|
+
const finiteString = /* @__PURE__ */ appendChecks(string$1, [/* @__PURE__ */ isStringFinite()]);
|
|
18384
18124
|
const finiteToString = /* @__PURE__ */ new Link(finiteString, numberFromString);
|
|
18385
18125
|
const numberToString = /* @__PURE__ */ new Link(/* @__PURE__ */ new Union$1([finiteString, nonFiniteLiterals], "anyOf"), numberFromString);
|
|
18386
18126
|
/**
|
|
@@ -19331,7 +19071,7 @@ const SubscriptionTypeId = "~effect/PubSub/Subscription";
|
|
|
19331
19071
|
* @since 4.0.0
|
|
19332
19072
|
* @category constructors
|
|
19333
19073
|
*/
|
|
19334
|
-
const make$14 = (options) => sync(() => makePubSubUnsafe(options.atomicPubSub(), /* @__PURE__ */ new Map(), makeUnsafe$
|
|
19074
|
+
const make$14 = (options) => sync(() => makePubSubUnsafe(options.atomicPubSub(), /* @__PURE__ */ new Map(), makeUnsafe$5(), makeUnsafe$3(false), make$15(false), options.strategy()));
|
|
19335
19075
|
/**
|
|
19336
19076
|
* Creates an unbounded `PubSub`.
|
|
19337
19077
|
*
|
|
@@ -19516,7 +19256,7 @@ const takeAll$1 = (self) => suspend$3(function loop(value) {
|
|
|
19516
19256
|
return succeed$2(as);
|
|
19517
19257
|
});
|
|
19518
19258
|
const pollForItem = (self) => {
|
|
19519
|
-
const deferred = makeUnsafe$
|
|
19259
|
+
const deferred = makeUnsafe$6();
|
|
19520
19260
|
let set = self.subscribers.get(self.subscription);
|
|
19521
19261
|
if (!set) {
|
|
19522
19262
|
set = /* @__PURE__ */ new Set();
|
|
@@ -20649,7 +20389,7 @@ const MutableHashMapProto = {
|
|
|
20649
20389
|
return this.backing[Symbol.iterator]();
|
|
20650
20390
|
},
|
|
20651
20391
|
toString() {
|
|
20652
|
-
return `MutableHashMap(${format$
|
|
20392
|
+
return `MutableHashMap(${format$1(Array.from(this))})`;
|
|
20653
20393
|
},
|
|
20654
20394
|
toJSON() {
|
|
20655
20395
|
return {
|
|
@@ -21186,7 +20926,7 @@ const toTransform = (channel) => channel.transform;
|
|
|
21186
20926
|
* @category constants
|
|
21187
20927
|
* @since 2.0.0
|
|
21188
20928
|
*/
|
|
21189
|
-
const DefaultChunkSize
|
|
20929
|
+
const DefaultChunkSize = 4096;
|
|
21190
20930
|
const asyncQueue = (scope, f, options) => make$13({
|
|
21191
20931
|
capacity: options?.bufferSize,
|
|
21192
20932
|
strategy: options?.strategy
|
|
@@ -21268,7 +21008,7 @@ const suspend$2 = (evaluate) => fromTransform$1((upstream, scope) => suspend$3((
|
|
|
21268
21008
|
* @since 2.0.0
|
|
21269
21009
|
* @category constructors
|
|
21270
21010
|
*/
|
|
21271
|
-
const fromIteratorArray = (iterator, chunkSize = DefaultChunkSize
|
|
21011
|
+
const fromIteratorArray = (iterator, chunkSize = DefaultChunkSize) => fromPull$1(sync(() => {
|
|
21272
21012
|
const iter = iterator();
|
|
21273
21013
|
let done = none();
|
|
21274
21014
|
return suspend$3(() => {
|
|
@@ -21301,7 +21041,7 @@ const fromIteratorArray = (iterator, chunkSize = DefaultChunkSize$1) => fromPull
|
|
|
21301
21041
|
* @category constructors
|
|
21302
21042
|
* @since 2.0.0
|
|
21303
21043
|
*/
|
|
21304
|
-
const fromIterableArray = (iterable, chunkSize = DefaultChunkSize
|
|
21044
|
+
const fromIterableArray = (iterable, chunkSize = DefaultChunkSize) => fromIteratorArray(() => iterable[Symbol.iterator](), chunkSize);
|
|
21305
21045
|
/**
|
|
21306
21046
|
* Creates a `Channel` that emits a single value and then ends.
|
|
21307
21047
|
*
|
|
@@ -21369,7 +21109,7 @@ const empty$1 = /* @__PURE__ */ fromPull$1(/* @__PURE__ */ succeed$2(/* @__PURE_
|
|
|
21369
21109
|
* @since 2.0.0
|
|
21370
21110
|
* @category constructors
|
|
21371
21111
|
*/
|
|
21372
|
-
const fail$2 = (error) => fromPull$1(succeed$2(fail$
|
|
21112
|
+
const fail$2 = (error) => fromPull$1(succeed$2(fail$3(error)));
|
|
21373
21113
|
/**
|
|
21374
21114
|
* Constructs a channel that fails immediately with the specified `Cause`.
|
|
21375
21115
|
*
|
|
@@ -21417,7 +21157,7 @@ const failCause = (cause) => fromPull$1(failCause$2(cause));
|
|
|
21417
21157
|
* @since 2.0.0
|
|
21418
21158
|
* @category constructors
|
|
21419
21159
|
*/
|
|
21420
|
-
const die$1 = (defect) => failCause(die$
|
|
21160
|
+
const die$1 = (defect) => failCause(die$3(defect));
|
|
21421
21161
|
/**
|
|
21422
21162
|
* Use an effect to write a single value to the channel.
|
|
21423
21163
|
*
|
|
@@ -21948,12 +21688,12 @@ const mergeAll = /* @__PURE__ */ dual(2, (channels, { bufferSize = 16, concurren
|
|
|
21948
21688
|
}
|
|
21949
21689
|
const fiber = yield* childPull.pipe(tap(() => yieldNow), flatMap$2((value) => offer(queue, value)), forever({ disableYield: true }), onError(fnUntraced(function* (cause) {
|
|
21950
21690
|
const halt = filterDone(cause);
|
|
21951
|
-
yield* exit(close(childScope, !isFailure$
|
|
21691
|
+
yield* exit(close(childScope, !isFailure$1(halt) ? succeed$5(halt.success.value) : failCause$4(halt.failure)));
|
|
21952
21692
|
if (!fibers.has(fiber)) return;
|
|
21953
21693
|
fibers.delete(fiber);
|
|
21954
21694
|
if (semaphore) yield* semaphore.release(1);
|
|
21955
21695
|
if (fibers.size === 0) yield* doneLatch.open;
|
|
21956
|
-
if (isSuccess$
|
|
21696
|
+
if (isSuccess$1(halt)) return;
|
|
21957
21697
|
return yield* failCause$1(queue, cause);
|
|
21958
21698
|
})), forkChild);
|
|
21959
21699
|
doneLatch.closeUnsafe();
|
|
@@ -22159,7 +21899,7 @@ const unwrap$3 = (channel) => fromTransform$1((upstream, scope) => {
|
|
|
22159
21899
|
*/
|
|
22160
21900
|
const onExit$1 = /* @__PURE__ */ dual(2, (self, finalizer) => fromTransformBracket((upstream, scope, forkedScope) => addFinalizerExit(forkedScope, finalizer).pipe(andThen(toTransform(self)(upstream, scope)))));
|
|
22161
21901
|
const runWith = (self, f, onHalt) => suspend$3(() => {
|
|
22162
|
-
const scope = makeUnsafe$
|
|
21902
|
+
const scope = makeUnsafe$5();
|
|
22163
21903
|
return catchDone(flatMap$2(toTransform(self)(done$1(), scope), f), onHalt ? onHalt : succeed$2).pipe(onExit$2((exit) => close(scope, exit)));
|
|
22164
21904
|
});
|
|
22165
21905
|
/**
|
|
@@ -22468,8 +22208,8 @@ const getState = (self) => uninterruptibleMask((restore) => {
|
|
|
22468
22208
|
self.state.refCount++;
|
|
22469
22209
|
return self.state.fiber ? as(interrupt(self.state.fiber), self.state) : succeed$2(self.state);
|
|
22470
22210
|
case "Empty": {
|
|
22471
|
-
const scope = makeUnsafe$
|
|
22472
|
-
return self.semaphore.withPermits(1)(restore(provideServices(self.acquire, add
|
|
22211
|
+
const scope = makeUnsafe$5();
|
|
22212
|
+
return self.semaphore.withPermits(1)(restore(provideServices(self.acquire, add(self.services, Scope, scope))).pipe(map$3((value) => {
|
|
22473
22213
|
const state = {
|
|
22474
22214
|
_tag: "Acquired",
|
|
22475
22215
|
value,
|
|
@@ -22489,7 +22229,7 @@ const get$1 = /* @__PURE__ */ fnUntraced(function* (self_) {
|
|
|
22489
22229
|
const self = self_;
|
|
22490
22230
|
const state = yield* getState(self);
|
|
22491
22231
|
const scope$3 = yield* scope;
|
|
22492
|
-
const isFinite = self.idleTimeToLive !== void 0 && isFinite
|
|
22232
|
+
const isFinite$1 = self.idleTimeToLive !== void 0 && isFinite(self.idleTimeToLive);
|
|
22493
22233
|
yield* addFinalizerExit(scope$3, () => {
|
|
22494
22234
|
state.refCount--;
|
|
22495
22235
|
if (state.refCount > 0) return void_$1;
|
|
@@ -22497,7 +22237,7 @@ const get$1 = /* @__PURE__ */ fnUntraced(function* (self_) {
|
|
|
22497
22237
|
self.state = stateEmpty;
|
|
22498
22238
|
return close(state.scope, void_$2);
|
|
22499
22239
|
} else if (state.invalidated) return close(state.scope, void_$2);
|
|
22500
|
-
else if (!isFinite) return void_$1;
|
|
22240
|
+
else if (!isFinite$1) return void_$1;
|
|
22501
22241
|
state.fiber = sleep(self.idleTimeToLive).pipe(flatMap$2(() => {
|
|
22502
22242
|
if (self.state._tag === "Acquired" && self.state.refCount === 0) {
|
|
22503
22243
|
self.state = stateEmpty;
|
|
@@ -23092,7 +22832,7 @@ const unwrap$1 = (effect) => fromChannel(unwrap$3(map$3(effect, toChannel)));
|
|
|
23092
22832
|
*/
|
|
23093
22833
|
const map$1 = /* @__PURE__ */ dual(2, (self, f) => suspend$1(() => {
|
|
23094
22834
|
let i = 0;
|
|
23095
|
-
return fromChannel(map$2(self.channel, map$
|
|
22835
|
+
return fromChannel(map$2(self.channel, map$5((o) => f(o, i++))));
|
|
23096
22836
|
}));
|
|
23097
22837
|
/**
|
|
23098
22838
|
* Maps each element to a stream and concatenates the results in order.
|
|
@@ -23223,7 +22963,7 @@ const transduce = /* @__PURE__ */ dual(2, (self, sink) => transformPull(self, (u
|
|
|
23223
22963
|
}
|
|
23224
22964
|
return upstream;
|
|
23225
22965
|
}).pipe(catch_((error) => {
|
|
23226
|
-
done = fail$
|
|
22966
|
+
done = fail$5(error);
|
|
23227
22967
|
return done$1();
|
|
23228
22968
|
}));
|
|
23229
22969
|
const pull = map$3(suspend$3(() => sink.transform(upstreamWithLeftover, scope)), ([value, leftover_]) => {
|
|
@@ -23650,7 +23390,7 @@ const FileSystem = /* @__PURE__ */ Service("effect/platform/FileSystem");
|
|
|
23650
23390
|
const make$7 = (impl) => FileSystem.of({
|
|
23651
23391
|
...impl,
|
|
23652
23392
|
[TypeId$5]: TypeId$5,
|
|
23653
|
-
exists: (path) => pipe(impl.access(path), as(true), catchTag("PlatformError", (e) => e.reason._tag === "NotFound" ? succeed$2(false) : fail$
|
|
23393
|
+
exists: (path) => pipe(impl.access(path), as(true), catchTag("PlatformError", (e) => e.reason._tag === "NotFound" ? succeed$2(false) : fail$3(e))),
|
|
23654
23394
|
readFileString: (path, encoding) => flatMap$2(impl.readFile(path), (_) => try_({
|
|
23655
23395
|
try: () => new TextDecoder(encoding).decode(_),
|
|
23656
23396
|
catch: (cause) => badArgument({
|
|
@@ -23984,7 +23724,7 @@ function is$1(schema) {
|
|
|
23984
23724
|
function _is(ast) {
|
|
23985
23725
|
const parser = asExit(run(toType$1(ast)));
|
|
23986
23726
|
return (input) => {
|
|
23987
|
-
return isSuccess
|
|
23727
|
+
return isSuccess(parser(input, defaultParseOptions));
|
|
23988
23728
|
};
|
|
23989
23729
|
}
|
|
23990
23730
|
/**
|
|
@@ -24019,7 +23759,7 @@ function encodeUnknownEffect$1(schema) {
|
|
|
24019
23759
|
function run(ast) {
|
|
24020
23760
|
const parser = recur$1(ast);
|
|
24021
23761
|
return (input, options) => flatMapEager(parser(some(input), options ?? defaultParseOptions), (oa) => {
|
|
24022
|
-
if (oa._tag === "None") return fail$
|
|
23762
|
+
if (oa._tag === "None") return fail$3(new InvalidValue(oa));
|
|
24023
23763
|
return succeed$2(oa.value);
|
|
24024
23764
|
});
|
|
24025
23765
|
}
|
|
@@ -24033,11 +23773,11 @@ const recur$1 = /* @__PURE__ */ memoize((ast) => {
|
|
|
24033
23773
|
let parser;
|
|
24034
23774
|
if (!ast.context && !ast.encoding && !ast.checks) return (ou, options) => {
|
|
24035
23775
|
parser ??= ast.getParser(recur$1);
|
|
24036
|
-
return parser(ou, resolve
|
|
23776
|
+
return parser(ou, resolve(ast)?.["parseOptions"] ?? options);
|
|
24037
23777
|
};
|
|
24038
23778
|
const isStructural = isArrays(ast) || isObjects(ast) || isDeclaration(ast) && ast.typeParameters.length > 0;
|
|
24039
23779
|
return (ou, options) => {
|
|
24040
|
-
options = resolve
|
|
23780
|
+
options = resolve(ast)?.["parseOptions"] ?? options;
|
|
24041
23781
|
const encoding = ast.encoding;
|
|
24042
23782
|
let srou;
|
|
24043
23783
|
if (encoding) {
|
|
@@ -24062,14 +23802,14 @@ const recur$1 = /* @__PURE__ */ memoize((ast) => {
|
|
|
24062
23802
|
if (options?.errors === "all" && isStructural && isSome(ou)) sroa = catchEager(sroa, (issue) => {
|
|
24063
23803
|
const issues = [];
|
|
24064
23804
|
collectIssues(checks.filter((check) => check.annotations?.[STRUCTURAL_ANNOTATION_KEY]), ou.value, issues, ast, options);
|
|
24065
|
-
return fail$
|
|
23805
|
+
return fail$3(isArrayNonEmpty(issues) ? issue._tag === "Composite" && issue.ast === ast ? new Composite(ast, issue.actual, [...issue.issues, ...issues]) : new Composite(ast, ou, [issue, ...issues]) : issue);
|
|
24066
23806
|
});
|
|
24067
23807
|
sroa = flatMapEager(sroa, (oa) => {
|
|
24068
23808
|
if (isSome(oa)) {
|
|
24069
23809
|
const value = oa.value;
|
|
24070
23810
|
const issues = [];
|
|
24071
23811
|
collectIssues(checks, value, issues, ast, options);
|
|
24072
|
-
if (isArrayNonEmpty(issues)) return fail$
|
|
23812
|
+
if (isArrayNonEmpty(issues)) return fail$3(new Composite(ast, oa, issues));
|
|
24073
23813
|
}
|
|
24074
23814
|
return succeed$2(oa);
|
|
24075
23815
|
});
|
|
@@ -24245,7 +23985,7 @@ function fromASTs(asts) {
|
|
|
24245
23985
|
const uniqueReferences = /* @__PURE__ */ new Set();
|
|
24246
23986
|
const visiting = /* @__PURE__ */ new Set();
|
|
24247
23987
|
return {
|
|
24248
|
-
representations: map$
|
|
23988
|
+
representations: map$5(asts, (ast) => recur(ast)),
|
|
24249
23989
|
references
|
|
24250
23990
|
};
|
|
24251
23991
|
function gen(prefix = "_") {
|
|
@@ -24262,7 +24002,7 @@ function fromASTs(asts) {
|
|
|
24262
24002
|
$ref: found
|
|
24263
24003
|
};
|
|
24264
24004
|
const last = getLastEncoding(ast);
|
|
24265
|
-
const identifier = resolveIdentifier
|
|
24005
|
+
const identifier = resolveIdentifier(ast) ?? prefix;
|
|
24266
24006
|
if (ast !== last) return recur(last, identifier);
|
|
24267
24007
|
if (identifier !== void 0) {
|
|
24268
24008
|
const reference = gen(identifier);
|
|
@@ -24458,7 +24198,7 @@ const fromASTBlacklist = /* @__PURE__ */ new Set([
|
|
|
24458
24198
|
]);
|
|
24459
24199
|
function fromASTAnnotations(annotations) {
|
|
24460
24200
|
if (annotations !== void 0) {
|
|
24461
|
-
const filtered = filter$
|
|
24201
|
+
const filtered = filter$2(annotations, (_, k) => !fromASTBlacklist.has(k));
|
|
24462
24202
|
if (!isEmptyRecord(filtered)) return { annotations: filtered };
|
|
24463
24203
|
}
|
|
24464
24204
|
}
|
|
@@ -24478,10 +24218,10 @@ function toJsonSchemaDocument$1(document, options) {
|
|
|
24478
24218
|
function toJsonSchemaMultiDocument(multiDocument, options) {
|
|
24479
24219
|
const generateDescriptions = options?.generateDescriptions ?? false;
|
|
24480
24220
|
const additionalProperties = options?.additionalProperties ?? false;
|
|
24481
|
-
const definitions = map$
|
|
24221
|
+
const definitions = map$6(multiDocument.references, (d) => recur(d));
|
|
24482
24222
|
return {
|
|
24483
24223
|
dialect: "draft-2020-12",
|
|
24484
|
-
schemas: map$
|
|
24224
|
+
schemas: map$5(multiDocument.representations, (s) => recur(s)),
|
|
24485
24225
|
definitions
|
|
24486
24226
|
};
|
|
24487
24227
|
function recur(s) {
|
|
@@ -24605,7 +24345,7 @@ function toJsonSchemaMultiDocument(multiDocument, options) {
|
|
|
24605
24345
|
const required = [];
|
|
24606
24346
|
for (const ps of schema.propertySignatures) {
|
|
24607
24347
|
const name = ps.name;
|
|
24608
|
-
if (typeof name !== "string") throw new globalThis.Error(`Unsupported property signature name: ${format$
|
|
24348
|
+
if (typeof name !== "string") throw new globalThis.Error(`Unsupported property signature name: ${format$1(name)}`);
|
|
24609
24349
|
const v = recur(ps.type);
|
|
24610
24350
|
const a = collectJsonSchemaAnnotations(ps.annotations);
|
|
24611
24351
|
properties[name] = a ? appendJsonSchema(v, a) : v;
|
|
@@ -24807,7 +24547,7 @@ function declareConstructor() {
|
|
|
24807
24547
|
* @since 4.0.0
|
|
24808
24548
|
*/
|
|
24809
24549
|
function declare(is, annotations) {
|
|
24810
|
-
return declareConstructor()([], () => (input, ast) => is(input) ? succeed$2(input) : fail$
|
|
24550
|
+
return declareConstructor()([], () => (input, ast) => is(input) ? succeed$2(input) : fail$3(new InvalidType(ast, some(input))), annotations);
|
|
24811
24551
|
}
|
|
24812
24552
|
const SchemaErrorTypeId = "~effect/Schema/SchemaError";
|
|
24813
24553
|
/**
|
|
@@ -25384,39 +25124,12 @@ function isTrimmed(annotations) {
|
|
|
25384
25124
|
*/
|
|
25385
25125
|
const isPattern = isPattern$1;
|
|
25386
25126
|
/**
|
|
25387
|
-
* Validates that a number is finite (not `Infinity`, `-Infinity`, or `NaN`).
|
|
25388
|
-
*
|
|
25389
|
-
* **JSON Schema**
|
|
25390
|
-
*
|
|
25391
|
-
* This check does not have a direct JSON Schema equivalent, but ensures the
|
|
25392
|
-
* number is valid and finite.
|
|
25393
|
-
*
|
|
25394
|
-
* **Arbitrary**
|
|
25395
|
-
*
|
|
25396
|
-
* When generating test data with fast-check, this applies `noDefaultInfinity`
|
|
25397
|
-
* and `noNaN` constraints to ensure generated numbers are finite.
|
|
25398
|
-
*
|
|
25399
|
-
* @category Number checks
|
|
25400
|
-
* @since 4.0.0
|
|
25401
|
-
*/
|
|
25402
|
-
function isFinite(annotations) {
|
|
25403
|
-
return makeFilter((n) => globalThis.Number.isFinite(n), {
|
|
25404
|
-
expected: "a finite number",
|
|
25405
|
-
meta: { _tag: "isFinite" },
|
|
25406
|
-
toArbitraryConstraint: { number: {
|
|
25407
|
-
noDefaultInfinity: true,
|
|
25408
|
-
noNaN: true
|
|
25409
|
-
} },
|
|
25410
|
-
...annotations
|
|
25411
|
-
});
|
|
25412
|
-
}
|
|
25413
|
-
/**
|
|
25414
25127
|
* @category Order checks
|
|
25415
25128
|
* @since 4.0.0
|
|
25416
25129
|
*/
|
|
25417
25130
|
function makeIsGreaterThan(options) {
|
|
25418
|
-
const gt = isGreaterThan$
|
|
25419
|
-
const formatter = options.formatter ?? format$
|
|
25131
|
+
const gt = isGreaterThan$1(options.order);
|
|
25132
|
+
const formatter = options.formatter ?? format$1;
|
|
25420
25133
|
return (exclusiveMinimum, annotations) => {
|
|
25421
25134
|
return makeFilter((input) => gt(input, exclusiveMinimum), {
|
|
25422
25135
|
expected: `a value greater than ${formatter(exclusiveMinimum)}`,
|
|
@@ -25430,8 +25143,8 @@ function makeIsGreaterThan(options) {
|
|
|
25430
25143
|
* @since 4.0.0
|
|
25431
25144
|
*/
|
|
25432
25145
|
function makeIsGreaterThanOrEqualTo(options) {
|
|
25433
|
-
const gte = isGreaterThanOrEqualTo$
|
|
25434
|
-
const formatter = options.formatter ?? format$
|
|
25146
|
+
const gte = isGreaterThanOrEqualTo$1(options.order);
|
|
25147
|
+
const formatter = options.formatter ?? format$1;
|
|
25435
25148
|
return (minimum, annotations) => {
|
|
25436
25149
|
return makeFilter((input) => gte(input, minimum), {
|
|
25437
25150
|
expected: `a value greater than or equal to ${formatter(minimum)}`,
|
|
@@ -25445,8 +25158,8 @@ function makeIsGreaterThanOrEqualTo(options) {
|
|
|
25445
25158
|
* @since 4.0.0
|
|
25446
25159
|
*/
|
|
25447
25160
|
function makeIsLessThanOrEqualTo(options) {
|
|
25448
|
-
const lte = isLessThanOrEqualTo$
|
|
25449
|
-
const formatter = options.formatter ?? format$
|
|
25161
|
+
const lte = isLessThanOrEqualTo$1(options.order);
|
|
25162
|
+
const formatter = options.formatter ?? format$1;
|
|
25450
25163
|
return (maximum, annotations) => {
|
|
25451
25164
|
return makeFilter((input) => lte(input, maximum), {
|
|
25452
25165
|
expected: `a value less than or equal to ${formatter(maximum)}`,
|
|
@@ -25460,11 +25173,11 @@ function makeIsLessThanOrEqualTo(options) {
|
|
|
25460
25173
|
* @since 4.0.0
|
|
25461
25174
|
*/
|
|
25462
25175
|
function makeIsBetween(deriveOptions) {
|
|
25463
|
-
const greaterThanOrEqualTo = isGreaterThanOrEqualTo$
|
|
25464
|
-
const greaterThan = isGreaterThan$
|
|
25465
|
-
const lessThanOrEqualTo = isLessThanOrEqualTo$
|
|
25466
|
-
const lessThan = isLessThan$
|
|
25467
|
-
const formatter = deriveOptions.formatter ?? format$
|
|
25176
|
+
const greaterThanOrEqualTo = isGreaterThanOrEqualTo$1(deriveOptions.order);
|
|
25177
|
+
const greaterThan = isGreaterThan$1(deriveOptions.order);
|
|
25178
|
+
const lessThanOrEqualTo = isLessThanOrEqualTo$1(deriveOptions.order);
|
|
25179
|
+
const lessThan = isLessThan$1(deriveOptions.order);
|
|
25180
|
+
const formatter = deriveOptions.formatter ?? format$1;
|
|
25468
25181
|
return (options, annotations) => {
|
|
25469
25182
|
const gte = options.exclusiveMinimum ? greaterThan : greaterThanOrEqualTo;
|
|
25470
25183
|
const lte = options.exclusiveMaximum ? lessThan : lessThanOrEqualTo;
|
|
@@ -25491,7 +25204,7 @@ function makeIsBetween(deriveOptions) {
|
|
|
25491
25204
|
* @category Number checks
|
|
25492
25205
|
* @since 4.0.0
|
|
25493
25206
|
*/
|
|
25494
|
-
const isGreaterThan
|
|
25207
|
+
const isGreaterThan = /* @__PURE__ */ makeIsGreaterThan({
|
|
25495
25208
|
order: Number$5,
|
|
25496
25209
|
annotate: (exclusiveMinimum) => ({
|
|
25497
25210
|
meta: {
|
|
@@ -25616,31 +25329,6 @@ function isInt(annotations) {
|
|
|
25616
25329
|
});
|
|
25617
25330
|
}
|
|
25618
25331
|
/**
|
|
25619
|
-
* Validates that a Date object represents a valid date (not an invalid date
|
|
25620
|
-
* like `new Date("invalid")`).
|
|
25621
|
-
*
|
|
25622
|
-
* **JSON Schema**
|
|
25623
|
-
*
|
|
25624
|
-
* This check does not have a direct JSON Schema equivalent, as JSON Schema
|
|
25625
|
-
* validates date strings, not Date objects.
|
|
25626
|
-
*
|
|
25627
|
-
* **Arbitrary**
|
|
25628
|
-
*
|
|
25629
|
-
* When generating test data with fast-check, this applies a `noInvalidDate`
|
|
25630
|
-
* constraint to ensure generated Date objects are valid.
|
|
25631
|
-
*
|
|
25632
|
-
* @category Date checks
|
|
25633
|
-
* @since 4.0.0
|
|
25634
|
-
*/
|
|
25635
|
-
function isDateValid(annotations) {
|
|
25636
|
-
return makeFilter((date) => !isNaN(date.getTime()), {
|
|
25637
|
-
expected: "a valid date",
|
|
25638
|
-
meta: { _tag: "isDateValid" },
|
|
25639
|
-
toArbitraryConstraint: { date: { noInvalidDate: true } },
|
|
25640
|
-
...annotations
|
|
25641
|
-
});
|
|
25642
|
-
}
|
|
25643
|
-
/**
|
|
25644
25332
|
* Validates that a value has at least the specified length. Works with strings
|
|
25645
25333
|
* and arrays.
|
|
25646
25334
|
*
|
|
@@ -25795,7 +25483,7 @@ const defectTransformation = /* @__PURE__ */ new Transformation(/* @__PURE__ */
|
|
|
25795
25483
|
try {
|
|
25796
25484
|
return JSON.parse(JSON.stringify(u));
|
|
25797
25485
|
} catch {
|
|
25798
|
-
return format$
|
|
25486
|
+
return format$1(u);
|
|
25799
25487
|
}
|
|
25800
25488
|
}));
|
|
25801
25489
|
/**
|
|
@@ -25844,27 +25532,6 @@ const URL$1 = /* @__PURE__ */ instanceOf(globalThis.URL, {
|
|
|
25844
25532
|
*/
|
|
25845
25533
|
const URLFromString = /* @__PURE__ */ String$1.annotate({ expected: "a string that will be decoded as a URL" }).pipe(/* @__PURE__ */ decodeTo(URL$1, urlFromString));
|
|
25846
25534
|
/**
|
|
25847
|
-
* A schema for **valid** JavaScript `Date` objects.
|
|
25848
|
-
*
|
|
25849
|
-
* This schema accepts `Date` instances but rejects invalid dates (such as `new
|
|
25850
|
-
* Date("invalid")`).
|
|
25851
|
-
*
|
|
25852
|
-
* @since 4.0.0
|
|
25853
|
-
*/
|
|
25854
|
-
const DateValid = /* @__PURE__ */ (/* @__PURE__ */ instanceOf(globalThis.Date, {
|
|
25855
|
-
typeConstructor: { _tag: "Date" },
|
|
25856
|
-
generation: {
|
|
25857
|
-
runtime: `Schema.Date`,
|
|
25858
|
-
Type: `globalThis.Date`
|
|
25859
|
-
},
|
|
25860
|
-
expected: "Date",
|
|
25861
|
-
toCodecJson: () => link()(String$1.annotate({ expected: "a string in ISO 8601 format that will be decoded as a Date" }), transform({
|
|
25862
|
-
decode: (s) => new globalThis.Date(s),
|
|
25863
|
-
encode: formatDate
|
|
25864
|
-
})),
|
|
25865
|
-
toArbitrary: () => (fc, ctx) => fc.date(ctx?.constraints?.date)
|
|
25866
|
-
})).check(/* @__PURE__ */ isDateValid());
|
|
25867
|
-
/**
|
|
25868
25535
|
* Returns a schema that decodes a JSON string and then decodes the parsed value
|
|
25869
25536
|
* using the given schema.
|
|
25870
25537
|
*
|
|
@@ -25938,12 +25605,6 @@ globalThis.File;
|
|
|
25938
25605
|
globalThis.FormData;
|
|
25939
25606
|
globalThis.URLSearchParams;
|
|
25940
25607
|
/**
|
|
25941
|
-
* A schema for finite numbers, rejecting `NaN`, `Infinity`, and `-Infinity`.
|
|
25942
|
-
*
|
|
25943
|
-
* @since 4.0.0
|
|
25944
|
-
*/
|
|
25945
|
-
const Finite = /* @__PURE__ */ Number$1.check(/* @__PURE__ */ isFinite());
|
|
25946
|
-
/**
|
|
25947
25608
|
* A schema for integers, rejecting `NaN`, `Infinity`, and `-Infinity`.
|
|
25948
25609
|
*
|
|
25949
25610
|
* @since 4.0.0
|
|
@@ -25988,7 +25649,7 @@ function makeClass(Inherited, identifier, struct$1, annotations) {
|
|
|
25988
25649
|
}
|
|
25989
25650
|
}
|
|
25990
25651
|
toString() {
|
|
25991
|
-
return `${identifier}(${format$
|
|
25652
|
+
return `${identifier}(${format$1({ ...this })})`;
|
|
25992
25653
|
}
|
|
25993
25654
|
static [TypeId$2] = TypeId$2;
|
|
25994
25655
|
get [ClassTypeId]() {
|
|
@@ -26047,7 +25708,7 @@ function getClassSchemaFactory(from, identifier, annotations) {
|
|
|
26047
25708
|
if (memo === void 0) {
|
|
26048
25709
|
const transformation = getClassTransformation(self);
|
|
26049
25710
|
const to = make$5(new Declaration([from.ast], () => (input, ast) => {
|
|
26050
|
-
return input instanceof self || hasProperty(input, getClassTypeId(identifier)) ? succeed$2(input) : fail$
|
|
25711
|
+
return input instanceof self || hasProperty(input, getClassTypeId(identifier)) ? succeed$2(input) : fail$3(new InvalidType(ast, some(input)));
|
|
26051
25712
|
}, {
|
|
26052
25713
|
identifier,
|
|
26053
25714
|
[ClassTypeId]: ([from]) => new Link(from, transformation),
|
|
@@ -26738,7 +26399,7 @@ const orElse = /* @__PURE__ */ dual(2, (self, that) => {
|
|
|
26738
26399
|
function all(arg) {
|
|
26739
26400
|
const configs = Array.isArray(arg) ? arg : Symbol.iterator in arg ? [...arg] : arg;
|
|
26740
26401
|
if (Array.isArray(configs)) return make$3((provider) => all$1(configs.map((config) => config.parse(provider))));
|
|
26741
|
-
else return make$3((provider) => all$1(map$
|
|
26402
|
+
else return make$3((provider) => all$1(map$6(configs, (config) => config.parse(provider))));
|
|
26742
26403
|
}
|
|
26743
26404
|
function isMissingDataOnly(issue) {
|
|
26744
26405
|
switch (issue._tag) {
|
|
@@ -27030,7 +26691,7 @@ const Port = /* @__PURE__ */ Int.check(/* @__PURE__ */ isBetween({
|
|
|
27030
26691
|
* @since 4.0.0
|
|
27031
26692
|
*/
|
|
27032
26693
|
function fail(err) {
|
|
27033
|
-
return make$3(() => fail$
|
|
26694
|
+
return make$3(() => fail$3(new ConfigError(err)));
|
|
27034
26695
|
}
|
|
27035
26696
|
/**
|
|
27036
26697
|
* Creates a config that always succeeds with the given value, ignoring the
|
|
@@ -27901,7 +27562,7 @@ const SqlClient = /* @__PURE__ */ Service("effect/sql/SqlClient");
|
|
|
27901
27562
|
* @since 4.0.0
|
|
27902
27563
|
*/
|
|
27903
27564
|
const make = /* @__PURE__ */ fnUntraced(function* (options) {
|
|
27904
|
-
const getConnection = flatMap$2(serviceOption(TransactionConnection), match$
|
|
27565
|
+
const getConnection = flatMap$2(serviceOption(TransactionConnection), match$3({
|
|
27905
27566
|
onNone: () => options.acquirer,
|
|
27906
27567
|
onSome: ([conn]) => succeed$2(conn)
|
|
27907
27568
|
}));
|
|
@@ -27955,9 +27616,9 @@ const makeWithTransaction = (options) => (effect) => uninterruptibleMask((restor
|
|
|
27955
27616
|
const connOption = getOption(services, options.transactionService);
|
|
27956
27617
|
const conn = connOption._tag === "Some" ? succeed$2([void 0, connOption.value[0]]) : options.acquireConnection;
|
|
27957
27618
|
const id = connOption._tag === "Some" ? connOption.value[1] + 1 : 0;
|
|
27958
|
-
return flatMap$2(conn, ([scope, conn]) => (id === 0 ? options.begin(conn) : options.savepoint(conn, id)).pipe(flatMap$2(() => provideServices(restore(effect), add
|
|
27619
|
+
return flatMap$2(conn, ([scope, conn]) => (id === 0 ? options.begin(conn) : options.savepoint(conn, id)).pipe(flatMap$2(() => provideServices(restore(effect), add(services, options.transactionService, [conn, id]).pipe(add(ParentSpan, span)))), exit, flatMap$2((exit) => {
|
|
27959
27620
|
let effect;
|
|
27960
|
-
if (isSuccess
|
|
27621
|
+
if (isSuccess(exit)) if (id === 0) {
|
|
27961
27622
|
span.event("db.transaction.commit", clock.currentTimeNanosUnsafe());
|
|
27962
27623
|
effect = orDie(options.commit(conn));
|
|
27963
27624
|
} else {
|
|
@@ -27980,6 +27641,6 @@ var TransactionConnection = class extends Service()("effect/sql/SqlClient/Transa
|
|
|
27980
27641
|
*/
|
|
27981
27642
|
const SafeIntegers = /* @__PURE__ */ Reference("effect/sql/SqlClient/SafeIntegers", { defaultValue: () => false });
|
|
27982
27643
|
//#endregion
|
|
27983
|
-
export {
|
|
27644
|
+
export { is as $, fromInputUnsafe as $a, succeed$5 as $i, cached as $n, structure as $o, serviceOption as $r, splitLines as $t, Record as A, scope$1 as Aa, mergeAll$1 as Ai, makeUnsafe$3 as An, isNone as Ao, logError as Ar, make$7 as At, Void as B, void_$3 as Ba, provide$3 as Bi, InvalidValue as Bn, PipeInspectableProto as Bo, orElseSucceed as Br, fromIterable as Bt, Literal as C, forkDetach$1 as Ca, Class as Ci, shutdown as Cn, isFailure$1 as Co, gen as Cr, Path as Ct, Null as D, ignore$1 as Da, effectDiscard as Di, unbounded$1 as Dn, getOrElse$1 as Do, isEffect as Dr, FileTypeId as Dt, NonEmptyString as E, gen$1 as Ea, effect as Ei, publish as En, fromNullishOr$1 as Eo, interrupt$1 as Er, FileSystem as Et, Trim as F, succeedNone$1 as Fa, unwrap$4 as Fi, nominal as Fn, some as Fo, matchCauseEffect as Fr, empty as Ft, decodeTo as G, Reference as Ga, isDone as Gi, acquireUseRelease as Gn, BaseProto as Go, result as Gr, make$8 as Gt, declare as H, CurrentLogSpans as Ha, doneUnsafe as Hi, make$21 as Hn, exitSucceed as Ho, provide as Hr, fromQueue as Ht, Tuple as I, suspend$4 as Ia, Scope as Ii, transform as In, Number$5 as Io, matchEffect as Ir, fail$1 as It, decodeUnknownSync as J, empty$4 as Ja, succeed$4 as Ji, andThen as Jn, format$1 as Jo, runPromiseWith as Jr, onExit as Jt, decodeUnknownEffect as K, Service as Ka, make$25 as Ki, addFinalizer as Kn, Class$1 as Ko, runFork as Kr, merge as Kt, URLFromString as L, sync$2 as La, addFinalizer$1 as Li, transformOrFail as Ln, make$29 as Lo, never as Lr, flatMap as Lt, Struct as M, servicesWith$1 as Ma, provideMerge as Mi, BadArgument as Mn, map$7 as Mo, logWarning as Mr, concat as Mt, TaggedErrorClass as N, sleep$1 as Na, succeed$3 as Ni, badArgument as Nn, match$3 as No, map$3 as Nr, decodeText as Nt, NullOr as O, loggerMake as Oa, effectServices as Oi, make$15 as On, getOrNull as Oo, log as Or, Size as Ot, TemplateLiteral as P, succeed$6 as Pa, sync$1 as Pi, systemError as Pn, none as Po, mapError as Pr, die as Pt, fromJsonString as Q, merge$2 as Qa, isSuccess as Qi, asVoid as Qn, array as Qo, service as Qr, runForEach as Qt, Union as R, uninterruptibleMask$1 as Ra, close as Ri, parseJson as Rn, make$30 as Ro, onInterrupt as Rr, fromChannel as Rt, Int as S, forever$1 as Sa, clamp as Si, offerUnsafe as Sn, failVoid as So, forkScoped as Sr, omit as St, NonEmptyArray as T, formatLogSpan as Ta, TaggedError as Ti, unbounded as Tn, filter$3 as To, ignoreCause as Tr, FileDescriptor as Tt, decodeEffect as U, MinimumLogLevel as Ua, fail$4 as Ui, encodeBase64Url as Un, isEffect$1 as Uo, provideService as Ur, fromReadableStream as Ut, brand as V, CurrentLogAnnotations as Va, _await as Vi, makeFormatterDefault as Vn, YieldableProto as Vo, promise as Vr, fromPubSub as Vt, decodeExit as W, DisablePropagation as Wa, failCause$3 as Wi, acquireRelease as Wn, withFiber$1 as Wo, provideServices as Wr, isStream as Wt, encodeEffect as X, getUnsafe as Xa, hasInterrupts as Xi, as as Xn, symbolRedactable as Xo, scope as Xr, runCollect as Xt, encode as Y, get$3 as Ya, fail$5 as Yi, annotateLogs as Yn, redact as Yo, runSync as Yr, run$1 as Yt, encodeUnknownEffect as Z, make$27 as Za, isFailure as Zi, asSome as Zn, symbol as Zo, scoped as Zr, runFold as Zt, url as _, causePretty as _a, withFiber as _i, endUnsafe as _n, makeEquivalence$1 as _o, forEach$1 as _r, toJsonSchemaDocument as _t, makeCompilerSqlite as a, fail$6 as aa, sync as ai, make$9 as an, toMillis as ao, catchTags as ar, isUndefined as as, isMaxProperties as at, Defect as b, flatMap$4 as ba, zipWith as bi, offer as bn, makeEquivalence$2 as bo, forkDetach as br, withDecodingDefault as bt, FalseValues as c, pretty as ca, timeoutOption as ci, isSink as cn, filter$1 as co, effectify as cr, constVoid as cs, isPattern as ct, boolean as d, ConsoleRef as da, try_ as di, make$11 as dn, isArray as do, fail$3 as dr, pipe as ds, makeFilter as dt, void_$2 as ea, services as ei, suspend$1 as en, infinity as eo, callback$1 as er, symbol$1 as es, isBetween as et, map as f, CurrentLoggers as fa, uninterruptible as fi, get$2 as fn, isReadonlyArrayNonEmpty as fo, failCause$2 as fr, pipeArguments as fs, mutable as ft, unwrap as g, asSome$1 as ga, void_$1 as gi, size as gn, sort as go, fnUntraced as gr, toCodecStringTree as gt, string as h, as$1 as ha, useSpan as hi, set as hn, of as ho, fn as hr, tag as ht, defaultTransforms as i, done$1 as ia, suspend$3 as ii, get as in, seconds as io, catchTag as ir, isNullish as is, isMaxLength as it, String$1 as j, scopeAddFinalizerExit as ja, provide$2 as ji, getCurrent as jn, isSome as jo, logInfo as jr, callback as jt, Number$1 as k, onExit$3 as ka, empty$3 as ki, set$1 as kn, getOrUndefined as ko, logDebug as kr, WatchBackend as kt, TrueValues as l, squash as la, timeoutOrElse as li, fromTransform$1 as ln, flatMapNullishOr as lo, ensuring as lr, dual as ls, isSchemaError as lt, port as m, andThen$1 as ma, updateServices as mi, remove as mn, map$5 as mo, flatMap$2 as mr, suspend as mt, SqlClient as n, NoSuchElementError as na, succeed$2 as ni, transduce as nn, isZero$1 as no, catchDefect as nr, isNotNull as ns, isGreaterThanOrEqualTo as nt, layer as o, hasInterrupts$1 as oa, tap as oi, drain as on, zero$1 as oo, catch_ as or, constFalse as os, isMinLength as ot, option as p, addFinalizer$2 as pa, uninterruptibleMask as pi, make$12 as pn, makeEquivalence as po, filterOrFail as pr, optional as pt, decodeUnknownExit as q, add as qa, makeUnsafe$6 as qi, all$1 as qn, NodeInspectSymbol as qo, runPromise as qr, mkString as qt, make as r, UnknownError as ra, succeedNone as ri, unwrap$1 as rn, minutes as ro, catchFilter as rr, isNotUndefined as rs, isLessThanOrEqualTo as rt, Boolean as s, hasInterruptsOnly as sa, tapCause as si, fromChannel$1 as sn, ensure as so, die$2 as sr, constTrue as ss, isNonEmpty as st, SafeIntegers as t, Done as ta, servicesWith as ti, toReadableStreamEffect as tn, isFinite as to, catchCause as tr, hasProperty as ts, isGreaterThan as tt, all as u, ClockRef as ua, tryPromise as ui, mapDone as un, fromIterable$2 as uo, exit as ur, identity as us, link as ut, Array$1 as v, defaultLogger as va, withParentSpan as vi, failCauseUnsafe as vn, map$6 as vo, forever as vr, toType as vt, Literals as w, formatLabel as wa, Error$2 as wi, take as wn, succeed$7 as wo, ignore as wr, TypeId$4 as wt, ErrorClass as x, fnUntraced$1 as xa, catchDone as xi, offerAll as xn, fail$8 as xo, forkIn as xr, assign as xt, Boolean$1 as y, fiberInterrupt as ya, withSpan as yi, make$13 as yn, filterMap as yo, forkChild as yr, withConstructorDefault as yt, Unknown as z, updateServices$1 as za, make$24 as zi, stringifyJson as zn, strictEqual as zo, orDie as zr, fromEffect as zt };
|
|
27984
27645
|
|
|
27985
|
-
//# sourceMappingURL=SqlClient-
|
|
27646
|
+
//# sourceMappingURL=SqlClient-B-Bb00hw.mjs.map
|