@roit/roit-data-firestore 1.2.39 → 1.2.41
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/dist/archive/ArchiveService.d.ts +0 -1
- package/dist/archive/ArchiveService.js +113 -136
- package/dist/cache/CacheResolver.js +80 -104
- package/dist/cache/providers/RedisCacheArchiveProvider.d.ts +0 -1
- package/dist/cache/providers/RedisCacheArchiveProvider.js +43 -69
- package/dist/cache/providers/RedisCacheProvider.js +37 -52
- package/dist/config/ArchiveConfig.d.ts +4 -0
- package/dist/config/ArchiveConfig.js +20 -1
- package/dist/config/BaseRepository.js +13 -30
- package/dist/config/ReadonlyRepository.js +7 -20
- package/dist/decorators/Repository.js +3 -12
- package/dist/exception/RepositoryException.js +1 -1
- package/dist/exception/handle/ValidatorDataHandle.js +12 -24
- package/dist/firestore-read-audit/FirestoreReadAuditResolver.js +15 -18
- package/dist/firestore-read-audit/providers/BigQueryFirestoreReadAuditProvider.js +53 -66
- package/dist/firestore-read-audit/providers/PubSubFirestoreReadAuditProvider.js +15 -26
- package/dist/model/CacheProviders.js +1 -1
- package/dist/query/ManualQueryHelper.js +132 -150
- package/dist/query/QueryCreatorConfig.js +30 -42
- package/dist/query/QueryPredicateFunctionTransform.js +10 -10
- package/dist/query/TransformMethodFromQuery.js +2 -2
- package/dist/tracer/Tracer.js +5 -14
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +10 -10
- package/tsconfig.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roit/roit-data-firestore",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.41",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,30 +12,30 @@
|
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@google-cloud/bigquery": "6.0.3",
|
|
14
14
|
"@google-cloud/pubsub": "3.3.0",
|
|
15
|
-
"@types/jest": "
|
|
16
|
-
"@types/node": "
|
|
15
|
+
"@types/jest": "30.0.0",
|
|
16
|
+
"@types/node": "20.14.8",
|
|
17
17
|
"@types/promise-timeout": "^1.3.3",
|
|
18
18
|
"@types/shelljs": "^0.8.9",
|
|
19
19
|
"@types/uuid": "^8.3.1",
|
|
20
20
|
"copyfiles": "^2.4.1",
|
|
21
|
-
"jest": "
|
|
21
|
+
"jest": "30.2.0",
|
|
22
22
|
"redis": "4.0.6",
|
|
23
|
-
"ts-jest": "
|
|
24
|
-
"ts-node": "
|
|
25
|
-
"typescript": "
|
|
23
|
+
"ts-jest": "29.4.5",
|
|
24
|
+
"ts-node": "10.9.2",
|
|
25
|
+
"typescript": "5.2.2"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@google-cloud/firestore": "7.3.0",
|
|
29
29
|
"@google-cloud/storage": "^7.7.0",
|
|
30
30
|
"@roit/roit-date": "1.10.5",
|
|
31
|
-
"class-validator": "0.14.
|
|
32
|
-
"class-validator-jsonschema": "5.
|
|
31
|
+
"class-validator": "0.14.1",
|
|
32
|
+
"class-validator-jsonschema": "5.1.0",
|
|
33
33
|
"date-fns": "2.30.0",
|
|
34
34
|
"firebase": "^9.2.0",
|
|
35
35
|
"node-cache": "5.1.2",
|
|
36
36
|
"promise-timeout": "^1.3.0",
|
|
37
37
|
"reflect-metadata": "0.1.13",
|
|
38
|
-
"shelljs": "
|
|
38
|
+
"shelljs": "0.10.0",
|
|
39
39
|
"uuid": "^8.3.2"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
package/tsconfig.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"experimentalDecorators": true,
|
|
4
4
|
"emitDecoratorMetadata": true,
|
|
5
|
-
"target": "
|
|
5
|
+
"target": "es2021",
|
|
6
6
|
"declaration": true,
|
|
7
7
|
"module": "commonjs",
|
|
8
8
|
"outDir": "dist",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"noUnusedLocals": true,
|
|
17
17
|
"noUnusedParameters": true,
|
|
18
18
|
"strictPropertyInitialization": false,
|
|
19
|
-
"lib": ["dom", "
|
|
19
|
+
"lib": ["dom", "es2021"],
|
|
20
20
|
},
|
|
21
21
|
"include": [
|
|
22
22
|
"src/**/*.ts",
|