effect 2.0.0-next.1 → 2.0.0-next.11
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/Codec.d.ts +56 -0
- package/Codec.d.ts.map +1 -0
- package/Codec.js +50 -0
- package/Codec.js.map +1 -0
- package/Debug.d.ts +11 -2
- package/Debug.d.ts.map +1 -1
- package/Debug.js +8 -2
- 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/Logger.d.ts +31 -0
- package/Logger.d.ts.map +1 -0
- package/Logger.js +29 -0
- package/Logger.js.map +1 -0
- 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/Optic.d.ts +185 -0
- package/Optic.d.ts.map +1 -0
- package/Optic.js +167 -0
- package/Optic.js.map +1 -0
- 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/index.d.ts +513 -4
- package/index.d.ts.map +1 -1
- package/index.js +17 -9
- package/index.js.map +1 -1
- package/mjs/Codec.mjs +56 -0
- package/mjs/Codec.mjs.map +1 -0
- package/mjs/Debug.mjs +31 -0
- package/mjs/Debug.mjs.map +1 -0
- package/mjs/Differ.mjs +61 -0
- package/mjs/Differ.mjs.map +1 -0
- package/mjs/Fiber.mjs +51 -0
- package/mjs/Fiber.mjs.map +1 -0
- package/mjs/FiberRefs.mjs +21 -0
- package/mjs/FiberRefs.mjs.map +1 -0
- package/mjs/Logger.mjs +31 -0
- package/mjs/Logger.mjs.map +1 -0
- package/mjs/Metric.mjs +101 -0
- package/mjs/Metric.mjs.map +1 -0
- package/mjs/Optic.mjs +185 -0
- package/mjs/Optic.mjs.map +1 -0
- package/mjs/Ref.mjs +31 -0
- package/mjs/Ref.mjs.map +1 -0
- package/mjs/Schedule.mjs +41 -0
- package/mjs/Schedule.mjs.map +1 -0
- package/mjs/index.mjs +959 -0
- package/mjs/index.mjs.map +1 -0
- package/package.json +10 -8
- package/src/Codec.ts +59 -0
- package/src/Debug.ts +43 -0
- package/src/Differ.ts +64 -0
- package/src/Fiber.ts +54 -0
- package/src/FiberRefs.ts +24 -0
- package/src/Logger.ts +34 -0
- package/src/Metric.ts +104 -0
- package/src/Optic.ts +188 -0
- package/src/Ref.ts +34 -0
- package/src/Schedule.ts +44 -0
- package/src/index.ts +961 -0
- package/_mjs/Debug.mjs +0 -22
- package/_mjs/Debug.mjs.map +0 -1
- package/_mjs/Differ.mjs +0 -12
- package/_mjs/Differ.mjs.map +0 -1
- package/_mjs/Fiber.mjs +0 -10
- package/_mjs/Fiber.mjs.map +0 -1
- package/_mjs/FiberRefs.mjs +0 -4
- package/_mjs/FiberRefs.mjs.map +0 -1
- package/_mjs/Metric.mjs +0 -20
- package/_mjs/Metric.mjs.map +0 -1
- package/_mjs/Ref.mjs +0 -6
- package/_mjs/Ref.mjs.map +0 -1
- package/_mjs/Schedule.mjs +0 -8
- package/_mjs/Schedule.mjs.map +0 -1
- package/_mjs/index.mjs +0 -450
- package/_mjs/index.mjs.map +0 -1
package/Codec.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 2.0.0
|
|
3
|
+
*
|
|
4
|
+
* ```md
|
|
5
|
+
* - Docs: https://fp-ts.github.io/schema/modules/Codec.ts.html
|
|
6
|
+
* - Module: "@fp-ts/schema/Codec"
|
|
7
|
+
* ```
|
|
8
|
+
*/
|
|
9
|
+
import * as Arbitrary from "@fp-ts/schema/Arbitrary";
|
|
10
|
+
import * as AST from "@fp-ts/schema/AST";
|
|
11
|
+
import * as DecodeError from "@fp-ts/schema/DecodeError";
|
|
12
|
+
import * as Decoder from "@fp-ts/schema/Decoder";
|
|
13
|
+
import * as Encoder from "@fp-ts/schema/Encoder";
|
|
14
|
+
import * as Guard from "@fp-ts/schema/Guard";
|
|
15
|
+
import * as Pretty from "@fp-ts/schema/Pretty";
|
|
16
|
+
import * as Provider from "@fp-ts/schema/Provider";
|
|
17
|
+
import * as Schema from "@fp-ts/schema/Schema";
|
|
18
|
+
export * from "@fp-ts/schema/Codec";
|
|
19
|
+
export {
|
|
20
|
+
/**
|
|
21
|
+
* @since 2.0.0
|
|
22
|
+
*/
|
|
23
|
+
Arbitrary,
|
|
24
|
+
/**
|
|
25
|
+
* @since 2.0.0
|
|
26
|
+
*/
|
|
27
|
+
AST,
|
|
28
|
+
/**
|
|
29
|
+
* @since 2.0.0
|
|
30
|
+
*/
|
|
31
|
+
DecodeError,
|
|
32
|
+
/**
|
|
33
|
+
* @since 2.0.0
|
|
34
|
+
*/
|
|
35
|
+
Decoder,
|
|
36
|
+
/**
|
|
37
|
+
* @since 2.0.0
|
|
38
|
+
*/
|
|
39
|
+
Encoder,
|
|
40
|
+
/**
|
|
41
|
+
* @since 2.0.0
|
|
42
|
+
*/
|
|
43
|
+
Guard,
|
|
44
|
+
/**
|
|
45
|
+
* @since 2.0.0
|
|
46
|
+
*/
|
|
47
|
+
Pretty,
|
|
48
|
+
/**
|
|
49
|
+
* @since 2.0.0
|
|
50
|
+
*/
|
|
51
|
+
Provider,
|
|
52
|
+
/**
|
|
53
|
+
* @since 2.0.0
|
|
54
|
+
*/
|
|
55
|
+
Schema };
|
|
56
|
+
//# sourceMappingURL=Codec.d.ts.map
|
package/Codec.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Codec.d.ts","sourceRoot":"","sources":["./src/Codec.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,SAAS,MAAM,yBAAyB,CAAA;AACpD,OAAO,KAAK,GAAG,MAAM,mBAAmB,CAAA;AACxC,OAAO,KAAK,WAAW,MAAM,2BAA2B,CAAA;AACxD,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAA;AAChD,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAA;AAChD,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAA;AAC5C,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAA;AAC9C,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAA;AAClD,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAA;AAE9C,cAAc,qBAAqB,CAAA;AAEnC,OAAO;AACL;;GAEG;AACH,SAAS;AACT;;GAEG;AACH,GAAG;AACH;;GAEG;AACH,WAAW;AACX;;GAEG;AACH,OAAO;AACP;;GAEG;AACH,OAAO;AACP;;GAEG;AACH,KAAK;AACL;;GAEG;AACH,MAAM;AACN;;GAEG;AACH,QAAQ;AACR;;GAEG;AACH,MAAM,EACP,CAAA"}
|
package/Codec.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
Arbitrary: true,
|
|
8
|
+
AST: true,
|
|
9
|
+
DecodeError: true,
|
|
10
|
+
Decoder: true,
|
|
11
|
+
Encoder: true,
|
|
12
|
+
Guard: true,
|
|
13
|
+
Pretty: true,
|
|
14
|
+
Provider: true,
|
|
15
|
+
Schema: true
|
|
16
|
+
};
|
|
17
|
+
exports.Schema = exports.Provider = exports.Pretty = exports.Guard = exports.Encoder = exports.Decoder = exports.DecodeError = exports.Arbitrary = exports.AST = void 0;
|
|
18
|
+
var Arbitrary = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/Arbitrary"));
|
|
19
|
+
exports.Arbitrary = Arbitrary;
|
|
20
|
+
var AST = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/AST"));
|
|
21
|
+
exports.AST = AST;
|
|
22
|
+
var DecodeError = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/DecodeError"));
|
|
23
|
+
exports.DecodeError = DecodeError;
|
|
24
|
+
var Decoder = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/Decoder"));
|
|
25
|
+
exports.Decoder = Decoder;
|
|
26
|
+
var Encoder = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/Encoder"));
|
|
27
|
+
exports.Encoder = Encoder;
|
|
28
|
+
var Guard = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/Guard"));
|
|
29
|
+
exports.Guard = Guard;
|
|
30
|
+
var Pretty = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/Pretty"));
|
|
31
|
+
exports.Pretty = Pretty;
|
|
32
|
+
var Provider = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/Provider"));
|
|
33
|
+
exports.Provider = Provider;
|
|
34
|
+
var Schema = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/schema/Schema"));
|
|
35
|
+
exports.Schema = Schema;
|
|
36
|
+
var _Codec = /*#__PURE__*/require("@fp-ts/schema/Codec");
|
|
37
|
+
Object.keys(_Codec).forEach(function (key) {
|
|
38
|
+
if (key === "default" || key === "__esModule") return;
|
|
39
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
40
|
+
if (key in exports && exports[key] === _Codec[key]) return;
|
|
41
|
+
Object.defineProperty(exports, key, {
|
|
42
|
+
enumerable: true,
|
|
43
|
+
get: function () {
|
|
44
|
+
return _Codec[key];
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
});
|
|
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
|
+
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
|
+
//# sourceMappingURL=Codec.js.map
|
package/Codec.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Codec.js","mappings":";;;;;;;;;;;;;;;;;AASA;AAAoD;AACpD;AAAwC;AACxC;AAAwD;AACxD;AAAgD;AAChD;AAAgD;AAChD;AAA4C;AAC5C;AAA8C;AAC9C;AAAkD;AAClD;AAA8C;AAE9C;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAmC;AAAA","names":[],"sourceRoot":"","sources":["./src/Codec.ts"],"sourcesContent":[null]}
|
package/Debug.d.ts
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
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
|
-
import { Debug, getCallTrace,
|
|
9
|
+
import { Debug, getCallTrace, getCallTraceFromNewError, isTraceEnabled, runtimeDebug, withCallTrace } from "@effect/io/Debug";
|
|
5
10
|
export {
|
|
6
11
|
/**
|
|
7
12
|
* @since 2.0.0
|
|
@@ -14,7 +19,11 @@ getCallTrace,
|
|
|
14
19
|
/**
|
|
15
20
|
* @since 2.0.0
|
|
16
21
|
*/
|
|
17
|
-
|
|
22
|
+
getCallTraceFromNewError,
|
|
23
|
+
/**
|
|
24
|
+
* @since 2.0.0
|
|
25
|
+
*/
|
|
26
|
+
isTraceEnabled,
|
|
18
27
|
/**
|
|
19
28
|
* @since 2.0.0
|
|
20
29
|
*/
|
package/Debug.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Debug.d.ts","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"Debug.d.ts","sourceRoot":"","sources":["./src/Debug.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,OAAO,EACL,KAAK,EACL,YAAY,EACZ,wBAAwB,EACxB,cAAc,EACd,YAAY,EACZ,aAAa,EACd,MAAM,kBAAkB,CAAA;AAEzB,OAAO;AACL;;GAEG;AACH,KAAK;AACL;;GAEG;AACH,YAAY;AACZ;;GAEG;AACH,wBAAwB;AACxB;;GAEG;AACH,cAAc;AACd;;GAEG;AACH,YAAY;AACZ;;GAEG;AACH,aAAa,EACd,CAAA"}
|
package/Debug.js
CHANGED
|
@@ -9,10 +9,16 @@ Object.defineProperty(exports, "getCallTrace", {
|
|
|
9
9
|
return _Debug.getCallTrace;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
-
Object.defineProperty(exports, "
|
|
12
|
+
Object.defineProperty(exports, "getCallTraceFromNewError", {
|
|
13
13
|
enumerable: true,
|
|
14
14
|
get: function () {
|
|
15
|
-
return _Debug.
|
|
15
|
+
return _Debug.getCallTraceFromNewError;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "isTraceEnabled", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () {
|
|
21
|
+
return _Debug.isTraceEnabled;
|
|
16
22
|
}
|
|
17
23
|
});
|
|
18
24
|
Object.defineProperty(exports, "runtimeDebug", {
|
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":["
|
|
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":["
|
|
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":["
|
|
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/Logger.d.ts
ADDED
|
@@ -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.d.ts.map
|
package/Logger.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Logger.d.ts","sourceRoot":"","sources":["./src/Logger.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,KAAK,MAAM,yBAAyB,CAAA;AAChD,OAAO,KAAK,IAAI,MAAM,wBAAwB,CAAA;AAE9C,cAAc,mBAAmB,CAAA;AAEjC,OAAO;AACL;;;;;;;GAOG;AACH,KAAK,IAAI,QAAQ;AACjB;;;;;;;GAOG;AACH,IAAI,IAAI,OAAO,EAChB,CAAA"}
|
package/Logger.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
LogLevel: true,
|
|
8
|
+
LogSpan: true
|
|
9
|
+
};
|
|
10
|
+
exports.LogSpan = exports.LogLevel = void 0;
|
|
11
|
+
var Level = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Logger/Level"));
|
|
12
|
+
exports.LogLevel = Level;
|
|
13
|
+
var Span = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Logger/Span"));
|
|
14
|
+
exports.LogSpan = Span;
|
|
15
|
+
var _Logger = /*#__PURE__*/require("@effect/io/Logger");
|
|
16
|
+
Object.keys(_Logger).forEach(function (key) {
|
|
17
|
+
if (key === "default" || key === "__esModule") return;
|
|
18
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
19
|
+
if (key in exports && exports[key] === _Logger[key]) return;
|
|
20
|
+
Object.defineProperty(exports, key, {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: function () {
|
|
23
|
+
return _Logger[key];
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
});
|
|
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
|
+
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
|
+
//# sourceMappingURL=Logger.js.map
|
package/Logger.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Logger.js","mappings":";;;;;;;;;;AASA;AAAgD;AAChD;AAA8C;AAE9C;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAiC;AAAA","names":[],"sourceRoot":"","sources":["./src/Logger.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":["
|
|
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"}
|