@dxos/protocols 0.8.4-staging.ac66bdf99f → 0.9.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 +102 -5
- package/dist/src/FeedProtocol.d.ts +5 -5
- package/dist/src/FeedProtocol.d.ts.map +1 -1
- package/dist/src/FeedProtocol.js.map +1 -1
- package/dist/src/FunctionProtocol.d.ts +7 -0
- package/dist/src/FunctionProtocol.d.ts.map +1 -1
- package/dist/src/TraceProtocol.d.ts +15 -0
- package/dist/src/TraceProtocol.d.ts.map +1 -0
- package/dist/src/TraceProtocol.js +4 -0
- package/dist/src/TraceProtocol.js.map +1 -0
- package/dist/src/automerge.d.ts +203 -13
- package/dist/src/automerge.d.ts.map +1 -1
- package/dist/src/automerge.js +17 -0
- package/dist/src/automerge.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/client/invitation_pb.d.ts +16 -4
- package/dist/src/buf/proto/gen/dxos/client/invitation_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/client/invitation_pb.js +17 -5
- package/dist/src/buf/proto/gen/dxos/client/invitation_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/client/queue_pb.d.ts +74 -0
- package/dist/src/buf/proto/gen/dxos/client/queue_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/client/queue_pb.js +16 -1
- package/dist/src/buf/proto/gen/dxos/client/queue_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/client/services_pb.d.ts +14 -0
- package/dist/src/buf/proto/gen/dxos/client/services_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/client/services_pb.js +1 -1
- package/dist/src/buf/proto/gen/dxos/client/services_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/config_pb.d.ts +6 -0
- package/dist/src/buf/proto/gen/dxos/config_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/config_pb.js +1 -1
- package/dist/src/buf/proto/gen/dxos/config_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/devtools/host_pb.d.ts +70 -0
- package/dist/src/buf/proto/gen/dxos/devtools/host_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/devtools/host_pb.js +16 -1
- package/dist/src/buf/proto/gen/dxos/devtools/host_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/echo/metadata_pb.d.ts +6 -0
- package/dist/src/buf/proto/gen/dxos/echo/metadata_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/echo/metadata_pb.js +1 -1
- package/dist/src/buf/proto/gen/dxos/echo/metadata_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/echo/service_pb.d.ts +17 -2
- package/dist/src/buf/proto/gen/dxos/echo/service_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/echo/service_pb.js +1 -1
- package/dist/src/buf/proto/gen/dxos/echo/service_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/halo/credentials_pb.d.ts +26 -0
- package/dist/src/buf/proto/gen/dxos/halo/credentials_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/halo/credentials_pb.js +26 -21
- package/dist/src/buf/proto/gen/dxos/halo/credentials_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/halo/invitations_pb.d.ts +11 -4
- package/dist/src/buf/proto/gen/dxos/halo/invitations_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/halo/invitations_pb.js +12 -5
- package/dist/src/buf/proto/gen/dxos/halo/invitations_pb.js.map +1 -1
- package/dist/src/codec.test.js +1 -1
- package/dist/src/edge/EdgeFunctionEnv.d.ts +27 -1
- package/dist/src/edge/EdgeFunctionEnv.d.ts.map +1 -1
- package/dist/src/edge/edge.d.ts +190 -3
- package/dist/src/edge/edge.d.ts.map +1 -1
- package/dist/src/edge/edge.js +107 -2
- package/dist/src/edge/edge.js.map +1 -1
- package/dist/src/edge/edge.test.d.ts +2 -0
- package/dist/src/edge/edge.test.d.ts.map +1 -0
- package/dist/src/edge/edge.test.js +50 -0
- package/dist/src/edge/edge.test.js.map +1 -0
- package/dist/src/edge/errors.d.ts.map +1 -1
- package/dist/src/edge/errors.js +1 -1
- package/dist/src/edge/errors.js.map +1 -1
- package/dist/src/edge/index.js +4 -4
- package/dist/src/edge/registry.d.ts +103 -18
- package/dist/src/edge/registry.d.ts.map +1 -1
- package/dist/src/edge/registry.js +72 -12
- package/dist/src/edge/registry.js.map +1 -1
- package/dist/src/errors/base-errors.d.ts +18 -18
- package/dist/src/errors/base-errors.d.ts.map +1 -1
- package/dist/src/errors/encoding.d.ts +1 -1
- package/dist/src/errors/encoding.d.ts.map +1 -1
- package/dist/src/errors/encoding.js +1 -1
- package/dist/src/errors/encoding.js.map +1 -1
- package/dist/src/errors/errors.d.ts +132 -132
- package/dist/src/errors/errors.d.ts.map +1 -1
- package/dist/src/errors/errors.js +1 -1
- package/dist/src/errors/errors.test.js +1 -1
- package/dist/src/errors/helpers.d.ts +2 -2
- package/dist/src/errors/helpers.d.ts.map +1 -1
- package/dist/src/errors/index.js +5 -5
- package/dist/src/errors/parameter.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +11 -11
- package/dist/src/index.js.map +1 -1
- package/dist/src/indexing.d.ts.map +1 -1
- package/dist/src/indexing.test.js +1 -1
- package/dist/src/invitation.js +3 -3
- package/dist/src/invitation.js.map +1 -1
- package/dist/src/profile-archive.d.ts +14 -1
- package/dist/src/profile-archive.d.ts.map +1 -1
- package/dist/src/profile-archive.js +2 -0
- package/dist/src/profile-archive.js.map +1 -1
- package/dist/src/proto/gen/dxos/agent/dashboard.d.ts +3 -6
- package/dist/src/proto/gen/dxos/agent/dashboard.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/agent/dashboard.js.map +1 -1
- package/dist/src/proto/gen/dxos/agent/echoproxy.d.ts +1 -2
- package/dist/src/proto/gen/dxos/agent/echoproxy.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/agent/epoch.d.ts +1 -2
- package/dist/src/proto/gen/dxos/agent/epoch.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/agent/functions.d.ts +6 -12
- package/dist/src/proto/gen/dxos/agent/functions.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/bot.d.ts +12 -24
- package/dist/src/proto/gen/dxos/bot.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/bot.js.map +1 -1
- package/dist/src/proto/gen/dxos/client/services.d.ts +242 -271
- package/dist/src/proto/gen/dxos/client/services.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/client/services.js +4 -2
- package/dist/src/proto/gen/dxos/client/services.js.map +1 -1
- package/dist/src/proto/gen/dxos/config.d.ts +58 -102
- package/dist/src/proto/gen/dxos/config.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/config.js.map +1 -1
- package/dist/src/proto/gen/dxos/devtools/host.d.ts +78 -96
- package/dist/src/proto/gen/dxos/devtools/host.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/devtools/swarm.d.ts +4 -8
- package/dist/src/proto/gen/dxos/devtools/swarm.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/blob.d.ts +1 -2
- package/dist/src/proto/gen/dxos/echo/blob.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/blob.js.map +1 -1
- package/dist/src/proto/gen/dxos/echo/feed.d.ts +4 -8
- package/dist/src/proto/gen/dxos/echo/feed.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/filter.d.ts +2 -4
- package/dist/src/proto/gen/dxos/echo/filter.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/filter.js.map +1 -1
- package/dist/src/proto/gen/dxos/echo/indexing.d.ts +2 -4
- package/dist/src/proto/gen/dxos/echo/indexing.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/indexing.js.map +1 -1
- package/dist/src/proto/gen/dxos/echo/metadata.d.ts +12 -16
- package/dist/src/proto/gen/dxos/echo/metadata.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/metadata.js.map +1 -1
- package/dist/src/proto/gen/dxos/echo/model/document.d.ts +11 -22
- package/dist/src/proto/gen/dxos/echo/model/document.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/model/document.js.map +1 -1
- package/dist/src/proto/gen/dxos/echo/model/messenger.d.ts +1 -2
- package/dist/src/proto/gen/dxos/echo/model/messenger.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/model/text.d.ts +2 -4
- package/dist/src/proto/gen/dxos/echo/model/text.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/object.d.ts +6 -12
- package/dist/src/proto/gen/dxos/echo/object.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/object.js.map +1 -1
- package/dist/src/proto/gen/dxos/echo/query.d.ts +4 -8
- package/dist/src/proto/gen/dxos/echo/query.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/query.js.map +1 -1
- package/dist/src/proto/gen/dxos/echo/service.d.ts +36 -35
- package/dist/src/proto/gen/dxos/echo/service.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/snapshot.d.ts +2 -4
- package/dist/src/proto/gen/dxos/echo/snapshot.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/timeframe.d.ts +2 -4
- package/dist/src/proto/gen/dxos/echo/timeframe.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/edge/calls.d.ts +5 -10
- package/dist/src/proto/gen/dxos/edge/calls.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/edge/messenger.d.ts +6 -12
- package/dist/src/proto/gen/dxos/edge/messenger.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/edge/messenger.js.map +1 -1
- package/dist/src/proto/gen/dxos/edge/signal.d.ts +7 -14
- package/dist/src/proto/gen/dxos/edge/signal.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/error.d.ts +1 -2
- package/dist/src/proto/gen/dxos/error.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/gravity.d.ts +10 -20
- package/dist/src/proto/gen/dxos/gravity.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/credentials/auth.d.ts +1 -2
- package/dist/src/proto/gen/dxos/halo/credentials/auth.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/credentials/greet.d.ts +6 -12
- package/dist/src/proto/gen/dxos/halo/credentials/greet.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/credentials/greet.js.map +1 -1
- package/dist/src/proto/gen/dxos/halo/credentials/identity.d.ts +2 -4
- package/dist/src/proto/gen/dxos/halo/credentials/identity.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/credentials.d.ts +34 -44
- package/dist/src/proto/gen/dxos/halo/credentials.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/credentials.js.map +1 -1
- package/dist/src/proto/gen/dxos/halo/invitations.d.ts +16 -28
- package/dist/src/proto/gen/dxos/halo/invitations.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/invitations.js +3 -2
- package/dist/src/proto/gen/dxos/halo/invitations.js.map +1 -1
- package/dist/src/proto/gen/dxos/halo/keyring.d.ts +1 -2
- package/dist/src/proto/gen/dxos/halo/keyring.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/keys.d.ts +2 -4
- package/dist/src/proto/gen/dxos/halo/keys.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/signed.d.ts +4 -8
- package/dist/src/proto/gen/dxos/halo/signed.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/iframe.d.ts +4 -8
- package/dist/src/proto/gen/dxos/iframe.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/iframe.js.map +1 -1
- package/dist/src/proto/gen/dxos/keys.d.ts +2 -4
- package/dist/src/proto/gen/dxos/keys.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/bridge.d.ts +12 -24
- package/dist/src/proto/gen/dxos/mesh/bridge.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/broadcast.d.ts +1 -2
- package/dist/src/proto/gen/dxos/mesh/broadcast.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/messaging.d.ts +2 -4
- package/dist/src/proto/gen/dxos/mesh/messaging.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/muxer.d.ts +5 -10
- package/dist/src/proto/gen/dxos/mesh/muxer.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/presence.d.ts +1 -2
- package/dist/src/proto/gen/dxos/mesh/presence.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/protocol.d.ts +3 -6
- package/dist/src/proto/gen/dxos/mesh/protocol.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/replicator.d.ts +2 -4
- package/dist/src/proto/gen/dxos/mesh/replicator.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/signal.d.ts +9 -18
- package/dist/src/proto/gen/dxos/mesh/signal.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/signal.js.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/swarm.d.ts +6 -12
- package/dist/src/proto/gen/dxos/mesh/swarm.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/teleport/auth.d.ts +2 -4
- package/dist/src/proto/gen/dxos/mesh/teleport/auth.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/teleport/automerge.d.ts +2 -4
- package/dist/src/proto/gen/dxos/mesh/teleport/automerge.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/teleport/blobsync.d.ts +3 -6
- package/dist/src/proto/gen/dxos/mesh/teleport/blobsync.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/teleport/control.d.ts +3 -6
- package/dist/src/proto/gen/dxos/mesh/teleport/control.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/teleport/gossip.d.ts +1 -2
- package/dist/src/proto/gen/dxos/mesh/teleport/gossip.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/teleport/notarization.d.ts +1 -2
- package/dist/src/proto/gen/dxos/mesh/teleport/notarization.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/teleport/replicator.d.ts +5 -10
- package/dist/src/proto/gen/dxos/mesh/teleport/replicator.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/mesh/teleport.d.ts +2 -4
- package/dist/src/proto/gen/dxos/mesh/teleport.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/registry.d.ts +3 -6
- package/dist/src/proto/gen/dxos/registry.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/rpc.d.ts +7 -14
- package/dist/src/proto/gen/dxos/rpc.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/rpc.js.map +1 -1
- package/dist/src/proto/gen/dxos/service/agentmanager.d.ts +4 -8
- package/dist/src/proto/gen/dxos/service/agentmanager.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/service/agentmanager.js.map +1 -1
- package/dist/src/proto/gen/dxos/service/publisher.d.ts +5 -10
- package/dist/src/proto/gen/dxos/service/publisher.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/service/supervisor.d.ts +12 -24
- package/dist/src/proto/gen/dxos/service/supervisor.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/service/supervisor.js.map +1 -1
- package/dist/src/proto/gen/dxos/service/tunnel.d.ts +3 -6
- package/dist/src/proto/gen/dxos/service/tunnel.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/tracing.d.ts +10 -20
- package/dist/src/proto/gen/dxos/tracing.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/type.d.ts +12 -24
- package/dist/src/proto/gen/dxos/type.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/value.d.ts +2 -4
- package/dist/src/proto/gen/dxos/value.d.ts.map +1 -1
- package/dist/src/proto/gen/example/testing/data.d.ts +4 -8
- package/dist/src/proto/gen/example/testing/data.d.ts.map +1 -1
- package/dist/src/proto/gen/example/testing/rpc.d.ts +7 -14
- package/dist/src/proto/gen/example/testing/rpc.d.ts.map +1 -1
- package/dist/src/proto/gen/google/protobuf.d.ts.map +1 -1
- package/dist/src/proto/gen/google/protobuf.js.map +1 -1
- package/dist/src/proto/gen/index.d.ts +7 -0
- package/dist/src/proto/gen/index.d.ts.map +1 -1
- package/dist/src/proto/gen/index.js +1 -1
- package/dist/src/proto/gen/index.js.map +1 -1
- package/dist/src/proto/index.js +1 -1
- package/dist/src/proto/substitutions.d.ts +8 -8
- package/dist/src/proto/substitutions.d.ts.map +1 -1
- package/dist/src/space-archive.d.ts +5 -5
- package/dist/src/space-archive.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +12 -31
- package/src/FeedProtocol.ts +3 -0
- package/src/FunctionProtocol.ts +9 -0
- package/src/TraceProtocol.ts +21 -0
- package/src/automerge.ts +239 -13
- package/src/buf/proto/gen/dxos/client/invitation_pb.ts +19 -5
- package/src/buf/proto/gen/dxos/client/queue_pb.ts +88 -1
- package/src/buf/proto/gen/dxos/client/services_pb.ts +16 -1
- package/src/buf/proto/gen/dxos/config_pb.ts +8 -1
- package/src/buf/proto/gen/dxos/devtools/host_pb.ts +82 -1
- package/src/buf/proto/gen/dxos/echo/metadata_pb.ts +8 -1
- package/src/buf/proto/gen/dxos/echo/service_pb.ts +19 -3
- package/src/buf/proto/gen/dxos/halo/credentials_pb.ts +52 -21
- package/src/buf/proto/gen/dxos/halo/invitations_pb.ts +13 -5
- package/src/edge/EdgeFunctionEnv.ts +40 -3
- package/src/edge/edge.test.ts +64 -0
- package/src/edge/edge.ts +219 -5
- package/src/edge/registry.ts +82 -14
- package/src/index.ts +1 -1
- package/src/invitation.ts +3 -3
- package/src/profile-archive.ts +13 -0
- package/src/proto/dxos/client/invitation.proto +9 -2
- package/src/proto/dxos/client/queue.proto +21 -0
- package/src/proto/dxos/client/services.proto +4 -0
- package/src/proto/dxos/config.proto +2 -0
- package/src/proto/dxos/devtools/host.proto +27 -0
- package/src/proto/dxos/echo/metadata.proto +3 -0
- package/src/proto/dxos/echo/service.proto +14 -1
- package/src/proto/dxos/halo/credentials.proto +9 -0
- package/src/proto/dxos/halo/invitations.proto +5 -2
- package/src/proto/gen/dxos/agent/dashboard.ts +3 -6
- package/src/proto/gen/dxos/agent/echoproxy.ts +1 -2
- package/src/proto/gen/dxos/agent/epoch.ts +1 -2
- package/src/proto/gen/dxos/agent/functions.ts +6 -12
- package/src/proto/gen/dxos/bot.ts +12 -24
- package/src/proto/gen/dxos/client/services.ts +242 -271
- package/src/proto/gen/dxos/config.ts +58 -102
- package/src/proto/gen/dxos/devtools/host.ts +78 -96
- package/src/proto/gen/dxos/devtools/swarm.ts +4 -8
- package/src/proto/gen/dxos/echo/blob.ts +1 -2
- package/src/proto/gen/dxos/echo/feed.ts +4 -8
- package/src/proto/gen/dxos/echo/filter.ts +2 -4
- package/src/proto/gen/dxos/echo/indexing.ts +2 -4
- package/src/proto/gen/dxos/echo/metadata.ts +12 -16
- package/src/proto/gen/dxos/echo/model/document.ts +11 -22
- package/src/proto/gen/dxos/echo/model/messenger.ts +1 -2
- package/src/proto/gen/dxos/echo/model/text.ts +2 -4
- package/src/proto/gen/dxos/echo/object.ts +6 -12
- package/src/proto/gen/dxos/echo/query.ts +4 -8
- package/src/proto/gen/dxos/echo/service.ts +36 -35
- package/src/proto/gen/dxos/echo/snapshot.ts +2 -4
- package/src/proto/gen/dxos/echo/timeframe.ts +2 -4
- package/src/proto/gen/dxos/edge/calls.ts +5 -10
- package/src/proto/gen/dxos/edge/messenger.ts +6 -12
- package/src/proto/gen/dxos/edge/signal.ts +7 -14
- package/src/proto/gen/dxos/error.ts +1 -2
- package/src/proto/gen/dxos/gravity.ts +10 -20
- package/src/proto/gen/dxos/halo/credentials/auth.ts +1 -2
- package/src/proto/gen/dxos/halo/credentials/greet.ts +6 -12
- package/src/proto/gen/dxos/halo/credentials/identity.ts +2 -4
- package/src/proto/gen/dxos/halo/credentials.ts +34 -44
- package/src/proto/gen/dxos/halo/invitations.ts +16 -28
- package/src/proto/gen/dxos/halo/keyring.ts +1 -2
- package/src/proto/gen/dxos/halo/keys.ts +2 -4
- package/src/proto/gen/dxos/halo/signed.ts +4 -8
- package/src/proto/gen/dxos/iframe.ts +4 -8
- package/src/proto/gen/dxos/keys.ts +2 -4
- package/src/proto/gen/dxos/mesh/bridge.ts +12 -24
- package/src/proto/gen/dxos/mesh/broadcast.ts +1 -2
- package/src/proto/gen/dxos/mesh/messaging.ts +2 -4
- package/src/proto/gen/dxos/mesh/muxer.ts +5 -10
- package/src/proto/gen/dxos/mesh/presence.ts +1 -2
- package/src/proto/gen/dxos/mesh/protocol.ts +3 -6
- package/src/proto/gen/dxos/mesh/replicator.ts +2 -4
- package/src/proto/gen/dxos/mesh/signal.ts +9 -18
- package/src/proto/gen/dxos/mesh/swarm.ts +6 -12
- package/src/proto/gen/dxos/mesh/teleport/auth.ts +2 -4
- package/src/proto/gen/dxos/mesh/teleport/automerge.ts +2 -4
- package/src/proto/gen/dxos/mesh/teleport/blobsync.ts +3 -6
- package/src/proto/gen/dxos/mesh/teleport/control.ts +3 -6
- package/src/proto/gen/dxos/mesh/teleport/gossip.ts +1 -2
- package/src/proto/gen/dxos/mesh/teleport/notarization.ts +1 -2
- package/src/proto/gen/dxos/mesh/teleport/replicator.ts +5 -10
- package/src/proto/gen/dxos/mesh/teleport.ts +2 -4
- package/src/proto/gen/dxos/registry.ts +3 -6
- package/src/proto/gen/dxos/rpc.ts +7 -14
- package/src/proto/gen/dxos/service/agentmanager.ts +4 -8
- package/src/proto/gen/dxos/service/publisher.ts +5 -10
- package/src/proto/gen/dxos/service/supervisor.ts +12 -24
- package/src/proto/gen/dxos/service/tunnel.ts +3 -6
- package/src/proto/gen/dxos/tracing.ts +10 -20
- package/src/proto/gen/dxos/type.ts +12 -24
- package/src/proto/gen/dxos/value.ts +2 -4
- package/src/proto/gen/example/testing/data.ts +4 -8
- package/src/proto/gen/example/testing/rpc.ts +7 -14
- package/src/proto/gen/index.ts +8 -1
- package/dist/src/tracing.d.ts +0 -40
- package/dist/src/tracing.d.ts.map +0 -1
- package/dist/src/tracing.js +0 -50
- package/dist/src/tracing.js.map +0 -1
- package/src/tracing.ts +0 -86
|
@@ -65,6 +65,168 @@ import * as dxos_value from "../value.js";
|
|
|
65
65
|
import * as example_testing_data from "../../example/testing/data.js";
|
|
66
66
|
import * as example_testing_rpc from "../../example/testing/rpc.js";
|
|
67
67
|
import * as google_protobuf from "../../google/protobuf.js";
|
|
68
|
+
/**
|
|
69
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
70
|
+
*/
|
|
71
|
+
export interface QueueQuery {
|
|
72
|
+
spaceId: string;
|
|
73
|
+
/**
|
|
74
|
+
* Options:
|
|
75
|
+
* - proto3_optional = true
|
|
76
|
+
*/
|
|
77
|
+
queuesNamespace?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Queries the whole space if missing.
|
|
80
|
+
*/
|
|
81
|
+
queueIds?: string[];
|
|
82
|
+
/**
|
|
83
|
+
* Filter items after this cursor. Exclusive.
|
|
84
|
+
*
|
|
85
|
+
* Options:
|
|
86
|
+
* - proto3_optional = true
|
|
87
|
+
*/
|
|
88
|
+
after?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Filter items before this cursor. Exclusive.
|
|
91
|
+
*
|
|
92
|
+
* Options:
|
|
93
|
+
* - proto3_optional = true
|
|
94
|
+
*/
|
|
95
|
+
before?: string;
|
|
96
|
+
/**
|
|
97
|
+
* Filter items after this position. Inclusive.
|
|
98
|
+
*
|
|
99
|
+
* Options:
|
|
100
|
+
* - proto3_optional = true
|
|
101
|
+
*/
|
|
102
|
+
beginPosition?: string;
|
|
103
|
+
/**
|
|
104
|
+
* Filter items before this position. Exclusive.
|
|
105
|
+
*
|
|
106
|
+
* Options:
|
|
107
|
+
* - proto3_optional = true
|
|
108
|
+
*/
|
|
109
|
+
endPosition?: string;
|
|
110
|
+
/**
|
|
111
|
+
* Options:
|
|
112
|
+
* - proto3_optional = true
|
|
113
|
+
*/
|
|
114
|
+
limit?: number;
|
|
115
|
+
/**
|
|
116
|
+
* Options:
|
|
117
|
+
* - proto3_optional = true
|
|
118
|
+
*/
|
|
119
|
+
reverse?: boolean;
|
|
120
|
+
objectIds?: string[];
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
124
|
+
*/
|
|
125
|
+
export interface QueueQueryResult {
|
|
126
|
+
/**
|
|
127
|
+
* coerces `undefined` to `null`, corrupting optional fields.
|
|
128
|
+
*/
|
|
129
|
+
objects?: string[];
|
|
130
|
+
/**
|
|
131
|
+
* Cursor to query the next items. Can be passed to `after` in query to keep querying.
|
|
132
|
+
*/
|
|
133
|
+
nextCursor: string;
|
|
134
|
+
prevCursor: string;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
138
|
+
*/
|
|
139
|
+
export interface QueryQueueRequest {
|
|
140
|
+
query: QueueQuery;
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
144
|
+
*/
|
|
145
|
+
export interface InsertIntoQueueRequest {
|
|
146
|
+
subspaceTag: string;
|
|
147
|
+
spaceId: string;
|
|
148
|
+
queueId: string;
|
|
149
|
+
/**
|
|
150
|
+
* JSON-encoded object payloads. Each entry is a serialized ObjectJSON.
|
|
151
|
+
*/
|
|
152
|
+
objects?: string[];
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
156
|
+
*/
|
|
157
|
+
export interface DeleteFromQueueRequest {
|
|
158
|
+
subspaceTag: string;
|
|
159
|
+
spaceId: string;
|
|
160
|
+
queueId: string;
|
|
161
|
+
objectIds?: string[];
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
165
|
+
*/
|
|
166
|
+
export interface SyncQueueRequest {
|
|
167
|
+
subspaceTag: string;
|
|
168
|
+
spaceId: string;
|
|
169
|
+
queueId: string;
|
|
170
|
+
/**
|
|
171
|
+
* Whether to push local changes to the server. Defaults to true.
|
|
172
|
+
*
|
|
173
|
+
* Options:
|
|
174
|
+
* - proto3_optional = true
|
|
175
|
+
*/
|
|
176
|
+
shouldPush?: boolean;
|
|
177
|
+
/**
|
|
178
|
+
* Whether to pull remote changes from the server. Defaults to true.
|
|
179
|
+
*
|
|
180
|
+
* Options:
|
|
181
|
+
* - proto3_optional = true
|
|
182
|
+
*/
|
|
183
|
+
shouldPull?: boolean;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
187
|
+
*/
|
|
188
|
+
export interface GetSyncStateRequest {
|
|
189
|
+
spaceId: string;
|
|
190
|
+
/**
|
|
191
|
+
* If empty, returns state for all namespaces synced by the client.
|
|
192
|
+
*/
|
|
193
|
+
namespaces?: string[];
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
197
|
+
*/
|
|
198
|
+
export interface QueueNamespaceSyncState {
|
|
199
|
+
namespace: string;
|
|
200
|
+
/**
|
|
201
|
+
* Blocks still to pull from remote. 0 when caught up.
|
|
202
|
+
*/
|
|
203
|
+
blocksToPull: string;
|
|
204
|
+
/**
|
|
205
|
+
* Unpositioned blocks still to push to remote. 0 when caught up.
|
|
206
|
+
*/
|
|
207
|
+
blocksToPush: string;
|
|
208
|
+
/**
|
|
209
|
+
* Total blocks stored locally for this namespace in the space.
|
|
210
|
+
*/
|
|
211
|
+
totalBlocks: string;
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* Defined in: `../../../dxos/client/queue.proto`
|
|
215
|
+
*/
|
|
216
|
+
export interface GetSyncStateResponse {
|
|
217
|
+
namespaces?: QueueNamespaceSyncState[];
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* Defined in:
|
|
221
|
+
* {@link file://./../../../dxos/client/queue.proto}
|
|
222
|
+
*/
|
|
223
|
+
export interface QueueService {
|
|
224
|
+
queryQueue: (request: QueryQueueRequest, options?: RequestOptions) => Promise<QueueQueryResult>;
|
|
225
|
+
insertIntoQueue: (request: InsertIntoQueueRequest, options?: RequestOptions) => Promise<void>;
|
|
226
|
+
deleteFromQueue: (request: DeleteFromQueueRequest, options?: RequestOptions) => Promise<void>;
|
|
227
|
+
syncQueue: (request: SyncQueueRequest, options?: RequestOptions) => Promise<void>;
|
|
228
|
+
getSyncState: (request: GetSyncStateRequest, options?: RequestOptions) => Promise<GetSyncStateResponse>;
|
|
229
|
+
}
|
|
68
230
|
/**
|
|
69
231
|
* Defined in:
|
|
70
232
|
* {@link file://./../../../dxos/client/services.proto}
|
|
@@ -74,15 +236,13 @@ export enum SystemStatus {
|
|
|
74
236
|
ACTIVE = 1
|
|
75
237
|
}
|
|
76
238
|
/**
|
|
77
|
-
* Defined in:
|
|
78
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
239
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
79
240
|
*/
|
|
80
241
|
export interface UpdateStatusRequest {
|
|
81
242
|
status: SystemStatus;
|
|
82
243
|
}
|
|
83
244
|
/**
|
|
84
|
-
* Defined in:
|
|
85
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
245
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
86
246
|
*/
|
|
87
247
|
export interface QueryStatusRequest {
|
|
88
248
|
/**
|
|
@@ -92,15 +252,13 @@ export interface QueryStatusRequest {
|
|
|
92
252
|
interval?: number;
|
|
93
253
|
}
|
|
94
254
|
/**
|
|
95
|
-
* Defined in:
|
|
96
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
255
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
97
256
|
*/
|
|
98
257
|
export interface QueryStatusResponse {
|
|
99
258
|
status: SystemStatus;
|
|
100
259
|
}
|
|
101
260
|
/**
|
|
102
|
-
* Defined in:
|
|
103
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
261
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
104
262
|
*/
|
|
105
263
|
export interface GetDiagnosticsRequest {
|
|
106
264
|
/**
|
|
@@ -121,16 +279,14 @@ export namespace GetDiagnosticsRequest {
|
|
|
121
279
|
}
|
|
122
280
|
}
|
|
123
281
|
/**
|
|
124
|
-
* Defined in:
|
|
125
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
282
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
126
283
|
*/
|
|
127
284
|
export interface GetDiagnosticsResponse {
|
|
128
285
|
timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
|
|
129
286
|
diagnostics: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
|
|
130
287
|
}
|
|
131
288
|
/**
|
|
132
|
-
* Defined in:
|
|
133
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
289
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
134
290
|
*/
|
|
135
291
|
export interface Platform {
|
|
136
292
|
type: Platform.PLATFORM_TYPE;
|
|
@@ -220,8 +376,7 @@ export interface SystemService {
|
|
|
220
376
|
getPlatform: (request: void, options?: RequestOptions) => Promise<Platform>;
|
|
221
377
|
}
|
|
222
378
|
/**
|
|
223
|
-
* Defined in:
|
|
224
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
379
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
225
380
|
*/
|
|
226
381
|
export interface Identity {
|
|
227
382
|
did: string;
|
|
@@ -238,8 +393,7 @@ export interface Identity {
|
|
|
238
393
|
profile?: dxos_halo_credentials.ProfileDocument;
|
|
239
394
|
}
|
|
240
395
|
/**
|
|
241
|
-
* Defined in:
|
|
242
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
396
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
243
397
|
*/
|
|
244
398
|
export interface RequestRecoveryChallengeResponse {
|
|
245
399
|
deviceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -247,18 +401,20 @@ export interface RequestRecoveryChallengeResponse {
|
|
|
247
401
|
challenge: string;
|
|
248
402
|
}
|
|
249
403
|
/**
|
|
250
|
-
* Defined in:
|
|
251
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
404
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
252
405
|
*/
|
|
253
406
|
export interface RecoverIdentityRequest {
|
|
254
407
|
recoveryCode?: string;
|
|
255
408
|
external?: RecoverIdentityRequest.ExternalSignature;
|
|
256
409
|
token?: string;
|
|
410
|
+
/**
|
|
411
|
+
* One-time proof minted by edge kms-service after a successful OAuth recovery flow.
|
|
412
|
+
*/
|
|
413
|
+
recoveryProof?: string;
|
|
257
414
|
}
|
|
258
415
|
export namespace RecoverIdentityRequest {
|
|
259
416
|
/**
|
|
260
|
-
* Defined in:
|
|
261
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
417
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
262
418
|
*/
|
|
263
419
|
export interface ExternalSignature {
|
|
264
420
|
lookupKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -278,8 +434,7 @@ export namespace RecoverIdentityRequest {
|
|
|
278
434
|
}
|
|
279
435
|
}
|
|
280
436
|
/**
|
|
281
|
-
* Defined in:
|
|
282
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
437
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
283
438
|
*/
|
|
284
439
|
export interface RecoveryCredentialData {
|
|
285
440
|
/**
|
|
@@ -296,8 +451,7 @@ export interface RecoveryCredentialData {
|
|
|
296
451
|
algorithm: string;
|
|
297
452
|
}
|
|
298
453
|
/**
|
|
299
|
-
* Defined in:
|
|
300
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
454
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
301
455
|
*/
|
|
302
456
|
export interface CreateRecoveryCredentialRequest {
|
|
303
457
|
/**
|
|
@@ -309,8 +463,7 @@ export interface CreateRecoveryCredentialRequest {
|
|
|
309
463
|
data?: RecoveryCredentialData;
|
|
310
464
|
}
|
|
311
465
|
/**
|
|
312
|
-
* Defined in:
|
|
313
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
466
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
314
467
|
*/
|
|
315
468
|
export interface CreateRecoveryCredentialResponse {
|
|
316
469
|
/**
|
|
@@ -320,8 +473,7 @@ export interface CreateRecoveryCredentialResponse {
|
|
|
320
473
|
recoveryCode?: string;
|
|
321
474
|
}
|
|
322
475
|
/**
|
|
323
|
-
* Defined in:
|
|
324
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
476
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
325
477
|
*/
|
|
326
478
|
export interface QueryIdentityResponse {
|
|
327
479
|
/**
|
|
@@ -331,8 +483,7 @@ export interface QueryIdentityResponse {
|
|
|
331
483
|
identity?: Identity;
|
|
332
484
|
}
|
|
333
485
|
/**
|
|
334
|
-
* Defined in:
|
|
335
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
486
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
336
487
|
*/
|
|
337
488
|
export interface SignPresentationRequest {
|
|
338
489
|
presentation: dxos_halo_credentials.Presentation;
|
|
@@ -343,8 +494,7 @@ export interface SignPresentationRequest {
|
|
|
343
494
|
nonce?: Uint8Array;
|
|
344
495
|
}
|
|
345
496
|
/**
|
|
346
|
-
* Defined in:
|
|
347
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
497
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
348
498
|
*/
|
|
349
499
|
export interface CreateIdentityRequest {
|
|
350
500
|
/**
|
|
@@ -381,8 +531,7 @@ export enum DeviceKind {
|
|
|
381
531
|
TRUSTED = 1
|
|
382
532
|
}
|
|
383
533
|
/**
|
|
384
|
-
* Defined in:
|
|
385
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
534
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
386
535
|
*/
|
|
387
536
|
export interface Device {
|
|
388
537
|
deviceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -406,8 +555,7 @@ export namespace Device {
|
|
|
406
555
|
}
|
|
407
556
|
}
|
|
408
557
|
/**
|
|
409
|
-
* Defined in:
|
|
410
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
558
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
411
559
|
*/
|
|
412
560
|
export interface QueryDevicesResponse {
|
|
413
561
|
devices?: Device[];
|
|
@@ -421,8 +569,7 @@ export interface DevicesService {
|
|
|
421
569
|
queryDevices: (request: void, options?: RequestOptions) => Stream<QueryDevicesResponse>;
|
|
422
570
|
}
|
|
423
571
|
/**
|
|
424
|
-
* Defined in:
|
|
425
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
572
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
426
573
|
*/
|
|
427
574
|
export interface Contact {
|
|
428
575
|
identityKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -434,8 +581,7 @@ export interface Contact {
|
|
|
434
581
|
commonSpaces?: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>[];
|
|
435
582
|
}
|
|
436
583
|
/**
|
|
437
|
-
* Defined in:
|
|
438
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
584
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
439
585
|
*/
|
|
440
586
|
export interface ContactBook {
|
|
441
587
|
contacts?: Contact[];
|
|
@@ -449,8 +595,7 @@ export interface ContactsService {
|
|
|
449
595
|
queryContacts: (request: void, options?: RequestOptions) => Stream<ContactBook>;
|
|
450
596
|
}
|
|
451
597
|
/**
|
|
452
|
-
* Defined in:
|
|
453
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
598
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
454
599
|
*/
|
|
455
600
|
export interface SpaceMember {
|
|
456
601
|
identity: Identity;
|
|
@@ -469,8 +614,7 @@ export namespace SpaceMember {
|
|
|
469
614
|
}
|
|
470
615
|
}
|
|
471
616
|
/**
|
|
472
|
-
* Defined in:
|
|
473
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
617
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
474
618
|
*/
|
|
475
619
|
export interface Space {
|
|
476
620
|
id: string;
|
|
@@ -508,8 +652,7 @@ export interface Space {
|
|
|
508
652
|
}
|
|
509
653
|
export namespace Space {
|
|
510
654
|
/**
|
|
511
|
-
* Defined in:
|
|
512
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
655
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
513
656
|
*/
|
|
514
657
|
export interface Metrics {
|
|
515
658
|
/**
|
|
@@ -544,8 +687,7 @@ export namespace Space {
|
|
|
544
687
|
ready?: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
|
|
545
688
|
}
|
|
546
689
|
/**
|
|
547
|
-
* Defined in:
|
|
548
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
690
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
549
691
|
*/
|
|
550
692
|
export interface PipelineState {
|
|
551
693
|
/**
|
|
@@ -650,16 +792,14 @@ export namespace Space {
|
|
|
650
792
|
}
|
|
651
793
|
}
|
|
652
794
|
/**
|
|
653
|
-
* Defined in:
|
|
654
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
795
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
655
796
|
*/
|
|
656
797
|
export interface CreateSpaceRequest {
|
|
657
798
|
tags?: string[];
|
|
658
799
|
membershipPolicy: dxos_halo_credentials.MembershipPolicy;
|
|
659
800
|
}
|
|
660
801
|
/**
|
|
661
|
-
* Defined in:
|
|
662
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
802
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
663
803
|
*/
|
|
664
804
|
export interface UpdateSpaceRequest {
|
|
665
805
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -677,15 +817,13 @@ export interface UpdateSpaceRequest {
|
|
|
677
817
|
edgeReplication?: dxos_echo_metadata.EdgeReplicationSetting;
|
|
678
818
|
}
|
|
679
819
|
/**
|
|
680
|
-
* Defined in:
|
|
681
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
820
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
682
821
|
*/
|
|
683
822
|
export interface QuerySpacesResponse {
|
|
684
823
|
spaces?: Space[];
|
|
685
824
|
}
|
|
686
825
|
/**
|
|
687
|
-
* Defined in:
|
|
688
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
826
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
689
827
|
*/
|
|
690
828
|
export interface PostMessageRequest {
|
|
691
829
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -693,24 +831,21 @@ export interface PostMessageRequest {
|
|
|
693
831
|
message: ReturnType<(typeof substitutions)["google.protobuf.Any"]["decode"]>;
|
|
694
832
|
}
|
|
695
833
|
/**
|
|
696
|
-
* Defined in:
|
|
697
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
834
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
698
835
|
*/
|
|
699
836
|
export interface SubscribeMessagesRequest {
|
|
700
837
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
701
838
|
channel: string;
|
|
702
839
|
}
|
|
703
840
|
/**
|
|
704
|
-
* Defined in:
|
|
705
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
841
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
706
842
|
*/
|
|
707
843
|
export interface WriteCredentialsRequest {
|
|
708
844
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
709
845
|
credentials?: dxos_halo_credentials.Credential[];
|
|
710
846
|
}
|
|
711
847
|
/**
|
|
712
|
-
* Defined in:
|
|
713
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
848
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
714
849
|
*/
|
|
715
850
|
export interface QueryCredentialsRequest {
|
|
716
851
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -721,8 +856,7 @@ export interface QueryCredentialsRequest {
|
|
|
721
856
|
noTail?: boolean;
|
|
722
857
|
}
|
|
723
858
|
/**
|
|
724
|
-
* Defined in:
|
|
725
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
859
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
726
860
|
*/
|
|
727
861
|
export interface CreateEpochRequest {
|
|
728
862
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -754,8 +888,7 @@ export namespace CreateEpochRequest {
|
|
|
754
888
|
}
|
|
755
889
|
}
|
|
756
890
|
/**
|
|
757
|
-
* Defined in:
|
|
758
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
891
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
759
892
|
*/
|
|
760
893
|
export interface CreateEpochResponse {
|
|
761
894
|
/**
|
|
@@ -774,8 +907,7 @@ export interface CreateEpochResponse {
|
|
|
774
907
|
controlTimeframe?: ReturnType<(typeof substitutions)["dxos.echo.timeframe.TimeframeVector"]["decode"]>;
|
|
775
908
|
}
|
|
776
909
|
/**
|
|
777
|
-
* Defined in:
|
|
778
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
910
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
779
911
|
*/
|
|
780
912
|
export interface UpdateMemberRoleRequest {
|
|
781
913
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -783,8 +915,7 @@ export interface UpdateMemberRoleRequest {
|
|
|
783
915
|
newRole: dxos_halo_credentials.SpaceMember.Role;
|
|
784
916
|
}
|
|
785
917
|
/**
|
|
786
|
-
* Defined in:
|
|
787
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
918
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
788
919
|
*/
|
|
789
920
|
export interface AdmitContactRequest {
|
|
790
921
|
contact: Contact;
|
|
@@ -792,29 +923,25 @@ export interface AdmitContactRequest {
|
|
|
792
923
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
793
924
|
}
|
|
794
925
|
/**
|
|
795
|
-
* Defined in:
|
|
796
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
926
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
797
927
|
*/
|
|
798
928
|
export interface ContactAdmission {
|
|
799
929
|
credential: dxos_halo_credentials.Credential;
|
|
800
930
|
}
|
|
801
931
|
/**
|
|
802
|
-
* Defined in:
|
|
803
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
932
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
804
933
|
*/
|
|
805
934
|
export interface JoinSpaceResponse {
|
|
806
935
|
space: Space;
|
|
807
936
|
}
|
|
808
937
|
/**
|
|
809
|
-
* Defined in:
|
|
810
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
938
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
811
939
|
*/
|
|
812
940
|
export interface JoinBySpaceKeyRequest {
|
|
813
941
|
spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
814
942
|
}
|
|
815
943
|
/**
|
|
816
|
-
* Defined in:
|
|
817
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
944
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
818
945
|
*/
|
|
819
946
|
export interface SpaceArchive {
|
|
820
947
|
filename: string;
|
|
@@ -836,8 +963,7 @@ export namespace SpaceArchive {
|
|
|
836
963
|
}
|
|
837
964
|
}
|
|
838
965
|
/**
|
|
839
|
-
* Defined in:
|
|
840
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
966
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
841
967
|
*/
|
|
842
968
|
export interface ExportSpaceRequest {
|
|
843
969
|
spaceId: string;
|
|
@@ -848,22 +974,23 @@ export interface ExportSpaceRequest {
|
|
|
848
974
|
format?: SpaceArchive.Format;
|
|
849
975
|
}
|
|
850
976
|
/**
|
|
851
|
-
* Defined in:
|
|
852
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
977
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
853
978
|
*/
|
|
854
979
|
export interface ExportSpaceResponse {
|
|
855
980
|
archive: SpaceArchive;
|
|
856
981
|
}
|
|
857
982
|
/**
|
|
858
|
-
* Defined in:
|
|
859
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
983
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
860
984
|
*/
|
|
861
985
|
export interface ImportSpaceRequest {
|
|
862
986
|
archive: SpaceArchive;
|
|
987
|
+
/**
|
|
988
|
+
* Immutable tags to set on the imported space at creation time.
|
|
989
|
+
*/
|
|
990
|
+
tags?: string[];
|
|
863
991
|
}
|
|
864
992
|
/**
|
|
865
|
-
* Defined in:
|
|
866
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
993
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
867
994
|
*/
|
|
868
995
|
export interface ImportSpaceResponse {
|
|
869
996
|
/**
|
|
@@ -903,8 +1030,7 @@ export interface SpacesService {
|
|
|
903
1030
|
importSpace: (request: ImportSpaceRequest, options?: RequestOptions) => Promise<ImportSpaceResponse>;
|
|
904
1031
|
}
|
|
905
1032
|
/**
|
|
906
|
-
* Defined in:
|
|
907
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1033
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
908
1034
|
*/
|
|
909
1035
|
export interface AcceptInvitationRequest {
|
|
910
1036
|
invitation: Invitation;
|
|
@@ -915,31 +1041,27 @@ export interface AcceptInvitationRequest {
|
|
|
915
1041
|
deviceProfile?: dxos_halo_credentials.DeviceProfileDocument;
|
|
916
1042
|
}
|
|
917
1043
|
/**
|
|
918
|
-
* Defined in:
|
|
919
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1044
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
920
1045
|
*/
|
|
921
1046
|
export interface AuthenticationRequest {
|
|
922
1047
|
invitationId: string;
|
|
923
1048
|
authCode: string;
|
|
924
1049
|
}
|
|
925
1050
|
/**
|
|
926
|
-
* Defined in:
|
|
927
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1051
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
928
1052
|
*/
|
|
929
1053
|
export interface CancelInvitationRequest {
|
|
930
1054
|
invitationId: string;
|
|
931
1055
|
}
|
|
932
1056
|
/**
|
|
933
|
-
* Defined in:
|
|
934
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1057
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
935
1058
|
*/
|
|
936
1059
|
export interface InvitationMethod {
|
|
937
1060
|
created?: Invitation;
|
|
938
1061
|
accepted?: Invitation;
|
|
939
1062
|
}
|
|
940
1063
|
/**
|
|
941
|
-
* Defined in:
|
|
942
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1064
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
943
1065
|
*/
|
|
944
1066
|
export interface QueryInvitationsResponse {
|
|
945
1067
|
action: QueryInvitationsResponse.Action;
|
|
@@ -972,8 +1094,7 @@ export namespace QueryInvitationsResponse {
|
|
|
972
1094
|
}
|
|
973
1095
|
}
|
|
974
1096
|
/**
|
|
975
|
-
* Defined in:
|
|
976
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1097
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
977
1098
|
*/
|
|
978
1099
|
export interface LoadPersistentInvitationsResponse {
|
|
979
1100
|
invitations?: Invitation[];
|
|
@@ -998,8 +1119,7 @@ export enum ConnectionState {
|
|
|
998
1119
|
ONLINE = 1
|
|
999
1120
|
}
|
|
1000
1121
|
/**
|
|
1001
|
-
* Defined in:
|
|
1002
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1122
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
1003
1123
|
*/
|
|
1004
1124
|
export interface NetworkStatus {
|
|
1005
1125
|
swarm: ConnectionState;
|
|
@@ -1008,8 +1128,7 @@ export interface NetworkStatus {
|
|
|
1008
1128
|
}
|
|
1009
1129
|
export namespace NetworkStatus {
|
|
1010
1130
|
/**
|
|
1011
|
-
* Defined in:
|
|
1012
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1131
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
1013
1132
|
*/
|
|
1014
1133
|
export interface Signal {
|
|
1015
1134
|
server: string;
|
|
@@ -1017,15 +1136,13 @@ export namespace NetworkStatus {
|
|
|
1017
1136
|
}
|
|
1018
1137
|
}
|
|
1019
1138
|
/**
|
|
1020
|
-
* Defined in:
|
|
1021
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1139
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
1022
1140
|
*/
|
|
1023
1141
|
export interface UpdateConfigRequest {
|
|
1024
1142
|
swarm: ConnectionState;
|
|
1025
1143
|
}
|
|
1026
1144
|
/**
|
|
1027
|
-
* Defined in:
|
|
1028
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1145
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
1029
1146
|
*/
|
|
1030
1147
|
export interface SubscribeSwarmStateRequest {
|
|
1031
1148
|
topic: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -1057,8 +1174,7 @@ export interface EdgeAgentService {
|
|
|
1057
1174
|
queryAgentStatus: (request: void, options?: RequestOptions) => Stream<QueryAgentStatusResponse>;
|
|
1058
1175
|
}
|
|
1059
1176
|
/**
|
|
1060
|
-
* Defined in:
|
|
1061
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1177
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
1062
1178
|
*/
|
|
1063
1179
|
export interface EdgeStatus {
|
|
1064
1180
|
state: EdgeStatus.ConnectionState;
|
|
@@ -1092,15 +1208,13 @@ export namespace EdgeStatus {
|
|
|
1092
1208
|
}
|
|
1093
1209
|
}
|
|
1094
1210
|
/**
|
|
1095
|
-
* Defined in:
|
|
1096
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1211
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
1097
1212
|
*/
|
|
1098
1213
|
export interface QueryEdgeStatusResponse {
|
|
1099
1214
|
status: EdgeStatus;
|
|
1100
1215
|
}
|
|
1101
1216
|
/**
|
|
1102
|
-
* Defined in:
|
|
1103
|
-
* {@link file://./../../../dxos/client/services.proto}
|
|
1217
|
+
* Defined in: `../../../dxos/client/services.proto`
|
|
1104
1218
|
*/
|
|
1105
1219
|
export interface QueryAgentStatusResponse {
|
|
1106
1220
|
status: QueryAgentStatusResponse.AgentStatus;
|
|
@@ -1118,141 +1232,7 @@ export namespace QueryAgentStatusResponse {
|
|
|
1118
1232
|
}
|
|
1119
1233
|
}
|
|
1120
1234
|
/**
|
|
1121
|
-
* Defined in:
|
|
1122
|
-
* {@link file://./../../../dxos/client/queue.proto}
|
|
1123
|
-
*/
|
|
1124
|
-
export interface QueueQuery {
|
|
1125
|
-
spaceId: string;
|
|
1126
|
-
/**
|
|
1127
|
-
* Options:
|
|
1128
|
-
* - proto3_optional = true
|
|
1129
|
-
*/
|
|
1130
|
-
queuesNamespace?: string;
|
|
1131
|
-
/**
|
|
1132
|
-
* Queries the whole space if missing.
|
|
1133
|
-
*/
|
|
1134
|
-
queueIds?: string[];
|
|
1135
|
-
/**
|
|
1136
|
-
* Filter items after this cursor. Exclusive.
|
|
1137
|
-
*
|
|
1138
|
-
* Options:
|
|
1139
|
-
* - proto3_optional = true
|
|
1140
|
-
*/
|
|
1141
|
-
after?: string;
|
|
1142
|
-
/**
|
|
1143
|
-
* Filter items before this cursor. Exclusive.
|
|
1144
|
-
*
|
|
1145
|
-
* Options:
|
|
1146
|
-
* - proto3_optional = true
|
|
1147
|
-
*/
|
|
1148
|
-
before?: string;
|
|
1149
|
-
/**
|
|
1150
|
-
* Filter items after this position. Inclusive.
|
|
1151
|
-
*
|
|
1152
|
-
* Options:
|
|
1153
|
-
* - proto3_optional = true
|
|
1154
|
-
*/
|
|
1155
|
-
beginPosition?: string;
|
|
1156
|
-
/**
|
|
1157
|
-
* Filter items before this position. Exclusive.
|
|
1158
|
-
*
|
|
1159
|
-
* Options:
|
|
1160
|
-
* - proto3_optional = true
|
|
1161
|
-
*/
|
|
1162
|
-
endPosition?: string;
|
|
1163
|
-
/**
|
|
1164
|
-
* Options:
|
|
1165
|
-
* - proto3_optional = true
|
|
1166
|
-
*/
|
|
1167
|
-
limit?: number;
|
|
1168
|
-
/**
|
|
1169
|
-
* Options:
|
|
1170
|
-
* - proto3_optional = true
|
|
1171
|
-
*/
|
|
1172
|
-
reverse?: boolean;
|
|
1173
|
-
objectIds?: string[];
|
|
1174
|
-
}
|
|
1175
|
-
/**
|
|
1176
|
-
* Defined in:
|
|
1177
|
-
* {@link file://./../../../dxos/client/queue.proto}
|
|
1178
|
-
*/
|
|
1179
|
-
export interface QueueQueryResult {
|
|
1180
|
-
/**
|
|
1181
|
-
* coerces `undefined` to `null`, corrupting optional fields.
|
|
1182
|
-
*/
|
|
1183
|
-
objects?: string[];
|
|
1184
|
-
/**
|
|
1185
|
-
* Cursor to query the next items. Can be passed to `after` in query to keep querying.
|
|
1186
|
-
*/
|
|
1187
|
-
nextCursor: string;
|
|
1188
|
-
prevCursor: string;
|
|
1189
|
-
}
|
|
1190
|
-
/**
|
|
1191
|
-
* Defined in:
|
|
1192
|
-
* {@link file://./../../../dxos/client/queue.proto}
|
|
1193
|
-
*/
|
|
1194
|
-
export interface QueryQueueRequest {
|
|
1195
|
-
query: QueueQuery;
|
|
1196
|
-
}
|
|
1197
|
-
/**
|
|
1198
|
-
* Defined in:
|
|
1199
|
-
* {@link file://./../../../dxos/client/queue.proto}
|
|
1200
|
-
*/
|
|
1201
|
-
export interface InsertIntoQueueRequest {
|
|
1202
|
-
subspaceTag: string;
|
|
1203
|
-
spaceId: string;
|
|
1204
|
-
queueId: string;
|
|
1205
|
-
/**
|
|
1206
|
-
* JSON-encoded object payloads. Each entry is a serialized ObjectJSON.
|
|
1207
|
-
*/
|
|
1208
|
-
objects?: string[];
|
|
1209
|
-
}
|
|
1210
|
-
/**
|
|
1211
|
-
* Defined in:
|
|
1212
|
-
* {@link file://./../../../dxos/client/queue.proto}
|
|
1213
|
-
*/
|
|
1214
|
-
export interface DeleteFromQueueRequest {
|
|
1215
|
-
subspaceTag: string;
|
|
1216
|
-
spaceId: string;
|
|
1217
|
-
queueId: string;
|
|
1218
|
-
objectIds?: string[];
|
|
1219
|
-
}
|
|
1220
|
-
/**
|
|
1221
|
-
* Defined in:
|
|
1222
|
-
* {@link file://./../../../dxos/client/queue.proto}
|
|
1223
|
-
*/
|
|
1224
|
-
export interface SyncQueueRequest {
|
|
1225
|
-
subspaceTag: string;
|
|
1226
|
-
spaceId: string;
|
|
1227
|
-
queueId: string;
|
|
1228
|
-
/**
|
|
1229
|
-
* Whether to push local changes to the server. Defaults to true.
|
|
1230
|
-
*
|
|
1231
|
-
* Options:
|
|
1232
|
-
* - proto3_optional = true
|
|
1233
|
-
*/
|
|
1234
|
-
shouldPush?: boolean;
|
|
1235
|
-
/**
|
|
1236
|
-
* Whether to pull remote changes from the server. Defaults to true.
|
|
1237
|
-
*
|
|
1238
|
-
* Options:
|
|
1239
|
-
* - proto3_optional = true
|
|
1240
|
-
*/
|
|
1241
|
-
shouldPull?: boolean;
|
|
1242
|
-
}
|
|
1243
|
-
/**
|
|
1244
|
-
* Defined in:
|
|
1245
|
-
* {@link file://./../../../dxos/client/queue.proto}
|
|
1246
|
-
*/
|
|
1247
|
-
export interface QueueService {
|
|
1248
|
-
queryQueue: (request: QueryQueueRequest, options?: RequestOptions) => Promise<QueueQueryResult>;
|
|
1249
|
-
insertIntoQueue: (request: InsertIntoQueueRequest, options?: RequestOptions) => Promise<void>;
|
|
1250
|
-
deleteFromQueue: (request: DeleteFromQueueRequest, options?: RequestOptions) => Promise<void>;
|
|
1251
|
-
syncQueue: (request: SyncQueueRequest, options?: RequestOptions) => Promise<void>;
|
|
1252
|
-
}
|
|
1253
|
-
/**
|
|
1254
|
-
* Defined in:
|
|
1255
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1235
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1256
1236
|
*/
|
|
1257
1237
|
export interface Metrics {
|
|
1258
1238
|
timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
|
|
@@ -1260,8 +1240,7 @@ export interface Metrics {
|
|
|
1260
1240
|
}
|
|
1261
1241
|
export namespace Metrics {
|
|
1262
1242
|
/**
|
|
1263
|
-
* Defined in:
|
|
1264
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1243
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1265
1244
|
*/
|
|
1266
1245
|
export interface KeyPair {
|
|
1267
1246
|
/**
|
|
@@ -1282,8 +1261,7 @@ export namespace Metrics {
|
|
|
1282
1261
|
}
|
|
1283
1262
|
}
|
|
1284
1263
|
/**
|
|
1285
|
-
* Defined in:
|
|
1286
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1264
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1287
1265
|
*/
|
|
1288
1266
|
export interface ControlMetricsRequest {
|
|
1289
1267
|
/**
|
|
@@ -1298,8 +1276,7 @@ export interface ControlMetricsRequest {
|
|
|
1298
1276
|
record?: boolean;
|
|
1299
1277
|
}
|
|
1300
1278
|
/**
|
|
1301
|
-
* Defined in:
|
|
1302
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1279
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1303
1280
|
*/
|
|
1304
1281
|
export interface ControlMetricsResponse {
|
|
1305
1282
|
/**
|
|
@@ -1309,8 +1286,7 @@ export interface ControlMetricsResponse {
|
|
|
1309
1286
|
recording?: boolean;
|
|
1310
1287
|
}
|
|
1311
1288
|
/**
|
|
1312
|
-
* Defined in:
|
|
1313
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1289
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1314
1290
|
*/
|
|
1315
1291
|
export interface QueryMetricsRequest {
|
|
1316
1292
|
/**
|
|
@@ -1320,8 +1296,7 @@ export interface QueryMetricsRequest {
|
|
|
1320
1296
|
interval?: number;
|
|
1321
1297
|
}
|
|
1322
1298
|
/**
|
|
1323
|
-
* Defined in:
|
|
1324
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1299
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1325
1300
|
*/
|
|
1326
1301
|
export interface QueryMetricsResponse {
|
|
1327
1302
|
timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
|
|
@@ -1341,8 +1316,7 @@ export enum LogLevel {
|
|
|
1341
1316
|
ERROR = 14
|
|
1342
1317
|
}
|
|
1343
1318
|
/**
|
|
1344
|
-
* Defined in:
|
|
1345
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1319
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1346
1320
|
*/
|
|
1347
1321
|
export interface QueryLogsRequest {
|
|
1348
1322
|
filters?: QueryLogsRequest.Filter[];
|
|
@@ -1363,8 +1337,7 @@ export namespace QueryLogsRequest {
|
|
|
1363
1337
|
EXPLICIT = 2
|
|
1364
1338
|
}
|
|
1365
1339
|
/**
|
|
1366
|
-
* Defined in:
|
|
1367
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1340
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1368
1341
|
*/
|
|
1369
1342
|
export interface Filter {
|
|
1370
1343
|
level: LogLevel;
|
|
@@ -1376,8 +1349,7 @@ export namespace QueryLogsRequest {
|
|
|
1376
1349
|
}
|
|
1377
1350
|
}
|
|
1378
1351
|
/**
|
|
1379
|
-
* Defined in:
|
|
1380
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1352
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1381
1353
|
*/
|
|
1382
1354
|
export interface LogEntry {
|
|
1383
1355
|
level: LogLevel;
|
|
@@ -1401,8 +1373,7 @@ export interface LogEntry {
|
|
|
1401
1373
|
}
|
|
1402
1374
|
export namespace LogEntry {
|
|
1403
1375
|
/**
|
|
1404
|
-
* Defined in:
|
|
1405
|
-
* {@link file://./../../../dxos/client/logging.proto}
|
|
1376
|
+
* Defined in: `../../../dxos/client/logging.proto`
|
|
1406
1377
|
*/
|
|
1407
1378
|
export interface Meta {
|
|
1408
1379
|
file: string;
|
|
@@ -1429,8 +1400,7 @@ export interface LoggingService {
|
|
|
1429
1400
|
queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
|
|
1430
1401
|
}
|
|
1431
1402
|
/**
|
|
1432
|
-
* Defined in:
|
|
1433
|
-
* {@link file://./../../../dxos/client/invitation.proto}
|
|
1403
|
+
* Defined in: `../../../dxos/client/invitation.proto`
|
|
1434
1404
|
*/
|
|
1435
1405
|
export interface AdmissionKeypair {
|
|
1436
1406
|
publicKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
|
|
@@ -1450,6 +1420,7 @@ export enum SpaceState {
|
|
|
1450
1420
|
INVALID = 0,
|
|
1451
1421
|
SPACE_INACTIVE = 2,
|
|
1452
1422
|
SPACE_ACTIVE = 6,
|
|
1423
|
+
SPACE_DELETED = 9,
|
|
1453
1424
|
SPACE_CLOSED = 1,
|
|
1454
1425
|
SPACE_CONTROL_ONLY = 7,
|
|
1455
1426
|
SPACE_INITIALIZING = 4,
|
|
@@ -1460,8 +1431,7 @@ export enum SpaceState {
|
|
|
1460
1431
|
/**
|
|
1461
1432
|
* Represents the invitation state passed between client and service.
|
|
1462
1433
|
*
|
|
1463
|
-
* Defined in:
|
|
1464
|
-
* {@link file://./../../../dxos/client/invitation.proto}
|
|
1434
|
+
* Defined in: `../../../dxos/client/invitation.proto`
|
|
1465
1435
|
*/
|
|
1466
1436
|
export interface Invitation {
|
|
1467
1437
|
/**
|
|
@@ -1591,8 +1561,9 @@ export namespace Invitation {
|
|
|
1591
1561
|
* {@link file://./../../../dxos/client/invitation.proto}
|
|
1592
1562
|
*/
|
|
1593
1563
|
export enum Kind {
|
|
1594
|
-
|
|
1595
|
-
|
|
1564
|
+
INVALID = 0,
|
|
1565
|
+
DEVICE = 1,
|
|
1566
|
+
SPACE = 2
|
|
1596
1567
|
}
|
|
1597
1568
|
/**
|
|
1598
1569
|
* Defined in:
|