effect 2.0.0-next.1 → 2.0.0-next.3
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/Debug.d.ts +5 -0
- package/Debug.d.ts.map +1 -1
- package/Debug.js.map +1 -1
- package/Differ.d.ts +59 -5
- package/Differ.d.ts.map +1 -1
- package/Differ.js +10 -10
- package/Differ.js.map +1 -1
- package/Fiber.d.ts +49 -4
- package/Fiber.d.ts.map +1 -1
- package/Fiber.js +8 -8
- package/Fiber.js.map +1 -1
- package/FiberRefs.d.ts +19 -1
- package/FiberRefs.d.ts.map +1 -1
- package/FiberRefs.js +2 -2
- package/FiberRefs.js.map +1 -1
- package/Metric.d.ts +99 -9
- package/Metric.d.ts.map +1 -1
- package/Metric.js +18 -18
- package/Metric.js.map +1 -1
- package/README.md +1 -1
- package/Ref.d.ts +29 -2
- package/Ref.d.ts.map +1 -1
- package/Ref.js +4 -4
- package/Ref.js.map +1 -1
- package/Schedule.d.ts +39 -3
- package/Schedule.d.ts.map +1 -1
- package/Schedule.js +6 -6
- package/Schedule.js.map +1 -1
- package/_mjs/Debug.mjs +5 -0
- package/_mjs/Debug.mjs.map +1 -1
- package/_mjs/Differ.mjs +59 -10
- package/_mjs/Differ.mjs.map +1 -1
- package/_mjs/Fiber.mjs +49 -8
- package/_mjs/Fiber.mjs.map +1 -1
- package/_mjs/FiberRefs.mjs +19 -2
- package/_mjs/FiberRefs.mjs.map +1 -1
- package/_mjs/Metric.mjs +99 -18
- package/_mjs/Metric.mjs.map +1 -1
- package/_mjs/Ref.mjs +29 -4
- package/_mjs/Ref.mjs.map +1 -1
- package/_mjs/Schedule.mjs +39 -6
- package/_mjs/Schedule.mjs.map +1 -1
- package/_mjs/index.mjs +479 -0
- package/_mjs/index.mjs.map +1 -1
- package/index.d.ts +479 -0
- package/index.d.ts.map +1 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
package/Debug.d.ts
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 { Debug, getCallTrace, nodeSourceMapExtractor, runtimeDebug, withCallTrace } from "@effect/io/Debug";
|
|
5
10
|
export {
|
package/Debug.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Debug.d.ts","sourceRoot":"","sources":["../../src/Debug.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"Debug.d.ts","sourceRoot":"","sources":["../../src/Debug.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,sBAAsB,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAE3G,OAAO;AACL;;GAEG;AACH,KAAK;AACL;;GAEG;AACH,YAAY;AACZ;;GAEG;AACH,sBAAsB;AACtB;;GAEG;AACH,YAAY;AACZ;;GAEG;AACH,aAAa,EACd,CAAA"}
|
package/Debug.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Debug.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Debug.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA","names":[],"sourceRoot":"","sources":["../../src/Debug.ts"],"sourcesContent":[null]}
|
package/Differ.d.ts
CHANGED
|
@@ -1,7 +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
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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 };
|
|
7
61
|
//# sourceMappingURL=Differ.d.ts.map
|
package/Differ.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Differ.d.ts","sourceRoot":"","sources":["../../src/Differ.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"Differ.d.ts","sourceRoot":"","sources":["../../src/Differ.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAA;AAC3D,OAAO,KAAK,YAAY,MAAM,iCAAiC,CAAA;AAC/D,OAAO,KAAK,YAAY,MAAM,iCAAiC,CAAA;AAC/D,OAAO,KAAK,YAAY,MAAM,iCAAiC,CAAA;AAC/D,OAAO,KAAK,OAAO,MAAM,4BAA4B,CAAA;AAErD,cAAc,oBAAoB,CAAA;AAElC,OAAO;AACL;;;;;;;GAOG;AACH,UAAU;AACV;;;;;;;GAOG;AACH,YAAY;AACZ;;;;;;;GAOG;AACH,YAAY;AACZ;;;;;;;GAOG;AACH,YAAY;AACZ;;;;;;;GAOG;AACH,OAAO,EACR,CAAA"}
|
package/Differ.js
CHANGED
|
@@ -11,6 +11,16 @@ var _exportNames = {
|
|
|
11
11
|
OrPatch: true
|
|
12
12
|
};
|
|
13
13
|
exports.OrPatch = exports.HashSetPatch = exports.HashMapPatch = exports.ContextPatch = exports.ChunkPatch = void 0;
|
|
14
|
+
var ChunkPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/ChunkPatch"));
|
|
15
|
+
exports.ChunkPatch = ChunkPatch;
|
|
16
|
+
var ContextPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/ContextPatch"));
|
|
17
|
+
exports.ContextPatch = ContextPatch;
|
|
18
|
+
var HashMapPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/HashMapPatch"));
|
|
19
|
+
exports.HashMapPatch = HashMapPatch;
|
|
20
|
+
var HashSetPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/HashSetPatch"));
|
|
21
|
+
exports.HashSetPatch = HashSetPatch;
|
|
22
|
+
var OrPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/OrPatch"));
|
|
23
|
+
exports.OrPatch = OrPatch;
|
|
14
24
|
var _Differ = /*#__PURE__*/require("@fp-ts/data/Differ");
|
|
15
25
|
Object.keys(_Differ).forEach(function (key) {
|
|
16
26
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -23,16 +33,6 @@ Object.keys(_Differ).forEach(function (key) {
|
|
|
23
33
|
}
|
|
24
34
|
});
|
|
25
35
|
});
|
|
26
|
-
var ChunkPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/ChunkPatch"));
|
|
27
|
-
exports.ChunkPatch = ChunkPatch_1;
|
|
28
|
-
var ContextPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/ContextPatch"));
|
|
29
|
-
exports.ContextPatch = ContextPatch_1;
|
|
30
|
-
var HashMapPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/HashMapPatch"));
|
|
31
|
-
exports.HashMapPatch = HashMapPatch_1;
|
|
32
|
-
var HashSetPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/HashSetPatch"));
|
|
33
|
-
exports.HashSetPatch = HashSetPatch_1;
|
|
34
|
-
var OrPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/OrPatch"));
|
|
35
|
-
exports.OrPatch = OrPatch_1;
|
|
36
36
|
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); }
|
|
37
37
|
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; }
|
|
38
38
|
//# sourceMappingURL=Differ.js.map
|
package/Differ.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Differ.js","mappings":";;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Differ.js","mappings":";;;;;;;;;;;;;AASA;AAA2D;AAC3D;AAA+D;AAC/D;AAA+D;AAC/D;AAA+D;AAC/D;AAAqD;AAErD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAkC;AAAA","names":[],"sourceRoot":"","sources":["../../src/Differ.ts"],"sourcesContent":[null]}
|
package/Fiber.d.ts
CHANGED
|
@@ -1,6 +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
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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 };
|
|
6
51
|
//# sourceMappingURL=Fiber.d.ts.map
|
package/Fiber.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fiber.d.ts","sourceRoot":"","sources":["../../src/Fiber.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"Fiber.d.ts","sourceRoot":"","sources":["../../src/Fiber.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,MAAM,qBAAqB,CAAA;AACzC,OAAO,KAAK,YAAY,MAAM,gCAAgC,CAAA;AAC9D,OAAO,KAAK,iBAAiB,MAAM,sCAAsC,CAAA;AACzE,OAAO,KAAK,MAAM,MAAM,yBAAyB,CAAA;AAEjD,cAAc,kBAAkB,CAAA;AAEhC,OAAO;AACL;;;;;;;GAOG;AACH,EAAE;AACF;;;;;;;GAOG;AACH,YAAY;AACZ;;;;;;;GAOG;AACH,iBAAiB;AACjB;;;;;;;GAOG;AACH,MAAM,EACP,CAAA"}
|
package/Fiber.js
CHANGED
|
@@ -10,6 +10,14 @@ var _exportNames = {
|
|
|
10
10
|
Status: true
|
|
11
11
|
};
|
|
12
12
|
exports.Status = exports.RuntimeFlagsPatch = exports.RuntimeFlags = exports.Id = void 0;
|
|
13
|
+
var Id = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Id"));
|
|
14
|
+
exports.Id = Id;
|
|
15
|
+
var RuntimeFlags = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Runtime/Flags"));
|
|
16
|
+
exports.RuntimeFlags = RuntimeFlags;
|
|
17
|
+
var RuntimeFlagsPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Runtime/Flags/Patch"));
|
|
18
|
+
exports.RuntimeFlagsPatch = RuntimeFlagsPatch;
|
|
19
|
+
var Status = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Status"));
|
|
20
|
+
exports.Status = Status;
|
|
13
21
|
var _Fiber = /*#__PURE__*/require("@effect/io/Fiber");
|
|
14
22
|
Object.keys(_Fiber).forEach(function (key) {
|
|
15
23
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -22,14 +30,6 @@ Object.keys(_Fiber).forEach(function (key) {
|
|
|
22
30
|
}
|
|
23
31
|
});
|
|
24
32
|
});
|
|
25
|
-
var Id_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Id"));
|
|
26
|
-
exports.Id = Id_1;
|
|
27
|
-
var RuntimeFlags_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Runtime/Flags"));
|
|
28
|
-
exports.RuntimeFlags = RuntimeFlags_1;
|
|
29
|
-
var RuntimeFlagsPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Runtime/Flags/Patch"));
|
|
30
|
-
exports.RuntimeFlagsPatch = RuntimeFlagsPatch_1;
|
|
31
|
-
var Status_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Status"));
|
|
32
|
-
exports.Status = Status_1;
|
|
33
33
|
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); }
|
|
34
34
|
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; }
|
|
35
35
|
//# sourceMappingURL=Fiber.js.map
|
package/Fiber.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fiber.js","mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Fiber.js","mappings":";;;;;;;;;;;;AASA;AAAyC;AACzC;AAA8D;AAC9D;AAAyE;AACzE;AAAiD;AAEjD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAgC;AAAA","names":[],"sourceRoot":"","sources":["../../src/Fiber.ts"],"sourcesContent":[null]}
|
package/FiberRefs.d.ts
CHANGED
|
@@ -1,3 +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
|
-
export
|
|
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 };
|
|
3
21
|
//# sourceMappingURL=FiberRefs.d.ts.map
|
package/FiberRefs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FiberRefs.d.ts","sourceRoot":"","sources":["../../src/FiberRefs.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;
|
|
1
|
+
{"version":3,"file":"FiberRefs.d.ts","sourceRoot":"","sources":["../../src/FiberRefs.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,KAAK,MAAM,4BAA4B,CAAA;AAEnD,cAAc,sBAAsB,CAAA;AAEpC,OAAO;AACL;;;;;;;GAOG;AACH,KAAK,EACN,CAAA"}
|
package/FiberRefs.js
CHANGED
|
@@ -7,6 +7,8 @@ var _exportNames = {
|
|
|
7
7
|
Patch: true
|
|
8
8
|
};
|
|
9
9
|
exports.Patch = void 0;
|
|
10
|
+
var Patch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/FiberRefs/Patch"));
|
|
11
|
+
exports.Patch = Patch;
|
|
10
12
|
var _FiberRefs = /*#__PURE__*/require("@effect/io/FiberRefs");
|
|
11
13
|
Object.keys(_FiberRefs).forEach(function (key) {
|
|
12
14
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -19,8 +21,6 @@ Object.keys(_FiberRefs).forEach(function (key) {
|
|
|
19
21
|
}
|
|
20
22
|
});
|
|
21
23
|
});
|
|
22
|
-
var Patch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/FiberRefs/Patch"));
|
|
23
|
-
exports.Patch = Patch_1;
|
|
24
24
|
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); }
|
|
25
25
|
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; }
|
|
26
26
|
//# sourceMappingURL=FiberRefs.js.map
|
package/FiberRefs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FiberRefs.js","mappings":";;;;;;;;;
|
|
1
|
+
{"version":3,"file":"FiberRefs.js","mappings":";;;;;;;;;AASA;AAAmD;AAEnD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAoC;AAAA","names":[],"sourceRoot":"","sources":["../../src/FiberRefs.ts"],"sourcesContent":[null]}
|
package/Metric.d.ts
CHANGED
|
@@ -1,11 +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
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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 };
|
|
11
101
|
//# sourceMappingURL=Metric.d.ts.map
|
package/Metric.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Metric.d.ts","sourceRoot":"","sources":["../../src/Metric.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"Metric.d.ts","sourceRoot":"","sources":["../../src/Metric.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,UAAU,MAAM,8BAA8B,CAAA;AAC1D,OAAO,KAAK,IAAI,MAAM,wBAAwB,CAAA;AAC9C,OAAO,KAAK,GAAG,MAAM,uBAAuB,CAAA;AAC5C,OAAO,KAAK,OAAO,MAAM,2BAA2B,CAAA;AACpD,OAAO,KAAK,KAAK,MAAM,yBAAyB,CAAA;AAChD,OAAO,KAAK,IAAI,MAAM,wBAAwB,CAAA;AAC9C,OAAO,KAAK,OAAO,MAAM,2BAA2B,CAAA;AACpD,OAAO,KAAK,QAAQ,MAAM,4BAA4B,CAAA;AACtD,OAAO,KAAK,KAAK,MAAM,yBAAyB,CAAA;AAEhD,cAAc,mBAAmB,CAAA;AAEjC,OAAO;AACL;;;;;;;GAOG;AACH,UAAU;AACV;;;;;;;GAOG;AACH,IAAI;AACJ;;;;;;;GAOG;AACH,GAAG;AACH;;;;;;;GAOG;AACH,OAAO;AACP;;;;;;;GAOG;AACH,KAAK;AACL;;;;;;;GAOG;AACH,IAAI;AACJ;;;;;;;GAOG;AACH,OAAO;AACP;;;;;;;GAOG;AACH,QAAQ;AACR;;;;;;;GAOG;AACH,KAAK,EACN,CAAA"}
|
package/Metric.js
CHANGED
|
@@ -15,6 +15,24 @@ var _exportNames = {
|
|
|
15
15
|
State: true
|
|
16
16
|
};
|
|
17
17
|
exports.State = exports.Registry = exports.Polling = exports.Pair = exports.Label = exports.KeyType = exports.Key = exports.Hook = exports.Boundaries = void 0;
|
|
18
|
+
var Boundaries = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Boundaries"));
|
|
19
|
+
exports.Boundaries = Boundaries;
|
|
20
|
+
var Hook = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Hook"));
|
|
21
|
+
exports.Hook = Hook;
|
|
22
|
+
var Key = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Key"));
|
|
23
|
+
exports.Key = Key;
|
|
24
|
+
var KeyType = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/KeyType"));
|
|
25
|
+
exports.KeyType = KeyType;
|
|
26
|
+
var Label = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Label"));
|
|
27
|
+
exports.Label = Label;
|
|
28
|
+
var Pair = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Pair"));
|
|
29
|
+
exports.Pair = Pair;
|
|
30
|
+
var Polling = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Polling"));
|
|
31
|
+
exports.Polling = Polling;
|
|
32
|
+
var Registry = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Registry"));
|
|
33
|
+
exports.Registry = Registry;
|
|
34
|
+
var State = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/State"));
|
|
35
|
+
exports.State = State;
|
|
18
36
|
var _Metric = /*#__PURE__*/require("@effect/io/Metric");
|
|
19
37
|
Object.keys(_Metric).forEach(function (key) {
|
|
20
38
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -27,24 +45,6 @@ Object.keys(_Metric).forEach(function (key) {
|
|
|
27
45
|
}
|
|
28
46
|
});
|
|
29
47
|
});
|
|
30
|
-
var Boundaries_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Boundaries"));
|
|
31
|
-
exports.Boundaries = Boundaries_1;
|
|
32
|
-
var Hook_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Hook"));
|
|
33
|
-
exports.Hook = Hook_1;
|
|
34
|
-
var Key_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Key"));
|
|
35
|
-
exports.Key = Key_1;
|
|
36
|
-
var KeyType_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/KeyType"));
|
|
37
|
-
exports.KeyType = KeyType_1;
|
|
38
|
-
var Label_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Label"));
|
|
39
|
-
exports.Label = Label_1;
|
|
40
|
-
var Pair_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Pair"));
|
|
41
|
-
exports.Pair = Pair_1;
|
|
42
|
-
var Polling_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Polling"));
|
|
43
|
-
exports.Polling = Polling_1;
|
|
44
|
-
var Registry_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Registry"));
|
|
45
|
-
exports.Registry = Registry_1;
|
|
46
|
-
var State_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/State"));
|
|
47
|
-
exports.State = State_1;
|
|
48
48
|
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); }
|
|
49
49
|
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; }
|
|
50
50
|
//# sourceMappingURL=Metric.js.map
|
package/Metric.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Metric.js","mappings":";;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Metric.js","mappings":";;;;;;;;;;;;;;;;;AASA;AAA0D;AAC1D;AAA8C;AAC9C;AAA4C;AAC5C;AAAoD;AACpD;AAAgD;AAChD;AAA8C;AAC9C;AAAoD;AACpD;AAAsD;AACtD;AAAgD;AAEhD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAiC;AAAA","names":[],"sourceRoot":"","sources":["../../src/Metric.ts"],"sourcesContent":[null]}
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## Welcome to Effect [](https://gitpod.io/#https://github.com/Effect-TS/
|
|
1
|
+
## Welcome to Effect [](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
|
|
3
|
-
|
|
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
|
|
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":";;;;;;;;;;
|
|
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
|
|
3
|
-
|
|
4
|
-
|
|
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
|
|
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":";;;;;;;;;;;
|
|
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 {
|