@code0-tech/tucana 0.0.46 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/pb/shared.flow_pb.d.ts +8 -0
- package/pb/shared.flow_pb.js +16 -1
package/package.json
CHANGED
package/pb/shared.flow_pb.d.ts
CHANGED
|
@@ -58,6 +58,14 @@ export interface ValidationFlow {
|
|
|
58
58
|
* @generated from protobuf field: repeated shared.NodeFunction node_functions = 9
|
|
59
59
|
*/
|
|
60
60
|
nodeFunctions: NodeFunction[];
|
|
61
|
+
/**
|
|
62
|
+
* @generated from protobuf field: string project_slug = 10
|
|
63
|
+
*/
|
|
64
|
+
projectSlug: string;
|
|
65
|
+
/**
|
|
66
|
+
* @generated from protobuf field: optional string disable_reason = 11
|
|
67
|
+
*/
|
|
68
|
+
disableReason?: string;
|
|
61
69
|
}
|
|
62
70
|
/**
|
|
63
71
|
* @generated from protobuf message shared.ExecutionFlow
|
package/pb/shared.flow_pb.js
CHANGED
|
@@ -20,7 +20,9 @@ class ValidationFlow$Type extends MessageType {
|
|
|
20
20
|
{ no: 6, name: "return_type_identifier", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
|
|
21
21
|
{ no: 7, name: "settings", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => FlowSetting },
|
|
22
22
|
{ no: 8, name: "starting_node_id", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
|
|
23
|
-
{ no: 9, name: "node_functions", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => NodeFunction }
|
|
23
|
+
{ no: 9, name: "node_functions", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => NodeFunction },
|
|
24
|
+
{ no: 10, name: "project_slug", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
25
|
+
{ no: 11, name: "disable_reason", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ }
|
|
24
26
|
]);
|
|
25
27
|
}
|
|
26
28
|
create(value) {
|
|
@@ -32,6 +34,7 @@ class ValidationFlow$Type extends MessageType {
|
|
|
32
34
|
message.settings = [];
|
|
33
35
|
message.startingNodeId = 0n;
|
|
34
36
|
message.nodeFunctions = [];
|
|
37
|
+
message.projectSlug = "";
|
|
35
38
|
if (value !== undefined)
|
|
36
39
|
reflectionMergePartial(this, message, value);
|
|
37
40
|
return message;
|
|
@@ -68,6 +71,12 @@ class ValidationFlow$Type extends MessageType {
|
|
|
68
71
|
case /* repeated shared.NodeFunction node_functions */ 9:
|
|
69
72
|
message.nodeFunctions.push(NodeFunction.internalBinaryRead(reader, reader.uint32(), options));
|
|
70
73
|
break;
|
|
74
|
+
case /* string project_slug */ 10:
|
|
75
|
+
message.projectSlug = reader.string();
|
|
76
|
+
break;
|
|
77
|
+
case /* optional string disable_reason */ 11:
|
|
78
|
+
message.disableReason = reader.string();
|
|
79
|
+
break;
|
|
71
80
|
default:
|
|
72
81
|
let u = options.readUnknownField;
|
|
73
82
|
if (u === "throw")
|
|
@@ -107,6 +116,12 @@ class ValidationFlow$Type extends MessageType {
|
|
|
107
116
|
/* repeated shared.NodeFunction node_functions = 9; */
|
|
108
117
|
for (let i = 0; i < message.nodeFunctions.length; i++)
|
|
109
118
|
NodeFunction.internalBinaryWrite(message.nodeFunctions[i], writer.tag(9, WireType.LengthDelimited).fork(), options).join();
|
|
119
|
+
/* string project_slug = 10; */
|
|
120
|
+
if (message.projectSlug !== "")
|
|
121
|
+
writer.tag(10, WireType.LengthDelimited).string(message.projectSlug);
|
|
122
|
+
/* optional string disable_reason = 11; */
|
|
123
|
+
if (message.disableReason !== undefined)
|
|
124
|
+
writer.tag(11, WireType.LengthDelimited).string(message.disableReason);
|
|
110
125
|
let u = options.writeUnknownFields;
|
|
111
126
|
if (u !== false)
|
|
112
127
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|