Skip to content

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Oct 13, 2024
1 parent abe4c75 commit a945296
Show file tree
Hide file tree
Showing 12 changed files with 448 additions and 6 deletions.
6 changes: 6 additions & 0 deletions dist/HavenoClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,12 @@ export default class HavenoClient {
* @param {boolean} autoSwitch - whether auto switch is enabled or disabled
*/
setAutoSwitch(autoSwitch: boolean): Promise<void>;
/**
* Get the current auto switch setting.
*
* @return {boolean} whether auto switch is enabled or disabled
*/
getAutoSwitch(): Promise<boolean>;
/**
* Returns whether daemon is running a local monero node.
*/
Expand Down
13 changes: 13 additions & 0 deletions dist/HavenoClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/HavenoClient.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/protobuf/GrpcServiceClientPb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ export declare class XmrConnectionsClient {
methodDescriptorSetAutoSwitch: grpcWeb.MethodDescriptor<grpc_pb.SetAutoSwitchRequest, grpc_pb.SetAutoSwitchReply>;
setAutoSwitch(request: grpc_pb.SetAutoSwitchRequest, metadata?: grpcWeb.Metadata | null): Promise<grpc_pb.SetAutoSwitchReply>;
setAutoSwitch(request: grpc_pb.SetAutoSwitchRequest, metadata: grpcWeb.Metadata | null, callback: (err: grpcWeb.RpcError, response: grpc_pb.SetAutoSwitchReply) => void): grpcWeb.ClientReadableStream<grpc_pb.SetAutoSwitchReply>;
methodDescriptorGetAutoSwitch: grpcWeb.MethodDescriptor<grpc_pb.GetAutoSwitchRequest, grpc_pb.GetAutoSwitchReply>;
getAutoSwitch(request: grpc_pb.GetAutoSwitchRequest, metadata?: grpcWeb.Metadata | null): Promise<grpc_pb.GetAutoSwitchReply>;
getAutoSwitch(request: grpc_pb.GetAutoSwitchRequest, metadata: grpcWeb.Metadata | null, callback: (err: grpcWeb.RpcError, response: grpc_pb.GetAutoSwitchReply) => void): grpcWeb.ClientReadableStream<grpc_pb.GetAutoSwitchReply>;
}
export declare class XmrNodeClient {
client_: grpcWeb.AbstractClientBase;
Expand Down
11 changes: 11 additions & 0 deletions dist/protobuf/GrpcServiceClientPb.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/protobuf/GrpcServiceClientPb.js.map

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions dist/protobuf/grpc_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,38 @@ export namespace SetAutoSwitchReply {
}
}

export class GetAutoSwitchRequest extends jspb.Message {
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): GetAutoSwitchRequest.AsObject;
static toObject(includeInstance: boolean, msg: GetAutoSwitchRequest): GetAutoSwitchRequest.AsObject;
static serializeBinaryToWriter(message: GetAutoSwitchRequest, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): GetAutoSwitchRequest;
static deserializeBinaryFromReader(message: GetAutoSwitchRequest, reader: jspb.BinaryReader): GetAutoSwitchRequest;
}

export namespace GetAutoSwitchRequest {
export type AsObject = {
}
}

export class GetAutoSwitchReply extends jspb.Message {
getAutoSwitch(): boolean;
setAutoSwitch(value: boolean): GetAutoSwitchReply;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): GetAutoSwitchReply.AsObject;
static toObject(includeInstance: boolean, msg: GetAutoSwitchReply): GetAutoSwitchReply.AsObject;
static serializeBinaryToWriter(message: GetAutoSwitchReply, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): GetAutoSwitchReply;
static deserializeBinaryFromReader(message: GetAutoSwitchReply, reader: jspb.BinaryReader): GetAutoSwitchReply;
}

export namespace GetAutoSwitchReply {
export type AsObject = {
autoSwitch: boolean,
}
}

export class IsXmrNodeOnlineRequest extends jspb.Message {
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): IsXmrNodeOnlineRequest.AsObject;
Expand Down
Loading

0 comments on commit a945296

Please sign in to comment.