@helmr/proto 0.1.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/LICENSE +190 -0
- package/README.md +10 -0
- package/dist/gen/bundle_pb.d.ts +588 -0
- package/dist/gen/run_pb.d.ts +473 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +119 -0
- package/package.json +35 -0
|
@@ -0,0 +1,473 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file run.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_run: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* @generated from message helmr.run.v0.RunTaskRequest
|
|
9
|
+
*/
|
|
10
|
+
export type RunTaskRequest = Message<"helmr.run.v0.RunTaskRequest"> & {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from field: string task_id = 1;
|
|
13
|
+
*/
|
|
14
|
+
taskId: string;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: string module_path = 2;
|
|
17
|
+
*/
|
|
18
|
+
modulePath: string;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: string cwd = 3;
|
|
21
|
+
*/
|
|
22
|
+
cwd: string;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: repeated helmr.run.v0.SecretInject secrets = 4;
|
|
25
|
+
*/
|
|
26
|
+
secrets: SecretInject[];
|
|
27
|
+
/**
|
|
28
|
+
* @generated from field: string run_id = 5;
|
|
29
|
+
*/
|
|
30
|
+
runId: string;
|
|
31
|
+
/**
|
|
32
|
+
* @generated from field: string payload_json = 6;
|
|
33
|
+
*/
|
|
34
|
+
payloadJson: string;
|
|
35
|
+
/**
|
|
36
|
+
* @generated from field: helmr.run.v0.WorkspaceOverlayMount workspace_overlay = 7;
|
|
37
|
+
*/
|
|
38
|
+
workspaceOverlay?: WorkspaceOverlayMount;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message helmr.run.v0.RunTaskRequest.
|
|
42
|
+
* Use `create(RunTaskRequestSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export declare const RunTaskRequestSchema: GenMessage<RunTaskRequest>;
|
|
45
|
+
/**
|
|
46
|
+
* @generated from message helmr.run.v0.WorkspaceOverlayMount
|
|
47
|
+
*/
|
|
48
|
+
export type WorkspaceOverlayMount = Message<"helmr.run.v0.WorkspaceOverlayMount"> & {
|
|
49
|
+
/**
|
|
50
|
+
* @generated from field: string mount_path = 1;
|
|
51
|
+
*/
|
|
52
|
+
mountPath: string;
|
|
53
|
+
/**
|
|
54
|
+
* @generated from field: string image_rootfs_digest = 2;
|
|
55
|
+
*/
|
|
56
|
+
imageRootfsDigest: string;
|
|
57
|
+
/**
|
|
58
|
+
* @generated from field: string runtime_source_tree_digest = 3;
|
|
59
|
+
*/
|
|
60
|
+
runtimeSourceTreeDigest: string;
|
|
61
|
+
/**
|
|
62
|
+
* @generated from field: string upper_kind = 4;
|
|
63
|
+
*/
|
|
64
|
+
upperKind: string;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Describes the message helmr.run.v0.WorkspaceOverlayMount.
|
|
68
|
+
* Use `create(WorkspaceOverlayMountSchema)` to create a new message.
|
|
69
|
+
*/
|
|
70
|
+
export declare const WorkspaceOverlayMountSchema: GenMessage<WorkspaceOverlayMount>;
|
|
71
|
+
/**
|
|
72
|
+
* @generated from message helmr.run.v0.SecretInject
|
|
73
|
+
*/
|
|
74
|
+
export type SecretInject = Message<"helmr.run.v0.SecretInject"> & {
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: string name = 1;
|
|
77
|
+
*/
|
|
78
|
+
name: string;
|
|
79
|
+
/**
|
|
80
|
+
* @generated from field: helmr.run.v0.Placement placement = 2;
|
|
81
|
+
*/
|
|
82
|
+
placement?: Placement;
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: bytes value_bytes = 3;
|
|
85
|
+
*/
|
|
86
|
+
valueBytes: Uint8Array;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* Describes the message helmr.run.v0.SecretInject.
|
|
90
|
+
* Use `create(SecretInjectSchema)` to create a new message.
|
|
91
|
+
*/
|
|
92
|
+
export declare const SecretInjectSchema: GenMessage<SecretInject>;
|
|
93
|
+
/**
|
|
94
|
+
* @generated from message helmr.run.v0.Placement
|
|
95
|
+
*/
|
|
96
|
+
export type Placement = Message<"helmr.run.v0.Placement"> & {
|
|
97
|
+
/**
|
|
98
|
+
* @generated from oneof helmr.run.v0.Placement.kind
|
|
99
|
+
*/
|
|
100
|
+
kind: {
|
|
101
|
+
/**
|
|
102
|
+
* @generated from field: helmr.run.v0.EnvPlacement env = 1;
|
|
103
|
+
*/
|
|
104
|
+
value: EnvPlacement;
|
|
105
|
+
case: "env";
|
|
106
|
+
} | {
|
|
107
|
+
/**
|
|
108
|
+
* @generated from field: helmr.run.v0.FilePlacement file = 2;
|
|
109
|
+
*/
|
|
110
|
+
value: FilePlacement;
|
|
111
|
+
case: "file";
|
|
112
|
+
} | {
|
|
113
|
+
/**
|
|
114
|
+
* @generated from field: helmr.run.v0.DirPlacement dir = 3;
|
|
115
|
+
*/
|
|
116
|
+
value: DirPlacement;
|
|
117
|
+
case: "dir";
|
|
118
|
+
} | {
|
|
119
|
+
case: undefined;
|
|
120
|
+
value?: undefined;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
/**
|
|
124
|
+
* Describes the message helmr.run.v0.Placement.
|
|
125
|
+
* Use `create(PlacementSchema)` to create a new message.
|
|
126
|
+
*/
|
|
127
|
+
export declare const PlacementSchema: GenMessage<Placement>;
|
|
128
|
+
/**
|
|
129
|
+
* @generated from message helmr.run.v0.EnvPlacement
|
|
130
|
+
*/
|
|
131
|
+
export type EnvPlacement = Message<"helmr.run.v0.EnvPlacement"> & {
|
|
132
|
+
/**
|
|
133
|
+
* @generated from field: string name = 1;
|
|
134
|
+
*/
|
|
135
|
+
name: string;
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Describes the message helmr.run.v0.EnvPlacement.
|
|
139
|
+
* Use `create(EnvPlacementSchema)` to create a new message.
|
|
140
|
+
*/
|
|
141
|
+
export declare const EnvPlacementSchema: GenMessage<EnvPlacement>;
|
|
142
|
+
/**
|
|
143
|
+
* @generated from message helmr.run.v0.FilePlacement
|
|
144
|
+
*/
|
|
145
|
+
export type FilePlacement = Message<"helmr.run.v0.FilePlacement"> & {
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: string path = 1;
|
|
148
|
+
*/
|
|
149
|
+
path: string;
|
|
150
|
+
/**
|
|
151
|
+
* Optional octal permission bits for the materialized secret file.
|
|
152
|
+
* Accepts values such as "0400", "600", and "0o600"; special bits are rejected.
|
|
153
|
+
*
|
|
154
|
+
* @generated from field: optional string mode = 2;
|
|
155
|
+
*/
|
|
156
|
+
mode?: string;
|
|
157
|
+
/**
|
|
158
|
+
* Optional runtime owner as an OCI-style user or user:group spec.
|
|
159
|
+
* Defaults to the resolved runtime user.
|
|
160
|
+
*
|
|
161
|
+
* @generated from field: optional string owner = 3;
|
|
162
|
+
*/
|
|
163
|
+
owner?: string;
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* Describes the message helmr.run.v0.FilePlacement.
|
|
167
|
+
* Use `create(FilePlacementSchema)` to create a new message.
|
|
168
|
+
*/
|
|
169
|
+
export declare const FilePlacementSchema: GenMessage<FilePlacement>;
|
|
170
|
+
/**
|
|
171
|
+
* @generated from message helmr.run.v0.DirPlacement
|
|
172
|
+
*/
|
|
173
|
+
export type DirPlacement = Message<"helmr.run.v0.DirPlacement"> & {
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: string path = 1;
|
|
176
|
+
*/
|
|
177
|
+
path: string;
|
|
178
|
+
/**
|
|
179
|
+
* Optional octal permission bits for the materialized secret directory.
|
|
180
|
+
* Accepts values such as "0700", "700", and "0o700"; special bits are rejected.
|
|
181
|
+
*
|
|
182
|
+
* @generated from field: optional string mode = 2;
|
|
183
|
+
*/
|
|
184
|
+
mode?: string;
|
|
185
|
+
/**
|
|
186
|
+
* Optional runtime owner as an OCI-style user or user:group spec.
|
|
187
|
+
* Defaults to the resolved runtime user.
|
|
188
|
+
*
|
|
189
|
+
* @generated from field: optional string owner = 3;
|
|
190
|
+
*/
|
|
191
|
+
owner?: string;
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* Describes the message helmr.run.v0.DirPlacement.
|
|
195
|
+
* Use `create(DirPlacementSchema)` to create a new message.
|
|
196
|
+
*/
|
|
197
|
+
export declare const DirPlacementSchema: GenMessage<DirPlacement>;
|
|
198
|
+
/**
|
|
199
|
+
* @generated from message helmr.run.v0.RunEvent
|
|
200
|
+
*/
|
|
201
|
+
export type RunEvent = Message<"helmr.run.v0.RunEvent"> & {
|
|
202
|
+
/**
|
|
203
|
+
* @generated from oneof helmr.run.v0.RunEvent.event
|
|
204
|
+
*/
|
|
205
|
+
event: {
|
|
206
|
+
/**
|
|
207
|
+
* @generated from field: bytes stdout_chunk = 1;
|
|
208
|
+
*/
|
|
209
|
+
value: Uint8Array;
|
|
210
|
+
case: "stdoutChunk";
|
|
211
|
+
} | {
|
|
212
|
+
/**
|
|
213
|
+
* @generated from field: bytes stderr_chunk = 2;
|
|
214
|
+
*/
|
|
215
|
+
value: Uint8Array;
|
|
216
|
+
case: "stderrChunk";
|
|
217
|
+
} | {
|
|
218
|
+
/**
|
|
219
|
+
* @generated from field: string log_entry = 3;
|
|
220
|
+
*/
|
|
221
|
+
value: string;
|
|
222
|
+
case: "logEntry";
|
|
223
|
+
} | {
|
|
224
|
+
/**
|
|
225
|
+
* @generated from field: helmr.run.v0.TaskComplete task_complete = 4;
|
|
226
|
+
*/
|
|
227
|
+
value: TaskComplete;
|
|
228
|
+
case: "taskComplete";
|
|
229
|
+
} | {
|
|
230
|
+
/**
|
|
231
|
+
* @generated from field: helmr.run.v0.WaitRequested wait_requested = 6;
|
|
232
|
+
*/
|
|
233
|
+
value: WaitRequested;
|
|
234
|
+
case: "waitRequested";
|
|
235
|
+
} | {
|
|
236
|
+
/**
|
|
237
|
+
* @generated from field: helmr.run.v0.EmitEvent emit_event = 8;
|
|
238
|
+
*/
|
|
239
|
+
value: EmitEvent;
|
|
240
|
+
case: "emitEvent";
|
|
241
|
+
} | {
|
|
242
|
+
/**
|
|
243
|
+
* @generated from field: helmr.run.v0.TaskOutput task_output = 9;
|
|
244
|
+
*/
|
|
245
|
+
value: TaskOutput;
|
|
246
|
+
case: "taskOutput";
|
|
247
|
+
} | {
|
|
248
|
+
case: undefined;
|
|
249
|
+
value?: undefined;
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
/**
|
|
253
|
+
* Describes the message helmr.run.v0.RunEvent.
|
|
254
|
+
* Use `create(RunEventSchema)` to create a new message.
|
|
255
|
+
*/
|
|
256
|
+
export declare const RunEventSchema: GenMessage<RunEvent>;
|
|
257
|
+
/**
|
|
258
|
+
* @generated from message helmr.run.v0.TaskComplete
|
|
259
|
+
*/
|
|
260
|
+
export type TaskComplete = Message<"helmr.run.v0.TaskComplete"> & {
|
|
261
|
+
/**
|
|
262
|
+
* @generated from field: int32 exit_code = 1;
|
|
263
|
+
*/
|
|
264
|
+
exitCode: number;
|
|
265
|
+
/**
|
|
266
|
+
* @generated from field: optional string error_message = 2;
|
|
267
|
+
*/
|
|
268
|
+
errorMessage?: string;
|
|
269
|
+
};
|
|
270
|
+
/**
|
|
271
|
+
* Describes the message helmr.run.v0.TaskComplete.
|
|
272
|
+
* Use `create(TaskCompleteSchema)` to create a new message.
|
|
273
|
+
*/
|
|
274
|
+
export declare const TaskCompleteSchema: GenMessage<TaskComplete>;
|
|
275
|
+
/**
|
|
276
|
+
* @generated from message helmr.run.v0.TaskOutput
|
|
277
|
+
*/
|
|
278
|
+
export type TaskOutput = Message<"helmr.run.v0.TaskOutput"> & {
|
|
279
|
+
/**
|
|
280
|
+
* @generated from field: string output_json = 1;
|
|
281
|
+
*/
|
|
282
|
+
outputJson: string;
|
|
283
|
+
};
|
|
284
|
+
/**
|
|
285
|
+
* Describes the message helmr.run.v0.TaskOutput.
|
|
286
|
+
* Use `create(TaskOutputSchema)` to create a new message.
|
|
287
|
+
*/
|
|
288
|
+
export declare const TaskOutputSchema: GenMessage<TaskOutput>;
|
|
289
|
+
/**
|
|
290
|
+
* @generated from message helmr.run.v0.WaitRequested
|
|
291
|
+
*/
|
|
292
|
+
export type WaitRequested = Message<"helmr.run.v0.WaitRequested"> & {
|
|
293
|
+
/**
|
|
294
|
+
* @generated from field: string correlation_id = 1;
|
|
295
|
+
*/
|
|
296
|
+
correlationId: string;
|
|
297
|
+
/**
|
|
298
|
+
* @generated from oneof helmr.run.v0.WaitRequested.kind
|
|
299
|
+
*/
|
|
300
|
+
kind: {
|
|
301
|
+
/**
|
|
302
|
+
* @generated from field: helmr.run.v0.ApprovalWait approval = 2;
|
|
303
|
+
*/
|
|
304
|
+
value: ApprovalWait;
|
|
305
|
+
case: "approval";
|
|
306
|
+
} | {
|
|
307
|
+
/**
|
|
308
|
+
* @generated from field: helmr.run.v0.MessageWait message = 3;
|
|
309
|
+
*/
|
|
310
|
+
value: MessageWait;
|
|
311
|
+
case: "message";
|
|
312
|
+
} | {
|
|
313
|
+
case: undefined;
|
|
314
|
+
value?: undefined;
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
/**
|
|
318
|
+
* Describes the message helmr.run.v0.WaitRequested.
|
|
319
|
+
* Use `create(WaitRequestedSchema)` to create a new message.
|
|
320
|
+
*/
|
|
321
|
+
export declare const WaitRequestedSchema: GenMessage<WaitRequested>;
|
|
322
|
+
/**
|
|
323
|
+
* @generated from message helmr.run.v0.ApprovalWait
|
|
324
|
+
*/
|
|
325
|
+
export type ApprovalWait = Message<"helmr.run.v0.ApprovalWait"> & {
|
|
326
|
+
/**
|
|
327
|
+
* @generated from field: string message = 1;
|
|
328
|
+
*/
|
|
329
|
+
message: string;
|
|
330
|
+
/**
|
|
331
|
+
* @generated from field: optional uint32 timeout = 2;
|
|
332
|
+
*/
|
|
333
|
+
timeout?: number;
|
|
334
|
+
};
|
|
335
|
+
/**
|
|
336
|
+
* Describes the message helmr.run.v0.ApprovalWait.
|
|
337
|
+
* Use `create(ApprovalWaitSchema)` to create a new message.
|
|
338
|
+
*/
|
|
339
|
+
export declare const ApprovalWaitSchema: GenMessage<ApprovalWait>;
|
|
340
|
+
/**
|
|
341
|
+
* @generated from message helmr.run.v0.MessageWait
|
|
342
|
+
*/
|
|
343
|
+
export type MessageWait = Message<"helmr.run.v0.MessageWait"> & {
|
|
344
|
+
/**
|
|
345
|
+
* @generated from field: optional string prompt = 1;
|
|
346
|
+
*/
|
|
347
|
+
prompt?: string;
|
|
348
|
+
/**
|
|
349
|
+
* @generated from field: optional uint32 timeout = 2;
|
|
350
|
+
*/
|
|
351
|
+
timeout?: number;
|
|
352
|
+
};
|
|
353
|
+
/**
|
|
354
|
+
* Describes the message helmr.run.v0.MessageWait.
|
|
355
|
+
* Use `create(MessageWaitSchema)` to create a new message.
|
|
356
|
+
*/
|
|
357
|
+
export declare const MessageWaitSchema: GenMessage<MessageWait>;
|
|
358
|
+
/**
|
|
359
|
+
* @generated from message helmr.run.v0.SuspendForCheckpoint
|
|
360
|
+
*/
|
|
361
|
+
export type SuspendForCheckpoint = Message<"helmr.run.v0.SuspendForCheckpoint"> & {
|
|
362
|
+
/**
|
|
363
|
+
* @generated from field: string waitpoint_id = 1;
|
|
364
|
+
*/
|
|
365
|
+
waitpointId: string;
|
|
366
|
+
/**
|
|
367
|
+
* @generated from field: string checkpoint_id = 2;
|
|
368
|
+
*/
|
|
369
|
+
checkpointId: string;
|
|
370
|
+
};
|
|
371
|
+
/**
|
|
372
|
+
* Describes the message helmr.run.v0.SuspendForCheckpoint.
|
|
373
|
+
* Use `create(SuspendForCheckpointSchema)` to create a new message.
|
|
374
|
+
*/
|
|
375
|
+
export declare const SuspendForCheckpointSchema: GenMessage<SuspendForCheckpoint>;
|
|
376
|
+
/**
|
|
377
|
+
* @generated from message helmr.run.v0.PauseReady
|
|
378
|
+
*/
|
|
379
|
+
export type PauseReady = Message<"helmr.run.v0.PauseReady"> & {
|
|
380
|
+
/**
|
|
381
|
+
* @generated from field: string waitpoint_id = 1;
|
|
382
|
+
*/
|
|
383
|
+
waitpointId: string;
|
|
384
|
+
/**
|
|
385
|
+
* @generated from field: string checkpoint_id = 2;
|
|
386
|
+
*/
|
|
387
|
+
checkpointId: string;
|
|
388
|
+
};
|
|
389
|
+
/**
|
|
390
|
+
* Describes the message helmr.run.v0.PauseReady.
|
|
391
|
+
* Use `create(PauseReadySchema)` to create a new message.
|
|
392
|
+
*/
|
|
393
|
+
export declare const PauseReadySchema: GenMessage<PauseReady>;
|
|
394
|
+
/**
|
|
395
|
+
* @generated from message helmr.run.v0.ResumeAttach
|
|
396
|
+
*/
|
|
397
|
+
export type ResumeAttach = Message<"helmr.run.v0.ResumeAttach"> & {
|
|
398
|
+
/**
|
|
399
|
+
* @generated from field: string checkpoint_id = 1;
|
|
400
|
+
*/
|
|
401
|
+
checkpointId: string;
|
|
402
|
+
/**
|
|
403
|
+
* @generated from field: string waitpoint_id = 2;
|
|
404
|
+
*/
|
|
405
|
+
waitpointId: string;
|
|
406
|
+
/**
|
|
407
|
+
* @generated from field: string session_id = 3;
|
|
408
|
+
*/
|
|
409
|
+
sessionId: string;
|
|
410
|
+
};
|
|
411
|
+
/**
|
|
412
|
+
* Describes the message helmr.run.v0.ResumeAttach.
|
|
413
|
+
* Use `create(ResumeAttachSchema)` to create a new message.
|
|
414
|
+
*/
|
|
415
|
+
export declare const ResumeAttachSchema: GenMessage<ResumeAttach>;
|
|
416
|
+
/**
|
|
417
|
+
* @generated from message helmr.run.v0.ResumeDecision
|
|
418
|
+
*/
|
|
419
|
+
export type ResumeDecision = Message<"helmr.run.v0.ResumeDecision"> & {
|
|
420
|
+
/**
|
|
421
|
+
* @generated from field: string waitpoint_id = 1;
|
|
422
|
+
*/
|
|
423
|
+
waitpointId: string;
|
|
424
|
+
/**
|
|
425
|
+
* @generated from field: string kind = 2;
|
|
426
|
+
*/
|
|
427
|
+
kind: string;
|
|
428
|
+
/**
|
|
429
|
+
* @generated from field: string resolution_payload_json = 3;
|
|
430
|
+
*/
|
|
431
|
+
resolutionPayloadJson: string;
|
|
432
|
+
/**
|
|
433
|
+
* @generated from field: bool timed_out = 4;
|
|
434
|
+
*/
|
|
435
|
+
timedOut: boolean;
|
|
436
|
+
};
|
|
437
|
+
/**
|
|
438
|
+
* Describes the message helmr.run.v0.ResumeDecision.
|
|
439
|
+
* Use `create(ResumeDecisionSchema)` to create a new message.
|
|
440
|
+
*/
|
|
441
|
+
export declare const ResumeDecisionSchema: GenMessage<ResumeDecision>;
|
|
442
|
+
/**
|
|
443
|
+
* @generated from message helmr.run.v0.ResumeAck
|
|
444
|
+
*/
|
|
445
|
+
export type ResumeAck = Message<"helmr.run.v0.ResumeAck"> & {
|
|
446
|
+
/**
|
|
447
|
+
* @generated from field: string waitpoint_id = 1;
|
|
448
|
+
*/
|
|
449
|
+
waitpointId: string;
|
|
450
|
+
};
|
|
451
|
+
/**
|
|
452
|
+
* Describes the message helmr.run.v0.ResumeAck.
|
|
453
|
+
* Use `create(ResumeAckSchema)` to create a new message.
|
|
454
|
+
*/
|
|
455
|
+
export declare const ResumeAckSchema: GenMessage<ResumeAck>;
|
|
456
|
+
/**
|
|
457
|
+
* @generated from message helmr.run.v0.EmitEvent
|
|
458
|
+
*/
|
|
459
|
+
export type EmitEvent = Message<"helmr.run.v0.EmitEvent"> & {
|
|
460
|
+
/**
|
|
461
|
+
* @generated from field: string type = 1;
|
|
462
|
+
*/
|
|
463
|
+
type: string;
|
|
464
|
+
/**
|
|
465
|
+
* @generated from field: string content_json = 2;
|
|
466
|
+
*/
|
|
467
|
+
contentJson: string;
|
|
468
|
+
};
|
|
469
|
+
/**
|
|
470
|
+
* Describes the message helmr.run.v0.EmitEvent.
|
|
471
|
+
* Use `create(EmitEventSchema)` to create a new message.
|
|
472
|
+
*/
|
|
473
|
+
export declare const EmitEventSchema: GenMessage<EmitEvent>;
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __returnValue = (v) => v;
|
|
3
|
+
function __exportSetter(name, newValue) {
|
|
4
|
+
this[name] = __returnValue.bind(null, newValue);
|
|
5
|
+
}
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: true,
|
|
11
|
+
configurable: true,
|
|
12
|
+
set: __exportSetter.bind(all, name)
|
|
13
|
+
});
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
// proto/typescript/src/gen/bundle_pb.ts
|
|
17
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
18
|
+
var file_bundle = /* @__PURE__ */ fileDesc("CgxidW5kbGUucHJvdG8SD2hlbG1yLmJ1bmRsZS52MCKVAgoGQnVuZGxlEikKBWltYWdlGAEgASgLMhouaGVsbXIuYnVuZGxlLnYwLkltYWdlU3BlYxItCgdzYW5kYm94GAIgASgLMhwuaGVsbXIuYnVuZGxlLnYwLlNhbmRib3hTcGVjEicKBHRhc2sYAyABKAsyGS5oZWxtci5idW5kbGUudjAuVGFza1NwZWMSOgoKc3ViX2ltYWdlcxgEIAMoCzImLmhlbG1yLmJ1bmRsZS52MC5CdW5kbGUuU3ViSW1hZ2VzRW50cnkaTAoOU3ViSW1hZ2VzRW50cnkSCwoDa2V5GAEgASgJEikKBXZhbHVlGAIgASgLMhouaGVsbXIuYnVuZGxlLnYwLkltYWdlU3BlYzoCOAEiLAoIUGxhdGZvcm0SCgoCb3MYASABKAkSFAoMYXJjaGl0ZWN0dXJlGAIgASgJInsKCUltYWdlU3BlYxIWCg5mb3JtYXRfdmVyc2lvbhgBIAEoDRIrCghwbGF0Zm9ybRgCIAEoCzIZLmhlbG1yLmJ1bmRsZS52MC5QbGF0Zm9ybRIpCgVzdGVwcxgDIAMoCzIaLmhlbG1yLmJ1bmRsZS52MC5JbWFnZVN0ZXAiiwMKCUltYWdlU3RlcBIlCgRmcm9tGAEgASgLMhUuaGVsbXIuYnVuZGxlLnYwLkZyb21IABIjCgNydW4YAiABKAsyFC5oZWxtci5idW5kbGUudjAuUnVuSAASOwoQY29weV9zb3VyY2VfZmlsZRgFIAEoCzIfLmhlbG1yLmJ1bmRsZS52MC5Db3B5U291cmNlRmlsZUgAEjkKD2NvcHlfc291cmNlX2RpchgGIAEoCzIeLmhlbG1yLmJ1bmRsZS52MC5Db3B5U291cmNlRGlySAASOQoPY29weV9mcm9tX2ltYWdlGAcgASgLMh4uaGVsbXIuYnVuZGxlLnYwLkNvcHlGcm9tSW1hZ2VIABIrCgd3b3JrZGlyGAggASgLMhguaGVsbXIuYnVuZGxlLnYwLldvcmtkaXJIABIlCgR1c2VyGAkgASgLMhUuaGVsbXIuYnVuZGxlLnYwLlVzZXJIABIjCgNlbnYYCiABKAsyFC5oZWxtci5idW5kbGUudjAuRW52SABCBgoEa2luZCITCgRGcm9tEgsKA3JlZhgBIAEoCSKJAQoDUnVuEgwKBGFyZ3YYASADKAkSOAoMY2FjaGVfbW91bnRzGAIgAygLMiIuaGVsbXIuYnVuZGxlLnYwLkNhY2hlTW91bnRCaW5kaW5nEjoKDXNlY3JldF9tb3VudHMYAyADKAsyIy5oZWxtci5idW5kbGUudjAuU2VjcmV0TW91bnRCaW5kaW5nIh0KDVNvdXJjZUZpbGVSZWYSDAoEcGF0aBgBIAEoCSIsCgxTb3VyY2VEaXJSZWYSDAoEcGF0aBgBIAEoCRIOCgZpZ25vcmUYAiADKAkiXgoOQ29weVNvdXJjZUZpbGUSCwoDZHN0GAEgASgJEi8KB3NyY19yZWYYAiABKAsyHi5oZWxtci5idW5kbGUudjAuU291cmNlRmlsZVJlZhIOCgZkaWdlc3QYAyABKAkicQoNQ29weVNvdXJjZURpchILCgNkc3QYASABKAkSLgoHc3JjX3JlZhgCIAEoCzIdLmhlbG1yLmJ1bmRsZS52MC5Tb3VyY2VEaXJSZWYSEwoLdHJlZV9kaWdlc3QYAyABKAkSDgoGaWdub3JlGAQgAygJIkUKDUNvcHlGcm9tSW1hZ2USCwoDZHN0GAEgASgJEhUKDXNyY19pbWFnZV9rZXkYAiABKAkSEAoIc3JjX3BhdGgYAyABKAkiFwoHV29ya2RpchIMCgRwYXRoGAEgASgJIhQKBFVzZXISDAoEbmFtZRgBIAEoCSIhCgNFbnYSCwoDa2V5GAEgASgJEg0KBXZhbHVlGAIgASgJIkMKEUNhY2hlTW91bnRCaW5kaW5nEgsKA2RzdBgBIAEoCRIQCghjYWNoZV9pZBgCIAEoCRIPCgdzaGFyaW5nGAMgASgJIhkKCVNlY3JldFJlZhIMCgRuYW1lGAEgASgJIlEKElNlY3JldE1vdW50QmluZGluZxILCgNkc3QYASABKAkSLgoKc2VjcmV0X3JlZhgCIAEoCzIaLmhlbG1yLmJ1bmRsZS52MC5TZWNyZXRSZWYihQEKC1NhbmRib3hTcGVjEgoKAmlkGAEgASgJEjsKCXdvcmtzcGFjZRgCIAEoCzIoLmhlbG1yLmJ1bmRsZS52MC5Xb3Jrc3BhY2VSdW50aW1lQmluZGluZxItCglyZXNvdXJjZXMYAyABKAsyGi5oZWxtci5idW5kbGUudjAuUmVzb3VyY2VzIi0KF1dvcmtzcGFjZVJ1bnRpbWVCaW5kaW5nEhIKCm1vdW50X3BhdGgYASABKAkiKAoJUmVzb3VyY2VzEgsKA2NwdRgBIAEoDRIOCgZtZW1vcnkYAiABKAkiTgoPU2VjcmV0UGxhY2VtZW50EgwKBG5hbWUYASABKAkSLQoJcGxhY2VtZW50GAIgASgLMhouaGVsbXIuYnVuZGxlLnYwLlBsYWNlbWVudCKfAQoJUGxhY2VtZW50EiwKA2VudhgBIAEoCzIdLmhlbG1yLmJ1bmRsZS52MC5FbnZQbGFjZW1lbnRIABIuCgRmaWxlGAIgASgLMh4uaGVsbXIuYnVuZGxlLnYwLkZpbGVQbGFjZW1lbnRIABIsCgNkaXIYAyABKAsyHS5oZWxtci5idW5kbGUudjAuRGlyUGxhY2VtZW50SABCBgoEa2luZCIcCgxFbnZQbGFjZW1lbnQSDAoEbmFtZRgBIAEoCSJXCg1GaWxlUGxhY2VtZW50EgwKBHBhdGgYASABKAkSEQoEbW9kZRgCIAEoCUgAiAEBEhIKBW93bmVyGAMgASgJSAGIAQFCBwoFX21vZGVCCAoGX293bmVyIlYKDERpclBsYWNlbWVudBIMCgRwYXRoGAEgASgJEhEKBG1vZGUYAiABKAlIAIgBARISCgVvd25lchgDIAEoCUgBiAEBQgcKBV9tb2RlQggKBl9vd25lciKlAQoIVGFza1NwZWMSCgoCaWQYASABKAkSEgoKc2FuZGJveF9pZBgCIAEoCRITCgttb2R1bGVfcGF0aBgDIAEoCRITCgtleHBvcnRfbmFtZRgEIAEoCRIcChRtYXhfZHVyYXRpb25fc2Vjb25kcxgFIAEoDRIxCgdzZWNyZXRzGAYgAygLMiAuaGVsbXIuYnVuZGxlLnYwLlNlY3JldFBsYWNlbWVudEJEWkJnaXRodWIuY29tL2hlbG1yZG90ZGV2L2hlbG1yL2ludGVybmFsL2dlbi9oZWxtci9idW5kbGUvdjA7YnVuZGxldjBiBnByb3RvMw");
|
|
19
|
+
var BundleSchema = /* @__PURE__ */ messageDesc(file_bundle, 0);
|
|
20
|
+
var PlatformSchema = /* @__PURE__ */ messageDesc(file_bundle, 1);
|
|
21
|
+
var ImageSpecSchema = /* @__PURE__ */ messageDesc(file_bundle, 2);
|
|
22
|
+
var ImageStepSchema = /* @__PURE__ */ messageDesc(file_bundle, 3);
|
|
23
|
+
var FromSchema = /* @__PURE__ */ messageDesc(file_bundle, 4);
|
|
24
|
+
var RunSchema = /* @__PURE__ */ messageDesc(file_bundle, 5);
|
|
25
|
+
var SourceFileRefSchema = /* @__PURE__ */ messageDesc(file_bundle, 6);
|
|
26
|
+
var SourceDirRefSchema = /* @__PURE__ */ messageDesc(file_bundle, 7);
|
|
27
|
+
var CopySourceFileSchema = /* @__PURE__ */ messageDesc(file_bundle, 8);
|
|
28
|
+
var CopySourceDirSchema = /* @__PURE__ */ messageDesc(file_bundle, 9);
|
|
29
|
+
var CopyFromImageSchema = /* @__PURE__ */ messageDesc(file_bundle, 10);
|
|
30
|
+
var WorkdirSchema = /* @__PURE__ */ messageDesc(file_bundle, 11);
|
|
31
|
+
var UserSchema = /* @__PURE__ */ messageDesc(file_bundle, 12);
|
|
32
|
+
var EnvSchema = /* @__PURE__ */ messageDesc(file_bundle, 13);
|
|
33
|
+
var CacheMountBindingSchema = /* @__PURE__ */ messageDesc(file_bundle, 14);
|
|
34
|
+
var SecretRefSchema = /* @__PURE__ */ messageDesc(file_bundle, 15);
|
|
35
|
+
var SecretMountBindingSchema = /* @__PURE__ */ messageDesc(file_bundle, 16);
|
|
36
|
+
var SandboxSpecSchema = /* @__PURE__ */ messageDesc(file_bundle, 17);
|
|
37
|
+
var WorkspaceRuntimeBindingSchema = /* @__PURE__ */ messageDesc(file_bundle, 18);
|
|
38
|
+
var ResourcesSchema = /* @__PURE__ */ messageDesc(file_bundle, 19);
|
|
39
|
+
var SecretPlacementSchema = /* @__PURE__ */ messageDesc(file_bundle, 20);
|
|
40
|
+
var PlacementSchema = /* @__PURE__ */ messageDesc(file_bundle, 21);
|
|
41
|
+
var EnvPlacementSchema = /* @__PURE__ */ messageDesc(file_bundle, 22);
|
|
42
|
+
var FilePlacementSchema = /* @__PURE__ */ messageDesc(file_bundle, 23);
|
|
43
|
+
var DirPlacementSchema = /* @__PURE__ */ messageDesc(file_bundle, 24);
|
|
44
|
+
var TaskSpecSchema = /* @__PURE__ */ messageDesc(file_bundle, 25);
|
|
45
|
+
// proto/typescript/src/gen/run_pb.ts
|
|
46
|
+
var exports_run_pb = {};
|
|
47
|
+
__export(exports_run_pb, {
|
|
48
|
+
file_run: () => file_run,
|
|
49
|
+
WorkspaceOverlayMountSchema: () => WorkspaceOverlayMountSchema,
|
|
50
|
+
WaitRequestedSchema: () => WaitRequestedSchema,
|
|
51
|
+
TaskOutputSchema: () => TaskOutputSchema,
|
|
52
|
+
TaskCompleteSchema: () => TaskCompleteSchema,
|
|
53
|
+
SuspendForCheckpointSchema: () => SuspendForCheckpointSchema,
|
|
54
|
+
SecretInjectSchema: () => SecretInjectSchema,
|
|
55
|
+
RunTaskRequestSchema: () => RunTaskRequestSchema,
|
|
56
|
+
RunEventSchema: () => RunEventSchema,
|
|
57
|
+
ResumeDecisionSchema: () => ResumeDecisionSchema,
|
|
58
|
+
ResumeAttachSchema: () => ResumeAttachSchema,
|
|
59
|
+
ResumeAckSchema: () => ResumeAckSchema,
|
|
60
|
+
PlacementSchema: () => PlacementSchema2,
|
|
61
|
+
PauseReadySchema: () => PauseReadySchema,
|
|
62
|
+
MessageWaitSchema: () => MessageWaitSchema,
|
|
63
|
+
FilePlacementSchema: () => FilePlacementSchema2,
|
|
64
|
+
EnvPlacementSchema: () => EnvPlacementSchema2,
|
|
65
|
+
EmitEventSchema: () => EmitEventSchema,
|
|
66
|
+
DirPlacementSchema: () => DirPlacementSchema2,
|
|
67
|
+
ApprovalWaitSchema: () => ApprovalWaitSchema
|
|
68
|
+
});
|
|
69
|
+
import { fileDesc as fileDesc2, messageDesc as messageDesc2 } from "@bufbuild/protobuf/codegenv2";
|
|
70
|
+
var file_run = /* @__PURE__ */ fileDesc2("CglydW4ucHJvdG8SDGhlbG1yLnJ1bi52MCLWAQoOUnVuVGFza1JlcXVlc3QSDwoHdGFza19pZBgBIAEoCRITCgttb2R1bGVfcGF0aBgCIAEoCRILCgNjd2QYAyABKAkSKwoHc2VjcmV0cxgEIAMoCzIaLmhlbG1yLnJ1bi52MC5TZWNyZXRJbmplY3QSDgoGcnVuX2lkGAUgASgJEhQKDHBheWxvYWRfanNvbhgGIAEoCRI+ChF3b3Jrc3BhY2Vfb3ZlcmxheRgHIAEoCzIjLmhlbG1yLnJ1bi52MC5Xb3Jrc3BhY2VPdmVybGF5TW91bnQigAEKFVdvcmtzcGFjZU92ZXJsYXlNb3VudBISCgptb3VudF9wYXRoGAEgASgJEhsKE2ltYWdlX3Jvb3Rmc19kaWdlc3QYAiABKAkSIgoacnVudGltZV9zb3VyY2VfdHJlZV9kaWdlc3QYAyABKAkSEgoKdXBwZXJfa2luZBgEIAEoCSJdCgxTZWNyZXRJbmplY3QSDAoEbmFtZRgBIAEoCRIqCglwbGFjZW1lbnQYAiABKAsyFy5oZWxtci5ydW4udjAuUGxhY2VtZW50EhMKC3ZhbHVlX2J5dGVzGAMgASgMIpYBCglQbGFjZW1lbnQSKQoDZW52GAEgASgLMhouaGVsbXIucnVuLnYwLkVudlBsYWNlbWVudEgAEisKBGZpbGUYAiABKAsyGy5oZWxtci5ydW4udjAuRmlsZVBsYWNlbWVudEgAEikKA2RpchgDIAEoCzIaLmhlbG1yLnJ1bi52MC5EaXJQbGFjZW1lbnRIAEIGCgRraW5kIhwKDEVudlBsYWNlbWVudBIMCgRuYW1lGAEgASgJIlcKDUZpbGVQbGFjZW1lbnQSDAoEcGF0aBgBIAEoCRIRCgRtb2RlGAIgASgJSACIAQESEgoFb3duZXIYAyABKAlIAYgBAUIHCgVfbW9kZUIICgZfb3duZXIiVgoMRGlyUGxhY2VtZW50EgwKBHBhdGgYASABKAkSEQoEbW9kZRgCIAEoCUgAiAEBEhIKBW93bmVyGAMgASgJSAGIAQFCBwoFX21vZGVCCAoGX293bmVyIqQCCghSdW5FdmVudBIWCgxzdGRvdXRfY2h1bmsYASABKAxIABIWCgxzdGRlcnJfY2h1bmsYAiABKAxIABITCglsb2dfZW50cnkYAyABKAlIABIzCg10YXNrX2NvbXBsZXRlGAQgASgLMhouaGVsbXIucnVuLnYwLlRhc2tDb21wbGV0ZUgAEjUKDndhaXRfcmVxdWVzdGVkGAYgASgLMhsuaGVsbXIucnVuLnYwLldhaXRSZXF1ZXN0ZWRIABItCgplbWl0X2V2ZW50GAggASgLMhcuaGVsbXIucnVuLnYwLkVtaXRFdmVudEgAEi8KC3Rhc2tfb3V0cHV0GAkgASgLMhguaGVsbXIucnVuLnYwLlRhc2tPdXRwdXRIAEIHCgVldmVudCJPCgxUYXNrQ29tcGxldGUSEQoJZXhpdF9jb2RlGAEgASgFEhoKDWVycm9yX21lc3NhZ2UYAiABKAlIAIgBAUIQCg5fZXJyb3JfbWVzc2FnZSIhCgpUYXNrT3V0cHV0EhMKC291dHB1dF9qc29uGAEgASgJIo0BCg1XYWl0UmVxdWVzdGVkEhYKDmNvcnJlbGF0aW9uX2lkGAEgASgJEi4KCGFwcHJvdmFsGAIgASgLMhouaGVsbXIucnVuLnYwLkFwcHJvdmFsV2FpdEgAEiwKB21lc3NhZ2UYAyABKAsyGS5oZWxtci5ydW4udjAuTWVzc2FnZVdhaXRIAEIGCgRraW5kIkEKDEFwcHJvdmFsV2FpdBIPCgdtZXNzYWdlGAEgASgJEhQKB3RpbWVvdXQYAiABKA1IAIgBAUIKCghfdGltZW91dCJPCgtNZXNzYWdlV2FpdBITCgZwcm9tcHQYASABKAlIAIgBARIUCgd0aW1lb3V0GAIgASgNSAGIAQFCCQoHX3Byb21wdEIKCghfdGltZW91dCJDChRTdXNwZW5kRm9yQ2hlY2twb2ludBIUCgx3YWl0cG9pbnRfaWQYASABKAkSFQoNY2hlY2twb2ludF9pZBgCIAEoCSI5CgpQYXVzZVJlYWR5EhQKDHdhaXRwb2ludF9pZBgBIAEoCRIVCg1jaGVja3BvaW50X2lkGAIgASgJIk8KDFJlc3VtZUF0dGFjaBIVCg1jaGVja3BvaW50X2lkGAEgASgJEhQKDHdhaXRwb2ludF9pZBgCIAEoCRISCgpzZXNzaW9uX2lkGAMgASgJImgKDlJlc3VtZURlY2lzaW9uEhQKDHdhaXRwb2ludF9pZBgBIAEoCRIMCgRraW5kGAIgASgJEh8KF3Jlc29sdXRpb25fcGF5bG9hZF9qc29uGAMgASgJEhEKCXRpbWVkX291dBgEIAEoCCIhCglSZXN1bWVBY2sSFAoMd2FpdHBvaW50X2lkGAEgASgJIi8KCUVtaXRFdmVudBIMCgR0eXBlGAEgASgJEhQKDGNvbnRlbnRfanNvbhgCIAEoCUI+WjxnaXRodWIuY29tL2hlbG1yZG90ZGV2L2hlbG1yL2ludGVybmFsL2dlbi9oZWxtci9ydW4vdjA7cnVudjBiBnByb3RvMw");
|
|
71
|
+
var RunTaskRequestSchema = /* @__PURE__ */ messageDesc2(file_run, 0);
|
|
72
|
+
var WorkspaceOverlayMountSchema = /* @__PURE__ */ messageDesc2(file_run, 1);
|
|
73
|
+
var SecretInjectSchema = /* @__PURE__ */ messageDesc2(file_run, 2);
|
|
74
|
+
var PlacementSchema2 = /* @__PURE__ */ messageDesc2(file_run, 3);
|
|
75
|
+
var EnvPlacementSchema2 = /* @__PURE__ */ messageDesc2(file_run, 4);
|
|
76
|
+
var FilePlacementSchema2 = /* @__PURE__ */ messageDesc2(file_run, 5);
|
|
77
|
+
var DirPlacementSchema2 = /* @__PURE__ */ messageDesc2(file_run, 6);
|
|
78
|
+
var RunEventSchema = /* @__PURE__ */ messageDesc2(file_run, 7);
|
|
79
|
+
var TaskCompleteSchema = /* @__PURE__ */ messageDesc2(file_run, 8);
|
|
80
|
+
var TaskOutputSchema = /* @__PURE__ */ messageDesc2(file_run, 9);
|
|
81
|
+
var WaitRequestedSchema = /* @__PURE__ */ messageDesc2(file_run, 10);
|
|
82
|
+
var ApprovalWaitSchema = /* @__PURE__ */ messageDesc2(file_run, 11);
|
|
83
|
+
var MessageWaitSchema = /* @__PURE__ */ messageDesc2(file_run, 12);
|
|
84
|
+
var SuspendForCheckpointSchema = /* @__PURE__ */ messageDesc2(file_run, 13);
|
|
85
|
+
var PauseReadySchema = /* @__PURE__ */ messageDesc2(file_run, 14);
|
|
86
|
+
var ResumeAttachSchema = /* @__PURE__ */ messageDesc2(file_run, 15);
|
|
87
|
+
var ResumeDecisionSchema = /* @__PURE__ */ messageDesc2(file_run, 16);
|
|
88
|
+
var ResumeAckSchema = /* @__PURE__ */ messageDesc2(file_run, 17);
|
|
89
|
+
var EmitEventSchema = /* @__PURE__ */ messageDesc2(file_run, 18);
|
|
90
|
+
export {
|
|
91
|
+
exports_run_pb as runProto,
|
|
92
|
+
file_bundle,
|
|
93
|
+
WorkspaceRuntimeBindingSchema,
|
|
94
|
+
WorkdirSchema,
|
|
95
|
+
UserSchema,
|
|
96
|
+
TaskSpecSchema,
|
|
97
|
+
SourceFileRefSchema,
|
|
98
|
+
SourceDirRefSchema,
|
|
99
|
+
SecretRefSchema,
|
|
100
|
+
SecretPlacementSchema,
|
|
101
|
+
SecretMountBindingSchema,
|
|
102
|
+
SandboxSpecSchema,
|
|
103
|
+
RunSchema,
|
|
104
|
+
ResourcesSchema,
|
|
105
|
+
PlatformSchema,
|
|
106
|
+
PlacementSchema,
|
|
107
|
+
ImageStepSchema,
|
|
108
|
+
ImageSpecSchema,
|
|
109
|
+
FromSchema,
|
|
110
|
+
FilePlacementSchema,
|
|
111
|
+
EnvSchema,
|
|
112
|
+
EnvPlacementSchema,
|
|
113
|
+
DirPlacementSchema,
|
|
114
|
+
CopySourceFileSchema,
|
|
115
|
+
CopySourceDirSchema,
|
|
116
|
+
CopyFromImageSchema,
|
|
117
|
+
CacheMountBindingSchema,
|
|
118
|
+
BundleSchema
|
|
119
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@helmr/proto",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Generated protocol bindings for Helmr.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/helmrdotdev/helmr.git",
|
|
12
|
+
"directory": "proto/typescript"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/helmrdotdev/helmr/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://helmr.dev",
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@bufbuild/protobuf": "^2.11.0"
|
|
34
|
+
}
|
|
35
|
+
}
|