@superblocksteam/types 0.1977.0 → 0.1978.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.
@@ -0,0 +1,194 @@
1
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
+ import { Message, proto3 } from "@bufbuild/protobuf";
3
+ /**
4
+ * Variable operations
5
+ *
6
+ * @generated from message worker.v1.GetVariableRequest
7
+ */
8
+ export declare class GetVariableRequest extends Message<GetVariableRequest> {
9
+ /**
10
+ * @generated from field: string execution_id = 1;
11
+ */
12
+ executionId: string;
13
+ /**
14
+ * @generated from field: string key = 2;
15
+ */
16
+ key: string;
17
+ constructor(data?: PartialMessage<GetVariableRequest>);
18
+ static readonly runtime: typeof proto3;
19
+ static readonly typeName = "worker.v1.GetVariableRequest";
20
+ static readonly fields: FieldList;
21
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetVariableRequest;
22
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetVariableRequest;
23
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetVariableRequest;
24
+ static equals(a: GetVariableRequest | PlainMessage<GetVariableRequest> | undefined, b: GetVariableRequest | PlainMessage<GetVariableRequest> | undefined): boolean;
25
+ }
26
+ /**
27
+ * @generated from message worker.v1.GetVariableResponse
28
+ */
29
+ export declare class GetVariableResponse extends Message<GetVariableResponse> {
30
+ /**
31
+ * JSON-encoded value
32
+ *
33
+ * @generated from field: string value = 1;
34
+ */
35
+ value: string;
36
+ /**
37
+ * @generated from field: bool found = 2;
38
+ */
39
+ found: boolean;
40
+ constructor(data?: PartialMessage<GetVariableResponse>);
41
+ static readonly runtime: typeof proto3;
42
+ static readonly typeName = "worker.v1.GetVariableResponse";
43
+ static readonly fields: FieldList;
44
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetVariableResponse;
45
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetVariableResponse;
46
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetVariableResponse;
47
+ static equals(a: GetVariableResponse | PlainMessage<GetVariableResponse> | undefined, b: GetVariableResponse | PlainMessage<GetVariableResponse> | undefined): boolean;
48
+ }
49
+ /**
50
+ * @generated from message worker.v1.SetVariableRequest
51
+ */
52
+ export declare class SetVariableRequest extends Message<SetVariableRequest> {
53
+ /**
54
+ * @generated from field: string execution_id = 1;
55
+ */
56
+ executionId: string;
57
+ /**
58
+ * @generated from field: string key = 2;
59
+ */
60
+ key: string;
61
+ /**
62
+ * JSON-encoded value
63
+ *
64
+ * @generated from field: string value = 3;
65
+ */
66
+ value: string;
67
+ constructor(data?: PartialMessage<SetVariableRequest>);
68
+ static readonly runtime: typeof proto3;
69
+ static readonly typeName = "worker.v1.SetVariableRequest";
70
+ static readonly fields: FieldList;
71
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVariableRequest;
72
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVariableRequest;
73
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVariableRequest;
74
+ static equals(a: SetVariableRequest | PlainMessage<SetVariableRequest> | undefined, b: SetVariableRequest | PlainMessage<SetVariableRequest> | undefined): boolean;
75
+ }
76
+ /**
77
+ * @generated from message worker.v1.SetVariableResponse
78
+ */
79
+ export declare class SetVariableResponse extends Message<SetVariableResponse> {
80
+ /**
81
+ * @generated from field: bool success = 1;
82
+ */
83
+ success: boolean;
84
+ constructor(data?: PartialMessage<SetVariableResponse>);
85
+ static readonly runtime: typeof proto3;
86
+ static readonly typeName = "worker.v1.SetVariableResponse";
87
+ static readonly fields: FieldList;
88
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVariableResponse;
89
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVariableResponse;
90
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVariableResponse;
91
+ static equals(a: SetVariableResponse | PlainMessage<SetVariableResponse> | undefined, b: SetVariableResponse | PlainMessage<SetVariableResponse> | undefined): boolean;
92
+ }
93
+ /**
94
+ * @generated from message worker.v1.GetVariablesRequest
95
+ */
96
+ export declare class GetVariablesRequest extends Message<GetVariablesRequest> {
97
+ /**
98
+ * @generated from field: string execution_id = 1;
99
+ */
100
+ executionId: string;
101
+ /**
102
+ * @generated from field: repeated string keys = 2;
103
+ */
104
+ keys: string[];
105
+ constructor(data?: PartialMessage<GetVariablesRequest>);
106
+ static readonly runtime: typeof proto3;
107
+ static readonly typeName = "worker.v1.GetVariablesRequest";
108
+ static readonly fields: FieldList;
109
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetVariablesRequest;
110
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetVariablesRequest;
111
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetVariablesRequest;
112
+ static equals(a: GetVariablesRequest | PlainMessage<GetVariablesRequest> | undefined, b: GetVariablesRequest | PlainMessage<GetVariablesRequest> | undefined): boolean;
113
+ }
114
+ /**
115
+ * @generated from message worker.v1.GetVariablesResponse
116
+ */
117
+ export declare class GetVariablesResponse extends Message<GetVariablesResponse> {
118
+ /**
119
+ * JSON-encoded values (same order as keys)
120
+ *
121
+ * @generated from field: repeated string values = 1;
122
+ */
123
+ values: string[];
124
+ constructor(data?: PartialMessage<GetVariablesResponse>);
125
+ static readonly runtime: typeof proto3;
126
+ static readonly typeName = "worker.v1.GetVariablesResponse";
127
+ static readonly fields: FieldList;
128
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetVariablesResponse;
129
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetVariablesResponse;
130
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetVariablesResponse;
131
+ static equals(a: GetVariablesResponse | PlainMessage<GetVariablesResponse> | undefined, b: GetVariablesResponse | PlainMessage<GetVariablesResponse> | undefined): boolean;
132
+ }
133
+ /**
134
+ * @generated from message worker.v1.SetVariablesRequest
135
+ */
136
+ export declare class SetVariablesRequest extends Message<SetVariablesRequest> {
137
+ /**
138
+ * @generated from field: string execution_id = 1;
139
+ */
140
+ executionId: string;
141
+ /**
142
+ * @generated from field: repeated worker.v1.KeyValue kvs = 2;
143
+ */
144
+ kvs: KeyValue[];
145
+ constructor(data?: PartialMessage<SetVariablesRequest>);
146
+ static readonly runtime: typeof proto3;
147
+ static readonly typeName = "worker.v1.SetVariablesRequest";
148
+ static readonly fields: FieldList;
149
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVariablesRequest;
150
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVariablesRequest;
151
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVariablesRequest;
152
+ static equals(a: SetVariablesRequest | PlainMessage<SetVariablesRequest> | undefined, b: SetVariablesRequest | PlainMessage<SetVariablesRequest> | undefined): boolean;
153
+ }
154
+ /**
155
+ * @generated from message worker.v1.KeyValue
156
+ */
157
+ export declare class KeyValue extends Message<KeyValue> {
158
+ /**
159
+ * @generated from field: string key = 1;
160
+ */
161
+ key: string;
162
+ /**
163
+ * JSON-encoded value
164
+ *
165
+ * @generated from field: string value = 2;
166
+ */
167
+ value: string;
168
+ constructor(data?: PartialMessage<KeyValue>);
169
+ static readonly runtime: typeof proto3;
170
+ static readonly typeName = "worker.v1.KeyValue";
171
+ static readonly fields: FieldList;
172
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): KeyValue;
173
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): KeyValue;
174
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): KeyValue;
175
+ static equals(a: KeyValue | PlainMessage<KeyValue> | undefined, b: KeyValue | PlainMessage<KeyValue> | undefined): boolean;
176
+ }
177
+ /**
178
+ * @generated from message worker.v1.SetVariablesResponse
179
+ */
180
+ export declare class SetVariablesResponse extends Message<SetVariablesResponse> {
181
+ /**
182
+ * @generated from field: bool success = 1;
183
+ */
184
+ success: boolean;
185
+ constructor(data?: PartialMessage<SetVariablesResponse>);
186
+ static readonly runtime: typeof proto3;
187
+ static readonly typeName = "worker.v1.SetVariablesResponse";
188
+ static readonly fields: FieldList;
189
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVariablesResponse;
190
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVariablesResponse;
191
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVariablesResponse;
192
+ static equals(a: SetVariablesResponse | PlainMessage<SetVariablesResponse> | undefined, b: SetVariablesResponse | PlainMessage<SetVariablesResponse> | undefined): boolean;
193
+ }
194
+ //# sourceMappingURL=sandbox_variable_store_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sandbox_variable_store_pb.d.ts","sourceRoot":"","sources":["../../../../src/worker/v1/sandbox_variable_store_pb.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,333 @@
1
+ "use strict";
2
+ // @generated by protoc-gen-es v1.2.0 with parameter "target=ts"
3
+ // @generated from file worker/v1/sandbox_variable_store.proto (package worker.v1, syntax proto3)
4
+ /* eslint-disable */
5
+ // @ts-nocheck
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.SetVariablesResponse = exports.KeyValue = exports.SetVariablesRequest = exports.GetVariablesResponse = exports.GetVariablesRequest = exports.SetVariableResponse = exports.SetVariableRequest = exports.GetVariableResponse = exports.GetVariableRequest = void 0;
8
+ const protobuf_1 = require("@bufbuild/protobuf");
9
+ /**
10
+ * Variable operations
11
+ *
12
+ * @generated from message worker.v1.GetVariableRequest
13
+ */
14
+ class GetVariableRequest extends protobuf_1.Message {
15
+ /**
16
+ * @generated from field: string execution_id = 1;
17
+ */
18
+ executionId = "";
19
+ /**
20
+ * @generated from field: string key = 2;
21
+ */
22
+ key = "";
23
+ constructor(data) {
24
+ super();
25
+ protobuf_1.proto3.util.initPartial(data, this);
26
+ }
27
+ static runtime = protobuf_1.proto3;
28
+ static typeName = "worker.v1.GetVariableRequest";
29
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
30
+ { no: 1, name: "execution_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
31
+ { no: 2, name: "key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
32
+ ]);
33
+ static fromBinary(bytes, options) {
34
+ return new GetVariableRequest().fromBinary(bytes, options);
35
+ }
36
+ static fromJson(jsonValue, options) {
37
+ return new GetVariableRequest().fromJson(jsonValue, options);
38
+ }
39
+ static fromJsonString(jsonString, options) {
40
+ return new GetVariableRequest().fromJsonString(jsonString, options);
41
+ }
42
+ static equals(a, b) {
43
+ return protobuf_1.proto3.util.equals(GetVariableRequest, a, b);
44
+ }
45
+ }
46
+ exports.GetVariableRequest = GetVariableRequest;
47
+ /**
48
+ * @generated from message worker.v1.GetVariableResponse
49
+ */
50
+ class GetVariableResponse extends protobuf_1.Message {
51
+ /**
52
+ * JSON-encoded value
53
+ *
54
+ * @generated from field: string value = 1;
55
+ */
56
+ value = "";
57
+ /**
58
+ * @generated from field: bool found = 2;
59
+ */
60
+ found = false;
61
+ constructor(data) {
62
+ super();
63
+ protobuf_1.proto3.util.initPartial(data, this);
64
+ }
65
+ static runtime = protobuf_1.proto3;
66
+ static typeName = "worker.v1.GetVariableResponse";
67
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
68
+ { no: 1, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
69
+ { no: 2, name: "found", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
70
+ ]);
71
+ static fromBinary(bytes, options) {
72
+ return new GetVariableResponse().fromBinary(bytes, options);
73
+ }
74
+ static fromJson(jsonValue, options) {
75
+ return new GetVariableResponse().fromJson(jsonValue, options);
76
+ }
77
+ static fromJsonString(jsonString, options) {
78
+ return new GetVariableResponse().fromJsonString(jsonString, options);
79
+ }
80
+ static equals(a, b) {
81
+ return protobuf_1.proto3.util.equals(GetVariableResponse, a, b);
82
+ }
83
+ }
84
+ exports.GetVariableResponse = GetVariableResponse;
85
+ /**
86
+ * @generated from message worker.v1.SetVariableRequest
87
+ */
88
+ class SetVariableRequest extends protobuf_1.Message {
89
+ /**
90
+ * @generated from field: string execution_id = 1;
91
+ */
92
+ executionId = "";
93
+ /**
94
+ * @generated from field: string key = 2;
95
+ */
96
+ key = "";
97
+ /**
98
+ * JSON-encoded value
99
+ *
100
+ * @generated from field: string value = 3;
101
+ */
102
+ value = "";
103
+ constructor(data) {
104
+ super();
105
+ protobuf_1.proto3.util.initPartial(data, this);
106
+ }
107
+ static runtime = protobuf_1.proto3;
108
+ static typeName = "worker.v1.SetVariableRequest";
109
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
110
+ { no: 1, name: "execution_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
111
+ { no: 2, name: "key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
112
+ { no: 3, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
113
+ ]);
114
+ static fromBinary(bytes, options) {
115
+ return new SetVariableRequest().fromBinary(bytes, options);
116
+ }
117
+ static fromJson(jsonValue, options) {
118
+ return new SetVariableRequest().fromJson(jsonValue, options);
119
+ }
120
+ static fromJsonString(jsonString, options) {
121
+ return new SetVariableRequest().fromJsonString(jsonString, options);
122
+ }
123
+ static equals(a, b) {
124
+ return protobuf_1.proto3.util.equals(SetVariableRequest, a, b);
125
+ }
126
+ }
127
+ exports.SetVariableRequest = SetVariableRequest;
128
+ /**
129
+ * @generated from message worker.v1.SetVariableResponse
130
+ */
131
+ class SetVariableResponse extends protobuf_1.Message {
132
+ /**
133
+ * @generated from field: bool success = 1;
134
+ */
135
+ success = false;
136
+ constructor(data) {
137
+ super();
138
+ protobuf_1.proto3.util.initPartial(data, this);
139
+ }
140
+ static runtime = protobuf_1.proto3;
141
+ static typeName = "worker.v1.SetVariableResponse";
142
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
143
+ { no: 1, name: "success", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
144
+ ]);
145
+ static fromBinary(bytes, options) {
146
+ return new SetVariableResponse().fromBinary(bytes, options);
147
+ }
148
+ static fromJson(jsonValue, options) {
149
+ return new SetVariableResponse().fromJson(jsonValue, options);
150
+ }
151
+ static fromJsonString(jsonString, options) {
152
+ return new SetVariableResponse().fromJsonString(jsonString, options);
153
+ }
154
+ static equals(a, b) {
155
+ return protobuf_1.proto3.util.equals(SetVariableResponse, a, b);
156
+ }
157
+ }
158
+ exports.SetVariableResponse = SetVariableResponse;
159
+ /**
160
+ * @generated from message worker.v1.GetVariablesRequest
161
+ */
162
+ class GetVariablesRequest extends protobuf_1.Message {
163
+ /**
164
+ * @generated from field: string execution_id = 1;
165
+ */
166
+ executionId = "";
167
+ /**
168
+ * @generated from field: repeated string keys = 2;
169
+ */
170
+ keys = [];
171
+ constructor(data) {
172
+ super();
173
+ protobuf_1.proto3.util.initPartial(data, this);
174
+ }
175
+ static runtime = protobuf_1.proto3;
176
+ static typeName = "worker.v1.GetVariablesRequest";
177
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
178
+ { no: 1, name: "execution_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
179
+ { no: 2, name: "keys", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
180
+ ]);
181
+ static fromBinary(bytes, options) {
182
+ return new GetVariablesRequest().fromBinary(bytes, options);
183
+ }
184
+ static fromJson(jsonValue, options) {
185
+ return new GetVariablesRequest().fromJson(jsonValue, options);
186
+ }
187
+ static fromJsonString(jsonString, options) {
188
+ return new GetVariablesRequest().fromJsonString(jsonString, options);
189
+ }
190
+ static equals(a, b) {
191
+ return protobuf_1.proto3.util.equals(GetVariablesRequest, a, b);
192
+ }
193
+ }
194
+ exports.GetVariablesRequest = GetVariablesRequest;
195
+ /**
196
+ * @generated from message worker.v1.GetVariablesResponse
197
+ */
198
+ class GetVariablesResponse extends protobuf_1.Message {
199
+ /**
200
+ * JSON-encoded values (same order as keys)
201
+ *
202
+ * @generated from field: repeated string values = 1;
203
+ */
204
+ values = [];
205
+ constructor(data) {
206
+ super();
207
+ protobuf_1.proto3.util.initPartial(data, this);
208
+ }
209
+ static runtime = protobuf_1.proto3;
210
+ static typeName = "worker.v1.GetVariablesResponse";
211
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
212
+ { no: 1, name: "values", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
213
+ ]);
214
+ static fromBinary(bytes, options) {
215
+ return new GetVariablesResponse().fromBinary(bytes, options);
216
+ }
217
+ static fromJson(jsonValue, options) {
218
+ return new GetVariablesResponse().fromJson(jsonValue, options);
219
+ }
220
+ static fromJsonString(jsonString, options) {
221
+ return new GetVariablesResponse().fromJsonString(jsonString, options);
222
+ }
223
+ static equals(a, b) {
224
+ return protobuf_1.proto3.util.equals(GetVariablesResponse, a, b);
225
+ }
226
+ }
227
+ exports.GetVariablesResponse = GetVariablesResponse;
228
+ /**
229
+ * @generated from message worker.v1.SetVariablesRequest
230
+ */
231
+ class SetVariablesRequest extends protobuf_1.Message {
232
+ /**
233
+ * @generated from field: string execution_id = 1;
234
+ */
235
+ executionId = "";
236
+ /**
237
+ * @generated from field: repeated worker.v1.KeyValue kvs = 2;
238
+ */
239
+ kvs = [];
240
+ constructor(data) {
241
+ super();
242
+ protobuf_1.proto3.util.initPartial(data, this);
243
+ }
244
+ static runtime = protobuf_1.proto3;
245
+ static typeName = "worker.v1.SetVariablesRequest";
246
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
247
+ { no: 1, name: "execution_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
248
+ { no: 2, name: "kvs", kind: "message", T: KeyValue, repeated: true },
249
+ ]);
250
+ static fromBinary(bytes, options) {
251
+ return new SetVariablesRequest().fromBinary(bytes, options);
252
+ }
253
+ static fromJson(jsonValue, options) {
254
+ return new SetVariablesRequest().fromJson(jsonValue, options);
255
+ }
256
+ static fromJsonString(jsonString, options) {
257
+ return new SetVariablesRequest().fromJsonString(jsonString, options);
258
+ }
259
+ static equals(a, b) {
260
+ return protobuf_1.proto3.util.equals(SetVariablesRequest, a, b);
261
+ }
262
+ }
263
+ exports.SetVariablesRequest = SetVariablesRequest;
264
+ /**
265
+ * @generated from message worker.v1.KeyValue
266
+ */
267
+ class KeyValue extends protobuf_1.Message {
268
+ /**
269
+ * @generated from field: string key = 1;
270
+ */
271
+ key = "";
272
+ /**
273
+ * JSON-encoded value
274
+ *
275
+ * @generated from field: string value = 2;
276
+ */
277
+ value = "";
278
+ constructor(data) {
279
+ super();
280
+ protobuf_1.proto3.util.initPartial(data, this);
281
+ }
282
+ static runtime = protobuf_1.proto3;
283
+ static typeName = "worker.v1.KeyValue";
284
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
285
+ { no: 1, name: "key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
286
+ { no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
287
+ ]);
288
+ static fromBinary(bytes, options) {
289
+ return new KeyValue().fromBinary(bytes, options);
290
+ }
291
+ static fromJson(jsonValue, options) {
292
+ return new KeyValue().fromJson(jsonValue, options);
293
+ }
294
+ static fromJsonString(jsonString, options) {
295
+ return new KeyValue().fromJsonString(jsonString, options);
296
+ }
297
+ static equals(a, b) {
298
+ return protobuf_1.proto3.util.equals(KeyValue, a, b);
299
+ }
300
+ }
301
+ exports.KeyValue = KeyValue;
302
+ /**
303
+ * @generated from message worker.v1.SetVariablesResponse
304
+ */
305
+ class SetVariablesResponse extends protobuf_1.Message {
306
+ /**
307
+ * @generated from field: bool success = 1;
308
+ */
309
+ success = false;
310
+ constructor(data) {
311
+ super();
312
+ protobuf_1.proto3.util.initPartial(data, this);
313
+ }
314
+ static runtime = protobuf_1.proto3;
315
+ static typeName = "worker.v1.SetVariablesResponse";
316
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
317
+ { no: 1, name: "success", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
318
+ ]);
319
+ static fromBinary(bytes, options) {
320
+ return new SetVariablesResponse().fromBinary(bytes, options);
321
+ }
322
+ static fromJson(jsonValue, options) {
323
+ return new SetVariablesResponse().fromJson(jsonValue, options);
324
+ }
325
+ static fromJsonString(jsonString, options) {
326
+ return new SetVariablesResponse().fromJsonString(jsonString, options);
327
+ }
328
+ static equals(a, b) {
329
+ return protobuf_1.proto3.util.equals(SetVariablesResponse, a, b);
330
+ }
331
+ }
332
+ exports.SetVariablesResponse = SetVariablesResponse;
333
+ //# sourceMappingURL=sandbox_variable_store_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sandbox_variable_store_pb.js","sourceRoot":"","sources":["../../../../src/worker/v1/sandbox_variable_store_pb.ts"],"names":[],"mappings":"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"}