@dxos/client-services 0.1.35 → 0.1.36

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.
Files changed (95) hide show
  1. package/dist/lib/browser/{chunk-H5IXSSI7.mjs → chunk-2AYYVPWN.mjs} +835 -950
  2. package/dist/lib/browser/chunk-2AYYVPWN.mjs.map +7 -0
  3. package/dist/lib/browser/index.mjs +9 -11
  4. package/dist/lib/browser/meta.json +1 -1
  5. package/dist/lib/browser/packlets/testing/index.mjs +212 -74
  6. package/dist/lib/browser/packlets/testing/index.mjs.map +3 -3
  7. package/dist/lib/node/index.cjs +942 -1058
  8. package/dist/lib/node/index.cjs.map +4 -4
  9. package/dist/lib/node/meta.json +1 -1
  10. package/dist/lib/node/packlets/testing/index.cjs +1089 -1067
  11. package/dist/lib/node/packlets/testing/index.cjs.map +4 -4
  12. package/dist/types/src/packlets/identity/identity-manager.d.ts +1 -0
  13. package/dist/types/src/packlets/identity/identity-manager.d.ts.map +1 -1
  14. package/dist/types/src/packlets/identity/identity.d.ts +3 -3
  15. package/dist/types/src/packlets/identity/identity.d.ts.map +1 -1
  16. package/dist/types/src/packlets/invitations/device-invitation-protocol.d.ts +18 -0
  17. package/dist/types/src/packlets/invitations/device-invitation-protocol.d.ts.map +1 -0
  18. package/dist/types/src/packlets/invitations/device-invitation-protocol.test.d.ts +2 -0
  19. package/dist/types/src/packlets/invitations/device-invitation-protocol.test.d.ts.map +1 -0
  20. package/dist/types/src/packlets/invitations/index.d.ts +4 -4
  21. package/dist/types/src/packlets/invitations/index.d.ts.map +1 -1
  22. package/dist/types/src/packlets/invitations/invitation-protocol.d.ts +12 -0
  23. package/dist/types/src/packlets/invitations/invitation-protocol.d.ts.map +1 -0
  24. package/dist/types/src/packlets/invitations/invitations-handler.d.ts +38 -0
  25. package/dist/types/src/packlets/invitations/invitations-handler.d.ts.map +1 -0
  26. package/dist/types/src/packlets/invitations/invitations-service.d.ts +13 -15
  27. package/dist/types/src/packlets/invitations/invitations-service.d.ts.map +1 -1
  28. package/dist/types/src/packlets/invitations/space-invitation-protocol.d.ts +22 -0
  29. package/dist/types/src/packlets/invitations/space-invitation-protocol.d.ts.map +1 -0
  30. package/dist/types/src/packlets/invitations/space-invitation-protocol.test.d.ts +2 -0
  31. package/dist/types/src/packlets/invitations/space-invitation-protocol.test.d.ts.map +1 -0
  32. package/dist/types/src/packlets/services/service-context.d.ts +6 -4
  33. package/dist/types/src/packlets/services/service-context.d.ts.map +1 -1
  34. package/dist/types/src/packlets/services/service-host.d.ts.map +1 -1
  35. package/dist/types/src/packlets/spaces/data-space-manager.d.ts +2 -0
  36. package/dist/types/src/packlets/spaces/data-space-manager.d.ts.map +1 -1
  37. package/dist/types/src/packlets/spaces/spaces-service.d.ts.map +1 -1
  38. package/dist/types/src/packlets/testing/invitation-utils.d.ts +31 -2
  39. package/dist/types/src/packlets/testing/invitation-utils.d.ts.map +1 -1
  40. package/dist/types/src/packlets/testing/test-builder.d.ts +3 -3
  41. package/dist/types/src/packlets/testing/test-builder.d.ts.map +1 -1
  42. package/dist/types/src/packlets/tests/invitations.test.d.ts +2 -0
  43. package/dist/types/src/packlets/tests/invitations.test.d.ts.map +1 -0
  44. package/dist/types/src/packlets/vault/worker-runtime.d.ts +2 -0
  45. package/dist/types/src/packlets/vault/worker-runtime.d.ts.map +1 -1
  46. package/package.json +30 -30
  47. package/src/packlets/identity/identity-manager.ts +2 -1
  48. package/src/packlets/identity/identity.ts +3 -3
  49. package/src/packlets/invitations/{device-invitations-handler.test.ts → device-invitation-protocol.test.ts} +3 -3
  50. package/src/packlets/invitations/device-invitation-protocol.ts +83 -0
  51. package/src/packlets/invitations/index.ts +4 -4
  52. package/src/packlets/invitations/invitation-protocol.ts +21 -0
  53. package/src/packlets/invitations/invitations-handler.ts +462 -0
  54. package/src/packlets/invitations/invitations-service.ts +127 -104
  55. package/src/packlets/invitations/space-invitation-protocol.test.ts +221 -0
  56. package/src/packlets/invitations/space-invitation-protocol.ts +117 -0
  57. package/src/packlets/services/service-context.test.ts +11 -4
  58. package/src/packlets/services/service-context.ts +40 -19
  59. package/src/packlets/services/service-host.ts +4 -12
  60. package/src/packlets/services/service-registry.test.ts +23 -25
  61. package/src/packlets/spaces/data-space-manager.ts +5 -0
  62. package/src/packlets/spaces/spaces-service.ts +7 -2
  63. package/src/packlets/storage/storage.ts +2 -0
  64. package/src/packlets/testing/invitation-utils.ts +219 -31
  65. package/src/packlets/testing/test-builder.ts +33 -22
  66. package/src/packlets/tests/client-services.test.ts +33 -76
  67. package/src/packlets/tests/halo-profile.test.ts +2 -28
  68. package/src/packlets/tests/invitations.test.ts +389 -0
  69. package/src/packlets/tests/spaces-invitations.test.ts +12 -30
  70. package/src/packlets/tests/spaces.test.ts +30 -28
  71. package/src/packlets/vault/worker-runtime.ts +4 -0
  72. package/dist/lib/browser/chunk-H5IXSSI7.mjs.map +0 -7
  73. package/dist/types/src/packlets/invitations/device-invitations-handler.d.ts +0 -30
  74. package/dist/types/src/packlets/invitations/device-invitations-handler.d.ts.map +0 -1
  75. package/dist/types/src/packlets/invitations/device-invitations-handler.test.d.ts +0 -2
  76. package/dist/types/src/packlets/invitations/device-invitations-handler.test.d.ts.map +0 -1
  77. package/dist/types/src/packlets/invitations/device-invitations-service.d.ts +0 -13
  78. package/dist/types/src/packlets/invitations/device-invitations-service.d.ts.map +0 -1
  79. package/dist/types/src/packlets/invitations/device-invitations-service.test.d.ts +0 -2
  80. package/dist/types/src/packlets/invitations/device-invitations-service.test.d.ts.map +0 -1
  81. package/dist/types/src/packlets/invitations/space-invitations-handler.d.ts +0 -26
  82. package/dist/types/src/packlets/invitations/space-invitations-handler.d.ts.map +0 -1
  83. package/dist/types/src/packlets/invitations/space-invitations-handler.test.d.ts +0 -2
  84. package/dist/types/src/packlets/invitations/space-invitations-handler.test.d.ts.map +0 -1
  85. package/dist/types/src/packlets/invitations/space-invitations-service.d.ts +0 -16
  86. package/dist/types/src/packlets/invitations/space-invitations-service.d.ts.map +0 -1
  87. package/dist/types/src/packlets/invitations/space-invitations-service.test.d.ts +0 -2
  88. package/dist/types/src/packlets/invitations/space-invitations-service.test.d.ts.map +0 -1
  89. package/src/packlets/invitations/device-invitations-handler.ts +0 -370
  90. package/src/packlets/invitations/device-invitations-service.test.ts +0 -96
  91. package/src/packlets/invitations/device-invitations-service.ts +0 -24
  92. package/src/packlets/invitations/space-invitations-handler.test.ts +0 -246
  93. package/src/packlets/invitations/space-invitations-handler.ts +0 -463
  94. package/src/packlets/invitations/space-invitations-service.test.ts +0 -129
  95. package/src/packlets/invitations/space-invitations-service.ts +0 -35
