@code0-tech/tucana 0.0.54 → 0.0.56
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/aquila.action_pb.d.ts +33 -5
- package/pb/aquila.action_pb.js +41 -9
- package/pb/shared.action_configuration_pb.d.ts +27 -6
- package/pb/shared.action_configuration_pb.js +64 -17
- package/pb/shared.data_type_pb.d.ts +26 -384
- package/pb/shared.data_type_pb.js +66 -742
- package/pb/shared.flow_pb.d.ts +4 -5
- package/pb/shared.flow_pb.js +12 -13
- package/pb/shared.runtime_function_pb.d.ts +21 -24
- package/pb/shared.runtime_function_pb.js +64 -70
- package/pb/aquila.action_configuration_pb.client.d.ts +0 -32
- package/pb/aquila.action_configuration_pb.client.js +0 -23
- package/pb/aquila.action_configuration_pb.d.ts +0 -67
- package/pb/aquila.action_configuration_pb.js +0 -120
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
|
|
2
|
-
// @generated from protobuf file "aquila.action_configuration.proto" (package "aquila", syntax proto3)
|
|
3
|
-
// tslint:disable
|
|
4
|
-
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
|
|
5
|
-
// @generated from protobuf file "aquila.action_configuration.proto" (package "aquila", syntax proto3)
|
|
6
|
-
// tslint:disable
|
|
7
|
-
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
8
|
-
import { WireType } from "@protobuf-ts/runtime";
|
|
9
|
-
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
|
|
10
|
-
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
|
11
|
-
import { MessageType } from "@protobuf-ts/runtime";
|
|
12
|
-
import { ActionConfigurationDefinition } from "./shared.action_configuration_pb";
|
|
13
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
14
|
-
class ActionConfigurationUpdateRequest$Type extends MessageType {
|
|
15
|
-
constructor() {
|
|
16
|
-
super("aquila.ActionConfigurationUpdateRequest", [
|
|
17
|
-
{ no: 1, name: "action_identifier", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
18
|
-
{ no: 2, name: "action_configurations", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => ActionConfigurationDefinition }
|
|
19
|
-
]);
|
|
20
|
-
}
|
|
21
|
-
create(value) {
|
|
22
|
-
const message = globalThis.Object.create((this.messagePrototype));
|
|
23
|
-
message.actionIdentifier = "";
|
|
24
|
-
message.actionConfigurations = [];
|
|
25
|
-
if (value !== undefined)
|
|
26
|
-
reflectionMergePartial(this, message, value);
|
|
27
|
-
return message;
|
|
28
|
-
}
|
|
29
|
-
internalBinaryRead(reader, length, options, target) {
|
|
30
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
31
|
-
while (reader.pos < end) {
|
|
32
|
-
let [fieldNo, wireType] = reader.tag();
|
|
33
|
-
switch (fieldNo) {
|
|
34
|
-
case /* string action_identifier */ 1:
|
|
35
|
-
message.actionIdentifier = reader.string();
|
|
36
|
-
break;
|
|
37
|
-
case /* repeated shared.ActionConfigurationDefinition action_configurations */ 2:
|
|
38
|
-
message.actionConfigurations.push(ActionConfigurationDefinition.internalBinaryRead(reader, reader.uint32(), options));
|
|
39
|
-
break;
|
|
40
|
-
default:
|
|
41
|
-
let u = options.readUnknownField;
|
|
42
|
-
if (u === "throw")
|
|
43
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
44
|
-
let d = reader.skip(wireType);
|
|
45
|
-
if (u !== false)
|
|
46
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
return message;
|
|
50
|
-
}
|
|
51
|
-
internalBinaryWrite(message, writer, options) {
|
|
52
|
-
/* string action_identifier = 1; */
|
|
53
|
-
if (message.actionIdentifier !== "")
|
|
54
|
-
writer.tag(1, WireType.LengthDelimited).string(message.actionIdentifier);
|
|
55
|
-
/* repeated shared.ActionConfigurationDefinition action_configurations = 2; */
|
|
56
|
-
for (let i = 0; i < message.actionConfigurations.length; i++)
|
|
57
|
-
ActionConfigurationDefinition.internalBinaryWrite(message.actionConfigurations[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
|
58
|
-
let u = options.writeUnknownFields;
|
|
59
|
-
if (u !== false)
|
|
60
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
61
|
-
return writer;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
/**
|
|
65
|
-
* @generated MessageType for protobuf message aquila.ActionConfigurationUpdateRequest
|
|
66
|
-
*/
|
|
67
|
-
export const ActionConfigurationUpdateRequest = new ActionConfigurationUpdateRequest$Type();
|
|
68
|
-
// @generated message type with reflection information, may provide speed optimized methods
|
|
69
|
-
class ActionConfigurationUpdateResponse$Type extends MessageType {
|
|
70
|
-
constructor() {
|
|
71
|
-
super("aquila.ActionConfigurationUpdateResponse", [
|
|
72
|
-
{ no: 1, name: "success", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }
|
|
73
|
-
]);
|
|
74
|
-
}
|
|
75
|
-
create(value) {
|
|
76
|
-
const message = globalThis.Object.create((this.messagePrototype));
|
|
77
|
-
message.success = false;
|
|
78
|
-
if (value !== undefined)
|
|
79
|
-
reflectionMergePartial(this, message, value);
|
|
80
|
-
return message;
|
|
81
|
-
}
|
|
82
|
-
internalBinaryRead(reader, length, options, target) {
|
|
83
|
-
let message = target ?? this.create(), end = reader.pos + length;
|
|
84
|
-
while (reader.pos < end) {
|
|
85
|
-
let [fieldNo, wireType] = reader.tag();
|
|
86
|
-
switch (fieldNo) {
|
|
87
|
-
case /* bool success */ 1:
|
|
88
|
-
message.success = reader.bool();
|
|
89
|
-
break;
|
|
90
|
-
default:
|
|
91
|
-
let u = options.readUnknownField;
|
|
92
|
-
if (u === "throw")
|
|
93
|
-
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
94
|
-
let d = reader.skip(wireType);
|
|
95
|
-
if (u !== false)
|
|
96
|
-
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
return message;
|
|
100
|
-
}
|
|
101
|
-
internalBinaryWrite(message, writer, options) {
|
|
102
|
-
/* bool success = 1; */
|
|
103
|
-
if (message.success !== false)
|
|
104
|
-
writer.tag(1, WireType.Varint).bool(message.success);
|
|
105
|
-
let u = options.writeUnknownFields;
|
|
106
|
-
if (u !== false)
|
|
107
|
-
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
108
|
-
return writer;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
/**
|
|
112
|
-
* @generated MessageType for protobuf message aquila.ActionConfigurationUpdateResponse
|
|
113
|
-
*/
|
|
114
|
-
export const ActionConfigurationUpdateResponse = new ActionConfigurationUpdateResponse$Type();
|
|
115
|
-
/**
|
|
116
|
-
* @generated ServiceType for protobuf service aquila.ActionConfigurationService
|
|
117
|
-
*/
|
|
118
|
-
export const ActionConfigurationService = new ServiceType("aquila.ActionConfigurationService", [
|
|
119
|
-
{ name: "Update", options: {}, I: ActionConfigurationUpdateRequest, O: ActionConfigurationUpdateResponse }
|
|
120
|
-
]);
|