lalph 0.1.44 → 0.1.46
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/cli.mjs +576 -368
- package/package.json +1 -1
- package/src/IssueSource.ts +0 -4
- package/src/Prd.ts +38 -10
- package/src/PromptGen.ts +15 -11
- package/src/Runner.ts +2 -0
- package/src/cli.ts +9 -4
package/dist/cli.mjs
CHANGED
|
@@ -1941,7 +1941,7 @@ var Class$2 = class {
|
|
|
1941
1941
|
* @category constructors
|
|
1942
1942
|
* @since 2.0.0
|
|
1943
1943
|
*/
|
|
1944
|
-
function make$
|
|
1944
|
+
function make$51(compare) {
|
|
1945
1945
|
return (self$1, that) => self$1 === that ? 0 : compare(self$1, that);
|
|
1946
1946
|
}
|
|
1947
1947
|
/**
|
|
@@ -1975,7 +1975,7 @@ function make$50(compare) {
|
|
|
1975
1975
|
* @category instances
|
|
1976
1976
|
* @since 4.0.0
|
|
1977
1977
|
*/
|
|
1978
|
-
const String$5 = /* @__PURE__ */ make$
|
|
1978
|
+
const String$5 = /* @__PURE__ */ make$51((self$1, that) => self$1 < that ? -1 : 1);
|
|
1979
1979
|
/**
|
|
1980
1980
|
* An `Order` instance for numbers that compares them numerically.
|
|
1981
1981
|
*
|
|
@@ -2011,7 +2011,7 @@ const String$5 = /* @__PURE__ */ make$50((self$1, that) => self$1 < that ? -1 :
|
|
|
2011
2011
|
* @category instances
|
|
2012
2012
|
* @since 4.0.0
|
|
2013
2013
|
*/
|
|
2014
|
-
const Number$4 = /* @__PURE__ */ make$
|
|
2014
|
+
const Number$4 = /* @__PURE__ */ make$51((self$1, that) => {
|
|
2015
2015
|
if (globalThis.Number.isNaN(self$1) && globalThis.Number.isNaN(that)) return 0;
|
|
2016
2016
|
if (globalThis.Number.isNaN(self$1)) return -1;
|
|
2017
2017
|
if (globalThis.Number.isNaN(that)) return 1;
|
|
@@ -2047,7 +2047,7 @@ const Number$4 = /* @__PURE__ */ make$50((self$1, that) => {
|
|
|
2047
2047
|
* @category instances
|
|
2048
2048
|
* @since 4.0.0
|
|
2049
2049
|
*/
|
|
2050
|
-
const BigInt$3 = /* @__PURE__ */ make$
|
|
2050
|
+
const BigInt$3 = /* @__PURE__ */ make$51((self$1, that) => self$1 < that ? -1 : 1);
|
|
2051
2051
|
/**
|
|
2052
2052
|
* Transforms an `Order` on type `A` into an `Order` on type `B` by providing a function that
|
|
2053
2053
|
* maps values of type `B` to values of type `A`.
|
|
@@ -2082,7 +2082,7 @@ const BigInt$3 = /* @__PURE__ */ make$50((self$1, that) => self$1 < that ? -1 :
|
|
|
2082
2082
|
* @category mapping
|
|
2083
2083
|
* @since 2.0.0
|
|
2084
2084
|
*/
|
|
2085
|
-
const mapInput = /* @__PURE__ */ dual(2, (self$1, f) => make$
|
|
2085
|
+
const mapInput = /* @__PURE__ */ dual(2, (self$1, f) => make$51((b1, b2) => self$1(f(b1), f(b2))));
|
|
2086
2086
|
/**
|
|
2087
2087
|
* An `Order` instance for `Date` objects that compares them chronologically by their timestamp.
|
|
2088
2088
|
*
|
|
@@ -2151,7 +2151,7 @@ const Date$2 = /* @__PURE__ */ mapInput(Number$4, (date$2) => date$2.getTime());
|
|
|
2151
2151
|
* @since 4.0.0
|
|
2152
2152
|
*/
|
|
2153
2153
|
function Tuple$2(elements) {
|
|
2154
|
-
return make$
|
|
2154
|
+
return make$51((self$1, that) => {
|
|
2155
2155
|
const len = elements.length;
|
|
2156
2156
|
for (let i = 0; i < len; i++) {
|
|
2157
2157
|
const o = elements[i](self$1[i], that[i]);
|
|
@@ -2195,7 +2195,7 @@ function Tuple$2(elements) {
|
|
|
2195
2195
|
* @since 4.0.0
|
|
2196
2196
|
*/
|
|
2197
2197
|
function Array$4(O) {
|
|
2198
|
-
return make$
|
|
2198
|
+
return make$51((self$1, that) => {
|
|
2199
2199
|
const aLen = self$1.length;
|
|
2200
2200
|
const bLen = that.length;
|
|
2201
2201
|
const len = Math.min(aLen, bLen);
|
|
@@ -2249,7 +2249,7 @@ function Array$4(O) {
|
|
|
2249
2249
|
*/
|
|
2250
2250
|
function Struct$2(fields) {
|
|
2251
2251
|
const keys$1 = Object.keys(fields);
|
|
2252
|
-
return make$
|
|
2252
|
+
return make$51((self$1, that) => {
|
|
2253
2253
|
for (const key of keys$1) {
|
|
2254
2254
|
const o = fields[key](self$1[key], that[key]);
|
|
2255
2255
|
if (o !== 0) return o;
|
|
@@ -2560,7 +2560,7 @@ const liftThrowable = (f) => (...a) => {
|
|
|
2560
2560
|
|
|
2561
2561
|
//#endregion
|
|
2562
2562
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Duration.js
|
|
2563
|
-
const TypeId$
|
|
2563
|
+
const TypeId$55 = "~effect/time/Duration";
|
|
2564
2564
|
const bigint0$1 = /* @__PURE__ */ BigInt(0);
|
|
2565
2565
|
const bigint1e3 = /* @__PURE__ */ BigInt(1e3);
|
|
2566
2566
|
const DURATION_REGEXP = /^(-?\d+(?:\.\d+)?)\s+(nanos?|micros?|millis?|seconds?|minutes?|hours?|days?|weeks?)$/;
|
|
@@ -2641,7 +2641,7 @@ const zeroDurationValue = {
|
|
|
2641
2641
|
};
|
|
2642
2642
|
const infinityDurationValue = { _tag: "Infinity" };
|
|
2643
2643
|
const DurationProto = {
|
|
2644
|
-
[TypeId$
|
|
2644
|
+
[TypeId$55]: TypeId$55,
|
|
2645
2645
|
[symbol$3]() {
|
|
2646
2646
|
return structure(this.value);
|
|
2647
2647
|
},
|
|
@@ -2680,7 +2680,7 @@ const DurationProto = {
|
|
|
2680
2680
|
return pipeArguments(this, arguments);
|
|
2681
2681
|
}
|
|
2682
2682
|
};
|
|
2683
|
-
const make$
|
|
2683
|
+
const make$50 = (input) => {
|
|
2684
2684
|
const duration = Object.create(DurationProto);
|
|
2685
2685
|
if (isNumber(input)) if (isNaN(input) || input <= 0) duration.value = zeroDurationValue;
|
|
2686
2686
|
else if (!Number.isFinite(input)) duration.value = infinityDurationValue;
|
|
@@ -2713,7 +2713,7 @@ const make$49 = (input) => {
|
|
|
2713
2713
|
* @since 2.0.0
|
|
2714
2714
|
* @category guards
|
|
2715
2715
|
*/
|
|
2716
|
-
const isDuration = (u) => hasProperty(u, TypeId$
|
|
2716
|
+
const isDuration = (u) => hasProperty(u, TypeId$55);
|
|
2717
2717
|
/**
|
|
2718
2718
|
* Checks if a Duration is finite (not infinite).
|
|
2719
2719
|
*
|
|
@@ -2763,7 +2763,7 @@ const isZero = (self$1) => {
|
|
|
2763
2763
|
* @since 2.0.0
|
|
2764
2764
|
* @category constructors
|
|
2765
2765
|
*/
|
|
2766
|
-
const zero = /* @__PURE__ */ make$
|
|
2766
|
+
const zero = /* @__PURE__ */ make$50(0);
|
|
2767
2767
|
/**
|
|
2768
2768
|
* A Duration representing infinite time.
|
|
2769
2769
|
*
|
|
@@ -2777,7 +2777,7 @@ const zero = /* @__PURE__ */ make$49(0);
|
|
|
2777
2777
|
* @since 2.0.0
|
|
2778
2778
|
* @category constructors
|
|
2779
2779
|
*/
|
|
2780
|
-
const infinity = /* @__PURE__ */ make$
|
|
2780
|
+
const infinity = /* @__PURE__ */ make$50(Infinity);
|
|
2781
2781
|
/**
|
|
2782
2782
|
* Creates a Duration from nanoseconds.
|
|
2783
2783
|
*
|
|
@@ -2792,7 +2792,7 @@ const infinity = /* @__PURE__ */ make$49(Infinity);
|
|
|
2792
2792
|
* @since 2.0.0
|
|
2793
2793
|
* @category constructors
|
|
2794
2794
|
*/
|
|
2795
|
-
const nanos = (nanos$1) => make$
|
|
2795
|
+
const nanos = (nanos$1) => make$50(nanos$1);
|
|
2796
2796
|
/**
|
|
2797
2797
|
* Creates a Duration from microseconds.
|
|
2798
2798
|
*
|
|
@@ -2807,7 +2807,7 @@ const nanos = (nanos$1) => make$49(nanos$1);
|
|
|
2807
2807
|
* @since 2.0.0
|
|
2808
2808
|
* @category constructors
|
|
2809
2809
|
*/
|
|
2810
|
-
const micros = (micros$1) => make$
|
|
2810
|
+
const micros = (micros$1) => make$50(micros$1 * bigint1e3);
|
|
2811
2811
|
/**
|
|
2812
2812
|
* Creates a Duration from milliseconds.
|
|
2813
2813
|
*
|
|
@@ -2822,7 +2822,7 @@ const micros = (micros$1) => make$49(micros$1 * bigint1e3);
|
|
|
2822
2822
|
* @since 2.0.0
|
|
2823
2823
|
* @category constructors
|
|
2824
2824
|
*/
|
|
2825
|
-
const millis = (millis$1) => make$
|
|
2825
|
+
const millis = (millis$1) => make$50(millis$1);
|
|
2826
2826
|
/**
|
|
2827
2827
|
* Creates a Duration from seconds.
|
|
2828
2828
|
*
|
|
@@ -2837,7 +2837,7 @@ const millis = (millis$1) => make$49(millis$1);
|
|
|
2837
2837
|
* @since 2.0.0
|
|
2838
2838
|
* @category constructors
|
|
2839
2839
|
*/
|
|
2840
|
-
const seconds = (seconds$1) => make$
|
|
2840
|
+
const seconds = (seconds$1) => make$50(seconds$1 * 1e3);
|
|
2841
2841
|
/**
|
|
2842
2842
|
* Creates a Duration from minutes.
|
|
2843
2843
|
*
|
|
@@ -2852,7 +2852,7 @@ const seconds = (seconds$1) => make$49(seconds$1 * 1e3);
|
|
|
2852
2852
|
* @since 2.0.0
|
|
2853
2853
|
* @category constructors
|
|
2854
2854
|
*/
|
|
2855
|
-
const minutes = (minutes$1) => make$
|
|
2855
|
+
const minutes = (minutes$1) => make$50(minutes$1 * 6e4);
|
|
2856
2856
|
/**
|
|
2857
2857
|
* Creates a Duration from hours.
|
|
2858
2858
|
*
|
|
@@ -2867,7 +2867,7 @@ const minutes = (minutes$1) => make$49(minutes$1 * 6e4);
|
|
|
2867
2867
|
* @since 2.0.0
|
|
2868
2868
|
* @category constructors
|
|
2869
2869
|
*/
|
|
2870
|
-
const hours = (hours$1) => make$
|
|
2870
|
+
const hours = (hours$1) => make$50(hours$1 * 36e5);
|
|
2871
2871
|
/**
|
|
2872
2872
|
* Creates a Duration from days.
|
|
2873
2873
|
*
|
|
@@ -2882,7 +2882,7 @@ const hours = (hours$1) => make$49(hours$1 * 36e5);
|
|
|
2882
2882
|
* @since 2.0.0
|
|
2883
2883
|
* @category constructors
|
|
2884
2884
|
*/
|
|
2885
|
-
const days = (days$1) => make$
|
|
2885
|
+
const days = (days$1) => make$50(days$1 * 864e5);
|
|
2886
2886
|
/**
|
|
2887
2887
|
* Creates a Duration from weeks.
|
|
2888
2888
|
*
|
|
@@ -2897,7 +2897,7 @@ const days = (days$1) => make$49(days$1 * 864e5);
|
|
|
2897
2897
|
* @since 2.0.0
|
|
2898
2898
|
* @category constructors
|
|
2899
2899
|
*/
|
|
2900
|
-
const weeks = (weeks$1) => make$
|
|
2900
|
+
const weeks = (weeks$1) => make$50(weeks$1 * 6048e5);
|
|
2901
2901
|
/**
|
|
2902
2902
|
* Converts a Duration to milliseconds.
|
|
2903
2903
|
*
|
|
@@ -3384,16 +3384,16 @@ const makePrimitiveProto = (options) => ({
|
|
|
3384
3384
|
});
|
|
3385
3385
|
/** @internal */
|
|
3386
3386
|
const makePrimitive$1 = (options) => {
|
|
3387
|
-
const Proto$
|
|
3387
|
+
const Proto$20 = makePrimitiveProto(options);
|
|
3388
3388
|
return function() {
|
|
3389
|
-
const self$1 = Object.create(Proto$
|
|
3389
|
+
const self$1 = Object.create(Proto$20);
|
|
3390
3390
|
self$1[args] = options.single === false ? arguments : arguments[0];
|
|
3391
3391
|
return self$1;
|
|
3392
3392
|
};
|
|
3393
3393
|
};
|
|
3394
3394
|
/** @internal */
|
|
3395
3395
|
const makeExit = (options) => {
|
|
3396
|
-
const Proto$
|
|
3396
|
+
const Proto$20 = {
|
|
3397
3397
|
...makePrimitiveProto(options),
|
|
3398
3398
|
[ExitTypeId]: ExitTypeId,
|
|
3399
3399
|
_tag: options.op,
|
|
@@ -3418,7 +3418,7 @@ const makeExit = (options) => {
|
|
|
3418
3418
|
}
|
|
3419
3419
|
};
|
|
3420
3420
|
return function(value) {
|
|
3421
|
-
const self$1 = Object.create(Proto$
|
|
3421
|
+
const self$1 = Object.create(Proto$20);
|
|
3422
3422
|
self$1[args] = value;
|
|
3423
3423
|
self$1[contA] = void 0;
|
|
3424
3424
|
self$1[contE] = void 0;
|
|
@@ -3567,7 +3567,7 @@ var NoSuchElementError$1 = class extends TaggedError$1("NoSuchElementError") {
|
|
|
3567
3567
|
* @category constructors
|
|
3568
3568
|
* @since 2.0.0
|
|
3569
3569
|
*/
|
|
3570
|
-
const make$
|
|
3570
|
+
const make$49 = (isEquivalent) => (self$1, that) => self$1 === that || isEquivalent(self$1, that);
|
|
3571
3571
|
const isStrictEquivalent = (x, y) => x === y;
|
|
3572
3572
|
/**
|
|
3573
3573
|
* Creates an equivalence relation that uses strict equality (`===`) to compare values.
|
|
@@ -3677,7 +3677,7 @@ const strictEqual = () => isStrictEquivalent;
|
|
|
3677
3677
|
* @since 4.0.0
|
|
3678
3678
|
*/
|
|
3679
3679
|
function Tuple$1(elements) {
|
|
3680
|
-
return make$
|
|
3680
|
+
return make$49((self$1, that) => {
|
|
3681
3681
|
if (self$1.length !== that.length) return false;
|
|
3682
3682
|
for (let i = 0; i < self$1.length; i++) if (!elements[i](self$1[i], that[i])) return false;
|
|
3683
3683
|
return true;
|
|
@@ -3734,7 +3734,7 @@ function Tuple$1(elements) {
|
|
|
3734
3734
|
* @since 4.0.0
|
|
3735
3735
|
*/
|
|
3736
3736
|
function Array$3(item) {
|
|
3737
|
-
return make$
|
|
3737
|
+
return make$49((self$1, that) => {
|
|
3738
3738
|
if (self$1.length !== that.length) return false;
|
|
3739
3739
|
for (let i = 0; i < self$1.length; i++) if (!item(self$1[i], that[i])) return false;
|
|
3740
3740
|
return true;
|
|
@@ -3810,7 +3810,7 @@ function Array$3(item) {
|
|
|
3810
3810
|
*/
|
|
3811
3811
|
function Struct$1(fields) {
|
|
3812
3812
|
const keys$1 = Reflect.ownKeys(fields);
|
|
3813
|
-
return make$
|
|
3813
|
+
return make$49((self$1, that) => {
|
|
3814
3814
|
for (const key of keys$1) if (!fields[key](self$1[key], that[key])) return false;
|
|
3815
3815
|
return true;
|
|
3816
3816
|
});
|
|
@@ -3821,9 +3821,9 @@ function Struct$1(fields) {
|
|
|
3821
3821
|
/**
|
|
3822
3822
|
* @since 2.0.0
|
|
3823
3823
|
*/
|
|
3824
|
-
const TypeId$
|
|
3824
|
+
const TypeId$54 = "~effect/data/Option";
|
|
3825
3825
|
const CommonProto$1 = {
|
|
3826
|
-
[TypeId$
|
|
3826
|
+
[TypeId$54]: { _A: (_) => _ },
|
|
3827
3827
|
...PipeInspectableProto,
|
|
3828
3828
|
...YieldableProto
|
|
3829
3829
|
};
|
|
@@ -3874,7 +3874,7 @@ const NoneProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(Co
|
|
|
3874
3874
|
}
|
|
3875
3875
|
});
|
|
3876
3876
|
/** @internal */
|
|
3877
|
-
const isOption$1 = (input) => hasProperty(input, TypeId$
|
|
3877
|
+
const isOption$1 = (input) => hasProperty(input, TypeId$54);
|
|
3878
3878
|
/** @internal */
|
|
3879
3879
|
const isNone$1 = (fa) => fa._tag === "None";
|
|
3880
3880
|
/** @internal */
|
|
@@ -3890,9 +3890,9 @@ const some$1 = (value) => {
|
|
|
3890
3890
|
|
|
3891
3891
|
//#endregion
|
|
3892
3892
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/result.js
|
|
3893
|
-
const TypeId$
|
|
3893
|
+
const TypeId$53 = "~effect/data/Result";
|
|
3894
3894
|
const CommonProto = {
|
|
3895
|
-
[TypeId$
|
|
3895
|
+
[TypeId$53]: {
|
|
3896
3896
|
_A: (_) => _,
|
|
3897
3897
|
_E: (_) => _
|
|
3898
3898
|
},
|
|
@@ -3946,7 +3946,7 @@ const FailureProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create
|
|
|
3946
3946
|
}
|
|
3947
3947
|
});
|
|
3948
3948
|
/** @internal */
|
|
3949
|
-
const isResult$1 = (input) => hasProperty(input, TypeId$
|
|
3949
|
+
const isResult$1 = (input) => hasProperty(input, TypeId$53);
|
|
3950
3950
|
/** @internal */
|
|
3951
3951
|
const isFailure$5 = (result$2) => result$2._tag === "Failure";
|
|
3952
3952
|
/** @internal */
|
|
@@ -4562,7 +4562,7 @@ const filter$5 = /* @__PURE__ */ dual(2, (self$1, predicate) => filterMap(self$1
|
|
|
4562
4562
|
* @category Equivalence
|
|
4563
4563
|
* @since 2.0.0
|
|
4564
4564
|
*/
|
|
4565
|
-
const makeEquivalence$4 = (isEquivalent) => make$
|
|
4565
|
+
const makeEquivalence$4 = (isEquivalent) => make$49((x, y) => isNone(x) ? isNone(y) : isNone(y) ? false : isEquivalent(x.value, y.value));
|
|
4566
4566
|
|
|
4567
4567
|
//#endregion
|
|
4568
4568
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Result.js
|
|
@@ -6002,7 +6002,7 @@ const ServiceProto = {
|
|
|
6002
6002
|
return self$1;
|
|
6003
6003
|
},
|
|
6004
6004
|
serviceMap(self$1) {
|
|
6005
|
-
return make$
|
|
6005
|
+
return make$48(this, self$1);
|
|
6006
6006
|
},
|
|
6007
6007
|
use(f) {
|
|
6008
6008
|
return withFiber$1((fiber$2) => f(get$7(fiber$2.services, this)));
|
|
@@ -6012,7 +6012,7 @@ const ServiceProto = {
|
|
|
6012
6012
|
}
|
|
6013
6013
|
};
|
|
6014
6014
|
const ReferenceTypeId = "~effect/ServiceMap/Reference";
|
|
6015
|
-
const TypeId$
|
|
6015
|
+
const TypeId$52 = "~effect/ServiceMap";
|
|
6016
6016
|
/**
|
|
6017
6017
|
* @example
|
|
6018
6018
|
* ```ts
|
|
@@ -6029,14 +6029,14 @@ const TypeId$51 = "~effect/ServiceMap";
|
|
|
6029
6029
|
* @since 4.0.0
|
|
6030
6030
|
* @category Constructors
|
|
6031
6031
|
*/
|
|
6032
|
-
const makeUnsafe$
|
|
6033
|
-
const self$1 = Object.create(Proto$
|
|
6032
|
+
const makeUnsafe$8 = (mapUnsafe) => {
|
|
6033
|
+
const self$1 = Object.create(Proto$19);
|
|
6034
6034
|
self$1.mapUnsafe = mapUnsafe;
|
|
6035
6035
|
return self$1;
|
|
6036
6036
|
};
|
|
6037
|
-
const Proto$
|
|
6037
|
+
const Proto$19 = {
|
|
6038
6038
|
...PipeInspectableProto,
|
|
6039
|
-
[TypeId$
|
|
6039
|
+
[TypeId$52]: { _Services: (_) => _ },
|
|
6040
6040
|
toJSON() {
|
|
6041
6041
|
return {
|
|
6042
6042
|
_id: "ServiceMap",
|
|
@@ -6069,7 +6069,7 @@ const Proto$18 = {
|
|
|
6069
6069
|
* @since 4.0.0
|
|
6070
6070
|
* @category Guards
|
|
6071
6071
|
*/
|
|
6072
|
-
const isServiceMap = (u) => hasProperty(u, TypeId$
|
|
6072
|
+
const isServiceMap = (u) => hasProperty(u, TypeId$52);
|
|
6073
6073
|
/**
|
|
6074
6074
|
* Checks if the provided argument is a `Reference`.
|
|
6075
6075
|
*
|
|
@@ -6105,7 +6105,7 @@ const isReference = (u) => hasProperty(u, ReferenceTypeId);
|
|
|
6105
6105
|
* @category Constructors
|
|
6106
6106
|
*/
|
|
6107
6107
|
const empty$10 = () => emptyServiceMap;
|
|
6108
|
-
const emptyServiceMap = /* @__PURE__ */ makeUnsafe$
|
|
6108
|
+
const emptyServiceMap = /* @__PURE__ */ makeUnsafe$8(/* @__PURE__ */ new Map());
|
|
6109
6109
|
/**
|
|
6110
6110
|
* Creates a new `ServiceMap` with a single service associated to the key.
|
|
6111
6111
|
*
|
|
@@ -6124,7 +6124,7 @@ const emptyServiceMap = /* @__PURE__ */ makeUnsafe$7(/* @__PURE__ */ new Map());
|
|
|
6124
6124
|
* @since 4.0.0
|
|
6125
6125
|
* @category Constructors
|
|
6126
6126
|
*/
|
|
6127
|
-
const make$
|
|
6127
|
+
const make$48 = (key, service$2) => makeUnsafe$8(new Map([[key.key, service$2]]));
|
|
6128
6128
|
/**
|
|
6129
6129
|
* Adds a service to a given `ServiceMap`.
|
|
6130
6130
|
*
|
|
@@ -6153,7 +6153,7 @@ const make$47 = (key, service$2) => makeUnsafe$7(new Map([[key.key, service$2]])
|
|
|
6153
6153
|
const add$3 = /* @__PURE__ */ dual(3, (self$1, key, service$2) => {
|
|
6154
6154
|
const map$12 = new Map(self$1.mapUnsafe);
|
|
6155
6155
|
map$12.set(key.key, service$2);
|
|
6156
|
-
return makeUnsafe$
|
|
6156
|
+
return makeUnsafe$8(map$12);
|
|
6157
6157
|
});
|
|
6158
6158
|
/**
|
|
6159
6159
|
* @since 4.0.0
|
|
@@ -6163,7 +6163,7 @@ const addOrOmit = /* @__PURE__ */ dual(3, (self$1, key, service$2) => {
|
|
|
6163
6163
|
const map$12 = new Map(self$1.mapUnsafe);
|
|
6164
6164
|
if (service$2._tag === "None") map$12.delete(key.key);
|
|
6165
6165
|
else map$12.set(key.key, service$2.value);
|
|
6166
|
-
return makeUnsafe$
|
|
6166
|
+
return makeUnsafe$8(map$12);
|
|
6167
6167
|
});
|
|
6168
6168
|
/**
|
|
6169
6169
|
* Get a service from the context that corresponds to the given key.
|
|
@@ -6333,7 +6333,7 @@ const merge$5 = /* @__PURE__ */ dual(2, (self$1, that) => {
|
|
|
6333
6333
|
if (that.mapUnsafe.size === 0) return self$1;
|
|
6334
6334
|
const map$12 = new Map(self$1.mapUnsafe);
|
|
6335
6335
|
that.mapUnsafe.forEach((value, key) => map$12.set(key, value));
|
|
6336
|
-
return makeUnsafe$
|
|
6336
|
+
return makeUnsafe$8(map$12);
|
|
6337
6337
|
});
|
|
6338
6338
|
/**
|
|
6339
6339
|
* Merges any number of `ServiceMap`s, returning a new `ServiceMap` containing the services of all.
|
|
@@ -6369,7 +6369,7 @@ const mergeAll$1 = (...ctxs) => {
|
|
|
6369
6369
|
for (let i = 0; i < ctxs.length; i++) ctxs[i].mapUnsafe.forEach((value, key) => {
|
|
6370
6370
|
map$12.set(key, value);
|
|
6371
6371
|
});
|
|
6372
|
-
return makeUnsafe$
|
|
6372
|
+
return makeUnsafe$8(map$12);
|
|
6373
6373
|
};
|
|
6374
6374
|
/**
|
|
6375
6375
|
* Creates a service map key with a default value.
|
|
@@ -6668,7 +6668,7 @@ var ParentSpan = class extends Service()(ParentSpanKey) {};
|
|
|
6668
6668
|
* })
|
|
6669
6669
|
* ```
|
|
6670
6670
|
*/
|
|
6671
|
-
const make$
|
|
6671
|
+
const make$47 = (options) => options;
|
|
6672
6672
|
/**
|
|
6673
6673
|
* @since 2.0.0
|
|
6674
6674
|
* @category constructors
|
|
@@ -6737,7 +6737,7 @@ const TracerKey = "effect/Tracer";
|
|
|
6737
6737
|
* })
|
|
6738
6738
|
* ```
|
|
6739
6739
|
*/
|
|
6740
|
-
const Tracer = /* @__PURE__ */ Reference(TracerKey, { defaultValue: () => make$
|
|
6740
|
+
const Tracer = /* @__PURE__ */ Reference(TracerKey, { defaultValue: () => make$47({ span: (name, parent, services$2, links, startTime, kind) => new NativeSpan(name, parent, services$2, links.slice(), startTime, kind) }) });
|
|
6741
6741
|
/**
|
|
6742
6742
|
* @since 4.0.0
|
|
6743
6743
|
* @category native tracer
|
|
@@ -7411,12 +7411,12 @@ const causeIsInterruptedOnly = (self$1) => self$1.failures.every(failureIsInterr
|
|
|
7411
7411
|
/** @internal */
|
|
7412
7412
|
const failureIsInterrupt$1 = (self$1) => isTagged(self$1, "Interrupt");
|
|
7413
7413
|
/** @internal */
|
|
7414
|
-
const failureAnnotations$1 = (self$1) => makeUnsafe$
|
|
7414
|
+
const failureAnnotations$1 = (self$1) => makeUnsafe$8(self$1.annotations);
|
|
7415
7415
|
/** @internal */
|
|
7416
7416
|
const causeAnnotations = (self$1) => {
|
|
7417
7417
|
const map$12 = /* @__PURE__ */ new Map();
|
|
7418
7418
|
for (const f of self$1.failures) if (f.annotations.size > 0) for (const [key, value] of f.annotations) map$12.set(key, value);
|
|
7419
|
-
return makeUnsafe$
|
|
7419
|
+
return makeUnsafe$8(map$12);
|
|
7420
7420
|
};
|
|
7421
7421
|
/** @internal */
|
|
7422
7422
|
const causeMerge = /* @__PURE__ */ dual(2, (self$1, that) => {
|
|
@@ -7637,7 +7637,7 @@ var FiberImpl = class {
|
|
|
7637
7637
|
interruptUnsafe(fiberId$2, annotations$1) {
|
|
7638
7638
|
if (this._exit) return;
|
|
7639
7639
|
let cause = causeInterrupt(fiberId$2);
|
|
7640
|
-
if (this.currentStackFrame) cause = causeAnnotate(cause, make$
|
|
7640
|
+
if (this.currentStackFrame) cause = causeAnnotate(cause, make$48(StackTraceKey, this.currentStackFrame));
|
|
7641
7641
|
if (annotations$1) cause = causeAnnotate(cause, annotations$1);
|
|
7642
7642
|
this._interruptedCause = this._interruptedCause ? causeMerge(this._interruptedCause, cause) : cause;
|
|
7643
7643
|
if (this.interruptible) this.evaluate(failCause$4(this._interruptedCause));
|
|
@@ -7733,7 +7733,7 @@ const fiberStackAnnotations = (fiber$2) => {
|
|
|
7733
7733
|
if (!fiber$2.currentStackFrame) return void 0;
|
|
7734
7734
|
const annotations$1 = /* @__PURE__ */ new Map();
|
|
7735
7735
|
annotations$1.set(StackTraceKey.key, fiber$2.currentStackFrame);
|
|
7736
|
-
return makeUnsafe$
|
|
7736
|
+
return makeUnsafe$8(annotations$1);
|
|
7737
7737
|
};
|
|
7738
7738
|
const fiberInterruptChildren = (fiber$2) => {
|
|
7739
7739
|
if (fiber$2._children === void 0 || fiber$2._children.size === 0) return;
|
|
@@ -8277,7 +8277,7 @@ const updateServices$1 = /* @__PURE__ */ dual(2, (self$1, f) => withFiber$1((fib
|
|
|
8277
8277
|
if (prev.mapUnsafe.has(key)) map$12.set(key, prev.mapUnsafe.get(key));
|
|
8278
8278
|
else map$12.delete(key);
|
|
8279
8279
|
}
|
|
8280
|
-
fiber$2.setServices(makeUnsafe$
|
|
8280
|
+
fiber$2.setServices(makeUnsafe$8(map$12));
|
|
8281
8281
|
});
|
|
8282
8282
|
}));
|
|
8283
8283
|
/** @internal */
|
|
@@ -9889,7 +9889,7 @@ const DeferredProto = {
|
|
|
9889
9889
|
* @since 2.0.0
|
|
9890
9890
|
* @category unsafe
|
|
9891
9891
|
*/
|
|
9892
|
-
const makeUnsafe$
|
|
9892
|
+
const makeUnsafe$7 = () => {
|
|
9893
9893
|
const self$1 = Object.create(DeferredProto);
|
|
9894
9894
|
self$1.resumes = void 0;
|
|
9895
9895
|
self$1.effect = void 0;
|
|
@@ -9913,7 +9913,7 @@ const makeUnsafe$6 = () => {
|
|
|
9913
9913
|
* @since 2.0.0
|
|
9914
9914
|
* @category constructors
|
|
9915
9915
|
*/
|
|
9916
|
-
const make$
|
|
9916
|
+
const make$46 = () => sync$1(() => makeUnsafe$7());
|
|
9917
9917
|
const _await = (self$1) => callback$2((resume) => {
|
|
9918
9918
|
if (self$1.effect) return resume(self$1.effect);
|
|
9919
9919
|
self$1.resumes ??= [];
|
|
@@ -10150,7 +10150,7 @@ const Scope = scopeTag;
|
|
|
10150
10150
|
* @category constructors
|
|
10151
10151
|
* @since 2.0.0
|
|
10152
10152
|
*/
|
|
10153
|
-
const make$
|
|
10153
|
+
const make$45 = scopeMake;
|
|
10154
10154
|
/**
|
|
10155
10155
|
* Creates a new `Scope` synchronously without wrapping it in an `Effect`.
|
|
10156
10156
|
* This is useful when you need a scope immediately but should be used with caution
|
|
@@ -10173,7 +10173,7 @@ const make$44 = scopeMake;
|
|
|
10173
10173
|
* @since 4.0.0
|
|
10174
10174
|
* @category constructors
|
|
10175
10175
|
*/
|
|
10176
|
-
const makeUnsafe$
|
|
10176
|
+
const makeUnsafe$6 = scopeMakeUnsafe;
|
|
10177
10177
|
/**
|
|
10178
10178
|
* Provides a `Scope` to an `Effect`, removing the `Scope` requirement from its context.
|
|
10179
10179
|
* This allows you to run effects that require a scope by explicitly providing one.
|
|
@@ -10360,7 +10360,7 @@ const use$1 = scopeUse;
|
|
|
10360
10360
|
|
|
10361
10361
|
//#endregion
|
|
10362
10362
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Layer.js
|
|
10363
|
-
const TypeId$
|
|
10363
|
+
const TypeId$51 = "~effect/Layer";
|
|
10364
10364
|
const MemoMapTypeId = "~effect/Layer/MemoMap";
|
|
10365
10365
|
/**
|
|
10366
10366
|
* Returns `true` if the specified value is a `Layer`, `false` otherwise.
|
|
@@ -10385,9 +10385,9 @@ const MemoMapTypeId = "~effect/Layer/MemoMap";
|
|
|
10385
10385
|
* @since 2.0.0
|
|
10386
10386
|
* @category getters
|
|
10387
10387
|
*/
|
|
10388
|
-
const isLayer = (u) => hasProperty(u, TypeId$
|
|
10388
|
+
const isLayer = (u) => hasProperty(u, TypeId$51);
|
|
10389
10389
|
const LayerProto = {
|
|
10390
|
-
[TypeId$
|
|
10390
|
+
[TypeId$51]: {
|
|
10391
10391
|
_ROut: identity,
|
|
10392
10392
|
_E: identity,
|
|
10393
10393
|
_RIn: identity
|
|
@@ -10473,8 +10473,8 @@ var MemoMapImpl = class {
|
|
|
10473
10473
|
entry$1.observers++;
|
|
10474
10474
|
return andThen$1(scopeAddFinalizerExit(scope$2, (exit$2) => entry$1.finalizer(exit$2)), entry$1.effect);
|
|
10475
10475
|
}
|
|
10476
|
-
const layerScope = makeUnsafe$
|
|
10477
|
-
const deferred = makeUnsafe$
|
|
10476
|
+
const layerScope = makeUnsafe$6();
|
|
10477
|
+
const deferred = makeUnsafe$7();
|
|
10478
10478
|
const entry = {
|
|
10479
10479
|
observers: 1,
|
|
10480
10480
|
effect: _await(deferred),
|
|
@@ -10703,8 +10703,8 @@ const buildWithScope = /* @__PURE__ */ dual(2, (self$1, scope$2) => suspend$3(()
|
|
|
10703
10703
|
* @category constructors
|
|
10704
10704
|
*/
|
|
10705
10705
|
const succeed$2 = function() {
|
|
10706
|
-
if (arguments.length === 1) return (resource) => succeedServices(make$
|
|
10707
|
-
return succeedServices(make$
|
|
10706
|
+
if (arguments.length === 1) return (resource) => succeedServices(make$48(arguments[0], resource));
|
|
10707
|
+
return succeedServices(make$48(arguments[0], arguments[1]));
|
|
10708
10708
|
};
|
|
10709
10709
|
/**
|
|
10710
10710
|
* Constructs a layer from the specified value, which must return one or more
|
|
@@ -10771,7 +10771,7 @@ const effect = function() {
|
|
|
10771
10771
|
const effectOrFn = arguments[1];
|
|
10772
10772
|
return typeof effectOrFn === "function" ? (...args$1) => effectImpl(arguments[0], suspend$3(() => effectOrFn(...args$1))) : effectImpl(arguments[0], effectOrFn);
|
|
10773
10773
|
};
|
|
10774
|
-
const effectImpl = (service$2, effect$1) => effectServices(map$7(effect$1, (value) => make$
|
|
10774
|
+
const effectImpl = (service$2, effect$1) => effectServices(map$7(effect$1, (value) => make$48(service$2, value)));
|
|
10775
10775
|
/**
|
|
10776
10776
|
* Constructs a layer from the specified scoped effect, which must return one
|
|
10777
10777
|
* or more services.
|
|
@@ -11156,9 +11156,9 @@ const fresh = (self$1) => fromBuildUnsafe((_, scope$2) => self$1.build(makeMemoM
|
|
|
11156
11156
|
* @since 3.16.0
|
|
11157
11157
|
* @category Type IDs
|
|
11158
11158
|
*/
|
|
11159
|
-
const TypeId$
|
|
11160
|
-
const Proto$
|
|
11161
|
-
[TypeId$
|
|
11159
|
+
const TypeId$50 = "~effect/ExecutionPlan";
|
|
11160
|
+
const Proto$18 = {
|
|
11161
|
+
[TypeId$50]: TypeId$50,
|
|
11162
11162
|
get withRequirements() {
|
|
11163
11163
|
const self$1 = this;
|
|
11164
11164
|
return servicesWith$1((services$2) => succeed$5(makeProto$1(self$1.steps.map((step) => ({
|
|
@@ -11171,7 +11171,7 @@ const Proto$17 = {
|
|
|
11171
11171
|
}
|
|
11172
11172
|
};
|
|
11173
11173
|
const makeProto$1 = (steps) => {
|
|
11174
|
-
const self$1 = Object.create(Proto$
|
|
11174
|
+
const self$1 = Object.create(Proto$18);
|
|
11175
11175
|
self$1.steps = steps;
|
|
11176
11176
|
return self$1;
|
|
11177
11177
|
};
|
|
@@ -11340,7 +11340,7 @@ const TaggedError = TaggedError$1;
|
|
|
11340
11340
|
/**
|
|
11341
11341
|
* @since 2.0.0
|
|
11342
11342
|
*/
|
|
11343
|
-
const TypeId$
|
|
11343
|
+
const TypeId$49 = CauseTypeId;
|
|
11344
11344
|
/**
|
|
11345
11345
|
* @since 2.0.0
|
|
11346
11346
|
*/
|
|
@@ -11949,11 +11949,11 @@ const currentTimeNanos = currentTimeNanos$1;
|
|
|
11949
11949
|
//#endregion
|
|
11950
11950
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/dateTime.js
|
|
11951
11951
|
/** @internal */
|
|
11952
|
-
const TypeId$
|
|
11952
|
+
const TypeId$48 = "~effect/time/DateTime";
|
|
11953
11953
|
/** @internal */
|
|
11954
11954
|
const TimeZoneTypeId = "~effect/time/DateTime/TimeZone";
|
|
11955
|
-
const Proto$
|
|
11956
|
-
[TypeId$
|
|
11955
|
+
const Proto$17 = {
|
|
11956
|
+
[TypeId$48]: TypeId$48,
|
|
11957
11957
|
pipe() {
|
|
11958
11958
|
return pipeArguments(this, arguments);
|
|
11959
11959
|
},
|
|
@@ -11965,7 +11965,7 @@ const Proto$16 = {
|
|
|
11965
11965
|
}
|
|
11966
11966
|
};
|
|
11967
11967
|
const ProtoUtc = {
|
|
11968
|
-
...Proto$
|
|
11968
|
+
...Proto$17,
|
|
11969
11969
|
_tag: "Utc",
|
|
11970
11970
|
[symbol$3]() {
|
|
11971
11971
|
return number$2(this.epochMillis);
|
|
@@ -11978,7 +11978,7 @@ const ProtoUtc = {
|
|
|
11978
11978
|
}
|
|
11979
11979
|
};
|
|
11980
11980
|
const ProtoZoned = {
|
|
11981
|
-
...Proto$
|
|
11981
|
+
...Proto$17,
|
|
11982
11982
|
_tag: "Zoned",
|
|
11983
11983
|
[symbol$3]() {
|
|
11984
11984
|
return combine$1(number$2(this.epochMillis))(hash(this.zone));
|
|
@@ -12059,7 +12059,7 @@ const makeZonedProto = (epochMillis, zone, partsUtc) => {
|
|
|
12059
12059
|
return self$1;
|
|
12060
12060
|
};
|
|
12061
12061
|
/** @internal */
|
|
12062
|
-
const isDateTime$1 = (u) => hasProperty(u, TypeId$
|
|
12062
|
+
const isDateTime$1 = (u) => hasProperty(u, TypeId$48);
|
|
12063
12063
|
const isDateTimeArgs = (args$1) => isDateTime$1(args$1[0]);
|
|
12064
12064
|
/** @internal */
|
|
12065
12065
|
const isTimeZone$1 = (u) => hasProperty(u, TimeZoneTypeId);
|
|
@@ -12072,9 +12072,9 @@ const isUtc$1 = (self$1) => self$1._tag === "Utc";
|
|
|
12072
12072
|
/** @internal */
|
|
12073
12073
|
const isZoned$1 = (self$1) => self$1._tag === "Zoned";
|
|
12074
12074
|
/** @internal */
|
|
12075
|
-
const Equivalence$3 = /* @__PURE__ */ make$
|
|
12075
|
+
const Equivalence$3 = /* @__PURE__ */ make$49((a, b) => a.epochMillis === b.epochMillis);
|
|
12076
12076
|
/** @internal */
|
|
12077
|
-
const Order$3 = /* @__PURE__ */ make$
|
|
12077
|
+
const Order$3 = /* @__PURE__ */ make$51((self$1, that) => self$1.epochMillis < that.epochMillis ? -1 : self$1.epochMillis > that.epochMillis ? 1 : 0);
|
|
12078
12078
|
/** @internal */
|
|
12079
12079
|
const clamp$1 = /* @__PURE__ */ clamp$2(Order$3);
|
|
12080
12080
|
const makeUtc = (epochMillis) => {
|
|
@@ -12094,7 +12094,7 @@ const fromDateUnsafe$1 = (date$2) => {
|
|
|
12094
12094
|
return makeUtc(epochMillis);
|
|
12095
12095
|
};
|
|
12096
12096
|
/** @internal */
|
|
12097
|
-
const makeUnsafe$
|
|
12097
|
+
const makeUnsafe$5 = (input) => {
|
|
12098
12098
|
if (isDateTime$1(input)) return input;
|
|
12099
12099
|
else if (input instanceof Date) return fromDateUnsafe$1(input);
|
|
12100
12100
|
else if (typeof input === "object") {
|
|
@@ -12110,7 +12110,7 @@ const maxEpochMillis = 864e13 - 840 * 60 * 1e3;
|
|
|
12110
12110
|
/** @internal */
|
|
12111
12111
|
const makeZonedUnsafe$1 = (input, options) => {
|
|
12112
12112
|
if (options?.timeZone === void 0 && isDateTime$1(input) && isZoned$1(input)) return input;
|
|
12113
|
-
const self$1 = makeUnsafe$
|
|
12113
|
+
const self$1 = makeUnsafe$5(input);
|
|
12114
12114
|
if (self$1.epochMillis < minEpochMillis || self$1.epochMillis > maxEpochMillis) throw new RangeError(`Epoch millis out of range: ${self$1.epochMillis}`);
|
|
12115
12115
|
let zone;
|
|
12116
12116
|
if (options?.timeZone === void 0) zone = zoneMakeOffset$1(new Date(self$1.epochMillis).getTimezoneOffset() * -60 * 1e3);
|
|
@@ -12127,7 +12127,7 @@ const makeZonedUnsafe$1 = (input, options) => {
|
|
|
12127
12127
|
/** @internal */
|
|
12128
12128
|
const makeZoned$1 = /* @__PURE__ */ liftThrowable(makeZonedUnsafe$1);
|
|
12129
12129
|
/** @internal */
|
|
12130
|
-
const make$
|
|
12130
|
+
const make$44 = /* @__PURE__ */ liftThrowable(makeUnsafe$5);
|
|
12131
12131
|
const zonedStringRegExp = /^(.{17,35})\[(.+)\]$/;
|
|
12132
12132
|
/** @internal */
|
|
12133
12133
|
const makeZonedFromString$1 = (input) => {
|
|
@@ -12846,7 +12846,7 @@ const matchEffect$1 = /* @__PURE__ */ dual(2, (self$1, options) => matchCauseEff
|
|
|
12846
12846
|
|
|
12847
12847
|
//#endregion
|
|
12848
12848
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Schedule.js
|
|
12849
|
-
const TypeId$
|
|
12849
|
+
const TypeId$47 = "~effect/Schedule";
|
|
12850
12850
|
/**
|
|
12851
12851
|
* @since 4.0.0
|
|
12852
12852
|
* @category Metadata
|
|
@@ -12862,7 +12862,7 @@ const CurrentMetadata = /* @__PURE__ */ Reference("effect/Schedule/CurrentMetada
|
|
|
12862
12862
|
elapsedSincePrevious: 0
|
|
12863
12863
|
}) });
|
|
12864
12864
|
const ScheduleProto = {
|
|
12865
|
-
[TypeId$
|
|
12865
|
+
[TypeId$47]: {
|
|
12866
12866
|
_Out: identity,
|
|
12867
12867
|
_In: identity,
|
|
12868
12868
|
_Env: identity
|
|
@@ -12890,7 +12890,7 @@ const ScheduleProto = {
|
|
|
12890
12890
|
* @since 2.0.0
|
|
12891
12891
|
* @category guards
|
|
12892
12892
|
*/
|
|
12893
|
-
const isSchedule = (u) => hasProperty(u, TypeId$
|
|
12893
|
+
const isSchedule = (u) => hasProperty(u, TypeId$47);
|
|
12894
12894
|
/**
|
|
12895
12895
|
* Creates a Schedule from a step function that returns a Pull.
|
|
12896
12896
|
*
|
|
@@ -13315,7 +13315,7 @@ const scheduleOnce = /* @__PURE__ */ recurs(1);
|
|
|
13315
13315
|
|
|
13316
13316
|
//#endregion
|
|
13317
13317
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Request.js
|
|
13318
|
-
const TypeId$
|
|
13318
|
+
const TypeId$46 = "~effect/Request";
|
|
13319
13319
|
const requestVariance = /* @__PURE__ */ byReferenceUnsafe({
|
|
13320
13320
|
_E: (_) => _,
|
|
13321
13321
|
_A: (_) => _,
|
|
@@ -13326,7 +13326,7 @@ const requestVariance = /* @__PURE__ */ byReferenceUnsafe({
|
|
|
13326
13326
|
*/
|
|
13327
13327
|
const RequestPrototype = {
|
|
13328
13328
|
...StructuralProto,
|
|
13329
|
-
[TypeId$
|
|
13329
|
+
[TypeId$46]: requestVariance
|
|
13330
13330
|
};
|
|
13331
13331
|
/**
|
|
13332
13332
|
* @since 2.0.0
|
|
@@ -13436,7 +13436,7 @@ function runBatch(batch) {
|
|
|
13436
13436
|
|
|
13437
13437
|
//#endregion
|
|
13438
13438
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Effect.js
|
|
13439
|
-
const TypeId$
|
|
13439
|
+
const TypeId$45 = EffectTypeId;
|
|
13440
13440
|
/**
|
|
13441
13441
|
* Tests if a value is an `Effect`.
|
|
13442
13442
|
*
|
|
@@ -13451,7 +13451,7 @@ const TypeId$44 = EffectTypeId;
|
|
|
13451
13451
|
* @since 2.0.0
|
|
13452
13452
|
* @category guards
|
|
13453
13453
|
*/
|
|
13454
|
-
const isEffect = (u) => typeof u === "object" && u !== null && TypeId$
|
|
13454
|
+
const isEffect = (u) => typeof u === "object" && u !== null && TypeId$45 in u;
|
|
13455
13455
|
/**
|
|
13456
13456
|
* Combines multiple effects into one, returning results based on the input
|
|
13457
13457
|
* structure.
|
|
@@ -19420,7 +19420,7 @@ const fnUntracedEager = fnUntracedEager$1;
|
|
|
19420
19420
|
|
|
19421
19421
|
//#endregion
|
|
19422
19422
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/DateTime.js
|
|
19423
|
-
TypeId$
|
|
19423
|
+
TypeId$48;
|
|
19424
19424
|
TimeZoneTypeId;
|
|
19425
19425
|
/**
|
|
19426
19426
|
* @since 3.6.0
|
|
@@ -19575,7 +19575,7 @@ const fromDateUnsafe = fromDateUnsafe$1;
|
|
|
19575
19575
|
* DateTime.makeUnsafe("2024-01-01")
|
|
19576
19576
|
* ```
|
|
19577
19577
|
*/
|
|
19578
|
-
const makeUnsafe$
|
|
19578
|
+
const makeUnsafe$4 = makeUnsafe$5;
|
|
19579
19579
|
/**
|
|
19580
19580
|
* Create a `DateTime.Zoned` using `DateTime.makeUnsafe` and a time zone.
|
|
19581
19581
|
*
|
|
@@ -19653,7 +19653,7 @@ const makeZoned = makeZoned$1;
|
|
|
19653
19653
|
* DateTime.make("2024-01-01")
|
|
19654
19654
|
* ```
|
|
19655
19655
|
*/
|
|
19656
|
-
const make$
|
|
19656
|
+
const make$43 = make$44;
|
|
19657
19657
|
/**
|
|
19658
19658
|
* Create a `DateTime.Zoned` from a string.
|
|
19659
19659
|
*
|
|
@@ -21472,15 +21472,15 @@ const encoder$1 = /* @__PURE__ */ new TextEncoder();
|
|
|
21472
21472
|
|
|
21473
21473
|
//#endregion
|
|
21474
21474
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/SchemaIssue.js
|
|
21475
|
-
const TypeId$
|
|
21475
|
+
const TypeId$44 = "~effect/SchemaIssue/Issue";
|
|
21476
21476
|
/**
|
|
21477
21477
|
* @since 4.0.0
|
|
21478
21478
|
*/
|
|
21479
21479
|
function isIssue(u) {
|
|
21480
|
-
return hasProperty(u, TypeId$
|
|
21480
|
+
return hasProperty(u, TypeId$44);
|
|
21481
21481
|
}
|
|
21482
21482
|
var Base$1 = class {
|
|
21483
|
-
[TypeId$
|
|
21483
|
+
[TypeId$44] = TypeId$44;
|
|
21484
21484
|
toString() {
|
|
21485
21485
|
return defaultFormatter$1(this);
|
|
21486
21486
|
}
|
|
@@ -21753,7 +21753,7 @@ var OneOf = class extends Base$1 {
|
|
|
21753
21753
|
}
|
|
21754
21754
|
};
|
|
21755
21755
|
/** @internal */
|
|
21756
|
-
function make$
|
|
21756
|
+
function make$42(input, out) {
|
|
21757
21757
|
if (isIssue(out)) return out;
|
|
21758
21758
|
if (out === void 0) return;
|
|
21759
21759
|
if (typeof out === "boolean") return out ? void 0 : new InvalidValue$1(some(input));
|
|
@@ -21887,9 +21887,9 @@ function formatOption(actual) {
|
|
|
21887
21887
|
*/
|
|
21888
21888
|
var Getter = class Getter extends Class$3 {
|
|
21889
21889
|
run;
|
|
21890
|
-
constructor(run$
|
|
21890
|
+
constructor(run$7) {
|
|
21891
21891
|
super();
|
|
21892
|
-
this.run = run$
|
|
21892
|
+
this.run = run$7;
|
|
21893
21893
|
}
|
|
21894
21894
|
map(f) {
|
|
21895
21895
|
return new Getter((oe, options) => this.run(oe, options).pipe(mapEager(map$10(f))));
|
|
@@ -22022,7 +22022,7 @@ function decodeBase64() {
|
|
|
22022
22022
|
*/
|
|
22023
22023
|
function dateTimeUtcFromInput() {
|
|
22024
22024
|
return transformOrFail$1((input) => {
|
|
22025
|
-
const dt = make$
|
|
22025
|
+
const dt = make$43(input);
|
|
22026
22026
|
return dt ? succeed$1(toUtc(dt)) : fail$4(new InvalidValue$1(some(input), { message: "Invalid DateTime input" }));
|
|
22027
22027
|
});
|
|
22028
22028
|
}
|
|
@@ -22057,13 +22057,13 @@ function collectBracketPathEntries(isLeaf) {
|
|
|
22057
22057
|
/**
|
|
22058
22058
|
* @since 4.0.0
|
|
22059
22059
|
*/
|
|
22060
|
-
const TypeId$
|
|
22060
|
+
const TypeId$43 = "~effect/SchemaTransformation/Transformation";
|
|
22061
22061
|
/**
|
|
22062
22062
|
* @category model
|
|
22063
22063
|
* @since 4.0.0
|
|
22064
22064
|
*/
|
|
22065
22065
|
var Transformation = class Transformation {
|
|
22066
|
-
[TypeId$
|
|
22066
|
+
[TypeId$43] = TypeId$43;
|
|
22067
22067
|
_tag = "Transformation";
|
|
22068
22068
|
decode;
|
|
22069
22069
|
encode;
|
|
@@ -22082,12 +22082,12 @@ var Transformation = class Transformation {
|
|
|
22082
22082
|
* @since 4.0.0
|
|
22083
22083
|
*/
|
|
22084
22084
|
function isTransformation(u) {
|
|
22085
|
-
return hasProperty(u, TypeId$
|
|
22085
|
+
return hasProperty(u, TypeId$43);
|
|
22086
22086
|
}
|
|
22087
22087
|
/**
|
|
22088
22088
|
* @since 4.0.0
|
|
22089
22089
|
*/
|
|
22090
|
-
const make$
|
|
22090
|
+
const make$41 = (options) => {
|
|
22091
22091
|
if (isTransformation(options)) return options;
|
|
22092
22092
|
return new Transformation(options.decode, options.encode);
|
|
22093
22093
|
};
|
|
@@ -22177,7 +22177,7 @@ function makeGuard(tag$1) {
|
|
|
22177
22177
|
* @since 4.0.0
|
|
22178
22178
|
*/
|
|
22179
22179
|
function isAST(u) {
|
|
22180
|
-
return hasProperty(u, TypeId$
|
|
22180
|
+
return hasProperty(u, TypeId$42) && u[TypeId$42] === TypeId$42;
|
|
22181
22181
|
}
|
|
22182
22182
|
/**
|
|
22183
22183
|
* @category Guard
|
|
@@ -22240,13 +22240,13 @@ var Context = class {
|
|
|
22240
22240
|
this.annotations = annotations$1;
|
|
22241
22241
|
}
|
|
22242
22242
|
};
|
|
22243
|
-
const TypeId$
|
|
22243
|
+
const TypeId$42 = "~effect/Schema";
|
|
22244
22244
|
/**
|
|
22245
22245
|
* @category model
|
|
22246
22246
|
* @since 4.0.0
|
|
22247
22247
|
*/
|
|
22248
22248
|
var Base = class {
|
|
22249
|
-
[TypeId$
|
|
22249
|
+
[TypeId$42] = TypeId$42;
|
|
22250
22250
|
annotations;
|
|
22251
22251
|
checks;
|
|
22252
22252
|
encoding;
|
|
@@ -22269,17 +22269,17 @@ var Declaration = class Declaration extends Base {
|
|
|
22269
22269
|
_tag = "Declaration";
|
|
22270
22270
|
typeParameters;
|
|
22271
22271
|
run;
|
|
22272
|
-
constructor(typeParameters, run$
|
|
22272
|
+
constructor(typeParameters, run$7, annotations$1, checks, encoding, context) {
|
|
22273
22273
|
super(annotations$1, checks, encoding, context);
|
|
22274
22274
|
this.typeParameters = typeParameters;
|
|
22275
|
-
this.run = run$
|
|
22275
|
+
this.run = run$7;
|
|
22276
22276
|
}
|
|
22277
22277
|
/** @internal */
|
|
22278
22278
|
getParser() {
|
|
22279
|
-
const run$
|
|
22279
|
+
const run$7 = this.run(this.typeParameters);
|
|
22280
22280
|
return (oinput, options) => {
|
|
22281
22281
|
if (isNone(oinput)) return succeedNone;
|
|
22282
|
-
return mapEager(run$
|
|
22282
|
+
return mapEager(run$7(oinput.value, this, options), some);
|
|
22283
22283
|
};
|
|
22284
22284
|
}
|
|
22285
22285
|
/** @internal */
|
|
@@ -23175,9 +23175,9 @@ var Filter = class Filter extends Class$3 {
|
|
|
23175
23175
|
* Whether the parsing process should be aborted after this check has failed.
|
|
23176
23176
|
*/
|
|
23177
23177
|
aborted;
|
|
23178
|
-
constructor(run$
|
|
23178
|
+
constructor(run$7, annotations$1 = void 0, aborted = false) {
|
|
23179
23179
|
super();
|
|
23180
|
-
this.run = run$
|
|
23180
|
+
this.run = run$7;
|
|
23181
23181
|
this.annotations = annotations$1;
|
|
23182
23182
|
this.aborted = aborted;
|
|
23183
23183
|
}
|
|
@@ -23219,7 +23219,7 @@ var FilterGroup = class FilterGroup extends Class$3 {
|
|
|
23219
23219
|
};
|
|
23220
23220
|
/** @internal */
|
|
23221
23221
|
function makeFilter$1(filter$6, annotations$1, aborted = false) {
|
|
23222
|
-
return new Filter((input, ast, options) => make$
|
|
23222
|
+
return new Filter((input, ast, options) => make$42(input, filter$6(input, ast, options)), annotations$1, aborted);
|
|
23223
23223
|
}
|
|
23224
23224
|
/** @internal */
|
|
23225
23225
|
function makeRefinedByGuard$1(is$2, annotations$1) {
|
|
@@ -23692,7 +23692,7 @@ const recurDefaults = /* @__PURE__ */ memoize((ast) => {
|
|
|
23692
23692
|
* @since 4.0.0
|
|
23693
23693
|
*/
|
|
23694
23694
|
function makeEffect(schema$1) {
|
|
23695
|
-
const parser = run$
|
|
23695
|
+
const parser = run$6(recurDefaults(toType(schema$1.ast)));
|
|
23696
23696
|
return (input, options) => {
|
|
23697
23697
|
return parser(input, options?.parseOptions);
|
|
23698
23698
|
};
|
|
@@ -23701,7 +23701,7 @@ function makeEffect(schema$1) {
|
|
|
23701
23701
|
* @category Constructing
|
|
23702
23702
|
* @since 4.0.0
|
|
23703
23703
|
*/
|
|
23704
|
-
function makeUnsafe$
|
|
23704
|
+
function makeUnsafe$3(schema$1) {
|
|
23705
23705
|
const parser = makeEffect(schema$1);
|
|
23706
23706
|
return (input, options) => {
|
|
23707
23707
|
return runSync(mapErrorEager(parser(input, options), (issue) => new Error(issue.toString(), { cause: issue })));
|
|
@@ -23716,7 +23716,7 @@ function is$1(schema$1) {
|
|
|
23716
23716
|
}
|
|
23717
23717
|
/** @internal */
|
|
23718
23718
|
function _is(ast) {
|
|
23719
|
-
const parser = asExit(run$
|
|
23719
|
+
const parser = asExit(run$6(toType(ast)));
|
|
23720
23720
|
return (input) => {
|
|
23721
23721
|
return isSuccess$2(parser(input, defaultParseOptions));
|
|
23722
23722
|
};
|
|
@@ -23726,7 +23726,7 @@ function _is(ast) {
|
|
|
23726
23726
|
* @since 4.0.0
|
|
23727
23727
|
*/
|
|
23728
23728
|
function asserts$1(schema$1) {
|
|
23729
|
-
const parser = asExit(run$
|
|
23729
|
+
const parser = asExit(run$6(toType(schema$1.ast)));
|
|
23730
23730
|
return (input) => {
|
|
23731
23731
|
const exit$2 = parser(input, defaultParseOptions);
|
|
23732
23732
|
if (isFailure$2(exit$2)) {
|
|
@@ -23741,7 +23741,7 @@ function asserts$1(schema$1) {
|
|
|
23741
23741
|
* @since 4.0.0
|
|
23742
23742
|
*/
|
|
23743
23743
|
function decodeUnknownEffect$1(schema$1) {
|
|
23744
|
-
return run$
|
|
23744
|
+
return run$6(schema$1.ast);
|
|
23745
23745
|
}
|
|
23746
23746
|
/**
|
|
23747
23747
|
* @category Decoding
|
|
@@ -23791,7 +23791,7 @@ const decodeSync$1 = decodeUnknownSync$1;
|
|
|
23791
23791
|
* @since 4.0.0
|
|
23792
23792
|
*/
|
|
23793
23793
|
function encodeUnknownEffect$1(schema$1) {
|
|
23794
|
-
return run$
|
|
23794
|
+
return run$6(flip(schema$1.ast));
|
|
23795
23795
|
}
|
|
23796
23796
|
/**
|
|
23797
23797
|
* @category Encoding
|
|
@@ -23828,7 +23828,7 @@ function encodeUnknownSync$1(schema$1) {
|
|
|
23828
23828
|
*/
|
|
23829
23829
|
const encodeSync$1 = encodeUnknownSync$1;
|
|
23830
23830
|
/** @internal */
|
|
23831
|
-
function run$
|
|
23831
|
+
function run$6(ast) {
|
|
23832
23832
|
const parser = recur$1(ast);
|
|
23833
23833
|
return (input, options) => flatMapEager(parser(some(input), options ?? defaultParseOptions), (oa) => {
|
|
23834
23834
|
if (oa._tag === "None") return fail$4(new InvalidValue$1(oa));
|
|
@@ -23996,9 +23996,9 @@ function escapeToken(token) {
|
|
|
23996
23996
|
//#endregion
|
|
23997
23997
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/schema/schema.js
|
|
23998
23998
|
/** @internal */
|
|
23999
|
-
const TypeId$
|
|
23999
|
+
const TypeId$41 = "~effect/Schema/Schema";
|
|
24000
24000
|
const SchemaProto = {
|
|
24001
|
-
[TypeId$
|
|
24001
|
+
[TypeId$41]: TypeId$41,
|
|
24002
24002
|
pipe() {
|
|
24003
24003
|
return pipeArguments(this, arguments);
|
|
24004
24004
|
},
|
|
@@ -24013,12 +24013,12 @@ const SchemaProto = {
|
|
|
24013
24013
|
}
|
|
24014
24014
|
};
|
|
24015
24015
|
/** @internal */
|
|
24016
|
-
function make$
|
|
24016
|
+
function make$40(ast, options) {
|
|
24017
24017
|
const self$1 = Object.create(SchemaProto);
|
|
24018
24018
|
if (options) Object.assign(self$1, options);
|
|
24019
24019
|
self$1.ast = ast;
|
|
24020
|
-
self$1.rebuild = (ast$1) => make$
|
|
24021
|
-
self$1.makeUnsafe = makeUnsafe$
|
|
24020
|
+
self$1.rebuild = (ast$1) => make$40(ast$1, options);
|
|
24021
|
+
self$1.makeUnsafe = makeUnsafe$3(self$1);
|
|
24022
24022
|
return self$1;
|
|
24023
24023
|
}
|
|
24024
24024
|
|
|
@@ -24037,7 +24037,7 @@ function toCodecJsonBase(ast) {
|
|
|
24037
24037
|
case "Declaration": {
|
|
24038
24038
|
const getLink = ast.annotations?.toCodecJson ?? ast.annotations?.toCodec;
|
|
24039
24039
|
if (isFunction(getLink)) {
|
|
24040
|
-
const link$2 = getLink(isDeclaration(ast) ? ast.typeParameters.map((tp) => make$
|
|
24040
|
+
const link$2 = getLink(isDeclaration(ast) ? ast.typeParameters.map((tp) => make$40(toEncoded(tp))) : []);
|
|
24041
24041
|
const to = toCodecJson$1(link$2.to);
|
|
24042
24042
|
return replaceEncoding(ast, to === link$2.to ? [link$2] : [new Link(to, link$2.transformation)]);
|
|
24043
24043
|
}
|
|
@@ -24215,7 +24215,7 @@ function fromASTs(asts) {
|
|
|
24215
24215
|
function getEncodedSchema(last$1) {
|
|
24216
24216
|
const getLink = last$1.annotations?.toCodecJson ?? last$1.annotations?.toCodec;
|
|
24217
24217
|
if (isFunction(getLink)) {
|
|
24218
|
-
const link$2 = getLink(last$1.typeParameters.map((tp) => make$
|
|
24218
|
+
const link$2 = getLink(last$1.typeParameters.map((tp) => make$40(toEncoded(tp))));
|
|
24219
24219
|
return replaceEncoding(last$1, [link$2]);
|
|
24220
24220
|
}
|
|
24221
24221
|
return null_;
|
|
@@ -24719,7 +24719,7 @@ const redactedRegistry = /* @__PURE__ */ new WeakMap();
|
|
|
24719
24719
|
*
|
|
24720
24720
|
* @since 3.3.0
|
|
24721
24721
|
*/
|
|
24722
|
-
const TypeId$
|
|
24722
|
+
const TypeId$40 = "~effect/data/Redacted";
|
|
24723
24723
|
/**
|
|
24724
24724
|
* @example
|
|
24725
24725
|
* ```ts
|
|
@@ -24735,7 +24735,7 @@ const TypeId$39 = "~effect/data/Redacted";
|
|
|
24735
24735
|
* @since 3.3.0
|
|
24736
24736
|
* @category refinements
|
|
24737
24737
|
*/
|
|
24738
|
-
const isRedacted = (u) => hasProperty(u, TypeId$
|
|
24738
|
+
const isRedacted = (u) => hasProperty(u, TypeId$40);
|
|
24739
24739
|
/**
|
|
24740
24740
|
* This function creates a `Redacted<A>` instance from a given value `A`,
|
|
24741
24741
|
* securely hiding its content.
|
|
@@ -24750,14 +24750,14 @@ const isRedacted = (u) => hasProperty(u, TypeId$39);
|
|
|
24750
24750
|
* @since 3.3.0
|
|
24751
24751
|
* @category constructors
|
|
24752
24752
|
*/
|
|
24753
|
-
const make$
|
|
24754
|
-
const redacted = Object.create(Proto$
|
|
24753
|
+
const make$39 = (value, options) => {
|
|
24754
|
+
const redacted = Object.create(Proto$16);
|
|
24755
24755
|
if (options?.label) redacted.label = options.label;
|
|
24756
24756
|
redactedRegistry.set(redacted, value);
|
|
24757
24757
|
return redacted;
|
|
24758
24758
|
};
|
|
24759
|
-
const Proto$
|
|
24760
|
-
[TypeId$
|
|
24759
|
+
const Proto$16 = {
|
|
24760
|
+
[TypeId$40]: { _A: (_) => _ },
|
|
24761
24761
|
label: void 0,
|
|
24762
24762
|
...PipeInspectableProto,
|
|
24763
24763
|
toJSON() {
|
|
@@ -24776,7 +24776,7 @@ const Proto$15 = {
|
|
|
24776
24776
|
|
|
24777
24777
|
//#endregion
|
|
24778
24778
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Schema.js
|
|
24779
|
-
const TypeId$
|
|
24779
|
+
const TypeId$39 = TypeId$41;
|
|
24780
24780
|
/**
|
|
24781
24781
|
* An API for creating schemas for parametric types.
|
|
24782
24782
|
*
|
|
@@ -24786,8 +24786,8 @@ const TypeId$38 = TypeId$40;
|
|
|
24786
24786
|
* @since 4.0.0
|
|
24787
24787
|
*/
|
|
24788
24788
|
function declareConstructor() {
|
|
24789
|
-
return (typeParameters, run$
|
|
24790
|
-
return make$
|
|
24789
|
+
return (typeParameters, run$7, annotations$1) => {
|
|
24790
|
+
return make$38(new Declaration(typeParameters.map(getAST), (typeParameters$1) => run$7(typeParameters$1.map((ast) => make$38(ast))), annotations$1));
|
|
24791
24791
|
};
|
|
24792
24792
|
}
|
|
24793
24793
|
/**
|
|
@@ -25017,7 +25017,7 @@ const encodeSync = encodeSync$1;
|
|
|
25017
25017
|
* @category Constructors
|
|
25018
25018
|
* @since 4.0.0
|
|
25019
25019
|
*/
|
|
25020
|
-
const make$
|
|
25020
|
+
const make$38 = make$40;
|
|
25021
25021
|
/**
|
|
25022
25022
|
* Tests if a value is a `Schema`.
|
|
25023
25023
|
*
|
|
@@ -25025,7 +25025,7 @@ const make$37 = make$39;
|
|
|
25025
25025
|
* @since 4.0.0
|
|
25026
25026
|
*/
|
|
25027
25027
|
function isSchema(u) {
|
|
25028
|
-
return hasProperty(u, TypeId$
|
|
25028
|
+
return hasProperty(u, TypeId$39) && u[TypeId$39] === TypeId$39;
|
|
25029
25029
|
}
|
|
25030
25030
|
/**
|
|
25031
25031
|
* Creates an exact optional key schema for struct fields. Unlike `optional`,
|
|
@@ -25048,7 +25048,7 @@ function isSchema(u) {
|
|
|
25048
25048
|
*
|
|
25049
25049
|
* @since 4.0.0
|
|
25050
25050
|
*/
|
|
25051
|
-
const optionalKey = /* @__PURE__ */ lambda((schema$1) => make$
|
|
25051
|
+
const optionalKey = /* @__PURE__ */ lambda((schema$1) => make$38(optionalKey$1(schema$1.ast), { schema: schema$1 }));
|
|
25052
25052
|
/**
|
|
25053
25053
|
* Creates an optional schema field that allows both the specified type and
|
|
25054
25054
|
* `undefined`.
|
|
@@ -25083,7 +25083,7 @@ const optional$2 = /* @__PURE__ */ lambda((self$1) => optionalKey(UndefinedOr(se
|
|
|
25083
25083
|
* @since 4.0.0
|
|
25084
25084
|
*/
|
|
25085
25085
|
function Literal(literal) {
|
|
25086
|
-
const out = make$
|
|
25086
|
+
const out = make$38(new Literal$1(literal), {
|
|
25087
25087
|
literal,
|
|
25088
25088
|
transform(to) {
|
|
25089
25089
|
return out.pipe(decodeTo(Literal(to), {
|
|
@@ -25097,29 +25097,29 @@ function Literal(literal) {
|
|
|
25097
25097
|
/**
|
|
25098
25098
|
* @since 4.0.0
|
|
25099
25099
|
*/
|
|
25100
|
-
const Never = /* @__PURE__ */ make$
|
|
25100
|
+
const Never = /* @__PURE__ */ make$38(never$3);
|
|
25101
25101
|
/**
|
|
25102
25102
|
* @since 4.0.0
|
|
25103
25103
|
*/
|
|
25104
|
-
const Any = /* @__PURE__ */ make$
|
|
25104
|
+
const Any = /* @__PURE__ */ make$38(any);
|
|
25105
25105
|
/**
|
|
25106
25106
|
* @since 4.0.0
|
|
25107
25107
|
*/
|
|
25108
|
-
const Unknown = /* @__PURE__ */ make$
|
|
25108
|
+
const Unknown = /* @__PURE__ */ make$38(unknown);
|
|
25109
25109
|
/**
|
|
25110
25110
|
* @since 4.0.0
|
|
25111
25111
|
*/
|
|
25112
|
-
const Null = /* @__PURE__ */ make$
|
|
25112
|
+
const Null = /* @__PURE__ */ make$38(null_);
|
|
25113
25113
|
/**
|
|
25114
25114
|
* @since 4.0.0
|
|
25115
25115
|
*/
|
|
25116
|
-
const Undefined = /* @__PURE__ */ make$
|
|
25116
|
+
const Undefined = /* @__PURE__ */ make$38(undefined_);
|
|
25117
25117
|
/**
|
|
25118
25118
|
* A schema for all strings.
|
|
25119
25119
|
*
|
|
25120
25120
|
* @since 4.0.0
|
|
25121
25121
|
*/
|
|
25122
|
-
const String$1 = /* @__PURE__ */ make$
|
|
25122
|
+
const String$1 = /* @__PURE__ */ make$38(string$5);
|
|
25123
25123
|
/**
|
|
25124
25124
|
* A schema for all numbers, including `NaN`, `Infinity`, and `-Infinity`.
|
|
25125
25125
|
*
|
|
@@ -25130,40 +25130,40 @@ const String$1 = /* @__PURE__ */ make$37(string$5);
|
|
|
25130
25130
|
*
|
|
25131
25131
|
* @since 4.0.0
|
|
25132
25132
|
*/
|
|
25133
|
-
const Number$1 = /* @__PURE__ */ make$
|
|
25133
|
+
const Number$1 = /* @__PURE__ */ make$38(number);
|
|
25134
25134
|
/**
|
|
25135
25135
|
* A schema for all booleans.
|
|
25136
25136
|
*
|
|
25137
25137
|
* @category Boolean
|
|
25138
25138
|
* @since 4.0.0
|
|
25139
25139
|
*/
|
|
25140
|
-
const Boolean$2 = /* @__PURE__ */ make$
|
|
25140
|
+
const Boolean$2 = /* @__PURE__ */ make$38(boolean$3);
|
|
25141
25141
|
/**
|
|
25142
25142
|
* A schema for all symbols.
|
|
25143
25143
|
*
|
|
25144
25144
|
* @since 4.0.0
|
|
25145
25145
|
*/
|
|
25146
|
-
const Symbol$1 = /* @__PURE__ */ make$
|
|
25146
|
+
const Symbol$1 = /* @__PURE__ */ make$38(symbol);
|
|
25147
25147
|
/**
|
|
25148
25148
|
* A schema for all bigints.
|
|
25149
25149
|
*
|
|
25150
25150
|
* @since 4.0.0
|
|
25151
25151
|
*/
|
|
25152
|
-
const BigInt$1 = /* @__PURE__ */ make$
|
|
25152
|
+
const BigInt$1 = /* @__PURE__ */ make$38(bigInt);
|
|
25153
25153
|
/**
|
|
25154
25154
|
* A schema for the `void` type.
|
|
25155
25155
|
*
|
|
25156
25156
|
* @since 4.0.0
|
|
25157
25157
|
*/
|
|
25158
|
-
const Void = /* @__PURE__ */ make$
|
|
25158
|
+
const Void = /* @__PURE__ */ make$38(void_);
|
|
25159
25159
|
/**
|
|
25160
25160
|
* A schema for the `object` type.
|
|
25161
25161
|
*
|
|
25162
25162
|
* @since 4.0.0
|
|
25163
25163
|
*/
|
|
25164
|
-
const ObjectKeyword = /* @__PURE__ */ make$
|
|
25164
|
+
const ObjectKeyword = /* @__PURE__ */ make$38(objectKeyword);
|
|
25165
25165
|
function makeStruct(ast, fields) {
|
|
25166
|
-
return make$
|
|
25166
|
+
return make$38(ast, {
|
|
25167
25167
|
fields,
|
|
25168
25168
|
mapFields(f, options) {
|
|
25169
25169
|
const fields$1 = f(this.fields);
|
|
@@ -25182,13 +25182,13 @@ function Struct(fields) {
|
|
|
25182
25182
|
*/
|
|
25183
25183
|
function Record(key, value, options) {
|
|
25184
25184
|
const keyValueCombiner = options?.keyValueCombiner?.decode || options?.keyValueCombiner?.encode ? new KeyValueCombiner(options.keyValueCombiner.decode, options.keyValueCombiner.encode) : void 0;
|
|
25185
|
-
return make$
|
|
25185
|
+
return make$38(record(key.ast, value.ast, keyValueCombiner), {
|
|
25186
25186
|
key,
|
|
25187
25187
|
value
|
|
25188
25188
|
});
|
|
25189
25189
|
}
|
|
25190
25190
|
function makeTuple(ast, elements) {
|
|
25191
|
-
return make$
|
|
25191
|
+
return make$38(ast, {
|
|
25192
25192
|
elements,
|
|
25193
25193
|
mapElements(f, options) {
|
|
25194
25194
|
const elements$1 = f(this.elements);
|
|
@@ -25207,14 +25207,14 @@ function Tuple(elements) {
|
|
|
25207
25207
|
* @category Constructors
|
|
25208
25208
|
* @since 4.0.0
|
|
25209
25209
|
*/
|
|
25210
|
-
const Array$1 = /* @__PURE__ */ lambda((schema$1) => make$
|
|
25210
|
+
const Array$1 = /* @__PURE__ */ lambda((schema$1) => make$38(new Arrays(false, [], [schema$1.ast]), { schema: schema$1 }));
|
|
25211
25211
|
/**
|
|
25212
25212
|
* @category Constructors
|
|
25213
25213
|
* @since 4.0.0
|
|
25214
25214
|
*/
|
|
25215
|
-
const NonEmptyArray = /* @__PURE__ */ lambda((schema$1) => make$
|
|
25215
|
+
const NonEmptyArray = /* @__PURE__ */ lambda((schema$1) => make$38(new Arrays(false, [schema$1.ast], [schema$1.ast]), { schema: schema$1 }));
|
|
25216
25216
|
function makeUnion(ast, members) {
|
|
25217
|
-
return make$
|
|
25217
|
+
return make$38(ast, {
|
|
25218
25218
|
members,
|
|
25219
25219
|
mapMembers(f, options) {
|
|
25220
25220
|
const members$1 = f(this.members);
|
|
@@ -25243,7 +25243,7 @@ function Union(members, options) {
|
|
|
25243
25243
|
*/
|
|
25244
25244
|
function Literals(literals) {
|
|
25245
25245
|
const members = literals.map(Literal);
|
|
25246
|
-
return make$
|
|
25246
|
+
return make$38(union(members, "anyOf", void 0), {
|
|
25247
25247
|
literals,
|
|
25248
25248
|
members,
|
|
25249
25249
|
mapMembers(f) {
|
|
@@ -25269,7 +25269,7 @@ const NullOr = /* @__PURE__ */ lambda((self$1) => Union([self$1, Null]));
|
|
|
25269
25269
|
const UndefinedOr = /* @__PURE__ */ lambda((self$1) => Union([self$1, Undefined]));
|
|
25270
25270
|
function decodeTo(to, transformation) {
|
|
25271
25271
|
return (from) => {
|
|
25272
|
-
return make$
|
|
25272
|
+
return make$38(decodeTo$1(from.ast, to.ast, transformation ? make$41(transformation) : passthrough()), {
|
|
25273
25273
|
from,
|
|
25274
25274
|
to
|
|
25275
25275
|
});
|
|
@@ -25280,7 +25280,7 @@ function decodeTo(to, transformation) {
|
|
|
25280
25280
|
*/
|
|
25281
25281
|
function withConstructorDefault(defaultValue) {
|
|
25282
25282
|
return (schema$1) => {
|
|
25283
|
-
return make$
|
|
25283
|
+
return make$38(withConstructorDefault$1(schema$1.ast, defaultValue), { schema: schema$1 });
|
|
25284
25284
|
};
|
|
25285
25285
|
}
|
|
25286
25286
|
/**
|
|
@@ -25312,7 +25312,7 @@ function instanceOf(constructor, annotations$1) {
|
|
|
25312
25312
|
*/
|
|
25313
25313
|
function link$1() {
|
|
25314
25314
|
return (encodeTo, transformation) => {
|
|
25315
|
-
return new Link(encodeTo.ast, make$
|
|
25315
|
+
return new Link(encodeTo.ast, make$41(transformation));
|
|
25316
25316
|
};
|
|
25317
25317
|
}
|
|
25318
25318
|
/**
|
|
@@ -26000,7 +26000,7 @@ const isNotUndefined = isNotUndefined$1;
|
|
|
26000
26000
|
* @since 4.0.0
|
|
26001
26001
|
*/
|
|
26002
26002
|
function Option(value) {
|
|
26003
|
-
return make$
|
|
26003
|
+
return make$38(declareConstructor()([value], ([value$1]) => (input, ast, options) => {
|
|
26004
26004
|
if (isOption(input)) {
|
|
26005
26005
|
if (isNone(input)) return succeedNone;
|
|
26006
26006
|
return mapBothEager(decodeUnknownEffect$1(value$1)(input.value, options), {
|
|
@@ -26550,7 +26550,7 @@ const DateTimeUtcFromDate = /* @__PURE__ */ DateValid.pipe(/* @__PURE__ */ decod
|
|
|
26550
26550
|
* @since 4.0.0
|
|
26551
26551
|
*/
|
|
26552
26552
|
const DateTimeUtcFromString = /* @__PURE__ */ String$1.annotate({ expected: "a string that will be decoded as a DateTime.Utc" }).pipe(/* @__PURE__ */ decodeTo(DateTimeUtc, /* @__PURE__ */ transform({
|
|
26553
|
-
decode: makeUnsafe$
|
|
26553
|
+
decode: makeUnsafe$4,
|
|
26554
26554
|
encode: formatIso
|
|
26555
26555
|
})));
|
|
26556
26556
|
/**
|
|
@@ -26590,7 +26590,7 @@ function makeClass(Inherited, identifier$1, struct$1, annotations$1) {
|
|
|
26590
26590
|
toString() {
|
|
26591
26591
|
return `${identifier$1}(${format$2({ ...this })})`;
|
|
26592
26592
|
}
|
|
26593
|
-
static [TypeId$
|
|
26593
|
+
static [TypeId$39] = TypeId$39;
|
|
26594
26594
|
get [ClassTypeId$1]() {
|
|
26595
26595
|
return ClassTypeId$1;
|
|
26596
26596
|
}
|
|
@@ -26643,7 +26643,7 @@ function getClassSchemaFactory(from, identifier$1, annotations$1) {
|
|
|
26643
26643
|
return (self$1) => {
|
|
26644
26644
|
if (memo === void 0) {
|
|
26645
26645
|
const transformation = getClassTransformation(self$1);
|
|
26646
|
-
const to = make$
|
|
26646
|
+
const to = make$38(new Declaration([from.ast], () => (input, ast) => {
|
|
26647
26647
|
return input instanceof self$1 || hasProperty(input, getClassTypeId(identifier$1)) ? succeed$1(input) : fail$4(new InvalidType(ast, some(input)));
|
|
26648
26648
|
}, {
|
|
26649
26649
|
identifier: identifier$1,
|
|
@@ -26706,11 +26706,11 @@ function toJsonSchemaDocument(schema$1, options) {
|
|
|
26706
26706
|
* @since 4.0.0
|
|
26707
26707
|
*/
|
|
26708
26708
|
function toCodecJson(schema$1) {
|
|
26709
|
-
return make$
|
|
26709
|
+
return make$38(toCodecJson$1(schema$1.ast));
|
|
26710
26710
|
}
|
|
26711
26711
|
function toCodecStringTree(schema$1, options) {
|
|
26712
|
-
if (options?.keepDeclarations === true) return make$
|
|
26713
|
-
else return make$
|
|
26712
|
+
if (options?.keepDeclarations === true) return make$38(toCodecEnsureArray(serializerStringTreeKeepDeclarations(schema$1.ast)));
|
|
26713
|
+
else return make$38(toCodecEnsureArray(serializerStringTree(schema$1.ast)));
|
|
26714
26714
|
}
|
|
26715
26715
|
function getStringTreePriority(ast) {
|
|
26716
26716
|
switch (ast._tag) {
|
|
@@ -26731,7 +26731,7 @@ function serializerTree(ast, recur$2, onMissingAnnotation) {
|
|
|
26731
26731
|
case "Declaration": {
|
|
26732
26732
|
const getLink = ast.annotations?.toCodecJson ?? ast.annotations?.toCodec;
|
|
26733
26733
|
if (isFunction(getLink)) {
|
|
26734
|
-
const link$2 = getLink(isDeclaration(ast) ? ast.typeParameters.map((tp) => make$
|
|
26734
|
+
const link$2 = getLink(isDeclaration(ast) ? ast.typeParameters.map((tp) => make$38(recur$2(toEncoded(tp)))) : []);
|
|
26735
26735
|
const to = recur$2(link$2.to);
|
|
26736
26736
|
return replaceEncoding(ast, to === link$2.to ? [link$2] : [new Link(to, link$2.transformation)]);
|
|
26737
26737
|
}
|
|
@@ -26801,7 +26801,7 @@ function onSerializerEnsureArray(ast) {
|
|
|
26801
26801
|
* @since 4.0.0
|
|
26802
26802
|
* @category type id
|
|
26803
26803
|
*/
|
|
26804
|
-
const TypeId$
|
|
26804
|
+
const TypeId$38 = "~effect/cli/CliError";
|
|
26805
26805
|
/**
|
|
26806
26806
|
* Type guard to check if a value is a CLI error.
|
|
26807
26807
|
*
|
|
@@ -26831,7 +26831,7 @@ const TypeId$37 = "~effect/cli/CliError";
|
|
|
26831
26831
|
* @since 4.0.0
|
|
26832
26832
|
* @category guards
|
|
26833
26833
|
*/
|
|
26834
|
-
const isCliError = (u) => hasProperty(u, TypeId$
|
|
26834
|
+
const isCliError = (u) => hasProperty(u, TypeId$38);
|
|
26835
26835
|
/**
|
|
26836
26836
|
* Error thrown when an unrecognized option is encountered.
|
|
26837
26837
|
*
|
|
@@ -26864,7 +26864,7 @@ const isCliError = (u) => hasProperty(u, TypeId$37);
|
|
|
26864
26864
|
* @since 4.0.0
|
|
26865
26865
|
* @category models
|
|
26866
26866
|
*/
|
|
26867
|
-
var UnrecognizedOption = class extends ErrorClass(`${TypeId$
|
|
26867
|
+
var UnrecognizedOption = class extends ErrorClass(`${TypeId$38}/UnrecognizedOption`)({
|
|
26868
26868
|
_tag: /* @__PURE__ */ tag("UnrecognizedOption"),
|
|
26869
26869
|
option: String$1,
|
|
26870
26870
|
command: /* @__PURE__ */ optional$2(/* @__PURE__ */ Array$1(String$1)),
|
|
@@ -26873,7 +26873,7 @@ var UnrecognizedOption = class extends ErrorClass(`${TypeId$37}/UnrecognizedOpti
|
|
|
26873
26873
|
/**
|
|
26874
26874
|
* @since 4.0.0
|
|
26875
26875
|
*/
|
|
26876
|
-
[TypeId$
|
|
26876
|
+
[TypeId$38] = TypeId$38;
|
|
26877
26877
|
/**
|
|
26878
26878
|
* @since 4.0.0
|
|
26879
26879
|
*/
|
|
@@ -26903,7 +26903,7 @@ var UnrecognizedOption = class extends ErrorClass(`${TypeId$37}/UnrecognizedOpti
|
|
|
26903
26903
|
* @since 4.0.0
|
|
26904
26904
|
* @category models
|
|
26905
26905
|
*/
|
|
26906
|
-
var DuplicateOption = class extends ErrorClass(`${TypeId$
|
|
26906
|
+
var DuplicateOption = class extends ErrorClass(`${TypeId$38}/DuplicateOption`)({
|
|
26907
26907
|
_tag: /* @__PURE__ */ tag("DuplicateOption"),
|
|
26908
26908
|
option: String$1,
|
|
26909
26909
|
parentCommand: String$1,
|
|
@@ -26912,7 +26912,7 @@ var DuplicateOption = class extends ErrorClass(`${TypeId$37}/DuplicateOption`)({
|
|
|
26912
26912
|
/**
|
|
26913
26913
|
* @since 4.0.0
|
|
26914
26914
|
*/
|
|
26915
|
-
[TypeId$
|
|
26915
|
+
[TypeId$38] = TypeId$38;
|
|
26916
26916
|
/**
|
|
26917
26917
|
* @since 4.0.0
|
|
26918
26918
|
*/
|
|
@@ -26949,14 +26949,14 @@ var DuplicateOption = class extends ErrorClass(`${TypeId$37}/DuplicateOption`)({
|
|
|
26949
26949
|
* @since 4.0.0
|
|
26950
26950
|
* @category models
|
|
26951
26951
|
*/
|
|
26952
|
-
var MissingOption = class extends ErrorClass(`${TypeId$
|
|
26952
|
+
var MissingOption = class extends ErrorClass(`${TypeId$38}/MissingOption`)({
|
|
26953
26953
|
_tag: /* @__PURE__ */ tag("MissingOption"),
|
|
26954
26954
|
option: String$1
|
|
26955
26955
|
}) {
|
|
26956
26956
|
/**
|
|
26957
26957
|
* @since 4.0.0
|
|
26958
26958
|
*/
|
|
26959
|
-
[TypeId$
|
|
26959
|
+
[TypeId$38] = TypeId$38;
|
|
26960
26960
|
/**
|
|
26961
26961
|
* @since 4.0.0
|
|
26962
26962
|
*/
|
|
@@ -26992,14 +26992,14 @@ var MissingOption = class extends ErrorClass(`${TypeId$37}/MissingOption`)({
|
|
|
26992
26992
|
* @since 4.0.0
|
|
26993
26993
|
* @category models
|
|
26994
26994
|
*/
|
|
26995
|
-
var MissingArgument = class extends ErrorClass(`${TypeId$
|
|
26995
|
+
var MissingArgument = class extends ErrorClass(`${TypeId$38}/MissingArgument`)({
|
|
26996
26996
|
_tag: /* @__PURE__ */ tag("MissingArgument"),
|
|
26997
26997
|
argument: String$1
|
|
26998
26998
|
}) {
|
|
26999
26999
|
/**
|
|
27000
27000
|
* @since 4.0.0
|
|
27001
27001
|
*/
|
|
27002
|
-
[TypeId$
|
|
27002
|
+
[TypeId$38] = TypeId$38;
|
|
27003
27003
|
/**
|
|
27004
27004
|
* @since 4.0.0
|
|
27005
27005
|
*/
|
|
@@ -27040,7 +27040,7 @@ var MissingArgument = class extends ErrorClass(`${TypeId$37}/MissingArgument`)({
|
|
|
27040
27040
|
* @since 4.0.0
|
|
27041
27041
|
* @category models
|
|
27042
27042
|
*/
|
|
27043
|
-
var InvalidValue = class extends ErrorClass(`${TypeId$
|
|
27043
|
+
var InvalidValue = class extends ErrorClass(`${TypeId$38}/InvalidValue`)({
|
|
27044
27044
|
_tag: /* @__PURE__ */ tag("InvalidValue"),
|
|
27045
27045
|
option: String$1,
|
|
27046
27046
|
value: String$1,
|
|
@@ -27050,7 +27050,7 @@ var InvalidValue = class extends ErrorClass(`${TypeId$37}/InvalidValue`)({
|
|
|
27050
27050
|
/**
|
|
27051
27051
|
* @since 4.0.0
|
|
27052
27052
|
*/
|
|
27053
|
-
[TypeId$
|
|
27053
|
+
[TypeId$38] = TypeId$38;
|
|
27054
27054
|
/**
|
|
27055
27055
|
* @since 4.0.0
|
|
27056
27056
|
*/
|
|
@@ -27094,7 +27094,7 @@ var InvalidValue = class extends ErrorClass(`${TypeId$37}/InvalidValue`)({
|
|
|
27094
27094
|
* @since 4.0.0
|
|
27095
27095
|
* @category models
|
|
27096
27096
|
*/
|
|
27097
|
-
var UnknownSubcommand = class extends ErrorClass(`${TypeId$
|
|
27097
|
+
var UnknownSubcommand = class extends ErrorClass(`${TypeId$38}/UnknownSubcommand`)({
|
|
27098
27098
|
_tag: /* @__PURE__ */ tag("UnknownSubcommand"),
|
|
27099
27099
|
subcommand: String$1,
|
|
27100
27100
|
parent: /* @__PURE__ */ optional$2(/* @__PURE__ */ Array$1(String$1)),
|
|
@@ -27103,7 +27103,7 @@ var UnknownSubcommand = class extends ErrorClass(`${TypeId$37}/UnknownSubcommand
|
|
|
27103
27103
|
/**
|
|
27104
27104
|
* @since 4.0.0
|
|
27105
27105
|
*/
|
|
27106
|
-
[TypeId$
|
|
27106
|
+
[TypeId$38] = TypeId$38;
|
|
27107
27107
|
/**
|
|
27108
27108
|
* @since 4.0.0
|
|
27109
27109
|
*/
|
|
@@ -27150,14 +27150,14 @@ var UnknownSubcommand = class extends ErrorClass(`${TypeId$37}/UnknownSubcommand
|
|
|
27150
27150
|
* @since 4.0.0
|
|
27151
27151
|
* @category models
|
|
27152
27152
|
*/
|
|
27153
|
-
var ShowHelp = class extends ErrorClass(`${TypeId$
|
|
27153
|
+
var ShowHelp = class extends ErrorClass(`${TypeId$38}/ShowHelp`)({
|
|
27154
27154
|
_tag: /* @__PURE__ */ tag("ShowHelp"),
|
|
27155
27155
|
commandPath: /* @__PURE__ */ Array$1(String$1)
|
|
27156
27156
|
}) {
|
|
27157
27157
|
/**
|
|
27158
27158
|
* @since 4.0.0
|
|
27159
27159
|
*/
|
|
27160
|
-
[TypeId$
|
|
27160
|
+
[TypeId$38] = TypeId$38;
|
|
27161
27161
|
/**
|
|
27162
27162
|
* @since 4.0.0
|
|
27163
27163
|
*/
|
|
@@ -27200,14 +27200,14 @@ var ShowHelp = class extends ErrorClass(`${TypeId$37}/ShowHelp`)({
|
|
|
27200
27200
|
* @since 4.0.0
|
|
27201
27201
|
* @category models
|
|
27202
27202
|
*/
|
|
27203
|
-
var UserError = class extends ErrorClass(`${TypeId$
|
|
27203
|
+
var UserError = class extends ErrorClass(`${TypeId$38}/UserError`)({
|
|
27204
27204
|
_tag: /* @__PURE__ */ tag("UserError"),
|
|
27205
27205
|
cause: Defect
|
|
27206
27206
|
}) {
|
|
27207
27207
|
/**
|
|
27208
27208
|
* @since 4.0.0
|
|
27209
27209
|
*/
|
|
27210
|
-
[TypeId$
|
|
27210
|
+
[TypeId$38] = TypeId$38;
|
|
27211
27211
|
};
|
|
27212
27212
|
|
|
27213
27213
|
//#endregion
|
|
@@ -37825,7 +37825,7 @@ function nominal() {
|
|
|
37825
37825
|
/**
|
|
37826
37826
|
* @since 4.0.0
|
|
37827
37827
|
*/
|
|
37828
|
-
const TypeId$
|
|
37828
|
+
const TypeId$37 = "~effect/platform/PlatformError";
|
|
37829
37829
|
/**
|
|
37830
37830
|
* @since 4.0.0
|
|
37831
37831
|
* @category Models
|
|
@@ -37834,7 +37834,7 @@ var BadArgument = class extends TaggedError("PlatformError") {
|
|
|
37834
37834
|
/**
|
|
37835
37835
|
* @since 4.0.0
|
|
37836
37836
|
*/
|
|
37837
|
-
[TypeId$
|
|
37837
|
+
[TypeId$37] = TypeId$37;
|
|
37838
37838
|
/**
|
|
37839
37839
|
* @since 4.0.0
|
|
37840
37840
|
*/
|
|
@@ -37854,7 +37854,7 @@ var SystemError = class extends TaggedError("PlatformError") {
|
|
|
37854
37854
|
/**
|
|
37855
37855
|
* @since 4.0.0
|
|
37856
37856
|
*/
|
|
37857
|
-
[TypeId$
|
|
37857
|
+
[TypeId$37] = TypeId$37;
|
|
37858
37858
|
/**
|
|
37859
37859
|
* @since 4.0.0
|
|
37860
37860
|
*/
|
|
@@ -38171,7 +38171,7 @@ const Empty$2 = /* @__PURE__ */ Symbol.for("effect/MutableList/Empty");
|
|
|
38171
38171
|
* @since 4.0.0
|
|
38172
38172
|
* @category constructors
|
|
38173
38173
|
*/
|
|
38174
|
-
const make$
|
|
38174
|
+
const make$37 = () => ({
|
|
38175
38175
|
head: void 0,
|
|
38176
38176
|
tail: void 0,
|
|
38177
38177
|
length: 0
|
|
@@ -38341,7 +38341,7 @@ const appendAllUnsafe = (self$1, messages, mutable = false) => {
|
|
|
38341
38341
|
* @since 4.0.0
|
|
38342
38342
|
* @category mutations
|
|
38343
38343
|
*/
|
|
38344
|
-
const clear$
|
|
38344
|
+
const clear$2 = (self$1) => {
|
|
38345
38345
|
self$1.head = self$1.tail = void 0;
|
|
38346
38346
|
self$1.length = 0;
|
|
38347
38347
|
};
|
|
@@ -38391,7 +38391,7 @@ const takeN = (self$1, n) => {
|
|
|
38391
38391
|
n = Math.min(n, self$1.length);
|
|
38392
38392
|
if (n === self$1.length && self$1.head?.offset === 0 && !self$1.head.next) {
|
|
38393
38393
|
const array$2 = self$1.head.array;
|
|
38394
|
-
clear$
|
|
38394
|
+
clear$2(self$1);
|
|
38395
38395
|
return array$2;
|
|
38396
38396
|
}
|
|
38397
38397
|
const array$1 = new Array(n);
|
|
@@ -38405,13 +38405,13 @@ const takeN = (self$1, n) => {
|
|
|
38405
38405
|
if (index === n) {
|
|
38406
38406
|
self$1.head = chunk;
|
|
38407
38407
|
self$1.length -= n;
|
|
38408
|
-
if (self$1.length === 0) clear$
|
|
38408
|
+
if (self$1.length === 0) clear$2(self$1);
|
|
38409
38409
|
return array$1;
|
|
38410
38410
|
}
|
|
38411
38411
|
}
|
|
38412
38412
|
chunk = chunk.next;
|
|
38413
38413
|
}
|
|
38414
|
-
clear$
|
|
38414
|
+
clear$2(self$1);
|
|
38415
38415
|
return array$1;
|
|
38416
38416
|
};
|
|
38417
38417
|
/**
|
|
@@ -38469,15 +38469,15 @@ const take$1 = (self$1) => {
|
|
|
38469
38469
|
self$1.head.offset++;
|
|
38470
38470
|
self$1.length--;
|
|
38471
38471
|
if (self$1.head.offset === self$1.head.array.length) if (self$1.head.next) self$1.head = self$1.head.next;
|
|
38472
|
-
else clear$
|
|
38472
|
+
else clear$2(self$1);
|
|
38473
38473
|
return message;
|
|
38474
38474
|
};
|
|
38475
38475
|
|
|
38476
38476
|
//#endregion
|
|
38477
38477
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/MutableRef.js
|
|
38478
|
-
const TypeId$
|
|
38478
|
+
const TypeId$36 = "~effect/MutableRef";
|
|
38479
38479
|
const MutableRefProto = {
|
|
38480
|
-
[TypeId$
|
|
38480
|
+
[TypeId$36]: TypeId$36,
|
|
38481
38481
|
...PipeInspectableProto,
|
|
38482
38482
|
toJSON() {
|
|
38483
38483
|
return {
|
|
@@ -38510,7 +38510,7 @@ const MutableRefProto = {
|
|
|
38510
38510
|
* @since 2.0.0
|
|
38511
38511
|
* @category constructors
|
|
38512
38512
|
*/
|
|
38513
|
-
const make$
|
|
38513
|
+
const make$36 = (value) => {
|
|
38514
38514
|
const ref = Object.create(MutableRefProto);
|
|
38515
38515
|
ref.current = value;
|
|
38516
38516
|
return ref;
|
|
@@ -38552,14 +38552,14 @@ const make$35 = (value) => {
|
|
|
38552
38552
|
*
|
|
38553
38553
|
* @since 3.8.0
|
|
38554
38554
|
*/
|
|
38555
|
-
const TypeId$
|
|
38555
|
+
const TypeId$35 = "~effect/Queue";
|
|
38556
38556
|
const DequeueTypeId = "~effect/Queue/Dequeue";
|
|
38557
38557
|
const variance$1 = {
|
|
38558
38558
|
_A: identity,
|
|
38559
38559
|
_E: identity
|
|
38560
38560
|
};
|
|
38561
38561
|
const QueueProto = {
|
|
38562
|
-
[TypeId$
|
|
38562
|
+
[TypeId$35]: variance$1,
|
|
38563
38563
|
[DequeueTypeId]: variance$1,
|
|
38564
38564
|
...PipeInspectableProto,
|
|
38565
38565
|
toJSON() {
|
|
@@ -38604,12 +38604,12 @@ const QueueProto = {
|
|
|
38604
38604
|
* })
|
|
38605
38605
|
* ```
|
|
38606
38606
|
*/
|
|
38607
|
-
const make$
|
|
38607
|
+
const make$35 = (options) => withFiber$1((fiber$2) => {
|
|
38608
38608
|
const self$1 = Object.create(QueueProto);
|
|
38609
38609
|
self$1.scheduler = fiber$2.currentScheduler;
|
|
38610
38610
|
self$1.capacity = options?.capacity ?? Number.POSITIVE_INFINITY;
|
|
38611
38611
|
self$1.strategy = options?.strategy ?? "suspend";
|
|
38612
|
-
self$1.messages = make$
|
|
38612
|
+
self$1.messages = make$37();
|
|
38613
38613
|
self$1.scheduleRunning = false;
|
|
38614
38614
|
self$1.state = {
|
|
38615
38615
|
_tag: "Open",
|
|
@@ -38647,7 +38647,7 @@ const make$34 = (options) => withFiber$1((fiber$2) => {
|
|
|
38647
38647
|
* @since 2.0.0
|
|
38648
38648
|
* @category constructors
|
|
38649
38649
|
*/
|
|
38650
|
-
const bounded = (capacity) => make$
|
|
38650
|
+
const bounded = (capacity) => make$35({ capacity });
|
|
38651
38651
|
/**
|
|
38652
38652
|
* Add a message to the queue. Returns `false` if the queue is done.
|
|
38653
38653
|
*
|
|
@@ -39027,7 +39027,7 @@ const doneUnsafe = (self$1, exit$2) => {
|
|
|
39027
39027
|
*/
|
|
39028
39028
|
const shutdown = (self$1) => sync$1(() => {
|
|
39029
39029
|
if (self$1.state._tag === "Done") return true;
|
|
39030
|
-
clear$
|
|
39030
|
+
clear$2(self$1.messages);
|
|
39031
39031
|
const offers = self$1.state.offers;
|
|
39032
39032
|
finalize(self$1, self$1.state._tag === "Open" ? exitInterrupt : self$1.state.exit);
|
|
39033
39033
|
if (offers.size > 0) {
|
|
@@ -39499,7 +39499,7 @@ const finalize = (self$1, exit$2) => {
|
|
|
39499
39499
|
*
|
|
39500
39500
|
* @since 2.0.0
|
|
39501
39501
|
*/
|
|
39502
|
-
const TypeId$
|
|
39502
|
+
const TypeId$34 = "~effect/Channel";
|
|
39503
39503
|
/**
|
|
39504
39504
|
* Tests if a value is a `Channel`.
|
|
39505
39505
|
*
|
|
@@ -39515,9 +39515,9 @@ const TypeId$33 = "~effect/Channel";
|
|
|
39515
39515
|
* @category guards
|
|
39516
39516
|
* @since 3.5.4
|
|
39517
39517
|
*/
|
|
39518
|
-
const isChannel = (u) => hasProperty(u, TypeId$
|
|
39518
|
+
const isChannel = (u) => hasProperty(u, TypeId$34);
|
|
39519
39519
|
const ChannelProto = {
|
|
39520
|
-
[TypeId$
|
|
39520
|
+
[TypeId$34]: {
|
|
39521
39521
|
_Env: identity,
|
|
39522
39522
|
_InErr: identity,
|
|
39523
39523
|
_InElem: identity,
|
|
@@ -39632,7 +39632,7 @@ const toTransform = (channel) => channel.transform;
|
|
|
39632
39632
|
* @since 2.0.0
|
|
39633
39633
|
*/
|
|
39634
39634
|
const DefaultChunkSize$1 = 4096;
|
|
39635
|
-
const asyncQueue = (scope$2, f, options) => make$
|
|
39635
|
+
const asyncQueue = (scope$2, f, options) => make$35({
|
|
39636
39636
|
capacity: options?.bufferSize,
|
|
39637
39637
|
strategy: options?.strategy
|
|
39638
39638
|
}).pipe(tap((queue) => addFinalizer$1(scope$2, shutdown(queue))), tap((queue) => {
|
|
@@ -40248,7 +40248,7 @@ const unwrap$2 = (channel) => fromTransform$1((upstream, scope$2) => {
|
|
|
40248
40248
|
*/
|
|
40249
40249
|
const bufferArray = /* @__PURE__ */ dual(2, (self$1, options) => fromTransform$1(fnUntraced(function* (upstream, scope$2) {
|
|
40250
40250
|
const pull = yield* toTransform(self$1)(upstream, scope$2);
|
|
40251
|
-
const queue = yield* make$
|
|
40251
|
+
const queue = yield* make$35({
|
|
40252
40252
|
capacity: options.capacity === "unbounded" ? void 0 : options.capacity,
|
|
40253
40253
|
strategy: options.capacity === "unbounded" ? void 0 : options.strategy
|
|
40254
40254
|
});
|
|
@@ -40287,7 +40287,7 @@ const bufferArray = /* @__PURE__ */ dual(2, (self$1, options) => fromTransform$1
|
|
|
40287
40287
|
*/
|
|
40288
40288
|
const onExit$1 = /* @__PURE__ */ dual(2, (self$1, finalizer) => fromTransformBracket((upstream, scope$2, forkedScope) => addFinalizerExit(forkedScope, finalizer).pipe(andThen(toTransform(self$1)(upstream, scope$2)))));
|
|
40289
40289
|
const runWith$1 = (self$1, f, onHalt) => suspend$2(() => {
|
|
40290
|
-
const scope$2 = makeUnsafe$
|
|
40290
|
+
const scope$2 = makeUnsafe$6();
|
|
40291
40291
|
const makePull = toTransform(self$1)(haltVoid, scope$2);
|
|
40292
40292
|
return catchHalt(flatMap(makePull, f), onHalt ? onHalt : succeed$1).pipe(onExit$2((exit$2) => close(scope$2, exit$2)));
|
|
40293
40293
|
});
|
|
@@ -40380,14 +40380,14 @@ const toPullScoped = (self$1, scope$2) => toTransform(self$1)(haltVoid, scope$2)
|
|
|
40380
40380
|
|
|
40381
40381
|
//#endregion
|
|
40382
40382
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/stream.js
|
|
40383
|
-
const TypeId$
|
|
40383
|
+
const TypeId$33 = "~effect/Stream";
|
|
40384
40384
|
const streamVariance = {
|
|
40385
40385
|
_R: identity,
|
|
40386
40386
|
_E: identity,
|
|
40387
40387
|
_A: identity
|
|
40388
40388
|
};
|
|
40389
40389
|
const StreamProto = {
|
|
40390
|
-
[TypeId$
|
|
40390
|
+
[TypeId$33]: streamVariance,
|
|
40391
40391
|
pipe() {
|
|
40392
40392
|
return pipeArguments(this, arguments);
|
|
40393
40393
|
}
|
|
@@ -40401,7 +40401,7 @@ const fromChannel$2 = (channel) => {
|
|
|
40401
40401
|
|
|
40402
40402
|
//#endregion
|
|
40403
40403
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Sink.js
|
|
40404
|
-
const TypeId$
|
|
40404
|
+
const TypeId$32 = "~effect/Sink";
|
|
40405
40405
|
const endVoid = /* @__PURE__ */ succeed$1([void 0]);
|
|
40406
40406
|
const sinkVariance = {
|
|
40407
40407
|
_A: identity,
|
|
@@ -40411,7 +40411,7 @@ const sinkVariance = {
|
|
|
40411
40411
|
_R: identity
|
|
40412
40412
|
};
|
|
40413
40413
|
const SinkProto = {
|
|
40414
|
-
[TypeId$
|
|
40414
|
+
[TypeId$32]: sinkVariance,
|
|
40415
40415
|
pipe() {
|
|
40416
40416
|
return pipeArguments(this, arguments);
|
|
40417
40417
|
}
|
|
@@ -40433,7 +40433,7 @@ const SinkProto = {
|
|
|
40433
40433
|
* @since 2.0.0
|
|
40434
40434
|
* @category guards
|
|
40435
40435
|
*/
|
|
40436
|
-
const isSink = (u) => hasProperty(u, TypeId$
|
|
40436
|
+
const isSink = (u) => hasProperty(u, TypeId$32);
|
|
40437
40437
|
/**
|
|
40438
40438
|
* Creates a sink from a `Channel`.
|
|
40439
40439
|
*
|
|
@@ -40607,9 +40607,9 @@ const unwrap$1 = (effect$1) => fromChannel$1(unwrap$2(map$4(effect$1, toChannel$
|
|
|
40607
40607
|
|
|
40608
40608
|
//#endregion
|
|
40609
40609
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/MutableHashMap.js
|
|
40610
|
-
const TypeId$
|
|
40610
|
+
const TypeId$31 = "~effect/collections/MutableHashMap";
|
|
40611
40611
|
const MutableHashMapProto = {
|
|
40612
|
-
[TypeId$
|
|
40612
|
+
[TypeId$31]: TypeId$31,
|
|
40613
40613
|
[Symbol.iterator]() {
|
|
40614
40614
|
return this.backing[Symbol.iterator]();
|
|
40615
40615
|
},
|
|
@@ -40674,7 +40674,7 @@ const empty$7 = () => {
|
|
|
40674
40674
|
* @since 2.0.0
|
|
40675
40675
|
* @category constructors
|
|
40676
40676
|
*/
|
|
40677
|
-
const make$
|
|
40677
|
+
const make$34 = (...entries) => fromIterable$1(entries);
|
|
40678
40678
|
/**
|
|
40679
40679
|
* Creates a MutableHashMap from an iterable collection of key-value pairs.
|
|
40680
40680
|
*
|
|
@@ -40912,7 +40912,7 @@ const remove$2 = /* @__PURE__ */ dual(2, (self$1, key_) => {
|
|
|
40912
40912
|
* @since 2.0.0
|
|
40913
40913
|
* @category mutations
|
|
40914
40914
|
*/
|
|
40915
|
-
const clear = (self$1) => {
|
|
40915
|
+
const clear$1 = (self$1) => {
|
|
40916
40916
|
self$1.backing.clear();
|
|
40917
40917
|
self$1.buckets.clear();
|
|
40918
40918
|
return self$1;
|
|
@@ -40948,9 +40948,9 @@ const size = (self$1) => self$1.backing.size;
|
|
|
40948
40948
|
/**
|
|
40949
40949
|
* @since 3.5.0
|
|
40950
40950
|
*/
|
|
40951
|
-
const TypeId$
|
|
40952
|
-
const makeUnsafe$
|
|
40953
|
-
[TypeId$
|
|
40951
|
+
const TypeId$30 = "~effect/RcMap";
|
|
40952
|
+
const makeUnsafe$2 = (options) => ({
|
|
40953
|
+
[TypeId$30]: TypeId$30,
|
|
40954
40954
|
lookup: options.lookup,
|
|
40955
40955
|
services: options.services,
|
|
40956
40956
|
scope: options.scope,
|
|
@@ -41000,10 +41000,10 @@ const makeUnsafe$1 = (options) => ({
|
|
|
41000
41000
|
* })
|
|
41001
41001
|
* ```
|
|
41002
41002
|
*/
|
|
41003
|
-
const make$
|
|
41003
|
+
const make$33 = (options) => withFiber((fiber$2) => {
|
|
41004
41004
|
const services$2 = fiber$2.services;
|
|
41005
41005
|
const scope$2 = get$7(services$2, Scope);
|
|
41006
|
-
const self$1 = makeUnsafe$
|
|
41006
|
+
const self$1 = makeUnsafe$2({
|
|
41007
41007
|
lookup: options.lookup,
|
|
41008
41008
|
services: services$2,
|
|
41009
41009
|
scope: scope$2,
|
|
@@ -41015,7 +41015,7 @@ const make$32 = (options) => withFiber((fiber$2) => {
|
|
|
41015
41015
|
const map$12 = self$1.state.map;
|
|
41016
41016
|
self$1.state = { _tag: "Closed" };
|
|
41017
41017
|
return forEach$1(map$12, ([, entry]) => exit(close(entry.scope, void_$2))).pipe(tap(() => {
|
|
41018
|
-
clear(map$12);
|
|
41018
|
+
clear$1(map$12);
|
|
41019
41019
|
}));
|
|
41020
41020
|
}), self$1);
|
|
41021
41021
|
});
|
|
@@ -41057,8 +41057,8 @@ const get$5 = /* @__PURE__ */ dual(2, (self$1, key) => uninterruptibleMask((rest
|
|
|
41057
41057
|
} else if (Number.isFinite(self$1.capacity) && size(self$1.state.map) >= self$1.capacity) return fail$4(new ExceededCapacityError(`RcMap attempted to exceed capacity of ${self$1.capacity}`));
|
|
41058
41058
|
else {
|
|
41059
41059
|
entry = {
|
|
41060
|
-
deferred: makeUnsafe$
|
|
41061
|
-
scope: makeUnsafe$
|
|
41060
|
+
deferred: makeUnsafe$7(),
|
|
41061
|
+
scope: makeUnsafe$6(),
|
|
41062
41062
|
idleTimeToLive: self$1.idleTimeToLive(key),
|
|
41063
41063
|
finalizer: void 0,
|
|
41064
41064
|
fiber: void 0,
|
|
@@ -41072,7 +41072,7 @@ const get$5 = /* @__PURE__ */ dual(2, (self$1, key) => uninterruptibleMask((rest
|
|
|
41072
41072
|
services$2.set(key$1, value);
|
|
41073
41073
|
});
|
|
41074
41074
|
services$2.set(Scope.key, entry.scope);
|
|
41075
|
-
self$1.lookup(key).pipe(runForkWith(makeUnsafe$
|
|
41075
|
+
self$1.lookup(key).pipe(runForkWith(makeUnsafe$8(services$2)), runIn(entry.scope)).addObserver((exit$2) => doneUnsafe$1(entry.deferred, exit$2));
|
|
41076
41076
|
}
|
|
41077
41077
|
const scope$2 = getUnsafe(parent.services, Scope);
|
|
41078
41078
|
return addFinalizer$1(scope$2, entry.finalizer).pipe(andThen(restore(_await(entry.deferred))));
|
|
@@ -41145,7 +41145,7 @@ const invalidate$2 = /* @__PURE__ */ dual(2, /* @__PURE__ */ fnUntraced(function
|
|
|
41145
41145
|
|
|
41146
41146
|
//#endregion
|
|
41147
41147
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/rcRef.js
|
|
41148
|
-
const TypeId$
|
|
41148
|
+
const TypeId$29 = "~effect/RcRef";
|
|
41149
41149
|
const stateEmpty = { _tag: "Empty" };
|
|
41150
41150
|
const stateClosed = { _tag: "Closed" };
|
|
41151
41151
|
const variance = {
|
|
@@ -41153,7 +41153,7 @@ const variance = {
|
|
|
41153
41153
|
_E: identity
|
|
41154
41154
|
};
|
|
41155
41155
|
var RcRefImpl = class {
|
|
41156
|
-
[TypeId$
|
|
41156
|
+
[TypeId$29] = variance;
|
|
41157
41157
|
state = stateEmpty;
|
|
41158
41158
|
semaphore = /* @__PURE__ */ makeSemaphoreUnsafe(1);
|
|
41159
41159
|
acquire;
|
|
@@ -41168,7 +41168,7 @@ var RcRefImpl = class {
|
|
|
41168
41168
|
}
|
|
41169
41169
|
};
|
|
41170
41170
|
/** @internal */
|
|
41171
|
-
const make$
|
|
41171
|
+
const make$32 = (options) => withFiber((fiber$2) => {
|
|
41172
41172
|
const services$2 = fiber$2.services;
|
|
41173
41173
|
const scope$2 = get$7(services$2, Scope);
|
|
41174
41174
|
const ref = new RcRefImpl(options.acquire, services$2, scope$2, options.idleTimeToLive ? fromDurationInputUnsafe(options.idleTimeToLive) : void 0);
|
|
@@ -41185,7 +41185,7 @@ const getState = (self$1) => uninterruptibleMask((restore) => {
|
|
|
41185
41185
|
self$1.state.refCount++;
|
|
41186
41186
|
return self$1.state.fiber ? as(interrupt(self$1.state.fiber), self$1.state) : succeed$1(self$1.state);
|
|
41187
41187
|
case "Empty": {
|
|
41188
|
-
const scope$2 = makeUnsafe$
|
|
41188
|
+
const scope$2 = makeUnsafe$6();
|
|
41189
41189
|
return self$1.semaphore.withPermits(1)(restore(provideServices(self$1.acquire, add$3(self$1.services, Scope, scope$2))).pipe(map$4((value) => {
|
|
41190
41190
|
const state = {
|
|
41191
41191
|
_tag: "Acquired",
|
|
@@ -41276,7 +41276,7 @@ const invalidate$1 = (self_) => {
|
|
|
41276
41276
|
* })
|
|
41277
41277
|
* ```
|
|
41278
41278
|
*/
|
|
41279
|
-
const make$
|
|
41279
|
+
const make$31 = make$32;
|
|
41280
41280
|
/**
|
|
41281
41281
|
* Get the value from an RcRef.
|
|
41282
41282
|
*
|
|
@@ -41322,7 +41322,7 @@ const invalidate = invalidate$1;
|
|
|
41322
41322
|
/**
|
|
41323
41323
|
* @since 2.0.0
|
|
41324
41324
|
*/
|
|
41325
|
-
const TypeId$
|
|
41325
|
+
const TypeId$28 = "~effect/Stream";
|
|
41326
41326
|
/**
|
|
41327
41327
|
* Checks if a value is a Stream.
|
|
41328
41328
|
*
|
|
@@ -41340,7 +41340,7 @@ const TypeId$27 = "~effect/Stream";
|
|
|
41340
41340
|
* @since 2.0.0
|
|
41341
41341
|
* @category guards
|
|
41342
41342
|
*/
|
|
41343
|
-
const isStream = (u) => hasProperty(u, TypeId$
|
|
41343
|
+
const isStream = (u) => hasProperty(u, TypeId$28);
|
|
41344
41344
|
/**
|
|
41345
41345
|
* The default chunk size used by streams for batching operations.
|
|
41346
41346
|
*
|
|
@@ -41887,7 +41887,7 @@ const onExit = /* @__PURE__ */ dual(2, (self$1, finalizer) => fromChannel(onExit
|
|
|
41887
41887
|
* @since 2.0.0
|
|
41888
41888
|
* @category destructors
|
|
41889
41889
|
*/
|
|
41890
|
-
const run$
|
|
41890
|
+
const run$5 = /* @__PURE__ */ dual(2, (self$1, sink) => scopedWith((scope$2) => toPullScoped(self$1.channel, scope$2).pipe(flatMap((upstream) => sink.transform(upstream, scope$2)), map$4(([a]) => a))));
|
|
41891
41891
|
/**
|
|
41892
41892
|
* Runs the stream and collects all of its elements to a chunk.
|
|
41893
41893
|
*
|
|
@@ -42091,7 +42091,7 @@ const toReadableStreamEffect = /* @__PURE__ */ dual((args$1) => isStream(args$1[
|
|
|
42091
42091
|
*
|
|
42092
42092
|
* @since 4.0.0
|
|
42093
42093
|
*/
|
|
42094
|
-
const TypeId$
|
|
42094
|
+
const TypeId$27 = "~effect/platform/FileSystem";
|
|
42095
42095
|
/**
|
|
42096
42096
|
* Creates a `Size` from various numeric input types.
|
|
42097
42097
|
*
|
|
@@ -42178,9 +42178,9 @@ const FileSystem = /* @__PURE__ */ Service("effect/platform/FileSystem");
|
|
|
42178
42178
|
* @since 4.0.0
|
|
42179
42179
|
* @category constructor
|
|
42180
42180
|
*/
|
|
42181
|
-
const make$
|
|
42181
|
+
const make$30 = (impl) => FileSystem.of({
|
|
42182
42182
|
...impl,
|
|
42183
|
-
[TypeId$
|
|
42183
|
+
[TypeId$27]: TypeId$27,
|
|
42184
42184
|
exists: (path$2) => pipe(impl.access(path$2), as(true), catchTag("PlatformError", (e) => e.reason === "NotFound" ? succeed$1(false) : fail$4(e))),
|
|
42185
42185
|
readFileString: (path$2, encoding) => flatMap(impl.readFile(path$2), (_) => try_({
|
|
42186
42186
|
try: () => new TextDecoder(encoding).decode(_),
|
|
@@ -42283,7 +42283,7 @@ var WatchBackend = class extends Service()("effect/platform/FileSystem/WatchBack
|
|
|
42283
42283
|
/**
|
|
42284
42284
|
* @since 4.0.0
|
|
42285
42285
|
*/
|
|
42286
|
-
const TypeId$
|
|
42286
|
+
const TypeId$26 = "~effect/platform/Path";
|
|
42287
42287
|
/**
|
|
42288
42288
|
* @since 4.0.0
|
|
42289
42289
|
* @category tag
|
|
@@ -42475,7 +42475,7 @@ function encodePathChars(filepath) {
|
|
|
42475
42475
|
return filepath;
|
|
42476
42476
|
}
|
|
42477
42477
|
const posixImpl = /* @__PURE__ */ Path$1.of({
|
|
42478
|
-
[TypeId$
|
|
42478
|
+
[TypeId$26]: TypeId$26,
|
|
42479
42479
|
resolve,
|
|
42480
42480
|
normalize(path$2) {
|
|
42481
42481
|
if (path$2.length === 0) return ".";
|
|
@@ -42739,7 +42739,7 @@ function makeArray(length, value) {
|
|
|
42739
42739
|
* @since 4.0.0
|
|
42740
42740
|
*/
|
|
42741
42741
|
const ConfigProvider = /* @__PURE__ */ Reference("effect/ConfigProvider", { defaultValue: () => fromEnv() });
|
|
42742
|
-
const Proto$
|
|
42742
|
+
const Proto$15 = {
|
|
42743
42743
|
...PipeInspectableProto,
|
|
42744
42744
|
toJSON() {
|
|
42745
42745
|
return { _id: "ConfigProvider" };
|
|
@@ -42749,8 +42749,8 @@ const Proto$14 = {
|
|
|
42749
42749
|
* @category Constructors
|
|
42750
42750
|
* @since 4.0.0
|
|
42751
42751
|
*/
|
|
42752
|
-
function make$
|
|
42753
|
-
const self$1 = Object.create(Proto$
|
|
42752
|
+
function make$29(get$8, mapInput$1, prefix$1) {
|
|
42753
|
+
const self$1 = Object.create(Proto$15);
|
|
42754
42754
|
self$1.get = get$8;
|
|
42755
42755
|
self$1.mapInput = mapInput$1;
|
|
42756
42756
|
self$1.prefix = prefix$1;
|
|
@@ -42776,7 +42776,7 @@ function fromEnv(options) {
|
|
|
42776
42776
|
...import.meta?.env
|
|
42777
42777
|
};
|
|
42778
42778
|
const trie = buildEnvTrie(env);
|
|
42779
|
-
return make$
|
|
42779
|
+
return make$29((path$2) => succeed$1(nodeAtEnv(trie, env, path$2)));
|
|
42780
42780
|
}
|
|
42781
42781
|
function buildEnvTrie(env) {
|
|
42782
42782
|
const root$1 = {};
|
|
@@ -42982,7 +42982,7 @@ const isGreaterThan = isLogLevelGreaterThan;
|
|
|
42982
42982
|
|
|
42983
42983
|
//#endregion
|
|
42984
42984
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Config.js
|
|
42985
|
-
const TypeId$
|
|
42985
|
+
const TypeId$25 = "~effect/Config";
|
|
42986
42986
|
/**
|
|
42987
42987
|
* @since 4.0.0
|
|
42988
42988
|
* @category Models
|
|
@@ -43001,10 +43001,10 @@ var ConfigError = class {
|
|
|
43001
43001
|
return `ConfigError(${this.message})`;
|
|
43002
43002
|
}
|
|
43003
43003
|
};
|
|
43004
|
-
const Proto$
|
|
43004
|
+
const Proto$14 = {
|
|
43005
43005
|
...PipeInspectableProto,
|
|
43006
43006
|
...YieldableProto,
|
|
43007
|
-
[TypeId$
|
|
43007
|
+
[TypeId$25]: TypeId$25,
|
|
43008
43008
|
asEffect() {
|
|
43009
43009
|
return flatMap(ConfigProvider.asEffect(), (provider) => this.parse(provider));
|
|
43010
43010
|
},
|
|
@@ -43022,8 +43022,8 @@ const Proto$13 = {
|
|
|
43022
43022
|
* @category Constructors
|
|
43023
43023
|
* @since 4.0.0
|
|
43024
43024
|
*/
|
|
43025
|
-
function make$
|
|
43026
|
-
const self$1 = Object.create(Proto$
|
|
43025
|
+
function make$28(parse$3) {
|
|
43026
|
+
const self$1 = Object.create(Proto$14);
|
|
43027
43027
|
self$1.parse = parse$3;
|
|
43028
43028
|
return self$1;
|
|
43029
43029
|
}
|
|
@@ -43034,7 +43034,7 @@ function make$27(parse$3) {
|
|
|
43034
43034
|
* @since 4.0.0
|
|
43035
43035
|
*/
|
|
43036
43036
|
const orElse = /* @__PURE__ */ dual(2, (self$1, that) => {
|
|
43037
|
-
return make$
|
|
43037
|
+
return make$28((provider) => catch_$1(self$1.parse(provider), (error$1) => that(error$1).parse(provider)));
|
|
43038
43038
|
});
|
|
43039
43039
|
function isMissingDataOnly(issue) {
|
|
43040
43040
|
switch (issue._tag) {
|
|
@@ -43144,7 +43144,7 @@ function schema(codec, path$2) {
|
|
|
43144
43144
|
const decodeUnknownEffect$2 = decodeUnknownEffect$1(toCodecStringTree$1);
|
|
43145
43145
|
const toCodecStringTreeEncoded = toEncoded(toCodecStringTree$1.ast);
|
|
43146
43146
|
const defaultPath = typeof path$2 === "string" ? [path$2] : path$2 ?? [];
|
|
43147
|
-
return make$
|
|
43147
|
+
return make$28((provider) => recur(toCodecStringTreeEncoded, provider, defaultPath).pipe(flatMapEager((tree) => decodeUnknownEffect$2(tree).pipe(mapErrorEager((issue) => new SchemaError(defaultPath.length > 0 ? new Pointer(defaultPath, issue) : issue)))), mapErrorEager((cause) => new ConfigError(cause))));
|
|
43148
43148
|
}
|
|
43149
43149
|
/** @internal */
|
|
43150
43150
|
const TrueValues = /* @__PURE__ */ Literals([
|
|
@@ -43214,7 +43214,7 @@ const LogLevel = /* @__PURE__ */ Literals(values);
|
|
|
43214
43214
|
* @since 4.0.0
|
|
43215
43215
|
*/
|
|
43216
43216
|
function fail(err) {
|
|
43217
|
-
return make$
|
|
43217
|
+
return make$28(() => fail$4(new ConfigError(err)));
|
|
43218
43218
|
}
|
|
43219
43219
|
/**
|
|
43220
43220
|
* Creates a configuration that always succeeds with a given value.
|
|
@@ -43223,7 +43223,7 @@ function fail(err) {
|
|
|
43223
43223
|
* @since 4.0.0
|
|
43224
43224
|
*/
|
|
43225
43225
|
function succeed(value) {
|
|
43226
|
-
return make$
|
|
43226
|
+
return make$28(() => succeed$1(value));
|
|
43227
43227
|
}
|
|
43228
43228
|
/**
|
|
43229
43229
|
* Creates a configuration for string values.
|
|
@@ -43242,14 +43242,14 @@ function string$4(name) {
|
|
|
43242
43242
|
var import_ini = /* @__PURE__ */ __toESM(require_ini(), 1);
|
|
43243
43243
|
var import_toml = /* @__PURE__ */ __toESM(require_toml(), 1);
|
|
43244
43244
|
var import_dist = /* @__PURE__ */ __toESM(require_dist(), 1);
|
|
43245
|
-
const Proto$
|
|
43245
|
+
const Proto$13 = { ["~effect/cli/Primitive"]: { _A: identity } };
|
|
43246
43246
|
/** @internal */
|
|
43247
43247
|
const isTrueValue = /* @__PURE__ */ is(TrueValues);
|
|
43248
43248
|
/** @internal */
|
|
43249
43249
|
const isFalseValue = /* @__PURE__ */ is(FalseValues);
|
|
43250
43250
|
/** @internal */
|
|
43251
43251
|
const isBoolean = (p) => p._tag === "Boolean";
|
|
43252
|
-
const makePrimitive = (tag$1, parse$3) => Object.assign(Object.create(Proto$
|
|
43252
|
+
const makePrimitive = (tag$1, parse$3) => Object.assign(Object.create(Proto$13), {
|
|
43253
43253
|
_tag: tag$1,
|
|
43254
43254
|
parse: parse$3
|
|
43255
43255
|
});
|
|
@@ -43544,7 +43544,7 @@ const getTypeName = (primitive) => {
|
|
|
43544
43544
|
*
|
|
43545
43545
|
* @since 4.0.0
|
|
43546
43546
|
*/
|
|
43547
|
-
const TypeId$
|
|
43547
|
+
const TypeId$24 = "~effect/cli/Param";
|
|
43548
43548
|
/**
|
|
43549
43549
|
* Kind discriminator for positional argument parameters.
|
|
43550
43550
|
*
|
|
@@ -43559,8 +43559,8 @@ const argumentKind = "argument";
|
|
|
43559
43559
|
* @category constants
|
|
43560
43560
|
*/
|
|
43561
43561
|
const flagKind = "flag";
|
|
43562
|
-
const Proto$
|
|
43563
|
-
[TypeId$
|
|
43562
|
+
const Proto$12 = {
|
|
43563
|
+
[TypeId$24]: { _A: identity },
|
|
43564
43564
|
pipe() {
|
|
43565
43565
|
return pipeArguments(this, arguments);
|
|
43566
43566
|
}
|
|
@@ -43584,7 +43584,7 @@ const Proto$11 = {
|
|
|
43584
43584
|
* @since 4.0.0
|
|
43585
43585
|
* @category refinements
|
|
43586
43586
|
*/
|
|
43587
|
-
const isParam = (u) => hasProperty(u, TypeId$
|
|
43587
|
+
const isParam = (u) => hasProperty(u, TypeId$24);
|
|
43588
43588
|
/**
|
|
43589
43589
|
* Type guard to check if a Single param is a flag (not an argument).
|
|
43590
43590
|
*
|
|
@@ -43597,7 +43597,7 @@ const isFlagParam = (single) => single.kind === "flag";
|
|
|
43597
43597
|
*/
|
|
43598
43598
|
const makeSingle = (params) => {
|
|
43599
43599
|
const parse$3 = (args$1) => params.kind === argumentKind ? parsePositional(params.name, params.primitiveType, args$1) : parseFlag(params.name, params.primitiveType, args$1);
|
|
43600
|
-
return Object.assign(Object.create(Proto$
|
|
43600
|
+
return Object.assign(Object.create(Proto$12), {
|
|
43601
43601
|
_tag: "Single",
|
|
43602
43602
|
...params,
|
|
43603
43603
|
description: params.description,
|
|
@@ -43914,7 +43914,7 @@ const withDescription$2 = /* @__PURE__ */ dual(2, (self$1, description) => {
|
|
|
43914
43914
|
*/
|
|
43915
43915
|
const map$1 = /* @__PURE__ */ dual(2, (self$1, f) => {
|
|
43916
43916
|
const parse$3 = (args$1) => map$4(self$1.parse(args$1), ([operands, value]) => [operands, f(value)]);
|
|
43917
|
-
return Object.assign(Object.create(Proto$
|
|
43917
|
+
return Object.assign(Object.create(Proto$12), {
|
|
43918
43918
|
_tag: "Map",
|
|
43919
43919
|
kind: self$1.kind,
|
|
43920
43920
|
param: self$1,
|
|
@@ -43954,7 +43954,7 @@ const map$1 = /* @__PURE__ */ dual(2, (self$1, f) => {
|
|
|
43954
43954
|
*/
|
|
43955
43955
|
const mapEffect = /* @__PURE__ */ dual(2, (self$1, f) => {
|
|
43956
43956
|
const parse$3 = (args$1) => flatMap(self$1.parse(args$1), ([operands, a]) => map$4(f(a), (b) => [operands, b]));
|
|
43957
|
-
return Object.assign(Object.create(Proto$
|
|
43957
|
+
return Object.assign(Object.create(Proto$12), {
|
|
43958
43958
|
_tag: "MapEffect",
|
|
43959
43959
|
kind: self$1.kind,
|
|
43960
43960
|
param: self$1,
|
|
@@ -43985,7 +43985,7 @@ const mapEffect = /* @__PURE__ */ dual(2, (self$1, f) => {
|
|
|
43985
43985
|
*/
|
|
43986
43986
|
const optional$1 = (param) => {
|
|
43987
43987
|
const parse$3 = (args$1) => param.parse(args$1).pipe(map$4(([leftover, value]) => [leftover, some(value)]), catchTag("MissingOption", () => succeed$1([args$1.arguments, none$3()])), catchTag("MissingArgument", () => succeed$1([args$1.arguments, none$3()])));
|
|
43988
|
-
return Object.assign(Object.create(Proto$
|
|
43988
|
+
return Object.assign(Object.create(Proto$12), {
|
|
43989
43989
|
_tag: "Optional",
|
|
43990
43990
|
kind: param.kind,
|
|
43991
43991
|
param,
|
|
@@ -44060,7 +44060,7 @@ const variadic = (self$1, options) => {
|
|
|
44060
44060
|
if (single.kind === "argument") return parsePositionalVariadic(self$1, single, args$1, options);
|
|
44061
44061
|
else return parseOptionVariadic(self$1, single, args$1, options);
|
|
44062
44062
|
};
|
|
44063
|
-
return Object.assign(Object.create(Proto$
|
|
44063
|
+
return Object.assign(Object.create(Proto$12), {
|
|
44064
44064
|
_tag: "Variadic",
|
|
44065
44065
|
kind: self$1.kind,
|
|
44066
44066
|
param: self$1,
|
|
@@ -44597,13 +44597,13 @@ const reconstructTree = (tree, results) => {
|
|
|
44597
44597
|
* Internal implementation details for CLI commands.
|
|
44598
44598
|
* Public API is in ../Command.ts
|
|
44599
44599
|
*/
|
|
44600
|
-
const TypeId$
|
|
44600
|
+
const TypeId$23 = "~effect/cli/Command";
|
|
44601
44601
|
/**
|
|
44602
44602
|
* Casts a Command to its internal implementation.
|
|
44603
44603
|
* For use by internal modules that need access to config, parse, handle, etc.
|
|
44604
44604
|
*/
|
|
44605
44605
|
const toImpl = (self$1) => self$1;
|
|
44606
|
-
const Proto$
|
|
44606
|
+
const Proto$11 = {
|
|
44607
44607
|
...YieldableProto,
|
|
44608
44608
|
pipe() {
|
|
44609
44609
|
return pipeArguments(this, arguments);
|
|
@@ -44616,7 +44616,7 @@ const Proto$10 = {
|
|
|
44616
44616
|
* Internal command constructor. Only accepts already-parsed ConfigInternal.
|
|
44617
44617
|
*/
|
|
44618
44618
|
const makeCommand = (options) => {
|
|
44619
|
-
const service$2 = options.service ?? Service(`${TypeId$
|
|
44619
|
+
const service$2 = options.service ?? Service(`${TypeId$23}/${options.name}`);
|
|
44620
44620
|
const config = options.config;
|
|
44621
44621
|
const handle = (input, commandPath) => isNotUndefined$2(options.handle) ? options.handle(input, commandPath) : fail$4(new ShowHelp({ commandPath }));
|
|
44622
44622
|
const parse$3 = options.parse ?? fnUntraced(function* (input) {
|
|
@@ -44673,8 +44673,8 @@ const makeCommand = (options) => {
|
|
|
44673
44673
|
...subcommandDocs.length > 0 && { subcommands: subcommandDocs }
|
|
44674
44674
|
};
|
|
44675
44675
|
};
|
|
44676
|
-
return Object.assign(Object.create(Proto$
|
|
44677
|
-
[TypeId$
|
|
44676
|
+
return Object.assign(Object.create(Proto$11), {
|
|
44677
|
+
[TypeId$23]: TypeId$23,
|
|
44678
44678
|
name: options.name,
|
|
44679
44679
|
subcommands: options.subcommands ?? [],
|
|
44680
44680
|
config,
|
|
@@ -45880,7 +45880,7 @@ const scanCommandLevel = (tokens, context) => {
|
|
|
45880
45880
|
|
|
45881
45881
|
//#endregion
|
|
45882
45882
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Terminal.js
|
|
45883
|
-
const TypeId$
|
|
45883
|
+
const TypeId$22 = "~effect/platform/Terminal";
|
|
45884
45884
|
const QuitErrorTypeId = "effect/platform/Terminal/QuitError";
|
|
45885
45885
|
/**
|
|
45886
45886
|
* A `QuitError` represents an error that occurs when a user attempts to
|
|
@@ -45906,9 +45906,9 @@ const Terminal = /* @__PURE__ */ Service("effect/platform/Terminal");
|
|
|
45906
45906
|
* @since 4.0.0
|
|
45907
45907
|
* @category Constructors
|
|
45908
45908
|
*/
|
|
45909
|
-
const make$
|
|
45909
|
+
const make$27 = (impl) => Terminal.of({
|
|
45910
45910
|
...impl,
|
|
45911
|
-
[TypeId$
|
|
45911
|
+
[TypeId$22]: TypeId$22
|
|
45912
45912
|
});
|
|
45913
45913
|
|
|
45914
45914
|
//#endregion
|
|
@@ -46007,7 +46007,7 @@ const eraseLines = (rows) => {
|
|
|
46007
46007
|
/**
|
|
46008
46008
|
* @since 4.0.0
|
|
46009
46009
|
*/
|
|
46010
|
-
const TypeId$
|
|
46010
|
+
const TypeId$21 = "~effect/cli/Prompt";
|
|
46011
46011
|
const defaultFigures = {
|
|
46012
46012
|
arrowUp: "↑",
|
|
46013
46013
|
arrowDown: "↓",
|
|
@@ -46086,7 +46086,7 @@ const custom = (initialState, handlers) => {
|
|
|
46086
46086
|
* @since 4.0.0
|
|
46087
46087
|
* @category execution
|
|
46088
46088
|
*/
|
|
46089
|
-
const run$
|
|
46089
|
+
const run$4 = /* @__PURE__ */ fnUntraced(function* (self$1) {
|
|
46090
46090
|
const terminal = yield* Terminal;
|
|
46091
46091
|
return yield* runWithInput(self$1, terminal, yield* terminal.readInput);
|
|
46092
46092
|
}, /* @__PURE__ */ mapError$2(() => new QuitError({})), scoped$1);
|
|
@@ -46119,9 +46119,9 @@ const select = (options) => {
|
|
|
46119
46119
|
const text$2 = (options) => basePrompt(options, "text");
|
|
46120
46120
|
const proto = {
|
|
46121
46121
|
...YieldableProto,
|
|
46122
|
-
[TypeId$
|
|
46122
|
+
[TypeId$21]: { _Output: (_) => _ },
|
|
46123
46123
|
asEffect() {
|
|
46124
|
-
return run$
|
|
46124
|
+
return run$4(this);
|
|
46125
46125
|
},
|
|
46126
46126
|
pipe() {
|
|
46127
46127
|
return pipeArguments(this, arguments);
|
|
@@ -46491,7 +46491,7 @@ const entriesToDisplay = (cursor, total, maxVisible) => {
|
|
|
46491
46491
|
* @since 4.0.0
|
|
46492
46492
|
* @category constructors
|
|
46493
46493
|
*/
|
|
46494
|
-
const make$
|
|
46494
|
+
const make$26 = (name, config, handler$1) => {
|
|
46495
46495
|
return makeCommand({
|
|
46496
46496
|
name,
|
|
46497
46497
|
config: parseConfig(config ?? {}),
|
|
@@ -46698,7 +46698,7 @@ const showHelp = (command, commandPath, errors) => gen(function* () {
|
|
|
46698
46698
|
* @since 4.0.0
|
|
46699
46699
|
* @category command execution
|
|
46700
46700
|
*/
|
|
46701
|
-
const run$
|
|
46701
|
+
const run$3 = (command, config) => {
|
|
46702
46702
|
const input = process.argv.slice(2);
|
|
46703
46703
|
return runWith(command, config)(input);
|
|
46704
46704
|
};
|
|
@@ -46782,7 +46782,7 @@ const runWith = (command, config) => {
|
|
|
46782
46782
|
/**
|
|
46783
46783
|
* @since 4.0.0
|
|
46784
46784
|
*/
|
|
46785
|
-
const TypeId$
|
|
46785
|
+
const TypeId$20 = "~effect/Cache";
|
|
46786
46786
|
/**
|
|
46787
46787
|
* Creates a cache with dynamic time-to-live based on the result and key.
|
|
46788
46788
|
*
|
|
@@ -46844,9 +46844,9 @@ const TypeId$19 = "~effect/Cache";
|
|
|
46844
46844
|
* @category Constructors
|
|
46845
46845
|
*/
|
|
46846
46846
|
const makeWith$1 = (options) => servicesWith$1((services$2) => {
|
|
46847
|
-
const self$1 = Object.create(Proto$
|
|
46847
|
+
const self$1 = Object.create(Proto$10);
|
|
46848
46848
|
self$1.lookup = (key) => updateServices$1(options.lookup(key), (input) => merge$5(services$2, input));
|
|
46849
|
-
self$1.map = make$
|
|
46849
|
+
self$1.map = make$34();
|
|
46850
46850
|
self$1.capacity = options.capacity;
|
|
46851
46851
|
self$1.timeToLive = options.timeToLive ? (exit$2, key) => fromDurationInputUnsafe(options.timeToLive(exit$2, key)) : defaultTimeToLive;
|
|
46852
46852
|
return succeed$5(self$1);
|
|
@@ -46904,13 +46904,13 @@ const makeWith$1 = (options) => servicesWith$1((services$2) => {
|
|
|
46904
46904
|
* @since 4.0.0
|
|
46905
46905
|
* @category Constructors
|
|
46906
46906
|
*/
|
|
46907
|
-
const make$
|
|
46907
|
+
const make$25 = (options) => makeWith$1({
|
|
46908
46908
|
...options,
|
|
46909
46909
|
timeToLive: options.timeToLive ? () => options.timeToLive : defaultTimeToLive
|
|
46910
46910
|
});
|
|
46911
|
-
const Proto$
|
|
46911
|
+
const Proto$10 = {
|
|
46912
46912
|
...PipeInspectableProto,
|
|
46913
|
-
[TypeId$
|
|
46913
|
+
[TypeId$20]: TypeId$20,
|
|
46914
46914
|
toJSON() {
|
|
46915
46915
|
return {
|
|
46916
46916
|
_id: "Cache",
|
|
@@ -47010,7 +47010,7 @@ const get$2 = /* @__PURE__ */ dual(2, (self$1, key) => withFiber$1((fiber$2) =>
|
|
|
47010
47010
|
set$4(self$1.map, key, oentry.value);
|
|
47011
47011
|
return _await(oentry.value.deferred);
|
|
47012
47012
|
}
|
|
47013
|
-
const deferred = makeUnsafe$
|
|
47013
|
+
const deferred = makeUnsafe$7();
|
|
47014
47014
|
const entry = {
|
|
47015
47015
|
expiresAt: void 0,
|
|
47016
47016
|
deferred
|
|
@@ -47133,7 +47133,7 @@ const checkCapacity = (self$1) => {
|
|
|
47133
47133
|
*/
|
|
47134
47134
|
const set$3 = /* @__PURE__ */ dual(3, (self$1, key, value) => withFiber$1((fiber$2) => {
|
|
47135
47135
|
const exit$2 = exitSucceed(value);
|
|
47136
|
-
const deferred = makeUnsafe$
|
|
47136
|
+
const deferred = makeUnsafe$7();
|
|
47137
47137
|
doneUnsafe$1(deferred, exit$2);
|
|
47138
47138
|
const ttl = self$1.timeToLive(exit$2, key);
|
|
47139
47139
|
if (isZero(ttl)) {
|
|
@@ -47148,6 +47148,202 @@ const set$3 = /* @__PURE__ */ dual(3, (self$1, key, value) => withFiber$1((fiber
|
|
|
47148
47148
|
return void_$3;
|
|
47149
47149
|
}));
|
|
47150
47150
|
|
|
47151
|
+
//#endregion
|
|
47152
|
+
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/FiberHandle.js
|
|
47153
|
+
/**
|
|
47154
|
+
* @since 2.0.0
|
|
47155
|
+
*/
|
|
47156
|
+
const TypeId$19 = "~effect/FiberHandle";
|
|
47157
|
+
/**
|
|
47158
|
+
* @example
|
|
47159
|
+
* ```ts
|
|
47160
|
+
* import { Effect, FiberHandle } from "effect"
|
|
47161
|
+
*
|
|
47162
|
+
* Effect.gen(function*() {
|
|
47163
|
+
* const handle = yield* FiberHandle.make()
|
|
47164
|
+
*
|
|
47165
|
+
* console.log(FiberHandle.isFiberHandle(handle)) // true
|
|
47166
|
+
* console.log(FiberHandle.isFiberHandle("not a handle")) // false
|
|
47167
|
+
* })
|
|
47168
|
+
* ```
|
|
47169
|
+
*
|
|
47170
|
+
* @since 2.0.0
|
|
47171
|
+
* @category refinements
|
|
47172
|
+
*/
|
|
47173
|
+
const isFiberHandle = (u) => hasProperty(u, TypeId$19);
|
|
47174
|
+
const Proto$9 = {
|
|
47175
|
+
[TypeId$19]: TypeId$19,
|
|
47176
|
+
...PipeInspectableProto,
|
|
47177
|
+
toJSON() {
|
|
47178
|
+
return {
|
|
47179
|
+
_id: "FiberHandle",
|
|
47180
|
+
state: this.state
|
|
47181
|
+
};
|
|
47182
|
+
}
|
|
47183
|
+
};
|
|
47184
|
+
const makeUnsafe$1 = () => {
|
|
47185
|
+
const self$1 = Object.create(Proto$9);
|
|
47186
|
+
self$1.state = {
|
|
47187
|
+
_tag: "Open",
|
|
47188
|
+
fiber: void 0
|
|
47189
|
+
};
|
|
47190
|
+
self$1.deferred = makeUnsafe$7();
|
|
47191
|
+
return self$1;
|
|
47192
|
+
};
|
|
47193
|
+
/**
|
|
47194
|
+
* A FiberHandle can be used to store a single fiber.
|
|
47195
|
+
* When the associated Scope is closed, the contained fiber will be interrupted.
|
|
47196
|
+
*
|
|
47197
|
+
* You can add a fiber to the handle using `FiberHandle.run`, and the fiber will
|
|
47198
|
+
* be automatically removed from the FiberHandle when it completes.
|
|
47199
|
+
*
|
|
47200
|
+
* @example
|
|
47201
|
+
* ```ts
|
|
47202
|
+
* import { Effect, FiberHandle } from "effect"
|
|
47203
|
+
*
|
|
47204
|
+
* Effect.gen(function*() {
|
|
47205
|
+
* const handle = yield* FiberHandle.make()
|
|
47206
|
+
*
|
|
47207
|
+
* // run some effects
|
|
47208
|
+
* yield* FiberHandle.run(handle, Effect.never)
|
|
47209
|
+
* // this will interrupt the previous fiber
|
|
47210
|
+
* yield* FiberHandle.run(handle, Effect.never)
|
|
47211
|
+
*
|
|
47212
|
+
* yield* Effect.sleep(1000)
|
|
47213
|
+
* }).pipe(
|
|
47214
|
+
* Effect.scoped // The fiber will be interrupted when the scope is closed
|
|
47215
|
+
* )
|
|
47216
|
+
* ```
|
|
47217
|
+
*
|
|
47218
|
+
* @since 2.0.0
|
|
47219
|
+
* @category constructors
|
|
47220
|
+
*/
|
|
47221
|
+
const make$24 = () => acquireRelease(sync(() => makeUnsafe$1()), (handle) => {
|
|
47222
|
+
const state = handle.state;
|
|
47223
|
+
if (state._tag === "Closed") return void_$1;
|
|
47224
|
+
handle.state = { _tag: "Closed" };
|
|
47225
|
+
return state.fiber ? into$1(asVoid(interruptAs(state.fiber, internalFiberId$1)), handle.deferred) : done$1(handle.deferred, void_$2);
|
|
47226
|
+
});
|
|
47227
|
+
const internalFiberId$1 = -1;
|
|
47228
|
+
const isInternalInterruption$1 = /* @__PURE__ */ toPredicate(/* @__PURE__ */ compose(filterInterruptors, /* @__PURE__ */ has$2(internalFiberId$1)));
|
|
47229
|
+
/**
|
|
47230
|
+
* Set the fiber in a FiberHandle. When the fiber completes, it will be removed from the FiberHandle.
|
|
47231
|
+
* If a fiber is already running, it will be interrupted unless `options.onlyIfMissing` is set.
|
|
47232
|
+
*
|
|
47233
|
+
* @example
|
|
47234
|
+
* ```ts
|
|
47235
|
+
* import { Effect, Fiber, FiberHandle } from "effect"
|
|
47236
|
+
*
|
|
47237
|
+
* Effect.gen(function*() {
|
|
47238
|
+
* const handle = yield* FiberHandle.make()
|
|
47239
|
+
* const fiber = Effect.runFork(Effect.succeed("hello"))
|
|
47240
|
+
*
|
|
47241
|
+
* // Set the fiber directly (unsafe)
|
|
47242
|
+
* FiberHandle.setUnsafe(handle, fiber)
|
|
47243
|
+
*
|
|
47244
|
+
* // The fiber is now managed by the handle
|
|
47245
|
+
* const result = yield* Fiber.await(fiber)
|
|
47246
|
+
* console.log(result) // "hello"
|
|
47247
|
+
* })
|
|
47248
|
+
* ```
|
|
47249
|
+
*
|
|
47250
|
+
* @since 2.0.0
|
|
47251
|
+
* @category combinators
|
|
47252
|
+
*/
|
|
47253
|
+
const setUnsafe = /* @__PURE__ */ dual((args$1) => isFiberHandle(args$1[0]), (self$1, fiber$2, options) => {
|
|
47254
|
+
if (self$1.state._tag === "Closed") {
|
|
47255
|
+
fiber$2.interruptUnsafe(internalFiberId$1);
|
|
47256
|
+
return;
|
|
47257
|
+
} else if (self$1.state.fiber !== void 0) {
|
|
47258
|
+
if (options?.onlyIfMissing === true) {
|
|
47259
|
+
fiber$2.interruptUnsafe(internalFiberId$1);
|
|
47260
|
+
return;
|
|
47261
|
+
} else if (self$1.state.fiber === fiber$2) return;
|
|
47262
|
+
self$1.state.fiber.interruptUnsafe(internalFiberId$1);
|
|
47263
|
+
self$1.state.fiber = void 0;
|
|
47264
|
+
}
|
|
47265
|
+
self$1.state.fiber = fiber$2;
|
|
47266
|
+
fiber$2.addObserver((exit$2) => {
|
|
47267
|
+
if (self$1.state._tag === "Open" && fiber$2 === self$1.state.fiber) self$1.state.fiber = void 0;
|
|
47268
|
+
if (isFailure$2(exit$2) && (options?.propagateInterruption === true ? !isInternalInterruption$1(exit$2.cause) : !isInterruptedOnly(exit$2.cause))) doneUnsafe$1(self$1.deferred, exit$2);
|
|
47269
|
+
});
|
|
47270
|
+
});
|
|
47271
|
+
/**
|
|
47272
|
+
* @example
|
|
47273
|
+
* ```ts
|
|
47274
|
+
* import { Effect, FiberHandle } from "effect"
|
|
47275
|
+
*
|
|
47276
|
+
* Effect.gen(function*() {
|
|
47277
|
+
* const handle = yield* FiberHandle.make()
|
|
47278
|
+
*
|
|
47279
|
+
* // Add a fiber
|
|
47280
|
+
* yield* FiberHandle.run(handle, Effect.never)
|
|
47281
|
+
*
|
|
47282
|
+
* // Clear the handle, interrupting the fiber
|
|
47283
|
+
* yield* FiberHandle.clear(handle)
|
|
47284
|
+
*
|
|
47285
|
+
* // The handle is now empty
|
|
47286
|
+
* const fiber = FiberHandle.getUnsafe(handle)
|
|
47287
|
+
* console.log(fiber) // undefined
|
|
47288
|
+
* })
|
|
47289
|
+
* ```
|
|
47290
|
+
*
|
|
47291
|
+
* @since 2.0.0
|
|
47292
|
+
* @category combinators
|
|
47293
|
+
*/
|
|
47294
|
+
const clear = (self$1) => uninterruptibleMask((restore) => {
|
|
47295
|
+
if (self$1.state._tag === "Closed" || self$1.state.fiber === void 0) return void_$1;
|
|
47296
|
+
return andThen(restore(interruptAs(self$1.state.fiber, internalFiberId$1)), sync(() => {
|
|
47297
|
+
if (self$1.state._tag === "Open") self$1.state.fiber = void 0;
|
|
47298
|
+
}));
|
|
47299
|
+
});
|
|
47300
|
+
const constInterruptedFiber$1 = /* @__PURE__ */ function() {
|
|
47301
|
+
let fiber$2 = void 0;
|
|
47302
|
+
return () => {
|
|
47303
|
+
if (fiber$2 === void 0) fiber$2 = runFork(interrupt$1);
|
|
47304
|
+
return fiber$2;
|
|
47305
|
+
};
|
|
47306
|
+
}();
|
|
47307
|
+
/**
|
|
47308
|
+
* Run an Effect and add the forked fiber to the FiberHandle.
|
|
47309
|
+
* When the fiber completes, it will be removed from the FiberHandle.
|
|
47310
|
+
*
|
|
47311
|
+
* @example
|
|
47312
|
+
* ```ts
|
|
47313
|
+
* import { Effect, Fiber, FiberHandle } from "effect"
|
|
47314
|
+
*
|
|
47315
|
+
* Effect.gen(function*() {
|
|
47316
|
+
* const handle = yield* FiberHandle.make()
|
|
47317
|
+
*
|
|
47318
|
+
* // Run an effect and get the fiber
|
|
47319
|
+
* const fiber = yield* FiberHandle.run(handle, Effect.succeed("hello"))
|
|
47320
|
+
* const result = yield* Fiber.await(fiber)
|
|
47321
|
+
* console.log(result) // "hello"
|
|
47322
|
+
*
|
|
47323
|
+
* // Running another effect will interrupt the previous one
|
|
47324
|
+
* const fiber2 = yield* FiberHandle.run(handle, Effect.succeed("world"))
|
|
47325
|
+
* const result2 = yield* Fiber.await(fiber2)
|
|
47326
|
+
* console.log(result2) // "world"
|
|
47327
|
+
* })
|
|
47328
|
+
* ```
|
|
47329
|
+
*
|
|
47330
|
+
* @since 2.0.0
|
|
47331
|
+
* @category combinators
|
|
47332
|
+
*/
|
|
47333
|
+
const run$2 = function() {
|
|
47334
|
+
const self$1 = arguments[0];
|
|
47335
|
+
if (isEffect(arguments[1])) return runImpl$1(self$1, arguments[1], arguments[2]);
|
|
47336
|
+
const options = arguments[1];
|
|
47337
|
+
return (effect$1) => runImpl$1(self$1, effect$1, options);
|
|
47338
|
+
};
|
|
47339
|
+
const runImpl$1 = (self$1, effect$1, options) => withFiber((parent) => {
|
|
47340
|
+
if (self$1.state._tag === "Closed") return interrupt$1;
|
|
47341
|
+
else if (self$1.state.fiber !== void 0 && options?.onlyIfMissing === true) return sync(constInterruptedFiber$1);
|
|
47342
|
+
const fiber$2 = runForkWith(parent.services)(effect$1);
|
|
47343
|
+
setUnsafe(self$1, fiber$2, options);
|
|
47344
|
+
return succeed$1(fiber$2);
|
|
47345
|
+
});
|
|
47346
|
+
|
|
47151
47347
|
//#endregion
|
|
47152
47348
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/FiberSet.js
|
|
47153
47349
|
/**
|
|
@@ -47222,7 +47418,7 @@ const makeUnsafe = (backing, deferred) => {
|
|
|
47222
47418
|
* @since 2.0.0
|
|
47223
47419
|
* @category constructors
|
|
47224
47420
|
*/
|
|
47225
|
-
const make$23 = () => acquireRelease(sync(() => makeUnsafe(/* @__PURE__ */ new Set(), makeUnsafe$
|
|
47421
|
+
const make$23 = () => acquireRelease(sync(() => makeUnsafe(/* @__PURE__ */ new Set(), makeUnsafe$7())), (set$6) => suspend$2(() => {
|
|
47226
47422
|
const state = set$6.state;
|
|
47227
47423
|
if (state._tag === "Closed") return void_$1;
|
|
47228
47424
|
set$6.state = { _tag: "Closed" };
|
|
@@ -49193,7 +49389,7 @@ const makeTemplatedCommand = (templates, expressions, options) => Object.assign(
|
|
|
49193
49389
|
* @since 4.0.0
|
|
49194
49390
|
* @category Constructors
|
|
49195
49391
|
*/
|
|
49196
|
-
const make$21 = function make$
|
|
49392
|
+
const make$21 = function make$52(...args$1) {
|
|
49197
49393
|
if (isTemplateString(args$1[0])) {
|
|
49198
49394
|
const [templates, ...expressions] = args$1;
|
|
49199
49395
|
return makeTemplatedCommand(templates, expressions, {});
|
|
@@ -49574,7 +49770,7 @@ const toUint8Array = (readable, options) => map$4(toArrayBuffer(readable, option
|
|
|
49574
49770
|
const readableToPullUnsafe = (options) => {
|
|
49575
49771
|
const readable = options.readable;
|
|
49576
49772
|
const closeOnDone = options.closeOnDone ?? true;
|
|
49577
|
-
const exit$2 = options.exit ?? make$
|
|
49773
|
+
const exit$2 = options.exit ?? make$36(void 0);
|
|
49578
49774
|
const latch = makeLatchUnsafe(false);
|
|
49579
49775
|
function onReadable() {
|
|
49580
49776
|
latch.openUnsafe();
|
|
@@ -49714,7 +49910,7 @@ const make$20 = /* @__PURE__ */ gen(function* () {
|
|
|
49714
49910
|
evaluate: () => nodeStream,
|
|
49715
49911
|
onError: (error$1) => toPlatformError(`fromWritable(fd${fd})`, toError(error$1), command)
|
|
49716
49912
|
});
|
|
49717
|
-
if (isNotUndefined$2(config.stream)) yield* forkScoped(run$
|
|
49913
|
+
if (isNotUndefined$2(config.stream)) yield* forkScoped(run$5(config.stream, sink));
|
|
49718
49914
|
inputSinks.set(fd, sink);
|
|
49719
49915
|
break;
|
|
49720
49916
|
}
|
|
@@ -49743,7 +49939,7 @@ const make$20 = /* @__PURE__ */ gen(function* () {
|
|
|
49743
49939
|
endOnDone: config.endOnDone,
|
|
49744
49940
|
encoding: config.encoding
|
|
49745
49941
|
});
|
|
49746
|
-
if (isStream(config.stream)) yield* forkScoped(run$
|
|
49942
|
+
if (isStream(config.stream)) yield* forkScoped(run$5(config.stream, sink));
|
|
49747
49943
|
return sink;
|
|
49748
49944
|
});
|
|
49749
49945
|
/**
|
|
@@ -49825,7 +50021,7 @@ const make$20 = /* @__PURE__ */ gen(function* () {
|
|
|
49825
50021
|
};
|
|
49826
50022
|
};
|
|
49827
50023
|
const spawn$1 = fnUntraced(function* (command, spawnOptions) {
|
|
49828
|
-
const deferred = yield* make$
|
|
50024
|
+
const deferred = yield* make$46();
|
|
49829
50025
|
return yield* callback$1((resume) => {
|
|
49830
50026
|
const handle = NodeChildProcess.spawn(command.command, command.args, spawnOptions);
|
|
49831
50027
|
handle.on("error", (error$1) => {
|
|
@@ -50509,8 +50705,8 @@ const redact = /* @__PURE__ */ dual(2, (self$1, key) => {
|
|
|
50509
50705
|
const modify$1 = (key$1) => {
|
|
50510
50706
|
if (typeof key$1 === "string") {
|
|
50511
50707
|
const k = key$1.toLowerCase();
|
|
50512
|
-
if (k in self$1) out[k] = make$
|
|
50513
|
-
} else for (const name in self$1) if (key$1.test(name)) out[name] = make$
|
|
50708
|
+
if (k in self$1) out[k] = make$39(self$1[k]);
|
|
50709
|
+
} else for (const name in self$1) if (key$1.test(name)) out[name] = make$39(self$1[name]);
|
|
50514
50710
|
};
|
|
50515
50711
|
if (Array.isArray(key)) for (let i = 0; i < key.length; i++) modify$1(key[i]);
|
|
50516
50712
|
else modify$1(key);
|
|
@@ -50651,7 +50847,7 @@ const fromInputNested = (input) => {
|
|
|
50651
50847
|
* @since 4.0.0
|
|
50652
50848
|
* @category Equivalence
|
|
50653
50849
|
*/
|
|
50654
|
-
const Equivalence = /* @__PURE__ */ make$
|
|
50850
|
+
const Equivalence = /* @__PURE__ */ make$49((a, b) => arrayEquivalence(a.params, b.params));
|
|
50655
50851
|
const arrayEquivalence = /* @__PURE__ */ makeEquivalence$1(/* @__PURE__ */ makeEquivalence$3([/* @__PURE__ */ strictEqual(), /* @__PURE__ */ strictEqual()]));
|
|
50656
50852
|
/**
|
|
50657
50853
|
* @since 4.0.0
|
|
@@ -52632,12 +52828,12 @@ const fromWebSocket = (acquire, options) => withFiber((fiber$2) => {
|
|
|
52632
52828
|
const runRaw = (handler$1, opts) => scopedWith(fnUntraced(function* (scope$2) {
|
|
52633
52829
|
const fiberSet = yield* make$23().pipe(provide$4(scope$2));
|
|
52634
52830
|
const ws = yield* provide$4(acquire, scope$2);
|
|
52635
|
-
const run$
|
|
52831
|
+
const run$8 = yield* provideService(runtime(fiberSet)(), WebSocket$1, ws);
|
|
52636
52832
|
let open$1 = false;
|
|
52637
52833
|
function onMessage(event) {
|
|
52638
|
-
if (event.data instanceof Blob) return promise(() => event.data.arrayBuffer()).pipe(andThen((buffer$1) => handler$1(new Uint8Array(buffer$1))), run$
|
|
52834
|
+
if (event.data instanceof Blob) return promise(() => event.data.arrayBuffer()).pipe(andThen((buffer$1) => handler$1(new Uint8Array(buffer$1))), run$8);
|
|
52639
52835
|
const result$2 = handler$1(event.data);
|
|
52640
|
-
if (isEffect(result$2)) run$
|
|
52836
|
+
if (isEffect(result$2)) run$8(result$2);
|
|
52641
52837
|
}
|
|
52642
52838
|
function onError$2(cause) {
|
|
52643
52839
|
ws.removeEventListener("message", onMessage);
|
|
@@ -52659,7 +52855,7 @@ const fromWebSocket = (acquire, options) => withFiber((fiber$2) => {
|
|
|
52659
52855
|
ws.addEventListener("error", onError$2, { once: true });
|
|
52660
52856
|
ws.addEventListener("message", onMessage);
|
|
52661
52857
|
if (ws.readyState !== 1) {
|
|
52662
|
-
const openDeferred = makeUnsafe$
|
|
52858
|
+
const openDeferred = makeUnsafe$7();
|
|
52663
52859
|
ws.addEventListener("open", () => {
|
|
52664
52860
|
open$1 = true;
|
|
52665
52861
|
doneUnsafe$1(openDeferred, void_$1);
|
|
@@ -52682,7 +52878,7 @@ const fromWebSocket = (acquire, options) => withFiber((fiber$2) => {
|
|
|
52682
52878
|
currentWS = void 0;
|
|
52683
52879
|
})));
|
|
52684
52880
|
const encoder$3 = new TextEncoder();
|
|
52685
|
-
const run$
|
|
52881
|
+
const run$7 = (handler$1, opts) => runRaw((data) => typeof data === "string" ? handler$1(encoder$3.encode(data)) : data instanceof Uint8Array ? handler$1(data) : handler$1(new Uint8Array(data)), opts);
|
|
52686
52882
|
const write = (chunk) => latch.whenOpen(sync(() => {
|
|
52687
52883
|
const ws = currentWS;
|
|
52688
52884
|
if (isCloseEvent(chunk)) ws.close(chunk.code, chunk.reason);
|
|
@@ -52691,7 +52887,7 @@ const fromWebSocket = (acquire, options) => withFiber((fiber$2) => {
|
|
|
52691
52887
|
const writer = succeed$1(write);
|
|
52692
52888
|
return succeed$1(Socket.of({
|
|
52693
52889
|
[TypeId$3]: TypeId$3,
|
|
52694
|
-
run: run$
|
|
52890
|
+
run: run$7,
|
|
52695
52891
|
runRaw,
|
|
52696
52892
|
writer
|
|
52697
52893
|
}));
|
|
@@ -53779,7 +53975,7 @@ var FileImpl$1 = class extends PartBase$1 {
|
|
|
53779
53975
|
};
|
|
53780
53976
|
}
|
|
53781
53977
|
};
|
|
53782
|
-
const defaultWriteFile = (path$2, file) => flatMap(FileSystem.asEffect(), (fs) => mapError$2(run$
|
|
53978
|
+
const defaultWriteFile = (path$2, file) => flatMap(FileSystem.asEffect(), (fs) => mapError$2(run$5(file.content, fs.sink(path$2)), (cause) => new MultipartError({
|
|
53783
53979
|
reason: "InternalError",
|
|
53784
53980
|
cause
|
|
53785
53981
|
})));
|
|
@@ -54199,7 +54395,7 @@ const toHandled = (self$1, handleResponse$1, middleware$1) => {
|
|
|
54199
54395
|
const handledSymbol = /* @__PURE__ */ Symbol.for("effect/http/HttpEffect/handled");
|
|
54200
54396
|
const scopeEjected = /* @__PURE__ */ Symbol.for("effect/http/HttpEffect/scopeEjected");
|
|
54201
54397
|
const scoped = (effect$1) => withFiber((fiber$2) => {
|
|
54202
|
-
const scope$2 = makeUnsafe$
|
|
54398
|
+
const scope$2 = makeUnsafe$6();
|
|
54203
54399
|
const prev = getOption(fiber$2.services, Scope);
|
|
54204
54400
|
fiber$2.setServices(add$3(fiber$2.services, Scope, scope$2));
|
|
54205
54401
|
return onExitInterruptible(effect$1, (exit$2) => {
|
|
@@ -54488,7 +54684,7 @@ const make$5 = /* @__PURE__ */ gen(function* () {
|
|
|
54488
54684
|
});
|
|
54489
54685
|
const span = contextMap.get(ParentSpan.key);
|
|
54490
54686
|
if (span && span._tag === "Span") span.attribute("http.route", route$1.path);
|
|
54491
|
-
return provideServices(route$1.uninterruptible ? route$1.handler : interruptible(route$1.handler), makeUnsafe$
|
|
54687
|
+
return provideServices(route$1.uninterruptible ? route$1.handler : interruptible(route$1.handler), makeUnsafe$8(contextMap));
|
|
54492
54688
|
});
|
|
54493
54689
|
if (middleware$1.size === 0) return handler$1;
|
|
54494
54690
|
for (const fn$2 of reverse(middleware$1)) handler$1 = fn$2(handler$1);
|
|
@@ -54664,7 +54860,7 @@ const makeMiddleware = (middleware$1, options) => options?.global ? effectDiscar
|
|
|
54664
54860
|
const router = yield* HttpRouter;
|
|
54665
54861
|
const fn$2 = isEffect(middleware$1) ? yield* middleware$1 : middleware$1;
|
|
54666
54862
|
yield* router.addGlobalMiddleware(fn$2);
|
|
54667
|
-
})) : new MiddlewareImpl(isEffect(middleware$1) ? effectServices(map$4(middleware$1, (fn$2) => makeUnsafe$
|
|
54863
|
+
})) : new MiddlewareImpl(isEffect(middleware$1) ? effectServices(map$4(middleware$1, (fn$2) => makeUnsafe$8(new Map([[fnContextKey, fn$2]])))) : succeedServices(makeUnsafe$8(new Map([[fnContextKey, middleware$1]]))));
|
|
54668
54864
|
let middlewareId = 0;
|
|
54669
54865
|
const fnContextKey = "effect/http/HttpRouter/MiddlewareFn";
|
|
54670
54866
|
var MiddlewareImpl = class MiddlewareImpl {
|
|
@@ -54684,7 +54880,7 @@ var MiddlewareImpl = class MiddlewareImpl {
|
|
|
54684
54880
|
const depsContext = yield* buildWithMemoMap(this.dependencies, memoMap, scope$2);
|
|
54685
54881
|
stack.push(...getMiddleware(depsContext));
|
|
54686
54882
|
}
|
|
54687
|
-
return makeUnsafe$
|
|
54883
|
+
return makeUnsafe$8(new Map([[contextKey, stack]]));
|
|
54688
54884
|
})).pipe(provide$3(this.layerFn));
|
|
54689
54885
|
}
|
|
54690
54886
|
layer;
|
|
@@ -58594,7 +58790,7 @@ const writeFile = (path$2, data, options) => callback$1((resume, signal) => {
|
|
|
58594
58790
|
resume(fail$4(handleBadArgument("writeFile")(err)));
|
|
58595
58791
|
}
|
|
58596
58792
|
});
|
|
58597
|
-
const makeFileSystem = /* @__PURE__ */ map$4(/* @__PURE__ */ serviceOption(WatchBackend), (backend) => make$
|
|
58793
|
+
const makeFileSystem = /* @__PURE__ */ map$4(/* @__PURE__ */ serviceOption(WatchBackend), (backend) => make$30({
|
|
58598
58794
|
access,
|
|
58599
58795
|
chmod,
|
|
58600
58796
|
chown,
|
|
@@ -59028,7 +59224,7 @@ const toFileUrl = (path$2) => try_({
|
|
|
59028
59224
|
* @category Layers
|
|
59029
59225
|
*/
|
|
59030
59226
|
const layerPosix$1 = /* @__PURE__ */ succeed$2(Path$1)({
|
|
59031
|
-
[TypeId$
|
|
59227
|
+
[TypeId$26]: TypeId$26,
|
|
59032
59228
|
...Path.posix,
|
|
59033
59229
|
fromFileUrl,
|
|
59034
59230
|
toFileUrl
|
|
@@ -59038,7 +59234,7 @@ const layerPosix$1 = /* @__PURE__ */ succeed$2(Path$1)({
|
|
|
59038
59234
|
* @category Layers
|
|
59039
59235
|
*/
|
|
59040
59236
|
const layerWin32$1 = /* @__PURE__ */ succeed$2(Path$1)({
|
|
59041
|
-
[TypeId$
|
|
59237
|
+
[TypeId$26]: TypeId$26,
|
|
59042
59238
|
...Path.win32,
|
|
59043
59239
|
fromFileUrl,
|
|
59044
59240
|
toFileUrl
|
|
@@ -59048,7 +59244,7 @@ const layerWin32$1 = /* @__PURE__ */ succeed$2(Path$1)({
|
|
|
59048
59244
|
* @category Layers
|
|
59049
59245
|
*/
|
|
59050
59246
|
const layer$5 = /* @__PURE__ */ succeed$2(Path$1)({
|
|
59051
|
-
[TypeId$
|
|
59247
|
+
[TypeId$26]: TypeId$26,
|
|
59052
59248
|
...Path,
|
|
59053
59249
|
fromFileUrl,
|
|
59054
59250
|
toFileUrl
|
|
@@ -59087,7 +59283,7 @@ const layerWin32 = layerWin32$1;
|
|
|
59087
59283
|
const make$2 = /* @__PURE__ */ fnUntraced(function* (shouldQuit = defaultShouldQuit) {
|
|
59088
59284
|
const stdin = process.stdin;
|
|
59089
59285
|
const stdout = process.stdout;
|
|
59090
|
-
const rlRef = yield* make$
|
|
59286
|
+
const rlRef = yield* make$31({ acquire: acquireRelease(sync(() => {
|
|
59091
59287
|
const rl = readline.createInterface({
|
|
59092
59288
|
input: stdin,
|
|
59093
59289
|
escapeCodeTimeout: 50
|
|
@@ -59102,7 +59298,7 @@ const make$2 = /* @__PURE__ */ fnUntraced(function* (shouldQuit = defaultShouldQ
|
|
|
59102
59298
|
const columns = sync(() => stdout.columns ?? 0);
|
|
59103
59299
|
const readInput = gen(function* () {
|
|
59104
59300
|
yield* get$3(rlRef);
|
|
59105
|
-
const queue = yield* make$
|
|
59301
|
+
const queue = yield* make$35();
|
|
59106
59302
|
const handleKeypress = (s, k) => {
|
|
59107
59303
|
const userInput = {
|
|
59108
59304
|
input: s,
|
|
@@ -59133,7 +59329,7 @@ const make$2 = /* @__PURE__ */ fnUntraced(function* (shouldQuit = defaultShouldQ
|
|
|
59133
59329
|
cause: err
|
|
59134
59330
|
}))));
|
|
59135
59331
|
}));
|
|
59136
|
-
return make$
|
|
59332
|
+
return make$27({
|
|
59137
59333
|
columns,
|
|
59138
59334
|
readInput,
|
|
59139
59335
|
readLine,
|
|
@@ -59244,7 +59440,7 @@ const makeHandler = (httpEffect, options) => {
|
|
|
59244
59440
|
return function handler$1(nodeRequest, nodeResponse) {
|
|
59245
59441
|
const map$12 = new Map(services$2.mapUnsafe);
|
|
59246
59442
|
map$12.set(HttpServerRequest.key, new ServerRequestImpl(nodeRequest, nodeResponse));
|
|
59247
|
-
const fiber$2 = runIn(runForkWith(makeUnsafe$
|
|
59443
|
+
const fiber$2 = runIn(runForkWith(makeUnsafe$8(map$12))(handled), options.scope);
|
|
59248
59444
|
nodeResponse.on("close", () => {
|
|
59249
59445
|
if (!nodeResponse.writableEnded) fiber$2.interruptUnsafe(clientAbortFiberId);
|
|
59250
59446
|
});
|
|
@@ -59274,7 +59470,7 @@ const makeUpgradeHandler = (lazyWss, httpEffect, options) => {
|
|
|
59274
59470
|
})), (ws) => sync(() => ws.close()))));
|
|
59275
59471
|
const map$12 = new Map(services$2.mapUnsafe);
|
|
59276
59472
|
map$12.set(HttpServerRequest.key, new ServerRequestImpl(nodeRequest, nodeResponse, upgradeEffect));
|
|
59277
|
-
const fiber$2 = runIn(runForkWith(makeUnsafe$
|
|
59473
|
+
const fiber$2 = runIn(runForkWith(makeUnsafe$8(map$12))(handledApp), options.scope);
|
|
59278
59474
|
socket.on("close", () => {
|
|
59279
59475
|
if (!socket.writableEnded) fiber$2.interruptUnsafe(clientAbortFiberId);
|
|
59280
59476
|
});
|
|
@@ -59570,7 +59766,7 @@ const allCliAgents = [opencode, claude];
|
|
|
59570
59766
|
//#region src/Settings.ts
|
|
59571
59767
|
var Settings = class extends Service()("lalph/Settings", { make: gen(function* () {
|
|
59572
59768
|
const store = prefix(yield* KeyValueStore, "settings.");
|
|
59573
|
-
const cache = yield* make$
|
|
59769
|
+
const cache = yield* make$25({
|
|
59574
59770
|
lookup(setting) {
|
|
59575
59771
|
const s = toSchemaStore(store, setting.schema);
|
|
59576
59772
|
return orDie$2(s.get(setting.name));
|
|
@@ -133751,7 +133947,7 @@ var TokenManager$1 = class extends Service()("lalph/Linear/TokenManager", { make
|
|
|
133751
133947
|
}));
|
|
133752
133948
|
const get$8 = makeSemaphoreUnsafe(1).withPermit(getNoLock);
|
|
133753
133949
|
const pkce = gen(function* () {
|
|
133754
|
-
const deferred = yield* make$
|
|
133950
|
+
const deferred = yield* make$46();
|
|
133755
133951
|
const CallbackRoute = add("GET", "/callback", gen(function* () {
|
|
133756
133952
|
const params$1 = yield* callbackParams;
|
|
133757
133953
|
yield* succeed$3(deferred, params$1);
|
|
@@ -133825,10 +134021,6 @@ const TokenResponse$1 = Struct({
|
|
|
133825
134021
|
|
|
133826
134022
|
//#endregion
|
|
133827
134023
|
//#region src/IssueSource.ts
|
|
133828
|
-
/**
|
|
133829
|
-
* Current unused, but eventually will represent a source of issues so we can
|
|
133830
|
-
* support more than just Linear
|
|
133831
|
-
*/
|
|
133832
134024
|
var IssueSource = class extends Service()("lalph/IssueSource") {};
|
|
133833
134025
|
var IssueSourceError = class extends ErrorClass("lalph/IssueSourceError")({
|
|
133834
134026
|
_tag: tag("IssueSourceError"),
|
|
@@ -133845,7 +134037,7 @@ var NoMoreWork = class extends ErrorClass("lalph/Prd/NoMoreWork")({ _tag: tag("N
|
|
|
133845
134037
|
//#region src/Linear.ts
|
|
133846
134038
|
var Linear = class extends Service()("lalph/Linear", { make: gen(function* () {
|
|
133847
134039
|
const tokens = yield* TokenManager$1;
|
|
133848
|
-
const clients = yield* make$
|
|
134040
|
+
const clients = yield* make$33({
|
|
133849
134041
|
lookup: (token) => succeed$1(new LinearClient({ accessToken: token })),
|
|
133850
134042
|
idleTimeToLive: "1 minute"
|
|
133851
134043
|
});
|
|
@@ -133929,7 +134121,7 @@ const LinearIssueSource = effect(IssueSource, gen(function* () {
|
|
|
133929
134121
|
} })).pipe(filter((issue) => {
|
|
133930
134122
|
const completedAt = issue.completedAt;
|
|
133931
134123
|
if (!completedAt) return true;
|
|
133932
|
-
const completed = makeUnsafe$
|
|
134124
|
+
const completed = makeUnsafe$4(completedAt);
|
|
133933
134125
|
const threeDaysAgo = nowUnsafe().pipe(subtract({ days: 3 }));
|
|
133934
134126
|
return isGreaterThanOrEqualTo$1(completed, threeDaysAgo);
|
|
133935
134127
|
}), mapEffect$1(fnUntraced(function* (issue) {
|
|
@@ -136777,7 +136969,7 @@ var require_light = /* @__PURE__ */ __commonJSMin$1(((exports, module) => {
|
|
|
136777
136969
|
options: this.options
|
|
136778
136970
|
});
|
|
136779
136971
|
}
|
|
136780
|
-
async doExecute(chained, clearGlobalState, run$
|
|
136972
|
+
async doExecute(chained, clearGlobalState, run$7, free) {
|
|
136781
136973
|
var error$1, eventInfo, passed;
|
|
136782
136974
|
if (this.retryCount === 0) {
|
|
136783
136975
|
this._assertStatus("RUNNING");
|
|
@@ -136799,10 +136991,10 @@ var require_light = /* @__PURE__ */ __commonJSMin$1(((exports, module) => {
|
|
|
136799
136991
|
}
|
|
136800
136992
|
} catch (error1) {
|
|
136801
136993
|
error$1 = error1;
|
|
136802
|
-
return this._onFailure(error$1, eventInfo, clearGlobalState, run$
|
|
136994
|
+
return this._onFailure(error$1, eventInfo, clearGlobalState, run$7, free);
|
|
136803
136995
|
}
|
|
136804
136996
|
}
|
|
136805
|
-
doExpire(clearGlobalState, run$
|
|
136997
|
+
doExpire(clearGlobalState, run$7, free) {
|
|
136806
136998
|
var error$1, eventInfo;
|
|
136807
136999
|
if (this._states.jobStatus(this.options.id === "RUNNING")) this._states.next(this.options.id);
|
|
136808
137000
|
this._assertStatus("EXECUTING");
|
|
@@ -136812,9 +137004,9 @@ var require_light = /* @__PURE__ */ __commonJSMin$1(((exports, module) => {
|
|
|
136812
137004
|
retryCount: this.retryCount
|
|
136813
137005
|
};
|
|
136814
137006
|
error$1 = new BottleneckError$1(`This job timed out after ${this.options.expiration} ms.`);
|
|
136815
|
-
return this._onFailure(error$1, eventInfo, clearGlobalState, run$
|
|
137007
|
+
return this._onFailure(error$1, eventInfo, clearGlobalState, run$7, free);
|
|
136816
137008
|
}
|
|
136817
|
-
async _onFailure(error$1, eventInfo, clearGlobalState, run$
|
|
137009
|
+
async _onFailure(error$1, eventInfo, clearGlobalState, run$7, free) {
|
|
136818
137010
|
var retry$3, retryAfter;
|
|
136819
137011
|
if (clearGlobalState()) {
|
|
136820
137012
|
retry$3 = await this.Events.trigger("failed", error$1, eventInfo);
|
|
@@ -136822,7 +137014,7 @@ var require_light = /* @__PURE__ */ __commonJSMin$1(((exports, module) => {
|
|
|
136822
137014
|
retryAfter = ~~retry$3;
|
|
136823
137015
|
this.Events.trigger("retry", `Retrying ${this.options.id} after ${retryAfter} ms`, eventInfo);
|
|
136824
137016
|
this.retryCount++;
|
|
136825
|
-
return run$
|
|
137017
|
+
return run$7(retryAfter);
|
|
136826
137018
|
} else {
|
|
136827
137019
|
this.doDone(eventInfo);
|
|
136828
137020
|
await free(this.options, eventInfo);
|
|
@@ -137403,17 +137595,17 @@ var require_light = /* @__PURE__ */ __commonJSMin$1(((exports, module) => {
|
|
|
137403
137595
|
}
|
|
137404
137596
|
}
|
|
137405
137597
|
_run(index, job, wait$1) {
|
|
137406
|
-
var clearGlobalState, free, run$
|
|
137598
|
+
var clearGlobalState, free, run$7;
|
|
137407
137599
|
job.doRun();
|
|
137408
137600
|
clearGlobalState = this._clearGlobalState.bind(this, index);
|
|
137409
|
-
run$
|
|
137601
|
+
run$7 = this._run.bind(this, index, job);
|
|
137410
137602
|
free = this._free.bind(this, index, job);
|
|
137411
137603
|
return this._scheduled[index] = {
|
|
137412
137604
|
timeout: setTimeout(() => {
|
|
137413
|
-
return job.doExecute(this._limiter, clearGlobalState, run$
|
|
137605
|
+
return job.doExecute(this._limiter, clearGlobalState, run$7, free);
|
|
137414
137606
|
}, wait$1),
|
|
137415
137607
|
expiration: job.options.expiration != null ? setTimeout(function() {
|
|
137416
|
-
return job.doExpire(clearGlobalState, run$
|
|
137608
|
+
return job.doExpire(clearGlobalState, run$7, free);
|
|
137417
137609
|
}, wait$1 + job.options.expiration) : void 0,
|
|
137418
137610
|
job
|
|
137419
137611
|
};
|
|
@@ -140163,7 +140355,7 @@ const PollResponse = Union([TokenResponse, PollErrorResponse]);
|
|
|
140163
140355
|
var GithubError = class extends TaggedError("GithubError") {};
|
|
140164
140356
|
var Github = class extends Service()("lalph/Github", { make: gen(function* () {
|
|
140165
140357
|
const tokens = yield* TokenManager;
|
|
140166
|
-
const clients = yield* make$
|
|
140358
|
+
const clients = yield* make$33({
|
|
140167
140359
|
lookup: (token) => succeed$1(new Octokit({ auth: token })),
|
|
140168
140360
|
idleTimeToLive: "1 minute"
|
|
140169
140361
|
});
|
|
@@ -140441,7 +140633,7 @@ The following instructions should be done without interaction or asking for perm
|
|
|
140441
140633
|
be the task YOU decide as the most important to work on next, not just the
|
|
140442
140634
|
first task in the list.
|
|
140443
140635
|
- Only start tasks that are in a "todo" state.
|
|
140444
|
-
-
|
|
140636
|
+
- Only start tasks with an empty \`blockedBy\` field.
|
|
140445
140637
|
2. **Before doing anything else**, mark the task as "in-progress" by updating its
|
|
140446
140638
|
\`state\` in the prd.yml file.
|
|
140447
140639
|
This prevents other people or agents from working on the same task simultaneously.
|
|
@@ -140460,9 +140652,10 @@ The following instructions should be done without interaction or asking for perm
|
|
|
140460
140652
|
${prdNotes}`;
|
|
140461
140653
|
const prompt = (options) => `The following instructions should be done without interaction or asking for permission.
|
|
140462
140654
|
|
|
140463
|
-
1.
|
|
140655
|
+
1. Study the ${options.specsDirectory}/README.md file (if available).
|
|
140656
|
+
Then your job is to complete the task with id \`${options.taskId}\` from the prd.yml file.
|
|
140464
140657
|
Read the entire prd.yml file to understand the context of the task and any
|
|
140465
|
-
key learnings from previous work.
|
|
140658
|
+
key learnings from previous work.
|
|
140466
140659
|
2. Check if there is an existing Github PR for the task, otherwise create a new
|
|
140467
140660
|
branch for the task.${options.targetBranch ? ` The target branch for the PR should be \`${options.targetBranch}\`. If the target branch does not exist, create it first.` : ""}
|
|
140468
140661
|
- If there is an existing PR, checkout the branch for that PR.
|
|
@@ -140474,6 +140667,10 @@ ${prdNotes}`;
|
|
|
140474
140667
|
- When checking for PR reviews, make sure to check the "reviews" field and read ALL unresolved comments.
|
|
140475
140668
|
Also read the normal comments to see if there are any additional requests.
|
|
140476
140669
|
3. Implement the task.
|
|
140670
|
+
- **If at any point** you discover something that needs fixing, or another task
|
|
140671
|
+
that needs doing, immediately add it to the prd.yml file as a new task.
|
|
140672
|
+
- Add important discoveries about the codebase, or challenges faced to the task's
|
|
140673
|
+
\`description\`. More details below.
|
|
140477
140674
|
4. Run any checks / feedback loops, such as type checks, unit tests, or linting.
|
|
140478
140675
|
5. Create or update the pull request with your progress.
|
|
140479
140676
|
${sourceMeta.githubPrInstructions}
|
|
@@ -140511,9 +140708,6 @@ If for any reason you get stuck on a task, mark the task back as "todo" by updat
|
|
|
140511
140708
|
\`state\` and leaving some notes in the task's \`description\` field about the
|
|
140512
140709
|
challenges faced.
|
|
140513
140710
|
|
|
140514
|
-
If it feels like you are brute forcing your way through a task, STOP and move the
|
|
140515
|
-
task back to "todo" state with notes on why in the description.
|
|
140516
|
-
|
|
140517
140711
|
${prdNotes}`;
|
|
140518
140712
|
const promptTimeout = (options) => `Your earlier attempt to complete the task with id \`${options.taskId}\` took too
|
|
140519
140713
|
long and has timed out. You can find the task details in the prd.yml file.
|
|
@@ -140522,19 +140716,20 @@ The following instructions should be done without interaction or asking for
|
|
|
140522
140716
|
permission.
|
|
140523
140717
|
|
|
140524
140718
|
1. Investigate why you think the task took too long. Research the codebase
|
|
140525
|
-
further
|
|
140526
|
-
2.
|
|
140527
|
-
3.
|
|
140528
|
-
|
|
140719
|
+
further to understand what is needed to complete the task.
|
|
140720
|
+
2. Mark the original task as "done" by updating its \`state\` in the prd.yml file.
|
|
140721
|
+
3. Break down the task into smaller tasks and add them to the prd.yml file.
|
|
140722
|
+
Each new task should have an id of \`null\`, a title, and a concise description that
|
|
140529
140723
|
includes a short summary of the task and a brief list of steps to complete it.
|
|
140530
140724
|
- Include where to find the plan specification in the description (if applicable).
|
|
140531
140725
|
- The tasks should start in the "todo" state.
|
|
140532
140726
|
- Each task should be an atomic, committable piece of work.
|
|
140533
140727
|
Instead of creating tasks like "Refactor the authentication system", create
|
|
140534
140728
|
smaller tasks like "Implement OAuth2 login endpoint", "Add JWT token refresh mechanism", etc.
|
|
140535
|
-
|
|
140729
|
+
4. Setup task dependencies using the \`blockedBy\` field as needed. You will need
|
|
140536
140730
|
to wait 5 seconds after adding tasks to the prd.yml file to allow the system
|
|
140537
140731
|
to assign ids to the new tasks before you can setup dependencies.
|
|
140732
|
+
5. If any specifications need updating based on your new understanding, update them.
|
|
140538
140733
|
|
|
140539
140734
|
${prdNotes}`;
|
|
140540
140735
|
const planPrompt = (options) => `1. Ask the user for the idea / request, then your job is to create a detailed
|
|
@@ -140611,10 +140806,6 @@ var Prd = class extends Service()("lalph/Prd", { make: gen(function* () {
|
|
|
140611
140806
|
let current = yield* source.issues;
|
|
140612
140807
|
yield* fs.writeFileString(prdFile, PrdIssue.arrayToYaml(current));
|
|
140613
140808
|
const updatedIssues = /* @__PURE__ */ new Map();
|
|
140614
|
-
yield* fs.watch(lalphDir).pipe(buffer({
|
|
140615
|
-
capacity: 1,
|
|
140616
|
-
strategy: "dropping"
|
|
140617
|
-
}), runForEach((_) => ignore(sync$2)), retry$1(forever$1), forkScoped);
|
|
140618
140809
|
const sync$2 = gen(function* () {
|
|
140619
140810
|
const yaml = yield* fs.readFileString(prdFile);
|
|
140620
140811
|
const updated = PrdIssue.arrayFromYaml(yaml);
|
|
@@ -140650,6 +140841,20 @@ var Prd = class extends Service()("lalph/Prd", { make: gen(function* () {
|
|
|
140650
140841
|
});
|
|
140651
140842
|
})));
|
|
140652
140843
|
}).pipe(uninterruptible);
|
|
140844
|
+
const updateSyncHandle = yield* make$24();
|
|
140845
|
+
const updateSync = gen(function* () {
|
|
140846
|
+
const tempFile = yield* fs.makeTempFileScoped();
|
|
140847
|
+
const sourceIssues = yield* source.issues;
|
|
140848
|
+
if (!(sourceIssues.length !== current.length || sourceIssues.some((u, i) => u.isChangedComparedTo(current[i])))) return;
|
|
140849
|
+
yield* fs.writeFileString(tempFile, PrdIssue.arrayToYaml(sourceIssues));
|
|
140850
|
+
yield* fs.rename(tempFile, prdFile);
|
|
140851
|
+
current = sourceIssues;
|
|
140852
|
+
}).pipe(scoped$1, run$2(updateSyncHandle, { onlyIfMissing: true }));
|
|
140853
|
+
yield* fs.watch(lalphDir).pipe(buffer({
|
|
140854
|
+
capacity: 1,
|
|
140855
|
+
strategy: "dropping"
|
|
140856
|
+
}), runForEach((_) => clear(updateSyncHandle).pipe(andThen(ignore(sync$2)))), retry$1(forever$1), forkScoped);
|
|
140857
|
+
yield* updateSync.pipe(delay("1 minute"), forever, forkScoped);
|
|
140653
140858
|
const mergableGithubPrs = gen(function* () {
|
|
140654
140859
|
const yaml = yield* fs.readFileString(prdFile);
|
|
140655
140860
|
const updated = PrdIssue.arrayFromYaml(yaml);
|
|
@@ -140792,7 +140997,8 @@ const run = fnUntraced(function* (options) {
|
|
|
140792
140997
|
const exitCode$1 = yield* execWithStallTimeout(cliAgent.command({
|
|
140793
140998
|
prompt: promptGen.prompt({
|
|
140794
140999
|
taskId: task.id,
|
|
140795
|
-
targetBranch: getOrUndefined(options.targetBranch)
|
|
141000
|
+
targetBranch: getOrUndefined(options.targetBranch),
|
|
141001
|
+
specsDirectory: options.specsDirectory
|
|
140796
141002
|
}),
|
|
140797
141003
|
prdFilePath: pathService.join(".lalph", "prd.yml")
|
|
140798
141004
|
})).pipe(timeout(options.runTimeout), catchTag("TimeoutError", fnUntraced(function* (error$1) {
|
|
@@ -140861,7 +141067,7 @@ const plan = fnUntraced(function* (options) {
|
|
|
140861
141067
|
|
|
140862
141068
|
//#endregion
|
|
140863
141069
|
//#region src/Edit.ts
|
|
140864
|
-
const editPrd = make$
|
|
141070
|
+
const editPrd = make$26("edit").pipe(withDescription("Open the prd.yml file in your editor"), withHandler(fnUntraced(function* () {
|
|
140865
141071
|
const prd = yield* Prd;
|
|
140866
141072
|
const editor = yield* string$4("EDITOR").pipe(withDefault$2(() => "nvim"));
|
|
140867
141073
|
yield* make$21(editor, [prd.path], {
|
|
@@ -140888,7 +141094,7 @@ const FrontMatterSchema = toCodecJson(Struct({
|
|
|
140888
141094
|
estimate: NullOr(Finite),
|
|
140889
141095
|
blockedBy: Array$1(String$1)
|
|
140890
141096
|
}));
|
|
140891
|
-
const createIssue = make$
|
|
141097
|
+
const createIssue = make$26("issue").pipe(withDescription("Create a new issue in the selected issue source"), withHandler(fnUntraced(function* () {
|
|
140892
141098
|
const source = yield* IssueSource;
|
|
140893
141099
|
const fs = yield* FileSystem;
|
|
140894
141100
|
const tempFile = yield* fs.makeTempFileScoped({ suffix: ".md" });
|
|
@@ -140938,15 +141144,16 @@ const maxIterationMinutes = integer("max-minutes").pipe(withDescription$1("Maxim
|
|
|
140938
141144
|
const stallMinutes = integer("stall-minutes").pipe(withDescription$1("If no activity occurs for this many minutes, the iteration will be stopped. Defaults to 5 minutes"), withDefault(5));
|
|
140939
141145
|
const specsDirectory = directory("specs").pipe(withDescription$1("Directory to store plan specifications"), withAlias("s"), withDefault(".specs"));
|
|
140940
141146
|
const reset = boolean("reset").pipe(withDescription$1("Reset the current issue source before running"), withAlias("r"));
|
|
140941
|
-
const root = make$
|
|
141147
|
+
const root = make$26("lalph", {
|
|
140942
141148
|
iterations,
|
|
140943
141149
|
concurrency,
|
|
140944
141150
|
autoMerge,
|
|
140945
141151
|
targetBranch,
|
|
140946
141152
|
maxIterationMinutes,
|
|
140947
141153
|
stallMinutes,
|
|
140948
|
-
reset
|
|
140949
|
-
|
|
141154
|
+
reset,
|
|
141155
|
+
specsDirectory
|
|
141156
|
+
}).pipe(withHandler(fnUntraced(function* ({ iterations: iterations$1, concurrency: concurrency$1, autoMerge: autoMerge$1, targetBranch: targetBranch$1, maxIterationMinutes: maxIterationMinutes$1, stallMinutes: stallMinutes$1, reset: reset$2, specsDirectory: specsDirectory$1 }) {
|
|
140950
141157
|
if (reset$2) yield* resetCurrentIssueSource;
|
|
140951
141158
|
const source = yield* build(CurrentIssueSource.layer);
|
|
140952
141159
|
yield* getOrSelectCliAgent;
|
|
@@ -140962,11 +141169,12 @@ const root = make$25("lalph", {
|
|
|
140962
141169
|
yield* semaphore.take(1);
|
|
140963
141170
|
if (quit || isFinite$3 && iteration >= iterations$1) break;
|
|
140964
141171
|
const currentIteration = iteration;
|
|
140965
|
-
const startedDeferred = yield* make$
|
|
141172
|
+
const startedDeferred = yield* make$46();
|
|
140966
141173
|
yield* checkForWork.pipe(andThen(run({
|
|
140967
141174
|
startedDeferred,
|
|
140968
141175
|
autoMerge: autoMerge$1,
|
|
140969
141176
|
targetBranch: targetBranch$1,
|
|
141177
|
+
specsDirectory: specsDirectory$1,
|
|
140970
141178
|
stallTimeout: minutes(stallMinutes$1),
|
|
140971
141179
|
runTimeout: minutes(maxIterationMinutes$1)
|
|
140972
141180
|
})), catchFilter((e) => e._tag === "NoMoreWork" || e._tag === "QuitError" ? fail$8(e) : e, (e) => logWarning(fail$5(e))), catchTags({
|
|
@@ -140987,12 +141195,12 @@ const root = make$25("lalph", {
|
|
|
140987
141195
|
}
|
|
140988
141196
|
yield* awaitEmpty(fibers);
|
|
140989
141197
|
}, scoped$1)));
|
|
140990
|
-
const selectAgent = make$
|
|
140991
|
-
const selectSource = make$
|
|
140992
|
-
const planMode = make$
|
|
140993
|
-
const { reset: reset$2 } = yield* root;
|
|
141198
|
+
const selectAgent = make$26("agent").pipe(withDescription("Select the CLI agent to use"), withHandler(() => selectCliAgent));
|
|
141199
|
+
const selectSource = make$26("source").pipe(withDescription("Select the issue source to use"), withHandler(() => selectIssueSource));
|
|
141200
|
+
const planMode = make$26("plan").pipe(withDescription("Iterate on an issue plan and create PRD tasks"), withHandler(fnUntraced(function* () {
|
|
141201
|
+
const { reset: reset$2, specsDirectory: specsDirectory$1 } = yield* root;
|
|
140994
141202
|
if (reset$2) yield* resetCurrentIssueSource;
|
|
140995
|
-
yield* plan(
|
|
141203
|
+
yield* plan({ specsDirectory: specsDirectory$1 }).pipe(provide$1(CurrentIssueSource.layer));
|
|
140996
141204
|
})));
|
|
140997
141205
|
root.pipe(withSubcommands([
|
|
140998
141206
|
planMode,
|
|
@@ -141000,7 +141208,7 @@ root.pipe(withSubcommands([
|
|
|
141000
141208
|
editPrd,
|
|
141001
141209
|
selectSource,
|
|
141002
141210
|
selectAgent
|
|
141003
|
-
]), (_) => run$
|
|
141211
|
+
]), (_) => run$3(_, { version: "0.1.0" }), provide$1(Settings.layer.pipe(provideMerge(layer$1))), runMain);
|
|
141004
141212
|
|
|
141005
141213
|
//#endregion
|
|
141006
141214
|
export { };
|