Skip to content

Commit 99dc010

Browse files
renovate[bot]paralin
authored andcommitted
fix(deps): update all dependencies
Signed-off-by: Christian Stewart <[email protected]>
1 parent d4ccb8a commit 99dc010

File tree

10 files changed

+626
-643
lines changed

10 files changed

+626
-643
lines changed

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ jobs:
5656
cache: 'yarn'
5757

5858
- name: Initialize CodeQL
59-
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
59+
uses: github/codeql-action/init@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
6060
with:
6161
languages: ${{ matrix.language }}
6262

6363

6464
- name: Autobuild
65-
uses: github/codeql-action/autobuild@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
65+
uses: github/codeql-action/autobuild@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
6666

6767
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
68+
uses: github/codeql-action/analyze@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16

echo/echo.pb.ts

+13-11
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// @generated from file github.com/aperturerobotics/starpc/echo/echo.proto (package echo, syntax proto3)
33
/* eslint-disable */
44

5-
import type { MessageType, PartialFieldInfo } from '@aptre/protobuf-es-lite'
6-
import { createMessageType, ScalarType } from '@aptre/protobuf-es-lite'
5+
import type { MessageType, PartialFieldInfo } from "@aptre/protobuf-es-lite";
6+
import { createMessageType, ScalarType } from "@aptre/protobuf-es-lite";
77

8-
export const protobufPackage = 'echo'
8+
export const protobufPackage = "echo";
99

1010
/**
1111
* EchoMsg is the message body for Echo.
@@ -16,14 +16,16 @@ export interface EchoMsg {
1616
/**
1717
* @generated from field: string body = 1;
1818
*/
19-
body?: string
20-
}
19+
body?: string;
20+
21+
};
2122

2223
// EchoMsg contains the message type declaration for EchoMsg.
2324
export const EchoMsg: MessageType<EchoMsg> = createMessageType({
24-
typeName: 'echo.EchoMsg',
25-
fields: [
26-
{ no: 1, name: 'body', kind: 'scalar', T: ScalarType.STRING },
27-
] as readonly PartialFieldInfo[],
28-
packedByDefault: true,
29-
})
25+
typeName: "echo.EchoMsg",
26+
fields: [
27+
{ no: 1, name: "body", kind: "scalar", T: ScalarType.STRING },
28+
] as readonly PartialFieldInfo[],
29+
packedByDefault: true,
30+
});
31+

echo/echo_srpc.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

echo/echo_srpc.pb.ts

+55-46
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,26 @@
22
// @generated from file github.com/aperturerobotics/starpc/echo/echo.proto (package echo, syntax proto3)
33
/* eslint-disable */
44

5-
import { EchoMsg } from './echo.pb.js'
6-
import { Empty, MethodKind } from '@aptre/protobuf-es-lite'
7-
import { RpcStreamPacket } from '../rpcstream/rpcstream.pb.js'
8-
import {
9-
buildDecodeMessageTransform,
10-
buildEncodeMessageTransform,
11-
MessageStream,
12-
ProtoRpc,
13-
} from 'starpc'
5+
import { EchoMsg } from "./echo.pb.js";
6+
import { Empty, MethodKind } from "@aptre/protobuf-es-lite";
7+
import { RpcStreamPacket } from "../rpcstream/rpcstream.pb.js";
8+
import { buildDecodeMessageTransform, buildEncodeMessageTransform, MessageStream, ProtoRpc } from "starpc";
149

