Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cloudquery/plugin-pb-javascript

Package Overview
Dependencies
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cloudquery/plugin-pb-javascript - npm Package Compare versions

Comparing version 0.0.21 to 0.0.22

66

dist/protos/plugin/v3/plugin.d.ts

@@ -767,2 +767,53 @@ /**

}
export class Transform extends pb_1.Message {
#private;
constructor(data?: any[] | {});
static fromObject(data: {}): Transform;
toObject(): {};
serialize(): Uint8Array;
serialize(w: pb_1.BinaryWriter): void;
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Transform;
serializeBinary(): Uint8Array;
static deserializeBinary(bytes: Uint8Array): Transform;
}
export namespace Transform {
class Request extends pb_1.Message {
#private;
constructor(data?: any[] | {
record?: Uint8Array;
});
get record(): Uint8Array;
set record(value: Uint8Array);
static fromObject(data: {
record?: Uint8Array;
}): Request;
toObject(): {
record?: Uint8Array;
};
serialize(): Uint8Array;
serialize(w: pb_1.BinaryWriter): void;
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Request;
serializeBinary(): Uint8Array;
static deserializeBinary(bytes: Uint8Array): Request;
}
class Response extends pb_1.Message {
#private;
constructor(data?: any[] | {
record?: Uint8Array;
});
get record(): Uint8Array;
set record(value: Uint8Array);
static fromObject(data: {
record?: Uint8Array;
}): Response;
toObject(): {
record?: Uint8Array;
};
serialize(): Uint8Array;
serialize(w: pb_1.BinaryWriter): void;
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Response;
serializeBinary(): Uint8Array;
static deserializeBinary(bytes: Uint8Array): Response;
}
}
export class Close extends pb_1.Message {

@@ -880,2 +931,6 @@ #private;

}
interface GrpcChunkServiceInterface<P, R> {
(metadata: grpc_1.Metadata, options?: grpc_1.CallOptions): grpc_1.ClientDuplexStream<P, R>;
(options?: grpc_1.CallOptions): grpc_1.ClientDuplexStream<P, R>;
}
export abstract class UnimplementedPluginService {

@@ -955,2 +1010,11 @@ static definition: {

};
Transform: {
path: string;
requestStream: boolean;
responseStream: boolean;
requestSerialize: (message: Transform.Request) => Buffer;
requestDeserialize: (bytes: Buffer) => Transform.Request;
responseSerialize: (message: Transform.Response) => Buffer;
responseDeserialize: (bytes: Buffer) => Transform.Response;
};
Close: {

@@ -984,2 +1048,3 @@ path: string;

abstract Write(call: grpc_1.ServerReadableStream<Write.Request, Write.Response>, callback: grpc_1.sendUnaryData<Write.Response>): void;
abstract Transform(call: grpc_1.ServerDuplexStream<Transform.Request, Transform.Response>): void;
abstract Close(call: grpc_1.ServerUnaryCall<Close.Request, Close.Response>, callback: grpc_1.sendUnaryData<Close.Response>): void;

@@ -999,2 +1064,3 @@ abstract TestConnection(call: grpc_1.ServerUnaryCall<TestConnection.Request, TestConnection.Response>, callback: grpc_1.sendUnaryData<TestConnection.Response>): void;

Write: GrpWritableServiceInterface<Write.Request, Write.Response>;
Transform: GrpcChunkServiceInterface<Transform.Request, Transform.Response>;
Close: GrpcUnaryServiceInterface<Close.Request, Close.Response>;

@@ -1001,0 +1067,0 @@ TestConnection: GrpcUnaryServiceInterface<TestConnection.Request, TestConnection.Response>;

2

package.json
{
"name": "@cloudquery/plugin-pb-javascript",
"version": "0.0.21",
"version": "0.0.22",
"files": [

@@ -5,0 +5,0 @@ "dist"

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc