@computesdk/cloudflare 1.3.0 → 1.3.1
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -27,6 +27,6 @@ interface CloudflareSandbox {
|
|
|
27
27
|
/**
|
|
28
28
|
* Create a Cloudflare provider instance using the factory pattern
|
|
29
29
|
*/
|
|
30
|
-
declare const cloudflare: (config: CloudflareConfig) => computesdk.Provider<CloudflareSandbox, any, any>;
|
|
30
|
+
declare const cloudflare: (config: CloudflareConfig & computesdk.BaseProviderConfig) => computesdk.Provider<CloudflareSandbox, any, any>;
|
|
31
31
|
|
|
32
32
|
export { type CloudflareConfig, cloudflare };
|
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,6 @@ interface CloudflareSandbox {
|
|
|
27
27
|
/**
|
|
28
28
|
* Create a Cloudflare provider instance using the factory pattern
|
|
29
29
|
*/
|
|
30
|
-
declare const cloudflare: (config: CloudflareConfig) => computesdk.Provider<CloudflareSandbox, any, any>;
|
|
30
|
+
declare const cloudflare: (config: CloudflareConfig & computesdk.BaseProviderConfig) => computesdk.Provider<CloudflareSandbox, any, any>;
|
|
31
31
|
|
|
32
32
|
export { type CloudflareConfig, cloudflare };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@computesdk/cloudflare",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Cloudflare provider for ComputeSDK",
|
|
5
5
|
"author": "Garrison",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@cloudflare/sandbox": "^0.3.0",
|
|
22
|
-
"computesdk": "1.9.
|
|
22
|
+
"computesdk": "1.9.1"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"cloudflare",
|