lalph 0.1.21 → 0.1.22
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 +442 -798
- package/package.json +14 -2
- package/src/Github.ts +6 -5
- package/src/Linear.ts +5 -1
- package/src/Prd.ts +0 -2
- package/src/Runner.ts +11 -1
- package/src/Settings.ts +1 -0
- package/src/cli.ts +10 -29
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$49(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$49((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$49((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$49((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$49((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$49((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$49((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$49((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$54 = "~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$54]: TypeId$54,
|
|
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$48 = (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$54);
|
|
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$48(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$48(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$48(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$48(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$48(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$48(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$48(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$48(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$48(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$48(weeks$1 * 6048e5);
|
|
2901
2901
|
/**
|
|
2902
2902
|
* Converts a Duration to milliseconds.
|
|
2903
2903
|
*
|
|
@@ -3056,54 +3056,6 @@ const Equivalence$4 = (self$1, that) => matchPair(self$1, that, {
|
|
|
3056
3056
|
onInfinity: (self$2, that$1) => self$2.value._tag === that$1.value._tag
|
|
3057
3057
|
});
|
|
3058
3058
|
/**
|
|
3059
|
-
* Divides a Duration by a number, potentially returning infinity or zero.
|
|
3060
|
-
*
|
|
3061
|
-
* @example
|
|
3062
|
-
* ```ts
|
|
3063
|
-
* import { Duration } from "effect"
|
|
3064
|
-
*
|
|
3065
|
-
* const half = Duration.divideUnsafe(Duration.seconds(10), 2)
|
|
3066
|
-
* console.log(Duration.toSeconds(half)) // 5
|
|
3067
|
-
*
|
|
3068
|
-
* const infinite = Duration.divideUnsafe(Duration.seconds(10), 0)
|
|
3069
|
-
* console.log(Duration.toMillis(infinite)) // Infinity
|
|
3070
|
-
* ```
|
|
3071
|
-
*
|
|
3072
|
-
* @since 2.4.19
|
|
3073
|
-
* @category math
|
|
3074
|
-
*/
|
|
3075
|
-
const divideUnsafe = /* @__PURE__ */ dual(2, (self$1, by) => {
|
|
3076
|
-
if (!Number.isFinite(by)) return zero;
|
|
3077
|
-
return match$8(self$1, {
|
|
3078
|
-
onMillis: (millis$1) => make$49(millis$1 / by),
|
|
3079
|
-
onNanos: (nanos$1) => {
|
|
3080
|
-
if (by < 0 || Object.is(by, -0)) return zero;
|
|
3081
|
-
if (Object.is(by, 0)) return infinity;
|
|
3082
|
-
return make$49(nanos$1 / BigInt(by));
|
|
3083
|
-
},
|
|
3084
|
-
onInfinity: () => infinity
|
|
3085
|
-
});
|
|
3086
|
-
});
|
|
3087
|
-
/**
|
|
3088
|
-
* Multiplies a Duration by a number.
|
|
3089
|
-
*
|
|
3090
|
-
* @example
|
|
3091
|
-
* ```ts
|
|
3092
|
-
* import { Duration } from "effect"
|
|
3093
|
-
*
|
|
3094
|
-
* const doubled = Duration.times(Duration.seconds(5), 2)
|
|
3095
|
-
* console.log(Duration.toSeconds(doubled)) // 10
|
|
3096
|
-
* ```
|
|
3097
|
-
*
|
|
3098
|
-
* @since 2.0.0
|
|
3099
|
-
* @category math
|
|
3100
|
-
*/
|
|
3101
|
-
const times = /* @__PURE__ */ dual(2, (self$1, times$1) => match$8(self$1, {
|
|
3102
|
-
onMillis: (millis$1) => make$49(millis$1 * times$1),
|
|
3103
|
-
onNanos: (nanos$1) => make$49(nanos$1 * BigInt(times$1)),
|
|
3104
|
-
onInfinity: () => infinity
|
|
3105
|
-
}));
|
|
3106
|
-
/**
|
|
3107
3059
|
* Checks if two Durations are equal.
|
|
3108
3060
|
*
|
|
3109
3061
|
* @example
|
|
@@ -3615,7 +3567,7 @@ var NoSuchElementError$1 = class extends TaggedError$1("NoSuchElementError") {
|
|
|
3615
3567
|
* @category constructors
|
|
3616
3568
|
* @since 2.0.0
|
|
3617
3569
|
*/
|
|
3618
|
-
const make$
|
|
3570
|
+
const make$47 = (isEquivalent) => (self$1, that) => self$1 === that || isEquivalent(self$1, that);
|
|
3619
3571
|
const isStrictEquivalent = (x, y) => x === y;
|
|
3620
3572
|
/**
|
|
3621
3573
|
* Creates an equivalence relation that uses strict equality (`===`) to compare values.
|
|
@@ -3725,7 +3677,7 @@ const strictEqual = () => isStrictEquivalent;
|
|
|
3725
3677
|
* @since 4.0.0
|
|
3726
3678
|
*/
|
|
3727
3679
|
function Tuple$1(elements) {
|
|
3728
|
-
return make$
|
|
3680
|
+
return make$47((self$1, that) => {
|
|
3729
3681
|
if (self$1.length !== that.length) return false;
|
|
3730
3682
|
for (let i = 0; i < self$1.length; i++) if (!elements[i](self$1[i], that[i])) return false;
|
|
3731
3683
|
return true;
|
|
@@ -3782,7 +3734,7 @@ function Tuple$1(elements) {
|
|
|
3782
3734
|
* @since 4.0.0
|
|
3783
3735
|
*/
|
|
3784
3736
|
function Array$3(item) {
|
|
3785
|
-
return make$
|
|
3737
|
+
return make$47((self$1, that) => {
|
|
3786
3738
|
if (self$1.length !== that.length) return false;
|
|
3787
3739
|
for (let i = 0; i < self$1.length; i++) if (!item(self$1[i], that[i])) return false;
|
|
3788
3740
|
return true;
|
|
@@ -3858,7 +3810,7 @@ function Array$3(item) {
|
|
|
3858
3810
|
*/
|
|
3859
3811
|
function Struct$1(fields) {
|
|
3860
3812
|
const keys$1 = Reflect.ownKeys(fields);
|
|
3861
|
-
return make$
|
|
3813
|
+
return make$47((self$1, that) => {
|
|
3862
3814
|
for (const key of keys$1) if (!fields[key](self$1[key], that[key])) return false;
|
|
3863
3815
|
return true;
|
|
3864
3816
|
});
|
|
@@ -3869,9 +3821,9 @@ function Struct$1(fields) {
|
|
|
3869
3821
|
/**
|
|
3870
3822
|
* @since 2.0.0
|
|
3871
3823
|
*/
|
|
3872
|
-
const TypeId$
|
|
3824
|
+
const TypeId$53 = "~effect/data/Option";
|
|
3873
3825
|
const CommonProto$1 = {
|
|
3874
|
-
[TypeId$
|
|
3826
|
+
[TypeId$53]: { _A: (_) => _ },
|
|
3875
3827
|
...PipeInspectableProto,
|
|
3876
3828
|
...YieldableProto
|
|
3877
3829
|
};
|
|
@@ -3922,7 +3874,7 @@ const NoneProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(Co
|
|
|
3922
3874
|
}
|
|
3923
3875
|
});
|
|
3924
3876
|
/** @internal */
|
|
3925
|
-
const isOption$1 = (input) => hasProperty(input, TypeId$
|
|
3877
|
+
const isOption$1 = (input) => hasProperty(input, TypeId$53);
|
|
3926
3878
|
/** @internal */
|
|
3927
3879
|
const isNone$1 = (fa) => fa._tag === "None";
|
|
3928
3880
|
/** @internal */
|
|
@@ -3938,9 +3890,9 @@ const some$1 = (value) => {
|
|
|
3938
3890
|
|
|
3939
3891
|
//#endregion
|
|
3940
3892
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/result.js
|
|
3941
|
-
const TypeId$
|
|
3893
|
+
const TypeId$52 = "~effect/data/Result";
|
|
3942
3894
|
const CommonProto = {
|
|
3943
|
-
[TypeId$
|
|
3895
|
+
[TypeId$52]: {
|
|
3944
3896
|
_A: (_) => _,
|
|
3945
3897
|
_E: (_) => _
|
|
3946
3898
|
},
|
|
@@ -3994,7 +3946,7 @@ const FailureProto = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create
|
|
|
3994
3946
|
}
|
|
3995
3947
|
});
|
|
3996
3948
|
/** @internal */
|
|
3997
|
-
const isResult$1 = (input) => hasProperty(input, TypeId$
|
|
3949
|
+
const isResult$1 = (input) => hasProperty(input, TypeId$52);
|
|
3998
3950
|
/** @internal */
|
|
3999
3951
|
const isFailure$5 = (result$2) => result$2._tag === "Failure";
|
|
4000
3952
|
/** @internal */
|
|
@@ -4610,7 +4562,7 @@ const filter$5 = /* @__PURE__ */ dual(2, (self$1, predicate) => filterMap(self$1
|
|
|
4610
4562
|
* @category Equivalence
|
|
4611
4563
|
* @since 2.0.0
|
|
4612
4564
|
*/
|
|
4613
|
-
const makeEquivalence$4 = (isEquivalent) => make$
|
|
4565
|
+
const makeEquivalence$4 = (isEquivalent) => make$47((x, y) => isNone(x) ? isNone(y) : isNone(y) ? false : isEquivalent(x.value, y.value));
|
|
4614
4566
|
|
|
4615
4567
|
//#endregion
|
|
4616
4568
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Result.js
|
|
@@ -6050,7 +6002,7 @@ const ServiceProto = {
|
|
|
6050
6002
|
return self$1;
|
|
6051
6003
|
},
|
|
6052
6004
|
serviceMap(self$1) {
|
|
6053
|
-
return make$
|
|
6005
|
+
return make$46(this, self$1);
|
|
6054
6006
|
},
|
|
6055
6007
|
use(f) {
|
|
6056
6008
|
return withFiber$1((fiber$2) => f(get$7(fiber$2.services, this)));
|
|
@@ -6060,7 +6012,7 @@ const ServiceProto = {
|
|
|
6060
6012
|
}
|
|
6061
6013
|
};
|
|
6062
6014
|
const ReferenceTypeId = "~effect/ServiceMap/Reference";
|
|
6063
|
-
const TypeId$
|
|
6015
|
+
const TypeId$51 = "~effect/ServiceMap";
|
|
6064
6016
|
/**
|
|
6065
6017
|
* @example
|
|
6066
6018
|
* ```ts
|
|
@@ -6084,7 +6036,7 @@ const makeUnsafe$7 = (mapUnsafe) => {
|
|
|
6084
6036
|
};
|
|
6085
6037
|
const Proto$18 = {
|
|
6086
6038
|
...PipeInspectableProto,
|
|
6087
|
-
[TypeId$
|
|
6039
|
+
[TypeId$51]: { _Services: (_) => _ },
|
|
6088
6040
|
toJSON() {
|
|
6089
6041
|
return {
|
|
6090
6042
|
_id: "ServiceMap",
|
|
@@ -6117,7 +6069,7 @@ const Proto$18 = {
|
|
|
6117
6069
|
* @since 4.0.0
|
|
6118
6070
|
* @category Guards
|
|
6119
6071
|
*/
|
|
6120
|
-
const isServiceMap = (u) => hasProperty(u, TypeId$
|
|
6072
|
+
const isServiceMap = (u) => hasProperty(u, TypeId$51);
|
|
6121
6073
|
/**
|
|
6122
6074
|
* Checks if the provided argument is a `Reference`.
|
|
6123
6075
|
*
|
|
@@ -6172,7 +6124,7 @@ const emptyServiceMap = /* @__PURE__ */ makeUnsafe$7(/* @__PURE__ */ new Map());
|
|
|
6172
6124
|
* @since 4.0.0
|
|
6173
6125
|
* @category Constructors
|
|
6174
6126
|
*/
|
|
6175
|
-
const make$
|
|
6127
|
+
const make$46 = (key, service$2) => makeUnsafe$7(new Map([[key.key, service$2]]));
|
|
6176
6128
|
/**
|
|
6177
6129
|
* Adds a service to a given `ServiceMap`.
|
|
6178
6130
|
*
|
|
@@ -6716,7 +6668,7 @@ var ParentSpan = class extends Service()(ParentSpanKey) {};
|
|
|
6716
6668
|
* })
|
|
6717
6669
|
* ```
|
|
6718
6670
|
*/
|
|
6719
|
-
const make$
|
|
6671
|
+
const make$45 = (options) => options;
|
|
6720
6672
|
/**
|
|
6721
6673
|
* @since 2.0.0
|
|
6722
6674
|
* @category constructors
|
|
@@ -6785,7 +6737,7 @@ const TracerKey = "effect/Tracer";
|
|
|
6785
6737
|
* })
|
|
6786
6738
|
* ```
|
|
6787
6739
|
*/
|
|
6788
|
-
const Tracer = /* @__PURE__ */ Reference(TracerKey, { defaultValue: () => make$
|
|
6740
|
+
const Tracer = /* @__PURE__ */ Reference(TracerKey, { defaultValue: () => make$45({ span: (name, parent, services$2, links, startTime, kind) => new NativeSpan(name, parent, services$2, links.slice(), startTime, kind) }) });
|
|
6789
6741
|
/**
|
|
6790
6742
|
* @since 4.0.0
|
|
6791
6743
|
* @category native tracer
|
|
@@ -7685,7 +7637,7 @@ var FiberImpl = class {
|
|
|
7685
7637
|
interruptUnsafe(fiberId$2, annotations$1) {
|
|
7686
7638
|
if (this._exit) return;
|
|
7687
7639
|
let cause = causeInterrupt(fiberId$2);
|
|
7688
|
-
if (this.currentStackFrame) cause = causeAnnotate(cause, make$
|
|
7640
|
+
if (this.currentStackFrame) cause = causeAnnotate(cause, make$46(StackTraceKey, this.currentStackFrame));
|
|
7689
7641
|
if (annotations$1) cause = causeAnnotate(cause, annotations$1);
|
|
7690
7642
|
this._interruptedCause = this._interruptedCause ? causeMerge(this._interruptedCause, cause) : cause;
|
|
7691
7643
|
if (this.interruptible) this.evaluate(failCause$4(this._interruptedCause));
|
|
@@ -7793,7 +7745,7 @@ const fiberAwait = (self$1) => {
|
|
|
7793
7745
|
if (impl._exit) return succeed$4(impl._exit);
|
|
7794
7746
|
return callback$2((resume) => {
|
|
7795
7747
|
if (impl._exit) return resume(succeed$4(impl._exit));
|
|
7796
|
-
return sync$
|
|
7748
|
+
return sync$1(self$1.addObserver((exit$2) => resume(succeed$4(exit$2))));
|
|
7797
7749
|
});
|
|
7798
7750
|
};
|
|
7799
7751
|
/** @internal */
|
|
@@ -7818,7 +7770,7 @@ const fiberAwaitAll = (self$1) => callback$2((resume) => {
|
|
|
7818
7770
|
resume(succeed$4(exits));
|
|
7819
7771
|
}
|
|
7820
7772
|
loop();
|
|
7821
|
-
return sync$
|
|
7773
|
+
return sync$1(() => cancel?.());
|
|
7822
7774
|
});
|
|
7823
7775
|
/** @internal */
|
|
7824
7776
|
const fiberJoin = (self$1) => {
|
|
@@ -7826,7 +7778,7 @@ const fiberJoin = (self$1) => {
|
|
|
7826
7778
|
if (impl._exit) return impl._exit;
|
|
7827
7779
|
return callback$2((resume) => {
|
|
7828
7780
|
if (impl._exit) return resume(impl._exit);
|
|
7829
|
-
return sync$
|
|
7781
|
+
return sync$1(self$1.addObserver(resume));
|
|
7830
7782
|
});
|
|
7831
7783
|
};
|
|
7832
7784
|
/** @internal */
|
|
@@ -7876,7 +7828,7 @@ const failCause$4 = exitFailCause;
|
|
|
7876
7828
|
/** @internal */
|
|
7877
7829
|
const fail$6 = exitFail;
|
|
7878
7830
|
/** @internal */
|
|
7879
|
-
const sync$
|
|
7831
|
+
const sync$1 = /* @__PURE__ */ makePrimitive$1({
|
|
7880
7832
|
op: "Sync",
|
|
7881
7833
|
[evaluate](fiber$2) {
|
|
7882
7834
|
const value = this[args]();
|
|
@@ -8364,7 +8316,7 @@ const zip$1 = /* @__PURE__ */ dual((args$1) => isEffect$1(args$1[1]), (self$1, t
|
|
|
8364
8316
|
const zipWith$1 = /* @__PURE__ */ dual((args$1) => isEffect$1(args$1[1]), (self$1, that, f, options) => options?.concurrent ? map$7(all$1([self$1, that], { concurrency: 2 }), ([a, a2]) => internalCall(() => f(a, a2))) : flatMap$2(self$1, (a) => map$7(that, (a2) => internalCall(() => f(a, a2)))));
|
|
8365
8317
|
const filterOrFail$1 = /* @__PURE__ */ dual((args$1) => isEffect$1(args$1[0]), (self$1, predicate, orFailWith) => filterOrElse$1(self$1, predicate, orFailWith ? (a) => fail$6(orFailWith(a)) : () => fail$6(new NoSuchElementError$1())));
|
|
8366
8318
|
/** @internal */
|
|
8367
|
-
const when$1 = /* @__PURE__ */ dual(2, (self$1, condition) => flatMap$2(isEffect$1(condition) ? condition : sync$
|
|
8319
|
+
const when$1 = /* @__PURE__ */ dual(2, (self$1, condition) => flatMap$2(isEffect$1(condition) ? condition : sync$1(condition), (pass) => pass ? asSome$1(self$1) : succeedNone$1));
|
|
8368
8320
|
/** @internal */
|
|
8369
8321
|
const replicate$1 = /* @__PURE__ */ dual(2, (self$1, n) => Array.from({ length: n }, () => self$1));
|
|
8370
8322
|
/** @internal */
|
|
@@ -8447,12 +8399,12 @@ const unwrapReason$1 = /* @__PURE__ */ dual(2, (self$1, errorTag) => catchFilter
|
|
|
8447
8399
|
const mapError$4 = /* @__PURE__ */ dual(2, (self$1, f) => catch_$2(self$1, (error$1) => failSync$1(() => f(error$1))));
|
|
8448
8400
|
const mapBoth$2 = /* @__PURE__ */ dual(2, (self$1, options) => matchEffect$2(self$1, {
|
|
8449
8401
|
onFailure: (e) => failSync$1(() => options.onFailure(e)),
|
|
8450
|
-
onSuccess: (a) => sync$
|
|
8402
|
+
onSuccess: (a) => sync$1(() => options.onSuccess(a))
|
|
8451
8403
|
}));
|
|
8452
8404
|
/** @internal */
|
|
8453
8405
|
const orDie$3 = (self$1) => catch_$2(self$1, die$4);
|
|
8454
8406
|
/** @internal */
|
|
8455
|
-
const orElseSucceed$1 = /* @__PURE__ */ dual(2, (self$1, f) => catch_$2(self$1, (_) => sync$
|
|
8407
|
+
const orElseSucceed$1 = /* @__PURE__ */ dual(2, (self$1, f) => catch_$2(self$1, (_) => sync$1(f)));
|
|
8456
8408
|
/** @internal */
|
|
8457
8409
|
const eventually$1 = (self$1) => catch_$2(self$1, (_) => flatMap$2(yieldNow$1, () => eventually$1(self$1)));
|
|
8458
8410
|
/** @internal */
|
|
@@ -8487,8 +8439,8 @@ const OnSuccessAndFailureProto = /* @__PURE__ */ makePrimitiveProto({
|
|
|
8487
8439
|
});
|
|
8488
8440
|
/** @internal */
|
|
8489
8441
|
const matchCause$1 = /* @__PURE__ */ dual(2, (self$1, options) => matchCauseEffect$1(self$1, {
|
|
8490
|
-
onFailure: (cause) => sync$
|
|
8491
|
-
onSuccess: (value) => sync$
|
|
8442
|
+
onFailure: (cause) => sync$1(() => options.onFailure(cause)),
|
|
8443
|
+
onSuccess: (value) => sync$1(() => options.onSuccess(value))
|
|
8492
8444
|
}));
|
|
8493
8445
|
/** @internal */
|
|
8494
8446
|
const matchEffect$2 = /* @__PURE__ */ dual(2, (self$1, options) => matchCauseEffect$1(self$1, {
|
|
@@ -8500,8 +8452,8 @@ const matchEffect$2 = /* @__PURE__ */ dual(2, (self$1, options) => matchCauseEff
|
|
|
8500
8452
|
}));
|
|
8501
8453
|
/** @internal */
|
|
8502
8454
|
const match$4 = /* @__PURE__ */ dual(2, (self$1, options) => matchEffect$2(self$1, {
|
|
8503
|
-
onFailure: (error$1) => sync$
|
|
8504
|
-
onSuccess: (value) => sync$
|
|
8455
|
+
onFailure: (error$1) => sync$1(() => options.onFailure(error$1)),
|
|
8456
|
+
onSuccess: (value) => sync$1(() => options.onSuccess(value))
|
|
8505
8457
|
}));
|
|
8506
8458
|
/** @internal */
|
|
8507
8459
|
const matchEager$1 = /* @__PURE__ */ dual(2, (self$1, options) => {
|
|
@@ -8601,7 +8553,7 @@ const scopeCloseFinalizers = /* @__PURE__ */ fnUntraced$1(function* (self$1, fin
|
|
|
8601
8553
|
return yield* exitAsVoidAll(exits);
|
|
8602
8554
|
});
|
|
8603
8555
|
/** @internal */
|
|
8604
|
-
const scopeFork = (scope$2, finalizerStrategy) => sync$
|
|
8556
|
+
const scopeFork = (scope$2, finalizerStrategy) => sync$1(() => scopeForkUnsafe(scope$2, finalizerStrategy));
|
|
8605
8557
|
/** @internal */
|
|
8606
8558
|
const scopeForkUnsafe = (scope$2, finalizerStrategy) => {
|
|
8607
8559
|
const newScope = scopeMakeUnsafe(finalizerStrategy);
|
|
@@ -8611,7 +8563,7 @@ const scopeForkUnsafe = (scope$2, finalizerStrategy) => {
|
|
|
8611
8563
|
}
|
|
8612
8564
|
const key = {};
|
|
8613
8565
|
scopeAddFinalizerUnsafe(scope$2, key, (exit$2) => scopeClose(newScope, exit$2));
|
|
8614
|
-
scopeAddFinalizerUnsafe(newScope, key, (_) => sync$
|
|
8566
|
+
scopeAddFinalizerUnsafe(newScope, key, (_) => sync$1(() => scopeRemoveFinalizerUnsafe(scope$2, key)));
|
|
8615
8567
|
return newScope;
|
|
8616
8568
|
};
|
|
8617
8569
|
/** @internal */
|
|
@@ -8645,7 +8597,7 @@ const scopeMakeUnsafe = (finalizerStrategy = "sequential") => ({
|
|
|
8645
8597
|
});
|
|
8646
8598
|
const constScopeEmpty = { _tag: "Empty" };
|
|
8647
8599
|
/** @internal */
|
|
8648
|
-
const scopeMake = (finalizerStrategy) => sync$
|
|
8600
|
+
const scopeMake = (finalizerStrategy) => sync$1(() => scopeMakeUnsafe(finalizerStrategy));
|
|
8649
8601
|
/** @internal */
|
|
8650
8602
|
const scope$1 = /* @__PURE__ */ scopeTag.asEffect();
|
|
8651
8603
|
/** @internal */
|
|
@@ -8715,7 +8667,7 @@ const onInterrupt$1 = /* @__PURE__ */ dual(2, (self$1, finalizer) => onErrorFilt
|
|
|
8715
8667
|
/** @internal */
|
|
8716
8668
|
const acquireUseRelease$1 = (acquire, use$2, release$1) => uninterruptibleMask$1((restore) => flatMap$2(acquire, (a) => onExitInterruptible$1(restore(use$2(a)), (exit$2) => release$1(a, exit$2))));
|
|
8717
8669
|
/** @internal */
|
|
8718
|
-
const cachedInvalidateWithTTL$1 = /* @__PURE__ */ dual(2, (self$1, ttl) => sync$
|
|
8670
|
+
const cachedInvalidateWithTTL$1 = /* @__PURE__ */ dual(2, (self$1, ttl) => sync$1(() => {
|
|
8719
8671
|
const ttlMillis = toMillis(fromDurationInputUnsafe(ttl));
|
|
8720
8672
|
const isFinite$3 = Number.isFinite(ttlMillis);
|
|
8721
8673
|
const latch = makeLatchUnsafe$1(false);
|
|
@@ -8735,7 +8687,7 @@ const cachedInvalidateWithTTL$1 = /* @__PURE__ */ dual(2, (self$1, ttl) => sync$
|
|
|
8735
8687
|
exit$2 = exit_;
|
|
8736
8688
|
latch.openUnsafe();
|
|
8737
8689
|
});
|
|
8738
|
-
}), sync$
|
|
8690
|
+
}), sync$1(() => {
|
|
8739
8691
|
expiresAt = 0;
|
|
8740
8692
|
latch.closeUnsafe();
|
|
8741
8693
|
exit$2 = void 0;
|
|
@@ -9046,7 +8998,7 @@ var Semaphore = class {
|
|
|
9046
8998
|
resume(succeed$4(n));
|
|
9047
8999
|
};
|
|
9048
9000
|
this.waiters.add(observer);
|
|
9049
|
-
return sync$
|
|
9001
|
+
return sync$1(() => {
|
|
9050
9002
|
this.waiters.delete(observer);
|
|
9051
9003
|
});
|
|
9052
9004
|
}
|
|
@@ -9086,7 +9038,7 @@ var Semaphore = class {
|
|
|
9086
9038
|
/** @internal */
|
|
9087
9039
|
const makeSemaphoreUnsafe$1 = (permits) => new Semaphore(permits);
|
|
9088
9040
|
/** @internal */
|
|
9089
|
-
const makeSemaphore$1 = (permits) => sync$
|
|
9041
|
+
const makeSemaphore$1 = (permits) => sync$1(() => makeSemaphoreUnsafe$1(permits));
|
|
9090
9042
|
const succeedTrue = /* @__PURE__ */ succeed$4(true);
|
|
9091
9043
|
const succeedFalse = /* @__PURE__ */ succeed$4(false);
|
|
9092
9044
|
var Latch = class {
|
|
@@ -9123,7 +9075,7 @@ var Latch = class {
|
|
|
9123
9075
|
await = /* @__PURE__ */ callback$2((resume) => {
|
|
9124
9076
|
if (this.isOpen) return resume(void_$3);
|
|
9125
9077
|
this.waiters.push(resume);
|
|
9126
|
-
return sync$
|
|
9078
|
+
return sync$1(() => {
|
|
9127
9079
|
const index = this.waiters.indexOf(resume);
|
|
9128
9080
|
if (index !== -1) this.waiters.splice(index, 1);
|
|
9129
9081
|
});
|
|
@@ -9133,13 +9085,13 @@ var Latch = class {
|
|
|
9133
9085
|
this.isOpen = false;
|
|
9134
9086
|
return true;
|
|
9135
9087
|
}
|
|
9136
|
-
close = /* @__PURE__ */ sync$
|
|
9088
|
+
close = /* @__PURE__ */ sync$1(() => this.closeUnsafe());
|
|
9137
9089
|
whenOpen = (self$1) => andThen$1(this.await, self$1);
|
|
9138
9090
|
};
|
|
9139
9091
|
/** @internal */
|
|
9140
9092
|
const makeLatchUnsafe$1 = (open$1) => new Latch(open$1 ?? false);
|
|
9141
9093
|
/** @internal */
|
|
9142
|
-
const makeLatch$1 = (open$1) => sync$
|
|
9094
|
+
const makeLatch$1 = (open$1) => sync$1(() => makeLatchUnsafe$1(open$1));
|
|
9143
9095
|
/** @internal */
|
|
9144
9096
|
const tracer$2 = /* @__PURE__ */ withFiber$1((fiber$2) => succeed$4(fiber$2.getRef(Tracer)));
|
|
9145
9097
|
/** @internal */
|
|
@@ -9238,7 +9190,7 @@ const linkSpans$1 = /* @__PURE__ */ dual((args$1) => isEffect$1(args$1[0]), (sel
|
|
|
9238
9190
|
return updateService$1(self$1, TracerSpanLinks, (current) => [...current, ...links]);
|
|
9239
9191
|
});
|
|
9240
9192
|
/** @internal */
|
|
9241
|
-
const endSpan = (span, exit$2, clock, timingEnabled) => sync$
|
|
9193
|
+
const endSpan = (span, exit$2, clock, timingEnabled) => sync$1(() => {
|
|
9242
9194
|
if (span.status._tag === "Ended") return;
|
|
9243
9195
|
span.end(timingEnabled ? clock.currentTimeNanosUnsafe() : bigint0, exit$2);
|
|
9244
9196
|
});
|
|
@@ -9310,18 +9262,18 @@ var ClockImpl = class {
|
|
|
9310
9262
|
currentTimeMillisUnsafe() {
|
|
9311
9263
|
return Date.now();
|
|
9312
9264
|
}
|
|
9313
|
-
currentTimeMillis = /* @__PURE__ */ sync$
|
|
9265
|
+
currentTimeMillis = /* @__PURE__ */ sync$1(() => this.currentTimeMillisUnsafe());
|
|
9314
9266
|
currentTimeNanosUnsafe() {
|
|
9315
9267
|
return processOrPerformanceNow();
|
|
9316
9268
|
}
|
|
9317
|
-
currentTimeNanos = /* @__PURE__ */ sync$
|
|
9269
|
+
currentTimeNanos = /* @__PURE__ */ sync$1(() => this.currentTimeNanosUnsafe());
|
|
9318
9270
|
sleep(duration) {
|
|
9319
9271
|
const millis$1 = toMillis(duration);
|
|
9320
9272
|
if (millis$1 <= 0) return yieldNow$1;
|
|
9321
9273
|
return callback$2((resume) => {
|
|
9322
9274
|
if (millis$1 > MAX_TIMER_MILLIS) return;
|
|
9323
9275
|
const handle = setTimeout(() => resume(void_$3), millis$1);
|
|
9324
|
-
return sync$
|
|
9276
|
+
return sync$1(() => clearTimeout(handle));
|
|
9325
9277
|
});
|
|
9326
9278
|
}
|
|
9327
9279
|
};
|
|
@@ -9961,12 +9913,12 @@ const makeUnsafe$6 = () => {
|
|
|
9961
9913
|
* @since 2.0.0
|
|
9962
9914
|
* @category constructors
|
|
9963
9915
|
*/
|
|
9964
|
-
const make$
|
|
9916
|
+
const make$44 = () => sync$1(() => makeUnsafe$6());
|
|
9965
9917
|
const _await = (self$1) => callback$2((resume) => {
|
|
9966
9918
|
if (self$1.effect) return resume(self$1.effect);
|
|
9967
9919
|
self$1.resumes ??= [];
|
|
9968
9920
|
self$1.resumes.push(resume);
|
|
9969
|
-
return sync$
|
|
9921
|
+
return sync$1(() => {
|
|
9970
9922
|
const index = self$1.resumes.indexOf(resume);
|
|
9971
9923
|
self$1.resumes.splice(index, 1);
|
|
9972
9924
|
});
|
|
@@ -9992,7 +9944,7 @@ const _await = (self$1) => callback$2((resume) => {
|
|
|
9992
9944
|
* @since 2.0.0
|
|
9993
9945
|
* @category utils
|
|
9994
9946
|
*/
|
|
9995
|
-
const completeWith = /* @__PURE__ */ dual(2, (self$1, effect$1) => sync$
|
|
9947
|
+
const completeWith = /* @__PURE__ */ dual(2, (self$1, effect$1) => sync$1(() => doneUnsafe$1(self$1, effect$1)));
|
|
9996
9948
|
/**
|
|
9997
9949
|
* Exits the `Deferred` with the specified `Exit` value, which will be
|
|
9998
9950
|
* propagated to all fibers waiting on the value of the `Deferred`.
|
|
@@ -10036,7 +9988,7 @@ const done$1 = completeWith;
|
|
|
10036
9988
|
* @since 2.0.0
|
|
10037
9989
|
* @category getters
|
|
10038
9990
|
*/
|
|
10039
|
-
const isDone$1 = (self$1) => sync$
|
|
9991
|
+
const isDone$1 = (self$1) => sync$1(() => isDoneUnsafe(self$1));
|
|
10040
9992
|
/**
|
|
10041
9993
|
* Returns `true` if this `Deferred` has already been completed with a value or
|
|
10042
9994
|
* an error, `false` otherwise.
|
|
@@ -10198,7 +10150,7 @@ const Scope = scopeTag;
|
|
|
10198
10150
|
* @category constructors
|
|
10199
10151
|
* @since 2.0.0
|
|
10200
10152
|
*/
|
|
10201
|
-
const make$
|
|
10153
|
+
const make$43 = scopeMake;
|
|
10202
10154
|
/**
|
|
10203
10155
|
* Creates a new `Scope` synchronously without wrapping it in an `Effect`.
|
|
10204
10156
|
* This is useful when you need a scope immediately but should be used with caution
|
|
@@ -10408,7 +10360,7 @@ const use$1 = scopeUse;
|
|
|
10408
10360
|
|
|
10409
10361
|
//#endregion
|
|
10410
10362
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Layer.js
|
|
10411
|
-
const TypeId$
|
|
10363
|
+
const TypeId$50 = "~effect/Layer";
|
|
10412
10364
|
const MemoMapTypeId = "~effect/Layer/MemoMap";
|
|
10413
10365
|
/**
|
|
10414
10366
|
* Returns `true` if the specified value is a `Layer`, `false` otherwise.
|
|
@@ -10433,9 +10385,9 @@ const MemoMapTypeId = "~effect/Layer/MemoMap";
|
|
|
10433
10385
|
* @since 2.0.0
|
|
10434
10386
|
* @category getters
|
|
10435
10387
|
*/
|
|
10436
|
-
const isLayer = (u) => hasProperty(u, TypeId$
|
|
10388
|
+
const isLayer = (u) => hasProperty(u, TypeId$50);
|
|
10437
10389
|
const LayerProto = {
|
|
10438
|
-
[TypeId$
|
|
10390
|
+
[TypeId$50]: {
|
|
10439
10391
|
_ROut: identity,
|
|
10440
10392
|
_E: identity,
|
|
10441
10393
|
_RIn: identity
|
|
@@ -10515,9 +10467,9 @@ var MemoMapImpl = class {
|
|
|
10515
10467
|
return MemoMapTypeId;
|
|
10516
10468
|
}
|
|
10517
10469
|
map = /* @__PURE__ */ new Map();
|
|
10518
|
-
getOrElseMemoize(layer$
|
|
10519
|
-
if (this.map.has(layer$
|
|
10520
|
-
const entry$1 = this.map.get(layer$
|
|
10470
|
+
getOrElseMemoize(layer$14, scope$2, build$1) {
|
|
10471
|
+
if (this.map.has(layer$14)) {
|
|
10472
|
+
const entry$1 = this.map.get(layer$14);
|
|
10521
10473
|
entry$1.observers++;
|
|
10522
10474
|
return andThen$1(scopeAddFinalizerExit(scope$2, (exit$2) => entry$1.finalizer(exit$2)), entry$1.effect);
|
|
10523
10475
|
}
|
|
@@ -10529,13 +10481,13 @@ var MemoMapImpl = class {
|
|
|
10529
10481
|
finalizer: (exit$2) => suspend$3(() => {
|
|
10530
10482
|
entry.observers--;
|
|
10531
10483
|
if (entry.observers === 0) {
|
|
10532
|
-
this.map.delete(layer$
|
|
10484
|
+
this.map.delete(layer$14);
|
|
10533
10485
|
return close(layerScope, exit$2);
|
|
10534
10486
|
}
|
|
10535
10487
|
return void_$3;
|
|
10536
10488
|
})
|
|
10537
10489
|
};
|
|
10538
|
-
this.map.set(layer$
|
|
10490
|
+
this.map.set(layer$14, entry);
|
|
10539
10491
|
return scopeAddFinalizerExit(scope$2, entry.finalizer).pipe(flatMap$2(() => build$1(this, layerScope)), onExit$3((exit$2) => {
|
|
10540
10492
|
entry.effect = exit$2;
|
|
10541
10493
|
return done$1(deferred, exit$2);
|
|
@@ -10751,8 +10703,8 @@ const buildWithScope = /* @__PURE__ */ dual(2, (self$1, scope$2) => suspend$3(()
|
|
|
10751
10703
|
* @category constructors
|
|
10752
10704
|
*/
|
|
10753
10705
|
const succeed$1 = function() {
|
|
10754
|
-
if (arguments.length === 1) return (resource) => succeedServices(make$
|
|
10755
|
-
return succeedServices(make$
|
|
10706
|
+
if (arguments.length === 1) return (resource) => succeedServices(make$46(arguments[0], resource));
|
|
10707
|
+
return succeedServices(make$46(arguments[0], arguments[1]));
|
|
10756
10708
|
};
|
|
10757
10709
|
/**
|
|
10758
10710
|
* Constructs a layer from the specified value, which must return one or more
|
|
@@ -10790,58 +10742,6 @@ const succeed$1 = function() {
|
|
|
10790
10742
|
*/
|
|
10791
10743
|
const succeedServices = (services$2) => fromBuildUnsafe(constant(succeed$4(services$2)));
|
|
10792
10744
|
/**
|
|
10793
|
-
* Lazily constructs a layer from the specified value.
|
|
10794
|
-
*
|
|
10795
|
-
* This is a lazy version of `succeed` where the service value is computed
|
|
10796
|
-
* synchronously only when the layer is built.
|
|
10797
|
-
*
|
|
10798
|
-
* @example
|
|
10799
|
-
* ```ts
|
|
10800
|
-
* import { Effect, Layer, ServiceMap } from "effect"
|
|
10801
|
-
*
|
|
10802
|
-
* class Database extends ServiceMap.Service<Database, {
|
|
10803
|
-
* readonly query: (sql: string) => Effect.Effect<string>
|
|
10804
|
-
* }>()("Database") {}
|
|
10805
|
-
*
|
|
10806
|
-
* const layer = Layer.sync(Database)(() => ({
|
|
10807
|
-
* query: (sql: string) => Effect.succeed(`Query: ${sql}`)
|
|
10808
|
-
* }))
|
|
10809
|
-
* ```
|
|
10810
|
-
*
|
|
10811
|
-
* @since 2.0.0
|
|
10812
|
-
* @category constructors
|
|
10813
|
-
*/
|
|
10814
|
-
const sync$1 = function() {
|
|
10815
|
-
if (arguments.length === 1) return (evaluate$1) => syncServices(() => make$47(arguments[0], evaluate$1()));
|
|
10816
|
-
return syncServices(() => make$47(arguments[0], arguments[1]()));
|
|
10817
|
-
};
|
|
10818
|
-
/**
|
|
10819
|
-
* Lazily constructs a layer from the specified value, which must return one or more
|
|
10820
|
-
* services.
|
|
10821
|
-
*
|
|
10822
|
-
* This is a lazy version of `succeedServices` where the ServiceMap is computed
|
|
10823
|
-
* synchronously only when the layer is built.
|
|
10824
|
-
*
|
|
10825
|
-
* @example
|
|
10826
|
-
* ```ts
|
|
10827
|
-
* import { Effect, Layer, ServiceMap } from "effect"
|
|
10828
|
-
*
|
|
10829
|
-
* class Database extends ServiceMap.Service<Database, {
|
|
10830
|
-
* readonly query: (sql: string) => Effect.Effect<string>
|
|
10831
|
-
* }>()("Database") {}
|
|
10832
|
-
*
|
|
10833
|
-
* const layer = Layer.syncServices(() =>
|
|
10834
|
-
* ServiceMap.make(Database, {
|
|
10835
|
-
* query: (sql: string) => Effect.succeed(`Query: ${sql}`)
|
|
10836
|
-
* })
|
|
10837
|
-
* )
|
|
10838
|
-
* ```
|
|
10839
|
-
*
|
|
10840
|
-
* @since 2.0.0
|
|
10841
|
-
* @category constructors
|
|
10842
|
-
*/
|
|
10843
|
-
const syncServices = (evaluate$1) => fromBuildMemo(constant(sync$2(evaluate$1)));
|
|
10844
|
-
/**
|
|
10845
10745
|
* Constructs a layer from the specified scoped effect.
|
|
10846
10746
|
*
|
|
10847
10747
|
* This allows you to create a Layer from an Effect that produces a service.
|
|
@@ -10871,7 +10771,7 @@ const effect = function() {
|
|
|
10871
10771
|
const effectOrFn = arguments[1];
|
|
10872
10772
|
return typeof effectOrFn === "function" ? (...args$1) => effectImpl(arguments[0], suspend$3(() => effectOrFn(...args$1))) : effectImpl(arguments[0], effectOrFn);
|
|
10873
10773
|
};
|
|
10874
|
-
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$46(service$2, value)));
|
|
10875
10775
|
/**
|
|
10876
10776
|
* Constructs a layer from the specified scoped effect, which must return one
|
|
10877
10777
|
* or more services.
|
|
@@ -10951,7 +10851,7 @@ const unwrap$3 = (self$1) => {
|
|
|
10951
10851
|
};
|
|
10952
10852
|
const mergeAllEffect = (layers, memoMap, scope$2) => {
|
|
10953
10853
|
const parentScope = forkUnsafe(scope$2, "parallel");
|
|
10954
|
-
return forEach$2(layers, (layer$
|
|
10854
|
+
return forEach$2(layers, (layer$14) => layer$14.build(memoMap, forkUnsafe(parentScope, "sequential")), { concurrency: layers.length }).pipe(map$7((services$2) => mergeAll$1(...services$2)));
|
|
10955
10855
|
};
|
|
10956
10856
|
/**
|
|
10957
10857
|
* Combines all the provided layers concurrently, creating a new layer with merged input, error, and output types.
|
|
@@ -11256,9 +11156,9 @@ const fresh = (self$1) => fromBuildUnsafe((_, scope$2) => self$1.build(makeMemoM
|
|
|
11256
11156
|
* @since 3.16.0
|
|
11257
11157
|
* @category Type IDs
|
|
11258
11158
|
*/
|
|
11259
|
-
const TypeId$
|
|
11159
|
+
const TypeId$49 = "~effect/ExecutionPlan";
|
|
11260
11160
|
const Proto$17 = {
|
|
11261
|
-
[TypeId$
|
|
11161
|
+
[TypeId$49]: TypeId$49,
|
|
11262
11162
|
get withRequirements() {
|
|
11263
11163
|
const self$1 = this;
|
|
11264
11164
|
return servicesWith$1((services$2) => succeed$4(makeProto$1(self$1.steps.map((step) => ({
|
|
@@ -11440,7 +11340,7 @@ const TaggedError = TaggedError$1;
|
|
|
11440
11340
|
/**
|
|
11441
11341
|
* @since 2.0.0
|
|
11442
11342
|
*/
|
|
11443
|
-
const TypeId$
|
|
11343
|
+
const TypeId$48 = CauseTypeId;
|
|
11444
11344
|
/**
|
|
11445
11345
|
* @since 2.0.0
|
|
11446
11346
|
*/
|
|
@@ -12049,11 +11949,11 @@ const currentTimeNanos = currentTimeNanos$1;
|
|
|
12049
11949
|
//#endregion
|
|
12050
11950
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/dateTime.js
|
|
12051
11951
|
/** @internal */
|
|
12052
|
-
const TypeId$
|
|
11952
|
+
const TypeId$47 = "~effect/time/DateTime";
|
|
12053
11953
|
/** @internal */
|
|
12054
11954
|
const TimeZoneTypeId = "~effect/time/DateTime/TimeZone";
|
|
12055
11955
|
const Proto$16 = {
|
|
12056
|
-
[TypeId$
|
|
11956
|
+
[TypeId$47]: TypeId$47,
|
|
12057
11957
|
pipe() {
|
|
12058
11958
|
return pipeArguments(this, arguments);
|
|
12059
11959
|
},
|
|
@@ -12159,7 +12059,7 @@ const makeZonedProto = (epochMillis, zone, partsUtc) => {
|
|
|
12159
12059
|
return self$1;
|
|
12160
12060
|
};
|
|
12161
12061
|
/** @internal */
|
|
12162
|
-
const isDateTime$1 = (u) => hasProperty(u, TypeId$
|
|
12062
|
+
const isDateTime$1 = (u) => hasProperty(u, TypeId$47);
|
|
12163
12063
|
const isDateTimeArgs = (args$1) => isDateTime$1(args$1[0]);
|
|
12164
12064
|
/** @internal */
|
|
12165
12065
|
const isTimeZone$1 = (u) => hasProperty(u, TimeZoneTypeId);
|
|
@@ -12172,9 +12072,9 @@ const isUtc$1 = (self$1) => self$1._tag === "Utc";
|
|
|
12172
12072
|
/** @internal */
|
|
12173
12073
|
const isZoned$1 = (self$1) => self$1._tag === "Zoned";
|
|
12174
12074
|
/** @internal */
|
|
12175
|
-
const Equivalence$3 = /* @__PURE__ */ make$
|
|
12075
|
+
const Equivalence$3 = /* @__PURE__ */ make$47((a, b) => a.epochMillis === b.epochMillis);
|
|
12176
12076
|
/** @internal */
|
|
12177
|
-
const Order$3 = /* @__PURE__ */ make$
|
|
12077
|
+
const Order$3 = /* @__PURE__ */ make$49((self$1, that) => self$1.epochMillis < that.epochMillis ? -1 : self$1.epochMillis > that.epochMillis ? 1 : 0);
|
|
12178
12078
|
/** @internal */
|
|
12179
12079
|
const clamp$1 = /* @__PURE__ */ clamp$2(Order$3);
|
|
12180
12080
|
const makeUtc = (epochMillis) => {
|
|
@@ -12227,7 +12127,7 @@ const makeZonedUnsafe$1 = (input, options) => {
|
|
|
12227
12127
|
/** @internal */
|
|
12228
12128
|
const makeZoned$1 = /* @__PURE__ */ liftThrowable(makeZonedUnsafe$1);
|
|
12229
12129
|
/** @internal */
|
|
12230
|
-
const make$
|
|
12130
|
+
const make$42 = /* @__PURE__ */ liftThrowable(makeUnsafe$4);
|
|
12231
12131
|
const zonedStringRegExp = /^(.{17,35})\[(.+)\]$/;
|
|
12232
12132
|
/** @internal */
|
|
12233
12133
|
const makeZonedFromString$1 = (input) => {
|
|
@@ -12946,7 +12846,7 @@ const matchEffect$1 = /* @__PURE__ */ dual(2, (self$1, options) => matchCauseEff
|
|
|
12946
12846
|
|
|
12947
12847
|
//#endregion
|
|
12948
12848
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Schedule.js
|
|
12949
|
-
const TypeId$
|
|
12849
|
+
const TypeId$46 = "~effect/Schedule";
|
|
12950
12850
|
/**
|
|
12951
12851
|
* @since 4.0.0
|
|
12952
12852
|
* @category Metadata
|
|
@@ -12962,7 +12862,7 @@ const CurrentMetadata = /* @__PURE__ */ Reference("effect/Schedule/CurrentMetada
|
|
|
12962
12862
|
elapsedSincePrevious: 0
|
|
12963
12863
|
}) });
|
|
12964
12864
|
const ScheduleProto = {
|
|
12965
|
-
[TypeId$
|
|
12865
|
+
[TypeId$46]: {
|
|
12966
12866
|
_Out: identity,
|
|
12967
12867
|
_In: identity,
|
|
12968
12868
|
_Env: identity
|
|
@@ -12990,7 +12890,7 @@ const ScheduleProto = {
|
|
|
12990
12890
|
* @since 2.0.0
|
|
12991
12891
|
* @category guards
|
|
12992
12892
|
*/
|
|
12993
|
-
const isSchedule = (u) => hasProperty(u, TypeId$
|
|
12893
|
+
const isSchedule = (u) => hasProperty(u, TypeId$46);
|
|
12994
12894
|
/**
|
|
12995
12895
|
* Creates a Schedule from a step function that returns a Pull.
|
|
12996
12896
|
*
|
|
@@ -13198,7 +13098,7 @@ const passthrough$2 = (self$1) => fromStep(map$7(toStep(self$1), (step) => (now$
|
|
|
13198
13098
|
* @category constructors
|
|
13199
13099
|
* @since 2.0.0
|
|
13200
13100
|
*/
|
|
13201
|
-
const recurs = (times
|
|
13101
|
+
const recurs = (times) => while_(forever$1, ({ attempt }) => attempt <= times);
|
|
13202
13102
|
/**
|
|
13203
13103
|
* Returns a schedule that recurs continuously, each repetition spaced the
|
|
13204
13104
|
* specified duration from the last run.
|
|
@@ -13295,7 +13195,7 @@ const forever$1 = /* @__PURE__ */ spaced(zero);
|
|
|
13295
13195
|
|
|
13296
13196
|
//#endregion
|
|
13297
13197
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/layer.js
|
|
13298
|
-
const provideLayer = (self$1, layer$
|
|
13198
|
+
const provideLayer = (self$1, layer$14) => scopedWith$1((scope$2) => flatMap$2(buildWithScope(layer$14, scope$2), (context) => provideServices$1(self$1, context)));
|
|
13299
13199
|
/** @internal */
|
|
13300
13200
|
const provide$2 = /* @__PURE__ */ dual(2, (self$1, source) => isServiceMap(source) ? provideServices$1(self$1, source) : provideLayer(self$1, Array.isArray(source) ? mergeAll(...source) : source));
|
|
13301
13201
|
|
|
@@ -13363,7 +13263,7 @@ const withExecutionPlan$1 = /* @__PURE__ */ dual(2, (self$1, plan$1) => suspend$
|
|
|
13363
13263
|
attempt: 0,
|
|
13364
13264
|
stepIndex: 0
|
|
13365
13265
|
};
|
|
13366
|
-
const provideMeta = provideServiceEffect$1(CurrentMetadata$1, sync$
|
|
13266
|
+
const provideMeta = provideServiceEffect$1(CurrentMetadata$1, sync$1(() => {
|
|
13367
13267
|
meta = {
|
|
13368
13268
|
attempt: meta.attempt + 1,
|
|
13369
13269
|
stepIndex: i
|
|
@@ -13415,7 +13315,7 @@ const scheduleOnce = /* @__PURE__ */ recurs(1);
|
|
|
13415
13315
|
|
|
13416
13316
|
//#endregion
|
|
13417
13317
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Request.js
|
|
13418
|
-
const TypeId$
|
|
13318
|
+
const TypeId$45 = "~effect/Request";
|
|
13419
13319
|
const requestVariance = /* @__PURE__ */ byReferenceUnsafe({
|
|
13420
13320
|
_E: (_) => _,
|
|
13421
13321
|
_A: (_) => _,
|
|
@@ -13426,7 +13326,7 @@ const requestVariance = /* @__PURE__ */ byReferenceUnsafe({
|
|
|
13426
13326
|
*/
|
|
13427
13327
|
const RequestPrototype = {
|
|
13428
13328
|
...StructuralProto,
|
|
13429
|
-
[TypeId$
|
|
13329
|
+
[TypeId$45]: requestVariance
|
|
13430
13330
|
};
|
|
13431
13331
|
/**
|
|
13432
13332
|
* @since 2.0.0
|
|
@@ -13527,7 +13427,7 @@ const removeEntryUnsafe = (resolver, entry) => {
|
|
|
13527
13427
|
batch.fiber?.interruptUnsafe();
|
|
13528
13428
|
}
|
|
13529
13429
|
};
|
|
13530
|
-
const maybeRemoveEntry = (resolver, entry) => sync$
|
|
13430
|
+
const maybeRemoveEntry = (resolver, entry) => sync$1(() => removeEntryUnsafe(resolver, entry));
|
|
13531
13431
|
function runBatch(batch) {
|
|
13532
13432
|
if (!batch.map.has(batch.key)) return void_$3;
|
|
13533
13433
|
batch.map.delete(batch.key);
|
|
@@ -13536,7 +13436,7 @@ function runBatch(batch) {
|
|
|
13536
13436
|
|
|
13537
13437
|
//#endregion
|
|
13538
13438
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Effect.js
|
|
13539
|
-
const TypeId$
|
|
13439
|
+
const TypeId$44 = EffectTypeId;
|
|
13540
13440
|
/**
|
|
13541
13441
|
* Tests if a value is an `Effect`.
|
|
13542
13442
|
*
|
|
@@ -13551,7 +13451,7 @@ const TypeId$45 = EffectTypeId;
|
|
|
13551
13451
|
* @since 2.0.0
|
|
13552
13452
|
* @category guards
|
|
13553
13453
|
*/
|
|
13554
|
-
const isEffect = (u) => typeof u === "object" && u !== null && TypeId$
|
|
13454
|
+
const isEffect = (u) => typeof u === "object" && u !== null && TypeId$44 in u;
|
|
13555
13455
|
/**
|
|
13556
13456
|
* Combines multiple effects into one, returning results based on the input
|
|
13557
13457
|
* structure.
|
|
@@ -14098,7 +13998,7 @@ const suspend$2 = suspend$3;
|
|
|
14098
13998
|
* @since 2.0.0
|
|
14099
13999
|
* @category Creating Effects
|
|
14100
14000
|
*/
|
|
14101
|
-
const sync = sync$
|
|
14001
|
+
const sync = sync$1;
|
|
14102
14002
|
const void_$1 = void_$3;
|
|
14103
14003
|
const undefined_$1 = undefined_$2;
|
|
14104
14004
|
/**
|
|
@@ -19520,7 +19420,7 @@ const fnUntracedEager = fnUntracedEager$1;
|
|
|
19520
19420
|
|
|
19521
19421
|
//#endregion
|
|
19522
19422
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/DateTime.js
|
|
19523
|
-
TypeId$
|
|
19423
|
+
TypeId$47;
|
|
19524
19424
|
TimeZoneTypeId;
|
|
19525
19425
|
/**
|
|
19526
19426
|
* @since 3.6.0
|
|
@@ -19753,7 +19653,7 @@ const makeZoned = makeZoned$1;
|
|
|
19753
19653
|
* DateTime.make("2024-01-01")
|
|
19754
19654
|
* ```
|
|
19755
19655
|
*/
|
|
19756
|
-
const make$
|
|
19656
|
+
const make$41 = make$42;
|
|
19757
19657
|
/**
|
|
19758
19658
|
* Create a `DateTime.Zoned` from a string.
|
|
19759
19659
|
*
|
|
@@ -21572,15 +21472,15 @@ const encoder$1 = /* @__PURE__ */ new TextEncoder();
|
|
|
21572
21472
|
|
|
21573
21473
|
//#endregion
|
|
21574
21474
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/SchemaIssue.js
|
|
21575
|
-
const TypeId$
|
|
21475
|
+
const TypeId$43 = "~effect/SchemaIssue/Issue";
|
|
21576
21476
|
/**
|
|
21577
21477
|
* @since 4.0.0
|
|
21578
21478
|
*/
|
|
21579
21479
|
function isIssue(u) {
|
|
21580
|
-
return hasProperty(u, TypeId$
|
|
21480
|
+
return hasProperty(u, TypeId$43);
|
|
21581
21481
|
}
|
|
21582
21482
|
var Base$1 = class {
|
|
21583
|
-
[TypeId$
|
|
21483
|
+
[TypeId$43] = TypeId$43;
|
|
21584
21484
|
toString() {
|
|
21585
21485
|
return defaultFormatter$1(this);
|
|
21586
21486
|
}
|
|
@@ -21853,7 +21753,7 @@ var OneOf = class extends Base$1 {
|
|
|
21853
21753
|
}
|
|
21854
21754
|
};
|
|
21855
21755
|
/** @internal */
|
|
21856
|
-
function make$
|
|
21756
|
+
function make$40(input, out) {
|
|
21857
21757
|
if (isIssue(out)) return out;
|
|
21858
21758
|
if (out === void 0) return;
|
|
21859
21759
|
if (typeof out === "boolean") return out ? void 0 : new InvalidValue$1(some(input));
|
|
@@ -22122,7 +22022,7 @@ function decodeBase64() {
|
|
|
22122
22022
|
*/
|
|
22123
22023
|
function dateTimeUtcFromInput() {
|
|
22124
22024
|
return transformOrFail$1((input) => {
|
|
22125
|
-
const dt = make$
|
|
22025
|
+
const dt = make$41(input);
|
|
22126
22026
|
return dt ? succeed(toUtc(dt)) : fail$3(new InvalidValue$1(some(input), { message: "Invalid DateTime input" }));
|
|
22127
22027
|
});
|
|
22128
22028
|
}
|
|
@@ -22157,13 +22057,13 @@ function collectBracketPathEntries(isLeaf) {
|
|
|
22157
22057
|
/**
|
|
22158
22058
|
* @since 4.0.0
|
|
22159
22059
|
*/
|
|
22160
|
-
const TypeId$
|
|
22060
|
+
const TypeId$42 = "~effect/SchemaTransformation/Transformation";
|
|
22161
22061
|
/**
|
|
22162
22062
|
* @category model
|
|
22163
22063
|
* @since 4.0.0
|
|
22164
22064
|
*/
|
|
22165
22065
|
var Transformation = class Transformation {
|
|
22166
|
-
[TypeId$
|
|
22066
|
+
[TypeId$42] = TypeId$42;
|
|
22167
22067
|
_tag = "Transformation";
|
|
22168
22068
|
decode;
|
|
22169
22069
|
encode;
|
|
@@ -22182,12 +22082,12 @@ var Transformation = class Transformation {
|
|
|
22182
22082
|
* @since 4.0.0
|
|
22183
22083
|
*/
|
|
22184
22084
|
function isTransformation(u) {
|
|
22185
|
-
return hasProperty(u, TypeId$
|
|
22085
|
+
return hasProperty(u, TypeId$42);
|
|
22186
22086
|
}
|
|
22187
22087
|
/**
|
|
22188
22088
|
* @since 4.0.0
|
|
22189
22089
|
*/
|
|
22190
|
-
const make$
|
|
22090
|
+
const make$39 = (options) => {
|
|
22191
22091
|
if (isTransformation(options)) return options;
|
|
22192
22092
|
return new Transformation(options.decode, options.encode);
|
|
22193
22093
|
};
|
|
@@ -22277,7 +22177,7 @@ function makeGuard(tag$1) {
|
|
|
22277
22177
|
* @since 4.0.0
|
|
22278
22178
|
*/
|
|
22279
22179
|
function isAST(u) {
|
|
22280
|
-
return hasProperty(u, TypeId$
|
|
22180
|
+
return hasProperty(u, TypeId$41) && u[TypeId$41] === TypeId$41;
|
|
22281
22181
|
}
|
|
22282
22182
|
/**
|
|
22283
22183
|
* @category Guard
|
|
@@ -22340,13 +22240,13 @@ var Context = class {
|
|
|
22340
22240
|
this.annotations = annotations$1;
|
|
22341
22241
|
}
|
|
22342
22242
|
};
|
|
22343
|
-
const TypeId$
|
|
22243
|
+
const TypeId$41 = "~effect/Schema";
|
|
22344
22244
|
/**
|
|
22345
22245
|
* @category model
|
|
22346
22246
|
* @since 4.0.0
|
|
22347
22247
|
*/
|
|
22348
22248
|
var Base = class {
|
|
22349
|
-
[TypeId$
|
|
22249
|
+
[TypeId$41] = TypeId$41;
|
|
22350
22250
|
annotations;
|
|
22351
22251
|
checks;
|
|
22352
22252
|
encoding;
|
|
@@ -23319,7 +23219,7 @@ var FilterGroup = class FilterGroup extends Class$3 {
|
|
|
23319
23219
|
};
|
|
23320
23220
|
/** @internal */
|
|
23321
23221
|
function makeFilter$1(filter$6, annotations$1, aborted = false) {
|
|
23322
|
-
return new Filter((input, ast, options) => make$
|
|
23222
|
+
return new Filter((input, ast, options) => make$40(input, filter$6(input, ast, options)), annotations$1, aborted);
|
|
23323
23223
|
}
|
|
23324
23224
|
/** @internal */
|
|
23325
23225
|
function makeRefinedByGuard$1(is$2, annotations$1) {
|
|
@@ -24096,9 +23996,9 @@ function escapeToken(token) {
|
|
|
24096
23996
|
//#endregion
|
|
24097
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
|
|
24098
23998
|
/** @internal */
|
|
24099
|
-
const TypeId$
|
|
23999
|
+
const TypeId$40 = "~effect/Schema/Schema";
|
|
24100
24000
|
const SchemaProto = {
|
|
24101
|
-
[TypeId$
|
|
24001
|
+
[TypeId$40]: TypeId$40,
|
|
24102
24002
|
pipe() {
|
|
24103
24003
|
return pipeArguments(this, arguments);
|
|
24104
24004
|
},
|
|
@@ -24113,11 +24013,11 @@ const SchemaProto = {
|
|
|
24113
24013
|
}
|
|
24114
24014
|
};
|
|
24115
24015
|
/** @internal */
|
|
24116
|
-
function make$
|
|
24016
|
+
function make$38(ast, options) {
|
|
24117
24017
|
const self$1 = Object.create(SchemaProto);
|
|
24118
24018
|
if (options) Object.assign(self$1, options);
|
|
24119
24019
|
self$1.ast = ast;
|
|
24120
|
-
self$1.rebuild = (ast$1) => make$
|
|
24020
|
+
self$1.rebuild = (ast$1) => make$38(ast$1, options);
|
|
24121
24021
|
self$1.makeUnsafe = makeUnsafe$2(self$1);
|
|
24122
24022
|
return self$1;
|
|
24123
24023
|
}
|
|
@@ -24137,7 +24037,7 @@ function toCodecJsonBase(ast) {
|
|
|
24137
24037
|
case "Declaration": {
|
|
24138
24038
|
const getLink = ast.annotations?.toCodecJson ?? ast.annotations?.toCodec;
|
|
24139
24039
|
if (isFunction(getLink)) {
|
|
24140
|
-
const link$2 = getLink(isDeclaration(ast) ? ast.typeParameters.map((tp) => make$
|
|
24040
|
+
const link$2 = getLink(isDeclaration(ast) ? ast.typeParameters.map((tp) => make$38(toEncoded(tp))) : []);
|
|
24141
24041
|
const to = toCodecJson$1(link$2.to);
|
|
24142
24042
|
return replaceEncoding(ast, to === link$2.to ? [link$2] : [new Link(to, link$2.transformation)]);
|
|
24143
24043
|
}
|
|
@@ -24315,7 +24215,7 @@ function fromASTs(asts) {
|
|
|
24315
24215
|
function getEncodedSchema(last$1) {
|
|
24316
24216
|
const getLink = last$1.annotations?.toCodecJson ?? last$1.annotations?.toCodec;
|
|
24317
24217
|
if (isFunction(getLink)) {
|
|
24318
|
-
const link$2 = getLink(last$1.typeParameters.map((tp) => make$
|
|
24218
|
+
const link$2 = getLink(last$1.typeParameters.map((tp) => make$38(toEncoded(tp))));
|
|
24319
24219
|
return replaceEncoding(last$1, [link$2]);
|
|
24320
24220
|
}
|
|
24321
24221
|
return null_;
|
|
@@ -24819,7 +24719,7 @@ const redactedRegistry = /* @__PURE__ */ new WeakMap();
|
|
|
24819
24719
|
*
|
|
24820
24720
|
* @since 3.3.0
|
|
24821
24721
|
*/
|
|
24822
|
-
const TypeId$
|
|
24722
|
+
const TypeId$39 = "~effect/data/Redacted";
|
|
24823
24723
|
/**
|
|
24824
24724
|
* @example
|
|
24825
24725
|
* ```ts
|
|
@@ -24835,7 +24735,7 @@ const TypeId$40 = "~effect/data/Redacted";
|
|
|
24835
24735
|
* @since 3.3.0
|
|
24836
24736
|
* @category refinements
|
|
24837
24737
|
*/
|
|
24838
|
-
const isRedacted = (u) => hasProperty(u, TypeId$
|
|
24738
|
+
const isRedacted = (u) => hasProperty(u, TypeId$39);
|
|
24839
24739
|
/**
|
|
24840
24740
|
* This function creates a `Redacted<A>` instance from a given value `A`,
|
|
24841
24741
|
* securely hiding its content.
|
|
@@ -24850,14 +24750,14 @@ const isRedacted = (u) => hasProperty(u, TypeId$40);
|
|
|
24850
24750
|
* @since 3.3.0
|
|
24851
24751
|
* @category constructors
|
|
24852
24752
|
*/
|
|
24853
|
-
const make$
|
|
24753
|
+
const make$37 = (value, options) => {
|
|
24854
24754
|
const redacted = Object.create(Proto$15);
|
|
24855
24755
|
if (options?.label) redacted.label = options.label;
|
|
24856
24756
|
redactedRegistry.set(redacted, value);
|
|
24857
24757
|
return redacted;
|
|
24858
24758
|
};
|
|
24859
24759
|
const Proto$15 = {
|
|
24860
|
-
[TypeId$
|
|
24760
|
+
[TypeId$39]: { _A: (_) => _ },
|
|
24861
24761
|
label: void 0,
|
|
24862
24762
|
...PipeInspectableProto,
|
|
24863
24763
|
toJSON() {
|
|
@@ -24876,7 +24776,7 @@ const Proto$15 = {
|
|
|
24876
24776
|
|
|
24877
24777
|
//#endregion
|
|
24878
24778
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Schema.js
|
|
24879
|
-
const TypeId$
|
|
24779
|
+
const TypeId$38 = TypeId$40;
|
|
24880
24780
|
/**
|
|
24881
24781
|
* An API for creating schemas for parametric types.
|
|
24882
24782
|
*
|
|
@@ -24887,7 +24787,7 @@ const TypeId$39 = TypeId$41;
|
|
|
24887
24787
|
*/
|
|
24888
24788
|
function declareConstructor() {
|
|
24889
24789
|
return (typeParameters, run$6, annotations$1) => {
|
|
24890
|
-
return make$
|
|
24790
|
+
return make$36(new Declaration(typeParameters.map(getAST), (typeParameters$1) => run$6(typeParameters$1.map((ast) => make$36(ast))), annotations$1));
|
|
24891
24791
|
};
|
|
24892
24792
|
}
|
|
24893
24793
|
/**
|
|
@@ -25117,7 +25017,7 @@ const encodeSync = encodeSync$1;
|
|
|
25117
25017
|
* @category Constructors
|
|
25118
25018
|
* @since 4.0.0
|
|
25119
25019
|
*/
|
|
25120
|
-
const make$
|
|
25020
|
+
const make$36 = make$38;
|
|
25121
25021
|
/**
|
|
25122
25022
|
* Tests if a value is a `Schema`.
|
|
25123
25023
|
*
|
|
@@ -25125,7 +25025,7 @@ const make$37 = make$39;
|
|
|
25125
25025
|
* @since 4.0.0
|
|
25126
25026
|
*/
|
|
25127
25027
|
function isSchema(u) {
|
|
25128
|
-
return hasProperty(u, TypeId$
|
|
25028
|
+
return hasProperty(u, TypeId$38) && u[TypeId$38] === TypeId$38;
|
|
25129
25029
|
}
|
|
25130
25030
|
/**
|
|
25131
25031
|
* Creates an exact optional key schema for struct fields. Unlike `optional`,
|
|
@@ -25148,7 +25048,7 @@ function isSchema(u) {
|
|
|
25148
25048
|
*
|
|
25149
25049
|
* @since 4.0.0
|
|
25150
25050
|
*/
|
|
25151
|
-
const optionalKey = /* @__PURE__ */ lambda((schema) => make$
|
|
25051
|
+
const optionalKey = /* @__PURE__ */ lambda((schema) => make$36(optionalKey$1(schema.ast), { schema }));
|
|
25152
25052
|
/**
|
|
25153
25053
|
* Creates an optional schema field that allows both the specified type and
|
|
25154
25054
|
* `undefined`.
|
|
@@ -25183,7 +25083,7 @@ const optional$2 = /* @__PURE__ */ lambda((self$1) => optionalKey(UndefinedOr(se
|
|
|
25183
25083
|
* @since 4.0.0
|
|
25184
25084
|
*/
|
|
25185
25085
|
function Literal(literal) {
|
|
25186
|
-
const out = make$
|
|
25086
|
+
const out = make$36(new Literal$1(literal), {
|
|
25187
25087
|
literal,
|
|
25188
25088
|
transform(to) {
|
|
25189
25089
|
return out.pipe(decodeTo(Literal(to), {
|
|
@@ -25197,29 +25097,29 @@ function Literal(literal) {
|
|
|
25197
25097
|
/**
|
|
25198
25098
|
* @since 4.0.0
|
|
25199
25099
|
*/
|
|
25200
|
-
const Never = /* @__PURE__ */ make$
|
|
25100
|
+
const Never = /* @__PURE__ */ make$36(never$3);
|
|
25201
25101
|
/**
|
|
25202
25102
|
* @since 4.0.0
|
|
25203
25103
|
*/
|
|
25204
|
-
const Any = /* @__PURE__ */ make$
|
|
25104
|
+
const Any = /* @__PURE__ */ make$36(any);
|
|
25205
25105
|
/**
|
|
25206
25106
|
* @since 4.0.0
|
|
25207
25107
|
*/
|
|
25208
|
-
const Unknown = /* @__PURE__ */ make$
|
|
25108
|
+
const Unknown = /* @__PURE__ */ make$36(unknown);
|
|
25209
25109
|
/**
|
|
25210
25110
|
* @since 4.0.0
|
|
25211
25111
|
*/
|
|
25212
|
-
const Null = /* @__PURE__ */ make$
|
|
25112
|
+
const Null = /* @__PURE__ */ make$36(null_);
|
|
25213
25113
|
/**
|
|
25214
25114
|
* @since 4.0.0
|
|
25215
25115
|
*/
|
|
25216
|
-
const Undefined = /* @__PURE__ */ make$
|
|
25116
|
+
const Undefined = /* @__PURE__ */ make$36(undefined_);
|
|
25217
25117
|
/**
|
|
25218
25118
|
* A schema for all strings.
|
|
25219
25119
|
*
|
|
25220
25120
|
* @since 4.0.0
|
|
25221
25121
|
*/
|
|
25222
|
-
const String$1 = /* @__PURE__ */ make$
|
|
25122
|
+
const String$1 = /* @__PURE__ */ make$36(string$4);
|
|
25223
25123
|
/**
|
|
25224
25124
|
* A schema for all numbers, including `NaN`, `Infinity`, and `-Infinity`.
|
|
25225
25125
|
*
|
|
@@ -25230,40 +25130,40 @@ const String$1 = /* @__PURE__ */ make$37(string$4);
|
|
|
25230
25130
|
*
|
|
25231
25131
|
* @since 4.0.0
|
|
25232
25132
|
*/
|
|
25233
|
-
const Number$1 = /* @__PURE__ */ make$
|
|
25133
|
+
const Number$1 = /* @__PURE__ */ make$36(number);
|
|
25234
25134
|
/**
|
|
25235
25135
|
* A schema for all booleans.
|
|
25236
25136
|
*
|
|
25237
25137
|
* @category Boolean
|
|
25238
25138
|
* @since 4.0.0
|
|
25239
25139
|
*/
|
|
25240
|
-
const Boolean$2 = /* @__PURE__ */ make$
|
|
25140
|
+
const Boolean$2 = /* @__PURE__ */ make$36(boolean$3);
|
|
25241
25141
|
/**
|
|
25242
25142
|
* A schema for all symbols.
|
|
25243
25143
|
*
|
|
25244
25144
|
* @since 4.0.0
|
|
25245
25145
|
*/
|
|
25246
|
-
const Symbol$1 = /* @__PURE__ */ make$
|
|
25146
|
+
const Symbol$1 = /* @__PURE__ */ make$36(symbol);
|
|
25247
25147
|
/**
|
|
25248
25148
|
* A schema for all bigints.
|
|
25249
25149
|
*
|
|
25250
25150
|
* @since 4.0.0
|
|
25251
25151
|
*/
|
|
25252
|
-
const BigInt$1 = /* @__PURE__ */ make$
|
|
25152
|
+
const BigInt$1 = /* @__PURE__ */ make$36(bigInt);
|
|
25253
25153
|
/**
|
|
25254
25154
|
* A schema for the `void` type.
|
|
25255
25155
|
*
|
|
25256
25156
|
* @since 4.0.0
|
|
25257
25157
|
*/
|
|
25258
|
-
const Void = /* @__PURE__ */ make$
|
|
25158
|
+
const Void = /* @__PURE__ */ make$36(void_);
|
|
25259
25159
|
/**
|
|
25260
25160
|
* A schema for the `object` type.
|
|
25261
25161
|
*
|
|
25262
25162
|
* @since 4.0.0
|
|
25263
25163
|
*/
|
|
25264
|
-
const ObjectKeyword = /* @__PURE__ */ make$
|
|
25164
|
+
const ObjectKeyword = /* @__PURE__ */ make$36(objectKeyword);
|
|
25265
25165
|
function makeStruct(ast, fields) {
|
|
25266
|
-
return make$
|
|
25166
|
+
return make$36(ast, {
|
|
25267
25167
|
fields,
|
|
25268
25168
|
mapFields(f, options) {
|
|
25269
25169
|
const fields$1 = f(this.fields);
|
|
@@ -25282,13 +25182,13 @@ function Struct(fields) {
|
|
|
25282
25182
|
*/
|
|
25283
25183
|
function Record(key, value, options) {
|
|
25284
25184
|
const keyValueCombiner = options?.keyValueCombiner?.decode || options?.keyValueCombiner?.encode ? new KeyValueCombiner(options.keyValueCombiner.decode, options.keyValueCombiner.encode) : void 0;
|
|
25285
|
-
return make$
|
|
25185
|
+
return make$36(record(key.ast, value.ast, keyValueCombiner), {
|
|
25286
25186
|
key,
|
|
25287
25187
|
value
|
|
25288
25188
|
});
|
|
25289
25189
|
}
|
|
25290
25190
|
function makeTuple(ast, elements) {
|
|
25291
|
-
return make$
|
|
25191
|
+
return make$36(ast, {
|
|
25292
25192
|
elements,
|
|
25293
25193
|
mapElements(f, options) {
|
|
25294
25194
|
const elements$1 = f(this.elements);
|
|
@@ -25307,14 +25207,14 @@ function Tuple(elements) {
|
|
|
25307
25207
|
* @category Constructors
|
|
25308
25208
|
* @since 4.0.0
|
|
25309
25209
|
*/
|
|
25310
|
-
const Array$1 = /* @__PURE__ */ lambda((schema) => make$
|
|
25210
|
+
const Array$1 = /* @__PURE__ */ lambda((schema) => make$36(new Arrays(false, [], [schema.ast]), { schema }));
|
|
25311
25211
|
/**
|
|
25312
25212
|
* @category Constructors
|
|
25313
25213
|
* @since 4.0.0
|
|
25314
25214
|
*/
|
|
25315
|
-
const NonEmptyArray = /* @__PURE__ */ lambda((schema) => make$
|
|
25215
|
+
const NonEmptyArray = /* @__PURE__ */ lambda((schema) => make$36(new Arrays(false, [schema.ast], [schema.ast]), { schema }));
|
|
25316
25216
|
function makeUnion(ast, members) {
|
|
25317
|
-
return make$
|
|
25217
|
+
return make$36(ast, {
|
|
25318
25218
|
members,
|
|
25319
25219
|
mapMembers(f, options) {
|
|
25320
25220
|
const members$1 = f(this.members);
|
|
@@ -25343,7 +25243,7 @@ function Union(members, options) {
|
|
|
25343
25243
|
*/
|
|
25344
25244
|
function Literals(literals) {
|
|
25345
25245
|
const members = literals.map(Literal);
|
|
25346
|
-
return make$
|
|
25246
|
+
return make$36(union(members, "anyOf", void 0), {
|
|
25347
25247
|
literals,
|
|
25348
25248
|
members,
|
|
25349
25249
|
mapMembers(f) {
|
|
@@ -25369,7 +25269,7 @@ const NullOr = /* @__PURE__ */ lambda((self$1) => Union([self$1, Null]));
|
|
|
25369
25269
|
const UndefinedOr = /* @__PURE__ */ lambda((self$1) => Union([self$1, Undefined]));
|
|
25370
25270
|
function decodeTo(to, transformation) {
|
|
25371
25271
|
return (from) => {
|
|
25372
|
-
return make$
|
|
25272
|
+
return make$36(decodeTo$1(from.ast, to.ast, transformation ? make$39(transformation) : passthrough()), {
|
|
25373
25273
|
from,
|
|
25374
25274
|
to
|
|
25375
25275
|
});
|
|
@@ -25380,7 +25280,7 @@ function decodeTo(to, transformation) {
|
|
|
25380
25280
|
*/
|
|
25381
25281
|
function withConstructorDefault(defaultValue) {
|
|
25382
25282
|
return (schema) => {
|
|
25383
|
-
return make$
|
|
25283
|
+
return make$36(withConstructorDefault$1(schema.ast, defaultValue), { schema });
|
|
25384
25284
|
};
|
|
25385
25285
|
}
|
|
25386
25286
|
/**
|
|
@@ -25412,7 +25312,7 @@ function instanceOf(constructor, annotations$1) {
|
|
|
25412
25312
|
*/
|
|
25413
25313
|
function link$1() {
|
|
25414
25314
|
return (encodeTo, transformation) => {
|
|
25415
|
-
return new Link(encodeTo.ast, make$
|
|
25315
|
+
return new Link(encodeTo.ast, make$39(transformation));
|
|
25416
25316
|
};
|
|
25417
25317
|
}
|
|
25418
25318
|
/**
|
|
@@ -26100,7 +26000,7 @@ const isNotUndefined = isNotUndefined$1;
|
|
|
26100
26000
|
* @since 4.0.0
|
|
26101
26001
|
*/
|
|
26102
26002
|
function Option(value) {
|
|
26103
|
-
return make$
|
|
26003
|
+
return make$36(declareConstructor()([value], ([value$1]) => (input, ast, options) => {
|
|
26104
26004
|
if (isOption(input)) {
|
|
26105
26005
|
if (isNone(input)) return succeedNone;
|
|
26106
26006
|
return mapBothEager(decodeUnknownEffect$1(value$1)(input.value, options), {
|
|
@@ -26690,7 +26590,7 @@ function makeClass(Inherited, identifier$1, struct$1, annotations$1) {
|
|
|
26690
26590
|
toString() {
|
|
26691
26591
|
return `${identifier$1}(${format$2({ ...this })})`;
|
|
26692
26592
|
}
|
|
26693
|
-
static [TypeId$
|
|
26593
|
+
static [TypeId$38] = TypeId$38;
|
|
26694
26594
|
get [ClassTypeId$1]() {
|
|
26695
26595
|
return ClassTypeId$1;
|
|
26696
26596
|
}
|
|
@@ -26743,7 +26643,7 @@ function getClassSchemaFactory(from, identifier$1, annotations$1) {
|
|
|
26743
26643
|
return (self$1) => {
|
|
26744
26644
|
if (memo === void 0) {
|
|
26745
26645
|
const transformation = getClassTransformation(self$1);
|
|
26746
|
-
const to = make$
|
|
26646
|
+
const to = make$36(new Declaration([from.ast], () => (input, ast) => {
|
|
26747
26647
|
return input instanceof self$1 || hasProperty(input, getClassTypeId(identifier$1)) ? succeed(input) : fail$3(new InvalidType(ast, some(input)));
|
|
26748
26648
|
}, {
|
|
26749
26649
|
identifier: identifier$1,
|
|
@@ -26806,11 +26706,11 @@ function toJsonSchemaDocument(schema, options) {
|
|
|
26806
26706
|
* @since 4.0.0
|
|
26807
26707
|
*/
|
|
26808
26708
|
function toCodecJson(schema) {
|
|
26809
|
-
return make$
|
|
26709
|
+
return make$36(toCodecJson$1(schema.ast));
|
|
26810
26710
|
}
|
|
26811
26711
|
function toCodecStringTree(schema, options) {
|
|
26812
|
-
if (options?.keepDeclarations === true) return make$
|
|
26813
|
-
else return make$
|
|
26712
|
+
if (options?.keepDeclarations === true) return make$36(toCodecEnsureArray(serializerStringTreeKeepDeclarations(schema.ast)));
|
|
26713
|
+
else return make$36(toCodecEnsureArray(serializerStringTree(schema.ast)));
|
|
26814
26714
|
}
|
|
26815
26715
|
function getStringTreePriority(ast) {
|
|
26816
26716
|
switch (ast._tag) {
|
|
@@ -26831,7 +26731,7 @@ function serializerTree(ast, recur$1, onMissingAnnotation) {
|
|
|
26831
26731
|
case "Declaration": {
|
|
26832
26732
|
const getLink = ast.annotations?.toCodecJson ?? ast.annotations?.toCodec;
|
|
26833
26733
|
if (isFunction(getLink)) {
|
|
26834
|
-
const link$2 = getLink(isDeclaration(ast) ? ast.typeParameters.map((tp) => make$
|
|
26734
|
+
const link$2 = getLink(isDeclaration(ast) ? ast.typeParameters.map((tp) => make$36(recur$1(toEncoded(tp)))) : []);
|
|
26835
26735
|
const to = recur$1(link$2.to);
|
|
26836
26736
|
return replaceEncoding(ast, to === link$2.to ? [link$2] : [new Link(to, link$2.transformation)]);
|
|
26837
26737
|
}
|
|
@@ -26901,7 +26801,7 @@ function onSerializerEnsureArray(ast) {
|
|
|
26901
26801
|
* @since 4.0.0
|
|
26902
26802
|
* @category type id
|
|
26903
26803
|
*/
|
|
26904
|
-
const TypeId$
|
|
26804
|
+
const TypeId$37 = "~effect/cli/CliError";
|
|
26905
26805
|
/**
|
|
26906
26806
|
* Type guard to check if a value is a CLI error.
|
|
26907
26807
|
*
|
|
@@ -26931,7 +26831,7 @@ const TypeId$38 = "~effect/cli/CliError";
|
|
|
26931
26831
|
* @since 4.0.0
|
|
26932
26832
|
* @category guards
|
|
26933
26833
|
*/
|
|
26934
|
-
const isCliError = (u) => hasProperty(u, TypeId$
|
|
26834
|
+
const isCliError = (u) => hasProperty(u, TypeId$37);
|
|
26935
26835
|
/**
|
|
26936
26836
|
* Error thrown when an unrecognized option is encountered.
|
|
26937
26837
|
*
|
|
@@ -26964,7 +26864,7 @@ const isCliError = (u) => hasProperty(u, TypeId$38);
|
|
|
26964
26864
|
* @since 4.0.0
|
|
26965
26865
|
* @category models
|
|
26966
26866
|
*/
|
|
26967
|
-
var UnrecognizedOption = class extends ErrorClass(`${TypeId$
|
|
26867
|
+
var UnrecognizedOption = class extends ErrorClass(`${TypeId$37}/UnrecognizedOption`)({
|
|
26968
26868
|
_tag: /* @__PURE__ */ tag("UnrecognizedOption"),
|
|
26969
26869
|
option: String$1,
|
|
26970
26870
|
command: /* @__PURE__ */ optional$2(/* @__PURE__ */ Array$1(String$1)),
|
|
@@ -26973,7 +26873,7 @@ var UnrecognizedOption = class extends ErrorClass(`${TypeId$38}/UnrecognizedOpti
|
|
|
26973
26873
|
/**
|
|
26974
26874
|
* @since 4.0.0
|
|
26975
26875
|
*/
|
|
26976
|
-
[TypeId$
|
|
26876
|
+
[TypeId$37] = TypeId$37;
|
|
26977
26877
|
/**
|
|
26978
26878
|
* @since 4.0.0
|
|
26979
26879
|
*/
|
|
@@ -27003,7 +26903,7 @@ var UnrecognizedOption = class extends ErrorClass(`${TypeId$38}/UnrecognizedOpti
|
|
|
27003
26903
|
* @since 4.0.0
|
|
27004
26904
|
* @category models
|
|
27005
26905
|
*/
|
|
27006
|
-
var DuplicateOption = class extends ErrorClass(`${TypeId$
|
|
26906
|
+
var DuplicateOption = class extends ErrorClass(`${TypeId$37}/DuplicateOption`)({
|
|
27007
26907
|
_tag: /* @__PURE__ */ tag("DuplicateOption"),
|
|
27008
26908
|
option: String$1,
|
|
27009
26909
|
parentCommand: String$1,
|
|
@@ -27012,7 +26912,7 @@ var DuplicateOption = class extends ErrorClass(`${TypeId$38}/DuplicateOption`)({
|
|
|
27012
26912
|
/**
|
|
27013
26913
|
* @since 4.0.0
|
|
27014
26914
|
*/
|
|
27015
|
-
[TypeId$
|
|
26915
|
+
[TypeId$37] = TypeId$37;
|
|
27016
26916
|
/**
|
|
27017
26917
|
* @since 4.0.0
|
|
27018
26918
|
*/
|
|
@@ -27049,14 +26949,14 @@ var DuplicateOption = class extends ErrorClass(`${TypeId$38}/DuplicateOption`)({
|
|
|
27049
26949
|
* @since 4.0.0
|
|
27050
26950
|
* @category models
|
|
27051
26951
|
*/
|
|
27052
|
-
var MissingOption = class extends ErrorClass(`${TypeId$
|
|
26952
|
+
var MissingOption = class extends ErrorClass(`${TypeId$37}/MissingOption`)({
|
|
27053
26953
|
_tag: /* @__PURE__ */ tag("MissingOption"),
|
|
27054
26954
|
option: String$1
|
|
27055
26955
|
}) {
|
|
27056
26956
|
/**
|
|
27057
26957
|
* @since 4.0.0
|
|
27058
26958
|
*/
|
|
27059
|
-
[TypeId$
|
|
26959
|
+
[TypeId$37] = TypeId$37;
|
|
27060
26960
|
/**
|
|
27061
26961
|
* @since 4.0.0
|
|
27062
26962
|
*/
|
|
@@ -27092,14 +26992,14 @@ var MissingOption = class extends ErrorClass(`${TypeId$38}/MissingOption`)({
|
|
|
27092
26992
|
* @since 4.0.0
|
|
27093
26993
|
* @category models
|
|
27094
26994
|
*/
|
|
27095
|
-
var MissingArgument = class extends ErrorClass(`${TypeId$
|
|
26995
|
+
var MissingArgument = class extends ErrorClass(`${TypeId$37}/MissingArgument`)({
|
|
27096
26996
|
_tag: /* @__PURE__ */ tag("MissingArgument"),
|
|
27097
26997
|
argument: String$1
|
|
27098
26998
|
}) {
|
|
27099
26999
|
/**
|
|
27100
27000
|
* @since 4.0.0
|
|
27101
27001
|
*/
|
|
27102
|
-
[TypeId$
|
|
27002
|
+
[TypeId$37] = TypeId$37;
|
|
27103
27003
|
/**
|
|
27104
27004
|
* @since 4.0.0
|
|
27105
27005
|
*/
|
|
@@ -27140,7 +27040,7 @@ var MissingArgument = class extends ErrorClass(`${TypeId$38}/MissingArgument`)({
|
|
|
27140
27040
|
* @since 4.0.0
|
|
27141
27041
|
* @category models
|
|
27142
27042
|
*/
|
|
27143
|
-
var InvalidValue = class extends ErrorClass(`${TypeId$
|
|
27043
|
+
var InvalidValue = class extends ErrorClass(`${TypeId$37}/InvalidValue`)({
|
|
27144
27044
|
_tag: /* @__PURE__ */ tag("InvalidValue"),
|
|
27145
27045
|
option: String$1,
|
|
27146
27046
|
value: String$1,
|
|
@@ -27150,7 +27050,7 @@ var InvalidValue = class extends ErrorClass(`${TypeId$38}/InvalidValue`)({
|
|
|
27150
27050
|
/**
|
|
27151
27051
|
* @since 4.0.0
|
|
27152
27052
|
*/
|
|
27153
|
-
[TypeId$
|
|
27053
|
+
[TypeId$37] = TypeId$37;
|
|
27154
27054
|
/**
|
|
27155
27055
|
* @since 4.0.0
|
|
27156
27056
|
*/
|
|
@@ -27194,7 +27094,7 @@ var InvalidValue = class extends ErrorClass(`${TypeId$38}/InvalidValue`)({
|
|
|
27194
27094
|
* @since 4.0.0
|
|
27195
27095
|
* @category models
|
|
27196
27096
|
*/
|
|
27197
|
-
var UnknownSubcommand = class extends ErrorClass(`${TypeId$
|
|
27097
|
+
var UnknownSubcommand = class extends ErrorClass(`${TypeId$37}/UnknownSubcommand`)({
|
|
27198
27098
|
_tag: /* @__PURE__ */ tag("UnknownSubcommand"),
|
|
27199
27099
|
subcommand: String$1,
|
|
27200
27100
|
parent: /* @__PURE__ */ optional$2(/* @__PURE__ */ Array$1(String$1)),
|
|
@@ -27203,7 +27103,7 @@ var UnknownSubcommand = class extends ErrorClass(`${TypeId$38}/UnknownSubcommand
|
|
|
27203
27103
|
/**
|
|
27204
27104
|
* @since 4.0.0
|
|
27205
27105
|
*/
|
|
27206
|
-
[TypeId$
|
|
27106
|
+
[TypeId$37] = TypeId$37;
|
|
27207
27107
|
/**
|
|
27208
27108
|
* @since 4.0.0
|
|
27209
27109
|
*/
|
|
@@ -27250,14 +27150,14 @@ var UnknownSubcommand = class extends ErrorClass(`${TypeId$38}/UnknownSubcommand
|
|
|
27250
27150
|
* @since 4.0.0
|
|
27251
27151
|
* @category models
|
|
27252
27152
|
*/
|
|
27253
|
-
var ShowHelp = class extends ErrorClass(`${TypeId$
|
|
27153
|
+
var ShowHelp = class extends ErrorClass(`${TypeId$37}/ShowHelp`)({
|
|
27254
27154
|
_tag: /* @__PURE__ */ tag("ShowHelp"),
|
|
27255
27155
|
commandPath: /* @__PURE__ */ Array$1(String$1)
|
|
27256
27156
|
}) {
|
|
27257
27157
|
/**
|
|
27258
27158
|
* @since 4.0.0
|
|
27259
27159
|
*/
|
|
27260
|
-
[TypeId$
|
|
27160
|
+
[TypeId$37] = TypeId$37;
|
|
27261
27161
|
/**
|
|
27262
27162
|
* @since 4.0.0
|
|
27263
27163
|
*/
|
|
@@ -27300,14 +27200,14 @@ var ShowHelp = class extends ErrorClass(`${TypeId$38}/ShowHelp`)({
|
|
|
27300
27200
|
* @since 4.0.0
|
|
27301
27201
|
* @category models
|
|
27302
27202
|
*/
|
|
27303
|
-
var UserError = class extends ErrorClass(`${TypeId$
|
|
27203
|
+
var UserError = class extends ErrorClass(`${TypeId$37}/UserError`)({
|
|
27304
27204
|
_tag: /* @__PURE__ */ tag("UserError"),
|
|
27305
27205
|
cause: Defect
|
|
27306
27206
|
}) {
|
|
27307
27207
|
/**
|
|
27308
27208
|
* @since 4.0.0
|
|
27309
27209
|
*/
|
|
27310
|
-
[TypeId$
|
|
27210
|
+
[TypeId$37] = TypeId$37;
|
|
27311
27211
|
};
|
|
27312
27212
|
|
|
27313
27213
|
//#endregion
|
|
@@ -37925,7 +37825,7 @@ function nominal() {
|
|
|
37925
37825
|
/**
|
|
37926
37826
|
* @since 4.0.0
|
|
37927
37827
|
*/
|
|
37928
|
-
const TypeId$
|
|
37828
|
+
const TypeId$36 = "~effect/platform/PlatformError";
|
|
37929
37829
|
/**
|
|
37930
37830
|
* @since 4.0.0
|
|
37931
37831
|
* @category Models
|
|
@@ -37934,7 +37834,7 @@ var BadArgument = class extends TaggedError("PlatformError") {
|
|
|
37934
37834
|
/**
|
|
37935
37835
|
* @since 4.0.0
|
|
37936
37836
|
*/
|
|
37937
|
-
[TypeId$
|
|
37837
|
+
[TypeId$36] = TypeId$36;
|
|
37938
37838
|
/**
|
|
37939
37839
|
* @since 4.0.0
|
|
37940
37840
|
*/
|
|
@@ -37954,7 +37854,7 @@ var SystemError = class extends TaggedError("PlatformError") {
|
|
|
37954
37854
|
/**
|
|
37955
37855
|
* @since 4.0.0
|
|
37956
37856
|
*/
|
|
37957
|
-
[TypeId$
|
|
37857
|
+
[TypeId$36] = TypeId$36;
|
|
37958
37858
|
/**
|
|
37959
37859
|
* @since 4.0.0
|
|
37960
37860
|
*/
|
|
@@ -38271,7 +38171,7 @@ const Empty$2 = /* @__PURE__ */ Symbol.for("effect/MutableList/Empty");
|
|
|
38271
38171
|
* @since 4.0.0
|
|
38272
38172
|
* @category constructors
|
|
38273
38173
|
*/
|
|
38274
|
-
const make$
|
|
38174
|
+
const make$35 = () => ({
|
|
38275
38175
|
head: void 0,
|
|
38276
38176
|
tail: void 0,
|
|
38277
38177
|
length: 0
|
|
@@ -38575,9 +38475,9 @@ const take$1 = (self$1) => {
|
|
|
38575
38475
|
|
|
38576
38476
|
//#endregion
|
|
38577
38477
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/MutableRef.js
|
|
38578
|
-
const TypeId$
|
|
38478
|
+
const TypeId$35 = "~effect/MutableRef";
|
|
38579
38479
|
const MutableRefProto = {
|
|
38580
|
-
[TypeId$
|
|
38480
|
+
[TypeId$35]: TypeId$35,
|
|
38581
38481
|
...PipeInspectableProto,
|
|
38582
38482
|
toJSON() {
|
|
38583
38483
|
return {
|
|
@@ -38610,7 +38510,7 @@ const MutableRefProto = {
|
|
|
38610
38510
|
* @since 2.0.0
|
|
38611
38511
|
* @category constructors
|
|
38612
38512
|
*/
|
|
38613
|
-
const make$
|
|
38513
|
+
const make$34 = (value) => {
|
|
38614
38514
|
const ref = Object.create(MutableRefProto);
|
|
38615
38515
|
ref.current = value;
|
|
38616
38516
|
return ref;
|
|
@@ -38652,14 +38552,14 @@ const make$35 = (value) => {
|
|
|
38652
38552
|
*
|
|
38653
38553
|
* @since 3.8.0
|
|
38654
38554
|
*/
|
|
38655
|
-
const TypeId$
|
|
38555
|
+
const TypeId$34 = "~effect/Queue";
|
|
38656
38556
|
const DequeueTypeId = "~effect/Queue/Dequeue";
|
|
38657
38557
|
const variance$1 = {
|
|
38658
38558
|
_A: identity,
|
|
38659
38559
|
_E: identity
|
|
38660
38560
|
};
|
|
38661
38561
|
const QueueProto = {
|
|
38662
|
-
[TypeId$
|
|
38562
|
+
[TypeId$34]: variance$1,
|
|
38663
38563
|
[DequeueTypeId]: variance$1,
|
|
38664
38564
|
...PipeInspectableProto,
|
|
38665
38565
|
toJSON() {
|
|
@@ -38704,12 +38604,12 @@ const QueueProto = {
|
|
|
38704
38604
|
* })
|
|
38705
38605
|
* ```
|
|
38706
38606
|
*/
|
|
38707
|
-
const make$
|
|
38607
|
+
const make$33 = (options) => withFiber$1((fiber$2) => {
|
|
38708
38608
|
const self$1 = Object.create(QueueProto);
|
|
38709
38609
|
self$1.scheduler = fiber$2.currentScheduler;
|
|
38710
38610
|
self$1.capacity = options?.capacity ?? Number.POSITIVE_INFINITY;
|
|
38711
38611
|
self$1.strategy = options?.strategy ?? "suspend";
|
|
38712
|
-
self$1.messages = make$
|
|
38612
|
+
self$1.messages = make$35();
|
|
38713
38613
|
self$1.scheduleRunning = false;
|
|
38714
38614
|
self$1.state = {
|
|
38715
38615
|
_tag: "Open",
|
|
@@ -38747,7 +38647,7 @@ const make$34 = (options) => withFiber$1((fiber$2) => {
|
|
|
38747
38647
|
* @since 2.0.0
|
|
38748
38648
|
* @category constructors
|
|
38749
38649
|
*/
|
|
38750
|
-
const bounded = (capacity) => make$
|
|
38650
|
+
const bounded = (capacity) => make$33({ capacity });
|
|
38751
38651
|
/**
|
|
38752
38652
|
* Add a message to the queue. Returns `false` if the queue is done.
|
|
38753
38653
|
*
|
|
@@ -39050,7 +38950,7 @@ const endUnsafe = (self$1) => doneUnsafe(self$1, exitVoid);
|
|
|
39050
38950
|
* @category completion
|
|
39051
38951
|
* @since 4.0.0
|
|
39052
38952
|
*/
|
|
39053
|
-
const done = (self$1, exit$2) => sync$
|
|
38953
|
+
const done = (self$1, exit$2) => sync$1(() => doneUnsafe(self$1, exit$2));
|
|
39054
38954
|
/**
|
|
39055
38955
|
* Signal that the queue is done synchronously with a specific exit value. If the queue is already done, `false` is
|
|
39056
38956
|
* returned.
|
|
@@ -39125,7 +39025,7 @@ const doneUnsafe = (self$1, exit$2) => {
|
|
|
39125
39025
|
* @category completion
|
|
39126
39026
|
* @since 4.0.0
|
|
39127
39027
|
*/
|
|
39128
|
-
const shutdown = (self$1) => sync$
|
|
39028
|
+
const shutdown = (self$1) => sync$1(() => {
|
|
39129
39029
|
if (self$1.state._tag === "Done") return true;
|
|
39130
39030
|
clear$1(self$1.messages);
|
|
39131
39031
|
const offers = self$1.state.offers;
|
|
@@ -39472,7 +39372,7 @@ const offerRemainingSingle = (self$1, message) => {
|
|
|
39472
39372
|
resume
|
|
39473
39373
|
};
|
|
39474
39374
|
self$1.state.offers.add(entry);
|
|
39475
|
-
return sync$
|
|
39375
|
+
return sync$1(() => {
|
|
39476
39376
|
if (self$1.state._tag === "Open") self$1.state.offers.delete(entry);
|
|
39477
39377
|
});
|
|
39478
39378
|
});
|
|
@@ -39487,7 +39387,7 @@ const offerRemainingArray = (self$1, remaining) => {
|
|
|
39487
39387
|
resume
|
|
39488
39388
|
};
|
|
39489
39389
|
self$1.state.offers.add(entry);
|
|
39490
|
-
return sync$
|
|
39390
|
+
return sync$1(() => {
|
|
39491
39391
|
if (self$1.state._tag === "Open") self$1.state.offers.delete(entry);
|
|
39492
39392
|
});
|
|
39493
39393
|
});
|
|
@@ -39522,7 +39422,7 @@ const releaseCapacity = (self$1) => {
|
|
|
39522
39422
|
const awaitTake = (self$1) => callback$2((resume) => {
|
|
39523
39423
|
if (self$1.state._tag === "Done") return resume(self$1.state.exit);
|
|
39524
39424
|
self$1.state.takers.add(resume);
|
|
39525
|
-
return sync$
|
|
39425
|
+
return sync$1(() => {
|
|
39526
39426
|
if (self$1.state._tag !== "Done") self$1.state.takers.delete(resume);
|
|
39527
39427
|
});
|
|
39528
39428
|
});
|
|
@@ -39599,7 +39499,7 @@ const finalize = (self$1, exit$2) => {
|
|
|
39599
39499
|
*
|
|
39600
39500
|
* @since 2.0.0
|
|
39601
39501
|
*/
|
|
39602
|
-
const TypeId$
|
|
39502
|
+
const TypeId$33 = "~effect/Channel";
|
|
39603
39503
|
/**
|
|
39604
39504
|
* Tests if a value is a `Channel`.
|
|
39605
39505
|
*
|
|
@@ -39615,9 +39515,9 @@ const TypeId$34 = "~effect/Channel";
|
|
|
39615
39515
|
* @category guards
|
|
39616
39516
|
* @since 3.5.4
|
|
39617
39517
|
*/
|
|
39618
|
-
const isChannel = (u) => hasProperty(u, TypeId$
|
|
39518
|
+
const isChannel = (u) => hasProperty(u, TypeId$33);
|
|
39619
39519
|
const ChannelProto = {
|
|
39620
|
-
[TypeId$
|
|
39520
|
+
[TypeId$33]: {
|
|
39621
39521
|
_Env: identity,
|
|
39622
39522
|
_InErr: identity,
|
|
39623
39523
|
_InElem: identity,
|
|
@@ -39732,7 +39632,7 @@ const toTransform = (channel) => channel.transform;
|
|
|
39732
39632
|
* @since 2.0.0
|
|
39733
39633
|
*/
|
|
39734
39634
|
const DefaultChunkSize$1 = 4096;
|
|
39735
|
-
const asyncQueue = (scope$2, f, options) => make$
|
|
39635
|
+
const asyncQueue = (scope$2, f, options) => make$33({
|
|
39736
39636
|
capacity: options?.bufferSize,
|
|
39737
39637
|
strategy: options?.strategy
|
|
39738
39638
|
}).pipe(tap((queue) => addFinalizer$1(scope$2, shutdown(queue))), tap((queue) => {
|
|
@@ -40348,7 +40248,7 @@ const unwrap$2 = (channel) => fromTransform$1((upstream, scope$2) => {
|
|
|
40348
40248
|
*/
|
|
40349
40249
|
const bufferArray = /* @__PURE__ */ dual(2, (self$1, options) => fromTransform$1(fnUntraced(function* (upstream, scope$2) {
|
|
40350
40250
|
const pull = yield* toTransform(self$1)(upstream, scope$2);
|
|
40351
|
-
const queue = yield* make$
|
|
40251
|
+
const queue = yield* make$33({
|
|
40352
40252
|
capacity: options.capacity === "unbounded" ? void 0 : options.capacity,
|
|
40353
40253
|
strategy: options.capacity === "unbounded" ? void 0 : options.strategy
|
|
40354
40254
|
});
|
|
@@ -40480,14 +40380,14 @@ const toPullScoped = (self$1, scope$2) => toTransform(self$1)(haltVoid, scope$2)
|
|
|
40480
40380
|
|
|
40481
40381
|
//#endregion
|
|
40482
40382
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/stream.js
|
|
40483
|
-
const TypeId$
|
|
40383
|
+
const TypeId$32 = "~effect/Stream";
|
|
40484
40384
|
const streamVariance = {
|
|
40485
40385
|
_R: identity,
|
|
40486
40386
|
_E: identity,
|
|
40487
40387
|
_A: identity
|
|
40488
40388
|
};
|
|
40489
40389
|
const StreamProto = {
|
|
40490
|
-
[TypeId$
|
|
40390
|
+
[TypeId$32]: streamVariance,
|
|
40491
40391
|
pipe() {
|
|
40492
40392
|
return pipeArguments(this, arguments);
|
|
40493
40393
|
}
|
|
@@ -40501,7 +40401,7 @@ const fromChannel$2 = (channel) => {
|
|
|
40501
40401
|
|
|
40502
40402
|
//#endregion
|
|
40503
40403
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Sink.js
|
|
40504
|
-
const TypeId$
|
|
40404
|
+
const TypeId$31 = "~effect/Sink";
|
|
40505
40405
|
const endVoid = /* @__PURE__ */ succeed([void 0]);
|
|
40506
40406
|
const sinkVariance = {
|
|
40507
40407
|
_A: identity,
|
|
@@ -40511,7 +40411,7 @@ const sinkVariance = {
|
|
|
40511
40411
|
_R: identity
|
|
40512
40412
|
};
|
|
40513
40413
|
const SinkProto = {
|
|
40514
|
-
[TypeId$
|
|
40414
|
+
[TypeId$31]: sinkVariance,
|
|
40515
40415
|
pipe() {
|
|
40516
40416
|
return pipeArguments(this, arguments);
|
|
40517
40417
|
}
|
|
@@ -40533,7 +40433,7 @@ const SinkProto = {
|
|
|
40533
40433
|
* @since 2.0.0
|
|
40534
40434
|
* @category guards
|
|
40535
40435
|
*/
|
|
40536
|
-
const isSink = (u) => hasProperty(u, TypeId$
|
|
40436
|
+
const isSink = (u) => hasProperty(u, TypeId$31);
|
|
40537
40437
|
/**
|
|
40538
40438
|
* Creates a sink from a `Channel`.
|
|
40539
40439
|
*
|
|
@@ -40707,9 +40607,9 @@ const unwrap$1 = (effect$1) => fromChannel$1(unwrap$2(map$4(effect$1, toChannel$
|
|
|
40707
40607
|
|
|
40708
40608
|
//#endregion
|
|
40709
40609
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/MutableHashMap.js
|
|
40710
|
-
const TypeId$
|
|
40610
|
+
const TypeId$30 = "~effect/collections/MutableHashMap";
|
|
40711
40611
|
const MutableHashMapProto = {
|
|
40712
|
-
[TypeId$
|
|
40612
|
+
[TypeId$30]: TypeId$30,
|
|
40713
40613
|
[Symbol.iterator]() {
|
|
40714
40614
|
return this.backing[Symbol.iterator]();
|
|
40715
40615
|
},
|
|
@@ -40774,7 +40674,7 @@ const empty$7 = () => {
|
|
|
40774
40674
|
* @since 2.0.0
|
|
40775
40675
|
* @category constructors
|
|
40776
40676
|
*/
|
|
40777
|
-
const make$
|
|
40677
|
+
const make$32 = (...entries) => fromIterable$1(entries);
|
|
40778
40678
|
/**
|
|
40779
40679
|
* Creates a MutableHashMap from an iterable collection of key-value pairs.
|
|
40780
40680
|
*
|
|
@@ -41048,9 +40948,9 @@ const size = (self$1) => self$1.backing.size;
|
|
|
41048
40948
|
/**
|
|
41049
40949
|
* @since 3.5.0
|
|
41050
40950
|
*/
|
|
41051
|
-
const TypeId$
|
|
40951
|
+
const TypeId$29 = "~effect/RcMap";
|
|
41052
40952
|
const makeUnsafe$1 = (options) => ({
|
|
41053
|
-
[TypeId$
|
|
40953
|
+
[TypeId$29]: TypeId$29,
|
|
41054
40954
|
lookup: options.lookup,
|
|
41055
40955
|
services: options.services,
|
|
41056
40956
|
scope: options.scope,
|
|
@@ -41100,7 +41000,7 @@ const makeUnsafe$1 = (options) => ({
|
|
|
41100
41000
|
* })
|
|
41101
41001
|
* ```
|
|
41102
41002
|
*/
|
|
41103
|
-
const make$
|
|
41003
|
+
const make$31 = (options) => withFiber((fiber$2) => {
|
|
41104
41004
|
const services$2 = fiber$2.services;
|
|
41105
41005
|
const scope$2 = get$7(services$2, Scope);
|
|
41106
41006
|
const self$1 = makeUnsafe$1({
|
|
@@ -41245,7 +41145,7 @@ const invalidate$2 = /* @__PURE__ */ dual(2, /* @__PURE__ */ fnUntraced(function
|
|
|
41245
41145
|
|
|
41246
41146
|
//#endregion
|
|
41247
41147
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/internal/rcRef.js
|
|
41248
|
-
const TypeId$
|
|
41148
|
+
const TypeId$28 = "~effect/RcRef";
|
|
41249
41149
|
const stateEmpty = { _tag: "Empty" };
|
|
41250
41150
|
const stateClosed = { _tag: "Closed" };
|
|
41251
41151
|
const variance = {
|
|
@@ -41253,7 +41153,7 @@ const variance = {
|
|
|
41253
41153
|
_E: identity
|
|
41254
41154
|
};
|
|
41255
41155
|
var RcRefImpl = class {
|
|
41256
|
-
[TypeId$
|
|
41156
|
+
[TypeId$28] = variance;
|
|
41257
41157
|
state = stateEmpty;
|
|
41258
41158
|
semaphore = /* @__PURE__ */ makeSemaphoreUnsafe(1);
|
|
41259
41159
|
acquire;
|
|
@@ -41268,7 +41168,7 @@ var RcRefImpl = class {
|
|
|
41268
41168
|
}
|
|
41269
41169
|
};
|
|
41270
41170
|
/** @internal */
|
|
41271
|
-
const make$
|
|
41171
|
+
const make$30 = (options) => withFiber((fiber$2) => {
|
|
41272
41172
|
const services$2 = fiber$2.services;
|
|
41273
41173
|
const scope$2 = get$7(services$2, Scope);
|
|
41274
41174
|
const ref = new RcRefImpl(options.acquire, services$2, scope$2, options.idleTimeToLive ? fromDurationInputUnsafe(options.idleTimeToLive) : void 0);
|
|
@@ -41376,7 +41276,7 @@ const invalidate$1 = (self_) => {
|
|
|
41376
41276
|
* })
|
|
41377
41277
|
* ```
|
|
41378
41278
|
*/
|
|
41379
|
-
const make$
|
|
41279
|
+
const make$29 = make$30;
|
|
41380
41280
|
/**
|
|
41381
41281
|
* Get the value from an RcRef.
|
|
41382
41282
|
*
|
|
@@ -41422,7 +41322,7 @@ const invalidate = invalidate$1;
|
|
|
41422
41322
|
/**
|
|
41423
41323
|
* @since 2.0.0
|
|
41424
41324
|
*/
|
|
41425
|
-
const TypeId$
|
|
41325
|
+
const TypeId$27 = "~effect/Stream";
|
|
41426
41326
|
/**
|
|
41427
41327
|
* Checks if a value is a Stream.
|
|
41428
41328
|
*
|
|
@@ -41440,7 +41340,7 @@ const TypeId$28 = "~effect/Stream";
|
|
|
41440
41340
|
* @since 2.0.0
|
|
41441
41341
|
* @category guards
|
|
41442
41342
|
*/
|
|
41443
|
-
const isStream = (u) => hasProperty(u, TypeId$
|
|
41343
|
+
const isStream = (u) => hasProperty(u, TypeId$27);
|
|
41444
41344
|
/**
|
|
41445
41345
|
* The default chunk size used by streams for batching operations.
|
|
41446
41346
|
*
|
|
@@ -42191,7 +42091,7 @@ const toReadableStreamEffect = /* @__PURE__ */ dual((args$1) => isStream(args$1[
|
|
|
42191
42091
|
*
|
|
42192
42092
|
* @since 4.0.0
|
|
42193
42093
|
*/
|
|
42194
|
-
const TypeId$
|
|
42094
|
+
const TypeId$26 = "~effect/platform/FileSystem";
|
|
42195
42095
|
/**
|
|
42196
42096
|
* Creates a `Size` from various numeric input types.
|
|
42197
42097
|
*
|
|
@@ -42278,9 +42178,9 @@ const FileSystem = /* @__PURE__ */ Service("effect/platform/FileSystem");
|
|
|
42278
42178
|
* @since 4.0.0
|
|
42279
42179
|
* @category constructor
|
|
42280
42180
|
*/
|
|
42281
|
-
const make$
|
|
42181
|
+
const make$28 = (impl) => FileSystem.of({
|
|
42282
42182
|
...impl,
|
|
42283
|
-
[TypeId$
|
|
42183
|
+
[TypeId$26]: TypeId$26,
|
|
42284
42184
|
exists: (path) => pipe(impl.access(path), as(true), catchTag("PlatformError", (e) => e.reason === "NotFound" ? succeed(false) : fail$3(e))),
|
|
42285
42185
|
readFileString: (path, encoding) => flatMap(impl.readFile(path), (_) => try_({
|
|
42286
42186
|
try: () => new TextDecoder(encoding).decode(_),
|
|
@@ -42383,7 +42283,7 @@ var WatchBackend = class extends Service()("effect/platform/FileSystem/WatchBack
|
|
|
42383
42283
|
/**
|
|
42384
42284
|
* @since 4.0.0
|
|
42385
42285
|
*/
|
|
42386
|
-
const TypeId$
|
|
42286
|
+
const TypeId$25 = "~effect/platform/Path";
|
|
42387
42287
|
/**
|
|
42388
42288
|
* @since 4.0.0
|
|
42389
42289
|
* @category tag
|
|
@@ -42575,7 +42475,7 @@ function encodePathChars(filepath) {
|
|
|
42575
42475
|
return filepath;
|
|
42576
42476
|
}
|
|
42577
42477
|
const posixImpl = /* @__PURE__ */ Path$1.of({
|
|
42578
|
-
[TypeId$
|
|
42478
|
+
[TypeId$25]: TypeId$25,
|
|
42579
42479
|
resolve,
|
|
42580
42480
|
normalize(path) {
|
|
42581
42481
|
if (path.length === 0) return ".";
|
|
@@ -42849,7 +42749,7 @@ const Proto$14 = {
|
|
|
42849
42749
|
* @category Constructors
|
|
42850
42750
|
* @since 4.0.0
|
|
42851
42751
|
*/
|
|
42852
|
-
function make$
|
|
42752
|
+
function make$27(get$8, mapInput$1, prefix$1) {
|
|
42853
42753
|
const self$1 = Object.create(Proto$14);
|
|
42854
42754
|
self$1.get = get$8;
|
|
42855
42755
|
self$1.mapInput = mapInput$1;
|
|
@@ -42876,7 +42776,7 @@ function fromEnv(options) {
|
|
|
42876
42776
|
...import.meta?.env
|
|
42877
42777
|
};
|
|
42878
42778
|
const trie = buildEnvTrie(env);
|
|
42879
|
-
return make$
|
|
42779
|
+
return make$27((path) => succeed(nodeAtEnv(trie, env, path)));
|
|
42880
42780
|
}
|
|
42881
42781
|
function buildEnvTrie(env) {
|
|
42882
42782
|
const root$1 = {};
|
|
@@ -43082,11 +42982,11 @@ const isGreaterThan = isLogLevelGreaterThan;
|
|
|
43082
42982
|
|
|
43083
42983
|
//#endregion
|
|
43084
42984
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Config.js
|
|
43085
|
-
const TypeId$
|
|
42985
|
+
const TypeId$24 = "~effect/Config";
|
|
43086
42986
|
const Proto$13 = {
|
|
43087
42987
|
...PipeInspectableProto,
|
|
43088
42988
|
...YieldableProto,
|
|
43089
|
-
[TypeId$
|
|
42989
|
+
[TypeId$24]: TypeId$24,
|
|
43090
42990
|
asEffect() {
|
|
43091
42991
|
return flatMap(ConfigProvider.asEffect(), (provider) => this.parse(provider));
|
|
43092
42992
|
},
|
|
@@ -43421,7 +43321,7 @@ const getTypeName = (primitive) => {
|
|
|
43421
43321
|
*
|
|
43422
43322
|
* @since 4.0.0
|
|
43423
43323
|
*/
|
|
43424
|
-
const TypeId$
|
|
43324
|
+
const TypeId$23 = "~effect/cli/Param";
|
|
43425
43325
|
/**
|
|
43426
43326
|
* Kind discriminator for positional argument parameters.
|
|
43427
43327
|
*
|
|
@@ -43437,7 +43337,7 @@ const argumentKind = "argument";
|
|
|
43437
43337
|
*/
|
|
43438
43338
|
const flagKind = "flag";
|
|
43439
43339
|
const Proto$11 = {
|
|
43440
|
-
[TypeId$
|
|
43340
|
+
[TypeId$23]: { _A: identity },
|
|
43441
43341
|
pipe() {
|
|
43442
43342
|
return pipeArguments(this, arguments);
|
|
43443
43343
|
}
|
|
@@ -43461,7 +43361,7 @@ const Proto$11 = {
|
|
|
43461
43361
|
* @since 4.0.0
|
|
43462
43362
|
* @category refinements
|
|
43463
43363
|
*/
|
|
43464
|
-
const isParam = (u) => hasProperty(u, TypeId$
|
|
43364
|
+
const isParam = (u) => hasProperty(u, TypeId$23);
|
|
43465
43365
|
/**
|
|
43466
43366
|
* Type guard to check if a Single param is a flag (not an argument).
|
|
43467
43367
|
*
|
|
@@ -44308,7 +44208,7 @@ const consoleWith = (f) => withFiber$1((fiber$2) => f(fiber$2.getRef(Console)));
|
|
|
44308
44208
|
* @since 2.0.0
|
|
44309
44209
|
* @category accessor
|
|
44310
44210
|
*/
|
|
44311
|
-
const error = (...args$1) => consoleWith((console$1) => sync$
|
|
44211
|
+
const error = (...args$1) => consoleWith((console$1) => sync$1(() => {
|
|
44312
44212
|
console$1.error(...args$1);
|
|
44313
44213
|
}));
|
|
44314
44214
|
/**
|
|
@@ -44330,7 +44230,7 @@ const error = (...args$1) => consoleWith((console$1) => sync$2(() => {
|
|
|
44330
44230
|
* @since 2.0.0
|
|
44331
44231
|
* @category accessor
|
|
44332
44232
|
*/
|
|
44333
|
-
const log = (...args$1) => consoleWith((console$1) => sync$
|
|
44233
|
+
const log = (...args$1) => consoleWith((console$1) => sync$1(() => {
|
|
44334
44234
|
console$1.log(...args$1);
|
|
44335
44235
|
}));
|
|
44336
44236
|
|
|
@@ -44413,7 +44313,7 @@ const reconstructTree = (tree, results) => {
|
|
|
44413
44313
|
* Internal implementation details for CLI commands.
|
|
44414
44314
|
* Public API is in ../Command.ts
|
|
44415
44315
|
*/
|
|
44416
|
-
const TypeId$
|
|
44316
|
+
const TypeId$22 = "~effect/cli/Command";
|
|
44417
44317
|
/**
|
|
44418
44318
|
* Casts a Command to its internal implementation.
|
|
44419
44319
|
* For use by internal modules that need access to config, parse, handle, etc.
|
|
@@ -44432,7 +44332,7 @@ const Proto$10 = {
|
|
|
44432
44332
|
* Internal command constructor. Only accepts already-parsed ConfigInternal.
|
|
44433
44333
|
*/
|
|
44434
44334
|
const makeCommand = (options) => {
|
|
44435
|
-
const service$2 = options.service ?? Service(`${TypeId$
|
|
44335
|
+
const service$2 = options.service ?? Service(`${TypeId$22}/${options.name}`);
|
|
44436
44336
|
const config = options.config;
|
|
44437
44337
|
const handle = (input, commandPath) => isNotUndefined$2(options.handle) ? options.handle(input, commandPath) : fail$3(new ShowHelp({ commandPath }));
|
|
44438
44338
|
const parse$3 = options.parse ?? fnUntraced(function* (input) {
|
|
@@ -44490,7 +44390,7 @@ const makeCommand = (options) => {
|
|
|
44490
44390
|
};
|
|
44491
44391
|
};
|
|
44492
44392
|
return Object.assign(Object.create(Proto$10), {
|
|
44493
|
-
[TypeId$
|
|
44393
|
+
[TypeId$22]: TypeId$22,
|
|
44494
44394
|
name: options.name,
|
|
44495
44395
|
subcommands: options.subcommands ?? [],
|
|
44496
44396
|
config,
|
|
@@ -45676,7 +45576,7 @@ const scanCommandLevel = (tokens, context) => {
|
|
|
45676
45576
|
|
|
45677
45577
|
//#endregion
|
|
45678
45578
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/Terminal.js
|
|
45679
|
-
const TypeId$
|
|
45579
|
+
const TypeId$21 = "~effect/platform/Terminal";
|
|
45680
45580
|
const QuitErrorTypeId = "effect/platform/Terminal/QuitError";
|
|
45681
45581
|
/**
|
|
45682
45582
|
* A `QuitError` represents an error that occurs when a user attempts to
|
|
@@ -45702,9 +45602,9 @@ const Terminal = /* @__PURE__ */ Service("effect/platform/Terminal");
|
|
|
45702
45602
|
* @since 4.0.0
|
|
45703
45603
|
* @category Constructors
|
|
45704
45604
|
*/
|
|
45705
|
-
const make$
|
|
45605
|
+
const make$26 = (impl) => Terminal.of({
|
|
45706
45606
|
...impl,
|
|
45707
|
-
[TypeId$
|
|
45607
|
+
[TypeId$21]: TypeId$21
|
|
45708
45608
|
});
|
|
45709
45609
|
|
|
45710
45610
|
//#endregion
|
|
@@ -45803,7 +45703,7 @@ const eraseLines = (rows) => {
|
|
|
45803
45703
|
/**
|
|
45804
45704
|
* @since 4.0.0
|
|
45805
45705
|
*/
|
|
45806
|
-
const TypeId$
|
|
45706
|
+
const TypeId$20 = "~effect/cli/Prompt";
|
|
45807
45707
|
const defaultFigures = {
|
|
45808
45708
|
arrowUp: "↑",
|
|
45809
45709
|
arrowDown: "↓",
|
|
@@ -45915,7 +45815,7 @@ const select = (options) => {
|
|
|
45915
45815
|
const text$2 = (options) => basePrompt(options, "text");
|
|
45916
45816
|
const proto = {
|
|
45917
45817
|
...YieldableProto,
|
|
45918
|
-
[TypeId$
|
|
45818
|
+
[TypeId$20]: { _Output: (_) => _ },
|
|
45919
45819
|
asEffect() {
|
|
45920
45820
|
return run$3(this);
|
|
45921
45821
|
},
|
|
@@ -46287,7 +46187,7 @@ const entriesToDisplay = (cursor, total, maxVisible) => {
|
|
|
46287
46187
|
* @since 4.0.0
|
|
46288
46188
|
* @category constructors
|
|
46289
46189
|
*/
|
|
46290
|
-
const make$
|
|
46190
|
+
const make$25 = (name, config, handler$1) => {
|
|
46291
46191
|
return makeCommand({
|
|
46292
46192
|
name,
|
|
46293
46193
|
config: parseConfig(config ?? {}),
|
|
@@ -46463,7 +46363,7 @@ const mapHandler = (self$1, f) => {
|
|
|
46463
46363
|
* @since 4.0.0
|
|
46464
46364
|
* @category providing services
|
|
46465
46365
|
*/
|
|
46466
|
-
const provide = /* @__PURE__ */ dual(2, (self$1, layer$
|
|
46366
|
+
const provide = /* @__PURE__ */ dual(2, (self$1, layer$14) => mapHandler(self$1, (handler$1, input) => provide$1(handler$1, typeof layer$14 === "function" ? layer$14(input) : layer$14)));
|
|
46467
46367
|
const showHelp = (command, commandPath, errors) => gen(function* () {
|
|
46468
46368
|
const formatter = yield* Formatter;
|
|
46469
46369
|
const helpDoc = getHelpForCommandPath(command, commandPath);
|
|
@@ -46578,7 +46478,7 @@ const runWith = (command, config) => {
|
|
|
46578
46478
|
/**
|
|
46579
46479
|
* @since 4.0.0
|
|
46580
46480
|
*/
|
|
46581
|
-
const TypeId$
|
|
46481
|
+
const TypeId$19 = "~effect/Cache";
|
|
46582
46482
|
/**
|
|
46583
46483
|
* Creates a cache with dynamic time-to-live based on the result and key.
|
|
46584
46484
|
*
|
|
@@ -46642,7 +46542,7 @@ const TypeId$20 = "~effect/Cache";
|
|
|
46642
46542
|
const makeWith$1 = (options) => servicesWith$1((services$2) => {
|
|
46643
46543
|
const self$1 = Object.create(Proto$9);
|
|
46644
46544
|
self$1.lookup = (key) => updateServices$1(options.lookup(key), (input) => merge$5(services$2, input));
|
|
46645
|
-
self$1.map = make$
|
|
46545
|
+
self$1.map = make$32();
|
|
46646
46546
|
self$1.capacity = options.capacity;
|
|
46647
46547
|
self$1.timeToLive = options.timeToLive ? (exit$2, key) => fromDurationInputUnsafe(options.timeToLive(exit$2, key)) : defaultTimeToLive;
|
|
46648
46548
|
return succeed$4(self$1);
|
|
@@ -46700,13 +46600,13 @@ const makeWith$1 = (options) => servicesWith$1((services$2) => {
|
|
|
46700
46600
|
* @since 4.0.0
|
|
46701
46601
|
* @category Constructors
|
|
46702
46602
|
*/
|
|
46703
|
-
const make$
|
|
46603
|
+
const make$24 = (options) => makeWith$1({
|
|
46704
46604
|
...options,
|
|
46705
46605
|
timeToLive: options.timeToLive ? () => options.timeToLive : defaultTimeToLive
|
|
46706
46606
|
});
|
|
46707
46607
|
const Proto$9 = {
|
|
46708
46608
|
...PipeInspectableProto,
|
|
46709
|
-
[TypeId$
|
|
46609
|
+
[TypeId$19]: TypeId$19,
|
|
46710
46610
|
toJSON() {
|
|
46711
46611
|
return {
|
|
46712
46612
|
_id: "Cache",
|
|
@@ -46949,7 +46849,7 @@ const set$3 = /* @__PURE__ */ dual(3, (self$1, key, value) => withFiber$1((fiber
|
|
|
46949
46849
|
/**
|
|
46950
46850
|
* @since 2.0.0
|
|
46951
46851
|
*/
|
|
46952
|
-
const TypeId$
|
|
46852
|
+
const TypeId$18 = "~effect/FiberSet";
|
|
46953
46853
|
/**
|
|
46954
46854
|
* Checks if a value is a FiberSet.
|
|
46955
46855
|
*
|
|
@@ -46967,9 +46867,9 @@ const TypeId$19 = "~effect/FiberSet";
|
|
|
46967
46867
|
* })
|
|
46968
46868
|
* ```
|
|
46969
46869
|
*/
|
|
46970
|
-
const isFiberSet = (u) => hasProperty(u, TypeId$
|
|
46870
|
+
const isFiberSet = (u) => hasProperty(u, TypeId$18);
|
|
46971
46871
|
const Proto$8 = {
|
|
46972
|
-
[TypeId$
|
|
46872
|
+
[TypeId$18]: TypeId$18,
|
|
46973
46873
|
[Symbol.iterator]() {
|
|
46974
46874
|
if (this.state._tag === "Closed") return empty$13();
|
|
46975
46875
|
return this.state.backing[Symbol.iterator]();
|
|
@@ -47018,7 +46918,7 @@ const makeUnsafe = (backing, deferred) => {
|
|
|
47018
46918
|
* @since 2.0.0
|
|
47019
46919
|
* @category constructors
|
|
47020
46920
|
*/
|
|
47021
|
-
const make$
|
|
46921
|
+
const make$23 = () => acquireRelease(sync(() => makeUnsafe(/* @__PURE__ */ new Set(), makeUnsafe$6())), (set$6) => suspend$2(() => {
|
|
47022
46922
|
const state = set$6.state;
|
|
47023
46923
|
if (state._tag === "Closed") return void_$1;
|
|
47024
46924
|
set$6.state = { _tag: "Closed" };
|
|
@@ -47202,8 +47102,8 @@ const awaitEmpty = (self$1) => whileLoop({
|
|
|
47202
47102
|
/**
|
|
47203
47103
|
* @since 4.0.0
|
|
47204
47104
|
*/
|
|
47205
|
-
const TypeId$
|
|
47206
|
-
const ErrorTypeId
|
|
47105
|
+
const TypeId$17 = "~effect/persistence/KeyValueStore";
|
|
47106
|
+
const ErrorTypeId = "~effect/persistence/KeyValueStore/KeyValueStoreError";
|
|
47207
47107
|
/**
|
|
47208
47108
|
* @since 4.0.0
|
|
47209
47109
|
* @category Errors
|
|
@@ -47212,7 +47112,7 @@ var KeyValueStoreError = class extends TaggedError("KeyValueStoreError") {
|
|
|
47212
47112
|
/**
|
|
47213
47113
|
* @since 4.0.0
|
|
47214
47114
|
*/
|
|
47215
|
-
[ErrorTypeId
|
|
47115
|
+
[ErrorTypeId] = ErrorTypeId;
|
|
47216
47116
|
};
|
|
47217
47117
|
/**
|
|
47218
47118
|
* @since 4.0.0
|
|
@@ -47223,8 +47123,8 @@ const KeyValueStore = /* @__PURE__ */ Service("effect/persistence/KeyValueStore"
|
|
|
47223
47123
|
* @since 4.0.0
|
|
47224
47124
|
* @category constructors
|
|
47225
47125
|
*/
|
|
47226
|
-
const make$
|
|
47227
|
-
[TypeId$
|
|
47126
|
+
const make$22 = (options) => KeyValueStore.of({
|
|
47127
|
+
[TypeId$17]: TypeId$17,
|
|
47228
47128
|
has: (key) => map$4(options.get(key), isNotUndefined$2),
|
|
47229
47129
|
isEmpty: map$4(options.size, (size$1) => size$1 === 0),
|
|
47230
47130
|
modify: (key, f) => flatMap(options.get(key), (o) => {
|
|
@@ -47262,7 +47162,7 @@ const layerFileSystem = (directory) => effect(KeyValueStore)(gen(function* () {
|
|
|
47262
47162
|
const path = yield* Path$1;
|
|
47263
47163
|
const keyPath = (key) => path.join(directory, encodeURIComponent(key));
|
|
47264
47164
|
if (!(yield* fs.exists(directory))) yield* fs.makeDirectory(directory, { recursive: true });
|
|
47265
|
-
return make$
|
|
47165
|
+
return make$22({
|
|
47266
47166
|
get: (key) => catchTag(fs.readFileString(keyPath(key)), "PlatformError", (cause) => cause.reason === "NotFound" ? undefined_$1 : fail$3(new KeyValueStoreError({
|
|
47267
47167
|
method: "get",
|
|
47268
47168
|
key,
|
|
@@ -48868,7 +48768,7 @@ var Mime_default$1 = Mime;
|
|
|
48868
48768
|
var src_default = new Mime_default$1(standard_default, other_default)._freeze();
|
|
48869
48769
|
|
|
48870
48770
|
//#endregion
|
|
48871
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
48771
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/Mime.js
|
|
48872
48772
|
/**
|
|
48873
48773
|
* @since 1.0.0
|
|
48874
48774
|
*/
|
|
@@ -48926,11 +48826,11 @@ const ChildProcessSpawner = /* @__PURE__ */ Service("effect/process/ChildProcess
|
|
|
48926
48826
|
|
|
48927
48827
|
//#endregion
|
|
48928
48828
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/unstable/process/ChildProcess.js
|
|
48929
|
-
const TypeId$
|
|
48829
|
+
const TypeId$16 = "~effect/unstable/process/ChildProcess";
|
|
48930
48830
|
const Proto$7 = {
|
|
48931
48831
|
...PipeInspectableProto,
|
|
48932
48832
|
...YieldableProto,
|
|
48933
|
-
[TypeId$
|
|
48833
|
+
[TypeId$16]: TypeId$16,
|
|
48934
48834
|
asEffect() {
|
|
48935
48835
|
return spawn(this);
|
|
48936
48836
|
}
|
|
@@ -48941,7 +48841,7 @@ const Proto$7 = {
|
|
|
48941
48841
|
* @since 4.0.0
|
|
48942
48842
|
* @category Guards
|
|
48943
48843
|
*/
|
|
48944
|
-
const isCommand = (u) => hasProperty(u, TypeId$
|
|
48844
|
+
const isCommand = (u) => hasProperty(u, TypeId$16);
|
|
48945
48845
|
/**
|
|
48946
48846
|
* Check if a command is a `StandardCommand`.
|
|
48947
48847
|
*
|
|
@@ -48989,7 +48889,7 @@ const makeTemplatedCommand = (templates, expressions, options) => Object.assign(
|
|
|
48989
48889
|
* @since 4.0.0
|
|
48990
48890
|
* @category Constructors
|
|
48991
48891
|
*/
|
|
48992
|
-
const make$
|
|
48892
|
+
const make$21 = function make$50(...args$1) {
|
|
48993
48893
|
if (isTemplateString(args$1[0])) {
|
|
48994
48894
|
const [templates, ...expressions] = args$1;
|
|
48995
48895
|
return makeTemplatedCommand(templates, expressions, {});
|
|
@@ -49370,7 +49270,7 @@ const toUint8Array = (readable, options) => map$4(toArrayBuffer(readable, option
|
|
|
49370
49270
|
const readableToPullUnsafe = (options) => {
|
|
49371
49271
|
const readable = options.readable;
|
|
49372
49272
|
const closeOnDone = options.closeOnDone ?? true;
|
|
49373
|
-
const exit$2 = options.exit ?? make$
|
|
49273
|
+
const exit$2 = options.exit ?? make$34(void 0);
|
|
49374
49274
|
const latch = makeLatchUnsafe(false);
|
|
49375
49275
|
function onReadable() {
|
|
49376
49276
|
latch.openUnsafe();
|
|
@@ -49421,13 +49321,13 @@ const toPlatformError = (method, error$1, command) => {
|
|
|
49421
49321
|
}, "");
|
|
49422
49322
|
return handleErrnoException("ChildProcess", method)(error$1, [commandStr]);
|
|
49423
49323
|
};
|
|
49424
|
-
const make$
|
|
49324
|
+
const make$20 = /* @__PURE__ */ gen(function* () {
|
|
49425
49325
|
const fs = yield* FileSystem;
|
|
49426
49326
|
const path = yield* Path$1;
|
|
49427
49327
|
const resolveCommand = fnUntraced(function* (command) {
|
|
49428
49328
|
if (isStandardCommand(command)) return command;
|
|
49429
49329
|
const parsed = yield* sync(() => parseTemplates(command.templates, command.expressions));
|
|
49430
|
-
return make$
|
|
49330
|
+
return make$21(parsed[0], parsed.slice(1), command.options);
|
|
49431
49331
|
});
|
|
49432
49332
|
const resolveWorkingDirectory = fnUntraced(function* (options) {
|
|
49433
49333
|
if (isUndefined(options.cwd)) return void 0;
|
|
@@ -49621,7 +49521,7 @@ const make$21 = /* @__PURE__ */ gen(function* () {
|
|
|
49621
49521
|
};
|
|
49622
49522
|
};
|
|
49623
49523
|
const spawn$1 = fnUntraced(function* (command, spawnOptions) {
|
|
49624
|
-
const deferred = yield* make$
|
|
49524
|
+
const deferred = yield* make$44();
|
|
49625
49525
|
return yield* callback$1((resume) => {
|
|
49626
49526
|
const handle = NodeChildProcess.spawn(command.command, command.args, spawnOptions);
|
|
49627
49527
|
handle.on("error", (error$1) => {
|
|
@@ -49746,7 +49646,7 @@ const make$21 = /* @__PURE__ */ gen(function* () {
|
|
|
49746
49646
|
const stdinConfig = resolveStdinOption(command.options);
|
|
49747
49647
|
const sourceStream = unwrap(map$4(handle, (h) => getSourceStream(h, options.from)));
|
|
49748
49648
|
const toOption$1 = options.to ?? "stdin";
|
|
49749
|
-
if (toOption$1 === "stdin") handle = spawnCommand(make$
|
|
49649
|
+
if (toOption$1 === "stdin") handle = spawnCommand(make$21(command.command, command.args, {
|
|
49750
49650
|
...command.options,
|
|
49751
49651
|
stdin: {
|
|
49752
49652
|
...stdinConfig,
|
|
@@ -49758,7 +49658,7 @@ const make$21 = /* @__PURE__ */ gen(function* () {
|
|
|
49758
49658
|
if (isNotUndefined$2(fd)) {
|
|
49759
49659
|
const fdName$1 = fdName(fd);
|
|
49760
49660
|
const existingFds = command.options.additionalFds ?? {};
|
|
49761
|
-
handle = spawnCommand(make$
|
|
49661
|
+
handle = spawnCommand(make$21(command.command, command.args, {
|
|
49762
49662
|
...command.options,
|
|
49763
49663
|
additionalFds: {
|
|
49764
49664
|
...existingFds,
|
|
@@ -49768,7 +49668,7 @@ const make$21 = /* @__PURE__ */ gen(function* () {
|
|
|
49768
49668
|
}
|
|
49769
49669
|
}
|
|
49770
49670
|
}));
|
|
49771
|
-
} else handle = spawnCommand(make$
|
|
49671
|
+
} else handle = spawnCommand(make$21(command.command, command.args, {
|
|
49772
49672
|
...command.options,
|
|
49773
49673
|
stdin: {
|
|
49774
49674
|
...stdinConfig,
|
|
@@ -49789,7 +49689,7 @@ const make$21 = /* @__PURE__ */ gen(function* () {
|
|
|
49789
49689
|
* @since 4.0.0
|
|
49790
49690
|
* @category Layers
|
|
49791
49691
|
*/
|
|
49792
|
-
const layer$
|
|
49692
|
+
const layer$13 = /* @__PURE__ */ effect(ChildProcessSpawner, make$20);
|
|
49793
49693
|
/**
|
|
49794
49694
|
* Flattens a `Command` into an array of `StandardCommand`s along with pipe
|
|
49795
49695
|
* options for each connection.
|
|
@@ -49807,7 +49707,7 @@ const flattenCommand = (command) => {
|
|
|
49807
49707
|
break;
|
|
49808
49708
|
case "TemplatedCommand": {
|
|
49809
49709
|
const parsed = parseTemplates(cmd.templates, cmd.expressions);
|
|
49810
|
-
commands.push(make$
|
|
49710
|
+
commands.push(make$21(parsed[0], parsed.slice(1), cmd.options));
|
|
49811
49711
|
break;
|
|
49812
49712
|
}
|
|
49813
49713
|
case "PipedCommand":
|
|
@@ -49831,12 +49731,12 @@ const flattenCommand = (command) => {
|
|
|
49831
49731
|
/**
|
|
49832
49732
|
* @since 4.0.0
|
|
49833
49733
|
*/
|
|
49834
|
-
const TypeId$
|
|
49734
|
+
const TypeId$15 = "~effect/http/Cookies";
|
|
49835
49735
|
/**
|
|
49836
49736
|
* @since 4.0.0
|
|
49837
49737
|
* @category refinements
|
|
49838
49738
|
*/
|
|
49839
|
-
const isCookies = (u) => hasProperty(u, TypeId$
|
|
49739
|
+
const isCookies = (u) => hasProperty(u, TypeId$15);
|
|
49840
49740
|
/**
|
|
49841
49741
|
* @since 4.0.0
|
|
49842
49742
|
* @category Schemas
|
|
@@ -49896,7 +49796,7 @@ var CookiesError = class extends TaggedError("CookieError") {
|
|
|
49896
49796
|
}
|
|
49897
49797
|
};
|
|
49898
49798
|
const Proto$6 = {
|
|
49899
|
-
[TypeId$
|
|
49799
|
+
[TypeId$15]: TypeId$15,
|
|
49900
49800
|
...BaseProto,
|
|
49901
49801
|
toJSON() {
|
|
49902
49802
|
return {
|
|
@@ -50213,9 +50113,9 @@ const tryDecodeURIComponent = (str) => {
|
|
|
50213
50113
|
* @since 4.0.0
|
|
50214
50114
|
* @category type ids
|
|
50215
50115
|
*/
|
|
50216
|
-
const TypeId$
|
|
50116
|
+
const TypeId$14 = /* @__PURE__ */ Symbol.for("~effect/http/Headers");
|
|
50217
50117
|
const Proto$5 = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), BaseProto, {
|
|
50218
|
-
[TypeId$
|
|
50118
|
+
[TypeId$14]: TypeId$14,
|
|
50219
50119
|
[symbolRedactable](context) {
|
|
50220
50120
|
return redact(this, get$7(context, CurrentRedactedNames));
|
|
50221
50121
|
},
|
|
@@ -50229,7 +50129,7 @@ const Proto$5 = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null
|
|
|
50229
50129
|
return structure(this);
|
|
50230
50130
|
}
|
|
50231
50131
|
});
|
|
50232
|
-
const make$
|
|
50132
|
+
const make$19 = (input) => Object.assign(Object.create(Proto$5), input);
|
|
50233
50133
|
/**
|
|
50234
50134
|
* @since 4.0.0
|
|
50235
50135
|
* @category Equivalence
|
|
@@ -50266,7 +50166,7 @@ const fromRecordUnsafe = (input) => Object.setPrototypeOf(input, Proto$5);
|
|
|
50266
50166
|
* @category combinators
|
|
50267
50167
|
*/
|
|
50268
50168
|
const set$2 = /* @__PURE__ */ dual(3, (self$1, key, value) => {
|
|
50269
|
-
const out = make$
|
|
50169
|
+
const out = make$19(self$1);
|
|
50270
50170
|
out[key.toLowerCase()] = value;
|
|
50271
50171
|
return out;
|
|
50272
50172
|
});
|
|
@@ -50274,7 +50174,7 @@ const set$2 = /* @__PURE__ */ dual(3, (self$1, key, value) => {
|
|
|
50274
50174
|
* @since 4.0.0
|
|
50275
50175
|
* @category combinators
|
|
50276
50176
|
*/
|
|
50277
|
-
const setAll$1 = /* @__PURE__ */ dual(2, (self$1, headers) => make$
|
|
50177
|
+
const setAll$1 = /* @__PURE__ */ dual(2, (self$1, headers) => make$19({
|
|
50278
50178
|
...self$1,
|
|
50279
50179
|
...fromInput$1(headers)
|
|
50280
50180
|
}));
|
|
@@ -50283,7 +50183,7 @@ const setAll$1 = /* @__PURE__ */ dual(2, (self$1, headers) => make$20({
|
|
|
50283
50183
|
* @category combinators
|
|
50284
50184
|
*/
|
|
50285
50185
|
const merge$1 = /* @__PURE__ */ dual(2, (self$1, headers) => {
|
|
50286
|
-
const out = make$
|
|
50186
|
+
const out = make$19(self$1);
|
|
50287
50187
|
Object.assign(out, headers);
|
|
50288
50188
|
return out;
|
|
50289
50189
|
});
|
|
@@ -50292,7 +50192,7 @@ const merge$1 = /* @__PURE__ */ dual(2, (self$1, headers) => {
|
|
|
50292
50192
|
* @category combinators
|
|
50293
50193
|
*/
|
|
50294
50194
|
const remove$1 = /* @__PURE__ */ dual(2, (self$1, key) => {
|
|
50295
|
-
const out = make$
|
|
50195
|
+
const out = make$19(self$1);
|
|
50296
50196
|
delete out[key.toLowerCase()];
|
|
50297
50197
|
return out;
|
|
50298
50198
|
});
|
|
@@ -50305,8 +50205,8 @@ const redact = /* @__PURE__ */ dual(2, (self$1, key) => {
|
|
|
50305
50205
|
const modify$1 = (key$1) => {
|
|
50306
50206
|
if (typeof key$1 === "string") {
|
|
50307
50207
|
const k = key$1.toLowerCase();
|
|
50308
|
-
if (k in self$1) out[k] = make$
|
|
50309
|
-
} else for (const name in self$1) if (key$1.test(name)) out[name] = make$
|
|
50208
|
+
if (k in self$1) out[k] = make$37(self$1[k]);
|
|
50209
|
+
} else for (const name in self$1) if (key$1.test(name)) out[name] = make$37(self$1[name]);
|
|
50310
50210
|
};
|
|
50311
50211
|
if (Array.isArray(key)) for (let i = 0; i < key.length; i++) modify$1(key[i]);
|
|
50312
50212
|
else modify$1(key);
|
|
@@ -50328,12 +50228,12 @@ const CurrentRedactedNames = /* @__PURE__ */ Reference("effect/Headers/CurrentRe
|
|
|
50328
50228
|
/**
|
|
50329
50229
|
* @since 4.0.0
|
|
50330
50230
|
*/
|
|
50331
|
-
const TypeId$
|
|
50231
|
+
const TypeId$13 = "~effect/http/HttpClientError";
|
|
50332
50232
|
/**
|
|
50333
50233
|
* @since 4.0.0
|
|
50334
50234
|
* @category guards
|
|
50335
50235
|
*/
|
|
50336
|
-
const isHttpClientError = (u) => hasProperty(u, TypeId$
|
|
50236
|
+
const isHttpClientError = (u) => hasProperty(u, TypeId$13);
|
|
50337
50237
|
/**
|
|
50338
50238
|
* @since 4.0.0
|
|
50339
50239
|
* @category error
|
|
@@ -50342,7 +50242,7 @@ var RequestError$2 = class extends TaggedError("RequestError") {
|
|
|
50342
50242
|
/**
|
|
50343
50243
|
* @since 4.0.0
|
|
50344
50244
|
*/
|
|
50345
|
-
[TypeId$
|
|
50245
|
+
[TypeId$13] = TypeId$13;
|
|
50346
50246
|
/**
|
|
50347
50247
|
* @since 4.0.0
|
|
50348
50248
|
*/
|
|
@@ -50364,7 +50264,7 @@ var ResponseError$1 = class extends TaggedError("ResponseError") {
|
|
|
50364
50264
|
/**
|
|
50365
50265
|
* @since 4.0.0
|
|
50366
50266
|
*/
|
|
50367
|
-
[TypeId$
|
|
50267
|
+
[TypeId$13] = TypeId$13;
|
|
50368
50268
|
/**
|
|
50369
50269
|
* @since 4.0.0
|
|
50370
50270
|
*/
|
|
@@ -50385,15 +50285,15 @@ var ResponseError$1 = class extends TaggedError("ResponseError") {
|
|
|
50385
50285
|
/**
|
|
50386
50286
|
* @since 4.0.0
|
|
50387
50287
|
*/
|
|
50388
|
-
const TypeId$
|
|
50288
|
+
const TypeId$12 = "~effect/http/UrlParams";
|
|
50389
50289
|
/**
|
|
50390
50290
|
* @since 4.0.0
|
|
50391
50291
|
* @category Guards
|
|
50392
50292
|
*/
|
|
50393
|
-
const isUrlParams = (u) => hasProperty(u, TypeId$
|
|
50293
|
+
const isUrlParams = (u) => hasProperty(u, TypeId$12);
|
|
50394
50294
|
const Proto$4 = {
|
|
50395
50295
|
...PipeInspectableProto,
|
|
50396
|
-
[TypeId$
|
|
50296
|
+
[TypeId$12]: TypeId$12,
|
|
50397
50297
|
[Symbol.iterator]() {
|
|
50398
50298
|
return this.params[Symbol.iterator]();
|
|
50399
50299
|
},
|
|
@@ -50414,7 +50314,7 @@ const Proto$4 = {
|
|
|
50414
50314
|
* @since 4.0.0
|
|
50415
50315
|
* @category constructors
|
|
50416
50316
|
*/
|
|
50417
|
-
const make$
|
|
50317
|
+
const make$18 = (params) => {
|
|
50418
50318
|
const self$1 = Object.create(Proto$4);
|
|
50419
50319
|
self$1.params = params;
|
|
50420
50320
|
return self$1;
|
|
@@ -50430,7 +50330,7 @@ const fromInput = (input) => {
|
|
|
50430
50330
|
const [keys$1, value] = parsed[i];
|
|
50431
50331
|
out.push([`${keys$1[0]}[${keys$1.slice(1).join("][")}]`, value]);
|
|
50432
50332
|
} else out.push(parsed[i]);
|
|
50433
|
-
return make$
|
|
50333
|
+
return make$18(out);
|
|
50434
50334
|
};
|
|
50435
50335
|
const fromInputNested = (input) => {
|
|
50436
50336
|
const entries = Symbol.iterator in input ? fromIterable$2(input) : Object.entries(input);
|
|
@@ -50447,7 +50347,7 @@ const fromInputNested = (input) => {
|
|
|
50447
50347
|
* @since 4.0.0
|
|
50448
50348
|
* @category Equivalence
|
|
50449
50349
|
*/
|
|
50450
|
-
const Equivalence = /* @__PURE__ */ make$
|
|
50350
|
+
const Equivalence = /* @__PURE__ */ make$47((a, b) => arrayEquivalence(a.params, b.params));
|
|
50451
50351
|
const arrayEquivalence = /* @__PURE__ */ makeEquivalence$1(/* @__PURE__ */ makeEquivalence$3([/* @__PURE__ */ strictEqual(), /* @__PURE__ */ strictEqual()]));
|
|
50452
50352
|
/**
|
|
50453
50353
|
* @since 4.0.0
|
|
@@ -50464,7 +50364,7 @@ const UrlParamsSchema = /* @__PURE__ */ declare(isUrlParams, {
|
|
|
50464
50364
|
expected: "UrlParams",
|
|
50465
50365
|
toEquivalence: () => Equivalence,
|
|
50466
50366
|
toCodec: () => link$1()(Array$1(Tuple([String$1, String$1])), transform({
|
|
50467
|
-
decode: make$
|
|
50367
|
+
decode: make$18,
|
|
50468
50368
|
encode: (self$1) => self$1.params
|
|
50469
50369
|
}))
|
|
50470
50370
|
});
|
|
@@ -50472,7 +50372,7 @@ const UrlParamsSchema = /* @__PURE__ */ declare(isUrlParams, {
|
|
|
50472
50372
|
* @since 4.0.0
|
|
50473
50373
|
* @category constructors
|
|
50474
50374
|
*/
|
|
50475
|
-
const empty$3 = /* @__PURE__ */ make$
|
|
50375
|
+
const empty$3 = /* @__PURE__ */ make$18([]);
|
|
50476
50376
|
/**
|
|
50477
50377
|
* @since 4.0.0
|
|
50478
50378
|
* @category combinators
|
|
@@ -50598,7 +50498,7 @@ const schemaRecord = /* @__PURE__ */ UrlParamsSchema.pipe(/* @__PURE__ */ decode
|
|
|
50598
50498
|
/**
|
|
50599
50499
|
* @since 4.0.0
|
|
50600
50500
|
*/
|
|
50601
|
-
const TypeId$
|
|
50501
|
+
const TypeId$11 = "~effect/http/HttpBody";
|
|
50602
50502
|
const HttpBodyErrorTypeId = "~effect/http/HttpBody/HttpBodyError";
|
|
50603
50503
|
/**
|
|
50604
50504
|
* @since 4.0.0
|
|
@@ -50611,9 +50511,9 @@ var HttpBodyError = class extends TaggedError("HttpBodyError") {
|
|
|
50611
50511
|
[HttpBodyErrorTypeId] = HttpBodyErrorTypeId;
|
|
50612
50512
|
};
|
|
50613
50513
|
var Proto$3 = class {
|
|
50614
|
-
[TypeId$
|
|
50514
|
+
[TypeId$11];
|
|
50615
50515
|
constructor() {
|
|
50616
|
-
this[TypeId$
|
|
50516
|
+
this[TypeId$11] = TypeId$11;
|
|
50617
50517
|
}
|
|
50618
50518
|
[NodeInspectSymbol]() {
|
|
50619
50519
|
return this.toJSON();
|
|
@@ -50743,9 +50643,9 @@ const stream$2 = (body, contentType, contentLength) => new Stream(body, contentT
|
|
|
50743
50643
|
|
|
50744
50644
|
//#endregion
|
|
50745
50645
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/unstable/http/HttpClientRequest.js
|
|
50746
|
-
const TypeId$
|
|
50646
|
+
const TypeId$10 = "~effect/http/HttpClientRequest";
|
|
50747
50647
|
const Proto$2 = {
|
|
50748
|
-
[TypeId$
|
|
50648
|
+
[TypeId$10]: TypeId$10,
|
|
50749
50649
|
...BaseProto,
|
|
50750
50650
|
toJSON() {
|
|
50751
50651
|
return {
|
|
@@ -50781,7 +50681,7 @@ const empty$1 = /* @__PURE__ */ makeProto("GET", "", empty$3, void 0, empty$4, e
|
|
|
50781
50681
|
* @since 4.0.0
|
|
50782
50682
|
* @category constructors
|
|
50783
50683
|
*/
|
|
50784
|
-
const make$
|
|
50684
|
+
const make$17 = (method) => (url, options) => modify(empty$1, {
|
|
50785
50685
|
method,
|
|
50786
50686
|
url,
|
|
50787
50687
|
...options ?? void 0
|
|
@@ -50790,7 +50690,7 @@ const make$18 = (method) => (url, options) => modify(empty$1, {
|
|
|
50790
50690
|
* @since 4.0.0
|
|
50791
50691
|
* @category constructors
|
|
50792
50692
|
*/
|
|
50793
|
-
const post = /* @__PURE__ */ make$
|
|
50693
|
+
const post = /* @__PURE__ */ make$17("POST");
|
|
50794
50694
|
/**
|
|
50795
50695
|
* @since 4.0.0
|
|
50796
50696
|
* @category combinators
|
|
@@ -50888,7 +50788,7 @@ const bodyUrlParams = /* @__PURE__ */ dual(2, (self$1, input) => setBody(self$1,
|
|
|
50888
50788
|
* @since 4.0.0
|
|
50889
50789
|
* @category Type IDs
|
|
50890
50790
|
*/
|
|
50891
|
-
const TypeId$
|
|
50791
|
+
const TypeId$9 = "~effect/http/HttpIncomingMessage";
|
|
50892
50792
|
/**
|
|
50893
50793
|
* @since 4.0.0
|
|
50894
50794
|
* @category schema
|
|
@@ -50940,7 +50840,7 @@ const inspect = (self$1, that) => {
|
|
|
50940
50840
|
* @since 4.0.0
|
|
50941
50841
|
* @category Type IDs
|
|
50942
50842
|
*/
|
|
50943
|
-
const TypeId$
|
|
50843
|
+
const TypeId$8 = "~effect/http/HttpClientResponse";
|
|
50944
50844
|
/**
|
|
50945
50845
|
* @since 4.0.0
|
|
50946
50846
|
* @category constructors
|
|
@@ -50957,16 +50857,16 @@ const filterStatusOk$1 = (self$1) => self$1.status >= 200 && self$1.status < 300
|
|
|
50957
50857
|
description: "non 2xx status code"
|
|
50958
50858
|
}));
|
|
50959
50859
|
var WebHttpClientResponse = class extends Class$2 {
|
|
50960
|
-
[TypeId$10];
|
|
50961
50860
|
[TypeId$9];
|
|
50861
|
+
[TypeId$8];
|
|
50962
50862
|
request;
|
|
50963
50863
|
source;
|
|
50964
50864
|
constructor(request$3, source) {
|
|
50965
50865
|
super();
|
|
50966
50866
|
this.request = request$3;
|
|
50967
50867
|
this.source = source;
|
|
50968
|
-
this[TypeId$10] = TypeId$10;
|
|
50969
50868
|
this[TypeId$9] = TypeId$9;
|
|
50869
|
+
this[TypeId$8] = TypeId$8;
|
|
50970
50870
|
}
|
|
50971
50871
|
toJSON() {
|
|
50972
50872
|
return inspect(this, {
|
|
@@ -51149,7 +51049,7 @@ const w3c = (headers) => {
|
|
|
51149
51049
|
|
|
51150
51050
|
//#endregion
|
|
51151
51051
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/unstable/http/HttpClient.js
|
|
51152
|
-
const TypeId$
|
|
51052
|
+
const TypeId$7 = "~effect/http/HttpClient";
|
|
51153
51053
|
/**
|
|
51154
51054
|
* @since 4.0.0
|
|
51155
51055
|
* @category tags
|
|
@@ -51181,7 +51081,7 @@ const makeWith = (postprocess, preprocess) => {
|
|
|
51181
51081
|
return self$1;
|
|
51182
51082
|
};
|
|
51183
51083
|
const Proto$1 = {
|
|
51184
|
-
[TypeId$
|
|
51084
|
+
[TypeId$7]: TypeId$7,
|
|
51185
51085
|
pipe() {
|
|
51186
51086
|
return pipeArguments(this, arguments);
|
|
51187
51087
|
},
|
|
@@ -51190,14 +51090,14 @@ const Proto$1 = {
|
|
|
51190
51090
|
return { _id: "effect/HttpClient" };
|
|
51191
51091
|
},
|
|
51192
51092
|
.../* @__PURE__ */ Object.fromEntries(/* @__PURE__ */ allShort.map(([fullMethod, method]) => [method, function(url, options) {
|
|
51193
|
-
return this.execute(make$
|
|
51093
|
+
return this.execute(make$17(fullMethod)(url, options));
|
|
51194
51094
|
}]))
|
|
51195
51095
|
};
|
|
51196
51096
|
/**
|
|
51197
51097
|
* @since 4.0.0
|
|
51198
51098
|
* @category constructors
|
|
51199
51099
|
*/
|
|
51200
|
-
const make$
|
|
51100
|
+
const make$16 = (f) => makeWith((effect$1) => flatMap(effect$1, (request$3) => withFiber((fiber$2) => {
|
|
51201
51101
|
const scopedController = scopedRequests.get(request$3);
|
|
51202
51102
|
const controller = scopedController ?? new AbortController();
|
|
51203
51103
|
const urlResult = makeUrl(request$3.url, request$3.urlParams, request$3.hash);
|
|
@@ -51325,8 +51225,8 @@ var InterruptibleResponse = class {
|
|
|
51325
51225
|
this.original = original;
|
|
51326
51226
|
this.controller = controller;
|
|
51327
51227
|
}
|
|
51228
|
+
[TypeId$8] = TypeId$8;
|
|
51328
51229
|
[TypeId$9] = TypeId$9;
|
|
51329
|
-
[TypeId$10] = TypeId$10;
|
|
51330
51230
|
applyInterrupt(effect$1) {
|
|
51331
51231
|
return suspend$2(() => {
|
|
51332
51232
|
responseRegistry.unregister(this.original);
|
|
@@ -51455,7 +51355,7 @@ function parse$2(input) {
|
|
|
51455
51355
|
const FULL_PATH_REGEXP = /^https?:\/\/.*?\//;
|
|
51456
51356
|
const OPTIONAL_PARAM_REGEXP = /(\/:[^/()]*?)\?(\/?)/;
|
|
51457
51357
|
/** @internal */
|
|
51458
|
-
const make$
|
|
51358
|
+
const make$15 = (options = {}) => new RouterImpl(options);
|
|
51459
51359
|
var RouterImpl = class {
|
|
51460
51360
|
constructor(options = {}) {
|
|
51461
51361
|
this.options = {
|
|
@@ -51975,7 +51875,7 @@ const httpMethods = [
|
|
|
51975
51875
|
* @since 1.0.0
|
|
51976
51876
|
* @category constructors
|
|
51977
51877
|
*/
|
|
51978
|
-
const make$
|
|
51878
|
+
const make$14 = make$15;
|
|
51979
51879
|
|
|
51980
51880
|
//#endregion
|
|
51981
51881
|
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/unstable/http/Template.js
|
|
@@ -51986,7 +51886,7 @@ const make$15 = make$16;
|
|
|
51986
51886
|
* @category constructors
|
|
51987
51887
|
* @since 4.0.0
|
|
51988
51888
|
*/
|
|
51989
|
-
function make$
|
|
51889
|
+
function make$13(strings, ...args$1) {
|
|
51990
51890
|
const argsLength = args$1.length;
|
|
51991
51891
|
const values$1 = new Array(argsLength);
|
|
51992
51892
|
const effects = [];
|
|
@@ -52032,11 +51932,11 @@ function isSuccess(u) {
|
|
|
52032
51932
|
/**
|
|
52033
51933
|
* @since 4.0.0
|
|
52034
51934
|
*/
|
|
52035
|
-
const TypeId$
|
|
51935
|
+
const TypeId$6 = "~effect/http/HttpServerResponse";
|
|
52036
51936
|
/**
|
|
52037
51937
|
* @since 4.0.0
|
|
52038
51938
|
*/
|
|
52039
|
-
const isHttpServerResponse = (u) => hasProperty(u, TypeId$
|
|
51939
|
+
const isHttpServerResponse = (u) => hasProperty(u, TypeId$6);
|
|
52040
51940
|
/**
|
|
52041
51941
|
* @since 4.0.0
|
|
52042
51942
|
* @category constructors
|
|
@@ -52071,7 +51971,7 @@ const text = (body, options) => {
|
|
|
52071
51971
|
*/
|
|
52072
51972
|
const html = (strings, ...args$1) => {
|
|
52073
51973
|
if (typeof strings === "string") return text(strings, { contentType: "text/html" });
|
|
52074
|
-
return map$4(make$
|
|
51974
|
+
return map$4(make$13(strings, ...args$1), (_) => text(_, { contentType: "text/html" }));
|
|
52075
51975
|
};
|
|
52076
51976
|
/**
|
|
52077
51977
|
* @since 4.0.0
|
|
@@ -52103,7 +52003,7 @@ const stream$1 = (body, options) => {
|
|
|
52103
52003
|
};
|
|
52104
52004
|
const Proto = {
|
|
52105
52005
|
...PipeInspectableProto,
|
|
52106
|
-
[TypeId$
|
|
52006
|
+
[TypeId$6]: TypeId$6,
|
|
52107
52007
|
toJSON() {
|
|
52108
52008
|
return {
|
|
52109
52009
|
_id: "HttpServerResponse",
|
|
@@ -52139,12 +52039,12 @@ const makeResponse = (options) => {
|
|
|
52139
52039
|
* @since 4.0.0
|
|
52140
52040
|
* @category Type IDs
|
|
52141
52041
|
*/
|
|
52142
|
-
const TypeId$
|
|
52042
|
+
const TypeId$5 = "~effect/http/HttpServerRespondable";
|
|
52143
52043
|
/**
|
|
52144
52044
|
* @since 4.0.0
|
|
52145
52045
|
* @category guards
|
|
52146
52046
|
*/
|
|
52147
|
-
const isRespondable = (u) => hasProperty(u, TypeId$
|
|
52047
|
+
const isRespondable = (u) => hasProperty(u, TypeId$5);
|
|
52148
52048
|
const badRequest = /* @__PURE__ */ empty({ status: 400 });
|
|
52149
52049
|
const notFound = /* @__PURE__ */ empty({ status: 404 });
|
|
52150
52050
|
/**
|
|
@@ -52153,7 +52053,7 @@ const notFound = /* @__PURE__ */ empty({ status: 404 });
|
|
|
52153
52053
|
*/
|
|
52154
52054
|
const toResponseOrElse = (u, orElse) => {
|
|
52155
52055
|
if (isHttpServerResponse(u)) return succeed(u);
|
|
52156
|
-
else if (isRespondable(u)) return catchCause$1(u[TypeId$
|
|
52056
|
+
else if (isRespondable(u)) return catchCause$1(u[TypeId$5](), () => succeed(orElse));
|
|
52157
52057
|
else if (isSchemaError(u)) return succeed(badRequest);
|
|
52158
52058
|
else if (isNoSuchElementError(u)) return succeed(notFound);
|
|
52159
52059
|
return succeed(orElse);
|
|
@@ -52164,7 +52064,7 @@ const toResponseOrElse = (u, orElse) => {
|
|
|
52164
52064
|
*/
|
|
52165
52065
|
const toResponseOrElseDefect = (u, orElse) => {
|
|
52166
52066
|
if (isHttpServerResponse(u)) return succeed(u);
|
|
52167
|
-
else if (isRespondable(u)) return catchCause$1(u[TypeId$
|
|
52067
|
+
else if (isRespondable(u)) return catchCause$1(u[TypeId$5](), () => succeed(orElse));
|
|
52168
52068
|
return succeed(orElse);
|
|
52169
52069
|
};
|
|
52170
52070
|
|
|
@@ -52173,7 +52073,7 @@ const toResponseOrElseDefect = (u, orElse) => {
|
|
|
52173
52073
|
/**
|
|
52174
52074
|
* @since 4.0.0
|
|
52175
52075
|
*/
|
|
52176
|
-
const TypeId$
|
|
52076
|
+
const TypeId$4 = "~effect/http/HttpServerError";
|
|
52177
52077
|
/**
|
|
52178
52078
|
* @since 4.0.0
|
|
52179
52079
|
* @category error
|
|
@@ -52182,7 +52082,7 @@ var RequestError$1 = class extends TaggedError("HttpServerError") {
|
|
|
52182
52082
|
/**
|
|
52183
52083
|
* @since 4.0.0
|
|
52184
52084
|
*/
|
|
52185
|
-
[TypeId$
|
|
52085
|
+
[TypeId$4] = TypeId$4;
|
|
52186
52086
|
/**
|
|
52187
52087
|
* @since 4.0.0
|
|
52188
52088
|
*/
|
|
@@ -52190,7 +52090,7 @@ var RequestError$1 = class extends TaggedError("HttpServerError") {
|
|
|
52190
52090
|
/**
|
|
52191
52091
|
* @since 4.0.0
|
|
52192
52092
|
*/
|
|
52193
|
-
[TypeId$
|
|
52093
|
+
[TypeId$5]() {
|
|
52194
52094
|
return succeed(empty({ status: this.reason === "InternalError" ? 500 : this.reason === "RouteNotFound" ? 404 : 400 }));
|
|
52195
52095
|
}
|
|
52196
52096
|
get methodAndUrl() {
|
|
@@ -52209,7 +52109,7 @@ var ResponseError = class extends TaggedError("HttpServerError") {
|
|
|
52209
52109
|
/**
|
|
52210
52110
|
* @since 4.0.0
|
|
52211
52111
|
*/
|
|
52212
|
-
[TypeId$
|
|
52112
|
+
[TypeId$4] = TypeId$4;
|
|
52213
52113
|
/**
|
|
52214
52114
|
* @since 4.0.0
|
|
52215
52115
|
*/
|
|
@@ -52221,7 +52121,7 @@ var ResponseError = class extends TaggedError("HttpServerError") {
|
|
|
52221
52121
|
/**
|
|
52222
52122
|
* @since 4.0.0
|
|
52223
52123
|
*/
|
|
52224
|
-
[TypeId$
|
|
52124
|
+
[TypeId$5]() {
|
|
52225
52125
|
return succeed(empty({ status: 500 }));
|
|
52226
52126
|
}
|
|
52227
52127
|
get methodAndUrl() {
|
|
@@ -52240,7 +52140,7 @@ var ServeError = class extends TaggedError("ServeError") {
|
|
|
52240
52140
|
/**
|
|
52241
52141
|
* @since 4.0.0
|
|
52242
52142
|
*/
|
|
52243
|
-
[TypeId$
|
|
52143
|
+
[TypeId$4] = TypeId$4;
|
|
52244
52144
|
};
|
|
52245
52145
|
/**
|
|
52246
52146
|
* @since 4.0.0
|
|
@@ -52314,7 +52214,7 @@ const exitResponse = (exit$2) => {
|
|
|
52314
52214
|
* @since 4.0.0
|
|
52315
52215
|
* @category Type IDs
|
|
52316
52216
|
*/
|
|
52317
|
-
const TypeId$
|
|
52217
|
+
const TypeId$3 = "~effect/socket/Socket";
|
|
52318
52218
|
/**
|
|
52319
52219
|
* @since 4.0.0
|
|
52320
52220
|
* @category tags
|
|
@@ -52426,7 +52326,7 @@ const fromWebSocket = (acquire, options) => withFiber((fiber$2) => {
|
|
|
52426
52326
|
const acquireContext = fiber$2.services;
|
|
52427
52327
|
const closeCodeIsError = options?.closeCodeIsError ?? defaultCloseCodeIsError;
|
|
52428
52328
|
const runRaw = (handler$1, opts) => scopedWith(fnUntraced(function* (scope$2) {
|
|
52429
|
-
const fiberSet = yield* make$
|
|
52329
|
+
const fiberSet = yield* make$23().pipe(provide$4(scope$2));
|
|
52430
52330
|
const ws = yield* provide$4(acquire, scope$2);
|
|
52431
52331
|
const run$7 = yield* provideService(runtime(fiberSet)(), WebSocket$1, ws);
|
|
52432
52332
|
let open$1 = false;
|
|
@@ -52486,7 +52386,7 @@ const fromWebSocket = (acquire, options) => withFiber((fiber$2) => {
|
|
|
52486
52386
|
}));
|
|
52487
52387
|
const writer = succeed(write);
|
|
52488
52388
|
return succeed(Socket.of({
|
|
52489
|
-
[TypeId$
|
|
52389
|
+
[TypeId$3]: TypeId$3,
|
|
52490
52390
|
run: run$6,
|
|
52491
52391
|
runRaw,
|
|
52492
52392
|
writer
|
|
@@ -52957,7 +52857,7 @@ const constValueChars = [
|
|
|
52957
52857
|
1,
|
|
52958
52858
|
1
|
|
52959
52859
|
];
|
|
52960
|
-
function make$
|
|
52860
|
+
function make$12() {
|
|
52961
52861
|
const decoder = new TextDecoder();
|
|
52962
52862
|
const state = {
|
|
52963
52863
|
state: State$1.key,
|
|
@@ -53135,7 +53035,7 @@ function makeState(needle_) {
|
|
|
53135
53035
|
matchIndex: 0
|
|
53136
53036
|
};
|
|
53137
53037
|
}
|
|
53138
|
-
function make$
|
|
53038
|
+
function make$11(needle, callback$3, seed) {
|
|
53139
53039
|
const state = makeState(needle);
|
|
53140
53040
|
if (seed !== void 0) {
|
|
53141
53041
|
state.previousChunk = seed;
|
|
@@ -53245,7 +53145,7 @@ function parseBoundary(headers) {
|
|
|
53245
53145
|
return parse$1(headers["content-type"]).parameters.boundary;
|
|
53246
53146
|
}
|
|
53247
53147
|
function noopOnChunk(_chunk) {}
|
|
53248
|
-
function make$
|
|
53148
|
+
function make$10({ headers, onFile: onPart, onField, onError: onError$2, onDone, isFile = defaultIsFile$1, maxParts = Infinity, maxTotalSize = Infinity, maxPartSize = Infinity, maxFieldSize = 1024 * 1024 }) {
|
|
53249
53149
|
const boundary = parseBoundary(headers);
|
|
53250
53150
|
if (boundary === void 0) {
|
|
53251
53151
|
onError$2({ _tag: "InvalidBoundary" });
|
|
@@ -53272,8 +53172,8 @@ function make$11({ headers, onFile: onPart, onField, onError: onError$2, onDone,
|
|
|
53272
53172
|
state.isFile = true;
|
|
53273
53173
|
state.onChunk = noopOnChunk;
|
|
53274
53174
|
}
|
|
53275
|
-
const headerParser = make$
|
|
53276
|
-
const split$1 = make$
|
|
53175
|
+
const headerParser = make$12();
|
|
53176
|
+
const split$1 = make$11(`\r\n--${boundary}`, function(index, chunk) {
|
|
53277
53177
|
if (index === 0) {
|
|
53278
53178
|
skipBody();
|
|
53279
53179
|
return;
|
|
@@ -53385,7 +53285,7 @@ function decodeField$1(info, value) {
|
|
|
53385
53285
|
|
|
53386
53286
|
//#endregion
|
|
53387
53287
|
//#region node_modules/.pnpm/multipasta@0.2.7/node_modules/multipasta/dist/esm/index.js
|
|
53388
|
-
const make$
|
|
53288
|
+
const make$9 = make$10;
|
|
53389
53289
|
const defaultIsFile = defaultIsFile$1;
|
|
53390
53290
|
const decodeField = decodeField$1;
|
|
53391
53291
|
|
|
@@ -53397,7 +53297,7 @@ const decodeField = decodeField$1;
|
|
|
53397
53297
|
/**
|
|
53398
53298
|
* @since 4.0.0
|
|
53399
53299
|
*/
|
|
53400
|
-
const TypeId$
|
|
53300
|
+
const TypeId$2 = "~effect/http/Multipart";
|
|
53401
53301
|
const MultipartErrorTypeId = "~effect/http/Multipart/MultipartError";
|
|
53402
53302
|
/**
|
|
53403
53303
|
* @since 4.0.0
|
|
@@ -53448,7 +53348,7 @@ const makeConfig = (headers) => withFiber((fiber$2) => {
|
|
|
53448
53348
|
const makeChannel = (headers) => fromTransform$1((upstream) => map$4(makeConfig(headers), (config) => {
|
|
53449
53349
|
let partsBuffer = [];
|
|
53450
53350
|
let exit$2 = none$3();
|
|
53451
|
-
const parser = make$
|
|
53351
|
+
const parser = make$9({
|
|
53452
53352
|
...config,
|
|
53453
53353
|
onField(info, value) {
|
|
53454
53354
|
partsBuffer.push(new FieldImpl$1(info.name, info.contentType, decodeField(info, value)));
|
|
@@ -53520,10 +53420,10 @@ function convertError$1(cause) {
|
|
|
53520
53420
|
}
|
|
53521
53421
|
}
|
|
53522
53422
|
var PartBase$1 = class extends Class$2 {
|
|
53523
|
-
[TypeId$
|
|
53423
|
+
[TypeId$2];
|
|
53524
53424
|
constructor() {
|
|
53525
53425
|
super();
|
|
53526
|
-
this[TypeId$
|
|
53426
|
+
this[TypeId$2] = TypeId$2;
|
|
53527
53427
|
}
|
|
53528
53428
|
};
|
|
53529
53429
|
var FieldImpl$1 = class extends PartBase$1 {
|
|
@@ -53672,7 +53572,7 @@ const FieldMimeTypes = /* @__PURE__ */ Reference("effect/http/Multipart/FieldMim
|
|
|
53672
53572
|
* @since 4.0.0
|
|
53673
53573
|
* @category Type IDs
|
|
53674
53574
|
*/
|
|
53675
|
-
const TypeId$
|
|
53575
|
+
const TypeId$1 = "~effect/http/HttpServerRequest";
|
|
53676
53576
|
/**
|
|
53677
53577
|
* @since 4.0.0
|
|
53678
53578
|
* @category context
|
|
@@ -53692,16 +53592,16 @@ const schemaSearchParams = (schema, options) => {
|
|
|
53692
53592
|
return flatMap(ParsedSearchParams.asEffect(), (params) => parse$3(params, options));
|
|
53693
53593
|
};
|
|
53694
53594
|
var ServerRequestImpl$1 = class ServerRequestImpl$1 extends Class$2 {
|
|
53695
|
-
[TypeId$
|
|
53696
|
-
[TypeId$
|
|
53595
|
+
[TypeId$1];
|
|
53596
|
+
[TypeId$9];
|
|
53697
53597
|
source;
|
|
53698
53598
|
url;
|
|
53699
53599
|
headersOverride;
|
|
53700
53600
|
remoteAddressOverride;
|
|
53701
53601
|
constructor(source, url, headersOverride, remoteAddressOverride) {
|
|
53702
53602
|
super();
|
|
53703
|
-
this[TypeId$
|
|
53704
|
-
this[TypeId$
|
|
53603
|
+
this[TypeId$1] = TypeId$1;
|
|
53604
|
+
this[TypeId$9] = TypeId$9;
|
|
53705
53605
|
this.source = source;
|
|
53706
53606
|
this.url = url;
|
|
53707
53607
|
this.headersOverride = headersOverride;
|
|
@@ -53838,7 +53738,7 @@ const toURL = (self$1) => {
|
|
|
53838
53738
|
* @since 4.0.0
|
|
53839
53739
|
* @category constructors
|
|
53840
53740
|
*/
|
|
53841
|
-
const make$
|
|
53741
|
+
const make$8 = (middleware$1) => middleware$1;
|
|
53842
53742
|
/**
|
|
53843
53743
|
* @since 4.0.0
|
|
53844
53744
|
* @category Logger
|
|
@@ -53866,7 +53766,7 @@ const SpanNameGenerator = /* @__PURE__ */ Reference("@effect/platform/HttpMiddle
|
|
|
53866
53766
|
* @since 4.0.0
|
|
53867
53767
|
* @category Logger
|
|
53868
53768
|
*/
|
|
53869
|
-
const logger = /* @__PURE__ */ make$
|
|
53769
|
+
const logger = /* @__PURE__ */ make$8((httpApp) => {
|
|
53870
53770
|
let counter = 0;
|
|
53871
53771
|
return withFiber((fiber$2) => {
|
|
53872
53772
|
const request$3 = getUnsafe(fiber$2.services, HttpServerRequest);
|
|
@@ -53892,7 +53792,7 @@ const logger = /* @__PURE__ */ make$9((httpApp) => {
|
|
|
53892
53792
|
* @since 4.0.0
|
|
53893
53793
|
* @category Tracer
|
|
53894
53794
|
*/
|
|
53895
|
-
const tracer = /* @__PURE__ */ make$
|
|
53795
|
+
const tracer = /* @__PURE__ */ make$8((httpApp) => withFiber((fiber$2) => {
|
|
53896
53796
|
const request$3 = getUnsafe(fiber$2.services, HttpServerRequest);
|
|
53897
53797
|
if (!fiber$2.getRef(TracerEnabled) || fiber$2.getRef(TracerDisabledWhen)(request$3)) return httpApp;
|
|
53898
53798
|
const nameGenerator = fiber$2.getRef(SpanNameGenerator);
|
|
@@ -54041,7 +53941,7 @@ const fromFileWeb = (file) => {
|
|
|
54041
53941
|
* @since 4.0.0
|
|
54042
53942
|
* @category Layers
|
|
54043
53943
|
*/
|
|
54044
|
-
const layer$
|
|
53944
|
+
const layer$12 = /* @__PURE__ */ succeed$1(Generator)({
|
|
54045
53945
|
fromFileInfo(info) {
|
|
54046
53946
|
return sync(() => ({
|
|
54047
53947
|
_tag: "Strong",
|
|
@@ -54088,7 +53988,7 @@ var HttpPlatform = class extends Service()("effect/http/HttpPlatform") {};
|
|
|
54088
53988
|
* @since 4.0.0
|
|
54089
53989
|
* @category constructors
|
|
54090
53990
|
*/
|
|
54091
|
-
const make$
|
|
53991
|
+
const make$7 = /* @__PURE__ */ fnUntraced(function* (impl) {
|
|
54092
53992
|
const fs = yield* FileSystem;
|
|
54093
53993
|
const etagGen = yield* Generator;
|
|
54094
53994
|
return HttpPlatform.of({
|
|
@@ -54117,7 +54017,7 @@ const make$8 = /* @__PURE__ */ fnUntraced(function* (impl) {
|
|
|
54117
54017
|
* @since 4.0.0
|
|
54118
54018
|
* @category layers
|
|
54119
54019
|
*/
|
|
54120
|
-
const layer$
|
|
54020
|
+
const layer$11 = /* @__PURE__ */ effect(HttpPlatform)(flatMap(FileSystem.asEffect(), (fs) => make$7({
|
|
54121
54021
|
fileResponse(path, status, statusText, headers, start, end$1, contentLength) {
|
|
54122
54022
|
return stream$1(fs.stream(path, {
|
|
54123
54023
|
offset: start,
|
|
@@ -54155,7 +54055,7 @@ var HttpServer = class extends Service()("effect/http/HttpServer") {};
|
|
|
54155
54055
|
* @since 4.0.0
|
|
54156
54056
|
* @category constructors
|
|
54157
54057
|
*/
|
|
54158
|
-
const make$
|
|
54058
|
+
const make$6 = (options) => options;
|
|
54159
54059
|
/**
|
|
54160
54060
|
* @since 4.0.0
|
|
54161
54061
|
* @category accessors
|
|
@@ -54185,7 +54085,7 @@ const logAddress = /* @__PURE__ */ addressFormattedWith((_) => log$1(`Listening
|
|
|
54185
54085
|
* @since 4.0.0
|
|
54186
54086
|
* @category address
|
|
54187
54087
|
*/
|
|
54188
|
-
const withLogAddress = (layer$
|
|
54088
|
+
const withLogAddress = (layer$14) => effectDiscard(logAddress).pipe(provideMerge(layer$14));
|
|
54189
54089
|
/**
|
|
54190
54090
|
* @since 4.0.0
|
|
54191
54091
|
* @category Testing
|
|
@@ -54209,7 +54109,7 @@ const layerTestClient = /* @__PURE__ */ effect(HttpClient)(makeTestClient);
|
|
|
54209
54109
|
/**
|
|
54210
54110
|
* @since 4.0.0
|
|
54211
54111
|
*/
|
|
54212
|
-
const TypeId
|
|
54112
|
+
const TypeId = "~effect/http/HttpRouter";
|
|
54213
54113
|
/**
|
|
54214
54114
|
* @since 4.0.0
|
|
54215
54115
|
* @category HttpRouter
|
|
@@ -54219,8 +54119,8 @@ const HttpRouter = /* @__PURE__ */ Service("effect/http/HttpRouter");
|
|
|
54219
54119
|
* @since 4.0.0
|
|
54220
54120
|
* @category HttpRouter
|
|
54221
54121
|
*/
|
|
54222
|
-
const make$
|
|
54223
|
-
const router = make$
|
|
54122
|
+
const make$5 = /* @__PURE__ */ gen(function* () {
|
|
54123
|
+
const router = make$14(yield* RouterConfig);
|
|
54224
54124
|
const middleware$1 = /* @__PURE__ */ new Set();
|
|
54225
54125
|
const addAll = (routes) => servicesWith((services$2) => {
|
|
54226
54126
|
const middleware$2 = getMiddleware(services$2);
|
|
@@ -54245,7 +54145,7 @@ const make$6 = /* @__PURE__ */ gen(function* () {
|
|
|
54245
54145
|
return void_$1;
|
|
54246
54146
|
});
|
|
54247
54147
|
return HttpRouter.of({
|
|
54248
|
-
[TypeId
|
|
54148
|
+
[TypeId]: TypeId,
|
|
54249
54149
|
prefixed(prefix$1) {
|
|
54250
54150
|
return HttpRouter.of({
|
|
54251
54151
|
...this,
|
|
@@ -54348,7 +54248,7 @@ const add = (method, path, handler$1, options) => use((router) => router.add(met
|
|
|
54348
54248
|
* @since 4.0.0
|
|
54349
54249
|
* @category HttpRouter
|
|
54350
54250
|
*/
|
|
54351
|
-
const layer$
|
|
54251
|
+
const layer$10 = /* @__PURE__ */ effect(HttpRouter)(make$5);
|
|
54352
54252
|
const RouteTypeId = "~effect/http/HttpRouter/Route";
|
|
54353
54253
|
const makeRoute = (options) => ({
|
|
54354
54254
|
...options,
|
|
@@ -54539,7 +54439,7 @@ const disableLogger = middleware(withLoggerDisabled).layer;
|
|
|
54539
54439
|
const serve = (appLayer, options) => {
|
|
54540
54440
|
let middleware$1 = options?.middleware;
|
|
54541
54441
|
if (options?.disableLogger !== true) middleware$1 = middleware$1 ? compose$1(middleware$1, logger) : logger;
|
|
54542
|
-
const RouterLayer = options?.routerConfig ? provide$3(layer$
|
|
54442
|
+
const RouterLayer = options?.routerConfig ? provide$3(layer$10, succeed$1(RouterConfig)(options.routerConfig)) : layer$10;
|
|
54543
54443
|
return gen(function* () {
|
|
54544
54444
|
const handler$1 = (yield* HttpRouter).asHttpEffect();
|
|
54545
54445
|
return middleware$1 ? serve$1(handler$1, middleware$1) : serve$1(handler$1);
|
|
@@ -58390,7 +58290,7 @@ const writeFile = (path, data, options) => callback$1((resume, signal) => {
|
|
|
58390
58290
|
resume(fail$3(handleBadArgument("writeFile")(err)));
|
|
58391
58291
|
}
|
|
58392
58292
|
});
|
|
58393
|
-
const makeFileSystem = /* @__PURE__ */ map$4(/* @__PURE__ */ serviceOption(WatchBackend), (backend) => make$
|
|
58293
|
+
const makeFileSystem = /* @__PURE__ */ map$4(/* @__PURE__ */ serviceOption(WatchBackend), (backend) => make$28({
|
|
58394
58294
|
access,
|
|
58395
58295
|
chmod,
|
|
58396
58296
|
chown,
|
|
@@ -58422,10 +58322,10 @@ const makeFileSystem = /* @__PURE__ */ map$4(/* @__PURE__ */ serviceOption(Watch
|
|
|
58422
58322
|
* @since 1.0.0
|
|
58423
58323
|
* @category Layers
|
|
58424
58324
|
*/
|
|
58425
|
-
const layer$
|
|
58325
|
+
const layer$9 = /* @__PURE__ */ effect(FileSystem)(makeFileSystem);
|
|
58426
58326
|
|
|
58427
58327
|
//#endregion
|
|
58428
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
58328
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodeFileSystem.js
|
|
58429
58329
|
/**
|
|
58430
58330
|
* @since 1.0.0
|
|
58431
58331
|
*/
|
|
@@ -58433,10 +58333,10 @@ const layer$10 = /* @__PURE__ */ effect(FileSystem)(makeFileSystem);
|
|
|
58433
58333
|
* @since 1.0.0
|
|
58434
58334
|
* @category layer
|
|
58435
58335
|
*/
|
|
58436
|
-
const layer$
|
|
58336
|
+
const layer$8 = layer$9;
|
|
58437
58337
|
|
|
58438
58338
|
//#endregion
|
|
58439
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
58339
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodeHttpIncomingMessage.js
|
|
58440
58340
|
/**
|
|
58441
58341
|
* @since 1.0.0
|
|
58442
58342
|
*/
|
|
@@ -58448,13 +58348,13 @@ var NodeHttpIncomingMessage = class extends Class$2 {
|
|
|
58448
58348
|
/**
|
|
58449
58349
|
* @since 1.0.0
|
|
58450
58350
|
*/
|
|
58451
|
-
[TypeId$
|
|
58351
|
+
[TypeId$9];
|
|
58452
58352
|
source;
|
|
58453
58353
|
onError;
|
|
58454
58354
|
remoteAddressOverride;
|
|
58455
58355
|
constructor(source, onError$2, remoteAddressOverride) {
|
|
58456
58356
|
super();
|
|
58457
|
-
this[TypeId$
|
|
58357
|
+
this[TypeId$9] = TypeId$9;
|
|
58458
58358
|
this.source = source;
|
|
58459
58359
|
this.onError = onError$2;
|
|
58460
58360
|
this.remoteAddressOverride = remoteAddressOverride;
|
|
@@ -58521,7 +58421,7 @@ const Fetch = /* @__PURE__ */ Reference("effect/http/FetchHttpClient/Fetch", { d
|
|
|
58521
58421
|
* @category tags
|
|
58522
58422
|
*/
|
|
58523
58423
|
var RequestInit = class extends Service()("effect/http/FetchHttpClient/RequestInit") {};
|
|
58524
|
-
const fetch$1 = /* @__PURE__ */ make$
|
|
58424
|
+
const fetch$1 = /* @__PURE__ */ make$16((request$3, url, signal, fiber$2) => {
|
|
58525
58425
|
const fetch$2 = fiber$2.getRef(Fetch);
|
|
58526
58426
|
const options = fiber$2.services.mapUnsafe.get(RequestInit.key) ?? {};
|
|
58527
58427
|
const headers = options.headers ? merge$1(fromInput$1(options.headers), request$3.headers) : request$3.headers;
|
|
@@ -58552,10 +58452,10 @@ const fetch$1 = /* @__PURE__ */ make$17((request$3, url, signal, fiber$2) => {
|
|
|
58552
58452
|
* @since 4.0.0
|
|
58553
58453
|
* @category layers
|
|
58554
58454
|
*/
|
|
58555
|
-
const layer$
|
|
58455
|
+
const layer$7 = /* @__PURE__ */ layerMergedServices(/* @__PURE__ */ succeed(fetch$1));
|
|
58556
58456
|
|
|
58557
58457
|
//#endregion
|
|
58558
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
58458
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodeHttpPlatform.js
|
|
58559
58459
|
/**
|
|
58560
58460
|
* @since 1.0.0
|
|
58561
58461
|
*/
|
|
@@ -58563,7 +58463,7 @@ const layer$8 = /* @__PURE__ */ layerMergedServices(/* @__PURE__ */ succeed(fetc
|
|
|
58563
58463
|
* @since 1.0.0
|
|
58564
58464
|
* @category Constructors
|
|
58565
58465
|
*/
|
|
58566
|
-
const make$
|
|
58466
|
+
const make$4 = /* @__PURE__ */ make$7({
|
|
58567
58467
|
fileResponse(path, status, statusText, headers, start, end$1, contentLength) {
|
|
58568
58468
|
const stream$3 = NFS.createReadStream(path, {
|
|
58569
58469
|
start,
|
|
@@ -58594,7 +58494,7 @@ const make$5 = /* @__PURE__ */ make$8({
|
|
|
58594
58494
|
* @since 1.0.0
|
|
58595
58495
|
* @category Layers
|
|
58596
58496
|
*/
|
|
58597
|
-
const layer$
|
|
58497
|
+
const layer$6 = /* @__PURE__ */ pipe(/* @__PURE__ */ effect(HttpPlatform)(make$4), /* @__PURE__ */ provide$3(layer$8), /* @__PURE__ */ provide$3(layer$12));
|
|
58598
58498
|
|
|
58599
58499
|
//#endregion
|
|
58600
58500
|
//#region node_modules/.pnpm/multipasta@0.2.7/node_modules/multipasta/dist/esm/node.js
|
|
@@ -58606,7 +58506,7 @@ var MultipastaStream = class extends Duplex {
|
|
|
58606
58506
|
super({ readableObjectMode: true });
|
|
58607
58507
|
let currentError;
|
|
58608
58508
|
let currentFile;
|
|
58609
|
-
this._parser = make$
|
|
58509
|
+
this._parser = make$9({
|
|
58610
58510
|
...config,
|
|
58611
58511
|
onField: (info, value) => {
|
|
58612
58512
|
if (currentError !== void 0) return;
|
|
@@ -58661,7 +58561,7 @@ var MultipastaStream = class extends Duplex {
|
|
|
58661
58561
|
callback$3();
|
|
58662
58562
|
}
|
|
58663
58563
|
};
|
|
58664
|
-
const make$
|
|
58564
|
+
const make$3 = (config) => new MultipastaStream(config);
|
|
58665
58565
|
var FileStream = class extends Readable {
|
|
58666
58566
|
info;
|
|
58667
58567
|
_parent;
|
|
@@ -58679,7 +58579,7 @@ var FileStream = class extends Readable {
|
|
|
58679
58579
|
};
|
|
58680
58580
|
|
|
58681
58581
|
//#endregion
|
|
58682
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
58582
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodeMultipart.js
|
|
58683
58583
|
/**
|
|
58684
58584
|
* @since 1.0.0
|
|
58685
58585
|
*/
|
|
@@ -58689,7 +58589,7 @@ var FileStream = class extends Readable {
|
|
|
58689
58589
|
*/
|
|
58690
58590
|
const stream = (source, headers) => makeConfig(headers).pipe(map$4((config) => fromReadable({
|
|
58691
58591
|
evaluate() {
|
|
58692
|
-
const parser = make$
|
|
58592
|
+
const parser = make$3(config);
|
|
58693
58593
|
source.pipe(parser);
|
|
58694
58594
|
return parser;
|
|
58695
58595
|
},
|
|
@@ -58708,10 +58608,10 @@ const persisted = (source, headers) => toPersisted(stream(source, headers), (pat
|
|
|
58708
58608
|
}));
|
|
58709
58609
|
const convertPart = (part) => part._tag === "Field" ? new FieldImpl(part.info, part.value) : new FileImpl(part);
|
|
58710
58610
|
var PartBase = class extends Class$2 {
|
|
58711
|
-
[TypeId$
|
|
58611
|
+
[TypeId$2];
|
|
58712
58612
|
constructor() {
|
|
58713
58613
|
super();
|
|
58714
|
-
this[TypeId$
|
|
58614
|
+
this[TypeId$2] = TypeId$2;
|
|
58715
58615
|
}
|
|
58716
58616
|
};
|
|
58717
58617
|
var FieldImpl = class extends PartBase {
|
|
@@ -58824,7 +58724,7 @@ const toFileUrl = (path) => try_({
|
|
|
58824
58724
|
* @category Layers
|
|
58825
58725
|
*/
|
|
58826
58726
|
const layerPosix$1 = /* @__PURE__ */ succeed$1(Path$1)({
|
|
58827
|
-
[TypeId$
|
|
58727
|
+
[TypeId$25]: TypeId$25,
|
|
58828
58728
|
...Path.posix,
|
|
58829
58729
|
fromFileUrl,
|
|
58830
58730
|
toFileUrl
|
|
@@ -58834,7 +58734,7 @@ const layerPosix$1 = /* @__PURE__ */ succeed$1(Path$1)({
|
|
|
58834
58734
|
* @category Layers
|
|
58835
58735
|
*/
|
|
58836
58736
|
const layerWin32$1 = /* @__PURE__ */ succeed$1(Path$1)({
|
|
58837
|
-
[TypeId$
|
|
58737
|
+
[TypeId$25]: TypeId$25,
|
|
58838
58738
|
...Path.win32,
|
|
58839
58739
|
fromFileUrl,
|
|
58840
58740
|
toFileUrl
|
|
@@ -58843,15 +58743,15 @@ const layerWin32$1 = /* @__PURE__ */ succeed$1(Path$1)({
|
|
|
58843
58743
|
* @since 1.0.0
|
|
58844
58744
|
* @category Layers
|
|
58845
58745
|
*/
|
|
58846
|
-
const layer$
|
|
58847
|
-
[TypeId$
|
|
58746
|
+
const layer$5 = /* @__PURE__ */ succeed$1(Path$1)({
|
|
58747
|
+
[TypeId$25]: TypeId$25,
|
|
58848
58748
|
...Path,
|
|
58849
58749
|
fromFileUrl,
|
|
58850
58750
|
toFileUrl
|
|
58851
58751
|
});
|
|
58852
58752
|
|
|
58853
58753
|
//#endregion
|
|
58854
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
58754
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodePath.js
|
|
58855
58755
|
/**
|
|
58856
58756
|
* @since 1.0.0
|
|
58857
58757
|
*/
|
|
@@ -58859,7 +58759,7 @@ const layer$6 = /* @__PURE__ */ succeed$1(Path$1)({
|
|
|
58859
58759
|
* @since 1.0.0
|
|
58860
58760
|
* @category layer
|
|
58861
58761
|
*/
|
|
58862
|
-
const layer$
|
|
58762
|
+
const layer$4 = layer$5;
|
|
58863
58763
|
/**
|
|
58864
58764
|
* @since 1.0.0
|
|
58865
58765
|
* @category layer
|
|
@@ -58880,10 +58780,10 @@ const layerWin32 = layerWin32$1;
|
|
|
58880
58780
|
* @since 1.0.0
|
|
58881
58781
|
* @category constructors
|
|
58882
58782
|
*/
|
|
58883
|
-
const make$
|
|
58783
|
+
const make$2 = /* @__PURE__ */ fnUntraced(function* (shouldQuit = defaultShouldQuit) {
|
|
58884
58784
|
const stdin = process.stdin;
|
|
58885
58785
|
const stdout = process.stdout;
|
|
58886
|
-
const rlRef = yield* make$
|
|
58786
|
+
const rlRef = yield* make$29({ acquire: acquireRelease(sync(() => {
|
|
58887
58787
|
const rl = readline.createInterface({
|
|
58888
58788
|
input: stdin,
|
|
58889
58789
|
escapeCodeTimeout: 50
|
|
@@ -58898,7 +58798,7 @@ const make$3 = /* @__PURE__ */ fnUntraced(function* (shouldQuit = defaultShouldQ
|
|
|
58898
58798
|
const columns = sync(() => stdout.columns ?? 0);
|
|
58899
58799
|
const readInput = gen(function* () {
|
|
58900
58800
|
yield* get$3(rlRef);
|
|
58901
|
-
const queue = yield* make$
|
|
58801
|
+
const queue = yield* make$33();
|
|
58902
58802
|
const handleKeypress = (s, k) => {
|
|
58903
58803
|
const userInput = {
|
|
58904
58804
|
input: s,
|
|
@@ -58929,7 +58829,7 @@ const make$3 = /* @__PURE__ */ fnUntraced(function* (shouldQuit = defaultShouldQ
|
|
|
58929
58829
|
cause: err
|
|
58930
58830
|
}))));
|
|
58931
58831
|
}));
|
|
58932
|
-
return make$
|
|
58832
|
+
return make$26({
|
|
58933
58833
|
columns,
|
|
58934
58834
|
readInput,
|
|
58935
58835
|
readLine,
|
|
@@ -58940,13 +58840,13 @@ const make$3 = /* @__PURE__ */ fnUntraced(function* (shouldQuit = defaultShouldQ
|
|
|
58940
58840
|
* @since 1.0.0
|
|
58941
58841
|
* @category layers
|
|
58942
58842
|
*/
|
|
58943
|
-
const layer$
|
|
58843
|
+
const layer$3 = /* @__PURE__ */ effect(Terminal, /* @__PURE__ */ make$2(defaultShouldQuit));
|
|
58944
58844
|
function defaultShouldQuit(input) {
|
|
58945
58845
|
return input.key.ctrl && (input.key.name === "c" || input.key.name === "d");
|
|
58946
58846
|
}
|
|
58947
58847
|
|
|
58948
58848
|
//#endregion
|
|
58949
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
58849
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodeTerminal.js
|
|
58950
58850
|
/**
|
|
58951
58851
|
* @since 1.0.0
|
|
58952
58852
|
*/
|
|
@@ -58954,23 +58854,23 @@ function defaultShouldQuit(input) {
|
|
|
58954
58854
|
* @since 1.0.0
|
|
58955
58855
|
* @category constructors
|
|
58956
58856
|
*/
|
|
58957
|
-
const make$
|
|
58857
|
+
const make$1 = make$2;
|
|
58958
58858
|
/**
|
|
58959
58859
|
* @since 1.0.0
|
|
58960
58860
|
* @category layers
|
|
58961
58861
|
*/
|
|
58962
|
-
const layer$
|
|
58862
|
+
const layer$2 = layer$3;
|
|
58963
58863
|
|
|
58964
58864
|
//#endregion
|
|
58965
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
58865
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodeServices.js
|
|
58966
58866
|
/**
|
|
58967
58867
|
* @since 1.0.0
|
|
58968
58868
|
* @category layer
|
|
58969
58869
|
*/
|
|
58970
|
-
const layer$
|
|
58870
|
+
const layer$1 = /* @__PURE__ */ provideMerge(layer$13, /* @__PURE__ */ mergeAll(layer$8, layer$4, layer$2));
|
|
58971
58871
|
|
|
58972
58872
|
//#endregion
|
|
58973
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
58873
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodeHttpServer.js
|
|
58974
58874
|
/**
|
|
58975
58875
|
* @since 1.0.0
|
|
58976
58876
|
*/
|
|
@@ -58978,7 +58878,7 @@ const layer$2 = /* @__PURE__ */ provideMerge(layer$14, /* @__PURE__ */ mergeAll(
|
|
|
58978
58878
|
* @since 1.0.0
|
|
58979
58879
|
* @category constructors
|
|
58980
58880
|
*/
|
|
58981
|
-
const make
|
|
58881
|
+
const make = /* @__PURE__ */ fnUntraced(function* (evaluate$1, options) {
|
|
58982
58882
|
const scope$2 = yield* scope;
|
|
58983
58883
|
const server = evaluate$1();
|
|
58984
58884
|
yield* addFinalizer$1(scope$2, callback$1((resume) => {
|
|
@@ -59002,7 +58902,7 @@ const make$1 = /* @__PURE__ */ fnUntraced(function* (evaluate$1, options) {
|
|
|
59002
58902
|
const wss = yield* acquireRelease(sync(() => new import_websocket_server.default({ noServer: true })), (wss$1) => callback$1((resume) => {
|
|
59003
58903
|
wss$1.close(() => resume(void_$1));
|
|
59004
58904
|
})).pipe(provide$4(scope$2), cached);
|
|
59005
|
-
return make$
|
|
58905
|
+
return make$6({
|
|
59006
58906
|
address: typeof address === "string" ? {
|
|
59007
58907
|
_tag: "UnixAddress",
|
|
59008
58908
|
path: address
|
|
@@ -59077,7 +58977,7 @@ const makeUpgradeHandler = (lazyWss, httpEffect, options) => {
|
|
|
59077
58977
|
});
|
|
59078
58978
|
};
|
|
59079
58979
|
var ServerRequestImpl = class ServerRequestImpl extends NodeHttpIncomingMessage {
|
|
59080
|
-
[TypeId$
|
|
58980
|
+
[TypeId$1];
|
|
59081
58981
|
response;
|
|
59082
58982
|
upgradeEffect;
|
|
59083
58983
|
url;
|
|
@@ -59088,7 +58988,7 @@ var ServerRequestImpl = class ServerRequestImpl extends NodeHttpIncomingMessage
|
|
|
59088
58988
|
reason: "RequestParseError",
|
|
59089
58989
|
cause
|
|
59090
58990
|
}), remoteAddressOverride);
|
|
59091
|
-
this[TypeId$
|
|
58991
|
+
this[TypeId$1] = TypeId$1;
|
|
59092
58992
|
this.response = response;
|
|
59093
58993
|
this.upgradeEffect = upgradeEffect;
|
|
59094
58994
|
this.url = url;
|
|
@@ -59146,22 +59046,22 @@ var ServerRequestImpl = class ServerRequestImpl extends NodeHttpIncomingMessage
|
|
|
59146
59046
|
* @since 1.0.0
|
|
59147
59047
|
* @category Layers
|
|
59148
59048
|
*/
|
|
59149
|
-
const layerServer = /* @__PURE__ */ effect(HttpServer)(make
|
|
59049
|
+
const layerServer = /* @__PURE__ */ effect(HttpServer)(make);
|
|
59150
59050
|
/**
|
|
59151
59051
|
* @since 1.0.0
|
|
59152
59052
|
* @category Layers
|
|
59153
59053
|
*/
|
|
59154
|
-
const layerHttpServices = /* @__PURE__ */ mergeAll(layer$
|
|
59054
|
+
const layerHttpServices = /* @__PURE__ */ mergeAll(layer$6, layerWeak, layer$1);
|
|
59155
59055
|
/**
|
|
59156
59056
|
* @since 1.0.0
|
|
59157
59057
|
* @category Layers
|
|
59158
59058
|
*/
|
|
59159
|
-
const layer
|
|
59059
|
+
const layer = (evaluate$1, options) => mergeAll(layerServer(evaluate$1, options), layerHttpServices);
|
|
59160
59060
|
/**
|
|
59161
59061
|
* @since 1.0.0
|
|
59162
59062
|
* @category Testing
|
|
59163
59063
|
*/
|
|
59164
|
-
const layerTest = /* @__PURE__ */ layerTestClient.pipe(/* @__PURE__ */ provide$3(/* @__PURE__ */ fresh(layer$
|
|
59064
|
+
const layerTest = /* @__PURE__ */ layerTestClient.pipe(/* @__PURE__ */ provide$3(/* @__PURE__ */ fresh(layer$7).pipe(/* @__PURE__ */ provide$3(/* @__PURE__ */ succeed$1(RequestInit)({ keepalive: false })))), /* @__PURE__ */ provideMerge(/* @__PURE__ */ layer(Http.createServer, { port: 0 })));
|
|
59165
59065
|
const handleResponse = (request$3, response) => {
|
|
59166
59066
|
const nodeResponse = request$3.resolvedResponse;
|
|
59167
59067
|
if (nodeResponse.writableEnded) return void_$1;
|
|
@@ -59286,7 +59186,7 @@ const runMain$1 = /* @__PURE__ */ makeRunMain(({ fiber: fiber$2, teardown }) =>
|
|
|
59286
59186
|
});
|
|
59287
59187
|
|
|
59288
59188
|
//#endregion
|
|
59289
|
-
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@
|
|
59189
|
+
//#region node_modules/.pnpm/@effect+platform-node@https+++pkg.pr.new+Effect-TS+effect-smol+@effect+platform-node@00_214d700581c25b55b48a89169469629f/node_modules/@effect/platform-node/dist/NodeRuntime.js
|
|
59290
59190
|
/**
|
|
59291
59191
|
* @since 1.0.0
|
|
59292
59192
|
*/
|
|
@@ -59319,253 +59219,6 @@ const runMain$1 = /* @__PURE__ */ makeRunMain(({ fiber: fiber$2, teardown }) =>
|
|
|
59319
59219
|
*/
|
|
59320
59220
|
const runMain = runMain$1;
|
|
59321
59221
|
|
|
59322
|
-
//#endregion
|
|
59323
|
-
//#region node_modules/.pnpm/effect@https+++pkg.pr.new+Effect-TS+effect-smol+effect@004c047_46460a9e85a4dd43b15f8b036d8d1a97/node_modules/effect/dist/unstable/persistence/RateLimiter.js
|
|
59324
|
-
/**
|
|
59325
|
-
* @since 4.0.0
|
|
59326
|
-
* @category Type IDs
|
|
59327
|
-
*/
|
|
59328
|
-
const TypeId = "~effect/persistence/RateLimiter";
|
|
59329
|
-
/**
|
|
59330
|
-
* @since 4.0.0
|
|
59331
|
-
* @category Tags
|
|
59332
|
-
*/
|
|
59333
|
-
const RateLimiter = /* @__PURE__ */ Service(TypeId);
|
|
59334
|
-
/**
|
|
59335
|
-
* @since 4.0.0
|
|
59336
|
-
* @category Constructors
|
|
59337
|
-
*/
|
|
59338
|
-
const make = /* @__PURE__ */ gen(function* () {
|
|
59339
|
-
const store = yield* RateLimiterStore;
|
|
59340
|
-
return identity({
|
|
59341
|
-
[TypeId]: TypeId,
|
|
59342
|
-
consume(options) {
|
|
59343
|
-
const tokens = options.tokens ?? 1;
|
|
59344
|
-
const onExceeded = options.onExceeded ?? "fail";
|
|
59345
|
-
const algorithm = options.algorithm ?? "fixed-window";
|
|
59346
|
-
const window$1 = fromDurationInputUnsafe(options.window);
|
|
59347
|
-
const windowMillis = toMillis(window$1);
|
|
59348
|
-
const refillRate = divideUnsafe(window$1, options.limit);
|
|
59349
|
-
const refillRateMillis = toMillis(refillRate);
|
|
59350
|
-
if (tokens > options.limit) return onExceeded === "fail" ? fail$3(new RateLimitExceeded({
|
|
59351
|
-
key: options.key,
|
|
59352
|
-
retryAfter: window$1,
|
|
59353
|
-
limit: options.limit,
|
|
59354
|
-
remaining: 0
|
|
59355
|
-
})) : succeed({
|
|
59356
|
-
delay: window$1,
|
|
59357
|
-
limit: options.limit,
|
|
59358
|
-
remaining: 0,
|
|
59359
|
-
resetAfter: window$1
|
|
59360
|
-
});
|
|
59361
|
-
if (algorithm === "fixed-window") return flatMap(store.fixedWindow({
|
|
59362
|
-
key: options.key,
|
|
59363
|
-
tokens,
|
|
59364
|
-
refillRate,
|
|
59365
|
-
limit: onExceeded === "fail" ? options.limit : void 0
|
|
59366
|
-
}), ([count, ttl]) => {
|
|
59367
|
-
if (onExceeded === "fail") {
|
|
59368
|
-
const remaining$1 = options.limit - count;
|
|
59369
|
-
if (remaining$1 < 0) return fail$3(new RateLimitExceeded({
|
|
59370
|
-
key: options.key,
|
|
59371
|
-
retryAfter: millis(ttl),
|
|
59372
|
-
limit: options.limit,
|
|
59373
|
-
remaining: 0
|
|
59374
|
-
}));
|
|
59375
|
-
return succeed({
|
|
59376
|
-
delay: zero,
|
|
59377
|
-
limit: options.limit,
|
|
59378
|
-
remaining: remaining$1,
|
|
59379
|
-
resetAfter: millis(ttl)
|
|
59380
|
-
});
|
|
59381
|
-
}
|
|
59382
|
-
const elapsed = count * refillRateMillis - ttl;
|
|
59383
|
-
const remaining = Math.floor((count - 1) / options.limit) * windowMillis - elapsed;
|
|
59384
|
-
const delay$2 = remaining <= 0 ? zero : millis(remaining);
|
|
59385
|
-
return succeed({
|
|
59386
|
-
delay: delay$2,
|
|
59387
|
-
limit: options.limit,
|
|
59388
|
-
remaining: options.limit - count,
|
|
59389
|
-
resetAfter: times(window$1, Math.ceil(ttl / windowMillis))
|
|
59390
|
-
});
|
|
59391
|
-
});
|
|
59392
|
-
return flatMap(store.tokenBucket({
|
|
59393
|
-
key: options.key,
|
|
59394
|
-
tokens,
|
|
59395
|
-
limit: options.limit,
|
|
59396
|
-
refillRate,
|
|
59397
|
-
allowOverflow: onExceeded === "delay"
|
|
59398
|
-
}), (remaining) => {
|
|
59399
|
-
if (onExceeded === "fail") {
|
|
59400
|
-
if (remaining < 0) return fail$3(new RateLimitExceeded({
|
|
59401
|
-
key: options.key,
|
|
59402
|
-
retryAfter: times(refillRate, -remaining),
|
|
59403
|
-
limit: options.limit,
|
|
59404
|
-
remaining: 0
|
|
59405
|
-
}));
|
|
59406
|
-
return succeed({
|
|
59407
|
-
delay: zero,
|
|
59408
|
-
limit: options.limit,
|
|
59409
|
-
remaining,
|
|
59410
|
-
resetAfter: times(refillRate, options.limit - remaining)
|
|
59411
|
-
});
|
|
59412
|
-
}
|
|
59413
|
-
if (remaining >= 0) return succeed({
|
|
59414
|
-
delay: zero,
|
|
59415
|
-
limit: options.limit,
|
|
59416
|
-
remaining,
|
|
59417
|
-
resetAfter: times(refillRate, options.limit - remaining)
|
|
59418
|
-
});
|
|
59419
|
-
return succeed({
|
|
59420
|
-
delay: times(refillRate, -remaining),
|
|
59421
|
-
limit: options.limit,
|
|
59422
|
-
remaining,
|
|
59423
|
-
resetAfter: times(refillRate, options.limit - remaining)
|
|
59424
|
-
});
|
|
59425
|
-
});
|
|
59426
|
-
}
|
|
59427
|
-
});
|
|
59428
|
-
});
|
|
59429
|
-
/**
|
|
59430
|
-
* @since 4.0.0
|
|
59431
|
-
* @category Layers
|
|
59432
|
-
*/
|
|
59433
|
-
const layer = /* @__PURE__ */ effect(RateLimiter, make);
|
|
59434
|
-
/**
|
|
59435
|
-
* Access a function that sleeps when the rate limit is exceeded.
|
|
59436
|
-
*
|
|
59437
|
-
* ```ts
|
|
59438
|
-
* import { Effect } from "effect"
|
|
59439
|
-
* import { RateLimiter } from "effect/unstable/persistence"
|
|
59440
|
-
*
|
|
59441
|
-
* Effect.gen(function*() {
|
|
59442
|
-
* // Access the `sleep` function from the RateLimiter module
|
|
59443
|
-
* const sleep = yield* RateLimiter.makeSleep
|
|
59444
|
-
*
|
|
59445
|
-
* // Use the `sleep` function with specific rate limiting parameters.
|
|
59446
|
-
* // This will only sleep if the rate limit has been exceeded.
|
|
59447
|
-
* yield* sleep({
|
|
59448
|
-
* key: "some-key",
|
|
59449
|
-
* limit: 10,
|
|
59450
|
-
* window: "5 seconds",
|
|
59451
|
-
* algorithm: "fixed-window"
|
|
59452
|
-
* })
|
|
59453
|
-
* })
|
|
59454
|
-
* ```
|
|
59455
|
-
*
|
|
59456
|
-
* @since 4.0.0
|
|
59457
|
-
* @category Accessors
|
|
59458
|
-
*/
|
|
59459
|
-
const makeSleep = /* @__PURE__ */ RateLimiter.use((limiter) => succeed((options) => flatMap(limiter.consume({
|
|
59460
|
-
...options,
|
|
59461
|
-
onExceeded: "delay"
|
|
59462
|
-
}), (result$2) => {
|
|
59463
|
-
if (isZero(result$2.delay)) return succeed(result$2);
|
|
59464
|
-
return as(sleep(result$2.delay), result$2);
|
|
59465
|
-
})));
|
|
59466
|
-
/**
|
|
59467
|
-
* @since 4.0.0
|
|
59468
|
-
* @category Errors
|
|
59469
|
-
*/
|
|
59470
|
-
const ErrorTypeId = "~@effect/experimental/RateLimiter/RateLimiterError";
|
|
59471
|
-
/**
|
|
59472
|
-
* @since 4.0.0
|
|
59473
|
-
* @category Errors
|
|
59474
|
-
*/
|
|
59475
|
-
var RateLimitExceeded = class extends ErrorClass("effect/persistence/RateLimiter/RateLimitExceeded")({
|
|
59476
|
-
_tag: /* @__PURE__ */ tag("RateLimitError"),
|
|
59477
|
-
retryAfter: DurationFromMillis,
|
|
59478
|
-
key: String$1,
|
|
59479
|
-
limit: Number$1,
|
|
59480
|
-
remaining: Number$1
|
|
59481
|
-
}) {
|
|
59482
|
-
/**
|
|
59483
|
-
* @since 4.0.0
|
|
59484
|
-
*/
|
|
59485
|
-
[ErrorTypeId] = ErrorTypeId;
|
|
59486
|
-
/**
|
|
59487
|
-
* @since 4.0.0
|
|
59488
|
-
*/
|
|
59489
|
-
reason = "Exceeded";
|
|
59490
|
-
/**
|
|
59491
|
-
* @since 4.0.0
|
|
59492
|
-
*/
|
|
59493
|
-
get message() {
|
|
59494
|
-
return `Rate limit exceeded`;
|
|
59495
|
-
}
|
|
59496
|
-
};
|
|
59497
|
-
/**
|
|
59498
|
-
* @since 4.0.0
|
|
59499
|
-
* @category Errors
|
|
59500
|
-
*/
|
|
59501
|
-
var RateLimitStoreError = class extends ErrorClass("effect/persistence/RateLimiter/RateLimitStoreError")({
|
|
59502
|
-
_tag: /* @__PURE__ */ tag("RateLimitError"),
|
|
59503
|
-
message: String$1,
|
|
59504
|
-
cause: /* @__PURE__ */ optional$2(Defect)
|
|
59505
|
-
}) {
|
|
59506
|
-
/**
|
|
59507
|
-
* @since 4.0.0
|
|
59508
|
-
*/
|
|
59509
|
-
[ErrorTypeId] = ErrorTypeId;
|
|
59510
|
-
/**
|
|
59511
|
-
* @since 4.0.0
|
|
59512
|
-
*/
|
|
59513
|
-
reason = "StoreError";
|
|
59514
|
-
};
|
|
59515
|
-
/**
|
|
59516
|
-
* @since 4.0.0
|
|
59517
|
-
* @category RateLimiterStore
|
|
59518
|
-
*/
|
|
59519
|
-
var RateLimiterStore = class extends Service()("effect/persistence/RateLimiter/RateLimiterStore") {};
|
|
59520
|
-
/**
|
|
59521
|
-
* @since 4.0.0
|
|
59522
|
-
* @category RateLimiterStore
|
|
59523
|
-
*/
|
|
59524
|
-
const layerStoreMemory = /* @__PURE__ */ sync$1(RateLimiterStore, () => {
|
|
59525
|
-
const fixedCounters = /* @__PURE__ */ new Map();
|
|
59526
|
-
const tokenBuckets = /* @__PURE__ */ new Map();
|
|
59527
|
-
return RateLimiterStore.of({
|
|
59528
|
-
fixedWindow: (options) => clockWith((clock) => sync(() => {
|
|
59529
|
-
const refillRateMillis = toMillis(options.refillRate);
|
|
59530
|
-
const now$2 = clock.currentTimeMillisUnsafe();
|
|
59531
|
-
let counter = fixedCounters.get(options.key);
|
|
59532
|
-
if (!counter || counter.expiresAt <= now$2) {
|
|
59533
|
-
counter = {
|
|
59534
|
-
count: 0,
|
|
59535
|
-
expiresAt: now$2
|
|
59536
|
-
};
|
|
59537
|
-
fixedCounters.set(options.key, counter);
|
|
59538
|
-
}
|
|
59539
|
-
if (options.limit && counter.count + options.tokens > options.limit) return [counter.count + options.tokens, counter.expiresAt - now$2];
|
|
59540
|
-
counter.count += options.tokens;
|
|
59541
|
-
counter.expiresAt += refillRateMillis * options.tokens;
|
|
59542
|
-
return [counter.count, counter.expiresAt - now$2];
|
|
59543
|
-
})),
|
|
59544
|
-
tokenBucket: (options) => clockWith((clock) => sync(() => {
|
|
59545
|
-
const refillRateMillis = toMillis(options.refillRate);
|
|
59546
|
-
const now$2 = clock.currentTimeMillisUnsafe();
|
|
59547
|
-
let bucket = tokenBuckets.get(options.key);
|
|
59548
|
-
if (!bucket) {
|
|
59549
|
-
bucket = {
|
|
59550
|
-
tokens: options.limit,
|
|
59551
|
-
lastRefill: now$2
|
|
59552
|
-
};
|
|
59553
|
-
tokenBuckets.set(options.key, bucket);
|
|
59554
|
-
} else {
|
|
59555
|
-
const elapsed = now$2 - bucket.lastRefill;
|
|
59556
|
-
const tokensToAdd = Math.floor(elapsed / refillRateMillis);
|
|
59557
|
-
if (tokensToAdd > 0) {
|
|
59558
|
-
bucket.tokens = Math.min(options.limit, bucket.tokens + tokensToAdd);
|
|
59559
|
-
bucket.lastRefill += tokensToAdd * refillRateMillis;
|
|
59560
|
-
}
|
|
59561
|
-
}
|
|
59562
|
-
const newTokenCount = bucket.tokens - options.tokens;
|
|
59563
|
-
if (options.allowOverflow || newTokenCount >= 0) bucket.tokens = newTokenCount;
|
|
59564
|
-
return newTokenCount;
|
|
59565
|
-
}))
|
|
59566
|
-
});
|
|
59567
|
-
});
|
|
59568
|
-
|
|
59569
59222
|
//#endregion
|
|
59570
59223
|
//#region src/Kvs.ts
|
|
59571
59224
|
const layerKvs = layerFileSystem(".lalph/config");
|
|
@@ -59611,7 +59264,7 @@ const allCliAgents = [opencode, claude];
|
|
|
59611
59264
|
//#region src/Settings.ts
|
|
59612
59265
|
var Settings = class extends Service()("lalph/Settings", { make: gen(function* () {
|
|
59613
59266
|
const store = prefix(yield* KeyValueStore, "settings.");
|
|
59614
|
-
const cache = yield* make$
|
|
59267
|
+
const cache = yield* make$24({
|
|
59615
59268
|
lookup(setting) {
|
|
59616
59269
|
const s = toSchemaStore(store, setting.schema);
|
|
59617
59270
|
return orDie$2(s.get(setting.name));
|
|
@@ -133790,7 +133443,7 @@ var TokenManager$1 = class extends Service()("lalph/Linear/TokenManager", { make
|
|
|
133790
133443
|
});
|
|
133791
133444
|
const get$8 = makeSemaphoreUnsafe(1).withPermit(getNoLock);
|
|
133792
133445
|
const pkce = gen(function* () {
|
|
133793
|
-
const deferred = yield* make$
|
|
133446
|
+
const deferred = yield* make$44();
|
|
133794
133447
|
const CallbackRoute = add("GET", "/callback", gen(function* () {
|
|
133795
133448
|
const params$1 = yield* callbackParams;
|
|
133796
133449
|
yield* succeed$2(deferred, params$1);
|
|
@@ -133806,7 +133459,7 @@ var TokenManager$1 = class extends Service()("lalph/Linear/TokenManager", { make
|
|
|
133806
133459
|
yield* serve(CallbackRoute, {
|
|
133807
133460
|
disableListenLog: true,
|
|
133808
133461
|
disableLogger: true
|
|
133809
|
-
}).pipe(provide$3(layer
|
|
133462
|
+
}).pipe(provide$3(layer(createServer, { port: 34338 })), build, orDie$2);
|
|
133810
133463
|
const redirectUri = `http://localhost:34338/callback`;
|
|
133811
133464
|
const verifier = crypto.randomUUID();
|
|
133812
133465
|
const verifierSha256 = yield* promise(() => crypto.subtle.digest("SHA-256", new TextEncoder().encode(verifier)));
|
|
@@ -133833,7 +133486,7 @@ var TokenManager$1 = class extends Service()("lalph/Linear/TokenManager", { make
|
|
|
133833
133486
|
}, option);
|
|
133834
133487
|
return { get: get$8 };
|
|
133835
133488
|
}) }) {
|
|
133836
|
-
static layer = effect(this, this.make).pipe(provide$3([layerKvs, layer$
|
|
133489
|
+
static layer = effect(this, this.make).pipe(provide$3([layerKvs, layer$7]));
|
|
133837
133490
|
};
|
|
133838
133491
|
var AccessToken$1 = class AccessToken$1 extends Class("lalph/Linear/AccessToken")({
|
|
133839
133492
|
token: String$1,
|
|
@@ -133883,7 +133536,7 @@ var NoMoreWork = class extends ErrorClass("lalph/Prd/NoMoreWork")({ _tag: tag("N
|
|
|
133883
133536
|
//#region src/Linear.ts
|
|
133884
133537
|
var Linear = class extends Service()("lalph/Linear", { make: gen(function* () {
|
|
133885
133538
|
const tokens = yield* TokenManager$1;
|
|
133886
|
-
const clients = yield* make$
|
|
133539
|
+
const clients = yield* make$31({
|
|
133887
133540
|
lookup: (token) => succeed(new LinearClient({ accessToken: token })),
|
|
133888
133541
|
idleTimeToLive: "1 minute"
|
|
133889
133542
|
});
|
|
@@ -140159,7 +139812,7 @@ var TokenManager = class extends Service()("lalph/Github/TokenManager", { make:
|
|
|
140159
139812
|
}, option);
|
|
140160
139813
|
return { get: get$8 };
|
|
140161
139814
|
}) }) {
|
|
140162
|
-
static layer = effect(this, this.make).pipe(provide$3([layerKvs, layer$
|
|
139815
|
+
static layer = effect(this, this.make).pipe(provide$3([layerKvs, layer$7]));
|
|
140163
139816
|
};
|
|
140164
139817
|
var AccessToken = class AccessToken extends Class("lalph/Github/AccessToken")({
|
|
140165
139818
|
token: String$1,
|
|
@@ -140199,7 +139852,7 @@ const PollResponse = Union([TokenResponse, PollErrorResponse]);
|
|
|
140199
139852
|
var GithubError = class extends TaggedError("GithubError") {};
|
|
140200
139853
|
var Github = class extends Service()("lalph/Github", { make: gen(function* () {
|
|
140201
139854
|
const tokens = yield* TokenManager;
|
|
140202
|
-
const clients = yield* make$
|
|
139855
|
+
const clients = yield* make$31({
|
|
140203
139856
|
lookup: (token) => succeed(new Octokit({ auth: token })),
|
|
140204
139857
|
idleTimeToLive: "1 minute"
|
|
140205
139858
|
});
|
|
@@ -140226,7 +139879,7 @@ var Github = class extends Service()("lalph/Github", { make: gen(function* () {
|
|
|
140226
139879
|
};
|
|
140227
139880
|
const GithubIssueSource = effect(IssueSource, gen(function* () {
|
|
140228
139881
|
const github = yield* Github;
|
|
140229
|
-
const [owner, repo] = (yield* make$
|
|
139882
|
+
const [owner, repo] = (yield* make$21`gh repo view --json nameWithOwner -q ${".nameWithOwner"}`.pipe(string, option, flatMap((o) => o.pipe(map$10(trim), filter$5(isNonEmpty), fromOption)), mapError$2((_) => new GithubRepoNotFound()))).split("/");
|
|
140230
139883
|
const labelFilter$1 = yield* getOrSelectLabel;
|
|
140231
139884
|
const hasLabel = (label, name) => label.some((l) => typeof l === "string" ? l === name : l.name === name);
|
|
140232
139885
|
const listOpenBlockedBy = (issueId) => github.stream((rest, page) => rest.issues.listDependenciesBlockedBy({
|
|
@@ -140594,12 +140247,12 @@ var Worktree = class extends Service()("lalph/Worktree", { make: gen(function* (
|
|
|
140594
140247
|
const pathService = yield* Path$1;
|
|
140595
140248
|
const directory = yield* fs.makeTempDirectory();
|
|
140596
140249
|
yield* addFinalizer(fnUntraced(function* () {
|
|
140597
|
-
yield* execIgnore(make$
|
|
140250
|
+
yield* execIgnore(make$21`git worktree remove --force ${directory}`);
|
|
140598
140251
|
}));
|
|
140599
|
-
yield* make$
|
|
140252
|
+
yield* make$21`git worktree add ${directory} -d HEAD`.pipe(exitCode);
|
|
140600
140253
|
yield* fs.makeDirectory(pathService.join(directory, ".lalph"), { recursive: true });
|
|
140601
140254
|
const setupPath = pathService.resolve(pathService.join(".lalph-setup.sh"));
|
|
140602
|
-
if (yield* fs.exists(setupPath)) yield* make$
|
|
140255
|
+
if (yield* fs.exists(setupPath)) yield* make$21({
|
|
140603
140256
|
cwd: directory,
|
|
140604
140257
|
extendEnv: true,
|
|
140605
140258
|
shell: process.env.SHELL ?? true
|
|
@@ -140625,19 +140278,17 @@ var Prd = class extends Service()("lalph/Prd", { make: gen(function* () {
|
|
|
140625
140278
|
yield* fs.watch(lalphDir).pipe(buffer({
|
|
140626
140279
|
capacity: 1,
|
|
140627
140280
|
strategy: "dropping"
|
|
140628
|
-
}), runForEach((_) => ignore(sync$
|
|
140629
|
-
const sync$
|
|
140281
|
+
}), runForEach((_) => ignore(sync$2)), retry$1(forever$1), forkScoped);
|
|
140282
|
+
const sync$2 = gen(function* () {
|
|
140630
140283
|
const yaml = yield* fs.readFileString(prdFile);
|
|
140631
140284
|
const updated = PrdIssue.arrayFromYaml(yaml);
|
|
140632
140285
|
if (!(updated.length !== current.length || updated.some((u, i) => u.isChangedComparedTo(current[i])))) return;
|
|
140633
140286
|
const githubPrs = /* @__PURE__ */ new Map();
|
|
140634
140287
|
const toRemove = new Set(current.filter((i) => i.id !== null).map((i) => i.id));
|
|
140635
|
-
let createdIssues = 0;
|
|
140636
140288
|
for (const issue of updated) {
|
|
140637
140289
|
toRemove.delete(issue.id);
|
|
140638
140290
|
if (issue.id === null) {
|
|
140639
140291
|
yield* source.createIssue(issue);
|
|
140640
|
-
createdIssues++;
|
|
140641
140292
|
continue;
|
|
140642
140293
|
}
|
|
140643
140294
|
if (issue.githubPrNumber) githubPrs.set(issue.id, issue.githubPrNumber);
|
|
@@ -140724,20 +140375,24 @@ const run = fnUntraced(function* (options) {
|
|
|
140724
140375
|
const promptGen = yield* PromptGen;
|
|
140725
140376
|
const cliAgent = yield* getOrSelectCliAgent;
|
|
140726
140377
|
const prd = yield* Prd;
|
|
140727
|
-
if (isSome(options.targetBranch)) yield* make$
|
|
140378
|
+
if (isSome(options.targetBranch)) yield* make$21`git checkout ${`origin/${options.targetBranch.value}`}`.pipe(exitCode);
|
|
140728
140379
|
const chooseCommand = cliAgent.command({
|
|
140729
140380
|
prompt: promptGen.promptChoose,
|
|
140730
140381
|
prdFilePath: pathService.join(".lalph", "prd.yml")
|
|
140731
140382
|
});
|
|
140732
|
-
yield* make$
|
|
140383
|
+
yield* make$21(chooseCommand[0], chooseCommand.slice(1), {
|
|
140733
140384
|
cwd: worktree.directory,
|
|
140734
140385
|
extendEnv: true,
|
|
140735
140386
|
stdout: "inherit",
|
|
140736
140387
|
stderr: "inherit",
|
|
140737
140388
|
stdin: "inherit"
|
|
140738
|
-
}).pipe(exitCode
|
|
140389
|
+
}).pipe(exitCode, timeoutOrElse({
|
|
140390
|
+
duration: options.stallTimeout,
|
|
140391
|
+
onTimeout: () => fail$3(new RunnerStalled())
|
|
140392
|
+
}));
|
|
140739
140393
|
const taskJson = yield* fs.readFileString(pathService.join(worktree.directory, ".lalph", "task.json"));
|
|
140740
140394
|
const task = yield* decodeEffect(ChosenTask)(taskJson);
|
|
140395
|
+
yield* completeWith(options.startedDeferred, void_$1);
|
|
140741
140396
|
const cliCommand = cliAgent.command({
|
|
140742
140397
|
prompt: promptGen.prompt({
|
|
140743
140398
|
taskId: task.id,
|
|
@@ -140745,7 +140400,7 @@ const run = fnUntraced(function* (options) {
|
|
|
140745
140400
|
}),
|
|
140746
140401
|
prdFilePath: pathService.join(".lalph", "prd.yml")
|
|
140747
140402
|
});
|
|
140748
|
-
const handle = yield* make$
|
|
140403
|
+
const handle = yield* make$21(cliCommand[0], cliCommand.slice(1), {
|
|
140749
140404
|
cwd: worktree.directory,
|
|
140750
140405
|
extendEnv: true,
|
|
140751
140406
|
stdout: "pipe",
|
|
@@ -140773,8 +140428,8 @@ const run = fnUntraced(function* (options) {
|
|
|
140773
140428
|
issueId: task.id
|
|
140774
140429
|
});
|
|
140775
140430
|
else if (options.autoMerge) for (const pr of prs) {
|
|
140776
|
-
if (isSome(options.targetBranch)) yield* make$
|
|
140777
|
-
yield* make$
|
|
140431
|
+
if (isSome(options.targetBranch)) yield* make$21`gh pr edit ${pr} --base ${options.targetBranch.value}`.pipe(exitCode);
|
|
140432
|
+
yield* make$21`gh pr merge ${pr} -sd`.pipe(exitCode);
|
|
140778
140433
|
}
|
|
140779
140434
|
}, onError(fnUntraced(function* () {
|
|
140780
140435
|
const prd = yield* Prd;
|
|
@@ -140804,7 +140459,7 @@ const plan = gen(function* () {
|
|
|
140804
140459
|
prompt: promptGen.planPrompt(idea),
|
|
140805
140460
|
prdFilePath: pathService.join(worktree.directory, ".lalph", "prd.yml")
|
|
140806
140461
|
});
|
|
140807
|
-
const exitCode$1 = yield* make$
|
|
140462
|
+
const exitCode$1 = yield* make$21(cliCommand[0], cliCommand.slice(1), {
|
|
140808
140463
|
cwd: worktree.directory,
|
|
140809
140464
|
extendEnv: true,
|
|
140810
140465
|
env: { PWD: worktree.directory },
|
|
@@ -140832,7 +140487,7 @@ const planContinue = gen(function* () {
|
|
|
140832
140487
|
prompt: promptGen.planContinuePrompt,
|
|
140833
140488
|
prdFilePath: pathService.join(worktree.directory, ".lalph", "prd.yml")
|
|
140834
140489
|
});
|
|
140835
|
-
const exitCode$1 = yield* make$
|
|
140490
|
+
const exitCode$1 = yield* make$21(cliCommand[0], cliCommand.slice(1), {
|
|
140836
140491
|
cwd: worktree.directory,
|
|
140837
140492
|
extendEnv: true,
|
|
140838
140493
|
env: { PWD: worktree.directory },
|
|
@@ -140851,17 +140506,17 @@ const planContinue = gen(function* () {
|
|
|
140851
140506
|
|
|
140852
140507
|
//#endregion
|
|
140853
140508
|
//#region src/cli.ts
|
|
140854
|
-
const selectAgent = make$
|
|
140855
|
-
const selectSource = make$
|
|
140856
|
-
const planMode = make$
|
|
140857
|
-
const planModeContinue = make$
|
|
140509
|
+
const selectAgent = make$25("agent").pipe(withDescription("Select the CLI agent to use"), withHandler(() => selectCliAgent));
|
|
140510
|
+
const selectSource = make$25("source").pipe(withDescription("Select the issue source to use"), withHandler(() => selectIssueSource));
|
|
140511
|
+
const planMode = make$25("plan").pipe(withDescription("Iterate on an issue plan and create PRD tasks"), withHandler(() => plan), provide(CurrentIssueSource.layer));
|
|
140512
|
+
const planModeContinue = make$25("plan-continue").pipe(withDescription("Iterate on an issue plan and create PRD tasks"), withHandler(() => planContinue), provide(CurrentIssueSource.layer));
|
|
140858
140513
|
const iterations = integer("iterations").pipe(withDescription$1("Number of iterations to run, defaults to unlimited"), withAlias("i"), withDefault(Number.POSITIVE_INFINITY));
|
|
140859
140514
|
const concurrency = integer("concurrency").pipe(withDescription$1("Number of concurrent agents, defaults to 1"), withAlias("c"), withDefault(1));
|
|
140860
140515
|
const autoMerge = boolean("auto-merge").pipe(withAlias("a"), withDescription$1("Automatically merge eligible PRs"));
|
|
140861
140516
|
const targetBranch = string$1("target-branch").pipe(withDescription$1("Target branch for PRs"), withAlias("b"), optional);
|
|
140862
140517
|
const maxIterationMinutes = integer("max-minutes").pipe(withDescription$1("Maximum number of minutes to allow an iteration to run"), withDefault(60));
|
|
140863
140518
|
const stallMinutes = integer("stall-minutes").pipe(withDescription$1("If no activity occurs for this many minutes, the iteration will be stopped"), withDefault(5));
|
|
140864
|
-
const root = make$
|
|
140519
|
+
const root = make$25("lalph", {
|
|
140865
140520
|
iterations,
|
|
140866
140521
|
concurrency,
|
|
140867
140522
|
autoMerge,
|
|
@@ -140874,26 +140529,17 @@ const root = make$26("lalph", {
|
|
|
140874
140529
|
const iterationsDisplay = isFinite$3 ? iterations$1 : "unlimited";
|
|
140875
140530
|
const runConcurrency = Math.max(1, concurrency$1);
|
|
140876
140531
|
const semaphore = makeSemaphoreUnsafe(runConcurrency);
|
|
140877
|
-
const
|
|
140878
|
-
const fibers = yield* make$24();
|
|
140532
|
+
const fibers = yield* make$23();
|
|
140879
140533
|
yield* log$1(`Executing ${iterationsDisplay} iteration(s) with concurrency ${runConcurrency}`);
|
|
140880
140534
|
let iteration = 0;
|
|
140881
|
-
makeUnsafe$3(0);
|
|
140882
|
-
let inProgress = 0;
|
|
140883
140535
|
let quit = false;
|
|
140884
140536
|
while (true) {
|
|
140885
140537
|
yield* semaphore.take(1);
|
|
140886
140538
|
if (quit || isFinite$3 && iteration >= iterations$1) break;
|
|
140887
140539
|
const currentIteration = iteration;
|
|
140888
|
-
|
|
140889
|
-
key: "lalph-runner",
|
|
140890
|
-
algorithm: "fixed-window",
|
|
140891
|
-
limit: 1,
|
|
140892
|
-
window: "30 seconds"
|
|
140893
|
-
});
|
|
140894
|
-
yield* now;
|
|
140895
|
-
inProgress++;
|
|
140540
|
+
const startedDeferred = yield* make$44();
|
|
140896
140541
|
yield* checkForWork.pipe(andThen(run({
|
|
140542
|
+
startedDeferred,
|
|
140897
140543
|
autoMerge: autoMerge$1,
|
|
140898
140544
|
targetBranch: targetBranch$1,
|
|
140899
140545
|
stallTimeout: minutes(stallMinutes$1)
|
|
@@ -140909,10 +140555,8 @@ const root = make$26("lalph", {
|
|
|
140909
140555
|
quit = true;
|
|
140910
140556
|
return void_$1;
|
|
140911
140557
|
}
|
|
140912
|
-
}), annotateLogs({ iteration: currentIteration }), ensuring(
|
|
140913
|
-
|
|
140914
|
-
return semaphore.release(1);
|
|
140915
|
-
})), run$1(fibers));
|
|
140558
|
+
}), annotateLogs({ iteration: currentIteration }), ensuring(semaphore.release(1)), ensuring(completeWith(startedDeferred, void_$1)), run$1(fibers));
|
|
140559
|
+
yield* _await(startedDeferred);
|
|
140916
140560
|
iteration++;
|
|
140917
140561
|
}
|
|
140918
140562
|
yield* awaitEmpty(fibers);
|
|
@@ -140922,7 +140566,7 @@ const root = make$26("lalph", {
|
|
|
140922
140566
|
selectSource,
|
|
140923
140567
|
selectAgent
|
|
140924
140568
|
]));
|
|
140925
|
-
run$2(root, { version: "0.1.0" }).pipe(provide$1(
|
|
140569
|
+
run$2(root, { version: "0.1.0" }).pipe(provide$1(Settings.layer.pipe(provideMerge(layer$1))), runMain);
|
|
140926
140570
|
|
|
140927
140571
|
//#endregion
|
|
140928
140572
|
export { };
|