@cloudquery/plugin-pb-javascript
Advanced tools
Comparing version 0.0.22 to 0.0.23
@@ -818,2 +818,53 @@ /** | ||
} | ||
export class TransformSchema extends pb_1.Message { | ||
#private; | ||
constructor(data?: any[] | {}); | ||
static fromObject(data: {}): TransformSchema; | ||
toObject(): {}; | ||
serialize(): Uint8Array; | ||
serialize(w: pb_1.BinaryWriter): void; | ||
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): TransformSchema; | ||
serializeBinary(): Uint8Array; | ||
static deserializeBinary(bytes: Uint8Array): TransformSchema; | ||
} | ||
export namespace TransformSchema { | ||
class Request extends pb_1.Message { | ||
#private; | ||
constructor(data?: any[] | { | ||
schema?: Uint8Array; | ||
}); | ||
get schema(): Uint8Array; | ||
set schema(value: Uint8Array); | ||
static fromObject(data: { | ||
schema?: Uint8Array; | ||
}): Request; | ||
toObject(): { | ||
schema?: 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[] | { | ||
schema?: Uint8Array; | ||
}); | ||
get schema(): Uint8Array; | ||
set schema(value: Uint8Array); | ||
static fromObject(data: { | ||
schema?: Uint8Array; | ||
}): Response; | ||
toObject(): { | ||
schema?: 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 { | ||
@@ -1018,2 +1069,11 @@ #private; | ||
}; | ||
TransformSchema: { | ||
path: string; | ||
requestStream: boolean; | ||
responseStream: boolean; | ||
requestSerialize: (message: TransformSchema.Request) => Buffer; | ||
requestDeserialize: (bytes: Buffer) => TransformSchema.Request; | ||
responseSerialize: (message: TransformSchema.Response) => Buffer; | ||
responseDeserialize: (bytes: Buffer) => TransformSchema.Response; | ||
}; | ||
Close: { | ||
@@ -1048,2 +1108,3 @@ path: string; | ||
abstract Transform(call: grpc_1.ServerDuplexStream<Transform.Request, Transform.Response>): void; | ||
abstract TransformSchema(call: grpc_1.ServerDuplexStream<TransformSchema.Request, TransformSchema.Response>): void; | ||
abstract Close(call: grpc_1.ServerUnaryCall<Close.Request, Close.Response>, callback: grpc_1.sendUnaryData<Close.Response>): void; | ||
@@ -1064,2 +1125,3 @@ abstract TestConnection(call: grpc_1.ServerUnaryCall<TestConnection.Request, TestConnection.Response>, callback: grpc_1.sendUnaryData<TestConnection.Response>): void; | ||
Transform: GrpcChunkServiceInterface<Transform.Request, Transform.Response>; | ||
TransformSchema: GrpcChunkServiceInterface<TransformSchema.Request, TransformSchema.Response>; | ||
Close: GrpcUnaryServiceInterface<Close.Request, Close.Response>; | ||
@@ -1066,0 +1128,0 @@ TestConnection: GrpcUnaryServiceInterface<TestConnection.Request, TestConnection.Response>; |
{ | ||
"name": "@cloudquery/plugin-pb-javascript", | ||
"version": "0.0.22", | ||
"version": "0.0.23", | ||
"files": [ | ||
@@ -5,0 +5,0 @@ "dist" |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
255658
4928