@pluv/platform-cloudflare 0.41.0 → 0.41.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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +9 -0
- package/dist/index.d.mts +1 -1
- package/package.json +6 -6
- package/src/platformCloudflare.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @pluv/platform-cloudflare@0.41.
|
|
2
|
+
> @pluv/platform-cloudflare@0.41.1 build /home/runner/work/pluv/pluv/packages/platform-cloudflare
|
|
3
3
|
> tsup src/index.ts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[34mCLI[39m Target: es6
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[32mESM[39m [1mdist/index.mjs [22m[32m13.90 KB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 52ms
|
|
13
13
|
[34mDTS[39m Build start
|
|
14
|
-
[32mDTS[39m ⚡️ Build success in
|
|
14
|
+
[32mDTS[39m ⚡️ Build success in 1140ms
|
|
15
15
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m7.18 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -114,7 +114,7 @@ declare const infer: <TEnv extends Record<string, any> = {}, TMeta extends Recor
|
|
|
114
114
|
|
|
115
115
|
type PlatformCloudflareCreateIOParams<TEnv extends Record<string, any> = {}, TMeta extends Record<string, Json> = {}, TContext extends Record<string, any> = {}, TUser extends BaseUser | null = null> = Id<CloudflarePlatformConfig<TEnv, TMeta> & Omit<CreateIOParams<CloudflarePlatform<IOAuthorize<TUser, TContext>, TEnv, TMeta>, TContext, TUser>, "authorize" | "context" | "platform"> & {
|
|
116
116
|
authorize?: PluvIOAuthorize<CloudflarePlatform<IOAuthorize<TUser, TContext>, TEnv, TMeta>, TUser, InferInitContextType<CloudflarePlatform<IOAuthorize<TUser, TContext>, TEnv, TMeta>>>;
|
|
117
|
-
context?: PluvContext<CloudflarePlatform<IOAuthorize<TUser,
|
|
117
|
+
context?: PluvContext<CloudflarePlatform<IOAuthorize<TUser, any>, TEnv, TMeta>, TContext>;
|
|
118
118
|
types?: InferCallback<TEnv, TMeta>;
|
|
119
119
|
}>;
|
|
120
120
|
declare const platformCloudflare: <TEnv extends Record<string, any> = {}, TMeta extends Record<string, Json> = {}, TContext extends Record<string, any> = {}, TUser extends BaseUser | null = null>(config?: PlatformCloudflareCreateIOParams<TEnv, TMeta, TContext, TUser>) => CreateIOParams<CloudflarePlatform<IOAuthorize<TUser, TContext>, TEnv, TMeta>, TContext, TUser>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-cloudflare",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.1",
|
|
4
4
|
"description": "@pluv/io adapter for cloudflare workers",
|
|
5
5
|
"author": "leedavidcs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"path-to-regexp": "^8.2.0",
|
|
20
|
-
"@pluv/io": "^0.41.
|
|
21
|
-
"@pluv/persistence-cloudflare-transactional-storage": "^0.41.
|
|
22
|
-
"@pluv/types": "^0.41.
|
|
20
|
+
"@pluv/io": "^0.41.1",
|
|
21
|
+
"@pluv/persistence-cloudflare-transactional-storage": "^0.41.1",
|
|
22
|
+
"@pluv/types": "^0.41.1"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@cloudflare/workers-types": "^4.20250418.0",
|
|
26
26
|
"eslint": "^9.25.0",
|
|
27
27
|
"tsup": "^8.4.0",
|
|
28
28
|
"typescript": "^5.8.3",
|
|
29
|
-
"@pluv/tsconfig": "^0.41.
|
|
30
|
-
"eslint-config-pluv": "^0.41.
|
|
29
|
+
"@pluv/tsconfig": "^0.41.1",
|
|
30
|
+
"eslint-config-pluv": "^0.41.1"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "tsup src/index.ts",
|
|
@@ -20,7 +20,7 @@ export type PlatformCloudflareCreateIOParams<
|
|
|
20
20
|
TUser,
|
|
21
21
|
InferInitContextType<CloudflarePlatform<IOAuthorize<TUser, TContext>, TEnv, TMeta>>
|
|
22
22
|
>;
|
|
23
|
-
context?: PluvContext<CloudflarePlatform<IOAuthorize<TUser,
|
|
23
|
+
context?: PluvContext<CloudflarePlatform<IOAuthorize<TUser, any>, TEnv, TMeta>, TContext>;
|
|
24
24
|
types?: InferCallback<TEnv, TMeta>;
|
|
25
25
|
}
|
|
26
26
|
>;
|