@uploadista/data-store-gcs 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/index.ts +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uploadista/data-store-gcs",
3
3
  "type": "module",
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
5
5
  "description": "Google Cloud Storage data store for Uploadista",
6
6
  "license": "MIT",
7
7
  "author": "Uploadista",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@google-cloud/storage": "7.18.0",
18
- "@uploadista/core": "0.1.1",
19
- "@uploadista/observability": "0.1.1"
18
+ "@uploadista/core": "0.1.2",
19
+ "@uploadista/observability": "0.1.2"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "effect": "^3.0.0"
@@ -26,8 +26,8 @@
26
26
  "effect": "3.19.14",
27
27
  "tsdown": "0.19.0",
28
28
  "vitest": "4.0.17",
29
- "@uploadista/kv-store-memory": "0.1.1",
30
- "@uploadista/typescript-config": "0.1.1"
29
+ "@uploadista/typescript-config": "0.1.2",
30
+ "@uploadista/kv-store-memory": "0.1.2"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "tsc --noEmit && tsdown",
package/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
- // Legacy Node.js implementation (for Node.js environments only)
1
+ // Node.js implementation (for Node.js environments only)
2
2
  export * from "./gcs-store";
3
3
 
4
- // New service-based implementations (recommended)
4
+ // New service-based implementations (experimental)
5
5
  export { gcsStoreNodejs, gcsStoreRest } from "./gcs-store-v2";
6
6
  export * from "./services";