effect 2.0.0-next.1 → 2.0.0-next.10

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.
Files changed (61) hide show
  1. package/Debug.d.ts +5 -0
  2. package/Debug.d.ts.map +1 -1
  3. package/Debug.js.map +1 -1
  4. package/Differ.d.ts +59 -5
  5. package/Differ.d.ts.map +1 -1
  6. package/Differ.js +10 -10
  7. package/Differ.js.map +1 -1
  8. package/Fiber.d.ts +49 -4
  9. package/Fiber.d.ts.map +1 -1
  10. package/Fiber.js +8 -8
  11. package/Fiber.js.map +1 -1
  12. package/FiberRefs.d.ts +19 -1
  13. package/FiberRefs.d.ts.map +1 -1
  14. package/FiberRefs.js +2 -2
  15. package/FiberRefs.js.map +1 -1
  16. package/Logger.d.ts +31 -0
  17. package/Logger.d.ts.map +1 -0
  18. package/Logger.js +29 -0
  19. package/Logger.js.map +1 -0
  20. package/Metric.d.ts +99 -9
  21. package/Metric.d.ts.map +1 -1
  22. package/Metric.js +18 -18
  23. package/Metric.js.map +1 -1
  24. package/Optic.d.ts +62 -0
  25. package/Optic.d.ts.map +1 -0
  26. package/Optic.js +70 -0
  27. package/Optic.js.map +1 -0
  28. package/README.md +1 -1
  29. package/Ref.d.ts +29 -2
  30. package/Ref.d.ts.map +1 -1
  31. package/Ref.js +4 -4
  32. package/Ref.js.map +1 -1
  33. package/Schedule.d.ts +39 -3
  34. package/Schedule.d.ts.map +1 -1
  35. package/Schedule.js +6 -6
  36. package/Schedule.js.map +1 -1
  37. package/_mjs/Debug.mjs +5 -0
  38. package/_mjs/Debug.mjs.map +1 -1
  39. package/_mjs/Differ.mjs +59 -10
  40. package/_mjs/Differ.mjs.map +1 -1
  41. package/_mjs/Fiber.mjs +49 -8
  42. package/_mjs/Fiber.mjs.map +1 -1
  43. package/_mjs/FiberRefs.mjs +19 -2
  44. package/_mjs/FiberRefs.mjs.map +1 -1
  45. package/_mjs/Logger.mjs +31 -0
  46. package/_mjs/Logger.mjs.map +1 -0
  47. package/_mjs/Metric.mjs +99 -18
  48. package/_mjs/Metric.mjs.map +1 -1
  49. package/_mjs/Optic.mjs +62 -0
  50. package/_mjs/Optic.mjs.map +1 -0
  51. package/_mjs/Ref.mjs +29 -4
  52. package/_mjs/Ref.mjs.map +1 -1
  53. package/_mjs/Schedule.mjs +39 -6
  54. package/_mjs/Schedule.mjs.map +1 -1
  55. package/_mjs/index.mjs +490 -1
  56. package/_mjs/index.mjs.map +1 -1
  57. package/index.d.ts +490 -1
  58. package/index.d.ts.map +1 -1
  59. package/index.js +7 -3
  60. package/index.js.map +1 -1
  61. package/package.json +6 -5
package/Optic.js ADDED
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _exportNames = {
7
+ left: true,
8
+ right: true,
9
+ consList: true,
10
+ none: true,
11
+ some: true
12
+ };
13
+ Object.defineProperty(exports, "consList", {
14
+ enumerable: true,
15
+ get: function () {
16
+ return _List.cons;
17
+ }
18
+ });
19
+ Object.defineProperty(exports, "left", {
20
+ enumerable: true,
21
+ get: function () {
22
+ return _Either.left;
23
+ }
24
+ });
25
+ Object.defineProperty(exports, "none", {
26
+ enumerable: true,
27
+ get: function () {
28
+ return _Option.none;
29
+ }
30
+ });
31
+ Object.defineProperty(exports, "right", {
32
+ enumerable: true,
33
+ get: function () {
34
+ return _Either.right;
35
+ }
36
+ });
37
+ Object.defineProperty(exports, "some", {
38
+ enumerable: true,
39
+ get: function () {
40
+ return _Option.some;
41
+ }
42
+ });
43
+ var _Either = /*#__PURE__*/require("@fp-ts/optic/data/Either");
44
+ var _List = /*#__PURE__*/require("@fp-ts/optic/data/List");
45
+ var _Option = /*#__PURE__*/require("@fp-ts/optic/data/Option");
46
+ var _optic = /*#__PURE__*/require("@fp-ts/optic");
47
+ Object.keys(_optic).forEach(function (key) {
48
+ if (key === "default" || key === "__esModule") return;
49
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
50
+ if (key in exports && exports[key] === _optic[key]) return;
51
+ Object.defineProperty(exports, key, {
52
+ enumerable: true,
53
+ get: function () {
54
+ return _optic[key];
55
+ }
56
+ });
57
+ });
58
+ var _experimental = /*#__PURE__*/require("@fp-ts/optic/experimental");
59
+ Object.keys(_experimental).forEach(function (key) {
60
+ if (key === "default" || key === "__esModule") return;
61
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
62
+ if (key in exports && exports[key] === _experimental[key]) return;
63
+ Object.defineProperty(exports, key, {
64
+ enumerable: true,
65
+ get: function () {
66
+ return _experimental[key];
67
+ }
68
+ });
69
+ });
70
+ //# sourceMappingURL=Optic.js.map
package/Optic.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Optic.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAWA;AACA;AACA;AAEA;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA","names":[],"sourceRoot":"","sources":["../../src/Optic.ts"],"sourcesContent":[null]}
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## Welcome to Effect [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-908a85?logo=gitpod)](https://gitpod.io/#https://github.com/Effect-TS/core)
1
+ ## Welcome to Effect [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-908a85?logo=gitpod)](https://gitpod.io/#https://github.com/Effect-TS/effect)
2
2
 
