@cloudquery/plugin-pb-javascript
Advanced tools
Comparing version 0.0.25 to 0.0.26
@@ -360,3 +360,3 @@ /** | ||
#private; | ||
constructor(data?: any[] | { | ||
constructor(data?: any[] | ({ | ||
tables?: string[]; | ||
@@ -367,3 +367,5 @@ skip_tables?: string[]; | ||
backend?: Sync.BackendOptions; | ||
}); | ||
} & (({ | ||
shard?: Sync.Request.Shard; | ||
})))); | ||
get tables(): string[]; | ||
@@ -380,2 +382,6 @@ set tables(value: string[]); | ||
get has_backend(): boolean; | ||
get shard(): Sync.Request.Shard; | ||
set shard(value: Sync.Request.Shard); | ||
get has_shard(): boolean; | ||
get _shard(): "none" | "shard"; | ||
static fromObject(data: { | ||
@@ -387,2 +393,3 @@ tables?: string[]; | ||
backend?: ReturnType<typeof Sync.BackendOptions.prototype.toObject>; | ||
shard?: ReturnType<typeof Sync.Request.Shard.prototype.toObject>; | ||
}): Request; | ||
@@ -395,2 +402,3 @@ toObject(): { | ||
backend?: ReturnType<typeof Sync.BackendOptions.prototype.toObject>; | ||
shard?: ReturnType<typeof Sync.Request.Shard.prototype.toObject>; | ||
}; | ||
@@ -403,2 +411,28 @@ serialize(): Uint8Array; | ||
} | ||
namespace Request { | ||
class Shard extends pb_1.Message { | ||
#private; | ||
constructor(data?: any[] | { | ||
num?: number; | ||
total?: number; | ||
}); | ||
get num(): number; | ||
set num(value: number); | ||
get total(): number; | ||
set total(value: number); | ||
static fromObject(data: { | ||
num?: number; | ||
total?: number; | ||
}): Shard; | ||
toObject(): { | ||
num?: number; | ||
total?: number; | ||
}; | ||
serialize(): Uint8Array; | ||
serialize(w: pb_1.BinaryWriter): void; | ||
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Shard; | ||
serializeBinary(): Uint8Array; | ||
static deserializeBinary(bytes: Uint8Array): Shard; | ||
} | ||
} | ||
class Response extends pb_1.Message { | ||
@@ -405,0 +439,0 @@ #private; |
{ | ||
"name": "@cloudquery/plugin-pb-javascript", | ||
"version": "0.0.25", | ||
"version": "0.0.26", | ||
"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
262956
5076