@naturalcycles/cloud-storage-lib 2.0.3 → 2.1.0

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.
@@ -1,5 +1,4 @@
1
- import type { CommonDBCreateOptions, CommonKeyValueDB, KeyValueDBTuple } from '@naturalcycles/db-lib';
2
- import type { IncrementTuple } from '@naturalcycles/db-lib/dist/kv/commonKeyValueDB.js';
1
+ import type { CommonDBCreateOptions, CommonKeyValueDB, IncrementTuple, KeyValueDBTuple } from '@naturalcycles/db-lib';
3
2
  import type { ReadableTyped } from '@naturalcycles/nodejs-lib';
4
3
  import type { CommonStorage } from './commonStorage.js';
5
4
  export interface CommonStorageKeyValueDBCfg {
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "devDependencies": {
12
12
  "@naturalcycles/dev-lib": "*",
13
- "@types/node": "^22",
13
+ "@types/node": "^24",
14
14
  "firebase-admin": "^13"
15
15
  },
16
16
  "files": [
@@ -34,7 +34,7 @@
34
34
  "engines": {
35
35
  "node": ">=22.12.0"
36
36
  },
37
- "version": "2.0.3",
37
+ "version": "2.1.0",
38
38
  "description": "CommonStorage implementation based on Google Cloud Storage",
39
39
  "author": "Natural Cycles Team",
40
40
  "license": "MIT",
@@ -43,7 +43,8 @@
43
43
  "test": "dev-lib test",
44
44
  "lint": "dev-lib lint",
45
45
  "bt": "dev-lib bt",
46
- "lbt": "dev-lib lbt",
47
- "check": "dev-lib lbt"
46
+ "clean": "dev-lib clean",
47
+ "typecheck": "dev-lib typecheck",
48
+ "check": "dev-lib check"
48
49
  }
49
50
  }
@@ -1,10 +1,10 @@
1
1
  import type {
2
2
  CommonDBCreateOptions,
3
3
  CommonKeyValueDB,
4
+ IncrementTuple,
4
5
  KeyValueDBTuple,
5
6
  } from '@naturalcycles/db-lib'
6
7
  import { commonKeyValueDBFullSupport } from '@naturalcycles/db-lib'
7
- import type { IncrementTuple } from '@naturalcycles/db-lib/dist/kv/commonKeyValueDB.js'
8
8
  import type { StringMap } from '@naturalcycles/js-lib'
9
9
  import { AppError, pMap } from '@naturalcycles/js-lib'
10
10
  import type { ReadableTyped } from '@naturalcycles/nodejs-lib'