@code0-tech/tucana 0.0.60 → 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.
@@ -0,0 +1 @@
1
+ export * from "./shared.struct_helper.js";
@@ -0,0 +1 @@
1
+ export * from "./shared.struct_helper.js";
@@ -1 +1 @@
1
- export * from "./shared.struct_helper";
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 };
@@ -0,0 +1,59 @@
1
+ function toAllowedValue(value) {
2
+ switch (value.kind.oneofKind) {
3
+ case "nullValue":
4
+ return null;
5
+ case "numberValue":
6
+ return value.kind.numberValue;
7
+ case "stringValue":
8
+ return value.kind.stringValue;
9
+ case "boolValue":
10
+ return value.kind.boolValue;
11
+ case "listValue":
12
+ return value.kind.listValue.values.map(toAllowedValue);
13
+ case "structValue":
14
+ const obj = {};
15
+ for (const [k, v] of Object.entries(value.kind.structValue.fields)) {
16
+ obj[k] = toAllowedValue(v);
17
+ }
18
+ return obj;
19
+ default:
20
+ throw new Error(`Unsupported Value kind: ${value.kind.oneofKind}`);
21
+ }
22
+ }
23
+ function constructValue(value) {
24
+ if (value === null) {
25
+ return { kind: { oneofKind: "nullValue", nullValue: 0 } };
26
+ }
27
+ if (typeof value === "number") {
28
+ return { kind: { oneofKind: "numberValue", numberValue: value } };
29
+ }
30
+ if (typeof value === "string") {
31
+ return { kind: { oneofKind: "stringValue", stringValue: value } };
32
+ }
33
+ if (typeof value === "boolean") {
34
+ return { kind: { oneofKind: "boolValue", boolValue: value } };
35
+ }
36
+ if (Array.isArray(value)) {
37
+ const listValues = value.map(v => constructValue(v));
38
+ return {
39
+ kind: {
40
+ oneofKind: "listValue",
41
+ listValue: { values: listValues }
42
+ }
43
+ };
44
+ }
45
+ if (typeof value === "object") {
46
+ const structFields = {};
47
+ for (const [k, v] of Object.entries(value)) {
48
+ structFields[k] = constructValue(v);
49
+ }
50
+ return {
51
+ kind: {
52
+ oneofKind: "structValue",
53
+ structValue: { fields: structFields }
54
+ }
55
+ };
56
+ }
57
+ throw new Error(`Unsupported value type: ${typeof value}`);
58
+ }
59
+ export { toAllowedValue, constructValue };
@@ -1,8 +1,8 @@
1
1
  import {Value} from "../pb/shared";
2
2
 
3
- export type PlainValue = null | number | string | boolean | Array<PlainValue> | object;
3
+ type PlainValue = null | number | string | boolean | Array<PlainValue> | object;
4
4
 
5
- export function toAllowedValue(value: Value): PlainValue {
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
- export function constructValue(value: PlainValue): Value {
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.60",
3
+ "version": "0.0.62",
4
4
  "description": "Code0 GRPC Protocol",
5
5
  "homepage": "https://github.com/code0-tech/tucana#readme",
6
6
  "bugs": {
@@ -15,15 +15,20 @@
15
15
  "type": "module",
16
16
  "main": "index.js",
17
17
  "scripts": {
18
+ "build": "tsc -p tsconfig.json",
18
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",
19
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",
20
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",
21
- "generate": "npm run generate:shared && npm run generate:sagittarius && npm run generate:aquila && npm run generate:exports",
22
- "generate:exports": "node scripts/generateExports.mjs"
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
+ "generate:exports": "node scripts/generateExports.mjs",
24
+ "generate:replace-enums": "npx ts-node scripts/replace-enums.ts",
25
+ "clean": "rm -rf pb/_generated/*.js && rm -rf pb/_generated/*.ts && rm -rf helpers/*.js"
23
26
  },
24
27
  "devDependencies": {
25
28
  "@protobuf-ts/plugin": "^2.11.1",
26
- "protoc": "^34.0.0"
29
+ "protoc": "^34.0.0",
30
+ "ts-morph": "^27.0.2",
31
+ "ts-node": "^10.9.2"
27
32
  },
28
33
  "files": [
29
34
  "pb",
@@ -108,23 +108,15 @@ export interface FlowTypeSetting {
108
108
  */
109
109
  linkedDataTypeIdentifiers: string[];
110
110
  }
111
- /**
112
- * @generated from protobuf enum shared.FlowTypeSetting.UniquenessScope
113
- */
114
- export declare enum FlowTypeSetting_UniquenessScope {
115
- /**
116
- * @generated from protobuf enum value: UNKNOWN = 0;
117
- */
118
- UNKNOWN = 0,
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
- * @generated from protobuf enum shared.AdapterRuntimeStatus.Status
68
- */
69
- export declare enum AdapterRuntimeStatus_Status {
70
- /**
71
- * @generated from protobuf enum value: UNKNOWN = 0;
72
- */
73
- UNKNOWN = 0,
74
- /**
75
- * @generated from protobuf enum value: NOT_RESPONDING = 1;
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
- * @generated from protobuf enum shared.ExecutionRuntimeStatus.Status
114
- */
115
- export declare enum ExecutionRuntimeStatus_Status {
116
- /**
117
- * @generated from protobuf enum value: UNKNOWN = 0;
118
- */
119
- UNKNOWN = 0,
120
- /**
121
- * @generated from protobuf enum value: NOT_RESPONDING = 1;
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
- * `NullValue` is a singleton enumeration to represent the null value for the
153
- * `Value` type union.
154
- *
155
- * The JSON representation for `NullValue` is JSON `null`.
156
- *
157
- * @generated from protobuf enum shared.NullValue
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 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";