diff --git a/packages/connect-web/browserstack/gen/connectrpc/eliza/v1/eliza_connect.ts b/packages/connect-web/browserstack/gen/connectrpc/eliza/v1/eliza_connect.ts index 39af6478a..6740c2b2c 100644 --- a/packages/connect-web/browserstack/gen/connectrpc/eliza/v1/eliza_connect.ts +++ b/packages/connect-web/browserstack/gen/connectrpc/eliza/v1/eliza_connect.ts @@ -1,4 +1,4 @@ -// Copyright 2022-2023 The Connect Authors +// Copyright 2021-2024 The Connect Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -17,7 +17,14 @@ /* eslint-disable */ // @ts-nocheck -import { ConverseRequest, ConverseResponse, IntroduceRequest, IntroduceResponse, SayRequest, SayResponse } from "./eliza_pb.js"; +import { + ConverseRequest, + ConverseResponse, + IntroduceRequest, + IntroduceResponse, + SayRequest, + SayResponse, +} from "./eliza_pb.js"; import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf"; /** @@ -70,6 +77,5 @@ export const ElizaService = { O: IntroduceResponse, kind: MethodKind.ServerStreaming, }, - } + }, } as const; - diff --git a/packages/connect-web/browserstack/gen/connectrpc/eliza/v1/eliza_pb.ts b/packages/connect-web/browserstack/gen/connectrpc/eliza/v1/eliza_pb.ts index 7f9b75093..59519186c 100644 --- a/packages/connect-web/browserstack/gen/connectrpc/eliza/v1/eliza_pb.ts +++ b/packages/connect-web/browserstack/gen/connectrpc/eliza/v1/eliza_pb.ts @@ -1,4 +1,4 @@ -// Copyright 2022-2023 The Connect Authors +// Copyright 2021-2024 The Connect Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -17,7 +17,14 @@ /* eslint-disable */ // @ts-nocheck -import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; +import type { + BinaryReadOptions, + FieldList, + JsonReadOptions, + JsonValue, + PartialMessage, + PlainMessage, +} from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; /** @@ -42,19 +49,31 @@ export class SayRequest extends Message { { no: 1, name: "sentence", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); - static fromBinary(bytes: Uint8Array, options?: Partial): SayRequest { + static fromBinary( + bytes: Uint8Array, + options?: Partial, + ): SayRequest { return new SayRequest().fromBinary(bytes, options); } - static fromJson(jsonValue: JsonValue, options?: Partial): SayRequest { + static fromJson( + jsonValue: JsonValue, + options?: Partial, + ): SayRequest { return new SayRequest().fromJson(jsonValue, options); } - static fromJsonString(jsonString: string, options?: Partial): SayRequest { + static fromJsonString( + jsonString: string, + options?: Partial, + ): SayRequest { return new SayRequest().fromJsonString(jsonString, options); } - static equals(a: SayRequest | PlainMessage | undefined, b: SayRequest | PlainMessage | undefined): boolean { + static equals( + a: SayRequest | PlainMessage | undefined, + b: SayRequest | PlainMessage | undefined, + ): boolean { return proto3.util.equals(SayRequest, a, b); } } @@ -81,19 +100,31 @@ export class SayResponse extends Message { { no: 1, name: "sentence", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); - static fromBinary(bytes: Uint8Array, options?: Partial): SayResponse { + static fromBinary( + bytes: Uint8Array, + options?: Partial, + ): SayResponse { return new SayResponse().fromBinary(bytes, options); } - static fromJson(jsonValue: JsonValue, options?: Partial): SayResponse { + static fromJson( + jsonValue: JsonValue, + options?: Partial, + ): SayResponse { return new SayResponse().fromJson(jsonValue, options); } - static fromJsonString(jsonString: string, options?: Partial): SayResponse { + static fromJsonString( + jsonString: string, + options?: Partial, + ): SayResponse { return new SayResponse().fromJsonString(jsonString, options); } - static equals(a: SayResponse | PlainMessage | undefined, b: SayResponse | PlainMessage | undefined): boolean { + static equals( + a: SayResponse | PlainMessage | undefined, + b: SayResponse | PlainMessage | undefined, + ): boolean { return proto3.util.equals(SayResponse, a, b); } } @@ -121,19 +152,31 @@ export class ConverseRequest extends Message { { no: 1, name: "sentence", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); - static fromBinary(bytes: Uint8Array, options?: Partial): ConverseRequest { + static fromBinary( + bytes: Uint8Array, + options?: Partial, + ): ConverseRequest { return new ConverseRequest().fromBinary(bytes, options); } - static fromJson(jsonValue: JsonValue, options?: Partial): ConverseRequest { + static fromJson( + jsonValue: JsonValue, + options?: Partial, + ): ConverseRequest { return new ConverseRequest().fromJson(jsonValue, options); } - static fromJsonString(jsonString: string, options?: Partial): ConverseRequest { + static fromJsonString( + jsonString: string, + options?: Partial, + ): ConverseRequest { return new ConverseRequest().fromJsonString(jsonString, options); } - static equals(a: ConverseRequest | PlainMessage | undefined, b: ConverseRequest | PlainMessage | undefined): boolean { + static equals( + a: ConverseRequest | PlainMessage | undefined, + b: ConverseRequest | PlainMessage | undefined, + ): boolean { return proto3.util.equals(ConverseRequest, a, b); } } @@ -161,19 +204,31 @@ export class ConverseResponse extends Message { { no: 1, name: "sentence", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); - static fromBinary(bytes: Uint8Array, options?: Partial): ConverseResponse { + static fromBinary( + bytes: Uint8Array, + options?: Partial, + ): ConverseResponse { return new ConverseResponse().fromBinary(bytes, options); } - static fromJson(jsonValue: JsonValue, options?: Partial): ConverseResponse { + static fromJson( + jsonValue: JsonValue, + options?: Partial, + ): ConverseResponse { return new ConverseResponse().fromJson(jsonValue, options); } - static fromJsonString(jsonString: string, options?: Partial): ConverseResponse { + static fromJsonString( + jsonString: string, + options?: Partial, + ): ConverseResponse { return new ConverseResponse().fromJsonString(jsonString, options); } - static equals(a: ConverseResponse | PlainMessage | undefined, b: ConverseResponse | PlainMessage | undefined): boolean { + static equals( + a: ConverseResponse | PlainMessage | undefined, + b: ConverseResponse | PlainMessage | undefined, + ): boolean { return proto3.util.equals(ConverseResponse, a, b); } } @@ -200,19 +255,31 @@ export class IntroduceRequest extends Message { { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); - static fromBinary(bytes: Uint8Array, options?: Partial): IntroduceRequest { + static fromBinary( + bytes: Uint8Array, + options?: Partial, + ): IntroduceRequest { return new IntroduceRequest().fromBinary(bytes, options); } - static fromJson(jsonValue: JsonValue, options?: Partial): IntroduceRequest { + static fromJson( + jsonValue: JsonValue, + options?: Partial, + ): IntroduceRequest { return new IntroduceRequest().fromJson(jsonValue, options); } - static fromJsonString(jsonString: string, options?: Partial): IntroduceRequest { + static fromJsonString( + jsonString: string, + options?: Partial, + ): IntroduceRequest { return new IntroduceRequest().fromJsonString(jsonString, options); } - static equals(a: IntroduceRequest | PlainMessage | undefined, b: IntroduceRequest | PlainMessage | undefined): boolean { + static equals( + a: IntroduceRequest | PlainMessage | undefined, + b: IntroduceRequest | PlainMessage | undefined, + ): boolean { return proto3.util.equals(IntroduceRequest, a, b); } } @@ -239,20 +306,31 @@ export class IntroduceResponse extends Message { { no: 1, name: "sentence", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); - static fromBinary(bytes: Uint8Array, options?: Partial): IntroduceResponse { + static fromBinary( + bytes: Uint8Array, + options?: Partial, + ): IntroduceResponse { return new IntroduceResponse().fromBinary(bytes, options); } - static fromJson(jsonValue: JsonValue, options?: Partial): IntroduceResponse { + static fromJson( + jsonValue: JsonValue, + options?: Partial, + ): IntroduceResponse { return new IntroduceResponse().fromJson(jsonValue, options); } - static fromJsonString(jsonString: string, options?: Partial): IntroduceResponse { + static fromJsonString( + jsonString: string, + options?: Partial, + ): IntroduceResponse { return new IntroduceResponse().fromJsonString(jsonString, options); } - static equals(a: IntroduceResponse | PlainMessage | undefined, b: IntroduceResponse | PlainMessage | undefined): boolean { + static equals( + a: IntroduceResponse | PlainMessage | undefined, + b: IntroduceResponse | PlainMessage | undefined, + ): boolean { return proto3.util.equals(IntroduceResponse, a, b); } } -