@code0-tech/tucana 0.0.68 → 0.0.69
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/dist/aquila.cjs.js +1 -1
- package/dist/aquila.es.js +252 -617
- package/dist/pb/_generated/aquila.action_pb.client.d.ts +3 -3
- package/dist/pb/_generated/aquila.action_pb.d.ts +46 -119
- package/dist/pb/_generated/{aquila.flow_type_pb.client.d.ts → aquila.module_pb.client.d.ts} +9 -9
- package/dist/pb/_generated/aquila.module_pb.d.ts +54 -0
- package/dist/pb/_generated/aquila.runtime_status_pb.d.ts +7 -1
- package/dist/pb/_generated/sagittarius.flow_pb.d.ts +5 -5
- package/dist/pb/_generated/{sagittarius.flow_type_pb.client.d.ts → sagittarius.module_pb.client.d.ts} +7 -7
- package/dist/pb/_generated/sagittarius.module_pb.d.ts +59 -0
- package/dist/pb/_generated/sagittarius.runtime_status_pb.d.ts +12 -1
- package/dist/pb/_generated/sagittarius.runtime_usage_pb.d.ts +5 -0
- package/dist/pb/_generated/sagittarius.text_execution_pb.d.ts +5 -163
- package/dist/pb/_generated/shared.errors_pb.d.ts +122 -0
- package/dist/pb/_generated/shared.execution_result_pb.d.ts +131 -0
- package/dist/pb/_generated/shared.flow_pb.d.ts +83 -5
- package/dist/pb/_generated/{shared.flow_definition_pb.d.ts → shared.flow_type_pb.d.ts} +12 -0
- package/dist/pb/_generated/shared.function_pb.d.ts +4 -0
- package/dist/pb/_generated/shared.module_pb.d.ts +196 -0
- package/dist/pb/_generated/shared.runtime_flow_type_pb.d.ts +136 -0
- package/dist/pb/_generated/shared.runtime_function_pb.d.ts +4 -0
- package/dist/pb/_generated/shared.runtime_status_pb.d.ts +95 -32
- package/dist/pb/aquila.d.ts +2 -8
- package/dist/pb/sagittarius.d.ts +2 -10
- package/dist/pb/shared.d.ts +5 -2
- package/dist/{rpc-interceptor-CMOWd86Q.cjs → rpc-interceptor-4ZNqeHp7.cjs} +1 -1
- package/dist/{rpc-interceptor-DTRGJkmz.js → rpc-interceptor-DpAjfIVk.js} +1 -1
- package/dist/sagittarius.cjs.js +1 -1
- package/dist/sagittarius.es.js +366 -996
- package/dist/shared.cjs.js +1 -1
- package/dist/shared.es.js +3 -3
- package/dist/shared.flow_pb-CAu-uZAs.cjs +1 -0
- package/dist/shared.flow_pb-YdrVU_yH.js +877 -0
- package/dist/shared.runtime_usage_pb-6pp995qK.cjs +2 -0
- package/dist/{shared.runtime_usage_pb-C4_UdBmo.js → shared.runtime_usage_pb-Qa9pCiee.js} +2099 -1057
- package/package.json +1 -1
- package/dist/pb/_generated/aquila.data_type_pb.client.d.ts +0 -27
- package/dist/pb/_generated/aquila.data_type_pb.d.ts +0 -54
- package/dist/pb/_generated/aquila.flow_type_pb.d.ts +0 -54
- package/dist/pb/_generated/aquila.function_pb.client.d.ts +0 -31
- package/dist/pb/_generated/aquila.function_pb.d.ts +0 -54
- package/dist/pb/_generated/aquila.runtime_function_pb.client.d.ts +0 -31
- package/dist/pb/_generated/aquila.runtime_function_pb.d.ts +0 -54
- package/dist/pb/_generated/sagittarius.action_configuration_pb.client.d.ts +0 -27
- package/dist/pb/_generated/sagittarius.action_configuration_pb.d.ts +0 -60
- package/dist/pb/_generated/sagittarius.data_type_pb.client.d.ts +0 -27
- package/dist/pb/_generated/sagittarius.data_type_pb.d.ts +0 -54
- package/dist/pb/_generated/sagittarius.flow_type_pb.d.ts +0 -54
- package/dist/pb/_generated/sagittarius.function_pb.client.d.ts +0 -31
- package/dist/pb/_generated/sagittarius.function_pb.d.ts +0 -54
- package/dist/pb/_generated/sagittarius.runtime_function_pb.client.d.ts +0 -31
- package/dist/pb/_generated/sagittarius.runtime_function_pb.d.ts +0 -54
- package/dist/pb/_generated/shared.action_configuration_pb.d.ts +0 -120
- package/dist/shared.flow_pb-B3074C-y.js +0 -717
- package/dist/shared.flow_pb-CWFj5vbi.cjs +0 -1
- package/dist/shared.runtime_usage_pb-D4aGN4uQ.cjs +0 -2
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
|
|
2
|
+
import { Value } from './shared.struct_pb';
|
|
3
|
+
import { DefinitionDataType } from './shared.data_type_pb';
|
|
4
|
+
import { RuntimeFunctionDefinition } from './shared.runtime_function_pb';
|
|
5
|
+
import { FunctionDefinition } from './shared.function_pb';
|
|
6
|
+
import { RuntimeFlowType } from './shared.runtime_flow_type_pb';
|
|
7
|
+
import { FlowType } from './shared.flow_type_pb';
|
|
8
|
+
import { Translation } from './shared.translation_pb';
|
|
9
|
+
/**
|
|
10
|
+
* @generated from protobuf message shared.Module
|
|
11
|
+
*/
|
|
12
|
+
export interface Module {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from protobuf field: string identifier = 1
|
|
15
|
+
*/
|
|
16
|
+
identifier: string;
|
|
17
|
+
/**
|
|
18
|
+
* @generated from protobuf field: repeated shared.Translation name = 2
|
|
19
|
+
*/
|
|
20
|
+
name: Translation[];
|
|
21
|
+
/**
|
|
22
|
+
* @generated from protobuf field: repeated shared.Translation description = 3
|
|
23
|
+
*/
|
|
24
|
+
description: Translation[];
|
|
25
|
+
/**
|
|
26
|
+
* @generated from protobuf field: string documentation = 4
|
|
27
|
+
*/
|
|
28
|
+
documentation: string;
|
|
29
|
+
/**
|
|
30
|
+
* @generated from protobuf field: string author = 5
|
|
31
|
+
*/
|
|
32
|
+
author: string;
|
|
33
|
+
/**
|
|
34
|
+
* @generated from protobuf field: string icon = 6
|
|
35
|
+
*/
|
|
36
|
+
icon: string;
|
|
37
|
+
/**
|
|
38
|
+
* @generated from protobuf field: string version = 7
|
|
39
|
+
*/
|
|
40
|
+
version: string;
|
|
41
|
+
/**
|
|
42
|
+
* @generated from protobuf field: repeated shared.FlowType flow_types = 9
|
|
43
|
+
*/
|
|
44
|
+
flowTypes: FlowType[];
|
|
45
|
+
/**
|
|
46
|
+
* @generated from protobuf field: repeated shared.RuntimeFlowType runtime_flow_types = 10
|
|
47
|
+
*/
|
|
48
|
+
runtimeFlowTypes: RuntimeFlowType[];
|
|
49
|
+
/**
|
|
50
|
+
* @generated from protobuf field: repeated shared.FunctionDefinition function_definitions = 11
|
|
51
|
+
*/
|
|
52
|
+
functionDefinitions: FunctionDefinition[];
|
|
53
|
+
/**
|
|
54
|
+
* @generated from protobuf field: repeated shared.RuntimeFunctionDefinition runtime_function_definitions = 12
|
|
55
|
+
*/
|
|
56
|
+
runtimeFunctionDefinitions: RuntimeFunctionDefinition[];
|
|
57
|
+
/**
|
|
58
|
+
* @generated from protobuf field: repeated shared.DefinitionDataType definition_data_types = 13
|
|
59
|
+
*/
|
|
60
|
+
definitionDataTypes: DefinitionDataType[];
|
|
61
|
+
/**
|
|
62
|
+
* @generated from protobuf field: repeated shared.ModuleConfigurationDefinition configurations = 14
|
|
63
|
+
*/
|
|
64
|
+
configurations: ModuleConfigurationDefinition[];
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* send by sagittarius to inform a module of the real config set by the user
|
|
68
|
+
*
|
|
69
|
+
* @generated from protobuf message shared.ModuleConfiguration
|
|
70
|
+
*/
|
|
71
|
+
export interface ModuleConfiguration {
|
|
72
|
+
/**
|
|
73
|
+
* @generated from protobuf field: string identifier = 1
|
|
74
|
+
*/
|
|
75
|
+
identifier: string;
|
|
76
|
+
/**
|
|
77
|
+
* @generated from protobuf field: shared.Value value = 2
|
|
78
|
+
*/
|
|
79
|
+
value?: Value;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* @generated from protobuf message shared.ModuleProjectConfigurations
|
|
83
|
+
*/
|
|
84
|
+
export interface ModuleProjectConfigurations {
|
|
85
|
+
/**
|
|
86
|
+
* @generated from protobuf field: int64 project_id = 1
|
|
87
|
+
*/
|
|
88
|
+
projectId: bigint;
|
|
89
|
+
/**
|
|
90
|
+
* @generated from protobuf field: repeated shared.ModuleConfiguration module_configurations = 2
|
|
91
|
+
*/
|
|
92
|
+
moduleConfigurations: ModuleConfiguration[];
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* @generated from protobuf message shared.ModuleConfigurations
|
|
96
|
+
*/
|
|
97
|
+
export interface ModuleConfigurations {
|
|
98
|
+
/**
|
|
99
|
+
* @generated from protobuf field: string module_identifier = 1
|
|
100
|
+
*/
|
|
101
|
+
moduleIdentifier: string;
|
|
102
|
+
/**
|
|
103
|
+
* @generated from protobuf field: repeated shared.ModuleProjectConfigurations module_configurations = 2
|
|
104
|
+
*/
|
|
105
|
+
moduleConfigurations: ModuleProjectConfigurations[];
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Message sent by a module to define a configuration
|
|
109
|
+
*
|
|
110
|
+
* @generated from protobuf message shared.ModuleConfigurationDefinition
|
|
111
|
+
*/
|
|
112
|
+
export interface ModuleConfigurationDefinition {
|
|
113
|
+
/**
|
|
114
|
+
* @generated from protobuf field: string identifier = 1
|
|
115
|
+
*/
|
|
116
|
+
identifier: string;
|
|
117
|
+
/**
|
|
118
|
+
* @generated from protobuf field: repeated shared.Translation name = 2
|
|
119
|
+
*/
|
|
120
|
+
name: Translation[];
|
|
121
|
+
/**
|
|
122
|
+
* @generated from protobuf field: repeated shared.Translation description = 3
|
|
123
|
+
*/
|
|
124
|
+
description: Translation[];
|
|
125
|
+
/**
|
|
126
|
+
* @generated from protobuf field: string type = 4
|
|
127
|
+
*/
|
|
128
|
+
type: string;
|
|
129
|
+
/**
|
|
130
|
+
* @generated from protobuf field: repeated string linked_data_type_identifiers = 5
|
|
131
|
+
*/
|
|
132
|
+
linkedDataTypeIdentifiers: string[];
|
|
133
|
+
/**
|
|
134
|
+
* @generated from protobuf field: optional shared.Value default_value = 6
|
|
135
|
+
*/
|
|
136
|
+
defaultValue?: Value;
|
|
137
|
+
/**
|
|
138
|
+
* @generated from protobuf field: optional bool optional = 7
|
|
139
|
+
*/
|
|
140
|
+
optional?: boolean;
|
|
141
|
+
/**
|
|
142
|
+
* @generated from protobuf field: optional bool hidden = 8
|
|
143
|
+
*/
|
|
144
|
+
hidden?: boolean;
|
|
145
|
+
}
|
|
146
|
+
declare class Module$Type extends MessageType<Module> {
|
|
147
|
+
constructor();
|
|
148
|
+
create(value?: PartialMessage<Module>): Module;
|
|
149
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Module): Module;
|
|
150
|
+
internalBinaryWrite(message: Module, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* @generated MessageType for protobuf message shared.Module
|
|
154
|
+
*/
|
|
155
|
+
export declare const Module: Module$Type;
|
|
156
|
+
declare class ModuleConfiguration$Type extends MessageType<ModuleConfiguration> {
|
|
157
|
+
constructor();
|
|
158
|
+
create(value?: PartialMessage<ModuleConfiguration>): ModuleConfiguration;
|
|
159
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ModuleConfiguration): ModuleConfiguration;
|
|
160
|
+
internalBinaryWrite(message: ModuleConfiguration, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* @generated MessageType for protobuf message shared.ModuleConfiguration
|
|
164
|
+
*/
|
|
165
|
+
export declare const ModuleConfiguration: ModuleConfiguration$Type;
|
|
166
|
+
declare class ModuleProjectConfigurations$Type extends MessageType<ModuleProjectConfigurations> {
|
|
167
|
+
constructor();
|
|
168
|
+
create(value?: PartialMessage<ModuleProjectConfigurations>): ModuleProjectConfigurations;
|
|
169
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ModuleProjectConfigurations): ModuleProjectConfigurations;
|
|
170
|
+
internalBinaryWrite(message: ModuleProjectConfigurations, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* @generated MessageType for protobuf message shared.ModuleProjectConfigurations
|
|
174
|
+
*/
|
|
175
|
+
export declare const ModuleProjectConfigurations: ModuleProjectConfigurations$Type;
|
|
176
|
+
declare class ModuleConfigurations$Type extends MessageType<ModuleConfigurations> {
|
|
177
|
+
constructor();
|
|
178
|
+
create(value?: PartialMessage<ModuleConfigurations>): ModuleConfigurations;
|
|
179
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ModuleConfigurations): ModuleConfigurations;
|
|
180
|
+
internalBinaryWrite(message: ModuleConfigurations, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* @generated MessageType for protobuf message shared.ModuleConfigurations
|
|
184
|
+
*/
|
|
185
|
+
export declare const ModuleConfigurations: ModuleConfigurations$Type;
|
|
186
|
+
declare class ModuleConfigurationDefinition$Type extends MessageType<ModuleConfigurationDefinition> {
|
|
187
|
+
constructor();
|
|
188
|
+
create(value?: PartialMessage<ModuleConfigurationDefinition>): ModuleConfigurationDefinition;
|
|
189
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ModuleConfigurationDefinition): ModuleConfigurationDefinition;
|
|
190
|
+
internalBinaryWrite(message: ModuleConfigurationDefinition, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* @generated MessageType for protobuf message shared.ModuleConfigurationDefinition
|
|
194
|
+
*/
|
|
195
|
+
export declare const ModuleConfigurationDefinition: ModuleConfigurationDefinition$Type;
|
|
196
|
+
export {};
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
|
|
2
|
+
import { Value } from './shared.struct_pb';
|
|
3
|
+
import { Translation } from './shared.translation_pb';
|
|
4
|
+
/**
|
|
5
|
+
* @generated from protobuf message shared.RuntimeFlowType
|
|
6
|
+
*/
|
|
7
|
+
export interface RuntimeFlowType {
|
|
8
|
+
/**
|
|
9
|
+
* @generated from protobuf field: string identifier = 1
|
|
10
|
+
*/
|
|
11
|
+
identifier: string;
|
|
12
|
+
/**
|
|
13
|
+
* @generated from protobuf field: repeated shared.RuntimeFlowTypeSetting runtime_settings = 2
|
|
14
|
+
*/
|
|
15
|
+
runtimeSettings: RuntimeFlowTypeSetting[];
|
|
16
|
+
/**
|
|
17
|
+
* @generated from protobuf field: bool editable = 3
|
|
18
|
+
*/
|
|
19
|
+
editable: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from protobuf field: repeated shared.Translation name = 4
|
|
22
|
+
*/
|
|
23
|
+
name: Translation[];
|
|
24
|
+
/**
|
|
25
|
+
* @generated from protobuf field: repeated shared.Translation description = 5
|
|
26
|
+
*/
|
|
27
|
+
description: Translation[];
|
|
28
|
+
/**
|
|
29
|
+
* @generated from protobuf field: repeated shared.Translation documentation = 6
|
|
30
|
+
*/
|
|
31
|
+
documentation: Translation[];
|
|
32
|
+
/**
|
|
33
|
+
* @generated from protobuf field: repeated shared.Translation display_message = 7
|
|
34
|
+
*/
|
|
35
|
+
displayMessage: Translation[];
|
|
36
|
+
/**
|
|
37
|
+
* @generated from protobuf field: repeated shared.Translation alias = 8
|
|
38
|
+
*/
|
|
39
|
+
alias: Translation[];
|
|
40
|
+
/**
|
|
41
|
+
* Version of the flow type
|
|
42
|
+
* Format: "major.minor.patch", e.g. "1.2.3"
|
|
43
|
+
*
|
|
44
|
+
* @generated from protobuf field: string version = 9
|
|
45
|
+
*/
|
|
46
|
+
version: string;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from protobuf field: string display_icon = 10
|
|
49
|
+
*/
|
|
50
|
+
displayIcon: string;
|
|
51
|
+
/**
|
|
52
|
+
* Identifier of the service that defines this definition
|
|
53
|
+
*
|
|
54
|
+
* @generated from protobuf field: optional string definition_source = 11
|
|
55
|
+
*/
|
|
56
|
+
definitionSource?: string;
|
|
57
|
+
/**
|
|
58
|
+
* @generated from protobuf field: repeated string linked_data_type_identifiers = 12
|
|
59
|
+
*/
|
|
60
|
+
linkedDataTypeIdentifiers: string[];
|
|
61
|
+
/**
|
|
62
|
+
* @generated from protobuf field: string signature = 13
|
|
63
|
+
*/
|
|
64
|
+
signature: string;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* @generated from protobuf message shared.RuntimeFlowTypeSetting
|
|
68
|
+
*/
|
|
69
|
+
export interface RuntimeFlowTypeSetting {
|
|
70
|
+
/**
|
|
71
|
+
* @generated from protobuf field: string identifier = 1
|
|
72
|
+
*/
|
|
73
|
+
identifier: string;
|
|
74
|
+
/**
|
|
75
|
+
* @generated from protobuf field: shared.RuntimeFlowTypeSetting.UniquenessScope unique = 2
|
|
76
|
+
*/
|
|
77
|
+
unique: RuntimeFlowTypeSetting_UniquenessScope;
|
|
78
|
+
/**
|
|
79
|
+
* @generated from protobuf field: optional shared.Value default_value = 3
|
|
80
|
+
*/
|
|
81
|
+
defaultValue?: Value;
|
|
82
|
+
/**
|
|
83
|
+
* @generated from protobuf field: repeated shared.Translation name = 4
|
|
84
|
+
*/
|
|
85
|
+
name: Translation[];
|
|
86
|
+
/**
|
|
87
|
+
* @generated from protobuf field: repeated shared.Translation description = 5
|
|
88
|
+
*/
|
|
89
|
+
description: Translation[];
|
|
90
|
+
/**
|
|
91
|
+
* @generated from protobuf field: optional bool optional = 6
|
|
92
|
+
*/
|
|
93
|
+
optional?: boolean;
|
|
94
|
+
/**
|
|
95
|
+
* @generated from protobuf field: optional bool hidden = 7
|
|
96
|
+
*/
|
|
97
|
+
hidden?: boolean;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @generated from protobuf enum shared.RuntimeFlowTypeSetting.UniquenessScope
|
|
101
|
+
*/
|
|
102
|
+
export declare enum RuntimeFlowTypeSetting_UniquenessScope {
|
|
103
|
+
/**
|
|
104
|
+
* @generated from protobuf enum value: UNKNOWN = 0;
|
|
105
|
+
*/
|
|
106
|
+
UNKNOWN = 0,
|
|
107
|
+
/**
|
|
108
|
+
* @generated from protobuf enum value: NONE = 1;
|
|
109
|
+
*/
|
|
110
|
+
NONE = 1,
|
|
111
|
+
/**
|
|
112
|
+
* @generated from protobuf enum value: PROJECT = 2;
|
|
113
|
+
*/
|
|
114
|
+
PROJECT = 2
|
|
115
|
+
}
|
|
116
|
+
declare class RuntimeFlowType$Type extends MessageType<RuntimeFlowType> {
|
|
117
|
+
constructor();
|
|
118
|
+
create(value?: PartialMessage<RuntimeFlowType>): RuntimeFlowType;
|
|
119
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RuntimeFlowType): RuntimeFlowType;
|
|
120
|
+
internalBinaryWrite(message: RuntimeFlowType, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* @generated MessageType for protobuf message shared.RuntimeFlowType
|
|
124
|
+
*/
|
|
125
|
+
export declare const RuntimeFlowType: RuntimeFlowType$Type;
|
|
126
|
+
declare class RuntimeFlowTypeSetting$Type extends MessageType<RuntimeFlowTypeSetting> {
|
|
127
|
+
constructor();
|
|
128
|
+
create(value?: PartialMessage<RuntimeFlowTypeSetting>): RuntimeFlowTypeSetting;
|
|
129
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RuntimeFlowTypeSetting): RuntimeFlowTypeSetting;
|
|
130
|
+
internalBinaryWrite(message: RuntimeFlowTypeSetting, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* @generated MessageType for protobuf message shared.RuntimeFlowTypeSetting
|
|
134
|
+
*/
|
|
135
|
+
export declare const RuntimeFlowTypeSetting: RuntimeFlowTypeSetting$Type;
|
|
136
|
+
export {};
|
|
@@ -70,6 +70,10 @@ export interface RuntimeFunctionDefinition {
|
|
|
70
70
|
* @generated from protobuf field: string definition_source = 14
|
|
71
71
|
*/
|
|
72
72
|
definitionSource: string;
|
|
73
|
+
/**
|
|
74
|
+
* @generated from protobuf field: optional string design = 15
|
|
75
|
+
*/
|
|
76
|
+
design?: string;
|
|
73
77
|
}
|
|
74
78
|
/**
|
|
75
79
|
* Definition of a parameter used for execution
|
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
|
|
2
|
-
import { Translation } from './shared.translation_pb';
|
|
3
2
|
/**
|
|
4
|
-
* @generated from protobuf message shared.
|
|
3
|
+
* @generated from protobuf message shared.AdapterStatusConfiguration
|
|
5
4
|
*/
|
|
6
|
-
export interface
|
|
5
|
+
export interface AdapterStatusConfiguration {
|
|
6
|
+
/**
|
|
7
|
+
* List of flow type identifiers for this specific AdapterConfiguration
|
|
8
|
+
*
|
|
9
|
+
* @generated from protobuf field: repeated string flow_type_identifiers = 1
|
|
10
|
+
*/
|
|
11
|
+
flowTypeIdentifiers: string[];
|
|
7
12
|
/**
|
|
8
13
|
* @generated from protobuf oneof: data
|
|
9
14
|
*/
|
|
10
15
|
data: {
|
|
11
16
|
oneofKind: "endpoint";
|
|
12
17
|
/**
|
|
13
|
-
* @generated from protobuf field: string endpoint =
|
|
18
|
+
* @generated from protobuf field: string endpoint = 2
|
|
14
19
|
*/
|
|
15
20
|
endpoint: string;
|
|
16
21
|
} | {
|
|
@@ -18,17 +23,27 @@ export interface AdapterConfiguration {
|
|
|
18
23
|
};
|
|
19
24
|
}
|
|
20
25
|
/**
|
|
21
|
-
* @generated from protobuf message shared.
|
|
26
|
+
* @generated from protobuf message shared.ActionStatusConfiguration
|
|
22
27
|
*/
|
|
23
|
-
export interface
|
|
28
|
+
export interface ActionStatusConfiguration {
|
|
24
29
|
/**
|
|
25
|
-
*
|
|
30
|
+
* List of flow type identifiers for this specific ActionStatusConfiguration
|
|
31
|
+
*
|
|
32
|
+
* @generated from protobuf field: repeated string flow_type_identifiers = 1
|
|
26
33
|
*/
|
|
27
|
-
|
|
34
|
+
flowTypeIdentifiers: string[];
|
|
28
35
|
/**
|
|
29
|
-
* @generated from protobuf
|
|
36
|
+
* @generated from protobuf oneof: data
|
|
30
37
|
*/
|
|
31
|
-
|
|
38
|
+
data: {
|
|
39
|
+
oneofKind: "endpoint";
|
|
40
|
+
/**
|
|
41
|
+
* @generated from protobuf field: string endpoint = 2
|
|
42
|
+
*/
|
|
43
|
+
endpoint: string;
|
|
44
|
+
} | {
|
|
45
|
+
oneofKind: undefined;
|
|
46
|
+
};
|
|
32
47
|
}
|
|
33
48
|
/**
|
|
34
49
|
* @generated from protobuf message shared.AdapterRuntimeStatus
|
|
@@ -47,13 +62,9 @@ export interface AdapterRuntimeStatus {
|
|
|
47
62
|
*/
|
|
48
63
|
identifier: string;
|
|
49
64
|
/**
|
|
50
|
-
* @generated from protobuf field: repeated shared.
|
|
65
|
+
* @generated from protobuf field: repeated shared.AdapterStatusConfiguration configurations = 4
|
|
51
66
|
*/
|
|
52
|
-
|
|
53
|
-
/**
|
|
54
|
-
* @generated from protobuf field: repeated shared.AdapterConfiguration configurations = 5
|
|
55
|
-
*/
|
|
56
|
-
configurations: AdapterConfiguration[];
|
|
67
|
+
configurations: AdapterStatusConfiguration[];
|
|
57
68
|
}
|
|
58
69
|
/**
|
|
59
70
|
* @generated from protobuf enum shared.AdapterRuntimeStatus.Status
|
|
@@ -96,10 +107,6 @@ export interface ExecutionRuntimeStatus {
|
|
|
96
107
|
* @generated from protobuf field: string identifier = 3
|
|
97
108
|
*/
|
|
98
109
|
identifier: string;
|
|
99
|
-
/**
|
|
100
|
-
* @generated from protobuf field: repeated shared.RuntimeFeature features = 4
|
|
101
|
-
*/
|
|
102
|
-
features: RuntimeFeature[];
|
|
103
110
|
}
|
|
104
111
|
/**
|
|
105
112
|
* @generated from protobuf enum shared.ExecutionRuntimeStatus.Status
|
|
@@ -126,26 +133,72 @@ export declare enum ExecutionRuntimeStatus_Status {
|
|
|
126
133
|
*/
|
|
127
134
|
STOPPED = 4
|
|
128
135
|
}
|
|
129
|
-
|
|
136
|
+
/**
|
|
137
|
+
* @generated from protobuf message shared.ActionStatus
|
|
138
|
+
*/
|
|
139
|
+
export interface ActionStatus {
|
|
140
|
+
/**
|
|
141
|
+
* @generated from protobuf field: shared.ActionStatus.Status status = 1
|
|
142
|
+
*/
|
|
143
|
+
status: ActionStatus_Status;
|
|
144
|
+
/**
|
|
145
|
+
* @generated from protobuf field: int64 timestamp = 2
|
|
146
|
+
*/
|
|
147
|
+
timestamp: bigint;
|
|
148
|
+
/**
|
|
149
|
+
* @generated from protobuf field: string identifier = 3
|
|
150
|
+
*/
|
|
151
|
+
identifier: string;
|
|
152
|
+
/**
|
|
153
|
+
* @generated from protobuf field: repeated shared.ActionStatusConfiguration configurations = 4
|
|
154
|
+
*/
|
|
155
|
+
configurations: ActionStatusConfiguration[];
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* @generated from protobuf enum shared.ActionStatus.Status
|
|
159
|
+
*/
|
|
160
|
+
export declare enum ActionStatus_Status {
|
|
161
|
+
/**
|
|
162
|
+
* @generated from protobuf enum value: UNKNOWN = 0;
|
|
163
|
+
*/
|
|
164
|
+
UNKNOWN = 0,
|
|
165
|
+
/**
|
|
166
|
+
* @generated from protobuf enum value: NOT_RESPONDING = 1;
|
|
167
|
+
*/
|
|
168
|
+
NOT_RESPONDING = 1,
|
|
169
|
+
/**
|
|
170
|
+
* @generated from protobuf enum value: NOT_READY = 2;
|
|
171
|
+
*/
|
|
172
|
+
NOT_READY = 2,
|
|
173
|
+
/**
|
|
174
|
+
* @generated from protobuf enum value: RUNNING = 3;
|
|
175
|
+
*/
|
|
176
|
+
RUNNING = 3,
|
|
177
|
+
/**
|
|
178
|
+
* @generated from protobuf enum value: STOPPED = 4;
|
|
179
|
+
*/
|
|
180
|
+
STOPPED = 4
|
|
181
|
+
}
|
|
182
|
+
declare class AdapterStatusConfiguration$Type extends MessageType<AdapterStatusConfiguration> {
|
|
130
183
|
constructor();
|
|
131
|
-
create(value?: PartialMessage<
|
|
132
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?:
|
|
133
|
-
internalBinaryWrite(message:
|
|
184
|
+
create(value?: PartialMessage<AdapterStatusConfiguration>): AdapterStatusConfiguration;
|
|
185
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdapterStatusConfiguration): AdapterStatusConfiguration;
|
|
186
|
+
internalBinaryWrite(message: AdapterStatusConfiguration, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
134
187
|
}
|
|
135
188
|
/**
|
|
136
|
-
* @generated MessageType for protobuf message shared.
|
|
189
|
+
* @generated MessageType for protobuf message shared.AdapterStatusConfiguration
|
|
137
190
|
*/
|
|
138
|
-
export declare const
|
|
139
|
-
declare class
|
|
191
|
+
export declare const AdapterStatusConfiguration: AdapterStatusConfiguration$Type;
|
|
192
|
+
declare class ActionStatusConfiguration$Type extends MessageType<ActionStatusConfiguration> {
|
|
140
193
|
constructor();
|
|
141
|
-
create(value?: PartialMessage<
|
|
142
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?:
|
|
143
|
-
internalBinaryWrite(message:
|
|
194
|
+
create(value?: PartialMessage<ActionStatusConfiguration>): ActionStatusConfiguration;
|
|
195
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionStatusConfiguration): ActionStatusConfiguration;
|
|
196
|
+
internalBinaryWrite(message: ActionStatusConfiguration, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
144
197
|
}
|
|
145
198
|
/**
|
|
146
|
-
* @generated MessageType for protobuf message shared.
|
|
199
|
+
* @generated MessageType for protobuf message shared.ActionStatusConfiguration
|
|
147
200
|
*/
|
|
148
|
-
export declare const
|
|
201
|
+
export declare const ActionStatusConfiguration: ActionStatusConfiguration$Type;
|
|
149
202
|
declare class AdapterRuntimeStatus$Type extends MessageType<AdapterRuntimeStatus> {
|
|
150
203
|
constructor();
|
|
151
204
|
create(value?: PartialMessage<AdapterRuntimeStatus>): AdapterRuntimeStatus;
|
|
@@ -166,4 +219,14 @@ declare class ExecutionRuntimeStatus$Type extends MessageType<ExecutionRuntimeSt
|
|
|
166
219
|
* @generated MessageType for protobuf message shared.ExecutionRuntimeStatus
|
|
167
220
|
*/
|
|
168
221
|
export declare const ExecutionRuntimeStatus: ExecutionRuntimeStatus$Type;
|
|
222
|
+
declare class ActionStatus$Type extends MessageType<ActionStatus> {
|
|
223
|
+
constructor();
|
|
224
|
+
create(value?: PartialMessage<ActionStatus>): ActionStatus;
|
|
225
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionStatus): ActionStatus;
|
|
226
|
+
internalBinaryWrite(message: ActionStatus, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* @generated MessageType for protobuf message shared.ActionStatus
|
|
230
|
+
*/
|
|
231
|
+
export declare const ActionStatus: ActionStatus$Type;
|
|
169
232
|
export {};
|
package/dist/pb/aquila.d.ts
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
export * from './_generated/aquila.action_pb.client.js';
|
|
2
2
|
export * from './_generated/aquila.action_pb.js';
|
|
3
|
-
export * from './_generated/aquila.
|
|
4
|
-
export * from './_generated/aquila.
|
|
5
|
-
export * from './_generated/aquila.flow_type_pb.client.js';
|
|
6
|
-
export * from './_generated/aquila.flow_type_pb.js';
|
|
7
|
-
export * from './_generated/aquila.function_pb.client.js';
|
|
8
|
-
export * from './_generated/aquila.function_pb.js';
|
|
9
|
-
export * from './_generated/aquila.runtime_function_pb.client.js';
|
|
10
|
-
export * from './_generated/aquila.runtime_function_pb.js';
|
|
3
|
+
export * from './_generated/aquila.module_pb.client.js';
|
|
4
|
+
export * from './_generated/aquila.module_pb.js';
|
|
11
5
|
export * from './_generated/aquila.runtime_status_pb.client.js';
|
|
12
6
|
export * from './_generated/aquila.runtime_status_pb.js';
|
|
13
7
|
export * from './_generated/aquila.runtime_usage_pb.client.js';
|
package/dist/pb/sagittarius.d.ts
CHANGED
|
@@ -1,17 +1,9 @@
|
|
|
1
|
-
export * from './_generated/sagittarius.action_configuration_pb.client.js';
|
|
2
|
-
export * from './_generated/sagittarius.action_configuration_pb.js';
|
|
3
|
-
export * from './_generated/sagittarius.data_type_pb.client.js';
|
|
4
|
-
export * from './_generated/sagittarius.data_type_pb.js';
|
|
5
1
|
export * from './_generated/sagittarius.flow_pb.client.js';
|
|
6
2
|
export * from './_generated/sagittarius.flow_pb.js';
|
|
7
|
-
export * from './_generated/sagittarius.
|
|
8
|
-
export * from './_generated/sagittarius.
|
|
9
|
-
export * from './_generated/sagittarius.function_pb.client.js';
|
|
10
|
-
export * from './_generated/sagittarius.function_pb.js';
|
|
3
|
+
export * from './_generated/sagittarius.module_pb.client.js';
|
|
4
|
+
export * from './_generated/sagittarius.module_pb.js';
|
|
11
5
|
export * from './_generated/sagittarius.ping_pb.client.js';
|
|
12
6
|
export * from './_generated/sagittarius.ping_pb.js';
|
|
13
|
-
export * from './_generated/sagittarius.runtime_function_pb.client.js';
|
|
14
|
-
export * from './_generated/sagittarius.runtime_function_pb.js';
|
|
15
7
|
export * from './_generated/sagittarius.runtime_status_pb.client.js';
|
|
16
8
|
export * from './_generated/sagittarius.runtime_status_pb.js';
|
|
17
9
|
export * from './_generated/sagittarius.runtime_usage_pb.client.js';
|
package/dist/pb/shared.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
export * from './_generated/shared.action_configuration_pb.js';
|
|
2
1
|
export * from './_generated/shared.data_type_pb.js';
|
|
3
|
-
export * from './_generated/shared.
|
|
2
|
+
export * from './_generated/shared.errors_pb.js';
|
|
3
|
+
export * from './_generated/shared.execution_result_pb.js';
|
|
4
4
|
export * from './_generated/shared.flow_pb.js';
|
|
5
|
+
export * from './_generated/shared.flow_type_pb.js';
|
|
5
6
|
export * from './_generated/shared.function_pb.js';
|
|
7
|
+
export * from './_generated/shared.module_pb.js';
|
|
8
|
+
export * from './_generated/shared.runtime_flow_type_pb.js';
|
|
6
9
|
export * from './_generated/shared.runtime_function_pb.js';
|
|
7
10
|
export * from './_generated/shared.runtime_status_pb.js';
|
|
8
11
|
export * from './_generated/shared.runtime_usage_pb.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require(`./shared.runtime_usage_pb-
|
|
1
|
+
const e=require(`./shared.runtime_usage_pb-6pp995qK.cjs`);function t(t,n){let r=t;return r.service=n,r.localName=r.localName??e.K(r.name),r.serverStreaming=!!r.serverStreaming,r.clientStreaming=!!r.clientStreaming,r.options=r.options??{},r.idempotency=r.idempotency??void 0,r}var n=class{constructor(e,n,r){this.typeName=e,this.methods=n.map(e=>t(e,this)),this.options=r??{}}};function r(t,n,r,i,a){if(t==`unary`){let e=(e,t,r)=>n.unary(e,t,r);for(let t of(i.interceptors??[]).filter(e=>e.interceptUnary).reverse()){let n=e;e=(e,r,i)=>t.interceptUnary(n,e,r,i)}return e(r,a,i)}if(t==`serverStreaming`){let e=(e,t,r)=>n.serverStreaming(e,t,r);for(let t of(i.interceptors??[]).filter(e=>e.interceptServerStreaming).reverse()){let n=e;e=(e,r,i)=>t.interceptServerStreaming(n,e,r,i)}return e(r,a,i)}if(t==`clientStreaming`){let e=(e,t)=>n.clientStreaming(e,t);for(let t of(i.interceptors??[]).filter(e=>e.interceptClientStreaming).reverse()){let n=e;e=(e,r)=>t.interceptClientStreaming(n,e,r)}return e(r,i)}if(t==`duplex`){let e=(e,t)=>n.duplex(e,t);for(let t of(i.interceptors??[]).filter(e=>e.interceptDuplex).reverse()){let n=e;e=(e,r)=>t.interceptDuplex(n,e,r)}return e(r,i)}e.q(t)}Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return n}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return r}});
|