@aptre/protobuf-es-lite 0.4.3 → 0.4.4

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.
@@ -2,6 +2,7 @@ syntax = "proto3";
2
2
  package example;
3
3
 
4
4
  import "google/protobuf/timestamp.proto";
5
+ import "google/protobuf/empty.proto";
5
6
 
6
7
  // Echoer service returns the given message.
7
8
  service Echoer {
@@ -13,6 +14,8 @@ service Echoer {
13
14
  rpc EchoClientStream(stream EchoMsg) returns (EchoMsg);
14
15
  // EchoBidiStream is an example of a two-way stream.
15
16
  rpc EchoBidiStream(stream EchoMsg) returns (stream EchoMsg);
17
+ // DoNothing does nothing.
18
+ rpc DoNothing(.google.protobuf.Empty) returns (.google.protobuf.Empty);
16
19
  }
17
20
 
18
21
  // ExampleEnum is an example enumeration.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aptre/protobuf-es-lite",
3
3
  "description": "Lightweight Protobuf codegen for TypeScript and JavaScript.",
4
- "version": "0.4.3",
4
+ "version": "0.4.4",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "url": "git+ssh://git@github.com/aperturerobotics/protobuf-es-lite.git"
@@ -73,18 +73,18 @@
73
73
  "lz-string": "^1.5.0"
74
74
  },
75
75
  "devDependencies": {
76
- "@types/node": "^20.12.7",
77
- "@typescript-eslint/eslint-plugin": "^7.8.0",
78
- "@typescript-eslint/parser": "^7.8.0",
79
- "eslint": "^8.0.0",
76
+ "@types/node": "^20.12.12",
77
+ "@typescript-eslint/eslint-plugin": "^7.9.0",
78
+ "@typescript-eslint/parser": "^7.9.0",
79
+ "eslint": "^9.2.0",
80
80
  "eslint-config-prettier": "^9.1.0",
81
81
  "eslint-plugin-unused-imports": "^3.2.0",
82
82
  "lint-staged": ">=10",
83
83
  "pre-commit": "^1.2.2",
84
84
  "prettier": "^3.2.5",
85
- "rimraf": "^5.0.5",
85
+ "rimraf": "^5.0.7",
86
86
  "typescript": "^5.4.5",
87
- "vitest": "^1.5.3"
87
+ "vitest": "^1.6.0"
88
88
  },
89
89
  "lint-staged": {
90
90
  "package.json": "prettier --write",