@zintrust/storage-gcs 0.1.20 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @zintrust/storage-gcs
2
2
 
3
- Google Cloud Storage (GCS) storage driver registration for Zintrust.
3
+ Google Cloud Storage (GCS) storage driver registration for ZinTrust.
4
4
 
5
5
  - Docs: https://zintrust.com/storage
6
6
 
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@zintrust/storage-gcs",
3
+ "version": "0.1.15",
4
+ "buildDate": "2026-01-21T12:27:24.033Z",
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
+ "@google-cloud/storage"
20
+ ],
21
+ "peerDependencies": [
22
+ "@zintrust/core"
23
+ ]
24
+ },
25
+ "files": {
26
+ "index.d.ts": {
27
+ "size": 965,
28
+ "sha256": "3ee4968d3a990bf807367b68f1f3126133f72859baabe4dc5322ca4a96677d5b"
29
+ },
30
+ "index.js": {
31
+ "size": 526,
32
+ "sha256": "8dbe59d3406dac3128958e3429dd2c11ef4f2c3653b92fd42995dbcae53aa478"
33
+ },
34
+ "register.d.ts": {
35
+ "size": 231,
36
+ "sha256": "6d97810f259202dea605e500e4878a19877c1e2b9302518d1473e1f91a20f270"
37
+ },
38
+ "register.js": {
39
+ "size": 602,
40
+ "sha256": "a8cce11ba964fe444c3a04d1a26763e95f78ebae3a302481b616d460a9ba4758"
41
+ }
42
+ }
43
+ }
package/dist/index.d.ts CHANGED
@@ -1,3 +1,9 @@
1
1
  declare const GcsDriver: any;
2
2
  export { GcsDriver };
3
3
  export type { GcsConfig } 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_GCS_VERSION = "0.1.15";
9
+ export declare const _ZINTRUST_STORAGE_GCS_BUILD_DATE = "__BUILD_DATE__";
package/dist/index.js CHANGED
@@ -1,3 +1,9 @@
1
1
  import { GcsDriver as CoreGcsDriver } from '@zintrust/core';
2
2
  const GcsDriver = CoreGcsDriver;
3
3
  export { GcsDriver };
4
+ /**
5
+ * Package version and build metadata
6
+ * Available at runtime for debugging and health checks
7
+ */
8
+ export const _ZINTRUST_STORAGE_GCS_VERSION = '0.1.15';
9
+ export const _ZINTRUST_STORAGE_GCS_BUILD_DATE = '__BUILD_DATE__';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zintrust/storage-gcs",
3
- "version": "0.1.20",
3
+ "version": "0.1.23",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,7 +25,7 @@
25
25
  "@google-cloud/storage": "^7.0.0"
26
26
  },
27
27
  "peerDependencies": {
28
- "@zintrust/core": "^0.1.20"
28
+ "@zintrust/core": "^0.1.23"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"