@zintrust/storage-s3 0.1.20 → 0.1.27

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @zintrust/storage-s3
2
2
 
3
- AWS S3 storage driver registration for Zintrust.
3
+ AWS S3 storage driver registration for ZinTrust.
4
4
 
5
5
  - Docs: https://zintrust.com/storage
6
6
 
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@zintrust/storage-s3",
3
+ "version": "0.1.15",
4
+ "buildDate": "2026-01-28T12:18:05.201Z",
5
+ "buildEnvironment": {
6
+ "node": "v20.20.0",
7
+ "platform": "linux",
8
+ "arch": "x64"
9
+ },
10
+ "git": {
11
+ "commit": "a274786",
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": "dd946f54ee9a13d55660649b97e1ac9bf40828f1e3a41562487eb236e73a8b76"
27
+ },
28
+ "index.js": {
29
+ "size": 518,
30
+ "sha256": "4cbc8089d8041a938c453db205d27de5d39aa88a138ca86ff6eaa9e675464b39"
31
+ },
32
+ "register.d.ts": {
33
+ "size": 230,
34
+ "sha256": "689ea95f43d433addd9f452a93e0bdd6d414778764a6592ace2ed08a2b44dc49"
35
+ },
36
+ "register.js": {
37
+ "size": 597,
38
+ "sha256": "a61045d7a7d1ac080f53612bd657a8374e8591039dcbd52f781d51bf65ccd12a"
39
+ }
40
+ }
41
+ }
package/dist/index.d.ts CHANGED
@@ -1,3 +1,9 @@
1
1
  declare const S3Driver: any;
2
2
  export { S3Driver };
3
3
  export type { S3Config } 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_S3_VERSION = "0.1.15";
9
+ export declare const _ZINTRUST_STORAGE_S3_BUILD_DATE = "__BUILD_DATE__";
package/dist/index.js CHANGED
@@ -1,3 +1,9 @@
1
1
  import { S3Driver as CoreS3Driver } from '@zintrust/core';
2
2
  const S3Driver = CoreS3Driver;
3
3
  export { S3Driver };
4
+ /**
5
+ * Package version and build metadata
6
+ * Available at runtime for debugging and health checks
7
+ */
8
+ export const _ZINTRUST_STORAGE_S3_VERSION = '0.1.15';
9
+ export const _ZINTRUST_STORAGE_S3_BUILD_DATE = '__BUILD_DATE__';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zintrust/storage-s3",
3
- "version": "0.1.20",
3
+ "version": "0.1.27",
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.20"
25
+ "@zintrust/core": "^0.1.27"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"