-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntime-contracts.ts
More file actions
762 lines (685 loc) · 19.3 KB
/
runtime-contracts.ts
File metadata and controls
762 lines (685 loc) · 19.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
import { assertRuntimePolicy } from "./runtime-policy.js"
import type { RuntimePolicy } from "./runtime-policy.js"
import { SANDBOX_WORKSPACE_ROOT } from "./runtime-action-adapter.js"
import type { ArtifactFileDigest, ArtifactSpec } from "./artifact-manifest.js"
import type { HostToolDefinition, HostToolRegistry } from "./host-tool-registry.js"
import type {
RUNTIME_EPISODE_ACTION_SCHEMA,
RUNTIME_EPISODE_OBSERVATION_SCHEMA,
RUNTIME_EPISODE_SNAPSHOT_SCHEMA,
RUNTIME_EPISODE_TRACE_SCHEMA,
} from "./runtime-episode-contracts.js"
export type RuntimeBackendKind = "wordpress-playground" | (string & {})
export type SandboxWorkspaceMode = "repo-backed" | "site-backed"
export interface EnvironmentSpec {
kind: string
name?: string
blueprint?: unknown
version?: string
assets?: RuntimeAssetSpec
}
export interface RuntimeAssetSpec {
wordpressZip?: string
}
export interface RuntimeCreateSpec {
backend: RuntimeBackendKind
environment: EnvironmentSpec
policy: RuntimePolicy
hostTools?: HostToolRegistry | HostToolDefinition[]
artifactsDirectory?: string
secretEnv?: Record<string, string>
metadata?: Record<string, unknown>
preview?: RuntimePreviewSpec
onBrowserStartupProgress?: BrowserStartupProgressListener
}
export type BrowserStartupProgressPhase =
| "preview:start"
| "preview:loading-client"
| "preview:loading-wordpress"
| "preview:applying-blueprint"
| "preview:installing-dependencies"
| "preview:activating-dependencies"
| "preview:connecting-client"
| "preview:ready"
| "preview:error"
| (string & {})
export type BrowserStartupProgressStatus = "running" | "complete" | "failed"
export interface BrowserStartupProgressEvent {
schema: "wp-codebox/browser-startup-progress/v1"
phase: BrowserStartupProgressPhase
status: BrowserStartupProgressStatus
label?: string
elapsed_ms?: number
detail?: Record<string, unknown>
}
export type BrowserStartupProgressListener = (event: BrowserStartupProgressEvent) => void | Promise<void>
export interface RuntimePreviewSpec {
publicUrl?: string
siteUrl?: string
port?: number
bind?: string
}
export interface WorkspaceRecipeMount {
type?: "directory" | "file"
source: string
target: string
mode?: "readonly" | "readwrite"
metadata?: Record<string, unknown>
}
export interface WorkspaceRecipeRuntimeStack {
mounts?: WorkspaceRecipeMount[]
}
export type WorkspaceRecipeRuntimeOverlayKind = "bundled-library"
export type WorkspaceRecipeRuntimeOverlayLibrary = "php-ai-client"
export type WorkspaceRecipeRuntimeOverlayStrategy = "wordpress-scoped-bundle"
export interface WorkspaceRecipeRuntimeOverlay {
kind: WorkspaceRecipeRuntimeOverlayKind
library: WorkspaceRecipeRuntimeOverlayLibrary
source: string
target?: string
strategy: WorkspaceRecipeRuntimeOverlayStrategy
metadata?: Record<string, unknown>
}
export interface WorkspaceRecipeRuntimeBackendPackage {
kind: "playground"
source: string
package?: string
entrypoint?: string
metadata?: Record<string, unknown>
}
export interface WorkspaceRecipeStagedFile {
source: string
target: string
}
export interface WorkspaceRecipeStep {
command: string
args?: string[]
}
export interface WorkspaceRecipePluginRuntimePhp {
memoryLimit?: string
maxExecutionTime?: number
}
export interface WorkspaceRecipePluginRuntimeHealthProbe {
name: string
type: "plugin-active" | "php" | "wp-cli"
pluginFile?: string
code?: string
command?: string
}
export interface WorkspaceRecipePluginRuntime {
label?: string
php?: WorkspaceRecipePluginRuntimePhp
wpConfigDefines?: Record<string, string | number | boolean | null>
setup?: WorkspaceRecipeStep[]
healthProbes?: WorkspaceRecipePluginRuntimeHealthProbe[]
}
export interface WorkspaceRecipeAgentBundle {
source?: string
bundle?: Record<string, unknown>
slug?: string
on_conflict?: "error" | "skip" | "upgrade"
owner_id?: number
token_env?: string
}
export interface WorkspaceRecipeExtraPlugin {
source: string
slug?: string
pluginFile?: string
activate?: boolean
sha256?: string
loadAs?: "plugin" | "mu-plugin"
}
export type WorkspaceRecipeSiteSeedType = "fixture" | "parent_site"
export type WorkspaceRecipeSiteSeedFormat = "json" | (string & {})
export interface WorkspaceRecipeSiteSeedScopeSelector {
ids?: number[]
slugs?: string[]
names?: string[]
postTypes?: string[]
taxonomies?: string[]
roles?: string[]
statuses?: string[]
includeFiles?: boolean
anonymize?: boolean
maxRecords?: number
}
export interface WorkspaceRecipeSiteSeed {
type: WorkspaceRecipeSiteSeedType
name: string
source?: string
format?: WorkspaceRecipeSiteSeedFormat
scopes: {
posts?: WorkspaceRecipeSiteSeedScopeSelector
terms?: WorkspaceRecipeSiteSeedScopeSelector
options?: WorkspaceRecipeSiteSeedScopeSelector
users?: WorkspaceRecipeSiteSeedScopeSelector
media?: WorkspaceRecipeSiteSeedScopeSelector
activePlugins?: boolean
activeTheme?: boolean
}
}
export type WorkspaceRecipeSeedType = "plugin_scaffold" | "theme_scaffold" | "directory"
export interface WorkspaceRecipeWorkspaceSeed {
type: WorkspaceRecipeSeedType
slug?: string
name?: string
source?: string
excludePaths?: string[]
}
export interface WorkspaceRecipeWorkspace {
target?: string
mode?: "readonly" | "readwrite"
sourceMode?: SandboxWorkspaceMode
seed: WorkspaceRecipeWorkspaceSeed
}
export interface SandboxWorkspaceMountRef {
target: string
mode: "readonly" | "readwrite"
sourceMode: SandboxWorkspaceMode
workspaceRef?: string
mountRole?: string
component?: string
repo?: string
gitRef?: string
defaultBranch?: string
wpContentPath?: string
}
export interface SandboxWorkspaceContract {
schema: "wp-codebox/sandbox-workspace/v1"
root: typeof SANDBOX_WORKSPACE_ROOT | (string & {})
defaultMode: SandboxWorkspaceMode
mounts: SandboxWorkspaceMountRef[]
toolPolicy?: unknown
}
export interface WorkspaceRecipe {
schema: "wp-codebox/workspace-recipe/v1"
runtime?: {
backend?: RuntimeBackendKind
name?: string
wp?: string
blueprint?: unknown
preview?: RuntimePreviewSpec
assets?: RuntimeAssetSpec
backendPackage?: WorkspaceRecipeRuntimeBackendPackage
stack?: WorkspaceRecipeRuntimeStack
overlays?: WorkspaceRecipeRuntimeOverlay[]
}
inputs?: {
workspaces?: WorkspaceRecipeWorkspace[]
mounts?: WorkspaceRecipeMount[]
extra_plugins?: WorkspaceRecipeExtraPlugin[]
extraPlugins?: WorkspaceRecipeExtraPlugin[]
secretEnv?: string[]
pluginRuntime?: WorkspaceRecipePluginRuntime
siteSeeds?: WorkspaceRecipeSiteSeed[]
stagedFiles?: WorkspaceRecipeStagedFile[]
agent_bundles?: WorkspaceRecipeAgentBundle[]
inherit?: WorkspaceRecipeInheritanceRequest
inheritance?: WorkspaceRecipeInheritanceResolution
}
workflow: {
before?: WorkspaceRecipeStep[]
steps: WorkspaceRecipeStep[]
after?: WorkspaceRecipeStep[]
}
artifacts?: {
directory?: string
verify?: boolean | WorkspaceRecipeArtifactVerifier
workspacePolicy?: boolean | WorkspaceRecipeWorkspacePolicyArtifact
}
}
export interface WorkspaceRecipeArtifactVerifier {
enabled?: boolean
strict?: boolean
}
export interface WorkspaceRecipeWorkspacePolicyArtifact {
enabled?: boolean
strict?: boolean
writableRoots?: string[]
hiddenPaths?: string[]
gitBacked?: boolean
}
export interface WorkspaceRecipeInheritanceRequest {
connectors?: string[]
settings?: string[]
}
export interface WorkspaceRecipeInheritanceConnector {
name: string
status: "resolved" | "unresolved" | "skipped" | (string & {})
provider?: string
model?: string
providerPluginPaths?: string[]
secretEnv?: string[]
credentials?: ConnectorCredentialEnvelope
}
export type ConnectorCredentialStatus = "available" | "missing" | "denied"
export interface ConnectorCredentialSecret {
name: string
status: ConnectorCredentialStatus
scope?: string
source?: "parent-env" | "connector" | (string & {})
reason?: string
}
export interface ConnectorCredentialEnvelope {
schema: "wp-codebox/connector-credentials/v1"
connector: string
scope: "connector"
status: ConnectorCredentialStatus
secrets: ConnectorCredentialSecret[]
reason?: string
}
export interface WorkspaceRecipeInheritanceSetting {
name: string
status: "resolved" | "unresolved" | "skipped" | (string & {})
scope?: string
}
export interface WorkspaceRecipeInheritanceResolution {
connectors?: WorkspaceRecipeInheritanceConnector[]
settings?: WorkspaceRecipeInheritanceSetting[]
}
export interface RuntimeInfo {
id: string
backend: RuntimeBackendKind
environment: EnvironmentSpec
createdAt: string
status: "created" | "destroyed"
previewUrl?: string
}
export interface MountSpec {
type: "directory" | "file" | (string & {})
source: string
target: string
mode: "readonly" | "readwrite"
metadata?: Record<string, unknown>
}
export interface ExecutionSpec {
command: string
args?: string[]
cwd?: string
timeoutMs?: number
}
export type RuntimeEpisodeActionKind = "command" | "filesystem" | "http" | "browser"
export interface RuntimeEpisodeActionSpec extends ExecutionSpec {
kind?: RuntimeEpisodeActionKind
method?: string
url?: string
path?: string
operation?: string
selector?: string
description?: string
metadata?: Record<string, unknown>
}
export interface RuntimeEpisodeContentDigest {
algorithm: "sha256"
value: string
}
export interface RuntimeEpisodeTraceRef {
kind: "action" | "execution" | "observation" | "snapshot" | "artifact-bundle" | (string & {})
id: string
digest?: RuntimeEpisodeContentDigest
artifactId?: string
path?: string
}
export interface RuntimeEpisodeActionRecord {
schema: typeof RUNTIME_EPISODE_ACTION_SCHEMA
id: string
kind: RuntimeEpisodeActionKind
command: string
args: string[]
cwd?: string
timeoutMs?: number
method?: string
url?: string
path?: string
operation?: string
selector?: string
description?: string
metadata?: Record<string, unknown>
digest: RuntimeEpisodeContentDigest
}
export interface ExecutionResult {
id: string
command: string
args: string[]
exitCode: number
stdout: string
stderr: string
startedAt: string
finishedAt: string
}
export interface ObservationSpec {
type:
| "runtime-info"
| "mounts"
| "files"
| "command-result"
| "wordpress-state"
| "http-response"
| "browser-result"
| "runtime-events"
| "runtime-logs"
| (string & {})
path?: string
commandId?: string
url?: string
method?: string
headers?: Record<string, string>
body?: string
includeBody?: boolean
sections?: string[]
redaction?: "safe" | "none" | (string & {})
includeContent?: boolean
optionNames?: string[]
userFields?: string[]
}
export interface ObservationResult {
schema?: typeof RUNTIME_EPISODE_OBSERVATION_SCHEMA
id?: string
type: string
data: unknown
observedAt: string
artifactRefs?: RuntimeEpisodeTraceRef[]
digest?: RuntimeEpisodeContentDigest
}
export interface LifecycleEvent {
id: string
type:
| "runtime.created"
| "runtime.mounted"
| "runtime.command.started"
| "runtime.command.finished"
| "runtime.observed"
| "runtime.snapshot.created"
| "runtime.artifacts.collected"
| "runtime.browser-startup-progress"
| "runtime.destroyed"
| (string & {})
timestamp: string
data?: Record<string, unknown>
}
export interface Snapshot {
schema?: typeof RUNTIME_EPISODE_SNAPSHOT_SCHEMA
id: string
createdAt: string
semantics?: "metadata-only" | "partial-replay" | "replayable-runtime-state" | "runtime-state-artifact" | (string & {})
metadata: Record<string, unknown>
artifactRefs?: RuntimeEpisodeTraceRef[]
digest?: RuntimeEpisodeContentDigest
}
export interface RuntimeRestoreSpec {
runtime?: RuntimeCreateSpec
mounts?: MountSpec[]
}
export interface ArtifactProvenance {
task?: Record<string, unknown>
workspace?: SandboxWorkspaceContract
packages?: ArtifactPackageProvenance
runtime: {
backend: RuntimeBackendKind
version?: string
wordpressVersion?: string
backendPackage?: Record<string, unknown>
}
agent?: Record<string, unknown>
mounts: Array<{
type: MountSpec["type"]
source: string
target: string
mode: MountSpec["mode"]
metadata?: Record<string, unknown>
}>
}
export interface ArtifactPackageProvenance {
schema: "wp-codebox/package-provenance/v1"
wpCodebox?: ArtifactPackageIdentity
runtimeCore?: ArtifactPackageIdentity
runtimePlayground?: ArtifactPackageIdentity
playground?: {
cli?: ArtifactPackageIdentity
wordpressBuilds?: ArtifactPackageIdentity
}
environment?: {
wordpressVersion?: string
phpVersion?: string
nodeVersion?: string
}
}
export interface ArtifactPackageIdentity {
name: string
version?: string
source?: {
ref?: string
sha?: string
digest?: ArtifactFileDigest
}
}
export interface ArtifactEvidenceRef {
path: string
kind: string
contentType?: string
sha256?: ArtifactFileDigest
}
export interface ArtifactPreviewSessionEvidence {
schema: "wp-codebox/preview-session-evidence/v1"
artifactId: string
createdAt: string
session: {
runtimeId: string
backend: RuntimeBackendKind
createdAt: string
status: RuntimeInfo["status"]
environment: {
kind: string
name?: string
version?: string
}
}
preview?: {
status: ArtifactPreview["status"]
lifecycle: ArtifactPreview["lifecycle"]
source: ArtifactPreview["source"]
createdAt: string
expiresAt?: string
holdSeconds?: number
hasPublicUrl: boolean
hasSiteUrl: boolean
}
refs: {
artifactBundle: {
kind: "artifact-bundle"
id: string
digest: RuntimeEpisodeContentDigest
}
manifest: ArtifactEvidenceRef
review: ArtifactEvidenceRef
runtimeEvents: ArtifactEvidenceRef
runtimeLog: ArtifactEvidenceRef
runtimeReferenceManifest: ArtifactEvidenceRef
runtimeReplayReferenceIndex: ArtifactEvidenceRef
browserSummary?: ArtifactEvidenceRef
}
components?: ArtifactPackageProvenance
}
export interface ArtifactPreview {
url: string
localUrl?: string
publicUrl?: string
siteUrl?: string
status: "available" | "expired-on-completion"
lifecycle: "held-after-run" | "destroyed-on-completion"
source: "live-playground" | "public-url-override"
createdAt: string
expiresAt?: string
holdSeconds?: number
}
export interface ArtifactPreviewUrlRef {
kind: "preview-url"
availability: "reviewer-safe" | "local-only" | "unavailable"
reviewerSafe: boolean
url?: string
reason?: string
}
export interface ArtifactPreviewEvidence {
schema: "wp-codebox/preview-evidence/v1"
createdAt: string
session: {
kind: "browser-playground-session"
id: string
runtimeId: string
backend: RuntimeBackendKind
environment: {
kind: EnvironmentSpec["kind"]
name: string
version: string
}
}
run: RuntimeEpisodeTraceRef
preview: {
status: ArtifactPreview["status"] | "unavailable"
lifecycle: ArtifactPreview["lifecycle"] | "not-started"
source?: ArtifactPreview["source"]
createdAt?: string
expiresAt?: string
holdSeconds?: number
url: ArtifactPreviewUrlRef
publicUrl?: ArtifactPreviewUrlRef
localUrl?: ArtifactPreviewUrlRef
siteUrl?: ArtifactPreviewUrlRef
}
readiness: {
ready: boolean
status: BrowserStartupProgressEvent["status"] | "not-started"
phase?: BrowserStartupProgressEvent["phase"]
events: Array<{
id: string
phase: BrowserStartupProgressEvent["phase"]
status: BrowserStartupProgressEvent["status"]
label?: string
elapsed_ms?: number
timestamp: string
}>
}
components: {
packages?: ArtifactPackageProvenance
runtime: {
backend: RuntimeBackendKind
wordpressVersion?: string
}
}
}
export interface ArtifactBundle {
id: string
directory: string
manifestPath: string
metadataPath: string
blueprintAfterPath: string
blueprintAfterNotesPath: string
eventsPath: string
commandsPath: string
observationsPath: string
runtimeLogPath: string
commandsLogPath: string
mountsPath: string
capturedMountsPath: string
diffsPath: string
workspacePatchPath: string
changedFilesPath: string
patchPath: string
diagnosticsPath: string
testResultsPath: string
reviewPath: string
runAttestationPath?: string
runtimeEpisodeTracePath?: string
runtimeEpisodeEventsPath?: string
artifactVerificationPath?: string
workspacePolicyPath?: string
runtimeReferenceManifestPath?: string
runtimeReferenceIndexPath?: string
runtimeReplayReferenceIndexPath?: string
previewEvidencePath?: string
previewSessionEvidencePath?: string
previewSessionEvidenceRef?: ArtifactEvidenceRef
preview?: ArtifactPreview
contentDigest: string
createdAt: string
}
export interface Runtime {
info(): Promise<RuntimeInfo>
mount(spec: MountSpec): Promise<void>
execute(spec: ExecutionSpec): Promise<ExecutionResult>
observe(spec: ObservationSpec): Promise<ObservationResult>
snapshot(): Promise<Snapshot>
collectArtifacts(spec?: ArtifactSpec): Promise<ArtifactBundle>
destroy(): Promise<void>
}
export interface RuntimeEpisodeSpec {
runtime: RuntimeCreateSpec
mounts?: MountSpec[]
resetObservations?: ObservationSpec[]
stepObservation?: ObservationSpec | false
artifactSpec?: ArtifactSpec
}
export interface RuntimeEpisodeResetResult {
id: string
runtime: RuntimeInfo
observations: ObservationResult[]
observationRefs: RuntimeEpisodeTraceRef[]
}
export interface RuntimeEpisodeStepResult {
id: string
index: number
action: RuntimeEpisodeActionRecord
actionRef: RuntimeEpisodeTraceRef
execution: ExecutionResult
executionRef: RuntimeEpisodeTraceRef
observation?: ObservationResult
observationRef?: RuntimeEpisodeTraceRef
}
export interface RuntimeEpisodeTrace {
schema: typeof RUNTIME_EPISODE_TRACE_SCHEMA
version: 1
id: string
createdAt: string
runtime: RuntimeInfo
reset: RuntimeEpisodeResetResult
steps: RuntimeEpisodeStepResult[]
snapshots: Snapshot[]
artifacts?: ArtifactBundle
artifactRef?: RuntimeEpisodeTraceRef
}
export interface RuntimeEpisodeTraceValidationIssue {
path: string
message: string
}
export interface RuntimeEpisodeTraceValidationResult {
valid: boolean
schema: typeof RUNTIME_EPISODE_TRACE_SCHEMA
issues: RuntimeEpisodeTraceValidationIssue[]
}
export interface RuntimeEpisode {
reset(): Promise<RuntimeEpisodeResetResult>
step(action: RuntimeEpisodeActionSpec, observation?: ObservationSpec | false): Promise<RuntimeEpisodeStepResult>
observe(spec: ObservationSpec): Promise<ObservationResult>
snapshot(): Promise<Snapshot>
collectArtifacts(spec?: ArtifactSpec): Promise<ArtifactBundle>
trace(): Promise<RuntimeEpisodeTrace>
close(): Promise<void>
}
export interface RuntimeBackend {
readonly kind: RuntimeBackendKind
create(spec: RuntimeCreateSpec): Promise<Runtime>
restore?(snapshot: Snapshot, spec?: RuntimeRestoreSpec): Promise<Runtime>
}
export async function createRuntime(spec: RuntimeCreateSpec, backend: RuntimeBackend): Promise<Runtime> {
assertRuntimePolicy(spec.policy)
if (backend.kind !== spec.backend) {
throw new Error(`Backend ${backend.kind} cannot create runtime ${spec.backend}`)
}
return backend.create(spec)
}
export async function restoreRuntime(snapshot: Snapshot, backend: RuntimeBackend, spec?: RuntimeRestoreSpec): Promise<Runtime> {
if (!backend.restore) {
throw new Error(`Backend ${backend.kind} does not support runtime snapshot restore`)
}
return backend.restore(snapshot, spec)
}