1510
/**
1611
* Echoer service returns the given message.
1712
*
1813
* @generated from service echo.Echoer
1914
*/
2015
export const EchoerDefinition = {
21-
typeName: 'echo.Echoer',
16+
typeName: "echo.Echoer",
2217
methods: {
2318
/**
2419
* Echo returns the given message.
2520
*
2621
* @generated from rpc echo.Echoer.Echo
2722
*/
2823
Echo: {
29-
name: 'Echo',
24+
name: "Echo",
3025
I: EchoMsg,
3126
O: EchoMsg,
3227
kind: MethodKind.Unary,
@@ -37,7 +32,7 @@ export const EchoerDefinition = {
3732
* @generated from rpc echo.Echoer.EchoServerStream
3833
*/
3934
EchoServerStream: {
40-
name: 'EchoServerStream',
35+
name: "EchoServerStream",
4136
I: EchoMsg,
4237
O: EchoMsg,
4338
kind: MethodKind.ServerStreaming,
@@ -48,7 +43,7 @@ export const EchoerDefinition = {
4843
* @generated from rpc echo.Echoer.EchoClientStream
4944
*/
5045
EchoClientStream: {
51-
name: 'EchoClientStream',
46+
name: "EchoClientStream",
5247
I: EchoMsg,
5348
O: EchoMsg,
5449
kind: MethodKind.ClientStreaming,
@@ -59,7 +54,7 @@ export const EchoerDefinition = {
5954
* @generated from rpc echo.Echoer.EchoBidiStream
6055
*/
6156
EchoBidiStream: {
62-
name: 'EchoBidiStream',
57+
name: "EchoBidiStream",
6358
I: EchoMsg,
6459
O: EchoMsg,
6560
kind: MethodKind.BiDiStreaming,
@@ -70,7 +65,7 @@ export const EchoerDefinition = {
7065
* @generated from rpc echo.Echoer.RpcStream
7166
*/
7267
RpcStream: {
73-
name: 'RpcStream',
68+
name: "RpcStream",
7469
I: RpcStreamPacket,
7570
O: RpcStreamPacket,
7671
kind: MethodKind.BiDiStreaming,
@@ -81,13 +76,13 @@ export const EchoerDefinition = {
8176
* @generated from rpc echo.Echoer.DoNothing
8277
*/
8378
DoNothing: {
84-
name: 'DoNothing',
79+
name: "DoNothing",
8580
I: Empty,
8681
O: Empty,
8782
kind: MethodKind.Unary,
8883
},
89-
},
90-
} as const
84+
}
85+
} as const;
9186

9287
/**
9388
* Echoer service returns the given message.
@@ -100,54 +95,61 @@ export interface Echoer {
10095
*
10196
* @generated from rpc echo.Echoer.Echo
10297
*/
103-
Echo(request: EchoMsg, abortSignal?: AbortSignal): Promise<EchoMsg>
98+
Echo(
99+
request: EchoMsg, abortSignal?: AbortSignal
100+
):
101+
Promise<EchoMsg>
104102

105103
/**
106104
* EchoServerStream is an example of a server -> client one-way stream.
107105
*
108106
* @generated from rpc echo.Echoer.EchoServerStream
109107
*/
110108
EchoServerStream(
111-
request: EchoMsg,
112-
abortSignal?: AbortSignal,
113-
): MessageStream<EchoMsg>
109+
request: EchoMsg, abortSignal?: AbortSignal
110+
):
111+
MessageStream<EchoMsg>
114112

115113
/**
116114
* EchoClientStream is an example of client->server one-way stream.
117115
*
118116
* @generated from rpc echo.Echoer.EchoClientStream
119117
*/
120118
EchoClientStream(
121-
request: MessageStream<EchoMsg>,
122-
abortSignal?: AbortSignal,
123-
): Promise<EchoMsg>
119+
request: MessageStream<EchoMsg>, abortSignal?: AbortSignal
120+
):
121+
Promise<EchoMsg>
124122

125123
/**
126124
* EchoBidiStream is an example of a two-way stream.
127125
*
128126
* @generated from rpc echo.Echoer.EchoBidiStream
129127
*/
130128
EchoBidiStream(
131-
request: MessageStream<EchoMsg>,
132-
abortSignal?: AbortSignal,
133-
): MessageStream<EchoMsg>
129+
request: MessageStream<EchoMsg>, abortSignal?: AbortSignal
130+
):
131+
MessageStream<EchoMsg>
134132

135133
/**
136134
* RpcStream opens a nested rpc call stream.
137135
*
138136
* @generated from rpc echo.Echoer.RpcStream
139137
*/
140138
RpcStream(
141-
request: MessageStream<RpcStreamPacket>,
142-
abortSignal?: AbortSignal,
143-
): MessageStream<RpcStreamPacket>
139+
request: MessageStream<RpcStreamPacket>, abortSignal?: AbortSignal
140+
):
141+
MessageStream<RpcStreamPacket>
144142

145143
/**
146144
* DoNothing does nothing.
147145
*
148146
* @generated from rpc echo.Echoer.DoNothing
149147
*/
150-
DoNothing(request: Empty, abortSignal?: AbortSignal): Promise<Empty>
148+
DoNothing(
149+
request: Empty, abortSignal?: AbortSignal
150+
):
151+
Promise<Empty>
152+
151153
}
152154

153155
export const EchoerServiceName = EchoerDefinition.typeName
@@ -170,7 +172,10 @@ export class EchoerClient implements Echoer {
170172
*
171173
* @generated from rpc echo.Echoer.Echo
172174
*/
173-
async Echo(request: EchoMsg, abortSignal?: AbortSignal): Promise<EchoMsg> {
175+
async Echo(
176+
request: EchoMsg, abortSignal?: AbortSignal
177+
):
178+
Promise<EchoMsg> {
174179
const requestMsg = EchoMsg.create(request)
175180
const result = await this.rpc.request(
176181
this.service,
@@ -187,9 +192,9 @@ export class EchoerClient implements Echoer {
187192
* @generated from rpc echo.Echoer.EchoServerStream
188193
*/
189194
EchoServerStream(
190-
request: EchoMsg,
191-
abortSignal?: AbortSignal,
192-
): MessageStream<EchoMsg> {
195+
request: EchoMsg, abortSignal?: AbortSignal
196+
):
197+
MessageStream<EchoMsg> {
193198
const requestMsg = EchoMsg.create(request)
194199
const result = this.rpc.serverStreamingRequest(
195200
this.service,
@@ -206,9 +211,9 @@ export class EchoerClient implements Echoer {
206211
* @generated from rpc echo.Echoer.EchoClientStream
207212
*/
208213
async EchoClientStream(
209-
request: MessageStream<EchoMsg>,
210-
abortSignal?: AbortSignal,
211-
): Promise<EchoMsg> {
214+
request: MessageStream<EchoMsg>, abortSignal?: AbortSignal
215+
):
216+
Promise<EchoMsg> {
212217
const result = await this.rpc.clientStreamingRequest(
213218
this.service,
214219
EchoerDefinition.methods.EchoClientStream.name,
@@ -224,9 +229,9 @@ export class EchoerClient implements Echoer {
224229
* @generated from rpc echo.Echoer.EchoBidiStream
225230
*/
226231
EchoBidiStream(
227-
request: MessageStream<EchoMsg>,
228-
abortSignal?: AbortSignal,
229-
): MessageStream<EchoMsg> {
232+
request: MessageStream<EchoMsg>, abortSignal?: AbortSignal
233+
):
234+
MessageStream<EchoMsg> {
230235
const result = this.rpc.bidirectionalStreamingRequest(
231236
this.service,
232237
EchoerDefinition.methods.EchoBidiStream.name,
@@ -242,9 +247,9 @@ export class EchoerClient implements Echoer {
242247
* @generated from rpc echo.Echoer.RpcStream
243248
*/
244249
RpcStream(
245-
request: MessageStream<RpcStreamPacket>,
246-
abortSignal?: AbortSignal,
247-
): MessageStream<RpcStreamPacket> {
250+
request: MessageStream<RpcStreamPacket>, abortSignal?: AbortSignal
251+
):
252+
MessageStream<RpcStreamPacket> {
248253
const result = this.rpc.bidirectionalStreamingRequest(
249254
this.service,
250255
EchoerDefinition.methods.RpcStream.name,
@@ -259,7 +264,10 @@ export class EchoerClient implements Echoer {
259264
*
260265
* @generated from rpc echo.Echoer.DoNothing
261266
*/
262-
async DoNothing(request: Empty, abortSignal?: AbortSignal): Promise<Empty> {
267+
async DoNothing(
268+
request: Empty, abortSignal?: AbortSignal
269+
):
270+
Promise<Empty> {
263271
const requestMsg = Empty.create(request)
264272
const result = await this.rpc.request(
265273
this.service,
@@ -269,4 +277,5 @@ export class EchoerClient implements Echoer {
269277
)
270278
return Empty.fromBinary(result)
271279
}
280+
272281
}

mock/mock_srpc.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)