f4987093f6
- define and validate the capability and resource-lock languages - provision workspace source repositories through Central Gitea - build package runtimes from pinned standalone sources - replace legacy schema compilation with workspace persistence plans - add stable optimistic registers and Automerge CRDT documents - modernize TypeScript/Nix package builds and runtime activation readiness
16 lines
283 B
Protocol Buffer
16 lines
283 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package quixos;
|
|
|
|
message PackageDescriptor {
|
|
string package_id = 1;
|
|
string package_revision_id = 2;
|
|
string runtime_protocol_version = 3;
|
|
repeated RuntimeExport exports = 4;
|
|
}
|
|
|
|
message RuntimeExport {
|
|
string export_id = 1;
|
|
string runtime_symbol = 2;
|
|
}
|