Skip to content

Commit

Permalink
rerun npx gts fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leahecole committed Aug 23, 2023
1 parent 783e736 commit 25f1046
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions test/showcase-echo-client/src/v1beta1/echo_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ export class EchoClient {
[
protos.google.showcase.v1beta1.IPagedExpandResponse,
protos.google.showcase.v1beta1.IPagedExpandLegacyRequest | undefined,
{} | undefined
{} | undefined,
]
>;
pagedExpandLegacy(
Expand Down Expand Up @@ -751,7 +751,7 @@ export class EchoClient {
[
protos.google.showcase.v1beta1.IPagedExpandResponse,
protos.google.showcase.v1beta1.IPagedExpandLegacyRequest | undefined,
{} | undefined
{} | undefined,
]
> | void {
request = request || {};
Expand Down
20 changes: 10 additions & 10 deletions test/showcase-echo-client/src/v1beta1/sequence_service_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ export class SequenceServiceClient {
[
protos.google.showcase.v1beta1.ISequence,
protos.google.showcase.v1beta1.ICreateSequenceRequest | undefined,
{} | undefined
{} | undefined,
]
>;
createSequence(
Expand Down Expand Up @@ -421,7 +421,7 @@ export class SequenceServiceClient {
[
protos.google.showcase.v1beta1.ISequence,
protos.google.showcase.v1beta1.ICreateSequenceRequest | undefined,
{} | undefined
{} | undefined,
]
> | void {
request = request || {};
Expand Down Expand Up @@ -463,7 +463,7 @@ export class SequenceServiceClient {
| protos.google.showcase.v1beta1.ICreateStreamingSequenceRequest
| undefined
),
{} | undefined
{} | undefined,
]
>;
createStreamingSequence(
Expand Down Expand Up @@ -512,7 +512,7 @@ export class SequenceServiceClient {
| protos.google.showcase.v1beta1.ICreateStreamingSequenceRequest
| undefined
),
{} | undefined
{} | undefined,
]
> | void {
request = request || {};
Expand Down Expand Up @@ -555,7 +555,7 @@ export class SequenceServiceClient {
[
protos.google.showcase.v1beta1.ISequenceReport,
protos.google.showcase.v1beta1.IGetSequenceReportRequest | undefined,
{} | undefined
{} | undefined,
]
>;
getSequenceReport(
Expand Down Expand Up @@ -601,7 +601,7 @@ export class SequenceServiceClient {
[
protos.google.showcase.v1beta1.ISequenceReport,
protos.google.showcase.v1beta1.IGetSequenceReportRequest | undefined,
{} | undefined
{} | undefined,
]
> | void {
request = request || {};
Expand Down Expand Up @@ -647,7 +647,7 @@ export class SequenceServiceClient {
| protos.google.showcase.v1beta1.IGetStreamingSequenceReportRequest
| undefined
),
{} | undefined
{} | undefined,
]
>;
getStreamingSequenceReport(
Expand Down Expand Up @@ -696,7 +696,7 @@ export class SequenceServiceClient {
| protos.google.showcase.v1beta1.IGetStreamingSequenceReportRequest
| undefined
),
{} | undefined
{} | undefined,
]
> | void {
request = request || {};
Expand Down Expand Up @@ -743,7 +743,7 @@ export class SequenceServiceClient {
[
protos.google.protobuf.IEmpty,
protos.google.showcase.v1beta1.IAttemptSequenceRequest | undefined,
{} | undefined
{} | undefined,
]
>;
attemptSequence(
Expand Down Expand Up @@ -783,7 +783,7 @@ export class SequenceServiceClient {
[
protos.google.protobuf.IEmpty,
protos.google.showcase.v1beta1.IAttemptSequenceRequest | undefined,
{} | undefined
{} | undefined,
]
> | void {
request = request || {};
Expand Down

0 comments on commit 25f1046

Please sign in to comment.