@urun-sh/core 0.2.45 → 0.2.46
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/{chunk-3YI4A64L.mjs → chunk-DUCJ3UFC.mjs} +5 -5
- package/dist/{chunk-CDOESHK5.mjs → chunk-OXPELTWD.mjs} +2 -2
- package/dist/index.browser.d.mts +14 -3
- package/dist/index.browser.d.ts +14 -3
- package/dist/index.browser.js +2 -2
- package/dist/index.browser.mjs +1 -1
- package/dist/index.d.mts +14 -3
- package/dist/index.d.ts +14 -3
- package/dist/index.js +5 -5
- package/dist/index.mjs +1 -1
- package/dist/internal.browser.d.mts +1 -1
- package/dist/internal.browser.d.ts +1 -1
- package/dist/internal.browser.js +2 -2
- package/dist/internal.browser.mjs +1 -1
- package/dist/internal.d.mts +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/internal.js +5 -5
- package/dist/internal.mjs +1 -1
- package/dist/{stream-data-DLyFVlWt.d.mts → stream-data-a_RrPi2p.d.mts} +2 -0
- package/dist/{stream-data-DLyFVlWt.d.ts → stream-data-a_RrPi2p.d.ts} +2 -0
- package/package.json +1 -1
package/dist/index.browser.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { g as AppOptions, f as App$1, X as SessionPhase, $ as SessionStatus, Z as SessionPhaseName, A as AccessTokenOptions, J as RuntimeArtifact, K as RuntimeArtifactDownload, R as Recording, S as Session$1, C as ChannelEndpoint, a6 as TransportSession, h as AttachOptions, Q as SessionDiagnostic, b as ActivationEvent, F as RecordingsAccessor, N as RuntimeArtifactsAccessor, V as SessionEndResult, a0 as SessionStream$1, a5 as StreamDataTransport, U as SessionDocumentImpl, a4 as StreamChunkOptions, l as ChunkReadable, P as Presence, r as DocConnector, H as RequestOptions, I as RequestStreamOptions, a3 as StoreOptions, a2 as Store, j as ChannelMultiplexer, W as SessionFailureKind, a8 as TransportState } from './stream-data-
|
|
2
|
-
export { c as ActivationState, D as DERIVED_LEG_SEP, p as DerivedLegRole, M as MediaChunkBinding, s as MediaChunkSource, t as MediaChunkSourceFactory, u as MediaRecorderChunkSourceOptions, v as PresenceState, w as PrewakeOptions, x as PrewakeResult, y as PrewakeStatus, z as RecordingBucket, B as RecordingLifecycle, E as RecordingStatus, G as ReleaseSessionBeaconOptions, O as RuntimeAvailability, T as SessionDocument, Y as SessionPhaseError, a1 as SessionText, ad as derivedLegName, ae as derivedLegRole, af as isPendingRecording, ag as mediaRecorderChunkSource, ah as prewake, ai as releaseSessionBeacon } from './stream-data-
|
|
1
|
+
import { g as AppOptions, f as App$1, X as SessionPhase, $ as SessionStatus, Z as SessionPhaseName, A as AccessTokenOptions, J as RuntimeArtifact, K as RuntimeArtifactDownload, R as Recording, S as Session$1, C as ChannelEndpoint, a6 as TransportSession, h as AttachOptions, Q as SessionDiagnostic, b as ActivationEvent, F as RecordingsAccessor, N as RuntimeArtifactsAccessor, V as SessionEndResult, a0 as SessionStream$1, a5 as StreamDataTransport, U as SessionDocumentImpl, a4 as StreamChunkOptions, l as ChunkReadable, P as Presence, r as DocConnector, H as RequestOptions, I as RequestStreamOptions, a3 as StoreOptions, a2 as Store, j as ChannelMultiplexer, W as SessionFailureKind, a8 as TransportState } from './stream-data-a_RrPi2p.mjs';
|
|
2
|
+
export { c as ActivationState, D as DERIVED_LEG_SEP, p as DerivedLegRole, M as MediaChunkBinding, s as MediaChunkSource, t as MediaChunkSourceFactory, u as MediaRecorderChunkSourceOptions, v as PresenceState, w as PrewakeOptions, x as PrewakeResult, y as PrewakeStatus, z as RecordingBucket, B as RecordingLifecycle, E as RecordingStatus, G as ReleaseSessionBeaconOptions, O as RuntimeAvailability, T as SessionDocument, Y as SessionPhaseError, a1 as SessionText, ad as derivedLegName, ae as derivedLegRole, af as isPendingRecording, ag as mediaRecorderChunkSource, ah as prewake, ai as releaseSessionBeacon } from './stream-data-a_RrPi2p.mjs';
|
|
3
3
|
import 'yjs';
|
|
4
4
|
import 'y-protocols/awareness';
|
|
5
5
|
|
|
@@ -369,6 +369,8 @@ declare function observePageLifecycle(onForeground: () => void): () => void;
|
|
|
369
369
|
|
|
370
370
|
declare function observePageTeardown(onTeardown: () => void): () => void;
|
|
371
371
|
|
|
372
|
+
declare function observeLeaveConfirm(shouldConfirm: () => boolean): () => void;
|
|
373
|
+
|
|
372
374
|
declare const ACTIVATION_STILL_AFTER_MS = 15000;
|
|
373
375
|
|
|
374
376
|
declare const ACTIVATION_COLD_BOOT_AFTER_MS = 45000;
|
|
@@ -545,6 +547,15 @@ declare class SessionFailedError extends Error {
|
|
|
545
547
|
|
|
546
548
|
declare function sessionFailureFromMediaError(error: unknown, status?: SessionStatus): SessionFailedError;
|
|
547
549
|
|
|
550
|
+
declare class TransportSessionMismatchError extends Error {
|
|
551
|
+
readonly code = "transport_session_mismatch";
|
|
552
|
+
|
|
553
|
+
readonly connectedSessionId: string | null;
|
|
554
|
+
|
|
555
|
+
readonly requestedSessionId: string;
|
|
556
|
+
constructor(connectedSessionId: string | null, requestedSessionId: string);
|
|
557
|
+
}
|
|
558
|
+
|
|
548
559
|
declare class SessionAllocationError extends Error {
|
|
549
560
|
|
|
550
561
|
readonly httpStatus?: number;
|
|
@@ -1044,4 +1055,4 @@ declare class FrameReassembler {
|
|
|
1044
1055
|
private requestKeyframe;
|
|
1045
1056
|
}
|
|
1046
1057
|
|
|
1047
|
-
export { ACTIVATION_COLD_BOOT_AFTER_MS, ACTIVATION_DEGRADED_AFTER_MS, ACTIVATION_HINT_PATH, ACTIVATION_STILL_AFTER_MS, ACTIVITY_DOM_EVENTS, ACTIVITY_FIELD, ACTIVITY_STAMP_MIN_INTERVAL_MS, ActivationEvent, ActivationMonitor, type ActivationMonitorOptions, type ActivationStreamLike, type ActivityAwareness, type ActivityTracker, type ActivityTrackerOptions, App, App$1 as AppInterface, AppOptions, AttachOptions, BACKOFF_BASE_MS, BACKOFF_MAX_ATTEMPTS, BACKOFF_MAX_MS, type CameraWarp, type CameraWarpOptions, type CameraWarpTransform, type CaptureClaim, CaptureController, type CaptureControllerOptions, type CaptureKind, CaptureUnavailableError, ChunkReadable, type ClientToken, ClientTokenError, type ConsumingTransport, type CreateClientTokenOptions, DATA_CHANNEL_MESSAGE_CEILING, DEFAULT_DOC_SYNC_TIMEOUT_MS, DEFAULT_GATEWAY_URL, DEFAULT_PRODUCE_ACK_TIMEOUT_MS, DEFAULT_REFERENCE_JPEG_QUALITY, DEFAULT_REFERENCE_MAX_SIZE, DEFAULT_WHEN_LIVE_TIMEOUT_MS, DGRAM_HEADER_BYTES, type DgramHeader, FOREGROUND_COALESCE_MS, FrameReassembler, INPUT_PRESENCE_DEFAULT_HZ, INPUT_PRESENCE_FIELD, type InputPresenceAwareness, type InputPresencePublisher, type InputPresencePublisherOptions, type InputPresenceState, InvalidDurationError, LEGACY_ACTIVATION_HINT_PATH, type MediaSession, type NegotiatorOptions, type NormalizeReferenceImageOptions, PLATFORM_DOC_NAME, PermanentLockedError, type PhaseObservable, PinRequiresActiveTempError, Presence, ProduceAckTimeoutError, type ReassembledFrame, type ReassemblerCallbacks, type ReassemblerOptions, Recording, RecordingNotFoundError, RecordingsAccessor, RecordingsClient, type RecordingsClientOptions, RecordingsError, RecordingsUnauthorizedError, type ReferenceImage, type ReferenceImageSource, type ReferenceImageType, RequestAbortError, RequestCancelledError, RequestDocSyncError, RequestError, RequestOptions, RequestStreamOptions, RequestTimeoutError, RetainNotTempError, type RetentionIntent, RuntimeArtifact, RuntimeArtifactDownload, RuntimeArtifactNotFoundError, RuntimeArtifactsAccessor, RuntimeArtifactsClient, type RuntimeArtifactsClientOptions, RuntimeArtifactsError, RuntimeArtifactsUnauthorizedError, Session, SessionAllocationError, SessionDiagnostic, SessionEndError, SessionEndResult, SessionEndUnavailableError, SessionFailedError, SessionFailureKind, Session$1 as SessionInterface, SessionPhase, SessionPhaseName, SessionStatus, SessionStream$1 as SessionStream, type SignalCarrier, type Signaling, Store, StoreOptions, StreamChunkOptions, StreamDirectionConflict, type TransportEstablishedNotify, TransportNegotiator, type TransportOfferRequest, type TransportOfferResponse, TransportSessionSignaling, TransportState, VISIBILITY_FIELD, type VideoStreamOptions, WIRE_MESSAGE_BUDGET, WT_CONTROL_FRAME_MAX, WebRtcSession, WebTransportSession, type WhenLiveOptions, WtControlDecoder, type WtControlMessage, activationHintFrom, cameraCaptureAvailable, captureStillFromVideo, computeBackoffDelay, createActivityTracker, createCameraWarp, createClientToken, createInputPresencePublisher, createRecordingsClient, createRuntimeArtifactsClient, createStore, describeSessionFailure, describeSessionPhase, encodeWtControlFrame, fitWithin, isDurationString, isRetryableSessionError, isWakingPhase, normalizeReferenceImage, normalizeRetention, observePageLifecycle, observePageTeardown, parseDgramHeader, referenceImageErrorMessage, sessionFailureFromMediaError, sharedCaptureController, videoStream, whenLive, writeDgramHeader };
|
|
1058
|
+
export { ACTIVATION_COLD_BOOT_AFTER_MS, ACTIVATION_DEGRADED_AFTER_MS, ACTIVATION_HINT_PATH, ACTIVATION_STILL_AFTER_MS, ACTIVITY_DOM_EVENTS, ACTIVITY_FIELD, ACTIVITY_STAMP_MIN_INTERVAL_MS, ActivationEvent, ActivationMonitor, type ActivationMonitorOptions, type ActivationStreamLike, type ActivityAwareness, type ActivityTracker, type ActivityTrackerOptions, App, App$1 as AppInterface, AppOptions, AttachOptions, BACKOFF_BASE_MS, BACKOFF_MAX_ATTEMPTS, BACKOFF_MAX_MS, type CameraWarp, type CameraWarpOptions, type CameraWarpTransform, type CaptureClaim, CaptureController, type CaptureControllerOptions, type CaptureKind, CaptureUnavailableError, ChunkReadable, type ClientToken, ClientTokenError, type ConsumingTransport, type CreateClientTokenOptions, DATA_CHANNEL_MESSAGE_CEILING, DEFAULT_DOC_SYNC_TIMEOUT_MS, DEFAULT_GATEWAY_URL, DEFAULT_PRODUCE_ACK_TIMEOUT_MS, DEFAULT_REFERENCE_JPEG_QUALITY, DEFAULT_REFERENCE_MAX_SIZE, DEFAULT_WHEN_LIVE_TIMEOUT_MS, DGRAM_HEADER_BYTES, type DgramHeader, FOREGROUND_COALESCE_MS, FrameReassembler, INPUT_PRESENCE_DEFAULT_HZ, INPUT_PRESENCE_FIELD, type InputPresenceAwareness, type InputPresencePublisher, type InputPresencePublisherOptions, type InputPresenceState, InvalidDurationError, LEGACY_ACTIVATION_HINT_PATH, type MediaSession, type NegotiatorOptions, type NormalizeReferenceImageOptions, PLATFORM_DOC_NAME, PermanentLockedError, type PhaseObservable, PinRequiresActiveTempError, Presence, ProduceAckTimeoutError, type ReassembledFrame, type ReassemblerCallbacks, type ReassemblerOptions, Recording, RecordingNotFoundError, RecordingsAccessor, RecordingsClient, type RecordingsClientOptions, RecordingsError, RecordingsUnauthorizedError, type ReferenceImage, type ReferenceImageSource, type ReferenceImageType, RequestAbortError, RequestCancelledError, RequestDocSyncError, RequestError, RequestOptions, RequestStreamOptions, RequestTimeoutError, RetainNotTempError, type RetentionIntent, RuntimeArtifact, RuntimeArtifactDownload, RuntimeArtifactNotFoundError, RuntimeArtifactsAccessor, RuntimeArtifactsClient, type RuntimeArtifactsClientOptions, RuntimeArtifactsError, RuntimeArtifactsUnauthorizedError, Session, SessionAllocationError, SessionDiagnostic, SessionEndError, SessionEndResult, SessionEndUnavailableError, SessionFailedError, SessionFailureKind, Session$1 as SessionInterface, SessionPhase, SessionPhaseName, SessionStatus, SessionStream$1 as SessionStream, type SignalCarrier, type Signaling, Store, StoreOptions, StreamChunkOptions, StreamDirectionConflict, type TransportEstablishedNotify, TransportNegotiator, type TransportOfferRequest, type TransportOfferResponse, TransportSessionMismatchError, TransportSessionSignaling, TransportState, VISIBILITY_FIELD, type VideoStreamOptions, WIRE_MESSAGE_BUDGET, WT_CONTROL_FRAME_MAX, WebRtcSession, WebTransportSession, type WhenLiveOptions, WtControlDecoder, type WtControlMessage, activationHintFrom, cameraCaptureAvailable, captureStillFromVideo, computeBackoffDelay, createActivityTracker, createCameraWarp, createClientToken, createInputPresencePublisher, createRecordingsClient, createRuntimeArtifactsClient, createStore, describeSessionFailure, describeSessionPhase, encodeWtControlFrame, fitWithin, isDurationString, isRetryableSessionError, isWakingPhase, normalizeReferenceImage, normalizeRetention, observeLeaveConfirm, observePageLifecycle, observePageTeardown, parseDgramHeader, referenceImageErrorMessage, sessionFailureFromMediaError, sharedCaptureController, videoStream, whenLive, writeDgramHeader };
|
package/dist/index.browser.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { g as AppOptions, f as App$1, X as SessionPhase, $ as SessionStatus, Z as SessionPhaseName, A as AccessTokenOptions, J as RuntimeArtifact, K as RuntimeArtifactDownload, R as Recording, S as Session$1, C as ChannelEndpoint, a6 as TransportSession, h as AttachOptions, Q as SessionDiagnostic, b as ActivationEvent, F as RecordingsAccessor, N as RuntimeArtifactsAccessor, V as SessionEndResult, a0 as SessionStream$1, a5 as StreamDataTransport, U as SessionDocumentImpl, a4 as StreamChunkOptions, l as ChunkReadable, P as Presence, r as DocConnector, H as RequestOptions, I as RequestStreamOptions, a3 as StoreOptions, a2 as Store, j as ChannelMultiplexer, W as SessionFailureKind, a8 as TransportState } from './stream-data-
|
|
2
|
-
export { c as ActivationState, D as DERIVED_LEG_SEP, p as DerivedLegRole, M as MediaChunkBinding, s as MediaChunkSource, t as MediaChunkSourceFactory, u as MediaRecorderChunkSourceOptions, v as PresenceState, w as PrewakeOptions, x as PrewakeResult, y as PrewakeStatus, z as RecordingBucket, B as RecordingLifecycle, E as RecordingStatus, G as ReleaseSessionBeaconOptions, O as RuntimeAvailability, T as SessionDocument, Y as SessionPhaseError, a1 as SessionText, ad as derivedLegName, ae as derivedLegRole, af as isPendingRecording, ag as mediaRecorderChunkSource, ah as prewake, ai as releaseSessionBeacon } from './stream-data-
|
|
1
|
+
import { g as AppOptions, f as App$1, X as SessionPhase, $ as SessionStatus, Z as SessionPhaseName, A as AccessTokenOptions, J as RuntimeArtifact, K as RuntimeArtifactDownload, R as Recording, S as Session$1, C as ChannelEndpoint, a6 as TransportSession, h as AttachOptions, Q as SessionDiagnostic, b as ActivationEvent, F as RecordingsAccessor, N as RuntimeArtifactsAccessor, V as SessionEndResult, a0 as SessionStream$1, a5 as StreamDataTransport, U as SessionDocumentImpl, a4 as StreamChunkOptions, l as ChunkReadable, P as Presence, r as DocConnector, H as RequestOptions, I as RequestStreamOptions, a3 as StoreOptions, a2 as Store, j as ChannelMultiplexer, W as SessionFailureKind, a8 as TransportState } from './stream-data-a_RrPi2p.js';
|
|
2
|
+
export { c as ActivationState, D as DERIVED_LEG_SEP, p as DerivedLegRole, M as MediaChunkBinding, s as MediaChunkSource, t as MediaChunkSourceFactory, u as MediaRecorderChunkSourceOptions, v as PresenceState, w as PrewakeOptions, x as PrewakeResult, y as PrewakeStatus, z as RecordingBucket, B as RecordingLifecycle, E as RecordingStatus, G as ReleaseSessionBeaconOptions, O as RuntimeAvailability, T as SessionDocument, Y as SessionPhaseError, a1 as SessionText, ad as derivedLegName, ae as derivedLegRole, af as isPendingRecording, ag as mediaRecorderChunkSource, ah as prewake, ai as releaseSessionBeacon } from './stream-data-a_RrPi2p.js';
|
|
3
3
|
import 'yjs';
|
|
4
4
|
import 'y-protocols/awareness';
|
|
5
5
|
|
|
@@ -369,6 +369,8 @@ declare function observePageLifecycle(onForeground: () => void): () => void;
|
|
|
369
369
|
|
|
370
370
|
declare function observePageTeardown(onTeardown: () => void): () => void;
|
|
371
371
|
|
|
372
|
+
declare function observeLeaveConfirm(shouldConfirm: () => boolean): () => void;
|
|
373
|
+
|
|
372
374
|
declare const ACTIVATION_STILL_AFTER_MS = 15000;
|
|
373
375
|
|
|
374
376
|
declare const ACTIVATION_COLD_BOOT_AFTER_MS = 45000;
|
|
@@ -545,6 +547,15 @@ declare class SessionFailedError extends Error {
|
|
|
545
547
|
|
|
546
548
|
declare function sessionFailureFromMediaError(error: unknown, status?: SessionStatus): SessionFailedError;
|
|
547
549
|
|
|
550
|
+
declare class TransportSessionMismatchError extends Error {
|
|
551
|
+
readonly code = "transport_session_mismatch";
|
|
552
|
+
|
|
553
|
+
readonly connectedSessionId: string | null;
|
|
554
|
+
|
|
555
|
+
readonly requestedSessionId: string;
|
|
556
|
+
constructor(connectedSessionId: string | null, requestedSessionId: string);
|
|
557
|
+
}
|
|
558
|
+
|
|
548
559
|
declare class SessionAllocationError extends Error {
|
|
549
560
|
|
|
550
561
|
readonly httpStatus?: number;
|
|
@@ -1044,4 +1055,4 @@ declare class FrameReassembler {
|
|
|
1044
1055
|
private requestKeyframe;
|
|
1045
1056
|
}
|
|
1046
1057
|
|
|
1047
|
-
export { ACTIVATION_COLD_BOOT_AFTER_MS, ACTIVATION_DEGRADED_AFTER_MS, ACTIVATION_HINT_PATH, ACTIVATION_STILL_AFTER_MS, ACTIVITY_DOM_EVENTS, ACTIVITY_FIELD, ACTIVITY_STAMP_MIN_INTERVAL_MS, ActivationEvent, ActivationMonitor, type ActivationMonitorOptions, type ActivationStreamLike, type ActivityAwareness, type ActivityTracker, type ActivityTrackerOptions, App, App$1 as AppInterface, AppOptions, AttachOptions, BACKOFF_BASE_MS, BACKOFF_MAX_ATTEMPTS, BACKOFF_MAX_MS, type CameraWarp, type CameraWarpOptions, type CameraWarpTransform, type CaptureClaim, CaptureController, type CaptureControllerOptions, type CaptureKind, CaptureUnavailableError, ChunkReadable, type ClientToken, ClientTokenError, type ConsumingTransport, type CreateClientTokenOptions, DATA_CHANNEL_MESSAGE_CEILING, DEFAULT_DOC_SYNC_TIMEOUT_MS, DEFAULT_GATEWAY_URL, DEFAULT_PRODUCE_ACK_TIMEOUT_MS, DEFAULT_REFERENCE_JPEG_QUALITY, DEFAULT_REFERENCE_MAX_SIZE, DEFAULT_WHEN_LIVE_TIMEOUT_MS, DGRAM_HEADER_BYTES, type DgramHeader, FOREGROUND_COALESCE_MS, FrameReassembler, INPUT_PRESENCE_DEFAULT_HZ, INPUT_PRESENCE_FIELD, type InputPresenceAwareness, type InputPresencePublisher, type InputPresencePublisherOptions, type InputPresenceState, InvalidDurationError, LEGACY_ACTIVATION_HINT_PATH, type MediaSession, type NegotiatorOptions, type NormalizeReferenceImageOptions, PLATFORM_DOC_NAME, PermanentLockedError, type PhaseObservable, PinRequiresActiveTempError, Presence, ProduceAckTimeoutError, type ReassembledFrame, type ReassemblerCallbacks, type ReassemblerOptions, Recording, RecordingNotFoundError, RecordingsAccessor, RecordingsClient, type RecordingsClientOptions, RecordingsError, RecordingsUnauthorizedError, type ReferenceImage, type ReferenceImageSource, type ReferenceImageType, RequestAbortError, RequestCancelledError, RequestDocSyncError, RequestError, RequestOptions, RequestStreamOptions, RequestTimeoutError, RetainNotTempError, type RetentionIntent, RuntimeArtifact, RuntimeArtifactDownload, RuntimeArtifactNotFoundError, RuntimeArtifactsAccessor, RuntimeArtifactsClient, type RuntimeArtifactsClientOptions, RuntimeArtifactsError, RuntimeArtifactsUnauthorizedError, Session, SessionAllocationError, SessionDiagnostic, SessionEndError, SessionEndResult, SessionEndUnavailableError, SessionFailedError, SessionFailureKind, Session$1 as SessionInterface, SessionPhase, SessionPhaseName, SessionStatus, SessionStream$1 as SessionStream, type SignalCarrier, type Signaling, Store, StoreOptions, StreamChunkOptions, StreamDirectionConflict, type TransportEstablishedNotify, TransportNegotiator, type TransportOfferRequest, type TransportOfferResponse, TransportSessionSignaling, TransportState, VISIBILITY_FIELD, type VideoStreamOptions, WIRE_MESSAGE_BUDGET, WT_CONTROL_FRAME_MAX, WebRtcSession, WebTransportSession, type WhenLiveOptions, WtControlDecoder, type WtControlMessage, activationHintFrom, cameraCaptureAvailable, captureStillFromVideo, computeBackoffDelay, createActivityTracker, createCameraWarp, createClientToken, createInputPresencePublisher, createRecordingsClient, createRuntimeArtifactsClient, createStore, describeSessionFailure, describeSessionPhase, encodeWtControlFrame, fitWithin, isDurationString, isRetryableSessionError, isWakingPhase, normalizeReferenceImage, normalizeRetention, observePageLifecycle, observePageTeardown, parseDgramHeader, referenceImageErrorMessage, sessionFailureFromMediaError, sharedCaptureController, videoStream, whenLive, writeDgramHeader };
|
|
1058
|
+
export { ACTIVATION_COLD_BOOT_AFTER_MS, ACTIVATION_DEGRADED_AFTER_MS, ACTIVATION_HINT_PATH, ACTIVATION_STILL_AFTER_MS, ACTIVITY_DOM_EVENTS, ACTIVITY_FIELD, ACTIVITY_STAMP_MIN_INTERVAL_MS, ActivationEvent, ActivationMonitor, type ActivationMonitorOptions, type ActivationStreamLike, type ActivityAwareness, type ActivityTracker, type ActivityTrackerOptions, App, App$1 as AppInterface, AppOptions, AttachOptions, BACKOFF_BASE_MS, BACKOFF_MAX_ATTEMPTS, BACKOFF_MAX_MS, type CameraWarp, type CameraWarpOptions, type CameraWarpTransform, type CaptureClaim, CaptureController, type CaptureControllerOptions, type CaptureKind, CaptureUnavailableError, ChunkReadable, type ClientToken, ClientTokenError, type ConsumingTransport, type CreateClientTokenOptions, DATA_CHANNEL_MESSAGE_CEILING, DEFAULT_DOC_SYNC_TIMEOUT_MS, DEFAULT_GATEWAY_URL, DEFAULT_PRODUCE_ACK_TIMEOUT_MS, DEFAULT_REFERENCE_JPEG_QUALITY, DEFAULT_REFERENCE_MAX_SIZE, DEFAULT_WHEN_LIVE_TIMEOUT_MS, DGRAM_HEADER_BYTES, type DgramHeader, FOREGROUND_COALESCE_MS, FrameReassembler, INPUT_PRESENCE_DEFAULT_HZ, INPUT_PRESENCE_FIELD, type InputPresenceAwareness, type InputPresencePublisher, type InputPresencePublisherOptions, type InputPresenceState, InvalidDurationError, LEGACY_ACTIVATION_HINT_PATH, type MediaSession, type NegotiatorOptions, type NormalizeReferenceImageOptions, PLATFORM_DOC_NAME, PermanentLockedError, type PhaseObservable, PinRequiresActiveTempError, Presence, ProduceAckTimeoutError, type ReassembledFrame, type ReassemblerCallbacks, type ReassemblerOptions, Recording, RecordingNotFoundError, RecordingsAccessor, RecordingsClient, type RecordingsClientOptions, RecordingsError, RecordingsUnauthorizedError, type ReferenceImage, type ReferenceImageSource, type ReferenceImageType, RequestAbortError, RequestCancelledError, RequestDocSyncError, RequestError, RequestOptions, RequestStreamOptions, RequestTimeoutError, RetainNotTempError, type RetentionIntent, RuntimeArtifact, RuntimeArtifactDownload, RuntimeArtifactNotFoundError, RuntimeArtifactsAccessor, RuntimeArtifactsClient, type RuntimeArtifactsClientOptions, RuntimeArtifactsError, RuntimeArtifactsUnauthorizedError, Session, SessionAllocationError, SessionDiagnostic, SessionEndError, SessionEndResult, SessionEndUnavailableError, SessionFailedError, SessionFailureKind, Session$1 as SessionInterface, SessionPhase, SessionPhaseName, SessionStatus, SessionStream$1 as SessionStream, type SignalCarrier, type Signaling, Store, StoreOptions, StreamChunkOptions, StreamDirectionConflict, type TransportEstablishedNotify, TransportNegotiator, type TransportOfferRequest, type TransportOfferResponse, TransportSessionMismatchError, TransportSessionSignaling, TransportState, VISIBILITY_FIELD, type VideoStreamOptions, WIRE_MESSAGE_BUDGET, WT_CONTROL_FRAME_MAX, WebRtcSession, WebTransportSession, type WhenLiveOptions, WtControlDecoder, type WtControlMessage, activationHintFrom, cameraCaptureAvailable, captureStillFromVideo, computeBackoffDelay, createActivityTracker, createCameraWarp, createClientToken, createInputPresencePublisher, createRecordingsClient, createRuntimeArtifactsClient, createStore, describeSessionFailure, describeSessionPhase, encodeWtControlFrame, fitWithin, isDurationString, isRetryableSessionError, isWakingPhase, normalizeReferenceImage, normalizeRetention, observeLeaveConfirm, observePageLifecycle, observePageTeardown, parseDgramHeader, referenceImageErrorMessage, sessionFailureFromMediaError, sharedCaptureController, videoStream, whenLive, writeDgramHeader };
|