3
3
  Effect is an ecosystem of libraries to write highly productive, purely functional TypeScript at scale.
4
4
 
package/Ref.d.ts CHANGED
@@ -1,4 +1,31 @@
1
+ /**
2
+ * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://effect-ts.github.io/io/modules/Ref.ts.html
6
+ * - Module: "@effect/io/Ref"
7
+ * ```
8
+ */
9
+ import * as SynchronizedRef from "@effect/io/Ref/Synchronized";
10
+ import * as ScopedRef from "@effect/io/ScopedRef";
1
11
  export * from "@effect/io/Ref";
2
- export * as SynchronizedRef from "@effect/io/Ref/Synchronized";
3
- export * as ScopedRef from "@effect/io/ScopedRef";
12
+ export {
13
+ /**
14
+ * @since 2.0.0
15
+ *
16
+ * ```md
17
+ * - Docs: https://effect-ts.github.io/io/modules/ScopedRef.ts.html
18
+ * - Module: "@effect/io/ScopedRef"
19
+ * ```
20
+ */
21
+ ScopedRef,
22
+ /**
23
+ * @since 2.0.0
24
+ *
25
+ * ```md
26
+ * - Docs: https://effect-ts.github.io/io/modules/Ref/Synchronized.ts.html
27
+ * - Module: "@effect/io/Ref/Synchronized"
28
+ * ```
29
+ */
30
+ SynchronizedRef };
4
31
  //# sourceMappingURL=Ref.d.ts.map
package/Ref.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Ref.d.ts","sourceRoot":"","sources":["../../src/Ref.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAA;AAC9D,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAA"}
1
+ {"version":3,"file":"Ref.d.ts","sourceRoot":"","sources":["../../src/Ref.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAA;AAC9D,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAA;AAEjD,cAAc,gBAAgB,CAAA;AAE9B,OAAO;AACL;;;;;;;GAOG;AACH,SAAS;AACT;;;;;;;GAOG;AACH,eAAe,EAChB,CAAA"}
package/Ref.js CHANGED
@@ -8,6 +8,10 @@ var _exportNames = {
8
8
  ScopedRef: true
9
9
  };
10
10
  exports.SynchronizedRef = exports.ScopedRef = void 0;
11
+ var SynchronizedRef = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Ref/Synchronized"));
12
+ exports.SynchronizedRef = SynchronizedRef;
13
+ var ScopedRef = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/ScopedRef"));
14
+ exports.ScopedRef = ScopedRef;
11
15
  var _Ref = /*#__PURE__*/require("@effect/io/Ref");
12
16
  Object.keys(_Ref).forEach(function (key) {
13
17
  if (key === "default" || key === "__esModule") return;
@@ -20,10 +24,6 @@ Object.keys(_Ref).forEach(function (key) {
20
24
  }
21
25
  });
22
26
  });
23
- var SynchronizedRef_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Ref/Synchronized"));
24
- exports.SynchronizedRef = SynchronizedRef_1;
25
- var ScopedRef_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/ScopedRef"));
26
- exports.ScopedRef = ScopedRef_1;
27
27
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
28
28
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
29
29
  //# sourceMappingURL=Ref.js.map
