You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.11.0-SNAPSHOT-250425123058",
|
||||
"version": "1.11.0-SNAPSHOT-250428093032",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
15
workflow.ts
15
workflow.ts
@@ -810,6 +810,10 @@ export interface StartWorkflowUpgradeModelResult {
|
||||
* @generated from protobuf message api.StartWorkflowSweepRequest
|
||||
*/
|
||||
export interface StartWorkflowSweepRequest {
|
||||
/**
|
||||
* @generated from protobuf field: bool DryRun = 1 [json_name = "DryRun"];
|
||||
*/
|
||||
dryRun: boolean; // If true, all the sweeping operations will be done in dry run mode and no data will be deleted
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.StartWorkflowSweepResult
|
||||
@@ -4088,10 +4092,13 @@ export const StartWorkflowUpgradeModelResult = new StartWorkflowUpgradeModelResu
|
||||
// @generated message type with reflection information, may provide speed optimized methods
|
||||
class StartWorkflowSweepRequest$Type extends MessageType<StartWorkflowSweepRequest> {
|
||||
constructor() {
|
||||
super("api.StartWorkflowSweepRequest", [], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: {} } });
|
||||
super("api.StartWorkflowSweepRequest", [
|
||||
{ no: 1, name: "DryRun", kind: "scalar", jsonName: "DryRun", T: 8 /*ScalarType.BOOL*/ }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: {} } });
|
||||
}
|
||||
create(value?: PartialMessage<StartWorkflowSweepRequest>): StartWorkflowSweepRequest {
|
||||
const message = globalThis.Object.create((this.messagePrototype!));
|
||||
message.dryRun = false;
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<StartWorkflowSweepRequest>(this, message, value);
|
||||
return message;
|
||||
@@ -4101,6 +4108,9 @@ class StartWorkflowSweepRequest$Type extends MessageType<StartWorkflowSweepReque
|
||||
while (reader.pos < end) {
|
||||
let [fieldNo, wireType] = reader.tag();
|
||||
switch (fieldNo) {
|
||||
case /* bool DryRun = 1 [json_name = "DryRun"];*/ 1:
|
||||
message.dryRun = reader.bool();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -4113,6 +4123,9 @@ class StartWorkflowSweepRequest$Type extends MessageType<StartWorkflowSweepReque
|
||||
return message;
|
||||
}
|
||||
internalBinaryWrite(message: StartWorkflowSweepRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||
/* bool DryRun = 1 [json_name = "DryRun"]; */
|
||||
if (message.dryRun !== false)
|
||||
writer.tag(1, WireType.Varint).bool(message.dryRun);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user