@kurrent/kurrentdb-client 1.1.2 → 1.2.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.
- package/dist/Client/http.d.ts +7 -1
- package/dist/Client/http.js +50 -48
- package/dist/Client/http.js.map +1 -1
- package/dist/Client/index.d.ts +30 -6
- package/dist/Client/index.js +77 -11
- package/dist/Client/index.js.map +1 -1
- package/dist/Client/parseConnectionString.d.ts +2 -2
- package/dist/constants.d.ts +3 -0
- package/dist/constants.js +6 -1
- package/dist/constants.js.map +1 -1
- package/dist/events/binaryEvent.d.ts +5 -1
- package/dist/events/binaryEvent.js +2 -2
- package/dist/events/binaryEvent.js.map +1 -1
- package/dist/events/jsonEvent.js +2 -2
- package/dist/events/jsonEvent.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/projections/createProjection.d.ts +10 -1
- package/dist/projections/createProjection.js +13 -2
- package/dist/projections/createProjection.js.map +1 -1
- package/dist/streams/appendToStream/batchAppend.js +2 -2
- package/dist/streams/appendToStream/batchAppend.js.map +1 -1
- package/dist/streams/appendToStream/index.d.ts +9 -1
- package/dist/streams/appendToStream/index.js +8 -0
- package/dist/streams/appendToStream/index.js.map +1 -1
- package/dist/streams/readAll.js +18 -18
- package/dist/streams/readAll.js.map +1 -1
- package/dist/streams/readStream.js +26 -34
- package/dist/streams/readStream.js.map +1 -1
- package/dist/types/index.d.ts +88 -2
- package/dist/types/index.js.map +1 -1
- package/dist/utils/CommandError.d.ts +9 -3
- package/dist/utils/CommandError.js +42 -1
- package/dist/utils/CommandError.js.map +1 -1
- package/dist/utils/credentials.d.ts +19 -0
- package/dist/utils/credentials.js +31 -0
- package/dist/utils/credentials.js.map +1 -0
- package/dist/utils/grpcUUID.d.ts +1 -0
- package/dist/utils/grpcUUID.js +12 -12
- package/dist/utils/grpcUUID.js.map +1 -1
- package/generated/kurrentdb/protocols/v1/projectionmanagement_pb.d.ts +3 -0
- package/generated/kurrentdb/protocols/v1/projectionmanagement_pb.js +31 -1
- package/generated/kurrentdb/protocols/v2/streams/errors_pb.d.ts +85 -0
- package/generated/kurrentdb/protocols/v2/streams/errors_pb.js +625 -1
- package/generated/kurrentdb/protocols/v2/streams/streams_grpc_pb.d.ts +17 -0
- package/generated/kurrentdb/protocols/v2/streams/streams_grpc_pb.js +53 -0
- package/generated/kurrentdb/protocols/v2/streams/streams_pb.d.ts +134 -0
- package/generated/kurrentdb/protocols/v2/streams/streams_pb.js +1041 -1
- package/package.json +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kurrent/kurrentdb-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "KurrentDB gRPC NodeJS Client SDK",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -46,18 +46,16 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@grpc/grpc-js": "^1.14.3",
|
|
49
|
-
"@kurrent/bridge": "^0.
|
|
49
|
+
"@kurrent/bridge": "^0.2.0",
|
|
50
50
|
"@types/debug": "^4.1.12",
|
|
51
51
|
"@types/google-protobuf": "^3.15.12",
|
|
52
52
|
"@types/node": "^22.10.2",
|
|
53
53
|
"debug": "^4.4.0",
|
|
54
54
|
"google-protobuf": "^3.21.4",
|
|
55
|
-
"semver": "^7.7.2"
|
|
56
|
-
"uuid": "11.0.3"
|
|
55
|
+
"semver": "^7.7.2"
|
|
57
56
|
},
|
|
58
57
|
"devDependencies": {
|
|
59
58
|
"@types/semver": "^7.7.0",
|
|
60
|
-
"@types/uuid": "^10.0.0",
|
|
61
59
|
"grpc-tools": "^1.13.1",
|
|
62
60
|
"grpc_tools_node_protoc_ts": "^5.3.3",
|
|
63
61
|
"nx": "20.1.3",
|