package/Ref.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Ref.js","mappings":";;;;;;;;;;AAAA;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAC8D;;AACb;AAAA;AAAA","names":[],"sourceRoot":"","sources":["../../src/Ref.ts"],"sourcesContent":[null]}
1
+ {"version":3,"file":"Ref.js","mappings":";;;;;;;;;;AASA;AAA8D;AAC9D;AAAiD;AAEjD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAA8B;AAAA","names":[],"sourceRoot":"","sources":["../../src/Ref.ts"],"sourcesContent":[null]}
package/Schedule.d.ts CHANGED
@@ -1,5 +1,41 @@
1
+ /**
2
+ * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://effect-ts.github.io/io/modules/Schedule.ts.html
6
+ * - Module: "@effect/io/Schedule"
7
+ * ```
8
+ */
9
+ import * as Decision from "@effect/io/Schedule/Decision";
10
+ import * as Interval from "@effect/io/Schedule/Interval";
11
+ import * as Intervals from "@effect/io/Schedule/Intervals";
1
12
  export * from "@effect/io/Schedule";
2
- export * as Decision from "@effect/io/Schedule/Decision";
3
- export * as Interval from "@effect/io/Schedule/Interval";
4
- export * as Intervals from "@effect/io/Schedule/Intervals";
13
+ export {
14
+ /**
15
+ * @since 2.0.0
16
+ *
17
+ * ```md
18
+ * - Docs: https://effect-ts.github.io/io/modules/Schedule/Decision.ts.html
19
+ * - Module: "@effect/io/Schedule/Decision"
20
+ * ```
21
+ */
22
+ Decision,
23
+ /**
24
+ * @since 2.0.0
25
+ *
26
+ * ```md
27
+ * - Docs: https://effect-ts.github.io/io/modules/Schedule/Interval.ts.html
28
+ * - Module: "@effect/io/Schedule/Interval"
29
+ * ```
30
+ */
31
+ Interval,
32
+ /**
33
+ * @since 2.0.0
34
+ *
35
+ * ```md
36
+ * - Docs: https://effect-ts.github.io/io/modules/Schedule/Intervals.ts.html
37
+ * - Module: "@effect/io/Schedule/Intervals"
38
+ * ```
39
+ */
40
+ Intervals };
5
41
  //# sourceMappingURL=Schedule.d.ts.map
package/Schedule.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Schedule.d.ts","sourceRoot":"","sources":["../../src/Schedule.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,OAAO,KAAK,QAAQ,MAAM,8BAA8B,CAAA;AACxD,OAAO,KAAK,QAAQ,MAAM,8BAA8B,CAAA;AACxD,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAA"}
1
+ {"version":3,"file":"Schedule.d.ts","sourceRoot":"","sources":["../../src/Schedule.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,QAAQ,MAAM,8BAA8B,CAAA;AACxD,OAAO,KAAK,QAAQ,MAAM,8BAA8B,CAAA;AACxD,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAA;AAE1D,cAAc,qBAAqB,CAAA;AAEnC,OAAO;AACL;;;;;;;GAOG;AACH,QAAQ;AACR;;;;;;;GAOG;AACH,QAAQ;AACR;;;;;;;GAOG;AACH,SAAS,EACV,CAAA"}
package/Schedule.js CHANGED
@@ -9,6 +9,12 @@ var _exportNames = {
9
9
  Intervals: true
10
10
  };
11
11
  exports.Intervals = exports.Interval = exports.Decision = void 0;
12
+ var Decision = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Schedule/Decision"));
13
+ exports.Decision = Decision;
14
+ var Interval = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Schedule/Interval"));
15
+ exports.Interval = Interval;
16
+ var Intervals = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Schedule/Intervals"));
17
+ exports.Intervals = Intervals;
12
18
  var _Schedule = /*#__PURE__*/require("@effect/io/Schedule");
13
19
  Object.keys(_Schedule).forEach(function (key) {
14
20
  if (key === "default" || key === "__esModule") return;
@@ -21,12 +27,6 @@ Object.keys(_Schedule).forEach(function (key) {
21
27
  }
22
28
  });
23
29
  });
24
- var Decision_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Schedule/Decision"));
25
- exports.Decision = Decision_1;
26
- var Interval_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Schedule/Interval"));
27
- exports.Interval = Interval_1;
28
- var Intervals_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Schedule/Intervals"));
29
- exports.Intervals = Intervals_1;
30
30
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
31
31
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
32
32
  //# sourceMappingURL=Schedule.js.map
package/Schedule.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Schedule.js","mappings":";;;;;;;;;;;AAAA;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACwD;;AACA;;AACE;AAAA;AAAA","names":[],"sourceRoot":"","sources":["../../src/Schedule.ts"],"sourcesContent":[null]}
1
+ {"version":3,"file":"Schedule.js","mappings":";;;;;;;;;;;AASA;AAAwD;AACxD;AAAwD;AACxD;AAA0D;AAE1D;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAmC;AAAA","names":[],"sourceRoot":"","sources":["../../src/Schedule.ts"],"sourcesContent":[null]}
package/_mjs/Debug.mjs CHANGED
@@ -1,5 +1,10 @@
1
1
  /**
2
2
  * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://effect-ts.github.io/io/modules/Debug.ts.html
6
+ * - Module: "@effect/io/Debug"
7
+ * ```
3
8
  */
