@superblocksteam/types 1.44.0 → 1.46.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/api/v1/service_pb.d.ts +24 -0
- package/dist/src/api/v1/service_pb.d.ts.map +1 -1
- package/dist/src/api/v1/service_pb.js +10 -0
- package/dist/src/api/v1/service_pb.js.map +1 -1
- package/dist/src/transport/v1/transport_pb.d.ts +13 -0
- package/dist/src/transport/v1/transport_pb.d.ts.map +1 -1
- package/dist/src/transport/v1/transport_pb.js +16 -0
- package/dist/src/transport/v1/transport_pb.js.map +1 -1
- package/dist/src/worker/v1/sandbox_executor_transport_pb.d.ts +16 -16
- package/dist/src/worker/v1/sandbox_executor_transport_pb.d.ts.map +1 -1
- package/dist/src/worker/v1/sandbox_executor_transport_pb.js +17 -17
- package/dist/src/worker/v1/sandbox_executor_transport_pb.js.map +1 -1
- package/dist/src/worker/v1/sandbox_transport_pb.d.ts +262 -0
- package/dist/src/worker/v1/sandbox_transport_pb.d.ts.map +1 -0
- package/dist/src/worker/v1/sandbox_transport_pb.js +420 -0
- package/dist/src/worker/v1/sandbox_transport_pb.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/api/v1/service_pb.ts +29 -0
- package/src/transport/v1/transport_pb.ts +19 -0
- package/src/worker/v1/sandbox_executor_transport_pb.ts +24 -24
- package/src/worker/v1/sandbox_transport_pb.ts +494 -0
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Duration, Empty, Message, proto3, Struct, Timestamp } from "@bufbuild/protobuf";
|
|
3
|
+
import { Request_Data_Data_Props, Request_Data_Data_Quota, Request_Data_Pinned } from "../../transport/v1/transport_pb";
|
|
4
|
+
import { OutputOld } from "../../api/v1/event_pb";
|
|
5
|
+
import { Error } from "../../common/v1/errors_pb";
|
|
6
|
+
/**
|
|
7
|
+
* @generated from message worker.v1.RequestMetadata
|
|
8
|
+
*/
|
|
9
|
+
export declare class RequestMetadata extends Message<RequestMetadata> {
|
|
10
|
+
/**
|
|
11
|
+
* @generated from field: string pluginName = 1;
|
|
12
|
+
*/
|
|
13
|
+
pluginName: string;
|
|
14
|
+
constructor(data?: PartialMessage<RequestMetadata>);
|
|
15
|
+
static readonly runtime: typeof proto3;
|
|
16
|
+
static readonly typeName = "worker.v1.RequestMetadata";
|
|
17
|
+
static readonly fields: FieldList;
|
|
18
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RequestMetadata;
|
|
19
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RequestMetadata;
|
|
20
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RequestMetadata;
|
|
21
|
+
static equals(a: RequestMetadata | PlainMessage<RequestMetadata> | undefined, b: RequestMetadata | PlainMessage<RequestMetadata> | undefined): boolean;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Execute request sent to workers
|
|
25
|
+
*
|
|
26
|
+
* @generated from message worker.v1.ExecuteRequest
|
|
27
|
+
*/
|
|
28
|
+
export declare class ExecuteRequest extends Message<ExecuteRequest> {
|
|
29
|
+
/**
|
|
30
|
+
* @generated from field: worker.v1.RequestMetadata metadata = 1;
|
|
31
|
+
*/
|
|
32
|
+
metadata?: RequestMetadata;
|
|
33
|
+
/**
|
|
34
|
+
* The request props (contains the action config and datasource config)
|
|
35
|
+
*
|
|
36
|
+
* @generated from field: transport.v1.Request.Data.Data.Props props = 2;
|
|
37
|
+
*/
|
|
38
|
+
props?: Request_Data_Data_Props;
|
|
39
|
+
/**
|
|
40
|
+
* The quotas to apply to this step
|
|
41
|
+
*
|
|
42
|
+
* @generated from field: transport.v1.Request.Data.Data.Quota quotas = 3;
|
|
43
|
+
*/
|
|
44
|
+
quotas?: Request_Data_Data_Quota;
|
|
45
|
+
/**
|
|
46
|
+
* The pinned data (contains the observability tags)
|
|
47
|
+
*
|
|
48
|
+
* @generated from field: transport.v1.Request.Data.Pinned pinned = 4;
|
|
49
|
+
*/
|
|
50
|
+
pinned?: Request_Data_Pinned;
|
|
51
|
+
/**
|
|
52
|
+
* Address of the variable store (task-manager) for callbacks
|
|
53
|
+
*
|
|
54
|
+
* @generated from field: string variable_store_address = 5;
|
|
55
|
+
*/
|
|
56
|
+
variableStoreAddress: string;
|
|
57
|
+
constructor(data?: PartialMessage<ExecuteRequest>);
|
|
58
|
+
static readonly runtime: typeof proto3;
|
|
59
|
+
static readonly typeName = "worker.v1.ExecuteRequest";
|
|
60
|
+
static readonly fields: FieldList;
|
|
61
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExecuteRequest;
|
|
62
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExecuteRequest;
|
|
63
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExecuteRequest;
|
|
64
|
+
static equals(a: ExecuteRequest | PlainMessage<ExecuteRequest> | undefined, b: ExecuteRequest | PlainMessage<ExecuteRequest> | undefined): boolean;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* @generated from message worker.v1.ExecuteResponse
|
|
68
|
+
*/
|
|
69
|
+
export declare class ExecuteResponse extends Message<ExecuteResponse> {
|
|
70
|
+
/**
|
|
71
|
+
* @generated from field: api.v1.OutputOld output = 1;
|
|
72
|
+
*/
|
|
73
|
+
output?: OutputOld;
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: common.v1.Error error = 2;
|
|
76
|
+
*/
|
|
77
|
+
error?: Error;
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: bool authError = 3;
|
|
80
|
+
*/
|
|
81
|
+
authError: boolean;
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: repeated string children = 4;
|
|
84
|
+
*/
|
|
85
|
+
children: string[];
|
|
86
|
+
/**
|
|
87
|
+
* @generated from field: optional google.protobuf.Timestamp startTime = 5;
|
|
88
|
+
*/
|
|
89
|
+
startTime?: Timestamp;
|
|
90
|
+
/**
|
|
91
|
+
* @generated from field: google.protobuf.Duration executionTime = 6;
|
|
92
|
+
*/
|
|
93
|
+
executionTime?: Duration;
|
|
94
|
+
/**
|
|
95
|
+
* @generated from field: repeated worker.v1.StructuredLog structuredLog = 7;
|
|
96
|
+
*/
|
|
97
|
+
structuredLog: StructuredLog[];
|
|
98
|
+
constructor(data?: PartialMessage<ExecuteResponse>);
|
|
99
|
+
static readonly runtime: typeof proto3;
|
|
100
|
+
static readonly typeName = "worker.v1.ExecuteResponse";
|
|
101
|
+
static readonly fields: FieldList;
|
|
102
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExecuteResponse;
|
|
103
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExecuteResponse;
|
|
104
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExecuteResponse;
|
|
105
|
+
static equals(a: ExecuteResponse | PlainMessage<ExecuteResponse> | undefined, b: ExecuteResponse | PlainMessage<ExecuteResponse> | undefined): boolean;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* @generated from message worker.v1.StreamRequest
|
|
109
|
+
*/
|
|
110
|
+
export declare class StreamRequest extends Message<StreamRequest> {
|
|
111
|
+
/**
|
|
112
|
+
* @generated from field: worker.v1.ExecuteRequest request = 1;
|
|
113
|
+
*/
|
|
114
|
+
request?: ExecuteRequest;
|
|
115
|
+
constructor(data?: PartialMessage<StreamRequest>);
|
|
116
|
+
static readonly runtime: typeof proto3;
|
|
117
|
+
static readonly typeName = "worker.v1.StreamRequest";
|
|
118
|
+
static readonly fields: FieldList;
|
|
119
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamRequest;
|
|
120
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamRequest;
|
|
121
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamRequest;
|
|
122
|
+
static equals(a: StreamRequest | PlainMessage<StreamRequest> | undefined, b: StreamRequest | PlainMessage<StreamRequest> | undefined): boolean;
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* @generated from message worker.v1.StreamResponse
|
|
126
|
+
*/
|
|
127
|
+
export declare class StreamResponse extends Message<StreamResponse> {
|
|
128
|
+
/**
|
|
129
|
+
* @generated from field: google.protobuf.Empty response = 1;
|
|
130
|
+
*/
|
|
131
|
+
response?: Empty;
|
|
132
|
+
constructor(data?: PartialMessage<StreamResponse>);
|
|
133
|
+
static readonly runtime: typeof proto3;
|
|
134
|
+
static readonly typeName = "worker.v1.StreamResponse";
|
|
135
|
+
static readonly fields: FieldList;
|
|
136
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamResponse;
|
|
137
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamResponse;
|
|
138
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamResponse;
|
|
139
|
+
static equals(a: StreamResponse | PlainMessage<StreamResponse> | undefined, b: StreamResponse | PlainMessage<StreamResponse> | undefined): boolean;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* @generated from message worker.v1.MetadataRequest
|
|
143
|
+
*/
|
|
144
|
+
export declare class MetadataRequest extends Message<MetadataRequest> {
|
|
145
|
+
/**
|
|
146
|
+
* @generated from field: worker.v1.RequestMetadata metadata = 1;
|
|
147
|
+
*/
|
|
148
|
+
metadata?: RequestMetadata;
|
|
149
|
+
/**
|
|
150
|
+
* @generated from field: google.protobuf.Struct datasourceConfig = 2;
|
|
151
|
+
*/
|
|
152
|
+
datasourceConfig?: Struct;
|
|
153
|
+
/**
|
|
154
|
+
* @generated from field: google.protobuf.Struct actionConfig = 3;
|
|
155
|
+
*/
|
|
156
|
+
actionConfig?: Struct;
|
|
157
|
+
/**
|
|
158
|
+
* @generated from field: string variable_store_address = 4;
|
|
159
|
+
*/
|
|
160
|
+
variableStoreAddress: string;
|
|
161
|
+
constructor(data?: PartialMessage<MetadataRequest>);
|
|
162
|
+
static readonly runtime: typeof proto3;
|
|
163
|
+
static readonly typeName = "worker.v1.MetadataRequest";
|
|
164
|
+
static readonly fields: FieldList;
|
|
165
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetadataRequest;
|
|
166
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetadataRequest;
|
|
167
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetadataRequest;
|
|
168
|
+
static equals(a: MetadataRequest | PlainMessage<MetadataRequest> | undefined, b: MetadataRequest | PlainMessage<MetadataRequest> | undefined): boolean;
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* @generated from message worker.v1.TestRequest
|
|
172
|
+
*/
|
|
173
|
+
export declare class TestRequest extends Message<TestRequest> {
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: worker.v1.RequestMetadata metadata = 1;
|
|
176
|
+
*/
|
|
177
|
+
metadata?: RequestMetadata;
|
|
178
|
+
/**
|
|
179
|
+
* @generated from field: google.protobuf.Struct datasourceConfig = 2;
|
|
180
|
+
*/
|
|
181
|
+
datasourceConfig?: Struct;
|
|
182
|
+
/**
|
|
183
|
+
* @generated from field: google.protobuf.Struct actionConfig = 3;
|
|
184
|
+
*/
|
|
185
|
+
actionConfig?: Struct;
|
|
186
|
+
/**
|
|
187
|
+
* @generated from field: string variable_store_address = 4;
|
|
188
|
+
*/
|
|
189
|
+
variableStoreAddress: string;
|
|
190
|
+
constructor(data?: PartialMessage<TestRequest>);
|
|
191
|
+
static readonly runtime: typeof proto3;
|
|
192
|
+
static readonly typeName = "worker.v1.TestRequest";
|
|
193
|
+
static readonly fields: FieldList;
|
|
194
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TestRequest;
|
|
195
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TestRequest;
|
|
196
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TestRequest;
|
|
197
|
+
static equals(a: TestRequest | PlainMessage<TestRequest> | undefined, b: TestRequest | PlainMessage<TestRequest> | undefined): boolean;
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* @generated from message worker.v1.PreDeleteRequest
|
|
201
|
+
*/
|
|
202
|
+
export declare class PreDeleteRequest extends Message<PreDeleteRequest> {
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: worker.v1.RequestMetadata metadata = 1;
|
|
205
|
+
*/
|
|
206
|
+
metadata?: RequestMetadata;
|
|
207
|
+
/**
|
|
208
|
+
* @generated from field: google.protobuf.Struct datasourceConfig = 2;
|
|
209
|
+
*/
|
|
210
|
+
datasourceConfig?: Struct;
|
|
211
|
+
constructor(data?: PartialMessage<PreDeleteRequest>);
|
|
212
|
+
static readonly runtime: typeof proto3;
|
|
213
|
+
static readonly typeName = "worker.v1.PreDeleteRequest";
|
|
214
|
+
static readonly fields: FieldList;
|
|
215
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PreDeleteRequest;
|
|
216
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PreDeleteRequest;
|
|
217
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PreDeleteRequest;
|
|
218
|
+
static equals(a: PreDeleteRequest | PlainMessage<PreDeleteRequest> | undefined, b: PreDeleteRequest | PlainMessage<PreDeleteRequest> | undefined): boolean;
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* @generated from message worker.v1.StructuredLog
|
|
222
|
+
*/
|
|
223
|
+
export declare class StructuredLog extends Message<StructuredLog> {
|
|
224
|
+
/**
|
|
225
|
+
* @generated from field: string message = 1;
|
|
226
|
+
*/
|
|
227
|
+
message: string;
|
|
228
|
+
/**
|
|
229
|
+
* @generated from field: worker.v1.StructuredLog.Level level = 2;
|
|
230
|
+
*/
|
|
231
|
+
level: StructuredLog_Level;
|
|
232
|
+
constructor(data?: PartialMessage<StructuredLog>);
|
|
233
|
+
static readonly runtime: typeof proto3;
|
|
234
|
+
static readonly typeName = "worker.v1.StructuredLog";
|
|
235
|
+
static readonly fields: FieldList;
|
|
236
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StructuredLog;
|
|
237
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StructuredLog;
|
|
238
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StructuredLog;
|
|
239
|
+
static equals(a: StructuredLog | PlainMessage<StructuredLog> | undefined, b: StructuredLog | PlainMessage<StructuredLog> | undefined): boolean;
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* @generated from enum worker.v1.StructuredLog.Level
|
|
243
|
+
*/
|
|
244
|
+
export declare enum StructuredLog_Level {
|
|
245
|
+
/**
|
|
246
|
+
* @generated from enum value: LEVEL_UNSPECIFIED = 0;
|
|
247
|
+
*/
|
|
248
|
+
UNSPECIFIED = 0,
|
|
249
|
+
/**
|
|
250
|
+
* @generated from enum value: LEVEL_INFO = 1;
|
|
251
|
+
*/
|
|
252
|
+
INFO = 1,
|
|
253
|
+
/**
|
|
254
|
+
* @generated from enum value: LEVEL_WARN = 2;
|
|
255
|
+
*/
|
|
256
|
+
WARN = 2,
|
|
257
|
+
/**
|
|
258
|
+
* @generated from enum value: LEVEL_ERROR = 3;
|
|
259
|
+
*/
|
|
260
|
+
ERROR = 3
|
|
261
|
+
}
|
|
262
|
+
//# sourceMappingURL=sandbox_transport_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sandbox_transport_pb.d.ts","sourceRoot":"","sources":["../../../../src/worker/v1/sandbox_transport_pb.ts"],"names":[],"mappings":"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"}
|