@dxos/client-services 0.1.58-main.e460f33 → 0.1.58-main.eedac7a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/{chunk-PNAXUNJ7.mjs → chunk-5NAD4IAA.mjs} +6 -6
- package/dist/lib/browser/chunk-5NAD4IAA.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +6 -5
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/packlets/testing/index.mjs +3 -3
- package/dist/lib/browser/packlets/testing/index.mjs.map +3 -3
- package/dist/lib/node/index.cjs +9 -8
- package/dist/lib/node/index.cjs.map +3 -3
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/packlets/testing/index.cjs +6 -6
- package/dist/lib/node/packlets/testing/index.cjs.map +3 -3
- package/dist/types/src/packlets/invitations/invitations-handler.d.ts +3 -3
- package/dist/types/src/packlets/invitations/invitations-handler.d.ts.map +1 -1
- package/dist/types/src/packlets/invitations/invitations-service.d.ts.map +1 -1
- package/dist/types/src/packlets/testing/invitation-utils.d.ts +5 -5
- package/dist/types/src/packlets/testing/invitation-utils.d.ts.map +1 -1
- package/dist/types/src/packlets/vault/shell-runtime.d.ts +1 -1
- package/dist/types/src/packlets/vault/shell-runtime.d.ts.map +1 -1
- package/dist/types/src/version.d.ts +1 -1
- package/package.json +34 -34
- package/src/packlets/invitations/invitations-handler.ts +6 -6
- package/src/packlets/invitations/invitations-service.ts +5 -5
- package/src/packlets/spaces/spaces-service.ts +1 -1
- package/src/packlets/testing/invitation-utils.ts +9 -9
- package/src/packlets/vault/shell-runtime.ts +4 -4
- package/src/version.ts +1 -1
- package/dist/lib/browser/chunk-PNAXUNJ7.mjs.map +0 -7
|
@@ -1158,7 +1158,7 @@ var DeviceInvitationProtocol = class {
|
|
|
1158
1158
|
|
|
1159
1159
|
// packages/sdk/client-services/src/packlets/invitations/invitations-handler.ts
|
|
1160
1160
|
import { PushStream, scheduleTask as scheduleTask2, TimeoutError, Trigger as Trigger3 } from "@dxos/async";
|
|
1161
|
-
import {
|
|
1161
|
+
import { AuthenticatingInvitation, AUTHENTICATION_CODE_LENGTH, CancellableInvitation, INVITATION_TIMEOUT } from "@dxos/client-protocol";
|
|
1162
1162
|
import { Context as Context5 } from "@dxos/context";
|
|
1163
1163
|
import { generatePasscode } from "@dxos/credentials";
|
|
1164
1164
|
import { invariant as invariant6 } from "@dxos/invariant";
|
|
@@ -1728,7 +1728,7 @@ var InvitationsHandler = class {
|
|
|
1728
1728
|
state: Invitation3.State.CONNECTING
|
|
1729
1729
|
});
|
|
1730
1730
|
});
|
|
1731
|
-
const observable = new
|
|
1731
|
+
const observable = new CancellableInvitation({
|
|
1732
1732
|
initialInvitation: invitation,
|
|
1733
1733
|
subscriber: stream.observable,
|
|
1734
1734
|
onCancel: async () => {
|
|
@@ -2046,7 +2046,7 @@ var InvitationsHandler = class {
|
|
|
2046
2046
|
state: Invitation3.State.CONNECTING
|
|
2047
2047
|
});
|
|
2048
2048
|
});
|
|
2049
|
-
const observable = new
|
|
2049
|
+
const observable = new AuthenticatingInvitation({
|
|
2050
2050
|
initialInvitation: invitation,
|
|
2051
2051
|
subscriber: stream.observable,
|
|
2052
2052
|
onCancel: async () => {
|
|
@@ -2471,7 +2471,7 @@ import { STORAGE_VERSION } from "@dxos/protocols";
|
|
|
2471
2471
|
import { SpaceMember } from "@dxos/protocols/proto/dxos/client/services";
|
|
2472
2472
|
|
|
2473
2473
|
// packages/sdk/client-services/src/version.ts
|
|
2474
|
-
var DXOS_VERSION = "0.1.58-main.
|
|
2474
|
+
var DXOS_VERSION = "0.1.58-main.eedac7a";
|
|
2475
2475
|
|
|
2476
2476
|
// packages/sdk/client-services/src/packlets/services/platform.ts
|
|
2477
2477
|
var getPlatform = () => {
|
|
@@ -3747,7 +3747,7 @@ var SpacesServiceImpl = class {
|
|
|
3747
3747
|
subscriptions.add(space.stateUpdate.on(ctx, () => scheduler.forceTrigger()));
|
|
3748
3748
|
subscriptions.add(space.presence.updated.on(ctx, () => scheduler.trigger()));
|
|
3749
3749
|
subscriptions.add(space.dataPipeline.onNewEpoch.on(ctx, () => scheduler.trigger()));
|
|
3750
|
-
space.inner.controlPipeline.state.timeframeUpdate.on(ctx, () => scheduler.trigger());
|
|
3750
|
+
subscriptions.add(space.inner.controlPipeline.state.timeframeUpdate.on(ctx, () => scheduler.trigger()));
|
|
3751
3751
|
if (space.dataPipeline.pipelineState) {
|
|
3752
3752
|
subscriptions.add(space.dataPipeline.pipelineState.timeframeUpdate.on(ctx, () => scheduler.trigger()));
|
|
3753
3753
|
}
|
|
@@ -5005,4 +5005,4 @@ export {
|
|
|
5005
5005
|
createDefaultModelFactory,
|
|
5006
5006
|
ClientServicesHost
|
|
5007
5007
|
};
|
|
5008
|
-
//# sourceMappingURL=chunk-
|
|
5008
|
+
//# sourceMappingURL=chunk-5NAD4IAA.mjs.map
|