@zintrust/storage-r2 0.1.19 → 0.1.23
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/README.md +5 -1
- package/dist/build-manifest.json +41 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @zintrust/storage-r2
|
|
2
2
|
|
|
3
|
-
Cloudflare R2 storage driver registration for
|
|
3
|
+
Cloudflare R2 storage driver registration for ZinTrust.
|
|
4
4
|
|
|
5
5
|
- Docs: https://zintrust.com/storage
|
|
6
6
|
|
|
@@ -17,3 +17,7 @@ import '@zintrust/storage-r2/register';
|
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Configure your disk driver as `r2` and provide the R2 endpoint + credentials.
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
This package depends on the AWS SDK which is licensed under Apache 2.0. AWS SDKs are permissive licenses that allow commercial use without requiring you to open-source your code. See [AWS SDK License](https://github.com/aws/aws-sdk-js-v3/blob/main/LICENSE) for details.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zintrust/storage-r2",
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"buildDate": "2026-01-21T12:27:27.325Z",
|
|
5
|
+
"buildEnvironment": {
|
|
6
|
+
"node": "v20.19.6",
|
|
7
|
+
"platform": "linux",
|
|
8
|
+
"arch": "x64"
|
|
9
|
+
},
|
|
10
|
+
"git": {
|
|
11
|
+
"commit": "ae2c0a6",
|
|
12
|
+
"branch": "master"
|
|
13
|
+
},
|
|
14
|
+
"package": {
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20.0.0"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": [],
|
|
19
|
+
"peerDependencies": [
|
|
20
|
+
"@zintrust/core"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"files": {
|
|
24
|
+
"index.d.ts": {
|
|
25
|
+
"size": 933,
|
|
26
|
+
"sha256": "9c92384b5a70d8620b983e2071447a67740f03931e31092c2e96661483e8b187"
|
|
27
|
+
},
|
|
28
|
+
"index.js": {
|
|
29
|
+
"size": 518,
|
|
30
|
+
"sha256": "0e7e696b76c8725c4b47873406c30c6d8221a5f21ff8d5c8a30e50c46da18e29"
|
|
31
|
+
},
|
|
32
|
+
"register.d.ts": {
|
|
33
|
+
"size": 230,
|
|
34
|
+
"sha256": "6bffa6f8a4db3936caf519404eb4c6d5311908b0b89c0f2a7e217aa509903681"
|
|
35
|
+
},
|
|
36
|
+
"register.js": {
|
|
37
|
+
"size": 597,
|
|
38
|
+
"sha256": "5cbb97b2a3e8a85cc6513a3d406cbe5821634ef4d84f76e91441659eb257a683"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
declare const R2Driver: any;
|
|
2
2
|
export { R2Driver };
|
|
3
3
|
export type { R2Config } from '@zintrust/core';
|
|
4
|
+
/**
|
|
5
|
+
* Package version and build metadata
|
|
6
|
+
* Available at runtime for debugging and health checks
|
|
7
|
+
*/
|
|
8
|
+
export declare const _ZINTRUST_STORAGE_R2_VERSION = "0.1.15";
|
|
9
|
+
export declare const _ZINTRUST_STORAGE_R2_BUILD_DATE = "__BUILD_DATE__";
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
import { R2Driver as CoreR2Driver } from '@zintrust/core';
|
|
2
2
|
const R2Driver = CoreR2Driver;
|
|
3
3
|
export { R2Driver };
|
|
4
|
+
/**
|
|
5
|
+
* Package version and build metadata
|
|
6
|
+
* Available at runtime for debugging and health checks
|
|
7
|
+
*/
|
|
8
|
+
export const _ZINTRUST_STORAGE_R2_VERSION = '0.1.15';
|
|
9
|
+
export const _ZINTRUST_STORAGE_R2_BUILD_DATE = '__BUILD_DATE__';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/storage-r2",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"node": ">=20.0.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@zintrust/core": "^0.1.
|
|
25
|
+
"@zintrust/core": "^0.1.23"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|