alchemy 2.0.0-beta.4 → 2.0.0-beta.5

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/bin/alchemy.sh CHANGED
@@ -7,7 +7,7 @@ else
7
7
  dir="$(cd "$(dirname "$0")" && pwd)"
8
8
  fi
9
9
  if command -v bun >/dev/null 2>&1; then
10
- exec bun "$dir/alchemy.ts" "$@"
10
+ exec bun "$dir/alchemy.js" "$@"
11
11
  else
12
12
  exec node "$dir/alchemy.js" "$@"
13
13
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alchemy",
3
- "version": "2.0.0-beta.4",
3
+ "version": "2.0.0-beta.5",
4
4
  "homepage": "https://alchemy.run",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Sam Goodwin <sam@alchemy.run>",
package/src/Platform.ts CHANGED
@@ -159,7 +159,7 @@ export interface Platform<
159
159
  ): Effect.Effect<
160
160
  Resource & Rpc<Shape>,
161
161
  never,
162
- | Provider<Resource>
162
+ | Resource["Providers"]
163
163
  | PropsReq
164
164
  | Exclude<InitReq, Services | PlatformServices>
165
165
  >;