dfx 0.66.3 → 0.68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cache/memory.d.ts +3 -2
- package/Cache/memory.d.ts.map +1 -1
- package/Cache/memory.js.map +1 -1
- package/Cache/memoryTTL.d.ts +3 -2
- package/Cache/memoryTTL.d.ts.map +1 -1
- package/Cache/memoryTTL.js.map +1 -1
- package/Cache/prelude.d.ts +8 -39
- package/Cache/prelude.d.ts.map +1 -1
- package/Cache/prelude.js +4 -4
- package/Cache/prelude.js.map +1 -1
- package/Cache.d.ts +25 -23
- package/Cache.d.ts.map +1 -1
- package/Cache.js.map +1 -1
- package/DiscordGateway/DiscordWS.d.ts +1 -1
- package/DiscordGateway/Shard.d.ts +4 -4
- package/DiscordGateway/Shard.d.ts.map +1 -1
- package/DiscordGateway/Shard.js +3 -3
- package/DiscordGateway/Shard.js.map +1 -1
- package/DiscordGateway/Sharder.d.ts +4 -4
- package/DiscordGateway/Sharder.d.ts.map +1 -1
- package/DiscordGateway/Sharder.js.map +1 -1
- package/DiscordGateway.d.ts +1 -1
- package/DiscordGateway.js +3 -3
- package/DiscordGateway.js.map +1 -1
- package/DiscordREST.d.ts +1 -1
- package/Interactions/gateway.d.ts +1 -1
- package/RateLimit.d.ts +2 -2
- package/gateway.d.ts +1 -1
- package/mjs/Cache/memory.mjs.map +1 -1
- package/mjs/Cache/memoryTTL.mjs.map +1 -1
- package/mjs/Cache/prelude.mjs +1 -1
- package/mjs/Cache/prelude.mjs.map +1 -1
- package/mjs/Cache.mjs.map +1 -1
- package/mjs/DiscordGateway/Shard.mjs +3 -3
- package/mjs/DiscordGateway/Shard.mjs.map +1 -1
- package/mjs/DiscordGateway/Sharder.mjs.map +1 -1
- package/mjs/DiscordGateway.mjs +3 -3
- package/mjs/DiscordGateway.mjs.map +1 -1
- package/mjs/utils/Effect.mjs +2 -2
- package/mjs/utils/Effect.mjs.map +1 -1
- package/mjs/version.mjs +1 -1
- package/package.json +4 -4
- package/src/Cache/memory.ts +11 -2
- package/src/Cache/memoryTTL.ts +8 -3
- package/src/Cache/prelude.ts +39 -6
- package/src/Cache.ts +60 -4
- package/src/DiscordGateway/Shard.ts +4 -4
- package/src/DiscordGateway/Sharder.ts +2 -2
- package/src/DiscordGateway.ts +4 -4
- package/src/utils/Effect.ts +3 -3
- package/src/version.ts +1 -1
- package/utils/Effect.d.ts +2 -2
- package/utils/Effect.d.ts.map +1 -1
- package/utils/Effect.js +2 -2
- package/utils/Effect.js.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/src/Cache.ts
CHANGED
|
@@ -24,6 +24,43 @@ export type CacheOp<T> =
|
|
|
24
24
|
| { op: "update"; resourceId: string; resource: T }
|
|
25
25
|
| { op: "delete"; resourceId: string }
|
|
26
26
|
|
|
27
|
+
export interface ParentCache<EOps, EDriver, EMiss, EPMiss, A> {
|
|
28
|
+
readonly get: (
|
|
29
|
+
parentId: string,
|
|
30
|
+
id: string,
|
|
31
|
+
) => Effect.Effect<never, EDriver | EMiss, A>
|
|
32
|
+
readonly put: (_: A) => Effect.Effect<never, EDriver | EMiss, void>
|
|
33
|
+
readonly update: <R, E>(
|
|
34
|
+
parentId: string,
|
|
35
|
+
id: string,
|
|
36
|
+
f: (_: A) => Effect.Effect<R, E, A>,
|
|
37
|
+
) => Effect.Effect<R, EDriver | EMiss | E, A>
|
|
38
|
+
readonly getForParent: (
|
|
39
|
+
parentId: string,
|
|
40
|
+
) => Effect.Effect<never, EDriver | EPMiss, ReadonlyMap<string, A>>
|
|
41
|
+
readonly run: Effect.Effect<never, EOps | EDriver, void>
|
|
42
|
+
readonly size: Effect.Effect<never, EDriver, number>
|
|
43
|
+
readonly sizeForParent: (
|
|
44
|
+
parentId: string,
|
|
45
|
+
) => Effect.Effect<never, EDriver, number>
|
|
46
|
+
readonly set: (
|
|
47
|
+
parentId: string,
|
|
48
|
+
resourceId: string,
|
|
49
|
+
resource: A,
|
|
50
|
+
) => Effect.Effect<never, EDriver, void>
|
|
51
|
+
readonly delete: (
|
|
52
|
+
parentId: string,
|
|
53
|
+
resourceId: string,
|
|
54
|
+
) => Effect.Effect<never, EDriver, void>
|
|
55
|
+
readonly parentDelete: (
|
|
56
|
+
parentId: string,
|
|
57
|
+
) => Effect.Effect<never, EDriver, void>
|
|
58
|
+
readonly refreshTTL: (
|
|
59
|
+
parentId: string,
|
|
60
|
+
resourceId: string,
|
|
61
|
+
) => Effect.Effect<never, EDriver, void>
|
|
62
|
+
}
|
|
63
|
+
|
|
27
64
|
export const makeWithParent = <EOps, EDriver, EMiss, EPMiss, A>({
|
|
28
65
|
driver,
|
|
29
66
|
id,
|
|
@@ -40,7 +77,7 @@ export const makeWithParent = <EOps, EDriver, EMiss, EPMiss, A>({
|
|
|
40
77
|
onParentMiss: (
|
|
41
78
|
parentId: string,
|
|
42
79
|
) => Effect.Effect<never, EPMiss, Array<[id: string, resource: A]>>
|
|
43
|
-
}) => {
|
|
80
|
+
}): ParentCache<EOps, EDriver, EMiss, EPMiss, A> => {
|
|
44
81
|
const sync = Stream.runDrain(
|
|
45
82
|
Stream.tap(ops, (op): Effect.Effect<never, EDriver, void> => {
|
|
46
83
|
switch (op.op) {
|
|
@@ -109,7 +146,26 @@ export const makeWithParent = <EOps, EDriver, EMiss, EPMiss, A>({
|
|
|
109
146
|
concurrency: "unbounded",
|
|
110
147
|
discard: true,
|
|
111
148
|
}),
|
|
112
|
-
}
|
|
149
|
+
} as const
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface Cache<EOps, EDriver, EMiss, A> {
|
|
153
|
+
readonly get: (id: string) => Effect.Effect<never, EDriver | EMiss, A>
|
|
154
|
+
readonly put: (_: A) => Effect.Effect<never, EDriver, void>
|
|
155
|
+
readonly update: <R, E>(
|
|
156
|
+
id: string,
|
|
157
|
+
f: (_: A) => Effect.Effect<R, E, A>,
|
|
158
|
+
) => Effect.Effect<R, EDriver | EMiss | E, A>
|
|
159
|
+
readonly run: Effect.Effect<never, EOps | EDriver, void>
|
|
160
|
+
readonly size: Effect.Effect<never, EDriver, number>
|
|
161
|
+
readonly set: (
|
|
162
|
+
resourceId: string,
|
|
163
|
+
resource: A,
|
|
164
|
+
) => Effect.Effect<never, EDriver, void>
|
|
165
|
+
readonly delete: (resourceId: string) => Effect.Effect<never, EDriver, void>
|
|
166
|
+
readonly refreshTTL: (
|
|
167
|
+
resourceId: string,
|
|
168
|
+
) => Effect.Effect<never, EDriver, void>
|
|
113
169
|
}
|
|
114
170
|
|
|
115
171
|
export const make = <EOps, EDriver, EMiss, A>({
|
|
@@ -122,7 +178,7 @@ export const make = <EOps, EDriver, EMiss, A>({
|
|
|
122
178
|
ops?: Stream.Stream<never, EOps, CacheOp<A>>
|
|
123
179
|
id: (_: A) => string
|
|
124
180
|
onMiss: (id: string) => Effect.Effect<never, EMiss, A>
|
|
125
|
-
}) => {
|
|
181
|
+
}): Cache<EOps, EDriver, EMiss, A> => {
|
|
126
182
|
const sync = Stream.runDrain(
|
|
127
183
|
Stream.tap(ops, (op): Effect.Effect<never, EDriver, void> => {
|
|
128
184
|
switch (op.op) {
|
|
@@ -162,7 +218,7 @@ export const make = <EOps, EDriver, EMiss, A>({
|
|
|
162
218
|
concurrency: "unbounded",
|
|
163
219
|
discard: true,
|
|
164
220
|
}),
|
|
165
|
-
}
|
|
221
|
+
} as const
|
|
166
222
|
}
|
|
167
223
|
|
|
168
224
|
export class CacheMissError {
|
|
@@ -5,7 +5,7 @@ import { pipe } from "effect/Function"
|
|
|
5
5
|
import * as Option from "effect/Option"
|
|
6
6
|
import * as ConfigSecret from "effect/ConfigSecret"
|
|
7
7
|
import * as Effect from "effect/Effect"
|
|
8
|
-
import * as
|
|
8
|
+
import * as PubSub from "effect/PubSub"
|
|
9
9
|
import * as Layer from "effect/Layer"
|
|
10
10
|
import * as Queue from "effect/Queue"
|
|
11
11
|
import * as Ref from "effect/Ref"
|
|
@@ -35,7 +35,7 @@ export const make = Effect.gen(function* (_) {
|
|
|
35
35
|
|
|
36
36
|
const connect = (
|
|
37
37
|
shard: [id: number, count: number],
|
|
38
|
-
hub:
|
|
38
|
+
hub: PubSub.PubSub<Discord.GatewayPayload<Discord.ReceiveEvent>>,
|
|
39
39
|
sendQueue: Queue.Dequeue<Discord.GatewayPayload<Discord.SendEvent>>,
|
|
40
40
|
) =>
|
|
41
41
|
Effect.gen(function* (_) {
|
|
@@ -160,9 +160,9 @@ export const make = Effect.gen(function* (_) {
|
|
|
160
160
|
)
|
|
161
161
|
case Discord.GatewayOpcode.DISPATCH:
|
|
162
162
|
if (p.t === "READY" || p.t === "RESUMED") {
|
|
163
|
-
return Effect.zipRight(resume,
|
|
163
|
+
return Effect.zipRight(resume, PubSub.publish(hub, p))
|
|
164
164
|
}
|
|
165
|
-
return
|
|
165
|
+
return PubSub.publish(hub, p)
|
|
166
166
|
default:
|
|
167
167
|
return Effect.unit
|
|
168
168
|
}
|
|
@@ -6,7 +6,7 @@ import * as HashSet from "effect/HashSet"
|
|
|
6
6
|
import type * as Option from "effect/Option"
|
|
7
7
|
import * as Deferred from "effect/Deferred"
|
|
8
8
|
import * as Effect from "effect/Effect"
|
|
9
|
-
import type * as
|
|
9
|
+
import type * as PubSub from "effect/PubSub"
|
|
10
10
|
import * as Layer from "effect/Layer"
|
|
11
11
|
import type * as Queue from "effect/Queue"
|
|
12
12
|
import * as Ref from "effect/Ref"
|
|
@@ -74,7 +74,7 @@ const make = Effect.gen(function* (_) {
|
|
|
74
74
|
)
|
|
75
75
|
|
|
76
76
|
const run = (
|
|
77
|
-
hub:
|
|
77
|
+
hub: PubSub.PubSub<Discord.GatewayPayload<Discord.ReceiveEvent>>,
|
|
78
78
|
sendQueue: Queue.Dequeue<Discord.GatewayPayload<Discord.SendEvent>>,
|
|
79
79
|
) =>
|
|
80
80
|
Effect.gen(function* (_) {
|
package/src/DiscordGateway.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Tag } from "effect/Context"
|
|
2
2
|
import type * as HashSet from "effect/HashSet"
|
|
3
3
|
import * as Effect from "effect/Effect"
|
|
4
|
-
import * as
|
|
4
|
+
import * as PubSub from "effect/PubSub"
|
|
5
5
|
import * as Layer from "effect/Layer"
|
|
6
6
|
import * as Queue from "effect/Queue"
|
|
7
7
|
import * as Stream from "effect/Stream"
|
|
@@ -24,7 +24,7 @@ const fromDispatchFactory =
|
|
|
24
24
|
)
|
|
25
25
|
|
|
26
26
|
const handleDispatchFactory =
|
|
27
|
-
(hub:
|
|
27
|
+
(hub: PubSub.PubSub<Discord.GatewayPayload<Discord.ReceiveEvent>>) =>
|
|
28
28
|
<K extends keyof Discord.ReceiveEvents, R, E, A>(
|
|
29
29
|
event: K,
|
|
30
30
|
handle: (event: Discord.ReceiveEvents[K]) => Effect.Effect<R, E, A>,
|
|
@@ -64,7 +64,7 @@ export const DiscordGateway = Tag<DiscordGateway>()
|
|
|
64
64
|
export const make = Effect.gen(function* (_) {
|
|
65
65
|
const sharder = yield* _(Sharder)
|
|
66
66
|
const hub = yield* _(
|
|
67
|
-
|
|
67
|
+
PubSub.unbounded<Discord.GatewayPayload<Discord.ReceiveEvent>>(),
|
|
68
68
|
)
|
|
69
69
|
|
|
70
70
|
const sendQueue = yield* _(
|
|
@@ -73,7 +73,7 @@ export const make = Effect.gen(function* (_) {
|
|
|
73
73
|
const send = (payload: Discord.GatewayPayload<Discord.SendEvent>) =>
|
|
74
74
|
sendQueue.offer(payload)
|
|
75
75
|
|
|
76
|
-
const dispatch = Stream.
|
|
76
|
+
const dispatch = Stream.fromPubSub(hub)
|
|
77
77
|
const fromDispatch = fromDispatchFactory(dispatch)
|
|
78
78
|
const handleDispatch = handleDispatchFactory(hub)
|
|
79
79
|
|
package/src/utils/Effect.ts
CHANGED
|
@@ -2,17 +2,17 @@ import { pipe } from "effect/Function"
|
|
|
2
2
|
import * as Deferred from "effect/Deferred"
|
|
3
3
|
import * as Effect from "effect/Effect"
|
|
4
4
|
import type * as Fiber from "effect/Fiber"
|
|
5
|
-
import * as
|
|
5
|
+
import * as PubSub from "effect/PubSub"
|
|
6
6
|
import * as Queue from "effect/Queue"
|
|
7
7
|
import * as ScopedRef from "effect/ScopedRef"
|
|
8
8
|
|
|
9
9
|
export const subscribeForEachPar = <R, E, A, X>(
|
|
10
|
-
self:
|
|
10
|
+
self: PubSub.PubSub<A>,
|
|
11
11
|
effect: (_: A) => Effect.Effect<R, E, X>,
|
|
12
12
|
): Effect.Effect<R, E, never> =>
|
|
13
13
|
Effect.flatMap(Deferred.make<E, never>(), deferred => {
|
|
14
14
|
const run = pipe(
|
|
15
|
-
|
|
15
|
+
PubSub.subscribe(self),
|
|
16
16
|
Effect.flatMap(queue =>
|
|
17
17
|
Effect.forever(
|
|
18
18
|
Effect.flatMap(Queue.take(queue), _ =>
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const LIB_VERSION = "0.
|
|
1
|
+
export const LIB_VERSION = "0.68.0";
|
package/utils/Effect.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as Effect from "effect/Effect";
|
|
2
|
-
import * as
|
|
3
|
-
export declare const subscribeForEachPar: <R, E, A, X>(self:
|
|
2
|
+
import * as PubSub from "effect/PubSub";
|
|
3
|
+
export declare const subscribeForEachPar: <R, E, A, X>(self: PubSub.PubSub<A>, effect: (_: A) => Effect.Effect<R, E, X>) => Effect.Effect<R, E, never>;
|
|
4
4
|
export declare const foreverSwitch: <R, E, A, R1, E1, X>(self: Effect.Effect<R, E, A>, f: (_: A) => Effect.Effect<R1, E1, X>) => Effect.Effect<R | R1, E | E1, never>;
|
|
5
5
|
//# sourceMappingURL=Effect.d.ts.map
|
package/utils/Effect.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Effect.d.ts","sourceRoot":"","sources":["../src/utils/Effect.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAA;AAEvC,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"Effect.d.ts","sourceRoot":"","sources":["../src/utils/Effect.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAA;AAEvC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAA;AAIvC,eAAO,MAAM,mBAAmB,8GAyB5B,CAAA;AAEJ,eAAO,MAAM,aAAa,mIA+BvB,CAAA"}
|
package/utils/Effect.js
CHANGED
|
@@ -7,13 +7,13 @@ exports.subscribeForEachPar = exports.foreverSwitch = void 0;
|
|
|
7
7
|
var _Function = /*#__PURE__*/require("effect/Function");
|
|
8
8
|
var Deferred = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("effect/Deferred"));
|
|
9
9
|
var Effect = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("effect/Effect"));
|
|
10
|
-
var
|
|
10
|
+
var PubSub = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("effect/PubSub"));
|
|
11
11
|
var Queue = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("effect/Queue"));
|
|
12
12
|
var ScopedRef = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("effect/ScopedRef"));
|
|
13
13
|
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); }
|
|
14
14
|
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; }
|
|
15
15
|
const subscribeForEachPar = (self, effect) => Effect.flatMap(Deferred.make(), deferred => {
|
|
16
|
-
const run = (0, _Function.pipe)(
|
|
16
|
+
const run = (0, _Function.pipe)(PubSub.subscribe(self), Effect.flatMap(queue => Effect.forever(Effect.flatMap(Queue.take(queue), _ => Effect.forkScoped(Effect.catchAllCause(effect(_), _ => Deferred.failCause(deferred, _)))))), Effect.scoped);
|
|
17
17
|
return Effect.all([run, Deferred.await(deferred)], {
|
|
18
18
|
concurrency: "unbounded",
|
|
19
19
|
discard: true
|
package/utils/Effect.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Effect.js","names":["_Function","require","Deferred","_interopRequireWildcard","Effect","
|
|
1
|
+
{"version":3,"file":"Effect.js","names":["_Function","require","Deferred","_interopRequireWildcard","Effect","PubSub","Queue","ScopedRef","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","subscribeForEachPar","self","effect","flatMap","make","deferred","run","pipe","subscribe","queue","forever","take","_","forkScoped","catchAllCause","failCause","scoped","all","await","concurrency","discard","exports","foreverSwitch","f","fromAcquire","fork","unit","causeDeferred","fiberRef","tapErrorCause"],"sources":["../src/utils/Effect.ts"],"sourcesContent":[null],"mappings":"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"}
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "0.
|
|
1
|
+
export declare const LIB_VERSION = "0.68.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED