@distilled.cloud/cloudflare 0.21.0 → 0.21.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@distilled.cloud/cloudflare",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/alchemy-run/distilled",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"specs:update": "git -C specs/cloudflare-typescript fetch && git -C specs/cloudflare-typescript checkout main && git -C specs/cloudflare-typescript pull"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@distilled.cloud/core": "0.21.
|
|
66
|
+
"@distilled.cloud/core": "0.21.2"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@effect/platform-node": ">=4.0.0-beta.66 || >=4.0.0",
|
package/src/services/workers.ts
CHANGED
|
@@ -139,7 +139,7 @@ export class WorkerNotFound extends Schema.TaggedErrorClass<WorkerNotFound>()(
|
|
|
139
139
|
"WorkerNotFound",
|
|
140
140
|
{ code: Schema.Number, message: Schema.String },
|
|
141
141
|
) {}
|
|
142
|
-
T.applyErrorMatchers(WorkerNotFound, [{ code: 10007 }
|
|
142
|
+
T.applyErrorMatchers(WorkerNotFound, [{ code: 10007 }]);
|
|
143
143
|
|
|
144
144
|
export class WorkerVersionNotFound extends Schema.TaggedErrorClass<WorkerVersionNotFound>()(
|
|
145
145
|
"WorkerVersionNotFound",
|