@@ -1 +1 @@
1
- {"inputs":{"packages/sdk/client-services/src/packlets/devtools/feeds.ts":{"bytes":9956,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devtools/keys.ts":{"bytes":1816,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devtools/network.ts":{"bytes":10629,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devtools/spaces.ts":{"bytes":5899,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devtools/devtools.ts":{"bytes":12000,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/devtools/feeds.ts","kind":"import-statement","original":"./feeds"},{"path":"packages/sdk/client-services/src/packlets/devtools/keys.ts","kind":"import-statement","original":"./keys"},{"path":"packages/sdk/client-services/src/packlets/devtools/network.ts","kind":"import-statement","original":"./network"},{"path":"packages/sdk/client-services/src/packlets/devtools/spaces.ts","kind":"import-statement","original":"./spaces"}]},"packages/sdk/client-services/src/packlets/devtools/index.ts":{"bytes":626,"imports":[{"path":"packages/sdk/client-services/src/packlets/devtools/devtools.ts","kind":"import-statement","original":"./devtools"},{"path":"packages/sdk/client-services/src/packlets/devtools/feeds.ts","kind":"import-statement","original":"./feeds"},{"path":"packages/sdk/client-services/src/packlets/devtools/network.ts","kind":"import-statement","original":"./network"},{"path":"packages/sdk/client-services/src/packlets/devtools/spaces.ts","kind":"import-statement","original":"./spaces"}]},"packages/sdk/client-services/src/packlets/identity/authenticator.ts":{"bytes":11536,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/identity/identity.ts":{"bytes":19232,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/authenticator.ts","kind":"import-statement","original":"./authenticator"}]},"packages/sdk/client-services/src/packlets/identity/identity-manager.ts":{"bytes":29891,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/authenticator.ts","kind":"import-statement","original":"./authenticator"},{"path":"packages/sdk/client-services/src/packlets/identity/identity.ts","kind":"import-statement","original":"./identity"}]},"packages/sdk/client-services/src/packlets/identity/identity-service.ts":{"bytes":7003,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/identity/index.ts":{"bytes":697,"imports":[{"path":"packages/sdk/client-services/src/packlets/identity/authenticator.ts","kind":"import-statement","original":"./authenticator"},{"path":"packages/sdk/client-services/src/packlets/identity/identity.ts","kind":"import-statement","original":"./identity"},{"path":"packages/sdk/client-services/src/packlets/identity/identity-manager.ts","kind":"import-statement","original":"./identity-manager"},{"path":"packages/sdk/client-services/src/packlets/identity/identity-service.ts","kind":"import-statement","original":"./identity-service"}]},"packages/sdk/client-services/src/packlets/invitations/device-invitations-handler.ts":{"bytes":46833,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts":{"bytes":23575,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/invitations/device-invitations-service.ts":{"bytes":2090,"imports":[{"path":"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts","kind":"import-statement","original":"./invitations-service"}]},"packages/sdk/client-services/src/packlets/invitations/space-invitations-handler.ts":{"bytes":62837,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/invitations/space-invitations-service.ts":{"bytes":3300,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts","kind":"import-statement","original":"./invitations-service"}]},"packages/sdk/client-services/src/packlets/invitations/index.ts":{"bytes":929,"imports":[{"path":"packages/sdk/client-services/src/packlets/invitations/device-invitations-handler.ts","kind":"import-statement","original":"./device-invitations-handler"},{"path":"packages/sdk/client-services/src/packlets/invitations/device-invitations-service.ts","kind":"import-statement","original":"./device-invitations-service"},{"path":"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts","kind":"import-statement","original":"./invitations-service"},{"path":"packages/sdk/client-services/src/packlets/invitations/space-invitations-handler.ts","kind":"import-statement","original":"./space-invitations-handler"},{"path":"packages/sdk/client-services/src/packlets/invitations/space-invitations-service.ts","kind":"import-statement","original":"./space-invitations-service"}]},"packages/sdk/client-services/src/packlets/deprecated/tracing.ts":{"bytes":1521,"imports":[]},"packages/sdk/client-services/src/packlets/deprecated/index.ts":{"bytes":375,"imports":[{"path":"packages/sdk/client-services/src/packlets/deprecated/tracing.ts","kind":"import-statement","original":"./tracing"}]},"packages/sdk/client-services/src/packlets/devices/devices-service.ts":{"bytes":5866,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devices/index.ts":{"bytes":395,"imports":[{"path":"packages/sdk/client-services/src/packlets/devices/devices-service.ts","kind":"import-statement","original":"./devices-service"}]},"packages/sdk/client-services/src/packlets/network/network-service.ts":{"bytes":2833,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/network/index.ts":{"bytes":395,"imports":[{"path":"packages/sdk/client-services/src/packlets/network/network-service.ts","kind":"import-statement","original":"./network-service"}]},"packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts":{"bytes":26957,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/spaces/data-space.ts":{"bytes":30176,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/errors","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"../identity"},{"path":"packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts","kind":"import-statement","original":"./notarization-plugin"}]},"packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts":{"bytes":29791,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"../identity"},{"path":"packages/sdk/client-services/src/packlets/spaces/data-space.ts","kind":"import-statement","original":"./data-space"}]},"packages/sdk/client-services/src/packlets/spaces/spaces-service.ts":{"bytes":22325,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/spaces/index.ts":{"bytes":598,"imports":[{"path":"packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts","kind":"import-statement","original":"./data-space-manager"},{"path":"packages/sdk/client-services/src/packlets/spaces/data-space.ts","kind":"import-statement","original":"./data-space"},{"path":"packages/sdk/client-services/src/packlets/spaces/spaces-service.ts","kind":"import-statement","original":"./spaces-service"}]},"packages/sdk/client-services/src/packlets/storage/storage.ts":{"bytes":6586,"imports":[{"path":"@dxos/errors","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/config","kind":"import-statement","external":true},{"path":"@dxos/random-access-storage","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/storage/index.ts":{"bytes":375,"imports":[{"path":"packages/sdk/client-services/src/packlets/storage/storage.ts","kind":"import-statement","original":"./storage"}]},"packages/sdk/client-services/src/packlets/system/system-service.ts":{"bytes":5467,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/system/index.ts":{"bytes":394,"imports":[{"path":"packages/sdk/client-services/src/packlets/system/system-service.ts","kind":"import-statement","original":"./system-service"}]},"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts":{"bytes":9603,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts":{"bytes":10595,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/iframe","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/vault/iframe-host-runtime.ts":{"bytes":14465,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"../services"},{"path":"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts","kind":"import-statement","original":"../services/client-rpc-server"},{"path":"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts","kind":"import-statement","original":"./shell-runtime"}]},"packages/sdk/client-services/src/packlets/vault/iframe-proxy-runtime.ts":{"bytes":7621,"imports":[{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts","kind":"import-statement","original":"./shell-runtime"}]},"packages/sdk/client-services/src/packlets/vault/vault-resource-lock.ts":{"bytes":9557,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/vault/worker-session.ts":{"bytes":17262,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts","kind":"import-statement","original":"../services/client-rpc-server"}]},"packages/sdk/client-services/src/packlets/vault/worker-runtime.ts":{"bytes":12421,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"../services"},{"path":"packages/sdk/client-services/src/packlets/vault/worker-session.ts","kind":"import-statement","original":"./worker-session"}]},"packages/sdk/client-services/src/packlets/vault/index.ts":{"bytes":951,"imports":[{"path":"packages/sdk/client-services/src/packlets/vault/iframe-host-runtime.ts","kind":"import-statement","original":"./iframe-host-runtime"},{"path":"packages/sdk/client-services/src/packlets/vault/iframe-proxy-runtime.ts","kind":"import-statement","original":"./iframe-proxy-runtime"},{"path":"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts","kind":"import-statement","original":"./shell-runtime"},{"path":"packages/sdk/client-services/src/packlets/vault/vault-resource-lock.ts","kind":"import-statement","original":"./vault-resource-lock"},{"path":"packages/sdk/client-services/src/packlets/vault/worker-runtime.ts","kind":"import-statement","original":"./worker-runtime"},{"path":"packages/sdk/client-services/src/packlets/vault/worker-session.ts","kind":"import-statement","original":"./worker-session"}]},"packages/sdk/client-services/src/packlets/services/service-context.ts":{"bytes":25156,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/keyring","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"../identity"},{"path":"packages/sdk/client-services/src/packlets/invitations/index.ts","kind":"import-statement","original":"../invitations"},{"path":"packages/sdk/client-services/src/packlets/spaces/index.ts","kind":"import-statement","original":"../spaces"}]},"packages/sdk/client-services/src/packlets/services/service-registry.ts":{"bytes":2558,"imports":[]},"packages/sdk/client-services/src/packlets/services/service-host.ts":{"bytes":26773,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/deprecated/index.ts","kind":"import-statement","original":"../deprecated"},{"path":"packages/sdk/client-services/src/packlets/devices/index.ts","kind":"import-statement","original":"../devices"},{"path":"packages/sdk/client-services/src/packlets/devtools/index.ts","kind":"import-statement","original":"../devtools"},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"../identity"},{"path":"packages/sdk/client-services/src/packlets/invitations/index.ts","kind":"import-statement","original":"../invitations"},{"path":"packages/sdk/client-services/src/packlets/network/index.ts","kind":"import-statement","original":"../network"},{"path":"packages/sdk/client-services/src/packlets/spaces/index.ts","kind":"import-statement","original":"../spaces"},{"path":"packages/sdk/client-services/src/packlets/storage/index.ts","kind":"import-statement","original":"../storage"},{"path":"packages/sdk/client-services/src/packlets/system/index.ts","kind":"import-statement","original":"../system"},{"path":"packages/sdk/client-services/src/packlets/vault/index.ts","kind":"import-statement","original":"../vault"},{"path":"packages/sdk/client-services/src/packlets/services/service-context.ts","kind":"import-statement","original":"./service-context"},{"path":"packages/sdk/client-services/src/packlets/services/service-registry.ts","kind":"import-statement","original":"./service-registry"}]},"packages/sdk/client-services/src/packlets/services/local-client-services.ts":{"bytes":2750,"imports":[{"path":"packages/sdk/client-services/src/packlets/services/service-host.ts","kind":"import-statement","original":"./service-host"}]},"packages/sdk/client-services/src/packlets/services/utils.ts":{"bytes":5894,"imports":[{"path":"@dxos/config","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/local-client-services.ts","kind":"import-statement","original":"./local-client-services"}]},"packages/sdk/client-services/src/packlets/services/index.ts":{"bytes":805,"imports":[{"path":"packages/sdk/client-services/src/packlets/services/local-client-services.ts","kind":"import-statement","original":"./local-client-services"},{"path":"packages/sdk/client-services/src/packlets/services/service-context.ts","kind":"import-statement","original":"./service-context"},{"path":"packages/sdk/client-services/src/packlets/services/service-host.ts","kind":"import-statement","original":"./service-host"},{"path":"packages/sdk/client-services/src/packlets/services/service-registry.ts","kind":"import-statement","original":"./service-registry"},{"path":"packages/sdk/client-services/src/packlets/services/utils.ts","kind":"import-statement","original":"./utils"}]},"packages/sdk/client-services/src/index.ts":{"bytes":957,"imports":[{"path":"packages/sdk/client-services/src/packlets/devtools/index.ts","kind":"import-statement","original":"./packlets/devtools"},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"./packlets/identity"},{"path":"packages/sdk/client-services/src/packlets/invitations/index.ts","kind":"import-statement","original":"./packlets/invitations"},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"./packlets/services"},{"path":"packages/sdk/client-services/src/packlets/storage/index.ts","kind":"import-statement","original":"./packlets/storage"},{"path":"packages/sdk/client-services/src/packlets/vault/index.ts","kind":"import-statement","original":"./packlets/vault"}]},"packages/sdk/client-services/src/packlets/testing/credential-utils.ts":{"bytes":2182,"imports":[{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/testing/host-test-builder.ts":{"bytes":15888,"imports":[{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline/testing","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/keyring","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/random-access-storage","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"../services"}]},"packages/sdk/client-services/src/packlets/testing/invitation-utils.ts":{"bytes":5824,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/testing/test-builder.ts":{"bytes":20287,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/config","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/document-model","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"../services"}]},"packages/sdk/client-services/src/packlets/testing/index.ts":{"bytes":717,"imports":[{"path":"packages/sdk/client-services/src/packlets/testing/credential-utils.ts","kind":"import-statement","original":"./credential-utils"},{"path":"packages/sdk/client-services/src/packlets/testing/host-test-builder.ts","kind":"import-statement","original":"./host-test-builder"},{"path":"packages/sdk/client-services/src/packlets/testing/invitation-utils.ts","kind":"import-statement","original":"./invitation-utils"},{"path":"packages/sdk/client-services/src/packlets/testing/test-builder.ts","kind":"import-statement","original":"./test-builder"}]}},"outputs":{"packages/sdk/client-services/dist/lib/node/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":254627},"packages/sdk/client-services/dist/lib/node/index.cjs":{"imports":[{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/errors","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/errors","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/config","kind":"require-call","external":true},{"path":"@dxos/random-access-storage","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/iframe","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keyring","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/config","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/sdk/client-services/src/index.ts","inputs":{"packages/sdk/client-services/src/index.ts":{"bytesInOutput":1709},"packages/sdk/client-services/src/packlets/devtools/devtools.ts":{"bytesInOutput":2017},"packages/sdk/client-services/src/packlets/devtools/feeds.ts":{"bytesInOutput":2422},"packages/sdk/client-services/src/packlets/devtools/keys.ts":{"bytesInOutput":325},"packages/sdk/client-services/src/packlets/devtools/network.ts":{"bytesInOutput":2566},"packages/sdk/client-services/src/packlets/devtools/spaces.ts":{"bytesInOutput":1310},"packages/sdk/client-services/src/packlets/devtools/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/identity/authenticator.ts":{"bytesInOutput":3345},"packages/sdk/client-services/src/packlets/identity/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/identity/identity.ts":{"bytesInOutput":4748},"packages/sdk/client-services/src/packlets/identity/identity-manager.ts":{"bytesInOutput":8803},"packages/sdk/client-services/src/packlets/identity/identity-service.ts":{"bytesInOutput":1701},"packages/sdk/client-services/src/packlets/invitations/device-invitations-handler.ts":{"bytesInOutput":13623},"packages/sdk/client-services/src/packlets/invitations/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts":{"bytesInOutput":7819},"packages/sdk/client-services/src/packlets/invitations/device-invitations-service.ts":{"bytesInOutput":294},"packages/sdk/client-services/src/packlets/invitations/space-invitations-handler.ts":{"bytesInOutput":19095},"packages/sdk/client-services/src/packlets/invitations/space-invitations-service.ts":{"bytesInOutput":646},"packages/sdk/client-services/src/packlets/services/service-host.ts":{"bytesInOutput":7132},"packages/sdk/client-services/src/packlets/deprecated/tracing.ts":{"bytesInOutput":251},"packages/sdk/client-services/src/packlets/deprecated/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/devices/devices-service.ts":{"bytesInOutput":1538},"packages/sdk/client-services/src/packlets/devices/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/network/network-service.ts":{"bytesInOutput":601},"packages/sdk/client-services/src/packlets/network/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts":{"bytesInOutput":9340},"packages/sdk/client-services/src/packlets/spaces/data-space.ts":{"bytesInOutput":8023},"packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts":{"bytesInOutput":7656},"packages/sdk/client-services/src/packlets/spaces/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/spaces/spaces-service.ts":{"bytesInOutput":6149},"packages/sdk/client-services/src/packlets/storage/storage.ts":{"bytesInOutput":1970},"packages/sdk/client-services/src/packlets/storage/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/system/system-service.ts":{"bytesInOutput":1044},"packages/sdk/client-services/src/packlets/system/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/vault/iframe-host-runtime.ts":{"bytesInOutput":4148},"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts":{"bytesInOutput":2154},"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts":{"bytesInOutput":2489},"packages/sdk/client-services/src/packlets/vault/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/vault/iframe-proxy-runtime.ts":{"bytesInOutput":1572},"packages/sdk/client-services/src/packlets/vault/vault-resource-lock.ts":{"bytesInOutput":3728},"packages/sdk/client-services/src/packlets/vault/worker-runtime.ts":{"bytesInOutput":2946},"packages/sdk/client-services/src/packlets/vault/worker-session.ts":{"bytesInOutput":5089},"packages/sdk/client-services/src/packlets/services/service-context.ts":{"bytesInOutput":7453},"packages/sdk/client-services/src/packlets/services/service-registry.ts":{"bytesInOutput":480},"packages/sdk/client-services/src/packlets/services/local-client-services.ts":{"bytesInOutput":374},"packages/sdk/client-services/src/packlets/services/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/services/utils.ts":{"bytesInOutput":1317}},"bytes":151170},"packages/sdk/client-services/dist/lib/node/packlets/testing/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":271753},"packages/sdk/client-services/dist/lib/node/packlets/testing/index.cjs":{"imports":[{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline/testing","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keyring","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/random-access-storage","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/errors","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/errors","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/config","kind":"require-call","external":true},{"path":"@dxos/random-access-storage","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/iframe","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keyring","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/config","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/config","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/document-model","kind":"require-call","external":true},{"path":"@dxos/echo-db","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/sdk/client-services/src/packlets/testing/index.ts","inputs":{"packages/sdk/client-services/src/packlets/testing/index.ts":{"bytesInOutput":735},"packages/sdk/client-services/src/packlets/testing/credential-utils.ts":{"bytesInOutput":441},"packages/sdk/client-services/src/packlets/testing/host-test-builder.ts":{"bytesInOutput":4671},"packages/sdk/client-services/src/packlets/services/service-host.ts":{"bytesInOutput":7132},"packages/sdk/client-services/src/packlets/deprecated/tracing.ts":{"bytesInOutput":251},"packages/sdk/client-services/src/packlets/deprecated/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/devices/devices-service.ts":{"bytesInOutput":1531},"packages/sdk/client-services/src/packlets/devices/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/devtools/devtools.ts":{"bytesInOutput":2017},"packages/sdk/client-services/src/packlets/devtools/feeds.ts":{"bytesInOutput":2430},"packages/sdk/client-services/src/packlets/devtools/keys.ts":{"bytesInOutput":325},"packages/sdk/client-services/src/packlets/devtools/network.ts":{"bytesInOutput":1562},"packages/sdk/client-services/src/packlets/devtools/spaces.ts":{"bytesInOutput":1310},"packages/sdk/client-services/src/packlets/devtools/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/identity/authenticator.ts":{"bytesInOutput":3347},"packages/sdk/client-services/src/packlets/identity/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/identity/identity.ts":{"bytesInOutput":4748},"packages/sdk/client-services/src/packlets/identity/identity-manager.ts":{"bytesInOutput":8803},"packages/sdk/client-services/src/packlets/identity/identity-service.ts":{"bytesInOutput":1701},"packages/sdk/client-services/src/packlets/invitations/device-invitations-handler.ts":{"bytesInOutput":13627},"packages/sdk/client-services/src/packlets/invitations/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts":{"bytesInOutput":7819},"packages/sdk/client-services/src/packlets/invitations/device-invitations-service.ts":{"bytesInOutput":294},"packages/sdk/client-services/src/packlets/invitations/space-invitations-handler.ts":{"bytesInOutput":19095},"packages/sdk/client-services/src/packlets/invitations/space-invitations-service.ts":{"bytesInOutput":646},"packages/sdk/client-services/src/packlets/network/network-service.ts":{"bytesInOutput":601},"packages/sdk/client-services/src/packlets/network/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts":{"bytesInOutput":9342},"packages/sdk/client-services/src/packlets/spaces/data-space.ts":{"bytesInOutput":8026},"packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts":{"bytesInOutput":7656},"packages/sdk/client-services/src/packlets/spaces/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/spaces/spaces-service.ts":{"bytesInOutput":6149},"packages/sdk/client-services/src/packlets/storage/storage.ts":{"bytesInOutput":1970},"packages/sdk/client-services/src/packlets/storage/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/system/system-service.ts":{"bytesInOutput":1044},"packages/sdk/client-services/src/packlets/system/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/vault/iframe-host-runtime.ts":{"bytesInOutput":4148},"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts":{"bytesInOutput":2154},"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts":{"bytesInOutput":1673},"packages/sdk/client-services/src/packlets/vault/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/vault/iframe-proxy-runtime.ts":{"bytesInOutput":150},"packages/sdk/client-services/src/packlets/vault/vault-resource-lock.ts":{"bytesInOutput":3728},"packages/sdk/client-services/src/packlets/vault/worker-runtime.ts":{"bytesInOutput":202},"packages/sdk/client-services/src/packlets/vault/worker-session.ts":{"bytesInOutput":5089},"packages/sdk/client-services/src/packlets/services/service-context.ts":{"bytesInOutput":7453},"packages/sdk/client-services/src/packlets/services/service-registry.ts":{"bytesInOutput":480},"packages/sdk/client-services/src/packlets/services/local-client-services.ts":{"bytesInOutput":374},"packages/sdk/client-services/src/packlets/services/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/services/utils.ts":{"bytesInOutput":203},"packages/sdk/client-services/src/packlets/testing/invitation-utils.ts":{"bytesInOutput":1599},"packages/sdk/client-services/src/packlets/testing/test-builder.ts":{"bytesInOutput":5609}},"bytes":155286}}}
1
+ {"inputs":{"packages/sdk/client-services/src/packlets/devtools/feeds.ts":{"bytes":9956,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devtools/keys.ts":{"bytes":1816,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devtools/network.ts":{"bytes":10629,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devtools/spaces.ts":{"bytes":5899,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devtools/devtools.ts":{"bytes":12000,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/devtools/feeds.ts","kind":"import-statement","original":"./feeds"},{"path":"packages/sdk/client-services/src/packlets/devtools/keys.ts","kind":"import-statement","original":"./keys"},{"path":"packages/sdk/client-services/src/packlets/devtools/network.ts","kind":"import-statement","original":"./network"},{"path":"packages/sdk/client-services/src/packlets/devtools/spaces.ts","kind":"import-statement","original":"./spaces"}]},"packages/sdk/client-services/src/packlets/devtools/index.ts":{"bytes":626,"imports":[{"path":"packages/sdk/client-services/src/packlets/devtools/devtools.ts","kind":"import-statement","original":"./devtools"},{"path":"packages/sdk/client-services/src/packlets/devtools/feeds.ts","kind":"import-statement","original":"./feeds"},{"path":"packages/sdk/client-services/src/packlets/devtools/network.ts","kind":"import-statement","original":"./network"},{"path":"packages/sdk/client-services/src/packlets/devtools/spaces.ts","kind":"import-statement","original":"./spaces"}]},"packages/sdk/client-services/src/packlets/identity/authenticator.ts":{"bytes":11536,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/identity/identity.ts":{"bytes":19224,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/authenticator.ts","kind":"import-statement","original":"./authenticator"}]},"packages/sdk/client-services/src/packlets/identity/identity-manager.ts":{"bytes":30096,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/authenticator.ts","kind":"import-statement","original":"./authenticator"},{"path":"packages/sdk/client-services/src/packlets/identity/identity.ts","kind":"import-statement","original":"./identity"}]},"packages/sdk/client-services/src/packlets/identity/identity-service.ts":{"bytes":7003,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/identity/index.ts":{"bytes":697,"imports":[{"path":"packages/sdk/client-services/src/packlets/identity/authenticator.ts","kind":"import-statement","original":"./authenticator"},{"path":"packages/sdk/client-services/src/packlets/identity/identity.ts","kind":"import-statement","original":"./identity"},{"path":"packages/sdk/client-services/src/packlets/identity/identity-manager.ts","kind":"import-statement","original":"./identity-manager"},{"path":"packages/sdk/client-services/src/packlets/identity/identity-service.ts","kind":"import-statement","original":"./identity-service"}]},"packages/sdk/client-services/src/packlets/invitations/device-invitation-protocol.ts":{"bytes":7555,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/invitations/invitation-protocol.ts":{"bytes":1340,"imports":[]},"packages/sdk/client-services/src/packlets/invitations/invitations-handler.ts":{"bytes":63682,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts":{"bytes":26954,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/invitations/space-invitation-protocol.ts":{"bytes":13044,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/invitations/index.ts":{"bytes":900,"imports":[{"path":"packages/sdk/client-services/src/packlets/invitations/device-invitation-protocol.ts","kind":"import-statement","original":"./device-invitation-protocol"},{"path":"packages/sdk/client-services/src/packlets/invitations/invitation-protocol.ts","kind":"import-statement","original":"./invitation-protocol"},{"path":"packages/sdk/client-services/src/packlets/invitations/invitations-handler.ts","kind":"import-statement","original":"./invitations-handler"},{"path":"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts","kind":"import-statement","original":"./invitations-service"},{"path":"packages/sdk/client-services/src/packlets/invitations/space-invitation-protocol.ts","kind":"import-statement","original":"./space-invitation-protocol"}]},"packages/sdk/client-services/src/packlets/deprecated/tracing.ts":{"bytes":1521,"imports":[]},"packages/sdk/client-services/src/packlets/deprecated/index.ts":{"bytes":375,"imports":[{"path":"packages/sdk/client-services/src/packlets/deprecated/tracing.ts","kind":"import-statement","original":"./tracing"}]},"packages/sdk/client-services/src/packlets/devices/devices-service.ts":{"bytes":5866,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/devices/index.ts":{"bytes":395,"imports":[{"path":"packages/sdk/client-services/src/packlets/devices/devices-service.ts","kind":"import-statement","original":"./devices-service"}]},"packages/sdk/client-services/src/packlets/network/network-service.ts":{"bytes":2833,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/network/index.ts":{"bytes":395,"imports":[{"path":"packages/sdk/client-services/src/packlets/network/network-service.ts","kind":"import-statement","original":"./network-service"}]},"packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts":{"bytes":26957,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/spaces/data-space.ts":{"bytes":30176,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/errors","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"../identity"},{"path":"packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts","kind":"import-statement","original":"./notarization-plugin"}]},"packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts":{"bytes":31362,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"../identity"},{"path":"packages/sdk/client-services/src/packlets/spaces/data-space.ts","kind":"import-statement","original":"./data-space"}]},"packages/sdk/client-services/src/packlets/spaces/spaces-service.ts":{"bytes":23689,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/spaces/index.ts":{"bytes":598,"imports":[{"path":"packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts","kind":"import-statement","original":"./data-space-manager"},{"path":"packages/sdk/client-services/src/packlets/spaces/data-space.ts","kind":"import-statement","original":"./data-space"},{"path":"packages/sdk/client-services/src/packlets/spaces/spaces-service.ts","kind":"import-statement","original":"./spaces-service"}]},"packages/sdk/client-services/src/packlets/storage/storage.ts":{"bytes":6818,"imports":[{"path":"@dxos/errors","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/config","kind":"import-statement","external":true},{"path":"@dxos/random-access-storage","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/storage/index.ts":{"bytes":375,"imports":[{"path":"packages/sdk/client-services/src/packlets/storage/storage.ts","kind":"import-statement","original":"./storage"}]},"packages/sdk/client-services/src/packlets/system/system-service.ts":{"bytes":5467,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/system/index.ts":{"bytes":394,"imports":[{"path":"packages/sdk/client-services/src/packlets/system/system-service.ts","kind":"import-statement","original":"./system-service"}]},"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts":{"bytes":9603,"imports":[{"path":"@dxos/codec-protobuf","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts":{"bytes":10595,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/iframe","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/vault/iframe-host-runtime.ts":{"bytes":14465,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"../services"},{"path":"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts","kind":"import-statement","original":"../services/client-rpc-server"},{"path":"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts","kind":"import-statement","original":"./shell-runtime"}]},"packages/sdk/client-services/src/packlets/vault/iframe-proxy-runtime.ts":{"bytes":7621,"imports":[{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts","kind":"import-statement","original":"./shell-runtime"}]},"packages/sdk/client-services/src/packlets/vault/vault-resource-lock.ts":{"bytes":9557,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/vault/worker-session.ts":{"bytes":17262,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts","kind":"import-statement","original":"../services/client-rpc-server"}]},"packages/sdk/client-services/src/packlets/vault/worker-runtime.ts":{"bytes":12633,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"../services"},{"path":"packages/sdk/client-services/src/packlets/vault/worker-session.ts","kind":"import-statement","original":"./worker-session"}]},"packages/sdk/client-services/src/packlets/vault/index.ts":{"bytes":951,"imports":[{"path":"packages/sdk/client-services/src/packlets/vault/iframe-host-runtime.ts","kind":"import-statement","original":"./iframe-host-runtime"},{"path":"packages/sdk/client-services/src/packlets/vault/iframe-proxy-runtime.ts","kind":"import-statement","original":"./iframe-proxy-runtime"},{"path":"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts","kind":"import-statement","original":"./shell-runtime"},{"path":"packages/sdk/client-services/src/packlets/vault/vault-resource-lock.ts","kind":"import-statement","original":"./vault-resource-lock"},{"path":"packages/sdk/client-services/src/packlets/vault/worker-runtime.ts","kind":"import-statement","original":"./worker-runtime"},{"path":"packages/sdk/client-services/src/packlets/vault/worker-session.ts","kind":"import-statement","original":"./worker-session"}]},"packages/sdk/client-services/src/packlets/services/service-context.ts":{"bytes":28016,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/keyring","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"../identity"},{"path":"packages/sdk/client-services/src/packlets/invitations/index.ts","kind":"import-statement","original":"../invitations"},{"path":"packages/sdk/client-services/src/packlets/spaces/index.ts","kind":"import-statement","original":"../spaces"}]},"packages/sdk/client-services/src/packlets/services/service-registry.ts":{"bytes":2558,"imports":[]},"packages/sdk/client-services/src/packlets/services/service-host.ts":{"bytes":25496,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/deprecated/index.ts","kind":"import-statement","original":"../deprecated"},{"path":"packages/sdk/client-services/src/packlets/devices/index.ts","kind":"import-statement","original":"../devices"},{"path":"packages/sdk/client-services/src/packlets/devtools/index.ts","kind":"import-statement","original":"../devtools"},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"../identity"},{"path":"packages/sdk/client-services/src/packlets/invitations/index.ts","kind":"import-statement","original":"../invitations"},{"path":"packages/sdk/client-services/src/packlets/network/index.ts","kind":"import-statement","original":"../network"},{"path":"packages/sdk/client-services/src/packlets/spaces/index.ts","kind":"import-statement","original":"../spaces"},{"path":"packages/sdk/client-services/src/packlets/storage/index.ts","kind":"import-statement","original":"../storage"},{"path":"packages/sdk/client-services/src/packlets/system/index.ts","kind":"import-statement","original":"../system"},{"path":"packages/sdk/client-services/src/packlets/vault/index.ts","kind":"import-statement","original":"../vault"},{"path":"packages/sdk/client-services/src/packlets/services/service-context.ts","kind":"import-statement","original":"./service-context"},{"path":"packages/sdk/client-services/src/packlets/services/service-registry.ts","kind":"import-statement","original":"./service-registry"}]},"packages/sdk/client-services/src/packlets/services/local-client-services.ts":{"bytes":2750,"imports":[{"path":"packages/sdk/client-services/src/packlets/services/service-host.ts","kind":"import-statement","original":"./service-host"}]},"packages/sdk/client-services/src/packlets/services/utils.ts":{"bytes":5894,"imports":[{"path":"@dxos/config","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/local-client-services.ts","kind":"import-statement","original":"./local-client-services"}]},"packages/sdk/client-services/src/packlets/services/index.ts":{"bytes":805,"imports":[{"path":"packages/sdk/client-services/src/packlets/services/local-client-services.ts","kind":"import-statement","original":"./local-client-services"},{"path":"packages/sdk/client-services/src/packlets/services/service-context.ts","kind":"import-statement","original":"./service-context"},{"path":"packages/sdk/client-services/src/packlets/services/service-host.ts","kind":"import-statement","original":"./service-host"},{"path":"packages/sdk/client-services/src/packlets/services/service-registry.ts","kind":"import-statement","original":"./service-registry"},{"path":"packages/sdk/client-services/src/packlets/services/utils.ts","kind":"import-statement","original":"./utils"}]},"packages/sdk/client-services/src/index.ts":{"bytes":957,"imports":[{"path":"packages/sdk/client-services/src/packlets/devtools/index.ts","kind":"import-statement","original":"./packlets/devtools"},{"path":"packages/sdk/client-services/src/packlets/identity/index.ts","kind":"import-statement","original":"./packlets/identity"},{"path":"packages/sdk/client-services/src/packlets/invitations/index.ts","kind":"import-statement","original":"./packlets/invitations"},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"./packlets/services"},{"path":"packages/sdk/client-services/src/packlets/storage/index.ts","kind":"import-statement","original":"./packlets/storage"},{"path":"packages/sdk/client-services/src/packlets/vault/index.ts","kind":"import-statement","original":"./packlets/vault"}]},"packages/sdk/client-services/src/packlets/testing/credential-utils.ts":{"bytes":2182,"imports":[{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/testing/host-test-builder.ts":{"bytes":15888,"imports":[{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline","kind":"import-statement","external":true},{"path":"@dxos/echo-pipeline/testing","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/keyring","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/random-access-storage","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"../services"}]},"packages/sdk/client-services/src/packlets/testing/invitation-utils.ts":{"bytes":23611,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}]},"packages/sdk/client-services/src/packlets/testing/test-builder.ts":{"bytes":21548,"imports":[{"path":"node:assert","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/config","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/document-model","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/rpc","kind":"import-statement","external":true},{"path":"packages/sdk/client-services/src/packlets/services/index.ts","kind":"import-statement","original":"../services"}]},"packages/sdk/client-services/src/packlets/testing/index.ts":{"bytes":717,"imports":[{"path":"packages/sdk/client-services/src/packlets/testing/credential-utils.ts","kind":"import-statement","original":"./credential-utils"},{"path":"packages/sdk/client-services/src/packlets/testing/host-test-builder.ts","kind":"import-statement","original":"./host-test-builder"},{"path":"packages/sdk/client-services/src/packlets/testing/invitation-utils.ts","kind":"import-statement","original":"./invitation-utils"},{"path":"packages/sdk/client-services/src/packlets/testing/test-builder.ts","kind":"import-statement","original":"./test-builder"}]}},"outputs":{"packages/sdk/client-services/dist/lib/node/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":244235},"packages/sdk/client-services/dist/lib/node/index.cjs":{"imports":[{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/errors","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/errors","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/config","kind":"require-call","external":true},{"path":"@dxos/random-access-storage","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/iframe","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keyring","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/config","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/sdk/client-services/src/index.ts","inputs":{"packages/sdk/client-services/src/index.ts":{"bytesInOutput":1615},"packages/sdk/client-services/src/packlets/devtools/devtools.ts":{"bytesInOutput":2017},"packages/sdk/client-services/src/packlets/devtools/feeds.ts":{"bytesInOutput":2422},"packages/sdk/client-services/src/packlets/devtools/keys.ts":{"bytesInOutput":325},"packages/sdk/client-services/src/packlets/devtools/network.ts":{"bytesInOutput":2566},"packages/sdk/client-services/src/packlets/devtools/spaces.ts":{"bytesInOutput":1310},"packages/sdk/client-services/src/packlets/devtools/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/identity/authenticator.ts":{"bytesInOutput":3345},"packages/sdk/client-services/src/packlets/identity/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/identity/identity.ts":{"bytesInOutput":4748},"packages/sdk/client-services/src/packlets/identity/identity-manager.ts":{"bytesInOutput":8838},"packages/sdk/client-services/src/packlets/identity/identity-service.ts":{"bytesInOutput":1701},"packages/sdk/client-services/src/packlets/invitations/device-invitation-protocol.ts":{"bytesInOutput":1826},"packages/sdk/client-services/src/packlets/invitations/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/invitations/invitations-handler.ts":{"bytesInOutput":19269},"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts":{"bytesInOutput":8828},"packages/sdk/client-services/src/packlets/invitations/space-invitation-protocol.ts":{"bytesInOutput":3420},"packages/sdk/client-services/src/packlets/services/service-host.ts":{"bytesInOutput":6637},"packages/sdk/client-services/src/packlets/deprecated/tracing.ts":{"bytesInOutput":251},"packages/sdk/client-services/src/packlets/deprecated/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/devices/devices-service.ts":{"bytesInOutput":1538},"packages/sdk/client-services/src/packlets/devices/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/network/network-service.ts":{"bytesInOutput":601},"packages/sdk/client-services/src/packlets/network/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts":{"bytesInOutput":9973},"packages/sdk/client-services/src/packlets/spaces/data-space.ts":{"bytesInOutput":8019},"packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts":{"bytesInOutput":7656},"packages/sdk/client-services/src/packlets/spaces/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/spaces/spaces-service.ts":{"bytesInOutput":6571},"packages/sdk/client-services/src/packlets/storage/storage.ts":{"bytesInOutput":2061},"packages/sdk/client-services/src/packlets/storage/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/system/system-service.ts":{"bytesInOutput":1044},"packages/sdk/client-services/src/packlets/system/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/vault/iframe-host-runtime.ts":{"bytesInOutput":4148},"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts":{"bytesInOutput":2154},"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts":{"bytesInOutput":2489},"packages/sdk/client-services/src/packlets/vault/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/vault/iframe-proxy-runtime.ts":{"bytesInOutput":1572},"packages/sdk/client-services/src/packlets/vault/vault-resource-lock.ts":{"bytesInOutput":3728},"packages/sdk/client-services/src/packlets/vault/worker-runtime.ts":{"bytesInOutput":2998},"packages/sdk/client-services/src/packlets/vault/worker-session.ts":{"bytesInOutput":5089},"packages/sdk/client-services/src/packlets/services/service-context.ts":{"bytesInOutput":8258},"packages/sdk/client-services/src/packlets/services/service-registry.ts":{"bytesInOutput":480},"packages/sdk/client-services/src/packlets/services/local-client-services.ts":{"bytesInOutput":374},"packages/sdk/client-services/src/packlets/services/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/services/utils.ts":{"bytesInOutput":1317}},"bytes":144342},"packages/sdk/client-services/dist/lib/node/packlets/testing/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":270794},"packages/sdk/client-services/dist/lib/node/packlets/testing/index.cjs":{"imports":[{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline/testing","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keyring","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/random-access-storage","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/invitations","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/errors","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/context","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/teleport","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/errors","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/config","kind":"require-call","external":true},{"path":"@dxos/random-access-storage","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"@dxos/codec-protobuf","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/iframe","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true},{"path":"@dxos/util","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/credentials","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/echo-pipeline","kind":"require-call","external":true},{"path":"@dxos/feed-store","kind":"require-call","external":true},{"path":"@dxos/keyring","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/protocols","kind":"require-call","external":true},{"path":"@dxos/config","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"require-call","external":true},{"path":"node:assert","kind":"require-call","external":true},{"path":"@dxos/async","kind":"require-call","external":true},{"path":"@dxos/client","kind":"require-call","external":true},{"path":"@dxos/config","kind":"require-call","external":true},{"path":"@dxos/debug","kind":"require-call","external":true},{"path":"@dxos/document-model","kind":"require-call","external":true},{"path":"@dxos/echo-db","kind":"require-call","external":true},{"path":"@dxos/keys","kind":"require-call","external":true},{"path":"@dxos/log","kind":"require-call","external":true},{"path":"@dxos/messaging","kind":"require-call","external":true},{"path":"@dxos/network-manager","kind":"require-call","external":true},{"path":"@dxos/rpc","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/sdk/client-services/src/packlets/testing/index.ts","inputs":{"packages/sdk/client-services/src/packlets/testing/index.ts":{"bytesInOutput":783},"packages/sdk/client-services/src/packlets/testing/credential-utils.ts":{"bytesInOutput":441},"packages/sdk/client-services/src/packlets/testing/host-test-builder.ts":{"bytesInOutput":4671},"packages/sdk/client-services/src/packlets/services/service-host.ts":{"bytesInOutput":6637},"packages/sdk/client-services/src/packlets/deprecated/tracing.ts":{"bytesInOutput":251},"packages/sdk/client-services/src/packlets/deprecated/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/devices/devices-service.ts":{"bytesInOutput":1531},"packages/sdk/client-services/src/packlets/devices/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/devtools/devtools.ts":{"bytesInOutput":2017},"packages/sdk/client-services/src/packlets/devtools/feeds.ts":{"bytesInOutput":2430},"packages/sdk/client-services/src/packlets/devtools/keys.ts":{"bytesInOutput":325},"packages/sdk/client-services/src/packlets/devtools/network.ts":{"bytesInOutput":1562},"packages/sdk/client-services/src/packlets/devtools/spaces.ts":{"bytesInOutput":1310},"packages/sdk/client-services/src/packlets/devtools/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/identity/authenticator.ts":{"bytesInOutput":3347},"packages/sdk/client-services/src/packlets/identity/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/identity/identity.ts":{"bytesInOutput":4748},"packages/sdk/client-services/src/packlets/identity/identity-manager.ts":{"bytesInOutput":8838},"packages/sdk/client-services/src/packlets/identity/identity-service.ts":{"bytesInOutput":1701},"packages/sdk/client-services/src/packlets/invitations/device-invitation-protocol.ts":{"bytesInOutput":1828},"packages/sdk/client-services/src/packlets/invitations/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/invitations/invitations-handler.ts":{"bytesInOutput":19269},"packages/sdk/client-services/src/packlets/invitations/invitations-service.ts":{"bytesInOutput":8828},"packages/sdk/client-services/src/packlets/invitations/space-invitation-protocol.ts":{"bytesInOutput":3420},"packages/sdk/client-services/src/packlets/network/network-service.ts":{"bytesInOutput":601},"packages/sdk/client-services/src/packlets/network/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts":{"bytesInOutput":9973},"packages/sdk/client-services/src/packlets/spaces/data-space.ts":{"bytesInOutput":8022},"packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts":{"bytesInOutput":7656},"packages/sdk/client-services/src/packlets/spaces/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/spaces/spaces-service.ts":{"bytesInOutput":6571},"packages/sdk/client-services/src/packlets/storage/storage.ts":{"bytesInOutput":2061},"packages/sdk/client-services/src/packlets/storage/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/system/system-service.ts":{"bytesInOutput":1044},"packages/sdk/client-services/src/packlets/system/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/vault/iframe-host-runtime.ts":{"bytesInOutput":4148},"packages/sdk/client-services/src/packlets/services/client-rpc-server.ts":{"bytesInOutput":2154},"packages/sdk/client-services/src/packlets/vault/shell-runtime.ts":{"bytesInOutput":1673},"packages/sdk/client-services/src/packlets/vault/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/vault/iframe-proxy-runtime.ts":{"bytesInOutput":150},"packages/sdk/client-services/src/packlets/vault/vault-resource-lock.ts":{"bytesInOutput":3728},"packages/sdk/client-services/src/packlets/vault/worker-runtime.ts":{"bytesInOutput":202},"packages/sdk/client-services/src/packlets/vault/worker-session.ts":{"bytesInOutput":5089},"packages/sdk/client-services/src/packlets/services/service-context.ts":{"bytesInOutput":8260},"packages/sdk/client-services/src/packlets/services/service-registry.ts":{"bytesInOutput":480},"packages/sdk/client-services/src/packlets/services/local-client-services.ts":{"bytesInOutput":374},"packages/sdk/client-services/src/packlets/services/index.ts":{"bytesInOutput":0},"packages/sdk/client-services/src/packlets/services/utils.ts":{"bytesInOutput":203},"packages/sdk/client-services/src/packlets/testing/invitation-utils.ts":{"bytesInOutput":7457},"packages/sdk/client-services/src/packlets/testing/test-builder.ts":{"bytesInOutput":5904}},"bytes":154766}}}