@code0-tech/tucana 0.0.52 → 0.0.53

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.
@@ -0,0 +1,67 @@
1
+ // @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
2
+ // @generated from protobuf file "sagittarius.action_configuration.proto" (package "sagittarius", syntax proto3)
3
+ // tslint:disable
4
+ import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
5
+ import type { IBinaryWriter } from "@protobuf-ts/runtime";
6
+ import type { BinaryReadOptions } from "@protobuf-ts/runtime";
7
+ import type { IBinaryReader } from "@protobuf-ts/runtime";
8
+ import type { PartialMessage } from "@protobuf-ts/runtime";
9
+ import { MessageType } from "@protobuf-ts/runtime";
10
+ import { ActionConfiguration } from "./shared.action_configuration_pb";
11
+ /**
12
+ * Request for updating a action configuration
13
+ *
14
+ * @generated from protobuf message sagittarius.ActionConfigurationUpdateRequest
15
+ */
16
+ export interface ActionConfigurationUpdateRequest {
17
+ /**
18
+ * Name of the action
19
+ *
20
+ * @generated from protobuf field: string action_identifier = 1
21
+ */
22
+ actionIdentifier: string;
23
+ /**
24
+ * List of action configurations that should be updated
25
+ *
26
+ * @generated from protobuf field: repeated shared.ActionConfiguration action_configurations = 2
27
+ */
28
+ actionConfigurations: ActionConfiguration[];
29
+ }
30
+ /**
31
+ * Response of updating a action configuration
32
+ *
33
+ * @generated from protobuf message sagittarius.ActionConfigurationUpdateResponse
34
+ */
35
+ export interface ActionConfigurationUpdateResponse {
36
+ /**
37
+ * True if was successful, false if not
38
+ *
39
+ * @generated from protobuf field: bool success = 1
40
+ */
41
+ success: boolean;
42
+ }
43
+ declare class ActionConfigurationUpdateRequest$Type extends MessageType<ActionConfigurationUpdateRequest> {
44
+ constructor();
45
+ create(value?: PartialMessage<ActionConfigurationUpdateRequest>): ActionConfigurationUpdateRequest;
46
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionConfigurationUpdateRequest): ActionConfigurationUpdateRequest;
47
+ internalBinaryWrite(message: ActionConfigurationUpdateRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
48
+ }
49
+ /**
50
+ * @generated MessageType for protobuf message sagittarius.ActionConfigurationUpdateRequest
51
+ */
52
+ export declare const ActionConfigurationUpdateRequest: ActionConfigurationUpdateRequest$Type;
53
+ declare class ActionConfigurationUpdateResponse$Type extends MessageType<ActionConfigurationUpdateResponse> {
54
+ constructor();
55
+ create(value?: PartialMessage<ActionConfigurationUpdateResponse>): ActionConfigurationUpdateResponse;
56
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionConfigurationUpdateResponse): ActionConfigurationUpdateResponse;
57
+ internalBinaryWrite(message: ActionConfigurationUpdateResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
58
+ }
59
+ /**
60
+ * @generated MessageType for protobuf message sagittarius.ActionConfigurationUpdateResponse
61
+ */
62
+ export declare const ActionConfigurationUpdateResponse: ActionConfigurationUpdateResponse$Type;
63
+ /**
64
+ * @generated ServiceType for protobuf service sagittarius.ActionConfigurationService
65
+ */
66
+ export declare const ActionConfigurationService: any;
67
+ export {};
@@ -0,0 +1,120 @@
1
+ // @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
2
+ // @generated from protobuf file "sagittarius.action_configuration.proto" (package "sagittarius", 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 "sagittarius.action_configuration.proto" (package "sagittarius", 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 { ActionConfiguration } 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("sagittarius.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: () => ActionConfiguration }
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.ActionConfiguration action_configurations */ 2:
38
+ message.actionConfigurations.push(ActionConfiguration.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.ActionConfiguration action_configurations = 2; */
56
+ for (let i = 0; i < message.actionConfigurations.length; i++)
57
+ ActionConfiguration.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 sagittarius.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("sagittarius.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 sagittarius.ActionConfigurationUpdateResponse
113
+ */
114
+ export const ActionConfigurationUpdateResponse = new ActionConfigurationUpdateResponse$Type();
115
+ /**
116
+ * @generated ServiceType for protobuf service sagittarius.ActionConfigurationService
117
+ */
118
+ export const ActionConfigurationService = new ServiceType("sagittarius.ActionConfigurationService", [
119
+ { name: "Update", options: {}, I: ActionConfigurationUpdateRequest, O: ActionConfigurationUpdateResponse }
120
+ ]);
@@ -0,0 +1,44 @@
1
+ // @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
2
+ // @generated from protobuf file "shared.action_configuration.proto" (package "shared", syntax proto3)
3
+ // tslint:disable
4
+ import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
5
+ import type { IBinaryWriter } from "@protobuf-ts/runtime";
6
+ import type { BinaryReadOptions } from "@protobuf-ts/runtime";
7
+ import type { IBinaryReader } from "@protobuf-ts/runtime";
8
+ import type { PartialMessage } from "@protobuf-ts/runtime";
9
+ import { MessageType } from "@protobuf-ts/runtime";
10
+ import { Value } from "./shared.struct_pb";
11
+ import { DefinitionDataType } from "./shared.data_type_pb";
12
+ import { Translation } from "./shared.translation_pb";
13
+ /**
14
+ * @generated from protobuf message shared.ActionConfiguration
15
+ */
16
+ export interface ActionConfiguration {
17
+ /**
18
+ * @generated from protobuf field: repeated shared.Translation name = 1
19
+ */
20
+ name: Translation[];
21
+ /**
22
+ * @generated from protobuf field: repeated shared.Translation description = 2
23
+ */
24
+ description: Translation[];
25
+ /**
26
+ * @generated from protobuf field: shared.DefinitionDataType type = 3
27
+ */
28
+ type?: DefinitionDataType;
29
+ /**
30
+ * @generated from protobuf field: optional shared.Value default_value = 4
31
+ */
32
+ defaultValue?: Value;
33
+ }
34
+ declare class ActionConfiguration$Type extends MessageType<ActionConfiguration> {
35
+ constructor();
36
+ create(value?: PartialMessage<ActionConfiguration>): ActionConfiguration;
37
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionConfiguration): ActionConfiguration;
38
+ internalBinaryWrite(message: ActionConfiguration, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
39
+ }
40
+ /**
41
+ * @generated MessageType for protobuf message shared.ActionConfiguration
42
+ */
43
+ export declare const ActionConfiguration: ActionConfiguration$Type;
44
+ export {};
@@ -0,0 +1,79 @@
1
+ // @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
2
+ // @generated from protobuf file "shared.action_configuration.proto" (package "shared", syntax proto3)
3
+ // tslint:disable
4
+ import { WireType } from "@protobuf-ts/runtime";
5
+ import { UnknownFieldHandler } from "@protobuf-ts/runtime";
6
+ import { reflectionMergePartial } from "@protobuf-ts/runtime";
7
+ import { MessageType } from "@protobuf-ts/runtime";
8
+ import { Value } from "./shared.struct_pb";
9
+ import { DefinitionDataType } from "./shared.data_type_pb";
10
+ import { Translation } from "./shared.translation_pb";
11
+ // @generated message type with reflection information, may provide speed optimized methods
12
+ class ActionConfiguration$Type extends MessageType {
13
+ constructor() {
14
+ super("shared.ActionConfiguration", [
15
+ { no: 1, name: "name", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Translation },
16
+ { no: 2, name: "description", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Translation },
17
+ { no: 3, name: "type", kind: "message", T: () => DefinitionDataType },
18
+ { no: 4, name: "default_value", kind: "message", T: () => Value }
19
+ ]);
20
+ }
21
+ create(value) {
22
+ const message = globalThis.Object.create((this.messagePrototype));
23
+ message.name = [];
24
+ message.description = [];
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 /* repeated shared.Translation name */ 1:
35
+ message.name.push(Translation.internalBinaryRead(reader, reader.uint32(), options));
36
+ break;
37
+ case /* repeated shared.Translation description */ 2:
38
+ message.description.push(Translation.internalBinaryRead(reader, reader.uint32(), options));
39
+ break;
40
+ case /* shared.DefinitionDataType type */ 3:
41
+ message.type = DefinitionDataType.internalBinaryRead(reader, reader.uint32(), options, message.type);
42
+ break;
43
+ case /* optional shared.Value default_value */ 4:
44
+ message.defaultValue = Value.internalBinaryRead(reader, reader.uint32(), options, message.defaultValue);
45
+ break;
46
+ default:
47
+ let u = options.readUnknownField;
48
+ if (u === "throw")
49
+ throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
50
+ let d = reader.skip(wireType);
51
+ if (u !== false)
52
+ (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
53
+ }
54
+ }
55
+ return message;
56
+ }
57
+ internalBinaryWrite(message, writer, options) {
58
+ /* repeated shared.Translation name = 1; */
59
+ for (let i = 0; i < message.name.length; i++)
60
+ Translation.internalBinaryWrite(message.name[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
61
+ /* repeated shared.Translation description = 2; */
62
+ for (let i = 0; i < message.description.length; i++)
63
+ Translation.internalBinaryWrite(message.description[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
64
+ /* shared.DefinitionDataType type = 3; */
65
+ if (message.type)
66
+ DefinitionDataType.internalBinaryWrite(message.type, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
67
+ /* optional shared.Value default_value = 4; */
68
+ if (message.defaultValue)
69
+ Value.internalBinaryWrite(message.defaultValue, writer.tag(4, WireType.LengthDelimited).fork(), options).join();
70
+ let u = options.writeUnknownFields;
71
+ if (u !== false)
72
+ (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
73
+ return writer;
74
+ }
75
+ }
76
+ /**
77
+ * @generated MessageType for protobuf message shared.ActionConfiguration
78
+ */
79
+ export const ActionConfiguration = new ActionConfiguration$Type();
@@ -61,11 +61,11 @@ export interface DefinitionDataType {
61
61
  */
62
62
  version: string;
63
63
  /**
64
- * Field will be set by an action to distinguish an action function from a runtime function
64
+ * Identifier of the service that defines this definition
65
65
  *
66
- * @generated from protobuf field: optional string action_identifier = 9
66
+ * @generated from protobuf field: optional string definition_source = 9
67
67
  */
68
- actionIdentifier?: string;
68
+ definitionSource?: string;
69
69
  }
70
70
  /**
71
71
  * @generated from protobuf enum shared.DefinitionDataType.Variant
@@ -131,15 +131,15 @@ export interface DefinitionDataTypeRule {
131
131
  config: {
132
132
  oneofKind: "containsKey";
133
133
  /**
134
- * @generated from protobuf field: shared.DefinitionDataTypeContainsKeyRuleConfig contains_key = 1
134
+ * @generated from protobuf field: shared.DataTypeContainsKeyRuleConfig contains_key = 1
135
135
  */
136
- containsKey: DefinitionDataTypeContainsKeyRuleConfig;
136
+ containsKey: DataTypeContainsKeyRuleConfig;
137
137
  } | {
138
138
  oneofKind: "containsType";
139
139
  /**
140
- * @generated from protobuf field: shared.DefinitionDataTypeContainsTypeRuleConfig contains_type = 2
140
+ * @generated from protobuf field: shared.DataTypeContainsTypeRuleConfig contains_type = 2
141
141
  */
142
- containsType: DefinitionDataTypeContainsTypeRuleConfig;
142
+ containsType: DataTypeContainsTypeRuleConfig;
143
143
  } | {
144
144
  oneofKind: "itemOfCollection";
145
145
  /**
@@ -161,21 +161,21 @@ export interface DefinitionDataTypeRule {
161
161
  } | {
162
162
  oneofKind: "inputTypes";
163
163
  /**
164
- * @generated from protobuf field: shared.DefinitionDataTypeInputTypesRuleConfig input_types = 6
164
+ * @generated from protobuf field: shared.DataTypeInputTypesRuleConfig input_types = 6
165
165
  */
166
- inputTypes: DefinitionDataTypeInputTypesRuleConfig;
166
+ inputTypes: DataTypeInputTypesRuleConfig;
167
167
  } | {
168
168
  oneofKind: "returnType";
169
169
  /**
170
- * @generated from protobuf field: shared.DefinitionDataTypeReturnTypeRuleConfig return_type = 7
170
+ * @generated from protobuf field: shared.DataTypeReturnTypeRuleConfig return_type = 7
171
171
  */
172
- returnType: DefinitionDataTypeReturnTypeRuleConfig;
172
+ returnType: DataTypeReturnTypeRuleConfig;
173
173
  } | {
174
174
  oneofKind: "parentType";
175
175
  /**
176
- * @generated from protobuf field: shared.DefinitionDataTypeParentTypeRuleConfig parent_type = 8
176
+ * @generated from protobuf field: shared.DataTypeParentTypeRuleConfig parent_type = 8
177
177
  */
178
- parentType: DefinitionDataTypeParentTypeRuleConfig;
178
+ parentType: DataTypeParentTypeRuleConfig;
179
179
  } | {
180
180
  oneofKind: undefined;
181
181
  };
@@ -190,15 +190,15 @@ export interface ExecutionDataTypeRule {
190
190
  config: {
191
191
  oneofKind: "containsKey";
192
192
  /**
193
- * @generated from protobuf field: shared.ExecutionDataTypeContainsKeyRuleConfig contains_key = 1
193
+ * @generated from protobuf field: shared.DataTypeContainsKeyRuleConfig contains_key = 1
194
194
  */
195
- containsKey: ExecutionDataTypeContainsKeyRuleConfig;
195
+ containsKey: DataTypeContainsKeyRuleConfig;
196
196
  } | {
197
197
  oneofKind: "containsType";
198
198
  /**
199
- * @generated from protobuf field: shared.ExecutionDataTypeContainsTypeRuleConfig contains_type = 2
199
+ * @generated from protobuf field: shared.DataTypeContainsTypeRuleConfig contains_type = 2
200
200
  */
201
- containsType: ExecutionDataTypeContainsTypeRuleConfig;
201
+ containsType: DataTypeContainsTypeRuleConfig;
202
202
  } | {
203
203
  oneofKind: "itemOfCollection";
204
204
  /**
@@ -224,9 +224,9 @@ export interface ExecutionDataTypeRule {
224
224
  /**
225
225
  * Rule for defining the data type parent type
226
226
  *
227
- * @generated from protobuf message shared.DefinitionDataTypeParentTypeRuleConfig
227
+ * @generated from protobuf message shared.DataTypeParentTypeRuleConfig
228
228
  */
229
- export interface DefinitionDataTypeParentTypeRuleConfig {
229
+ export interface DataTypeParentTypeRuleConfig {
230
230
  /**
231
231
  * @generated from protobuf field: shared.DataTypeIdentifier parent_type = 1
232
232
  */
@@ -235,9 +235,9 @@ export interface DefinitionDataTypeParentTypeRuleConfig {
235
235
  /**
236
236
  * Rule to check that the given key is contained in the given object
237
237
  *
238
- * @generated from protobuf message shared.DefinitionDataTypeContainsKeyRuleConfig
238
+ * @generated from protobuf message shared.DataTypeContainsKeyRuleConfig
239
239
  */
240
- export interface DefinitionDataTypeContainsKeyRuleConfig {
240
+ export interface DataTypeContainsKeyRuleConfig {
241
241
  /**
242
242
  * @generated from protobuf field: string key = 1
243
243
  */
@@ -247,39 +247,17 @@ export interface DefinitionDataTypeContainsKeyRuleConfig {
247
247
  */
248
248
  dataTypeIdentifier?: DataTypeIdentifier;
249
249
  }
250
- /**
251
- * @generated from protobuf message shared.ExecutionDataTypeContainsKeyRuleConfig
252
- */
253
- export interface ExecutionDataTypeContainsKeyRuleConfig {
254
- /**
255
- * @generated from protobuf field: string key = 1
256
- */
257
- key: string;
258
- /**
259
- * @generated from protobuf field: string data_type_identifier = 2
260
- */
261
- dataTypeIdentifier: string;
262
- }
263
250
  /**
264
251
  * Rule to check that the given type is contained in the given array
265
252
  *
266
- * @generated from protobuf message shared.DefinitionDataTypeContainsTypeRuleConfig
253
+ * @generated from protobuf message shared.DataTypeContainsTypeRuleConfig
267
254
  */
268
- export interface DefinitionDataTypeContainsTypeRuleConfig {
255
+ export interface DataTypeContainsTypeRuleConfig {
269
256
  /**
270
257
  * @generated from protobuf field: shared.DataTypeIdentifier data_type_identifier = 1
271
258
  */
272
259
  dataTypeIdentifier?: DataTypeIdentifier;
273
260
  }
274
- /**
275
- * @generated from protobuf message shared.ExecutionDataTypeContainsTypeRuleConfig
276
- */
277
- export interface ExecutionDataTypeContainsTypeRuleConfig {
278
- /**
279
- * @generated from protobuf field: string data_type_identifier = 1
280
- */
281
- dataTypeIdentifier: string;
282
- }
283
261
  /**
284
262
  * Rule to check that the given item is contained inside the array of items
285
263
  *
@@ -322,18 +300,18 @@ export interface DataTypeRegexRuleConfig {
322
300
  pattern: string;
323
301
  }
324
302
  /**
325
- * @generated from protobuf message shared.DefinitionDataTypeInputTypesRuleConfig
303
+ * @generated from protobuf message shared.DataTypeInputTypesRuleConfig
326
304
  */
327
- export interface DefinitionDataTypeInputTypesRuleConfig {
305
+ export interface DataTypeInputTypesRuleConfig {
328
306
  /**
329
- * @generated from protobuf field: repeated shared.DefinitionDataTypeInputTypesRuleConfig.DataTypeInputType input_types = 1
307
+ * @generated from protobuf field: repeated shared.DataTypeInputTypesRuleConfig.DataTypeInputType input_types = 1
330
308
  */
331
- inputTypes: DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType[];
309
+ inputTypes: DataTypeInputTypesRuleConfig_DataTypeInputType[];
332
310
  }
333
311
  /**
334
- * @generated from protobuf message shared.DefinitionDataTypeInputTypesRuleConfig.DataTypeInputType
312
+ * @generated from protobuf message shared.DataTypeInputTypesRuleConfig.DataTypeInputType
335
313
  */
336
- export interface DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType {
314
+ export interface DataTypeInputTypesRuleConfig_DataTypeInputType {
337
315
  /**
338
316
  * @generated from protobuf field: shared.DataTypeIdentifier data_type_identifier = 1
339
317
  */
@@ -344,9 +322,9 @@ export interface DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType {
344
322
  inputIdentifier: string;
345
323
  }
346
324
  /**
347
- * @generated from protobuf message shared.DefinitionDataTypeReturnTypeRuleConfig
325
+ * @generated from protobuf message shared.DataTypeReturnTypeRuleConfig
348
326
  */
349
- export interface DefinitionDataTypeReturnTypeRuleConfig {
327
+ export interface DataTypeReturnTypeRuleConfig {
350
328
  /**
351
329
  * @generated from protobuf field: shared.DataTypeIdentifier data_type_identifier = 1
352
330
  */
@@ -485,56 +463,36 @@ declare class ExecutionDataTypeRule$Type extends MessageType<ExecutionDataTypeRu
485
463
  * @generated MessageType for protobuf message shared.ExecutionDataTypeRule
486
464
  */
487
465
  export declare const ExecutionDataTypeRule: ExecutionDataTypeRule$Type;
488
- declare class DefinitionDataTypeParentTypeRuleConfig$Type extends MessageType<DefinitionDataTypeParentTypeRuleConfig> {
489
- constructor();
490
- create(value?: PartialMessage<DefinitionDataTypeParentTypeRuleConfig>): DefinitionDataTypeParentTypeRuleConfig;
491
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DefinitionDataTypeParentTypeRuleConfig): DefinitionDataTypeParentTypeRuleConfig;
492
- internalBinaryWrite(message: DefinitionDataTypeParentTypeRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
493
- }
494
- /**
495
- * @generated MessageType for protobuf message shared.DefinitionDataTypeParentTypeRuleConfig
496
- */
497
- export declare const DefinitionDataTypeParentTypeRuleConfig: DefinitionDataTypeParentTypeRuleConfig$Type;
498
- declare class DefinitionDataTypeContainsKeyRuleConfig$Type extends MessageType<DefinitionDataTypeContainsKeyRuleConfig> {
499
- constructor();
500
- create(value?: PartialMessage<DefinitionDataTypeContainsKeyRuleConfig>): DefinitionDataTypeContainsKeyRuleConfig;
501
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DefinitionDataTypeContainsKeyRuleConfig): DefinitionDataTypeContainsKeyRuleConfig;
502
- internalBinaryWrite(message: DefinitionDataTypeContainsKeyRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
503
- }
504
- /**
505
- * @generated MessageType for protobuf message shared.DefinitionDataTypeContainsKeyRuleConfig
506
- */
507
- export declare const DefinitionDataTypeContainsKeyRuleConfig: DefinitionDataTypeContainsKeyRuleConfig$Type;
508
- declare class ExecutionDataTypeContainsKeyRuleConfig$Type extends MessageType<ExecutionDataTypeContainsKeyRuleConfig> {
466
+ declare class DataTypeParentTypeRuleConfig$Type extends MessageType<DataTypeParentTypeRuleConfig> {
509
467
  constructor();
510
- create(value?: PartialMessage<ExecutionDataTypeContainsKeyRuleConfig>): ExecutionDataTypeContainsKeyRuleConfig;
511
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExecutionDataTypeContainsKeyRuleConfig): ExecutionDataTypeContainsKeyRuleConfig;
512
- internalBinaryWrite(message: ExecutionDataTypeContainsKeyRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
468
+ create(value?: PartialMessage<DataTypeParentTypeRuleConfig>): DataTypeParentTypeRuleConfig;
469
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DataTypeParentTypeRuleConfig): DataTypeParentTypeRuleConfig;
470
+ internalBinaryWrite(message: DataTypeParentTypeRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
513
471
  }
514
472
  /**
515
- * @generated MessageType for protobuf message shared.ExecutionDataTypeContainsKeyRuleConfig
473
+ * @generated MessageType for protobuf message shared.DataTypeParentTypeRuleConfig
516
474
  */
517
- export declare const ExecutionDataTypeContainsKeyRuleConfig: ExecutionDataTypeContainsKeyRuleConfig$Type;
518
- declare class DefinitionDataTypeContainsTypeRuleConfig$Type extends MessageType<DefinitionDataTypeContainsTypeRuleConfig> {
475
+ export declare const DataTypeParentTypeRuleConfig: DataTypeParentTypeRuleConfig$Type;
476
+ declare class DataTypeContainsKeyRuleConfig$Type extends MessageType<DataTypeContainsKeyRuleConfig> {
519
477
  constructor();
520
- create(value?: PartialMessage<DefinitionDataTypeContainsTypeRuleConfig>): DefinitionDataTypeContainsTypeRuleConfig;
521
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DefinitionDataTypeContainsTypeRuleConfig): DefinitionDataTypeContainsTypeRuleConfig;
522
- internalBinaryWrite(message: DefinitionDataTypeContainsTypeRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
478
+ create(value?: PartialMessage<DataTypeContainsKeyRuleConfig>): DataTypeContainsKeyRuleConfig;
479
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DataTypeContainsKeyRuleConfig): DataTypeContainsKeyRuleConfig;
480
+ internalBinaryWrite(message: DataTypeContainsKeyRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
523
481
  }
524
482
  /**
525
- * @generated MessageType for protobuf message shared.DefinitionDataTypeContainsTypeRuleConfig
483
+ * @generated MessageType for protobuf message shared.DataTypeContainsKeyRuleConfig
526
484
  */
527
- export declare const DefinitionDataTypeContainsTypeRuleConfig: DefinitionDataTypeContainsTypeRuleConfig$Type;
528
- declare class ExecutionDataTypeContainsTypeRuleConfig$Type extends MessageType<ExecutionDataTypeContainsTypeRuleConfig> {
485
+ export declare const DataTypeContainsKeyRuleConfig: DataTypeContainsKeyRuleConfig$Type;
486
+ declare class DataTypeContainsTypeRuleConfig$Type extends MessageType<DataTypeContainsTypeRuleConfig> {
529
487
  constructor();
530
- create(value?: PartialMessage<ExecutionDataTypeContainsTypeRuleConfig>): ExecutionDataTypeContainsTypeRuleConfig;
531
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExecutionDataTypeContainsTypeRuleConfig): ExecutionDataTypeContainsTypeRuleConfig;
532
- internalBinaryWrite(message: ExecutionDataTypeContainsTypeRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
488
+ create(value?: PartialMessage<DataTypeContainsTypeRuleConfig>): DataTypeContainsTypeRuleConfig;
489
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DataTypeContainsTypeRuleConfig): DataTypeContainsTypeRuleConfig;
490
+ internalBinaryWrite(message: DataTypeContainsTypeRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
533
491
  }
534
492
  /**
535
- * @generated MessageType for protobuf message shared.ExecutionDataTypeContainsTypeRuleConfig
493
+ * @generated MessageType for protobuf message shared.DataTypeContainsTypeRuleConfig
536
494
  */
537
- export declare const ExecutionDataTypeContainsTypeRuleConfig: ExecutionDataTypeContainsTypeRuleConfig$Type;
495
+ export declare const DataTypeContainsTypeRuleConfig: DataTypeContainsTypeRuleConfig$Type;
538
496
  declare class DataTypeItemOfCollectionRuleConfig$Type extends MessageType<DataTypeItemOfCollectionRuleConfig> {
539
497
  constructor();
540
498
  create(value?: PartialMessage<DataTypeItemOfCollectionRuleConfig>): DataTypeItemOfCollectionRuleConfig;
@@ -565,36 +523,36 @@ declare class DataTypeRegexRuleConfig$Type extends MessageType<DataTypeRegexRule
565
523
  * @generated MessageType for protobuf message shared.DataTypeRegexRuleConfig
566
524
  */
567
525
  export declare const DataTypeRegexRuleConfig: DataTypeRegexRuleConfig$Type;
568
- declare class DefinitionDataTypeInputTypesRuleConfig$Type extends MessageType<DefinitionDataTypeInputTypesRuleConfig> {
526
+ declare class DataTypeInputTypesRuleConfig$Type extends MessageType<DataTypeInputTypesRuleConfig> {
569
527
  constructor();
570
- create(value?: PartialMessage<DefinitionDataTypeInputTypesRuleConfig>): DefinitionDataTypeInputTypesRuleConfig;
571
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DefinitionDataTypeInputTypesRuleConfig): DefinitionDataTypeInputTypesRuleConfig;
572
- internalBinaryWrite(message: DefinitionDataTypeInputTypesRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
528
+ create(value?: PartialMessage<DataTypeInputTypesRuleConfig>): DataTypeInputTypesRuleConfig;
529
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DataTypeInputTypesRuleConfig): DataTypeInputTypesRuleConfig;
530
+ internalBinaryWrite(message: DataTypeInputTypesRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
573
531
  }
574
532
  /**
575
- * @generated MessageType for protobuf message shared.DefinitionDataTypeInputTypesRuleConfig
533
+ * @generated MessageType for protobuf message shared.DataTypeInputTypesRuleConfig
576
534
  */
577
- export declare const DefinitionDataTypeInputTypesRuleConfig: DefinitionDataTypeInputTypesRuleConfig$Type;
578
- declare class DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType$Type extends MessageType<DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType> {
535
+ export declare const DataTypeInputTypesRuleConfig: DataTypeInputTypesRuleConfig$Type;
536
+ declare class DataTypeInputTypesRuleConfig_DataTypeInputType$Type extends MessageType<DataTypeInputTypesRuleConfig_DataTypeInputType> {
579
537
  constructor();
580
- create(value?: PartialMessage<DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType>): DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType;
581
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType): DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType;
582
- internalBinaryWrite(message: DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
538
+ create(value?: PartialMessage<DataTypeInputTypesRuleConfig_DataTypeInputType>): DataTypeInputTypesRuleConfig_DataTypeInputType;
539
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DataTypeInputTypesRuleConfig_DataTypeInputType): DataTypeInputTypesRuleConfig_DataTypeInputType;
540
+ internalBinaryWrite(message: DataTypeInputTypesRuleConfig_DataTypeInputType, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
583
541
  }
584
542
  /**
585
- * @generated MessageType for protobuf message shared.DefinitionDataTypeInputTypesRuleConfig.DataTypeInputType
543
+ * @generated MessageType for protobuf message shared.DataTypeInputTypesRuleConfig.DataTypeInputType
586
544
  */
587
- export declare const DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType: DefinitionDataTypeInputTypesRuleConfig_DataTypeInputType$Type;
588
- declare class DefinitionDataTypeReturnTypeRuleConfig$Type extends MessageType<DefinitionDataTypeReturnTypeRuleConfig> {
545
+ export declare const DataTypeInputTypesRuleConfig_DataTypeInputType: DataTypeInputTypesRuleConfig_DataTypeInputType$Type;
546
+ declare class DataTypeReturnTypeRuleConfig$Type extends MessageType<DataTypeReturnTypeRuleConfig> {
589
547
  constructor();
590
- create(value?: PartialMessage<DefinitionDataTypeReturnTypeRuleConfig>): DefinitionDataTypeReturnTypeRuleConfig;
591
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DefinitionDataTypeReturnTypeRuleConfig): DefinitionDataTypeReturnTypeRuleConfig;
592
- internalBinaryWrite(message: DefinitionDataTypeReturnTypeRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
548
+ create(value?: PartialMessage<DataTypeReturnTypeRuleConfig>): DataTypeReturnTypeRuleConfig;
549
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DataTypeReturnTypeRuleConfig): DataTypeReturnTypeRuleConfig;
550
+ internalBinaryWrite(message: DataTypeReturnTypeRuleConfig, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
593
551
  }
594
552
  /**
595
- * @generated MessageType for protobuf message shared.DefinitionDataTypeReturnTypeRuleConfig
553
+ * @generated MessageType for protobuf message shared.DataTypeReturnTypeRuleConfig
596
554
  */
597
- export declare const DefinitionDataTypeReturnTypeRuleConfig: DefinitionDataTypeReturnTypeRuleConfig$Type;
555
+ export declare const DataTypeReturnTypeRuleConfig: DataTypeReturnTypeRuleConfig$Type;
598
556
  declare class DataTypeIdentifier$Type extends MessageType<DataTypeIdentifier> {
599
557
  constructor();
600
558
  create(value?: PartialMessage<DataTypeIdentifier>): DataTypeIdentifier;