@urun-sh/core 0.2.39 → 0.2.40
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-TQBKKR7C.mjs → chunk-JGXO6MFH.mjs} +1 -1
- package/dist/{chunk-6HLCYJ7O.mjs → chunk-JMGMNH6C.mjs} +1 -1
- package/dist/index.browser.d.mts +91 -3
- package/dist/index.browser.d.ts +91 -3
- package/dist/index.browser.js +2 -2
- package/dist/index.browser.mjs +1 -1
- package/dist/index.d.mts +91 -3
- package/dist/index.d.ts +91 -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 +1 -1
- 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-rsZLrJmS.d.mts → stream-data-DbHLOeSD.d.mts} +2 -0
- package/dist/{stream-data-rsZLrJmS.d.ts → stream-data-DbHLOeSD.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, V as SessionPhase, Z as SessionStatus, X as SessionPhaseName, A as AccessTokenOptions, H as RuntimeArtifact, I as RuntimeArtifactDownload, R as Recording, S as Session$1, C as ChannelEndpoint, a4 as TransportSession, h as AttachOptions, N as SessionDiagnostic, b as ActivationEvent, B as RecordingsAccessor, J as RuntimeArtifactsAccessor, T as SessionEndResult, _ as SessionStream$1, a3 as StreamDataTransport, Q as SessionDocumentImpl, a2 as StreamChunkOptions, l as ChunkReadable, P as Presence, p as DocConnector, F as RequestOptions, G as RequestStreamOptions, a1 as StoreOptions, a0 as Store, j as ChannelMultiplexer, U as SessionFailureKind, a6 as TransportState } from './stream-data-
|
|
2
|
-
export { c as ActivationState, M as MediaChunkBinding, q as MediaChunkSource, r as MediaChunkSourceFactory, s as MediaRecorderChunkSourceOptions, t as PresenceState, u as PrewakeOptions, v as PrewakeResult, w as PrewakeStatus, x as RecordingBucket, y as RecordingLifecycle, z as RecordingStatus, E as ReleaseSessionBeaconOptions, K as RuntimeAvailability, O as SessionDocument, W as SessionPhaseError, $ as SessionText, ab as isPendingRecording, ac as mediaRecorderChunkSource, ad as prewake, ae as releaseSessionBeacon } from './stream-data-
|
|
1
|
+
import { g as AppOptions, f as App$1, V as SessionPhase, Z as SessionStatus, X as SessionPhaseName, A as AccessTokenOptions, H as RuntimeArtifact, I as RuntimeArtifactDownload, R as Recording, S as Session$1, C as ChannelEndpoint, a4 as TransportSession, h as AttachOptions, N as SessionDiagnostic, b as ActivationEvent, B as RecordingsAccessor, J as RuntimeArtifactsAccessor, T as SessionEndResult, _ as SessionStream$1, a3 as StreamDataTransport, Q as SessionDocumentImpl, a2 as StreamChunkOptions, l as ChunkReadable, P as Presence, p as DocConnector, F as RequestOptions, G as RequestStreamOptions, a1 as StoreOptions, a0 as Store, j as ChannelMultiplexer, U as SessionFailureKind, a6 as TransportState } from './stream-data-DbHLOeSD.mjs';
|
|
2
|
+
export { c as ActivationState, M as MediaChunkBinding, q as MediaChunkSource, r as MediaChunkSourceFactory, s as MediaRecorderChunkSourceOptions, t as PresenceState, u as PrewakeOptions, v as PrewakeResult, w as PrewakeStatus, x as RecordingBucket, y as RecordingLifecycle, z as RecordingStatus, E as ReleaseSessionBeaconOptions, K as RuntimeAvailability, O as SessionDocument, W as SessionPhaseError, $ as SessionText, ab as isPendingRecording, ac as mediaRecorderChunkSource, ad as prewake, ae as releaseSessionBeacon } from './stream-data-DbHLOeSD.mjs';
|
|
3
3
|
import 'yjs';
|
|
4
4
|
import 'y-protocols/awareness';
|
|
5
5
|
|
|
@@ -679,6 +679,94 @@ interface InputPresencePublisher {
|
|
|
679
679
|
|
|
680
680
|
declare function createInputPresencePublisher(options: InputPresencePublisherOptions): InputPresencePublisher;
|
|
681
681
|
|
|
682
|
+
type ReferenceImageType = 'image/png' | 'image/jpeg';
|
|
683
|
+
|
|
684
|
+
type ReferenceImageSource = 'file' | 'camera';
|
|
685
|
+
|
|
686
|
+
interface ReferenceImage {
|
|
687
|
+
|
|
688
|
+
readonly bytes: Uint8Array;
|
|
689
|
+
|
|
690
|
+
readonly type: ReferenceImageType;
|
|
691
|
+
|
|
692
|
+
readonly width: number;
|
|
693
|
+
|
|
694
|
+
readonly height: number;
|
|
695
|
+
|
|
696
|
+
readonly source: ReferenceImageSource;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
declare const DEFAULT_REFERENCE_MAX_SIZE = 1024;
|
|
700
|
+
|
|
701
|
+
declare const DEFAULT_REFERENCE_JPEG_QUALITY = 0.92;
|
|
702
|
+
|
|
703
|
+
interface NormalizeReferenceImageOptions {
|
|
704
|
+
|
|
705
|
+
maxSize?: number;
|
|
706
|
+
|
|
707
|
+
type?: ReferenceImageType;
|
|
708
|
+
|
|
709
|
+
quality?: number;
|
|
710
|
+
|
|
711
|
+
source: ReferenceImageSource;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
declare function fitWithin(width: number, height: number, maxSize: number): {
|
|
715
|
+
width: number;
|
|
716
|
+
height: number;
|
|
717
|
+
};
|
|
718
|
+
|
|
719
|
+
declare function normalizeReferenceImage(input: Blob, options: NormalizeReferenceImageOptions): Promise<ReferenceImage>;
|
|
720
|
+
|
|
721
|
+
declare function referenceImageErrorMessage(error: unknown): string;
|
|
722
|
+
|
|
723
|
+
declare function cameraCaptureAvailable(): boolean;
|
|
724
|
+
|
|
725
|
+
declare function captureStillFromVideo(video: HTMLVideoElement, options?: Omit<NormalizeReferenceImageOptions, 'source'>): Promise<ReferenceImage>;
|
|
726
|
+
|
|
727
|
+
interface CameraWarpOptions {
|
|
728
|
+
|
|
729
|
+
panPerPixel?: number;
|
|
730
|
+
|
|
731
|
+
zoomPerSecond?: number;
|
|
732
|
+
|
|
733
|
+
strafePerSecond?: number;
|
|
734
|
+
|
|
735
|
+
decayTauMs?: number;
|
|
736
|
+
|
|
737
|
+
frameRelax?: number;
|
|
738
|
+
|
|
739
|
+
maxPan?: number;
|
|
740
|
+
|
|
741
|
+
maxLogZoom?: number;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
interface CameraWarpTransform {
|
|
745
|
+
translateX: number;
|
|
746
|
+
translateY: number;
|
|
747
|
+
scale: number;
|
|
748
|
+
}
|
|
749
|
+
interface CameraWarp {
|
|
750
|
+
|
|
751
|
+
pointerDelta(dx: number, dy: number): void;
|
|
752
|
+
|
|
753
|
+
keyDown(key: string): void;
|
|
754
|
+
keyUp(key: string): void;
|
|
755
|
+
|
|
756
|
+
clearKeys(): void;
|
|
757
|
+
|
|
758
|
+
frameArrived(): void;
|
|
759
|
+
|
|
760
|
+
tick(nowMs: number): void;
|
|
761
|
+
|
|
762
|
+
transform(): CameraWarpTransform;
|
|
763
|
+
|
|
764
|
+
isIdentity(epsilon?: number): boolean;
|
|
765
|
+
|
|
766
|
+
reset(): void;
|
|
767
|
+
}
|
|
768
|
+
declare function createCameraWarp(options?: CameraWarpOptions): CameraWarp;
|
|
769
|
+
|
|
682
770
|
interface MediaSession {
|
|
683
771
|
readonly kind: 'webtransport' | 'webrtc';
|
|
684
772
|
start(): Promise<void>;
|
|
@@ -952,4 +1040,4 @@ declare class FrameReassembler {
|
|
|
952
1040
|
private requestKeyframe;
|
|
953
1041
|
}
|
|
954
1042
|
|
|
955
|
-
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 CaptureClaim, CaptureController, type CaptureControllerOptions, type CaptureKind, CaptureUnavailableError, ChunkReadable, type ClientToken, ClientTokenError, type ConsumingTransport, type CreateClientTokenOptions, DEFAULT_DOC_SYNC_TIMEOUT_MS, DEFAULT_GATEWAY_URL, DEFAULT_PRODUCE_ACK_TIMEOUT_MS, 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, PLATFORM_DOC_NAME, PermanentLockedError, type PhaseObservable, PinRequiresActiveTempError, Presence, ProduceAckTimeoutError, type ReassembledFrame, type ReassemblerCallbacks, type ReassemblerOptions, Recording, RecordingNotFoundError, RecordingsAccessor, RecordingsClient, type RecordingsClientOptions, RecordingsError, RecordingsUnauthorizedError, 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, WT_CONTROL_FRAME_MAX, WebRtcSession, WebTransportSession, type WhenLiveOptions, WtControlDecoder, type WtControlMessage, activationHintFrom, computeBackoffDelay, createActivityTracker, createClientToken, createInputPresencePublisher, createRecordingsClient, createRuntimeArtifactsClient, createStore, describeSessionFailure, describeSessionPhase, encodeWtControlFrame, isDurationString, isRetryableSessionError, isWakingPhase, normalizeRetention, observePageLifecycle, observePageTeardown, parseDgramHeader, sessionFailureFromMediaError, sharedCaptureController, videoStream, whenLive, writeDgramHeader };
|
|
1043
|
+
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, 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, 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 };
|
package/dist/index.browser.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { g as AppOptions, f as App$1, V as SessionPhase, Z as SessionStatus, X as SessionPhaseName, A as AccessTokenOptions, H as RuntimeArtifact, I as RuntimeArtifactDownload, R as Recording, S as Session$1, C as ChannelEndpoint, a4 as TransportSession, h as AttachOptions, N as SessionDiagnostic, b as ActivationEvent, B as RecordingsAccessor, J as RuntimeArtifactsAccessor, T as SessionEndResult, _ as SessionStream$1, a3 as StreamDataTransport, Q as SessionDocumentImpl, a2 as StreamChunkOptions, l as ChunkReadable, P as Presence, p as DocConnector, F as RequestOptions, G as RequestStreamOptions, a1 as StoreOptions, a0 as Store, j as ChannelMultiplexer, U as SessionFailureKind, a6 as TransportState } from './stream-data-
|
|
2
|
-
export { c as ActivationState, M as MediaChunkBinding, q as MediaChunkSource, r as MediaChunkSourceFactory, s as MediaRecorderChunkSourceOptions, t as PresenceState, u as PrewakeOptions, v as PrewakeResult, w as PrewakeStatus, x as RecordingBucket, y as RecordingLifecycle, z as RecordingStatus, E as ReleaseSessionBeaconOptions, K as RuntimeAvailability, O as SessionDocument, W as SessionPhaseError, $ as SessionText, ab as isPendingRecording, ac as mediaRecorderChunkSource, ad as prewake, ae as releaseSessionBeacon } from './stream-data-
|
|
1
|
+
import { g as AppOptions, f as App$1, V as SessionPhase, Z as SessionStatus, X as SessionPhaseName, A as AccessTokenOptions, H as RuntimeArtifact, I as RuntimeArtifactDownload, R as Recording, S as Session$1, C as ChannelEndpoint, a4 as TransportSession, h as AttachOptions, N as SessionDiagnostic, b as ActivationEvent, B as RecordingsAccessor, J as RuntimeArtifactsAccessor, T as SessionEndResult, _ as SessionStream$1, a3 as StreamDataTransport, Q as SessionDocumentImpl, a2 as StreamChunkOptions, l as ChunkReadable, P as Presence, p as DocConnector, F as RequestOptions, G as RequestStreamOptions, a1 as StoreOptions, a0 as Store, j as ChannelMultiplexer, U as SessionFailureKind, a6 as TransportState } from './stream-data-DbHLOeSD.js';
|
|
2
|
+
export { c as ActivationState, M as MediaChunkBinding, q as MediaChunkSource, r as MediaChunkSourceFactory, s as MediaRecorderChunkSourceOptions, t as PresenceState, u as PrewakeOptions, v as PrewakeResult, w as PrewakeStatus, x as RecordingBucket, y as RecordingLifecycle, z as RecordingStatus, E as ReleaseSessionBeaconOptions, K as RuntimeAvailability, O as SessionDocument, W as SessionPhaseError, $ as SessionText, ab as isPendingRecording, ac as mediaRecorderChunkSource, ad as prewake, ae as releaseSessionBeacon } from './stream-data-DbHLOeSD.js';
|
|
3
3
|
import 'yjs';
|
|
4
4
|
import 'y-protocols/awareness';
|
|
5
5
|
|
|
@@ -679,6 +679,94 @@ interface InputPresencePublisher {
|
|
|
679
679
|
|
|
680
680
|
declare function createInputPresencePublisher(options: InputPresencePublisherOptions): InputPresencePublisher;
|
|
681
681
|
|
|
682
|
+
type ReferenceImageType = 'image/png' | 'image/jpeg';
|
|
683
|
+
|
|
684
|
+
type ReferenceImageSource = 'file' | 'camera';
|
|
685
|
+
|
|
686
|
+
interface ReferenceImage {
|
|
687
|
+
|
|
688
|
+
readonly bytes: Uint8Array;
|
|
689
|
+
|
|
690
|
+
readonly type: ReferenceImageType;
|
|
691
|
+
|
|
692
|
+
readonly width: number;
|
|
693
|
+
|
|
694
|
+
readonly height: number;
|
|
695
|
+
|
|
696
|
+
readonly source: ReferenceImageSource;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
declare const DEFAULT_REFERENCE_MAX_SIZE = 1024;
|
|
700
|
+
|
|
701
|
+
declare const DEFAULT_REFERENCE_JPEG_QUALITY = 0.92;
|
|
702
|
+
|
|
703
|
+
interface NormalizeReferenceImageOptions {
|
|
704
|
+
|
|
705
|
+
maxSize?: number;
|
|
706
|
+
|
|
707
|
+
type?: ReferenceImageType;
|
|
708
|
+
|
|
709
|
+
quality?: number;
|
|
710
|
+
|
|
711
|
+
source: ReferenceImageSource;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
declare function fitWithin(width: number, height: number, maxSize: number): {
|
|
715
|
+
width: number;
|
|
716
|
+
height: number;
|
|
717
|
+
};
|
|
718
|
+
|
|
719
|
+
declare function normalizeReferenceImage(input: Blob, options: NormalizeReferenceImageOptions): Promise<ReferenceImage>;
|
|
720
|
+
|
|
721
|
+
declare function referenceImageErrorMessage(error: unknown): string;
|
|
722
|
+
|
|
723
|
+
declare function cameraCaptureAvailable(): boolean;
|
|
724
|
+
|
|
725
|
+
declare function captureStillFromVideo(video: HTMLVideoElement, options?: Omit<NormalizeReferenceImageOptions, 'source'>): Promise<ReferenceImage>;
|
|
726
|
+
|
|
727
|
+
interface CameraWarpOptions {
|
|
728
|
+
|
|
729
|
+
panPerPixel?: number;
|
|
730
|
+
|
|
731
|
+
zoomPerSecond?: number;
|
|
732
|
+
|
|
733
|
+
strafePerSecond?: number;
|
|
734
|
+
|
|
735
|
+
decayTauMs?: number;
|
|
736
|
+
|
|
737
|
+
frameRelax?: number;
|
|
738
|
+
|
|
739
|
+
maxPan?: number;
|
|
740
|
+
|
|
741
|
+
maxLogZoom?: number;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
interface CameraWarpTransform {
|
|
745
|
+
translateX: number;
|
|
746
|
+
translateY: number;
|
|
747
|
+
scale: number;
|
|
748
|
+
}
|
|
749
|
+
interface CameraWarp {
|
|
750
|
+
|
|
751
|
+
pointerDelta(dx: number, dy: number): void;
|
|
752
|
+
|
|
753
|
+
keyDown(key: string): void;
|
|
754
|
+
keyUp(key: string): void;
|
|
755
|
+
|
|
756
|
+
clearKeys(): void;
|
|
757
|
+
|
|
758
|
+
frameArrived(): void;
|
|
759
|
+
|
|
760
|
+
tick(nowMs: number): void;
|
|
761
|
+
|
|
762
|
+
transform(): CameraWarpTransform;
|
|
763
|
+
|
|
764
|
+
isIdentity(epsilon?: number): boolean;
|
|
765
|
+
|
|
766
|
+
reset(): void;
|
|
767
|
+
}
|
|
768
|
+
declare function createCameraWarp(options?: CameraWarpOptions): CameraWarp;
|
|
769
|
+
|
|
682
770
|
interface MediaSession {
|
|
683
771
|
readonly kind: 'webtransport' | 'webrtc';
|
|
684
772
|
start(): Promise<void>;
|
|
@@ -952,4 +1040,4 @@ declare class FrameReassembler {
|
|
|
952
1040
|
private requestKeyframe;
|
|
953
1041
|
}
|
|
954
1042
|
|
|
955
|
-
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 CaptureClaim, CaptureController, type CaptureControllerOptions, type CaptureKind, CaptureUnavailableError, ChunkReadable, type ClientToken, ClientTokenError, type ConsumingTransport, type CreateClientTokenOptions, DEFAULT_DOC_SYNC_TIMEOUT_MS, DEFAULT_GATEWAY_URL, DEFAULT_PRODUCE_ACK_TIMEOUT_MS, 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, PLATFORM_DOC_NAME, PermanentLockedError, type PhaseObservable, PinRequiresActiveTempError, Presence, ProduceAckTimeoutError, type ReassembledFrame, type ReassemblerCallbacks, type ReassemblerOptions, Recording, RecordingNotFoundError, RecordingsAccessor, RecordingsClient, type RecordingsClientOptions, RecordingsError, RecordingsUnauthorizedError, 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, WT_CONTROL_FRAME_MAX, WebRtcSession, WebTransportSession, type WhenLiveOptions, WtControlDecoder, type WtControlMessage, activationHintFrom, computeBackoffDelay, createActivityTracker, createClientToken, createInputPresencePublisher, createRecordingsClient, createRuntimeArtifactsClient, createStore, describeSessionFailure, describeSessionPhase, encodeWtControlFrame, isDurationString, isRetryableSessionError, isWakingPhase, normalizeRetention, observePageLifecycle, observePageTeardown, parseDgramHeader, sessionFailureFromMediaError, sharedCaptureController, videoStream, whenLive, writeDgramHeader };
|
|
1043
|
+
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, 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, 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 };
|