Socket
Socket
Sign inDemoInstall

@effect-ts-app/prelude

Package Overview
Dependencies
128
Maintainers
1
Versions
127
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.67.10 to 0.67.11

13

_ext/Prelude.ext.d.ts

@@ -1,2 +0,2 @@

import { Effect, Sync, Either, Option, Managed, EffectOption, XPure } from "@effect-ts-app/prelude/Prelude";
import { Effect, Sync, Either, Option, Managed } from "@effect-ts-app/prelude/Prelude";
import "./Schema.ext";

@@ -206,3 +206,3 @@ import { pipe } from "./pipe";

*/
export declare const effectOptionSome: <A>(a: LazyArg<A>, __trace?: string) => EffectOption<unknown, never, A>;
export declare const effectOptionSome: <A>(a: A) => import("@effect-ts-app/core/EffectOption").UIO<A>;
/**

@@ -212,13 +212,8 @@ * @tsplus static ets/Effect __call

*/
export declare const effectSucceed: <A>(a: LazyArg<A>, __trace?: string) => Effect<unknown, never, A>;
export declare const effectSucceed: typeof import("@effect-ts/system/Effect").succeed;
/**
* @tsplus static ets/XPure __call
* @tsplus location "@effect-ts-app/prelude/_ext/Prelude.ext"
*/
export declare const xpureSucceed: <S, A>(a: LazyArg<A>) => XPure<never, S, S, unknown, never, A>;
/**
* @tsplus static ets/Sync __call
* @tsplus location "@effect-ts-app/prelude/_ext/Prelude.ext"
*/
export declare const syncSucceed: <A>(a: LazyArg<A>) => Sync<unknown, never, A>;
export declare const syncSucceed: <A>(a: A) => import("@effect-ts/system/Sync").Sync<unknown, never, A>;
/**

@@ -225,0 +220,0 @@ * @tsplus static ets/NonEmptyArray __call

@@ -17,3 +17,2 @@ "use strict";

exports.unifySync = unifySync;
exports.xpureSucceed = void 0;

@@ -275,3 +274,3 @@ var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect-ts-app/prelude/Prelude"));

exports.optionSome = optionSome;
const effectOptionSome = tsplus_module_1.EffectOption.succeed;
const effectOptionSome = tsplus_module_1.EffectOption.some;
/**

@@ -284,12 +283,6 @@ * @tsplus static ets/Effect __call

/**
* @tsplus static ets/XPure __call
* @tsplus static ets/Sync __call
*/
exports.effectSucceed = effectSucceed;
const xpureSucceed = tsplus_module_1.XPure.succeed;
/**
* @tsplus static ets/Sync __call
*/
exports.xpureSucceed = xpureSucceed;
const syncSucceed = tsplus_module_1.Sync.succeed;

@@ -296,0 +289,0 @@ /**

@@ -256,6 +256,3 @@ //import "./Lens.ext"

*/
export const effectOptionSome: <A>(
a: LazyArg<A>,
__trace?: string
) => EffectOption<unknown, never, A> = EffectOption.succeed as any
export const effectOptionSome = EffectOption.some

@@ -265,19 +262,8 @@ /**

*/
export const effectSucceed: <A>(
a: LazyArg<A>,
__trace?: string
) => Effect<unknown, never, A> = Effect.succeed as any
export const effectSucceed = Effect.succeed
/**
* @tsplus static ets/XPure __call
*/
export const xpureSucceed: <S, A>(
a: LazyArg<A>
) => XPure<never, S, S, unknown, never, A> = XPure.succeed as any
/**
* @tsplus static ets/Sync __call
*/
export const syncSucceed: <A>(a: LazyArg<A>) => Sync<unknown, never, A> =
Sync.succeed as any
export const syncSucceed = Sync.succeed

@@ -284,0 +270,0 @@ /**

{
"name": "@effect-ts-app/prelude",
"version": "0.67.10",
"version": "0.67.11",
"license": "MIT",

@@ -51,3 +51,3 @@ "dependencies": {

"sideEffects": false,
"gitHead": "35d5f651d6b692391fbf1cb30631acb30df0c92b"
"gitHead": "9b6e9eb4669e951ccb632109fa81802093221dff"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc