@dxos/protocols 0.8.4-main.fbb7a13 → 0.8.4-main.fcfe5033a5
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/README.md +1 -1
- package/dist/src/FeedProtocol.d.ts +528 -0
- package/dist/src/FeedProtocol.d.ts.map +1 -0
- package/dist/src/FeedProtocol.js +237 -0
- package/dist/src/FeedProtocol.js.map +1 -0
- package/dist/src/FunctionProtocol.d.ts +2 -2
- package/dist/src/FunctionProtocol.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/client/queue_pb.d.ts +42 -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 +7 -2
- 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 +64 -3
- 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 +68 -37
- 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 +104 -2
- package/dist/src/buf/proto/gen/dxos/config_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/config_pb.js +72 -1
- package/dist/src/buf/proto/gen/dxos/config_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/edge/messenger_pb.d.ts +28 -0
- package/dist/src/buf/proto/gen/dxos/edge/messenger_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/edge/messenger_pb.js +10 -5
- package/dist/src/buf/proto/gen/dxos/edge/messenger_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/google_pb.js +1 -1
- package/dist/src/buf/proto/gen/dxos/halo/credentials_pb.d.ts +39 -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 +27 -2
- package/dist/src/buf/proto/gen/dxos/halo/credentials_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/iframe_pb.d.ts +0 -10
- package/dist/src/buf/proto/gen/dxos/iframe_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/iframe_pb.js +1 -1
- package/dist/src/buf/proto/gen/dxos/iframe_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/rpc_pb.d.ts +24 -0
- package/dist/src/buf/proto/gen/dxos/rpc_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/rpc_pb.js +12 -7
- package/dist/src/buf/proto/gen/dxos/rpc_pb.js.map +1 -1
- package/dist/src/buf/proto/gen/dxos/tracing_pb.d.ts +1 -139
- package/dist/src/buf/proto/gen/dxos/tracing_pb.d.ts.map +1 -1
- package/dist/src/buf/proto/gen/dxos/tracing_pb.js +11 -45
- package/dist/src/buf/proto/gen/dxos/tracing_pb.js.map +1 -1
- package/dist/src/codec.test.js +1 -1
- package/dist/src/edge/EdgeFunctionEnv.d.ts +12 -24
- package/dist/src/edge/EdgeFunctionEnv.d.ts.map +1 -1
- package/dist/src/edge/edge.d.ts +165 -0
- package/dist/src/edge/edge.d.ts.map +1 -1
- package/dist/src/edge/edge.js +13 -0
- package/dist/src/edge/edge.js.map +1 -1
- package/dist/src/edge/errors.d.ts +1 -1
- package/dist/src/edge/errors.js +1 -1
- package/dist/src/edge/index.d.ts +4 -3
- package/dist/src/edge/index.d.ts.map +1 -1
- package/dist/src/edge/index.js +4 -3
- package/dist/src/edge/index.js.map +1 -1
- package/dist/src/edge/registry.d.ts +127 -0
- package/dist/src/edge/registry.d.ts.map +1 -0
- package/dist/src/edge/registry.js +79 -0
- package/dist/src/edge/registry.js.map +1 -0
- 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 +1 -1
- package/dist/src/errors/errors.d.ts.map +1 -1
- package/dist/src/errors/errors.js +1 -1
- package/dist/src/errors/errors.js.map +1 -1
- package/dist/src/errors/errors.test.js +1 -1
- package/dist/src/errors/helpers.d.ts +1 -1
- package/dist/src/errors/index.d.ts +5 -5
- package/dist/src/errors/index.js +5 -5
- package/dist/src/index.d.ts +12 -12
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +11 -12
- package/dist/src/index.js.map +1 -1
- package/dist/src/indexing.test.js +1 -1
- package/dist/src/proto/gen/dxos/client/services.d.ts +1009 -954
- package/dist/src/proto/gen/dxos/client/services.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/client/services.js +107 -94
- package/dist/src/proto/gen/dxos/client/services.js.map +1 -1
- package/dist/src/proto/gen/dxos/config.d.ts +55 -1
- package/dist/src/proto/gen/dxos/config.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/config.js +26 -0
- package/dist/src/proto/gen/dxos/config.js.map +1 -1
- package/dist/src/proto/gen/dxos/devtools/host.d.ts +31 -31
- package/dist/src/proto/gen/dxos/devtools/host.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/echo/metadata.d.ts +4 -0
- 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/edge/messenger.d.ts +24 -0
- 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/halo/credentials.d.ts +15 -1
- package/dist/src/proto/gen/dxos/halo/credentials.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/halo/credentials.js +9 -0
- package/dist/src/proto/gen/dxos/halo/credentials.js.map +1 -1
- package/dist/src/proto/gen/dxos/iframe.d.ts +0 -10
- 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/rpc.d.ts +19 -0
- 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/tracing.d.ts +0 -79
- package/dist/src/proto/gen/dxos/tracing.d.ts.map +1 -1
- package/dist/src/proto/gen/google/protobuf.d.ts +326 -40
- package/dist/src/proto/gen/google/protobuf.d.ts.map +1 -1
- package/dist/src/proto/gen/google/protobuf.js +127 -1
- package/dist/src/proto/gen/google/protobuf.js.map +1 -1
- package/dist/src/proto/gen/index.d.ts +32 -7
- 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.d.ts +2 -2
- package/dist/src/proto/index.js +1 -1
- package/dist/src/proto/types.d.ts +1 -1
- package/dist/src/space-archive.d.ts +60 -1
- package/dist/src/space-archive.d.ts.map +1 -1
- package/dist/src/space-archive.js +13 -1
- package/dist/src/space-archive.js.map +1 -1
- package/dist/src/types.d.ts +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -14
- package/src/FeedProtocol.ts +320 -0
- package/src/FunctionProtocol.ts +2 -4
- package/src/buf/proto/gen/dxos/agent/dashboard_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/agent/echo-proxy_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/agent/epoch_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/agent/functions_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/bot_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/client/invitation_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/client/logging_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/client/queue_pb.ts +51 -2
- package/src/buf/proto/gen/dxos/client/services_pb.ts +114 -40
- package/src/buf/proto/gen/dxos/config_pb.ts +122 -4
- package/src/buf/proto/gen/dxos/devtools/diagnostics_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/devtools/host_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/devtools/swarm_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/blob_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/feed_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/filter_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/indexing_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/metadata_pb.ts +9 -2
- package/src/buf/proto/gen/dxos/echo/model/document_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/model/messenger_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/model/text_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/object_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/query_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/service_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/snapshot_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/echo/timeframe_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/edge/calls_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/edge/messenger_pb.ts +39 -6
- package/src/buf/proto/gen/dxos/edge/signal_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/error_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/field_options_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/google_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/gravity_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/halo/credentials/auth_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/halo/credentials/greet_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/halo/credentials/identity_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/halo/credentials_pb.ts +49 -3
- package/src/buf/proto/gen/dxos/halo/invitations_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/halo/keyring_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/halo/keys_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/halo/signed_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/iframe_pb.ts +2 -14
- package/src/buf/proto/gen/dxos/keys_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/bridge_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/broadcast_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/messaging_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/muxer_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/presence_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/protocol_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/replicator_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/signal_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/swarm_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/teleport/admission-discovery_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/teleport/auth_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/teleport/automerge_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/teleport/blobsync_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/teleport/control_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/teleport/gossip_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/teleport/notarization_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/mesh/teleport/replicator_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/registry_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/rpc_pb.ts +37 -8
- package/src/buf/proto/gen/dxos/service/agentmanager_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/service/publisher_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/service/supervisor_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/service/tunnel_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/tracing_pb.ts +12 -179
- package/src/buf/proto/gen/dxos/type_pb.ts +1 -1
- package/src/buf/proto/gen/dxos/value_pb.ts +1 -1
- package/src/buf/proto/gen/example/testing/data_pb.ts +1 -1
- package/src/buf/proto/gen/example/testing/rpc_pb.ts +1 -1
- package/src/codec.test.ts +1 -1
- package/src/edge/EdgeFunctionEnv.ts +25 -27
- package/src/edge/edge.ts +120 -0
- package/src/edge/errors.ts +1 -1
- package/src/edge/index.ts +4 -3
- package/src/edge/registry.ts +96 -0
- package/src/errors/encoding.ts +2 -3
- package/src/errors/errors.test.ts +1 -1
- package/src/errors/errors.ts +2 -3
- package/src/errors/helpers.ts +1 -1
- package/src/errors/index.ts +5 -5
- package/src/index.ts +12 -14
- package/src/indexing.test.ts +1 -1
- package/src/proto/dxos/client/queue.proto +11 -0
- package/src/proto/dxos/client/services.proto +19 -1
- package/src/proto/dxos/config.proto +47 -2
- package/src/proto/dxos/echo/metadata.proto +3 -0
- package/src/proto/dxos/edge/messenger.proto +10 -0
- package/src/proto/dxos/halo/credentials.proto +15 -0
- package/src/proto/dxos/iframe.proto +0 -3
- package/src/proto/dxos/rpc.proto +7 -0
- package/src/proto/dxos/tracing.proto +0 -40
- package/src/proto/gen/dxos/client/services.ts +1009 -954
- package/src/proto/gen/dxos/config.ts +55 -1
- package/src/proto/gen/dxos/devtools/host.ts +31 -31
- package/src/proto/gen/dxos/echo/metadata.ts +4 -0
- package/src/proto/gen/dxos/edge/messenger.ts +24 -0
- package/src/proto/gen/dxos/halo/credentials.ts +15 -1
- package/src/proto/gen/dxos/iframe.ts +0 -10
- package/src/proto/gen/dxos/rpc.ts +19 -0
- package/src/proto/gen/dxos/tracing.ts +0 -76
- package/src/proto/gen/google/protobuf.ts +326 -40
- package/src/proto/gen/index.ts +33 -8
- package/src/proto/index.ts +2 -2
- package/src/proto/types.ts +1 -1
- package/src/space-archive.ts +70 -1
- package/src/types.ts +2 -2
- package/dist/src/queue.d.ts +0 -3
- package/dist/src/queue.d.ts.map +0 -1
- package/dist/src/queue.js +0 -5
- package/dist/src/queue.js.map +0 -1
- package/src/queue.ts +0 -14
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/halo/credentials.proto (package dxos.halo.credentials, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -20,7 +20,7 @@ import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
|
20
20
|
* Describes the file dxos/halo/credentials.proto.
|
|
21
21
|
*/
|
|
22
22
|
export const file_dxos_halo_credentials: GenFile = /*@__PURE__*/
|
|
23
|
-
fileDesc("
|
|
23
|
+
fileDesc("ChtkeG9zL2hhbG8vY3JlZGVudGlhbHMucHJvdG8SFWR4b3MuaGFsby5jcmVkZW50aWFscyKJAQoMU3BhY2VHZW5lc2lzEicKCXNwYWNlX2tleRgBIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXkSDAoEdGFncxgCIAMoCRJCChFtZW1iZXJzaGlwX3BvbGljeRgDIAEoDjInLmR4b3MuaGFsby5jcmVkZW50aWFscy5NZW1iZXJzaGlwUG9saWN5Ip8DCgtTcGFjZU1lbWJlchInCglzcGFjZV9rZXkYASABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EjUKBHJvbGUYAiABKA4yJy5keG9zLmhhbG8uY3JlZGVudGlhbHMuU3BhY2VNZW1iZXIuUm9sZRIMCgR0YWdzGAYgAygJEjwKB3Byb2ZpbGUYAyABKAsyJi5keG9zLmhhbG8uY3JlZGVudGlhbHMuUHJvZmlsZURvY3VtZW50SACIAQESLgoQZ2VuZXNpc19mZWVkX2tleRgEIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXkSOwoYaW52aXRhdGlvbl9jcmVkZW50aWFsX2lkGAUgASgLMhQuZHhvcy5rZXlzLlB1YmxpY0tleUgBiAEBIk4KBFJvbGUSCwoHSU5WQUxJRBAAEgkKBUFETUlOEAESCgoGRURJVE9SEAISCgoGUkVBREVSEAMSCQoFT1dORVIQBBILCgdSRU1PVkVEEAVCCgoIX3Byb2ZpbGVCGwoZX2ludml0YXRpb25fY3JlZGVudGlhbF9pZCJZCg1NZW1iZXJQcm9maWxlEjwKB3Byb2ZpbGUYAyABKAsyJi5keG9zLmhhbG8uY3JlZGVudGlhbHMuUHJvZmlsZURvY3VtZW50SACIAQFCCgoIX3Byb2ZpbGUiaAoQQXV0aG9yaXplZERldmljZRIqCgxpZGVudGl0eV9rZXkYASABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EigKCmRldmljZV9rZXkYAiABKAsyFC5keG9zLmtleXMuUHVibGljS2V5IoYCCgxBZG1pdHRlZEZlZWQSJwoJc3BhY2Vfa2V5GAEgASgLMhQuZHhvcy5rZXlzLlB1YmxpY0tleRIqCgxpZGVudGl0eV9rZXkYAiABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EigKCmRldmljZV9rZXkYAyABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EkQKC2Rlc2lnbmF0aW9uGAQgASgOMi8uZHhvcy5oYWxvLmNyZWRlbnRpYWxzLkFkbWl0dGVkRmVlZC5EZXNpZ25hdGlvbiIxCgtEZXNpZ25hdGlvbhILCgdHRU5FUkFMEAASCwoHQ09OVFJPTBABEggKBERBVEEQAiLsAQoFRXBvY2gSDgoGbnVtYmVyGAEgASgNEi4KC3ByZXZpb3VzX2lkGAIgASgLMhQuZHhvcy5rZXlzLlB1YmxpY0tleUgAiAEBEjcKCXRpbWVmcmFtZRgKIAEoCzIkLmR4b3MuZWNoby50aW1lZnJhbWUuVGltZWZyYW1lVmVjdG9yEhkKDHNuYXBzaG90X2NpZBgLIAEoCUgBiAEBEhsKDmF1dG9tZXJnZV9yb290GAwgASgJSAKIAQFCDgoMX3ByZXZpb3VzX2lkQg8KDV9zbmFwc2hvdF9jaWRCEQoPX2F1dG9tZXJnZV9yb290Il8KCUhhbG9TcGFjZRIqCgxpZGVudGl0eV9rZXkYASABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EiYKCGhhbG9fa2V5GAIgASgLMhQuZHhvcy5rZXlzLlB1YmxpY0tleSLOAQoQSWRlbnRpdHlSZWNvdmVyeRIqCgxpZGVudGl0eV9rZXkYASABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EioKDHJlY292ZXJ5X2tleRgCIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXkSFgoJYWxnb3JpdGhtGAMgASgJSACIAQESLQoKbG9va3VwX2tleRgEIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXlIAYgBAUIMCgpfYWxnb3JpdGhtQg0KC19sb29rdXBfa2V5IpoBCg9Qcm9maWxlRG9jdW1lbnQSGQoMZGlzcGxheV9uYW1lGAEgASgJSACIAQESFwoKYXZhdGFyX2NpZBgCIAEoCUgBiAEBEioKBGRhdGEYCiABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAKIAQFCDwoNX2Rpc3BsYXlfbmFtZUINCgtfYXZhdGFyX2NpZEIHCgVfZGF0YSJKCg9JZGVudGl0eVByb2ZpbGUSNwoHcHJvZmlsZRgBIAEoCzImLmR4b3MuaGFsby5jcmVkZW50aWFscy5Qcm9maWxlRG9jdW1lbnQiuAIKFURldmljZVByb2ZpbGVEb2N1bWVudBISCgVsYWJlbBgBIAEoCUgAiAEBEhUKCHBsYXRmb3JtGAIgASgJSAGIAQESHQoQcGxhdGZvcm1fdmVyc2lvbhgDIAEoCUgCiAEBEhkKDGFyY2hpdGVjdHVyZRgEIAEoCUgDiAEBEg8KAm9zGAUgASgJSASIAQESFwoKb3NfdmVyc2lvbhgGIAEoCUgFiAEBEjQKBHR5cGUYByABKA4yIS5keG9zLmhhbG8uY3JlZGVudGlhbHMuRGV2aWNlVHlwZUgGiAEBQggKBl9sYWJlbEILCglfcGxhdGZvcm1CEwoRX3BsYXRmb3JtX3ZlcnNpb25CDwoNX2FyY2hpdGVjdHVyZUIFCgNfb3NCDQoLX29zX3ZlcnNpb25CBwoFX3R5cGUiTgoNRGV2aWNlUHJvZmlsZRI9Cgdwcm9maWxlGAEgASgLMiwuZHhvcy5oYWxvLmNyZWRlbnRpYWxzLkRldmljZVByb2ZpbGVEb2N1bWVudCIgCgxEZWZhdWx0U3BhY2USEAoIc3BhY2VfaWQYASABKAkidgoKS3ViZUFjY2VzcxImCghrdWJlX2tleRgBIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXkSKgoMaWRlbnRpdHlfa2V5GAIgASgLMhQuZHhvcy5rZXlzLlB1YmxpY0tleRIUCgxjYXBhYmlsaXRpZXMYAyADKAki2wEKDVNlcnZpY2VBY2Nlc3MSEwoLc2VydmVyX25hbWUYASABKAkSNQoPc2VydmVyX21ldGFkYXRhGAIgASgLMhcuZ29vZ2xlLnByb3RvYnVmLlN0cnVjdEgAiAEBEigKCnNlcnZlcl9rZXkYAyABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EioKDGlkZW50aXR5X2tleRgEIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXkSFAoMY2FwYWJpbGl0aWVzGAUgAygJQhIKEF9zZXJ2ZXJfbWV0YWRhdGEiJQoHS2V5SW5mbxIRCgRuYW1lGAEgASgJSACIAQFCBwoFX25hbWUiBgoEQXV0aCJSCgVDbGFpbRIgCgJpZBgBIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXkSJwoJYXNzZXJ0aW9uGAIgASgLMhQuZ29vZ2xlLnByb3RvYnVmLkFueSLXAQoFUHJvb2YSDAoEdHlwZRgBIAEoCRIxCg1jcmVhdGlvbl9kYXRlGAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIkCgZzaWduZXIYAyABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EhIKBW5vbmNlGAQgASgMSACIAQESDQoFdmFsdWUYBSABKAwSMAoFY2hhaW4YBiABKAsyHC5keG9zLmhhbG8uY3JlZGVudGlhbHMuQ2hhaW5IAYgBAUIICgZfbm9uY2VCCAoGX2NoYWluIj4KBUNoYWluEjUKCmNyZWRlbnRpYWwYASABKAsyIS5keG9zLmhhbG8uY3JlZGVudGlhbHMuQ3JlZGVudGlhbCKxAwoKQ3JlZGVudGlhbBIlCgJpZBgBIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXlIAIgBARIkCgZpc3N1ZXIYAiABKAsyFC5keG9zLmtleXMuUHVibGljS2V5EjEKDWlzc3VhbmNlX2RhdGUYAyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjgKD2V4cGlyYXRpb25fZGF0ZRgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBIAYgBARIbCg5leHBpcmF0aW9uX3JlZhgFIAEoDEgCiAEBEi0KB3N1YmplY3QYCiABKAsyHC5keG9zLmhhbG8uY3JlZGVudGlhbHMuQ2xhaW0SMAoFcHJvb2YYCyABKAsyHC5keG9zLmhhbG8uY3JlZGVudGlhbHMuUHJvb2ZIA4gBARIzChVwYXJlbnRfY3JlZGVudGlhbF9pZHMYDCADKAsyFC5keG9zLmtleXMuUHVibGljS2V5QgUKA19pZEISChBfZXhwaXJhdGlvbl9kYXRlQhEKD19leHBpcmF0aW9uX3JlZkIICgZfcHJvb2YidAoMUHJlc2VudGF0aW9uEjYKC2NyZWRlbnRpYWxzGAEgAygLMiEuZHhvcy5oYWxvLmNyZWRlbnRpYWxzLkNyZWRlbnRpYWwSLAoGcHJvb2ZzGAIgAygLMhwuZHhvcy5oYWxvLmNyZWRlbnRpYWxzLlByb29mKioKEE1lbWJlcnNoaXBQb2xpY3kSCgoGSU5WSVRFEAASCgoGTE9DS0VEEAEqXAoKRGV2aWNlVHlwZRILCgdVTktOT1dOEAASCwoHQlJPV1NFUhABEgoKBk5BVElWRRACEgkKBUFHRU5UEAMSEQoNQUdFTlRfTUFOQUdFRBAEEgoKBk1PQklMRRAFQjZaNGdpdGh1Yi5jb20vZHhvcy9keG9zL3Byb3RvL2RlZi9keG9zL2hhbG8vY3JlZGVudGlhbHNiBnByb3RvMw", [file_google_protobuf_any, file_google_protobuf_struct, file_google_protobuf_timestamp, file_dxos_echo_timeframe, file_dxos_keys]);
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* [ASSERTION]
|
|
@@ -34,6 +34,16 @@ export type SpaceGenesis = Message<"dxos.halo.credentials.SpaceGenesis"> & {
|
|
|
34
34
|
* @generated from field: dxos.keys.PublicKey space_key = 1;
|
|
35
35
|
*/
|
|
36
36
|
spaceKey?: PublicKey;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: repeated string tags = 2;
|
|
40
|
+
*/
|
|
41
|
+
tags: string[];
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: dxos.halo.credentials.MembershipPolicy membership_policy = 3;
|
|
45
|
+
*/
|
|
46
|
+
membershipPolicy: MembershipPolicy;
|
|
37
47
|
};
|
|
38
48
|
|
|
39
49
|
/**
|
|
@@ -60,6 +70,13 @@ export type SpaceMember = Message<"dxos.halo.credentials.SpaceMember"> & {
|
|
|
60
70
|
*/
|
|
61
71
|
role: SpaceMember_Role;
|
|
62
72
|
|
|
73
|
+
/**
|
|
74
|
+
* / Immutable tags assigned at space creation time.
|
|
75
|
+
*
|
|
76
|
+
* @generated from field: repeated string tags = 6;
|
|
77
|
+
*/
|
|
78
|
+
tags: string[];
|
|
79
|
+
|
|
63
80
|
/**
|
|
64
81
|
* TODO(burdon): Identity key?
|
|
65
82
|
*
|
|
@@ -500,6 +517,7 @@ export const DeviceProfileSchema: GenMessage<DeviceProfile> = /*@__PURE__*/
|
|
|
500
517
|
|
|
501
518
|
/**
|
|
502
519
|
* / [ASSERTION]: Sets default space for identity.
|
|
520
|
+
* / @deprecated Default space is no longer managed by the SDK. Existing credentials are ignored.
|
|
503
521
|
*
|
|
504
522
|
* @generated from message dxos.halo.credentials.DefaultSpace
|
|
505
523
|
*/
|
|
@@ -811,6 +829,31 @@ export type Presentation = Message<"dxos.halo.credentials.Presentation"> & {
|
|
|
811
829
|
export const PresentationSchema: GenMessage<Presentation> = /*@__PURE__*/
|
|
812
830
|
messageDesc(file_dxos_halo_credentials, 21);
|
|
813
831
|
|
|
832
|
+
/**
|
|
833
|
+
* @generated from enum dxos.halo.credentials.MembershipPolicy
|
|
834
|
+
*/
|
|
835
|
+
export enum MembershipPolicy {
|
|
836
|
+
/**
|
|
837
|
+
* / Members can be invited by admins/owners.
|
|
838
|
+
*
|
|
839
|
+
* @generated from enum value: INVITE = 0;
|
|
840
|
+
*/
|
|
841
|
+
INVITE = 0,
|
|
842
|
+
|
|
843
|
+
/**
|
|
844
|
+
* / No new members can be added after genesis.
|
|
845
|
+
*
|
|
846
|
+
* @generated from enum value: LOCKED = 1;
|
|
847
|
+
*/
|
|
848
|
+
LOCKED = 1,
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* Describes the enum dxos.halo.credentials.MembershipPolicy.
|
|
853
|
+
*/
|
|
854
|
+
export const MembershipPolicySchema: GenEnum<MembershipPolicy> = /*@__PURE__*/
|
|
855
|
+
enumDesc(file_dxos_halo_credentials, 0);
|
|
856
|
+
|
|
814
857
|
/**
|
|
815
858
|
* @generated from enum dxos.halo.credentials.DeviceType
|
|
816
859
|
*/
|
|
@@ -831,6 +874,9 @@ export enum DeviceType {
|
|
|
831
874
|
NATIVE = 2,
|
|
832
875
|
|
|
833
876
|
/**
|
|
877
|
+
* TODO(wittjosiah): Rename "agent" to avoid naming collision with AI agents.
|
|
878
|
+
* TODO(wittjosiah): Unknown, Browser, CLI, Desktop, Mobile, Custodian?
|
|
879
|
+
*
|
|
834
880
|
* @generated from enum value: AGENT = 3;
|
|
835
881
|
*/
|
|
836
882
|
AGENT = 3,
|
|
@@ -850,5 +896,5 @@ export enum DeviceType {
|
|
|
850
896
|
* Describes the enum dxos.halo.credentials.DeviceType.
|
|
851
897
|
*/
|
|
852
898
|
export const DeviceTypeSchema: GenEnum<DeviceType> = /*@__PURE__*/
|
|
853
|
-
enumDesc(file_dxos_halo_credentials,
|
|
899
|
+
enumDesc(file_dxos_halo_credentials, 1);
|
|
854
900
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2021 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/halo/invitations.proto (package dxos.halo.invitations, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/halo/keyring.proto (package dxos.halo.keyring, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2020 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/halo/keys.proto (package dxos.halo.keys, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2020 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/halo/signed.proto (package dxos.halo.signed, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2020 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/iframe.proto (package dxos.iframe, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -20,7 +20,7 @@ import type { Message } from "@bufbuild/protobuf";
|
|
|
20
20
|
* Describes the file dxos/iframe.proto.
|
|
21
21
|
*/
|
|
22
22
|
export const file_dxos_iframe: GenFile = /*@__PURE__*/
|
|
23
|
-
fileDesc("
|
|
23
|
+
fileDesc("ChFkeG9zL2lmcmFtZS5wcm90bxILZHhvcy5pZnJhbWUiQgoMU3RhcnRSZXF1ZXN0Eg4KBm9yaWdpbhgBIAEoCRIVCghsb2NrX2tleRgCIAEoCUgAiAEBQgsKCV9sb2NrX2tleSLuAQoRQXBwQ29udGV4dFJlcXVlc3QSLwoHZGlzcGxheRgBIAEoDjIZLmR4b3MuaWZyYW1lLlNoZWxsRGlzcGxheUgAiAEBEiwKCXNwYWNlX2tleRgCIAEoCzIULmR4b3Mua2V5cy5QdWJsaWNLZXlIAYgBARIVCghzcGFjZV9pZBgFIAEoCUgCiAEBEhMKBnRhcmdldBgDIAEoCUgDiAEBEhIKBXJlc2V0GAQgASgISASIAQFCCgoIX2Rpc3BsYXlCDAoKX3NwYWNlX2tleUILCglfc3BhY2VfaWRCCQoHX3RhcmdldEIICgZfcmVzZXQi6wEKDUxheW91dFJlcXVlc3QSKAoGbGF5b3V0GAEgASgOMhguZHhvcy5pZnJhbWUuU2hlbGxMYXlvdXQSHAoPaW52aXRhdGlvbl9jb2RlGAIgASgJSACIAQESLAoJc3BhY2Vfa2V5GAMgASgLMhQuZHhvcy5rZXlzLlB1YmxpY0tleUgBiAEBEhUKCHNwYWNlX2lkGAUgASgJSAKIAQESEwoGdGFyZ2V0GAQgASgJSAOIAQFCEgoQX2ludml0YXRpb25fY29kZUIMCgpfc3BhY2Vfa2V5QgsKCV9zcGFjZV9pZEIJCgdfdGFyZ2V0Im8KFEludml0YXRpb25VcmxSZXF1ZXN0EhYKDmludml0YXRpb25fdXJsGAEgASgJEh8KF2RldmljZV9pbnZpdGF0aW9uX3BhcmFtGAIgASgJEh4KFnNwYWNlX2ludml0YXRpb25fcGFyYW0YAyABKAkqKAoMU2hlbGxEaXNwbGF5EggKBE5PTkUQABIOCgpGVUxMU0NSRUVOEAEq3gEKC1NoZWxsTGF5b3V0EgsKB0RFRkFVTFQQABIXChNJTklUSUFMSVpFX0lERU5USVRZEAESJwojSU5JVElBTElaRV9JREVOVElUWV9GUk9NX0lOVklUQVRJT04QAhIlCiFJTklUSUFMSVpFX0lERU5USVRZX0ZST01fUkVDT1ZFUlkQCRIMCghJREVOVElUWRADEhIKDlNIQVJFX0lERU5USVRZEAQSEAoMRURJVF9QUk9GSUxFEAUSCQoFU1BBQ0UQBhIOCgpKT0lOX1NQQUNFEAcSCgoGU1RBVFVTEAgygwEKDVdvcmtlclNlcnZpY2USOgoFU3RhcnQSGS5keG9zLmlmcmFtZS5TdGFydFJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkSNgoEU3RvcBIWLmdvb2dsZS5wcm90b2J1Zi5FbXB0eRoWLmdvb2dsZS5wcm90b2J1Zi5FbXB0eTJSCgpBcHBTZXJ2aWNlEkQKClNldENvbnRleHQSHi5keG9zLmlmcmFtZS5BcHBDb250ZXh0UmVxdWVzdBoWLmdvb2dsZS5wcm90b2J1Zi5FbXB0eTKeAQoMU2hlbGxTZXJ2aWNlEj8KCVNldExheW91dBIaLmR4b3MuaWZyYW1lLkxheW91dFJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkSTQoQU2V0SW52aXRhdGlvblVybBIhLmR4b3MuaWZyYW1lLkludml0YXRpb25VcmxSZXF1ZXN0GhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5YgZwcm90bzM", [file_google_protobuf_empty, file_dxos_keys]);
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* @generated from message dxos.iframe.StartRequest
|
|
@@ -37,18 +37,6 @@ export type StartRequest = Message<"dxos.iframe.StartRequest"> & {
|
|
|
37
37
|
* @generated from field: optional string lock_key = 2;
|
|
38
38
|
*/
|
|
39
39
|
lockKey?: string;
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* TODO(nf): extract or remove?
|
|
43
|
-
*
|
|
44
|
-
* @generated from field: optional string observabilityGroup = 3;
|
|
45
|
-
*/
|
|
46
|
-
observabilityGroup?: string;
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* @generated from field: optional bool signalTelemetryEnabled = 4;
|
|
50
|
-
*/
|
|
51
|
-
signalTelemetryEnabled?: boolean;
|
|
52
40
|
};
|
|
53
41
|
|
|
54
42
|
/**
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2020 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/keys.proto (package dxos.keys, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2020 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/bridge.proto (package dxos.mesh.bridge, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/broadcast.proto (package dxos.mesh.broadcast, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/messaging.proto (package dxos.mesh.messaging, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2020 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/muxer.proto (package dxos.mesh.muxer, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2021 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/presence.proto (package dxos.mesh.presence, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2021 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/protocol.proto (package dxos.mesh.protocol, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2019 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/replicator.proto (package dxos.mesh.replicator, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/signal.proto (package dxos.mesh.signal, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/swarm.proto (package dxos.mesh.swarm, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/teleport/admission-discovery.proto (package dxos.mesh.teleport, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/teleport/auth.proto (package dxos.mesh.teleport.auth, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/teleport/automerge.proto (package dxos.mesh.teleport.automerge, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/teleport/blobsync.proto (package dxos.mesh.teleport.blobsync, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/teleport/control.proto (package dxos.mesh.teleport.control, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/teleport/gossip.proto (package dxos.mesh.teleport.gossip, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/teleport/notarization.proto (package dxos.mesh.teleport.notarization, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/mesh/teleport/replicator.proto (package dxos.mesh.teleport.replicator, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2021 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/registry.proto (package dxos.registry, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2020 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/rpc.proto (package dxos.rpc, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -20,7 +20,7 @@ import type { Message } from "@bufbuild/protobuf";
|
|
|
20
20
|
* Describes the file dxos/rpc.proto.
|
|
21
21
|
*/
|
|
22
22
|
export const file_dxos_rpc: GenFile = /*@__PURE__*/
|
|
23
|
-
fileDesc("
|
|
23
|
+
fileDesc("Cg5keG9zL3JwYy5wcm90bxIIZHhvcy5ycGMi1gEKClJwY01lc3NhZ2USJAoHcmVxdWVzdBgBIAEoCzIRLmR4b3MucnBjLlJlcXVlc3RIABImCghyZXNwb25zZRgCIAEoCzISLmR4b3MucnBjLlJlc3BvbnNlSAASDgoEb3BlbhgDIAEoCEgAEhIKCG9wZW5fYWNrGAQgASgISAASLQoMc3RyZWFtX2Nsb3NlGAUgASgLMhUuZHhvcy5ycGMuU3RyZWFtQ2xvc2VIABIcCgNieWUYBiABKAsyDS5keG9zLnJwYy5CeWVIAEIJCgdjb250ZW50IksKDFRyYWNlQ29udGV4dBITCgt0cmFjZXBhcmVudBgBIAEoCRIXCgp0cmFjZXN0YXRlGAIgASgJSACIAQFCDQoLX3RyYWNlc3RhdGUiogEKB1JlcXVlc3QSCgoCaWQYASABKAUSDgoGbWV0aG9kGAIgASgJEiUKB3BheWxvYWQYAyABKAsyFC5nb29nbGUucHJvdG9idWYuQW55Eg4KBnN0cmVhbRgEIAEoCBIyCg10cmFjZV9jb250ZXh0GAUgASgLMhYuZHhvcy5ycGMuVHJhY2VDb250ZXh0SACIAQFCEAoOX3RyYWNlX2NvbnRleHQilwEKCFJlc3BvbnNlEgoKAmlkGAEgASgFEicKB3BheWxvYWQYAiABKAsyFC5nb29nbGUucHJvdG9idWYuQW55SAASIgoFZXJyb3IYAyABKAsyES5keG9zLmVycm9yLkVycm9ySAASDwoFY2xvc2UYBCABKAhIABIWCgxzdHJlYW1fcmVhZHkYBSABKAhIAEIJCgdjb250ZW50IhkKC1N0cmVhbUNsb3NlEgoKAmlkGAEgASgFInoKDE1lc3NhZ2VUcmFjZRIzCglkaXJlY3Rpb24YASABKA4yIC5keG9zLnJwYy5NZXNzYWdlVHJhY2UuRGlyZWN0aW9uEgwKBGRhdGEYAiABKAwiJwoJRGlyZWN0aW9uEgwKCElOQ09NSU5HEAASDAoIT1VUR09JTkcQASIFCgNCeWVCKVonZ2l0aHViLmNvbS9keG9zL2R4b3MvcHJvdG8vZGVmL2R4b3MvcnBjYgZwcm90bzM", [file_google_protobuf_any, file_dxos_error]);
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* @generated from message dxos.rpc.RpcMessage
|
|
@@ -81,6 +81,30 @@ export type RpcMessage = Message<"dxos.rpc.RpcMessage"> & {
|
|
|
81
81
|
export const RpcMessageSchema: GenMessage<RpcMessage> = /*@__PURE__*/
|
|
82
82
|
messageDesc(file_dxos_rpc, 0);
|
|
83
83
|
|
|
84
|
+
/**
|
|
85
|
+
* / W3C trace context carried across RPC boundaries.
|
|
86
|
+
*
|
|
87
|
+
* @generated from message dxos.rpc.TraceContext
|
|
88
|
+
*/
|
|
89
|
+
export type TraceContext = Message<"dxos.rpc.TraceContext"> & {
|
|
90
|
+
/**
|
|
91
|
+
* @generated from field: string traceparent = 1;
|
|
92
|
+
*/
|
|
93
|
+
traceparent: string;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @generated from field: optional string tracestate = 2;
|
|
97
|
+
*/
|
|
98
|
+
tracestate?: string;
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Describes the message dxos.rpc.TraceContext.
|
|
103
|
+
* Use `create(TraceContextSchema)` to create a new message.
|
|
104
|
+
*/
|
|
105
|
+
export const TraceContextSchema: GenMessage<TraceContext> = /*@__PURE__*/
|
|
106
|
+
messageDesc(file_dxos_rpc, 1);
|
|
107
|
+
|
|
84
108
|
/**
|
|
85
109
|
* @generated from message dxos.rpc.Request
|
|
86
110
|
*/
|
|
@@ -104,6 +128,11 @@ export type Request = Message<"dxos.rpc.Request"> & {
|
|
|
104
128
|
* @generated from field: bool stream = 4;
|
|
105
129
|
*/
|
|
106
130
|
stream: boolean;
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @generated from field: optional dxos.rpc.TraceContext trace_context = 5;
|
|
134
|
+
*/
|
|
135
|
+
traceContext?: TraceContext;
|
|
107
136
|
};
|
|
108
137
|
|
|
109
138
|
/**
|
|
@@ -111,7 +140,7 @@ export type Request = Message<"dxos.rpc.Request"> & {
|
|
|
111
140
|
* Use `create(RequestSchema)` to create a new message.
|
|
112
141
|
*/
|
|
113
142
|
export const RequestSchema: GenMessage<Request> = /*@__PURE__*/
|
|
114
|
-
messageDesc(file_dxos_rpc,
|
|
143
|
+
messageDesc(file_dxos_rpc, 2);
|
|
115
144
|
|
|
116
145
|
/**
|
|
117
146
|
* @generated from message dxos.rpc.Response
|
|
@@ -164,7 +193,7 @@ export type Response = Message<"dxos.rpc.Response"> & {
|
|
|
164
193
|
* Use `create(ResponseSchema)` to create a new message.
|
|
165
194
|
*/
|
|
166
195
|
export const ResponseSchema: GenMessage<Response> = /*@__PURE__*/
|
|
167
|
-
messageDesc(file_dxos_rpc,
|
|
196
|
+
messageDesc(file_dxos_rpc, 3);
|
|
168
197
|
|
|
169
198
|
/**
|
|
170
199
|
* TODO(burdon): Generalize to event?
|
|
@@ -184,7 +213,7 @@ export type StreamClose = Message<"dxos.rpc.StreamClose"> & {
|
|
|
184
213
|
* Use `create(StreamCloseSchema)` to create a new message.
|
|
185
214
|
*/
|
|
186
215
|
export const StreamCloseSchema: GenMessage<StreamClose> = /*@__PURE__*/
|
|
187
|
-
messageDesc(file_dxos_rpc,
|
|
216
|
+
messageDesc(file_dxos_rpc, 4);
|
|
188
217
|
|
|
189
218
|
/**
|
|
190
219
|
* TODO(burdon): Rename Trace.
|
|
@@ -208,7 +237,7 @@ export type MessageTrace = Message<"dxos.rpc.MessageTrace"> & {
|
|
|
208
237
|
* Use `create(MessageTraceSchema)` to create a new message.
|
|
209
238
|
*/
|
|
210
239
|
export const MessageTraceSchema: GenMessage<MessageTrace> = /*@__PURE__*/
|
|
211
|
-
messageDesc(file_dxos_rpc,
|
|
240
|
+
messageDesc(file_dxos_rpc, 5);
|
|
212
241
|
|
|
213
242
|
/**
|
|
214
243
|
* @generated from enum dxos.rpc.MessageTrace.Direction
|
|
@@ -229,7 +258,7 @@ export enum MessageTrace_Direction {
|
|
|
229
258
|
* Describes the enum dxos.rpc.MessageTrace.Direction.
|
|
230
259
|
*/
|
|
231
260
|
export const MessageTrace_DirectionSchema: GenEnum<MessageTrace_Direction> = /*@__PURE__*/
|
|
232
|
-
enumDesc(file_dxos_rpc,
|
|
261
|
+
enumDesc(file_dxos_rpc, 5, 0);
|
|
233
262
|
|
|
234
263
|
/**
|
|
235
264
|
* *
|
|
@@ -246,5 +275,5 @@ export type Bye = Message<"dxos.rpc.Bye"> & {
|
|
|
246
275
|
* Use `create(ByeSchema)` to create a new message.
|
|
247
276
|
*/
|
|
248
277
|
export const ByeSchema: GenMessage<Bye> = /*@__PURE__*/
|
|
249
|
-
messageDesc(file_dxos_rpc,
|
|
278
|
+
messageDesc(file_dxos_rpc, 6);
|
|
250
279
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/service/agentmanager.proto (package dxos.service.agentmanager, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/service/publisher.proto (package dxos.service.publisher, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2022 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/service/supervisor.proto (package dxos.service.supervisor, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
// @generated by protoc-gen-es v2.
|
|
5
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts,import_extension=js"
|
|
6
6
|
// @generated from file dxos/service/tunnel.proto (package dxos.service.tunnel, syntax proto3)
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
|