4
9
  import { getCallTrace, nodeSourceMapExtractor, runtimeDebug, withCallTrace } from "@effect/io/Debug";
5
10
  export {
@@ -1 +1 @@
1
- {"version":3,"file":"Debug.mjs","mappings":"AAAA;;;AAGA,SAAgBA,YAAY,EAAEC,sBAAsB,EAAEC,YAAY,EAAEC,aAAa,QAAQ,kBAAkB;AAE3G;AAKE;;;AAGAH,YAAY;AACZ;;;AAGAC,sBAAsB;AACtB;;;AAGAC,YAAY;AACZ;;;AAGAC,aAAa","names":["getCallTrace","nodeSourceMapExtractor","runtimeDebug","withCallTrace"],"sourceRoot":"","sources":["../../src/Debug.ts"],"sourcesContent":[null]}
1
+ {"version":3,"file":"Debug.mjs","mappings":"AAAA;;;;;;;;AAQA,SAAgBA,YAAY,EAAEC,sBAAsB,EAAEC,YAAY,EAAEC,aAAa,QAAQ,kBAAkB;AAE3G;AAKE;;;AAGAH,YAAY;AACZ;;;AAGAC,sBAAsB;AACtB;;;AAGAC,YAAY;AACZ;;;AAGAC,aAAa","names":["getCallTrace","nodeSourceMapExtractor","runtimeDebug","withCallTrace"],"sourceRoot":"","sources":["../../src/Debug.ts"],"sourcesContent":[null]}
package/_mjs/Differ.mjs CHANGED
@@ -1,12 +1,61 @@
1
+ /**
2
+ * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://fp-ts.github.io/data/modules/Differ.ts.html
6
+ * - Module: "@fp-ts/data/Differ"
7
+ * ```
8
+ */
9
+ import * as ChunkPatch from "@fp-ts/data/Differ/ChunkPatch";
10
+ import * as ContextPatch from "@fp-ts/data/Differ/ContextPatch";
11
+ import * as HashMapPatch from "@fp-ts/data/Differ/HashMapPatch";
12
+ import * as HashSetPatch from "@fp-ts/data/Differ/HashSetPatch";
13
+ import * as OrPatch from "@fp-ts/data/Differ/OrPatch";
1
14
  export * from "@fp-ts/data/Differ";
2
- import * as ChunkPatch_1 from "@fp-ts/data/Differ/ChunkPatch";
3
- export { ChunkPatch_1 as ChunkPatch };
4
- import * as ContextPatch_1 from "@fp-ts/data/Differ/ContextPatch";
5
- export { ContextPatch_1 as ContextPatch };
6
- import * as HashMapPatch_1 from "@fp-ts/data/Differ/HashMapPatch";
7
- export { HashMapPatch_1 as HashMapPatch };
8
- import * as HashSetPatch_1 from "@fp-ts/data/Differ/HashSetPatch";
9
- export { HashSetPatch_1 as HashSetPatch };
10
- import * as OrPatch_1 from "@fp-ts/data/Differ/OrPatch";
11
- export { OrPatch_1 as OrPatch };
15
+ export {
16
+ /**
17
+ * @since 2.0.0
18
+ *
19
+ * ```md
20
+ * - Docs: https://fp-ts.github.io/data/modules/Differ/ChunkPatch.ts.html
21
+ * - Module: "@fp-ts/data/Differ/ChunkPatch"
22
+ * ```
23
+ */
24
+ ChunkPatch,
25
+ /**
26
+ * @since 2.0.0
27
+ *
28
+ * ```md
29
+ * - Docs: https://fp-ts.github.io/data/modules/Differ/ContextPatch.ts.html
30
+ * - Module: "@fp-ts/data/Differ/ContextPatch"
31
+ * ```
32
+ */
33
+ ContextPatch,
34
+ /**
35
+ * @since 2.0.0
36
+ *
37
+ * ```md
38
+ * - Docs: https://fp-ts.github.io/data/modules/Differ/HashMapPatch.ts.html
39
+ * - Module: "@fp-ts/data/Differ/HashMapPatch"
40
+ * ```
41
+ */
42
+ HashMapPatch,
43
+ /**
44
+ * @since 2.0.0
45
+ *
46
+ * ```md
47
+ * - Docs: https://fp-ts.github.io/data/modules/Differ/HashSetPatch.ts.html
48
+ * - Module: "@fp-ts/data/Differ/HashSetPatch"
49
+ * ```
50
+ */
51
+ HashSetPatch,
52
+ /**
53
+ * @since 2.0.0
54
+ *
55
+ * ```md
56
+ * - Docs: https://fp-ts.github.io/data/modules/Differ/OrPatch.ts.html
57
+ * - Module: "@fp-ts/data/Differ/OrPatch"
58
+ * ```
59
+ */
60
+ OrPatch };
12
61
  //# sourceMappingURL=Differ.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"Differ.mjs","mappings":"AAAA,cAAc,oBAAoB;8BACN,+BAA+B;yBAA/CA,UAAU;gCACQ,iCAAiC;2BAAnDC,YAAY;gCACM,iCAAiC;2BAAnDC,YAAY;gCACM,iCAAiC;2BAAnDC,YAAY;2BACC,4BAA4B;sBAAzCC,OAAO","names":["ChunkPatch","ContextPatch","HashMapPatch","HashSetPatch","OrPatch"],"sourceRoot":"","sources":["../../src/Differ.ts"],"sourcesContent":[null]}
1
+ {"version":3,"file":"Differ.mjs","mappings":"AAAA;;;;;;;;AASA,OAAO,KAAKA,UAAU,MAAM,+BAA+B;AAC3D,OAAO,KAAKC,YAAY,MAAM,iCAAiC;AAC/D,OAAO,KAAKC,YAAY,MAAM,iCAAiC;AAC/D,OAAO,KAAKC,YAAY,MAAM,iCAAiC;AAC/D,OAAO,KAAKC,OAAO,MAAM,4BAA4B;AAErD,cAAc,oBAAoB;AAElC;AACE;;;;;;;;AAQAJ,UAAU;AACV;;;;;;;;AAQAC,YAAY;AACZ;;;;;;;;AAQAC,YAAY;AACZ;;;;;;;;AAQAC,YAAY;AACZ;;;;;;;;AAQAC,OAAO","names":["ChunkPatch","ContextPatch","HashMapPatch","HashSetPatch","OrPatch"],"sourceRoot":"","sources":["../../src/Differ.ts"],"sourcesContent":[null]}
package/_mjs/Fiber.mjs CHANGED
@@ -1,10 +1,51 @@
1
+ /**
2
+ * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://effect-ts.github.io/io/modules/Fiber.ts.html
6
+ * - Module: "@effect/io/Fiber"
7
+ * ```
8
+ */
9
+ import * as Id from "@effect/io/Fiber/Id";
10
+ import * as RuntimeFlags from "@effect/io/Fiber/Runtime/Flags";
11
+ import * as RuntimeFlagsPatch from "@effect/io/Fiber/Runtime/Flags/Patch";
12
+ import * as Status from "@effect/io/Fiber/Status";
1
13
  export * from "@effect/io/Fiber";
2
- import * as Id_1 from "@effect/io/Fiber/Id";
3
- export { Id_1 as Id };
4
- import * as RuntimeFlags_1 from "@effect/io/Fiber/Runtime/Flags";
5
- export { RuntimeFlags_1 as RuntimeFlags };
6
- import * as RuntimeFlagsPatch_1 from "@effect/io/Fiber/Runtime/Flags/Patch";
7
- export { RuntimeFlagsPatch_1 as RuntimeFlagsPatch };
8
- import * as Status_1 from "@effect/io/Fiber/Status";
9
- export { Status_1 as Status };
14
+ export {
15
+ /**
16
+ * @since 2.0.0
17
+ *
18
+ * ```md
19
+ * - Docs: https://effect-ts.github.io/io/modules/Fiber/Id.ts.html
20
+ * - Module: "@effect/io/Fiber/Id"
21
+ * ```
22
+ */
23
+ Id,
24
+ /**
25
+ * @since 2.0.0
26
+ *
27
+ * ```md
28
+ * - Docs: https://effect-ts.github.io/io/modules/Fiber/Runtime/Flags.ts.html
29
+ * - Module: "@effect/io/Fiber/Runtime/Flags"
30
+ * ```
31
+ */
32
+ RuntimeFlags,
33
+ /**
34
+ * @since 2.0.0
35
+ *
36
+ * ```md
37
+ * - Docs: https://effect-ts.github.io/io/modules/Fiber/Runtime/Flags/Patch.ts.html
38
+ * - Module: "@effect/io/Fiber/Runtime/Flags/Patch"
39
+ * ```
40
+ */
41
+ RuntimeFlagsPatch,
42
+ /**
43
+ * @since 2.0.0
44
+ *
45
+ * ```md
46
+ * - Docs: https://effect-ts.github.io/io/modules/Fiber/Status.ts.html
47
+ * - Module: "@effect/io/Fiber/Status"
48
+ * ```
49
+ */
50
+ Status };
10
51
  //# sourceMappingURL=Fiber.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"Fiber.mjs","mappings":"AAAA,cAAc,kBAAkB;sBACZ,qBAAqB;iBAA7BA,EAAE;gCACgB,gCAAgC;2BAAlDC,YAAY;qCACW,sCAAsC;gCAA7DC,iBAAiB;0BACL,yBAAyB;qBAArCC,MAAM","names":["Id","RuntimeFlags","RuntimeFlagsPatch","Status"],"sourceRoot":"","sources":["../../src/Fiber.ts"],"sourcesContent":[null]}
1
+ {"version":3,"file":"Fiber.mjs","mappings":"AAAA;;;;;;;;AASA,OAAO,KAAKA,EAAE,MAAM,qBAAqB;AACzC,OAAO,KAAKC,YAAY,MAAM,gCAAgC;AAC9D,OAAO,KAAKC,iBAAiB,MAAM,sCAAsC;AACzE,OAAO,KAAKC,MAAM,MAAM,yBAAyB;AAEjD,cAAc,kBAAkB;AAEhC;AACE;;;;;;;;AAQAH,EAAE;AACF;;;;;;;;AAQAC,YAAY;AACZ;;;;;;;;AAQAC,iBAAiB;AACjB;;;;;;;;AAQAC,MAAM","names":["Id","RuntimeFlags","RuntimeFlagsPatch","Status"],"sourceRoot":"","sources":["../../src/Fiber.ts"],"sourcesContent":[null]}
@@ -1,4 +1,21 @@
1
+ /**
2
+ * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://effect-ts.github.io/io/modules/FiberRefs.ts.html
6
+ * - Module: "@effect/io/FiberRefs"
7
+ * ```
8
+ */
9
+ import * as Patch from "@effect/io/FiberRefs/Patch";
1
10
  export * from "@effect/io/FiberRefs";
2
- import * as Patch_1 from "@effect/io/FiberRefs/Patch";
3
- export { Patch_1 as Patch };
11
+ export {
12
+ /**
13
+ * @since 2.0.0
14
+ *
15
+ * ```md
16
+ * - Docs: https://effect-ts.github.io/io/modules/FiberRefs/Patch.ts.html
17
+ * - Module: "@effect/io/FiberRefs/Patch"
18
+ * ```
19
+ */
20
+ Patch };
4
21
  //# sourceMappingURL=FiberRefs.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"FiberRefs.mjs","mappings":"AAAA,cAAc,sBAAsB;yBACb,4BAA4B;oBAAvCA,KAAK","names":["Patch"],"sourceRoot":"","sources":["../../src/FiberRefs.ts"],"sourcesContent":[null]}
1
+ {"version":3,"file":"FiberRefs.mjs","mappings":"AAAA;;;;;;;;AASA,OAAO,KAAKA,KAAK,MAAM,4BAA4B;AAEnD,cAAc,sBAAsB;AAEpC;AACE;;;;;;;;AAQAA,KAAK","names":["Patch"],"sourceRoot":"","sources":["../../src/FiberRefs.ts"],"sourcesContent":[null]}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://effect-ts.github.io/io/modules/Logger.ts.html
6
+ * - Module: "@effect/io/Logger"
7
+ * ```
8
+ */
9
+ import * as Level from "@effect/io/Logger/Level";
10
+ import * as Span from "@effect/io/Logger/Span";
11
+ export * from "@effect/io/Logger";
12
+ export {
13
+ /**
14
+ * @since 2.0.0
15
+ *
16
+ * ```md
17
+ * - Docs: https://effect-ts.github.io/io/modules/Logger/Level.ts.html
18
+ * - Module: "@effect/io/Logger/Level"
19
+ * ```
20
+ */
21
+ Level as LogLevel,
22
+ /**
23
+ * @since 2.0.0
24
+ *
25
+ * ```md
26
+ * - Docs: https://effect-ts.github.io/io/modules/Logger/Span.ts.html
27
+ * - Module: "@effect/io/Logger/Span"
28
+ * ```
29
+ */
30
+ Span as LogSpan };
31
+ //# sourceMappingURL=Logger.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Logger.mjs","mappings":"AAAA;;;;;;;;AASA,OAAO,KAAKA,KAAK,MAAM,yBAAyB;AAChD,OAAO,KAAKC,IAAI,MAAM,wBAAwB;AAE9C,cAAc,mBAAmB;AAEjC;AACE;;;;;;;;AAQAD,KAAK,IAAIE,QAAQ;AACjB;;;;;;;;AAQAD,IAAI,IAAIE,OAAO","names":["Level","Span","LogLevel","LogSpan"],"sourceRoot":"","sources":["../../src/Logger.ts"],"sourcesContent":[null]}
package/_mjs/Metric.mjs CHANGED
@@ -1,20 +1,101 @@
1
+ /**
2
+ * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://effect-ts.github.io/io/modules/Metric.ts.html
6
+ * - Module: "@effect/io/Metric"
7
+ * ```
8
+ */
9
+ import * as Boundaries from "@effect/io/Metric/Boundaries";
10
+ import * as Hook from "@effect/io/Metric/Hook";
11
+ import * as Key from "@effect/io/Metric/Key";
12
+ import * as KeyType from "@effect/io/Metric/KeyType";
13
+ import * as Label from "@effect/io/Metric/Label";
14
+ import * as Pair from "@effect/io/Metric/Pair";
15
+ import * as Polling from "@effect/io/Metric/Polling";
16
+ import * as Registry from "@effect/io/Metric/Registry";
17
+ import * as State from "@effect/io/Metric/State";
1
18
  export * from "@effect/io/Metric";
2
- import * as Boundaries_1 from "@effect/io/Metric/Boundaries";
3
- export { Boundaries_1 as Boundaries };
4
- import * as Hook_1 from "@effect/io/Metric/Hook";
5
- export { Hook_1 as Hook };
6
- import * as Key_1 from "@effect/io/Metric/Key";
7
- export { Key_1 as Key };
8
- import * as KeyType_1 from "@effect/io/Metric/KeyType";
9
- export { KeyType_1 as KeyType };
10
- import * as Label_1 from "@effect/io/Metric/Label";
11
- export { Label_1 as Label };
12
- import * as Pair_1 from "@effect/io/Metric/Pair";
13
- export { Pair_1 as Pair };
14
- import * as Polling_1 from "@effect/io/Metric/Polling";
15
- export { Polling_1 as Polling };
16
- import * as Registry_1 from "@effect/io/Metric/Registry";
17
- export { Registry_1 as Registry };
18
- import * as State_1 from "@effect/io/Metric/State";
19
- export { State_1 as State };
19
+ export {
20
+ /**
21
+ * @since 2.0.0
22
+ *
23
+ * ```md
24
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/Boundaries.ts.html
25
+ * - Module: "@effect/io/Metric/Boundaries"
26
+ * ```
27
+ */
28
+ Boundaries,
29
+ /**
30
+ * @since 2.0.0
31
+ *
32
+ * ```md
33
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/Hook.ts.html
34
+ * - Module: "@effect/io/Metric/Hook"
35
+ * ```
36
+ */
37
+ Hook,
38
+ /**
39
+ * @since 2.0.0
40
+ *
41
+ * ```md
42
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/Key.ts.html
43
+ * - Module: "@effect/io/Metric/Key"
44
+ * ```
45
+ */
46
+ Key,
47
+ /**
48
+ * @since 2.0.0
49
+ *
50
+ * ```md
51
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/KeyType.ts.html
52
+ * - Module: "@effect/io/Metric/KeyType"
53
+ * ```
54
+ */
55
+ KeyType,
56
+ /**
57
+ * @since 2.0.0
58
+ *
59
+ * ```md
60
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/Label.ts.html
61
+ * - Module: "@effect/io/Metric/Label"
62
+ * ```
63
+ */
64
+ Label,
65
+ /**
66
+ * @since 2.0.0
67
+ *
68
+ * ```md
69
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/Pair.ts.html
70
+ * - Module: "@effect/io/Metric/Pair"
71
+ * ```
72
+ */
73
+ Pair,
74
+ /**
75
+ * @since 2.0.0
76
+ *
77
+ * ```md
78
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/Polling.ts.html
79
+ * - Module: "@effect/io/Metric/Polling"
80
+ * ```
81
+ */
82
+ Polling,
83
+ /**
84
+ * @since 2.0.0
85
+ *
86
+ * ```md
87
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/Registry.ts.html
88
+ * - Module: "@effect/io/Metric/Registry"
89
+ * ```
90
+ */
91
+ Registry,
92
+ /**
93
+ * @since 2.0.0
94
+ *
95
+ * ```md
96
+ * - Docs: https://effect-ts.github.io/io/modules/Metric/State.ts.html
97
+ * - Module: "@effect/io/Metric/State"
98
+ * ```
99
+ */
100
+ State };
20
101
  //# sourceMappingURL=Metric.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"Metric.mjs","mappings":"AAAA,cAAc,mBAAmB;8BACL,8BAA8B;yBAA9CA,UAAU;wBACA,wBAAwB;mBAAlCC,IAAI;uBACK,uBAAuB;kBAAhCC,GAAG;2BACU,2BAA2B;sBAAxCC,OAAO;yBACI,yBAAyB;oBAApCC,KAAK;wBACK,wBAAwB;mBAAlCC,IAAI;2BACS,2BAA2B;sBAAxCC,OAAO;4BACO,4BAA4B;uBAA1CC,QAAQ;yBACG,yBAAyB;oBAApCC,KAAK","names":["Boundaries","Hook","Key","KeyType","Label","Pair","Polling","Registry","State"],"sourceRoot":"","sources":["../../src/Metric.ts"],"sourcesContent":[null]}
1
+ {"version":3,"file":"Metric.mjs","mappings":"AAAA;;;;;;;;AASA,OAAO,KAAKA,UAAU,MAAM,8BAA8B;AAC1D,OAAO,KAAKC,IAAI,MAAM,wBAAwB;AAC9C,OAAO,KAAKC,GAAG,MAAM,uBAAuB;AAC5C,OAAO,KAAKC,OAAO,MAAM,2BAA2B;AACpD,OAAO,KAAKC,KAAK,MAAM,yBAAyB;AAChD,OAAO,KAAKC,IAAI,MAAM,wBAAwB;AAC9C,OAAO,KAAKC,OAAO,MAAM,2BAA2B;AACpD,OAAO,KAAKC,QAAQ,MAAM,4BAA4B;AACtD,OAAO,KAAKC,KAAK,MAAM,yBAAyB;AAEhD,cAAc,mBAAmB;AAEjC;AACE;;;;;;;;AAQAR,UAAU;AACV;;;;;;;;AAQAC,IAAI;AACJ;;;;;;;;AAQAC,GAAG;AACH;;;;;;;;AAQAC,OAAO;AACP;;;;;;;;AAQAC,KAAK;AACL;;;;;;;;AAQAC,IAAI;AACJ;;;;;;;;AAQAC,OAAO;AACP;;;;;;;;AAQAC,QAAQ;AACR;;;;;;;;AAQAC,KAAK","names":["Boundaries","Hook","Key","KeyType","Label","Pair","Polling","Registry","State"],"sourceRoot":"","sources":["../../src/Metric.ts"],"sourcesContent":[null]}
package/_mjs/Optic.mjs ADDED
@@ -0,0 +1,62 @@
1
+ /**
2
+ * @since 2.0.0
3
+ *
4
+ * ```md
5
+ * - Docs: https://fp-ts.github.io/optic/modules/index.ts.html
6
+ * - Docs: https://fp-ts.github.io/optic/modules/experimental.ts.html
7
+ * - Module: "@fp-ts/optic"
8
+ * - Module: "@fp-ts/optic/experimental"
9
+ * ```
10
+ */
11
+ import { left, right } from "@fp-ts/optic/data/Either";
12
+ import { cons } from "@fp-ts/optic/data/List";
13
+ import { none, some } from "@fp-ts/optic/data/Option";
14
+ export * from "@fp-ts/optic";
15
+ export * from "@fp-ts/optic/experimental";
16
+ export {
17
+ /**
18
+ * @since 2.0.0
19
+ *
20
+ * ```md
21
+ * - Docs: https://fp-ts.github.io/optic/modules/data/List.ts.html#cons
22
+ * - Module: "@fp-ts/optic/data/Option"
23
+ * ```
24
+ */
25
+ cons as consList,
26
+ /**
27
+ * @since 2.0.0
28
+ *
29
+ * ```md
30
+ * - Docs: https://fp-ts.github.io/optic/modules/data/Either.ts.html#left
31
+ * - Module: "@fp-ts/optic/data/Either"
32
+ * ```
33
+ */
34
+ left,
35
+ /**
36
+ * @since 2.0.0
37
+ *
38
+ * ```md
39
+ * - Docs: https://fp-ts.github.io/optic/modules/data/Option.ts.html#none
40
+ * - Module: "@fp-ts/optic/data/Option"
41
+ * ```
42
+ */
43
+ none,
44
+ /**
45
+ * @since 2.0.0
46
+ *
47
+ * ```md
48
+ * - Docs: https://fp-ts.github.io/optic/modules/data/Either.ts.html#right
49
+ * - Module: "@fp-ts/optic/data/Either"
50
+ * ```
51
+ */
52
+ right,
53
+ /**
54
+ * @since 2.0.0
55
+ *
56
+ * ```md
57
+ * - Docs: https://fp-ts.github.io/optic/modules/data/Option.ts.html#some
58
+ * - Module: "@fp-ts/optic/data/Option"
59
+ * ```
60
+ */
61
+ some };
62
+ //# sourceMappingURL=Optic.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Optic.mjs","mappings":"AAAA;;;;;;;;;;AAWA,SAASA,IAAI,EAAEC,KAAK,QAAQ,0BAA0B;AACtD,SAASC,IAAI,QAAQ,wBAAwB;AAC7C,SAASC,IAAI,EAAEC,IAAI,QAAQ,0BAA0B;AAErD,cAAc,cAAc;AAC5B,cAAc,2BAA2B;AAEzC;AACE;;;;;;;;AAQAF,IAAI,IAAIG,QAAQ;AAChB;;;;;;;;AAQAL,IAAI;AACJ;;;;;;;;AAQAG,IAAI;AACJ;;;;;;;;AAQAF,KAAK;AACL;;;;;;;;AAQAG,IAAI","names":["left","right","cons","none","some","consList"],"sourceRoot":"","sources":["../../src/Optic.ts"],"sourcesContent":[null]}