@nlozgachev/pipelined 0.53.0 → 0.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{Validation-CvCuj9D2.d.mts → Validation-C5Qz1R0S.d.mts} +14 -14
- package/dist/{Validation-wDL4nEcO.d.ts → Validation-yOcgYn9K.d.ts} +14 -14
- package/dist/core.d.mts +4 -4
- package/dist/core.d.ts +4 -4
- package/dist/data.d.mts +1 -1
- package/dist/data.d.ts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -325,7 +325,7 @@ declare namespace Maybe {
|
|
|
325
325
|
* pipe(Maybe.make.none<string>(), Maybe.getOrElse(() => null)); // null — typed as string | null
|
|
326
326
|
* ```
|
|
327
327
|
*/
|
|
328
|
-
const getOrElse: <
|
|
328
|
+
const getOrElse: <B>(defaultValue: () => B) => <A>(data: Maybe<A>) => A | B;
|
|
329
329
|
/**
|
|
330
330
|
* Executes a side effect on the value without changing the Maybe.
|
|
331
331
|
* Useful for logging or debugging.
|
|
@@ -361,7 +361,7 @@ declare namespace Maybe {
|
|
|
361
361
|
* pipe(Maybe.make.some(10), Maybe.recover(() => Maybe.make.some(42))); // Some(10)
|
|
362
362
|
* ```
|
|
363
363
|
*/
|
|
364
|
-
const recover: <
|
|
364
|
+
const recover: <B>(fallback: () => Maybe<B>) => <A>(data: Maybe<A>) => Maybe<A | B>;
|
|
365
365
|
/**
|
|
366
366
|
* Applies a function wrapped in a Maybe to a value wrapped in a Maybe.
|
|
367
367
|
*
|
|
@@ -685,7 +685,7 @@ declare namespace Result {
|
|
|
685
685
|
* pipe(Result.make.err("error"), Result.getOrElse(() => null)); // null — typed as number | null
|
|
686
686
|
* ```
|
|
687
687
|
*/
|
|
688
|
-
const getOrElse: <
|
|
688
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: Result<E, A>) => A | B;
|
|
689
689
|
/**
|
|
690
690
|
* Executes a side effect on the success value without changing the Result.
|
|
691
691
|
* Useful for logging or debugging.
|
|
@@ -782,7 +782,7 @@ declare namespace Result {
|
|
|
782
782
|
* Recovers from an error by providing a fallback Result.
|
|
783
783
|
* The fallback can produce a different success type, widening the result to `Result<E, A | B>`.
|
|
784
784
|
*/
|
|
785
|
-
const recover: <E,
|
|
785
|
+
const recover: <E, B>(fallback: (e: E) => Result<E, B>) => <A>(data: Result<E, A>) => Result<E, A | B>;
|
|
786
786
|
/**
|
|
787
787
|
* Recovers from an error unless the predicate `isBlocked` returns true for that error.
|
|
788
788
|
* The fallback can produce a different success type, widening the result to `Result<E, A | B>`.
|
|
@@ -795,7 +795,7 @@ declare namespace Result {
|
|
|
795
795
|
* ); // Ok(0)
|
|
796
796
|
* ```
|
|
797
797
|
*/
|
|
798
|
-
const recoverUnless: <E,
|
|
798
|
+
const recoverUnless: <E, B>(isBlocked: (e: E) => boolean, fallback: () => Result<E, B>) => <A>(data: Result<E, A>) => Result<E, A | B>;
|
|
799
799
|
namespace to {
|
|
800
800
|
/**
|
|
801
801
|
* Converts a Result to a Maybe.
|
|
@@ -1062,7 +1062,7 @@ declare namespace TaskMaybe {
|
|
|
1062
1062
|
* Returns the value or a default if the Task.Maybe resolves to None.
|
|
1063
1063
|
* The default can be a different type, widening the result to `Task<A | B>`.
|
|
1064
1064
|
*/
|
|
1065
|
-
const getOrElse: <
|
|
1065
|
+
const getOrElse: <B>(defaultValue: () => B) => <A>(data: TaskMaybe<A>) => Task<A | B>;
|
|
1066
1066
|
/**
|
|
1067
1067
|
* Executes a side effect on the value without changing the Task.Maybe.
|
|
1068
1068
|
* Useful for logging or debugging.
|
|
@@ -1118,7 +1118,7 @@ declare namespace TaskMaybe {
|
|
|
1118
1118
|
* ); // Task.Maybe(42)
|
|
1119
1119
|
* ```
|
|
1120
1120
|
*/
|
|
1121
|
-
const recover: <
|
|
1121
|
+
const recover: <B>(fallback: () => TaskMaybe<B>) => <A>(data: TaskMaybe<A>) => TaskMaybe<A | B>;
|
|
1122
1122
|
/**
|
|
1123
1123
|
* Combines a record of Task.Maybes into a single Task.Maybe of a record.
|
|
1124
1124
|
* Evaluates fields in parallel and returns None if any task resolves to None.
|
|
@@ -1270,12 +1270,12 @@ declare namespace TaskResult {
|
|
|
1270
1270
|
* Recovers from an error by providing a fallback Task.Result.
|
|
1271
1271
|
* The fallback can produce a different success type, widening the result to `Task.Result<E, A | B>`.
|
|
1272
1272
|
*/
|
|
1273
|
-
const recover: <E,
|
|
1273
|
+
const recover: <E, B>(fallback: (e: E) => TaskResult<E, B>) => <A>(data: TaskResult<E, A>) => TaskResult<E, A | B>;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* Returns the success value or a default value if the Task.Result is an error.
|
|
1276
1276
|
* The default can be a different type, widening the result to `Task<A | B>`.
|
|
1277
1277
|
*/
|
|
1278
|
-
const getOrElse: <
|
|
1278
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: TaskResult<E, A>) => Task<A | B>;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* Executes a side effect on the success value without changing the Task.Result.
|
|
1281
1281
|
* Useful for logging or debugging.
|
|
@@ -1566,7 +1566,7 @@ declare namespace TaskValidation {
|
|
|
1566
1566
|
* Returns the success value or a default value if the Task.Validation is failed.
|
|
1567
1567
|
* The default can be a different type, widening the result to `Task<A | B>`.
|
|
1568
1568
|
*/
|
|
1569
|
-
const getOrElse: <
|
|
1569
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: TaskValidation<E, A>) => Task<A | B>;
|
|
1570
1570
|
/**
|
|
1571
1571
|
* Executes a side effect on the success value without changing the Task.Validation.
|
|
1572
1572
|
* Useful for logging or debugging.
|
|
@@ -1577,7 +1577,7 @@ declare namespace TaskValidation {
|
|
|
1577
1577
|
* The fallback receives the accumulated error list so callers can inspect which errors occurred.
|
|
1578
1578
|
* The fallback can produce a different success type, widening the result to `Task.Validation<E, A | B>`.
|
|
1579
1579
|
*/
|
|
1580
|
-
const recover: <E,
|
|
1580
|
+
const recover: <E, B>(fallback: (errors: NonEmptyArr<E>) => TaskValidation<E, B>) => <A>(data: TaskValidation<E, A>) => TaskValidation<E, A | B>;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* Runs two Task.Validations concurrently and combines their results into a tuple.
|
|
1583
1583
|
* If both are Passed, returns Passed with both values. If either fails, accumulates
|
|
@@ -2255,7 +2255,7 @@ declare namespace Validation {
|
|
|
2255
2255
|
* pipe(Validation.make.failed("oops"), Validation.getOrElse(() => null)); // null — typed as number | null
|
|
2256
2256
|
* ```
|
|
2257
2257
|
*/
|
|
2258
|
-
const getOrElse: <
|
|
2258
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: Validation<E, A>) => A | B;
|
|
2259
2259
|
/**
|
|
2260
2260
|
* Executes a side effect on the success value without changing the Validation.
|
|
2261
2261
|
*
|
|
@@ -2288,7 +2288,7 @@ declare namespace Validation {
|
|
|
2288
2288
|
* The fallback receives the accumulated error list so callers can inspect which errors occurred.
|
|
2289
2289
|
* The fallback can produce a different success type, widening the result to `Validation<E, A | B>`.
|
|
2290
2290
|
*/
|
|
2291
|
-
const recover: <E,
|
|
2291
|
+
const recover: <E, B>(fallback: (errors: NonEmptyArr<E>) => Validation<E, B>) => <A>(data: Validation<E, A>) => Validation<E, A | B>;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* Recovers from a Failed state unless `isBlocked` returns true for any of the accumulated errors.
|
|
2294
2294
|
* The fallback can produce a different success type, widening the result to `Validation<E, A | B>`.
|
|
@@ -2301,7 +2301,7 @@ declare namespace Validation {
|
|
|
2301
2301
|
* ); // Passed(0)
|
|
2302
2302
|
* ```
|
|
2303
2303
|
*/
|
|
2304
|
-
const recoverUnless: <E,
|
|
2304
|
+
const recoverUnless: <E, B>(isBlocked: (e: E) => boolean, fallback: () => Validation<E, B>) => <A>(data: Validation<E, A>) => Validation<E, A | B>;
|
|
2305
2305
|
namespace to {
|
|
2306
2306
|
/**
|
|
2307
2307
|
* Converts a Validation to a Result.
|
|
@@ -325,7 +325,7 @@ declare namespace Maybe {
|
|
|
325
325
|
* pipe(Maybe.make.none<string>(), Maybe.getOrElse(() => null)); // null — typed as string | null
|
|
326
326
|
* ```
|
|
327
327
|
*/
|
|
328
|
-
const getOrElse: <
|
|
328
|
+
const getOrElse: <B>(defaultValue: () => B) => <A>(data: Maybe<A>) => A | B;
|
|
329
329
|
/**
|
|
330
330
|
* Executes a side effect on the value without changing the Maybe.
|
|
331
331
|
* Useful for logging or debugging.
|
|
@@ -361,7 +361,7 @@ declare namespace Maybe {
|
|
|
361
361
|
* pipe(Maybe.make.some(10), Maybe.recover(() => Maybe.make.some(42))); // Some(10)
|
|
362
362
|
* ```
|
|
363
363
|
*/
|
|
364
|
-
const recover: <
|
|
364
|
+
const recover: <B>(fallback: () => Maybe<B>) => <A>(data: Maybe<A>) => Maybe<A | B>;
|
|
365
365
|
/**
|
|
366
366
|
* Applies a function wrapped in a Maybe to a value wrapped in a Maybe.
|
|
367
367
|
*
|
|
@@ -685,7 +685,7 @@ declare namespace Result {
|
|
|
685
685
|
* pipe(Result.make.err("error"), Result.getOrElse(() => null)); // null — typed as number | null
|
|
686
686
|
* ```
|
|
687
687
|
*/
|
|
688
|
-
const getOrElse: <
|
|
688
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: Result<E, A>) => A | B;
|
|
689
689
|
/**
|
|
690
690
|
* Executes a side effect on the success value without changing the Result.
|
|
691
691
|
* Useful for logging or debugging.
|
|
@@ -782,7 +782,7 @@ declare namespace Result {
|
|
|
782
782
|
* Recovers from an error by providing a fallback Result.
|
|
783
783
|
* The fallback can produce a different success type, widening the result to `Result<E, A | B>`.
|
|
784
784
|
*/
|
|
785
|
-
const recover: <E,
|
|
785
|
+
const recover: <E, B>(fallback: (e: E) => Result<E, B>) => <A>(data: Result<E, A>) => Result<E, A | B>;
|
|
786
786
|
/**
|
|
787
787
|
* Recovers from an error unless the predicate `isBlocked` returns true for that error.
|
|
788
788
|
* The fallback can produce a different success type, widening the result to `Result<E, A | B>`.
|
|
@@ -795,7 +795,7 @@ declare namespace Result {
|
|
|
795
795
|
* ); // Ok(0)
|
|
796
796
|
* ```
|
|
797
797
|
*/
|
|
798
|
-
const recoverUnless: <E,
|
|
798
|
+
const recoverUnless: <E, B>(isBlocked: (e: E) => boolean, fallback: () => Result<E, B>) => <A>(data: Result<E, A>) => Result<E, A | B>;
|
|
799
799
|
namespace to {
|
|
800
800
|
/**
|
|
801
801
|
* Converts a Result to a Maybe.
|
|
@@ -1062,7 +1062,7 @@ declare namespace TaskMaybe {
|
|
|
1062
1062
|
* Returns the value or a default if the Task.Maybe resolves to None.
|
|
1063
1063
|
* The default can be a different type, widening the result to `Task<A | B>`.
|
|
1064
1064
|
*/
|
|
1065
|
-
const getOrElse: <
|
|
1065
|
+
const getOrElse: <B>(defaultValue: () => B) => <A>(data: TaskMaybe<A>) => Task<A | B>;
|
|
1066
1066
|
/**
|
|
1067
1067
|
* Executes a side effect on the value without changing the Task.Maybe.
|
|
1068
1068
|
* Useful for logging or debugging.
|
|
@@ -1118,7 +1118,7 @@ declare namespace TaskMaybe {
|
|
|
1118
1118
|
* ); // Task.Maybe(42)
|
|
1119
1119
|
* ```
|
|
1120
1120
|
*/
|
|
1121
|
-
const recover: <
|
|
1121
|
+
const recover: <B>(fallback: () => TaskMaybe<B>) => <A>(data: TaskMaybe<A>) => TaskMaybe<A | B>;
|
|
1122
1122
|
/**
|
|
1123
1123
|
* Combines a record of Task.Maybes into a single Task.Maybe of a record.
|
|
1124
1124
|
* Evaluates fields in parallel and returns None if any task resolves to None.
|
|
@@ -1270,12 +1270,12 @@ declare namespace TaskResult {
|
|
|
1270
1270
|
* Recovers from an error by providing a fallback Task.Result.
|
|
1271
1271
|
* The fallback can produce a different success type, widening the result to `Task.Result<E, A | B>`.
|
|
1272
1272
|
*/
|
|
1273
|
-
const recover: <E,
|
|
1273
|
+
const recover: <E, B>(fallback: (e: E) => TaskResult<E, B>) => <A>(data: TaskResult<E, A>) => TaskResult<E, A | B>;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* Returns the success value or a default value if the Task.Result is an error.
|
|
1276
1276
|
* The default can be a different type, widening the result to `Task<A | B>`.
|
|
1277
1277
|
*/
|
|
1278
|
-
const getOrElse: <
|
|
1278
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: TaskResult<E, A>) => Task<A | B>;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* Executes a side effect on the success value without changing the Task.Result.
|
|
1281
1281
|
* Useful for logging or debugging.
|
|
@@ -1566,7 +1566,7 @@ declare namespace TaskValidation {
|
|
|
1566
1566
|
* Returns the success value or a default value if the Task.Validation is failed.
|
|
1567
1567
|
* The default can be a different type, widening the result to `Task<A | B>`.
|
|
1568
1568
|
*/
|
|
1569
|
-
const getOrElse: <
|
|
1569
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: TaskValidation<E, A>) => Task<A | B>;
|
|
1570
1570
|
/**
|
|
1571
1571
|
* Executes a side effect on the success value without changing the Task.Validation.
|
|
1572
1572
|
* Useful for logging or debugging.
|
|
@@ -1577,7 +1577,7 @@ declare namespace TaskValidation {
|
|
|
1577
1577
|
* The fallback receives the accumulated error list so callers can inspect which errors occurred.
|
|
1578
1578
|
* The fallback can produce a different success type, widening the result to `Task.Validation<E, A | B>`.
|
|
1579
1579
|
*/
|
|
1580
|
-
const recover: <E,
|
|
1580
|
+
const recover: <E, B>(fallback: (errors: NonEmptyArr<E>) => TaskValidation<E, B>) => <A>(data: TaskValidation<E, A>) => TaskValidation<E, A | B>;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* Runs two Task.Validations concurrently and combines their results into a tuple.
|
|
1583
1583
|
* If both are Passed, returns Passed with both values. If either fails, accumulates
|
|
@@ -2255,7 +2255,7 @@ declare namespace Validation {
|
|
|
2255
2255
|
* pipe(Validation.make.failed("oops"), Validation.getOrElse(() => null)); // null — typed as number | null
|
|
2256
2256
|
* ```
|
|
2257
2257
|
*/
|
|
2258
|
-
const getOrElse: <
|
|
2258
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: Validation<E, A>) => A | B;
|
|
2259
2259
|
/**
|
|
2260
2260
|
* Executes a side effect on the success value without changing the Validation.
|
|
2261
2261
|
*
|
|
@@ -2288,7 +2288,7 @@ declare namespace Validation {
|
|
|
2288
2288
|
* The fallback receives the accumulated error list so callers can inspect which errors occurred.
|
|
2289
2289
|
* The fallback can produce a different success type, widening the result to `Validation<E, A | B>`.
|
|
2290
2290
|
*/
|
|
2291
|
-
const recover: <E,
|
|
2291
|
+
const recover: <E, B>(fallback: (errors: NonEmptyArr<E>) => Validation<E, B>) => <A>(data: Validation<E, A>) => Validation<E, A | B>;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* Recovers from a Failed state unless `isBlocked` returns true for any of the accumulated errors.
|
|
2294
2294
|
* The fallback can produce a different success type, widening the result to `Validation<E, A | B>`.
|
|
@@ -2301,7 +2301,7 @@ declare namespace Validation {
|
|
|
2301
2301
|
* ); // Passed(0)
|
|
2302
2302
|
* ```
|
|
2303
2303
|
*/
|
|
2304
|
-
const recoverUnless: <E,
|
|
2304
|
+
const recoverUnless: <E, B>(isBlocked: (e: E) => boolean, fallback: () => Validation<E, B>) => <A>(data: Validation<E, A>) => Validation<E, A | B>;
|
|
2305
2305
|
namespace to {
|
|
2306
2306
|
/**
|
|
2307
2307
|
* Converts a Validation to a Result.
|
package/dist/core.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { M as Maybe, R as Result, T as Task } from './Validation-
|
|
2
|
-
export { E as Equality, a as Err, F as Failed, N as None, O as Ok, b as Ordering, P as Passed, S as Some, V as Validation } from './Validation-
|
|
1
|
+
import { M as Maybe, R as Result, T as Task } from './Validation-C5Qz1R0S.mjs';
|
|
2
|
+
export { E as Equality, a as Err, F as Failed, N as None, O as Ok, b as Ordering, P as Passed, S as Some, V as Validation } from './Validation-C5Qz1R0S.mjs';
|
|
3
3
|
import { o as WithValue, i as WithLog, D as Deferred, h as WithKind, e as WithError, R as RetryOptions, b as TimeoutOptions, n as WithTimeout, j as WithMinInterval, c as WithCooldown, W as WithConcurrency, m as WithSize, d as WithDuration, k as WithN, g as WithFirst, l as WithSecond } from './InternalTypes-CDiDBAY4.mjs';
|
|
4
4
|
import { D as Duration } from './Duration-B8joKzro.mjs';
|
|
5
5
|
import './types.mjs';
|
|
@@ -2035,7 +2035,7 @@ declare namespace RemoteData {
|
|
|
2035
2035
|
* pipe(RemoteData.make.loading<string, number>(), RemoteData.getOrElse(() => null)); // null — typed as number | null
|
|
2036
2036
|
* ```
|
|
2037
2037
|
*/
|
|
2038
|
-
const getOrElse: <
|
|
2038
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: RemoteData<E, A>) => A | B;
|
|
2039
2039
|
/**
|
|
2040
2040
|
* Executes a side effect on the success value without changing the RemoteData.
|
|
2041
2041
|
*
|
|
@@ -2067,7 +2067,7 @@ declare namespace RemoteData {
|
|
|
2067
2067
|
* Recovers from a Failure state by providing a fallback RemoteData.
|
|
2068
2068
|
* The fallback can produce a different success type, widening the result to `RemoteData<E, A | B>`.
|
|
2069
2069
|
*/
|
|
2070
|
-
const recover: <E,
|
|
2070
|
+
const recover: <E, B>(fallback: (e: E) => RemoteData<E, B>) => <A>(data: RemoteData<E, A>) => RemoteData<E, A | B>;
|
|
2071
2071
|
namespace to {
|
|
2072
2072
|
/**
|
|
2073
2073
|
* Converts a RemoteData to a Maybe.
|
package/dist/core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { M as Maybe, R as Result, T as Task } from './Validation-
|
|
2
|
-
export { E as Equality, a as Err, F as Failed, N as None, O as Ok, b as Ordering, P as Passed, S as Some, V as Validation } from './Validation-
|
|
1
|
+
import { M as Maybe, R as Result, T as Task } from './Validation-yOcgYn9K.js';
|
|
2
|
+
export { E as Equality, a as Err, F as Failed, N as None, O as Ok, b as Ordering, P as Passed, S as Some, V as Validation } from './Validation-yOcgYn9K.js';
|
|
3
3
|
import { o as WithValue, i as WithLog, D as Deferred, h as WithKind, e as WithError, R as RetryOptions, b as TimeoutOptions, n as WithTimeout, j as WithMinInterval, c as WithCooldown, W as WithConcurrency, m as WithSize, d as WithDuration, k as WithN, g as WithFirst, l as WithSecond } from './InternalTypes-LdhLQx3N.js';
|
|
4
4
|
import { D as Duration } from './Duration-B8joKzro.js';
|
|
5
5
|
import './types.js';
|
|
@@ -2035,7 +2035,7 @@ declare namespace RemoteData {
|
|
|
2035
2035
|
* pipe(RemoteData.make.loading<string, number>(), RemoteData.getOrElse(() => null)); // null — typed as number | null
|
|
2036
2036
|
* ```
|
|
2037
2037
|
*/
|
|
2038
|
-
const getOrElse: <
|
|
2038
|
+
const getOrElse: <B>(defaultValue: () => B) => <E, A>(data: RemoteData<E, A>) => A | B;
|
|
2039
2039
|
/**
|
|
2040
2040
|
* Executes a side effect on the success value without changing the RemoteData.
|
|
2041
2041
|
*
|
|
@@ -2067,7 +2067,7 @@ declare namespace RemoteData {
|
|
|
2067
2067
|
* Recovers from a Failure state by providing a fallback RemoteData.
|
|
2068
2068
|
* The fallback can produce a different success type, widening the result to `RemoteData<E, A | B>`.
|
|
2069
2069
|
*/
|
|
2070
|
-
const recover: <E,
|
|
2070
|
+
const recover: <E, B>(fallback: (e: E) => RemoteData<E, B>) => <A>(data: RemoteData<E, A>) => RemoteData<E, A | B>;
|
|
2071
2071
|
namespace to {
|
|
2072
2072
|
/**
|
|
2073
2073
|
* Converts a RemoteData to a Maybe.
|
package/dist/data.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as NonEmptyArr, N as NonEmpty } from './InternalTypes-CDiDBAY4.mjs';
|
|
2
|
-
import { M as Maybe, R as Result, E as Equality, b as Ordering, T as Task } from './Validation-
|
|
2
|
+
import { M as Maybe, R as Result, E as Equality, b as Ordering, T as Task } from './Validation-C5Qz1R0S.mjs';
|
|
3
3
|
import { B as Brand } from './Duration-B8joKzro.mjs';
|
|
4
4
|
import './types.mjs';
|
|
5
5
|
|
package/dist/data.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as NonEmptyArr, N as NonEmpty } from './InternalTypes-LdhLQx3N.js';
|
|
2
|
-
import { M as Maybe, R as Result, E as Equality, b as Ordering, T as Task } from './Validation-
|
|
2
|
+
import { M as Maybe, R as Result, E as Equality, b as Ordering, T as Task } from './Validation-yOcgYn9K.js';
|
|
3
3
|
import { B as Brand } from './Duration-B8joKzro.js';
|
|
4
4
|
import './types.js';
|
|
5
5
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { and, compose, constFalse, constNull, constTrue, constUndefined, constVoid, constant, converge, curry, curry3, curry4, defaultTo, flip, flow, identity, juxt, memoize, memoizeWeak, not, on, once, or, pipe, tap, tuple, uncurry, uncurry3, uncurry4, untuple } from './composition.mjs';
|
|
2
2
|
export { Combinable, Failure, Lazy, Lens, Loading, Logged, NotAsked, Op, Optional, Predicate, Reader, Refinement, RemoteData, Resource, State, Stream, Success, These, TheseBoth, TheseFirst, TheseSecond, Tuple } from './core.mjs';
|
|
3
3
|
export { D as Deferred } from './InternalTypes-CDiDBAY4.mjs';
|
|
4
|
-
export { E as Equality, a as Err, F as Failed, M as Maybe, N as None, O as Ok, b as Ordering, P as Passed, R as Result, S as Some, T as Task, V as Validation } from './Validation-
|
|
4
|
+
export { E as Equality, a as Err, F as Failed, M as Maybe, N as None, O as Ok, b as Ordering, P as Passed, R as Result, S as Some, T as Task, V as Validation } from './Validation-C5Qz1R0S.mjs';
|
|
5
5
|
export { Arr, BigNum, Dict, Json, NonEmptyMap, NonEmptyRecord, NonEmptySet, NonEmptyString, Num, Rec, Str, Uniq } from './data.mjs';
|
|
6
6
|
export { B as Brand, D as Duration } from './Duration-B8joKzro.mjs';
|
|
7
7
|
export { RetryPolicy } from './types.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { and, compose, constFalse, constNull, constTrue, constUndefined, constVoid, constant, converge, curry, curry3, curry4, defaultTo, flip, flow, identity, juxt, memoize, memoizeWeak, not, on, once, or, pipe, tap, tuple, uncurry, uncurry3, uncurry4, untuple } from './composition.js';
|
|
2
2
|
export { Combinable, Failure, Lazy, Lens, Loading, Logged, NotAsked, Op, Optional, Predicate, Reader, Refinement, RemoteData, Resource, State, Stream, Success, These, TheseBoth, TheseFirst, TheseSecond, Tuple } from './core.js';
|
|
3
3
|
export { D as Deferred } from './InternalTypes-LdhLQx3N.js';
|
|
4
|
-
export { E as Equality, a as Err, F as Failed, M as Maybe, N as None, O as Ok, b as Ordering, P as Passed, R as Result, S as Some, T as Task, V as Validation } from './Validation-
|
|
4
|
+
export { E as Equality, a as Err, F as Failed, M as Maybe, N as None, O as Ok, b as Ordering, P as Passed, R as Result, S as Some, T as Task, V as Validation } from './Validation-yOcgYn9K.js';
|
|
5
5
|
export { Arr, BigNum, Dict, Json, NonEmptyMap, NonEmptyRecord, NonEmptySet, NonEmptyString, Num, Rec, Str, Uniq } from './data.js';
|
|
6
6
|
export { B as Brand, D as Duration } from './Duration-B8joKzro.js';
|
|
7
7
|
export { RetryPolicy } from './types.js';
|