@code0-tech/tucana 0.0.61 → 0.0.62
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/helpers/helpers.d.ts +1 -0
- package/helpers/helpers.js +1 -17
- package/helpers/shared.struct_helper.d.ts +5 -0
- package/helpers/shared.struct_helper.js +1 -4
- package/helpers/shared.struct_helper.ts +11 -5
- package/package.json +6 -3
- package/pb/_generated/shared.flow_definition_pb.d.ts +9 -17
- package/pb/_generated/shared.runtime_status_pb.d.ts +22 -50
- package/pb/_generated/shared.struct_pb.d.ts +7 -16
- package/pb/aquila.d.ts +24 -0
- package/pb/aquila.js +24 -0
- package/pb/sagittarius.d.ts +36 -0
- package/pb/sagittarius.js +36 -0
- package/pb/shared.d.ts +18 -0
- package/pb/shared.js +18 -34
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./shared.struct_helper.js";
|
package/helpers/helpers.js
CHANGED
|
@@ -1,17 +1 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./shared.struct_helper.js"), exports);
|
|
1
|
+
export * from "./shared.struct_helper.js";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Value } from "../pb/shared";
|
|
2
|
+
type PlainValue = null | number | string | boolean | Array<PlainValue> | object;
|
|
3
|
+
declare function toAllowedValue(value: Value): PlainValue;
|
|
4
|
+
declare function constructValue(value: PlainValue): Value;
|
|
5
|
+
export { toAllowedValue, constructValue, PlainValue };
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.toAllowedValue = toAllowedValue;
|
|
4
|
-
exports.constructValue = constructValue;
|
|
5
1
|
function toAllowedValue(value) {
|
|
6
2
|
switch (value.kind.oneofKind) {
|
|
7
3
|
case "nullValue":
|
|
@@ -60,3 +56,4 @@ function constructValue(value) {
|
|
|
60
56
|
}
|
|
61
57
|
throw new Error(`Unsupported value type: ${typeof value}`);
|
|
62
58
|
}
|
|
59
|
+
export { toAllowedValue, constructValue };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {Value} from "../pb/shared";
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
type PlainValue = null | number | string | boolean | Array<PlainValue> | object;
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
function toAllowedValue(value: Value): PlainValue {
|
|
6
6
|
switch (value.kind.oneofKind) {
|
|
7
7
|
case "nullValue":
|
|
8
8
|
return null;
|
|
@@ -15,7 +15,7 @@ export function toAllowedValue(value: Value): PlainValue {
|
|
|
15
15
|
case "listValue":
|
|
16
16
|
return value.kind.listValue.values.map(toAllowedValue);
|
|
17
17
|
case "structValue":
|
|
18
|
-
const obj: {[key: string]: PlainValue} = {};
|
|
18
|
+
const obj: { [key: string]: PlainValue } = {};
|
|
19
19
|
for (const [k, v] of Object.entries(value.kind.structValue.fields)) {
|
|
20
20
|
obj[k] = toAllowedValue(v);
|
|
21
21
|
}
|
|
@@ -26,7 +26,7 @@ export function toAllowedValue(value: Value): PlainValue {
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
function constructValue(value: PlainValue): Value {
|
|
30
30
|
if (value === null) {
|
|
31
31
|
return {kind: {oneofKind: "nullValue", nullValue: 0}};
|
|
32
32
|
}
|
|
@@ -49,7 +49,7 @@ export function constructValue(value: PlainValue): Value {
|
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
51
|
if (typeof value === "object") {
|
|
52
|
-
const structFields: {[key: string]: Value} = {};
|
|
52
|
+
const structFields: { [key: string]: Value } = {};
|
|
53
53
|
for (const [k, v] of Object.entries(value)) {
|
|
54
54
|
structFields[k] = constructValue(v);
|
|
55
55
|
}
|
|
@@ -62,3 +62,9 @@ export function constructValue(value: PlainValue): Value {
|
|
|
62
62
|
}
|
|
63
63
|
throw new Error(`Unsupported value type: ${typeof value}`);
|
|
64
64
|
}
|
|
65
|
+
|
|
66
|
+
export {
|
|
67
|
+
toAllowedValue,
|
|
68
|
+
constructValue,
|
|
69
|
+
PlainValue
|
|
70
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code0-tech/tucana",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.62",
|
|
4
4
|
"description": "Code0 GRPC Protocol",
|
|
5
5
|
"homepage": "https://github.com/code0-tech/tucana#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -19,13 +19,16 @@
|
|
|
19
19
|
"generate:aquila": "protoc --ts_opt=add_pb_suffix --ts_opt=output_javascript --ts_opt=generate_dependencies --ts_out=pb/_generated --proto_path=../../proto/aquila --proto_path=../../proto/shared ../../proto/aquila/*.proto",
|
|
20
20
|
"generate:sagittarius": "protoc --ts_opt=add_pb_suffix --ts_opt=output_javascript --ts_opt=generate_dependencies --ts_out=pb/_generated --proto_path=../../proto/sagittarius --proto_path=../../proto/shared ../../proto/sagittarius/*.proto",
|
|
21
21
|
"generate:shared": "protoc --ts_opt=add_pb_suffix --ts_opt=output_javascript --ts_opt=generate_dependencies --ts_out=pb/_generated --proto_path=../../proto/shared ../../proto/shared/*.proto",
|
|
22
|
-
"generate": "npm run clean && npm run generate:shared && npm run generate:sagittarius && npm run generate:aquila && npm run generate:exports",
|
|
22
|
+
"generate": "npm run clean && npm run generate:shared && npm run generate:sagittarius && npm run generate:aquila && npm run generate:exports && npm run generate:replace-enums",
|
|
23
23
|
"generate:exports": "node scripts/generateExports.mjs",
|
|
24
|
+
"generate:replace-enums": "npx ts-node scripts/replace-enums.ts",
|
|
24
25
|
"clean": "rm -rf pb/_generated/*.js && rm -rf pb/_generated/*.ts && rm -rf helpers/*.js"
|
|
25
26
|
},
|
|
26
27
|
"devDependencies": {
|
|
27
28
|
"@protobuf-ts/plugin": "^2.11.1",
|
|
28
|
-
"protoc": "^34.0.0"
|
|
29
|
+
"protoc": "^34.0.0",
|
|
30
|
+
"ts-morph": "^27.0.2",
|
|
31
|
+
"ts-node": "^10.9.2"
|
|
29
32
|
},
|
|
30
33
|
"files": [
|
|
31
34
|
"pb",
|
|
@@ -108,23 +108,15 @@ export interface FlowTypeSetting {
|
|
|
108
108
|
*/
|
|
109
109
|
linkedDataTypeIdentifiers: string[];
|
|
110
110
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
* @generated from protobuf enum value: NONE = 1;
|
|
121
|
-
*/
|
|
122
|
-
NONE = 1,
|
|
123
|
-
/**
|
|
124
|
-
* @generated from protobuf enum value: PROJECT = 2;
|
|
125
|
-
*/
|
|
126
|
-
PROJECT = 2
|
|
127
|
-
}
|
|
111
|
+
|
|
112
|
+
export declare const FlowTypeSetting_UniquenessScope: {
|
|
113
|
+
readonly UNKNOWN: 0;
|
|
114
|
+
readonly NONE: 1;
|
|
115
|
+
readonly PROJECT: 2;
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
export type FlowTypeSetting_UniquenessScope = typeof FlowTypeSetting_UniquenessScope[keyof typeof FlowTypeSetting_UniquenessScope];
|
|
119
|
+
|
|
128
120
|
declare class FlowType$Type extends MessageType<FlowType> {
|
|
129
121
|
constructor();
|
|
130
122
|
create(value?: PartialMessage<FlowType>): FlowType;
|
|
@@ -63,31 +63,17 @@ export interface AdapterRuntimeStatus {
|
|
|
63
63
|
*/
|
|
64
64
|
configurations: AdapterConfiguration[];
|
|
65
65
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
NOT_RESPONDING = 1,
|
|
78
|
-
/**
|
|
79
|
-
* @generated from protobuf enum value: NOT_READY = 2;
|
|
80
|
-
*/
|
|
81
|
-
NOT_READY = 2,
|
|
82
|
-
/**
|
|
83
|
-
* @generated from protobuf enum value: RUNNING = 3;
|
|
84
|
-
*/
|
|
85
|
-
RUNNING = 3,
|
|
86
|
-
/**
|
|
87
|
-
* @generated from protobuf enum value: STOPPED = 4;
|
|
88
|
-
*/
|
|
89
|
-
STOPPED = 4
|
|
90
|
-
}
|
|
66
|
+
|
|
67
|
+
export declare const AdapterRuntimeStatus_Status: {
|
|
68
|
+
readonly UNKNOWN: 0;
|
|
69
|
+
readonly NOT_RESPONDING: 1;
|
|
70
|
+
readonly NOT_READY: 2;
|
|
71
|
+
readonly RUNNING: 3;
|
|
72
|
+
readonly STOPPED: 4;
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
export type AdapterRuntimeStatus_Status = typeof AdapterRuntimeStatus_Status[keyof typeof AdapterRuntimeStatus_Status];
|
|
76
|
+
|
|
91
77
|
/**
|
|
92
78
|
* @generated from protobuf message shared.ExecutionRuntimeStatus
|
|
93
79
|
*/
|
|
@@ -109,31 +95,17 @@ export interface ExecutionRuntimeStatus {
|
|
|
109
95
|
*/
|
|
110
96
|
features: RuntimeFeature[];
|
|
111
97
|
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
NOT_RESPONDING = 1,
|
|
124
|
-
/**
|
|
125
|
-
* @generated from protobuf enum value: NOT_READY = 2;
|
|
126
|
-
*/
|
|
127
|
-
NOT_READY = 2,
|
|
128
|
-
/**
|
|
129
|
-
* @generated from protobuf enum value: RUNNING = 3;
|
|
130
|
-
*/
|
|
131
|
-
RUNNING = 3,
|
|
132
|
-
/**
|
|
133
|
-
* @generated from protobuf enum value: STOPPED = 4;
|
|
134
|
-
*/
|
|
135
|
-
STOPPED = 4
|
|
136
|
-
}
|
|
98
|
+
|
|
99
|
+
export declare const ExecutionRuntimeStatus_Status: {
|
|
100
|
+
readonly UNKNOWN: 0;
|
|
101
|
+
readonly NOT_RESPONDING: 1;
|
|
102
|
+
readonly NOT_READY: 2;
|
|
103
|
+
readonly RUNNING: 3;
|
|
104
|
+
readonly STOPPED: 4;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
export type ExecutionRuntimeStatus_Status = typeof ExecutionRuntimeStatus_Status[keyof typeof ExecutionRuntimeStatus_Status];
|
|
108
|
+
|
|
137
109
|
declare class AdapterConfiguration$Type extends MessageType<AdapterConfiguration> {
|
|
138
110
|
constructor();
|
|
139
111
|
create(value?: PartialMessage<AdapterConfiguration>): AdapterConfiguration;
|
|
@@ -148,22 +148,13 @@ export interface ListValue {
|
|
|
148
148
|
*/
|
|
149
149
|
values: Value[];
|
|
150
150
|
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
*/
|
|
159
|
-
export declare enum NullValue {
|
|
160
|
-
/**
|
|
161
|
-
* Null value.
|
|
162
|
-
*
|
|
163
|
-
* @generated from protobuf enum value: NULL_VALUE = 0;
|
|
164
|
-
*/
|
|
165
|
-
NULL_VALUE = 0
|
|
166
|
-
}
|
|
151
|
+
|
|
152
|
+
export declare const NullValue: {
|
|
153
|
+
readonly NULL_VALUE: 0;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
export type NullValue = typeof NullValue[keyof typeof NullValue];
|
|
157
|
+
|
|
167
158
|
declare class Struct$Type extends MessageType<Struct> {
|
|
168
159
|
constructor();
|
|
169
160
|
create(value?: PartialMessage<Struct>): Struct;
|
package/pb/aquila.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from "./_generated/aquila.action_pb.client.d.js";
|
|
2
|
+
export * from "./_generated/aquila.action_pb.client.js";
|
|
3
|
+
export * from "./_generated/aquila.action_pb.d.js";
|
|
4
|
+
export * from "./_generated/aquila.action_pb.js";
|
|
5
|
+
export * from "./_generated/aquila.data_type_pb.client.d.js";
|
|
6
|
+
export * from "./_generated/aquila.data_type_pb.client.js";
|
|
7
|
+
export * from "./_generated/aquila.data_type_pb.d.js";
|
|
8
|
+
export * from "./_generated/aquila.data_type_pb.js";
|
|
9
|
+
export * from "./_generated/aquila.flow_type_pb.client.d.js";
|
|
10
|
+
export * from "./_generated/aquila.flow_type_pb.client.js";
|
|
11
|
+
export * from "./_generated/aquila.flow_type_pb.d.js";
|
|
12
|
+
export * from "./_generated/aquila.flow_type_pb.js";
|
|
13
|
+
export * from "./_generated/aquila.runtime_function_pb.client.d.js";
|
|
14
|
+
export * from "./_generated/aquila.runtime_function_pb.client.js";
|
|
15
|
+
export * from "./_generated/aquila.runtime_function_pb.d.js";
|
|
16
|
+
export * from "./_generated/aquila.runtime_function_pb.js";
|
|
17
|
+
export * from "./_generated/aquila.runtime_status_pb.client.d.js";
|
|
18
|
+
export * from "./_generated/aquila.runtime_status_pb.client.js";
|
|
19
|
+
export * from "./_generated/aquila.runtime_status_pb.d.js";
|
|
20
|
+
export * from "./_generated/aquila.runtime_status_pb.js";
|
|
21
|
+
export * from "./_generated/aquila.runtime_usage_pb.client.d.js";
|
|
22
|
+
export * from "./_generated/aquila.runtime_usage_pb.client.js";
|
|
23
|
+
export * from "./_generated/aquila.runtime_usage_pb.d.js";
|
|
24
|
+
export * from "./_generated/aquila.runtime_usage_pb.js";
|
package/pb/aquila.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from "./_generated/aquila.action_pb.client.d.js";
|
|
2
|
+
export * from "./_generated/aquila.action_pb.client.js";
|
|
3
|
+
export * from "./_generated/aquila.action_pb.d.js";
|
|
4
|
+
export * from "./_generated/aquila.action_pb.js";
|
|
5
|
+
export * from "./_generated/aquila.data_type_pb.client.d.js";
|
|
6
|
+
export * from "./_generated/aquila.data_type_pb.client.js";
|
|
7
|
+
export * from "./_generated/aquila.data_type_pb.d.js";
|
|
8
|
+
export * from "./_generated/aquila.data_type_pb.js";
|
|
9
|
+
export * from "./_generated/aquila.flow_type_pb.client.d.js";
|
|
10
|
+
export * from "./_generated/aquila.flow_type_pb.client.js";
|
|
11
|
+
export * from "./_generated/aquila.flow_type_pb.d.js";
|
|
12
|
+
export * from "./_generated/aquila.flow_type_pb.js";
|
|
13
|
+
export * from "./_generated/aquila.runtime_function_pb.client.d.js";
|
|
14
|
+
export * from "./_generated/aquila.runtime_function_pb.client.js";
|
|
15
|
+
export * from "./_generated/aquila.runtime_function_pb.d.js";
|
|
16
|
+
export * from "./_generated/aquila.runtime_function_pb.js";
|
|
17
|
+
export * from "./_generated/aquila.runtime_status_pb.client.d.js";
|
|
18
|
+
export * from "./_generated/aquila.runtime_status_pb.client.js";
|
|
19
|
+
export * from "./_generated/aquila.runtime_status_pb.d.js";
|
|
20
|
+
export * from "./_generated/aquila.runtime_status_pb.js";
|
|
21
|
+
export * from "./_generated/aquila.runtime_usage_pb.client.d.js";
|
|
22
|
+
export * from "./_generated/aquila.runtime_usage_pb.client.js";
|
|
23
|
+
export * from "./_generated/aquila.runtime_usage_pb.d.js";
|
|
24
|
+
export * from "./_generated/aquila.runtime_usage_pb.js";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export * from "./_generated/sagittarius.action_configuration_pb.client.d.js";
|
|
2
|
+
export * from "./_generated/sagittarius.action_configuration_pb.client.js";
|
|
3
|
+
export * from "./_generated/sagittarius.action_configuration_pb.d.js";
|
|
4
|
+
export * from "./_generated/sagittarius.action_configuration_pb.js";
|
|
5
|
+
export * from "./_generated/sagittarius.data_type_pb.client.d.js";
|
|
6
|
+
export * from "./_generated/sagittarius.data_type_pb.client.js";
|
|
7
|
+
export * from "./_generated/sagittarius.data_type_pb.d.js";
|
|
8
|
+
export * from "./_generated/sagittarius.data_type_pb.js";
|
|
9
|
+
export * from "./_generated/sagittarius.flow_pb.client.d.js";
|
|
10
|
+
export * from "./_generated/sagittarius.flow_pb.client.js";
|
|
11
|
+
export * from "./_generated/sagittarius.flow_pb.d.js";
|
|
12
|
+
export * from "./_generated/sagittarius.flow_pb.js";
|
|
13
|
+
export * from "./_generated/sagittarius.flow_type_pb.client.d.js";
|
|
14
|
+
export * from "./_generated/sagittarius.flow_type_pb.client.js";
|
|
15
|
+
export * from "./_generated/sagittarius.flow_type_pb.d.js";
|
|
16
|
+
export * from "./_generated/sagittarius.flow_type_pb.js";
|
|
17
|
+
export * from "./_generated/sagittarius.ping_pb.client.d.js";
|
|
18
|
+
export * from "./_generated/sagittarius.ping_pb.client.js";
|
|
19
|
+
export * from "./_generated/sagittarius.ping_pb.d.js";
|
|
20
|
+
export * from "./_generated/sagittarius.ping_pb.js";
|
|
21
|
+
export * from "./_generated/sagittarius.runtime_function_pb.client.d.js";
|
|
22
|
+
export * from "./_generated/sagittarius.runtime_function_pb.client.js";
|
|
23
|
+
export * from "./_generated/sagittarius.runtime_function_pb.d.js";
|
|
24
|
+
export * from "./_generated/sagittarius.runtime_function_pb.js";
|
|
25
|
+
export * from "./_generated/sagittarius.runtime_status_pb.client.d.js";
|
|
26
|
+
export * from "./_generated/sagittarius.runtime_status_pb.client.js";
|
|
27
|
+
export * from "./_generated/sagittarius.runtime_status_pb.d.js";
|
|
28
|
+
export * from "./_generated/sagittarius.runtime_status_pb.js";
|
|
29
|
+
export * from "./_generated/sagittarius.runtime_usage_pb.client.d.js";
|
|
30
|
+
export * from "./_generated/sagittarius.runtime_usage_pb.client.js";
|
|
31
|
+
export * from "./_generated/sagittarius.runtime_usage_pb.d.js";
|
|
32
|
+
export * from "./_generated/sagittarius.runtime_usage_pb.js";
|
|
33
|
+
export * from "./_generated/sagittarius.text_execution_pb.client.d.js";
|
|
34
|
+
export * from "./_generated/sagittarius.text_execution_pb.client.js";
|
|
35
|
+
export * from "./_generated/sagittarius.text_execution_pb.d.js";
|
|
36
|
+
export * from "./_generated/sagittarius.text_execution_pb.js";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export * from "./_generated/sagittarius.action_configuration_pb.client.d.js";
|
|
2
|
+
export * from "./_generated/sagittarius.action_configuration_pb.client.js";
|
|
3
|
+
export * from "./_generated/sagittarius.action_configuration_pb.d.js";
|
|
4
|
+
export * from "./_generated/sagittarius.action_configuration_pb.js";
|
|
5
|
+
export * from "./_generated/sagittarius.data_type_pb.client.d.js";
|
|
6
|
+
export * from "./_generated/sagittarius.data_type_pb.client.js";
|
|
7
|
+
export * from "./_generated/sagittarius.data_type_pb.d.js";
|
|
8
|
+
export * from "./_generated/sagittarius.data_type_pb.js";
|
|
9
|
+
export * from "./_generated/sagittarius.flow_pb.client.d.js";
|
|
10
|
+
export * from "./_generated/sagittarius.flow_pb.client.js";
|
|
11
|
+
export * from "./_generated/sagittarius.flow_pb.d.js";
|
|
12
|
+
export * from "./_generated/sagittarius.flow_pb.js";
|
|
13
|
+
export * from "./_generated/sagittarius.flow_type_pb.client.d.js";
|
|
14
|
+
export * from "./_generated/sagittarius.flow_type_pb.client.js";
|
|
15
|
+
export * from "./_generated/sagittarius.flow_type_pb.d.js";
|
|
16
|
+
export * from "./_generated/sagittarius.flow_type_pb.js";
|
|
17
|
+
export * from "./_generated/sagittarius.ping_pb.client.d.js";
|
|
18
|
+
export * from "./_generated/sagittarius.ping_pb.client.js";
|
|
19
|
+
export * from "./_generated/sagittarius.ping_pb.d.js";
|
|
20
|
+
export * from "./_generated/sagittarius.ping_pb.js";
|
|
21
|
+
export * from "./_generated/sagittarius.runtime_function_pb.client.d.js";
|
|
22
|
+
export * from "./_generated/sagittarius.runtime_function_pb.client.js";
|
|
23
|
+
export * from "./_generated/sagittarius.runtime_function_pb.d.js";
|
|
24
|
+
export * from "./_generated/sagittarius.runtime_function_pb.js";
|
|
25
|
+
export * from "./_generated/sagittarius.runtime_status_pb.client.d.js";
|
|
26
|
+
export * from "./_generated/sagittarius.runtime_status_pb.client.js";
|
|
27
|
+
export * from "./_generated/sagittarius.runtime_status_pb.d.js";
|
|
28
|
+
export * from "./_generated/sagittarius.runtime_status_pb.js";
|
|
29
|
+
export * from "./_generated/sagittarius.runtime_usage_pb.client.d.js";
|
|
30
|
+
export * from "./_generated/sagittarius.runtime_usage_pb.client.js";
|
|
31
|
+
export * from "./_generated/sagittarius.runtime_usage_pb.d.js";
|
|
32
|
+
export * from "./_generated/sagittarius.runtime_usage_pb.js";
|
|
33
|
+
export * from "./_generated/sagittarius.text_execution_pb.client.d.js";
|
|
34
|
+
export * from "./_generated/sagittarius.text_execution_pb.client.js";
|
|
35
|
+
export * from "./_generated/sagittarius.text_execution_pb.d.js";
|
|
36
|
+
export * from "./_generated/sagittarius.text_execution_pb.js";
|
package/pb/shared.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from "./_generated/shared.action_configuration_pb.d.js";
|
|
2
|
+
export * from "./_generated/shared.action_configuration_pb.js";
|
|
3
|
+
export * from "./_generated/shared.data_type_pb.d.js";
|
|
4
|
+
export * from "./_generated/shared.data_type_pb.js";
|
|
5
|
+
export * from "./_generated/shared.flow_definition_pb.d.js";
|
|
6
|
+
export * from "./_generated/shared.flow_definition_pb.js";
|
|
7
|
+
export * from "./_generated/shared.flow_pb.d.js";
|
|
8
|
+
export * from "./_generated/shared.flow_pb.js";
|
|
9
|
+
export * from "./_generated/shared.runtime_function_pb.d.js";
|
|
10
|
+
export * from "./_generated/shared.runtime_function_pb.js";
|
|
11
|
+
export * from "./_generated/shared.runtime_status_pb.d.js";
|
|
12
|
+
export * from "./_generated/shared.runtime_status_pb.js";
|
|
13
|
+
export * from "./_generated/shared.runtime_usage_pb.d.js";
|
|
14
|
+
export * from "./_generated/shared.runtime_usage_pb.js";
|
|
15
|
+
export * from "./_generated/shared.struct_pb.d.js";
|
|
16
|
+
export * from "./_generated/shared.struct_pb.js";
|
|
17
|
+
export * from "./_generated/shared.translation_pb.d.js";
|
|
18
|
+
export * from "./_generated/shared.translation_pb.js";
|
package/pb/shared.js
CHANGED
|
@@ -1,34 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
__exportStar(require("./_generated/shared.data_type_pb.d.js"), exports);
|
|
20
|
-
__exportStar(require("./_generated/shared.data_type_pb.js"), exports);
|
|
21
|
-
__exportStar(require("./_generated/shared.flow_definition_pb.d.js"), exports);
|
|
22
|
-
__exportStar(require("./_generated/shared.flow_definition_pb.js"), exports);
|
|
23
|
-
__exportStar(require("./_generated/shared.flow_pb.d.js"), exports);
|
|
24
|
-
__exportStar(require("./_generated/shared.flow_pb.js"), exports);
|
|
25
|
-
__exportStar(require("./_generated/shared.runtime_function_pb.d.js"), exports);
|
|
26
|
-
__exportStar(require("./_generated/shared.runtime_function_pb.js"), exports);
|
|
27
|
-
__exportStar(require("./_generated/shared.runtime_status_pb.d.js"), exports);
|
|
28
|
-
__exportStar(require("./_generated/shared.runtime_status_pb.js"), exports);
|
|
29
|
-
__exportStar(require("./_generated/shared.runtime_usage_pb.d.js"), exports);
|
|
30
|
-
__exportStar(require("./_generated/shared.runtime_usage_pb.js"), exports);
|
|
31
|
-
__exportStar(require("./_generated/shared.struct_pb.d.js"), exports);
|
|
32
|
-
__exportStar(require("./_generated/shared.struct_pb.js"), exports);
|
|
33
|
-
__exportStar(require("./_generated/shared.translation_pb.d.js"), exports);
|
|
34
|
-
__exportStar(require("./_generated/shared.translation_pb.js"), exports);
|
|
1
|
+
export * from "./_generated/shared.action_configuration_pb.d.js";
|
|
2
|
+
export * from "./_generated/shared.action_configuration_pb.js";
|
|
3
|
+
export * from "./_generated/shared.data_type_pb.d.js";
|
|
4
|
+
export * from "./_generated/shared.data_type_pb.js";
|
|
5
|
+
export * from "./_generated/shared.flow_definition_pb.d.js";
|
|
6
|
+
export * from "./_generated/shared.flow_definition_pb.js";
|
|
7
|
+
export * from "./_generated/shared.flow_pb.d.js";
|
|
8
|
+
export * from "./_generated/shared.flow_pb.js";
|
|
9
|
+
export * from "./_generated/shared.runtime_function_pb.d.js";
|
|
10
|
+
export * from "./_generated/shared.runtime_function_pb.js";
|
|
11
|
+
export * from "./_generated/shared.runtime_status_pb.d.js";
|
|
12
|
+
export * from "./_generated/shared.runtime_status_pb.js";
|
|
13
|
+
export * from "./_generated/shared.runtime_usage_pb.d.js";
|
|
14
|
+
export * from "./_generated/shared.runtime_usage_pb.js";
|
|
15
|
+
export * from "./_generated/shared.struct_pb.d.js";
|
|
16
|
+
export * from "./_generated/shared.struct_pb.js";
|
|
17
|
+
export * from "./_generated/shared.translation_pb.d.js";
|
|
18
|
+
export * from "./_generated/shared.translation_pb.js";
|