@superblocksteam/types 1.122.0 → 1.124.0
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/src/transport/v1/transport_pb.d.ts +15 -0
- package/dist/src/transport/v1/transport_pb.d.ts.map +1 -1
- package/dist/src/transport/v1/transport_pb.js +17 -0
- package/dist/src/transport/v1/transport_pb.js.map +1 -1
- package/dist/src/worker/v1/sandbox_integration_executor_pb.d.ts +88 -0
- package/dist/src/worker/v1/sandbox_integration_executor_pb.d.ts.map +1 -0
- package/dist/src/worker/v1/sandbox_integration_executor_pb.js +129 -0
- package/dist/src/worker/v1/sandbox_integration_executor_pb.js.map +1 -0
- package/dist/src/worker/v1/sandbox_transport_pb.d.ts +14 -0
- package/dist/src/worker/v1/sandbox_transport_pb.d.ts.map +1 -1
- package/dist/src/worker/v1/sandbox_transport_pb.js +17 -0
- package/dist/src/worker/v1/sandbox_transport_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/transport/v1/transport_pb.ts +19 -0
- package/src/worker/v1/sandbox_integration_executor_pb.ts +147 -0
- package/src/worker/v1/sandbox_transport_pb.ts +20 -0
|
@@ -85,6 +85,13 @@ export class ExecuteRequest extends Message<ExecuteRequest> {
|
|
|
85
85
|
*/
|
|
86
86
|
variableStoreAddress = "";
|
|
87
87
|
|
|
88
|
+
/**
|
|
89
|
+
* Address of the integration executor (task-manager) for executing integrations
|
|
90
|
+
*
|
|
91
|
+
* @generated from field: string integration_executor_address = 6;
|
|
92
|
+
*/
|
|
93
|
+
integrationExecutorAddress = "";
|
|
94
|
+
|
|
88
95
|
constructor(data?: PartialMessage<ExecuteRequest>) {
|
|
89
96
|
super();
|
|
90
97
|
proto3.util.initPartial(data, this);
|
|
@@ -98,6 +105,7 @@ export class ExecuteRequest extends Message<ExecuteRequest> {
|
|
|
98
105
|
{ no: 3, name: "quotas", kind: "message", T: Request_Data_Data_Quota },
|
|
99
106
|
{ no: 4, name: "pinned", kind: "message", T: Request_Data_Pinned },
|
|
100
107
|
{ no: 5, name: "variable_store_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
108
|
+
{ no: 6, name: "integration_executor_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
101
109
|
]);
|
|
102
110
|
|
|
103
111
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExecuteRequest {
|
|
@@ -257,6 +265,11 @@ export class MetadataRequest extends Message<MetadataRequest> {
|
|
|
257
265
|
*/
|
|
258
266
|
variableStoreAddress = "";
|
|
259
267
|
|
|
268
|
+
/**
|
|
269
|
+
* @generated from field: string integration_executor_address = 5;
|
|
270
|
+
*/
|
|
271
|
+
integrationExecutorAddress = "";
|
|
272
|
+
|
|
260
273
|
constructor(data?: PartialMessage<MetadataRequest>) {
|
|
261
274
|
super();
|
|
262
275
|
proto3.util.initPartial(data, this);
|
|
@@ -269,6 +282,7 @@ export class MetadataRequest extends Message<MetadataRequest> {
|
|
|
269
282
|
{ no: 2, name: "datasourceConfig", kind: "message", T: Struct },
|
|
270
283
|
{ no: 3, name: "actionConfig", kind: "message", T: Struct },
|
|
271
284
|
{ no: 4, name: "variable_store_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
285
|
+
{ no: 5, name: "integration_executor_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
272
286
|
]);
|
|
273
287
|
|
|
274
288
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetadataRequest {
|
|
@@ -312,6 +326,11 @@ export class TestRequest extends Message<TestRequest> {
|
|
|
312
326
|
*/
|
|
313
327
|
variableStoreAddress = "";
|
|
314
328
|
|
|
329
|
+
/**
|
|
330
|
+
* @generated from field: string integration_executor_address = 5;
|
|
331
|
+
*/
|
|
332
|
+
integrationExecutorAddress = "";
|
|
333
|
+
|
|
315
334
|
constructor(data?: PartialMessage<TestRequest>) {
|
|
316
335
|
super();
|
|
317
336
|
proto3.util.initPartial(data, this);
|
|
@@ -324,6 +343,7 @@ export class TestRequest extends Message<TestRequest> {
|
|
|
324
343
|
{ no: 2, name: "datasourceConfig", kind: "message", T: Struct },
|
|
325
344
|
{ no: 3, name: "actionConfig", kind: "message", T: Struct },
|
|
326
345
|
{ no: 4, name: "variable_store_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
346
|
+
{ no: 5, name: "integration_executor_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
327
347
|
]);
|
|
328
348
|
|
|
329
349
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TestRequest {
|