farvex 0.1.0 → 0.2.0
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/CHANGELOG.md +22 -0
- package/README.md +136 -50
- package/dist/core/index.cjs +2912 -3
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +1416 -2
- package/dist/core/index.d.ts +1416 -2
- package/dist/core/index.js +2899 -3
- package/dist/core/index.js.map +1 -1
- package/dist/index.cjs +2900 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2893 -3
- package/dist/index.js.map +1 -1
- package/dist/livekit/index.cjs +105 -0
- package/dist/livekit/index.cjs.map +1 -0
- package/dist/livekit/index.d.cts +2 -0
- package/dist/livekit/index.d.ts +2 -0
- package/dist/livekit/index.js +4 -0
- package/dist/livekit/index.js.map +1 -0
- package/dist/mock/index.cjs +3267 -0
- package/dist/mock/index.cjs.map +1 -0
- package/dist/mock/index.d.cts +31 -0
- package/dist/mock/index.d.ts +31 -0
- package/dist/mock/index.js +3263 -0
- package/dist/mock/index.js.map +1 -0
- package/dist/react/index.cjs +3315 -3
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +87 -2
- package/dist/react/index.d.ts +87 -2
- package/dist/react/index.js +3297 -3
- package/dist/react/index.js.map +1 -1
- package/package.json +32 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export { version };
|
|
1
|
+
export { AuthConfig, CallpadClient, CallpadConfig, CallpadError, CallpadErrorIssue, CallpadErrorKind, CallpadPlugin, ClientEventMap, ClientStatus, ConnectionQualityLabel, CreateSessionBody, CreateSessionTarget, Dispatch, Invite, InviteAcceptHandler, InviteState, Logger, Nullable, Participant, ParticipantMediaState, PluginContext, PluginHandle, PresenceRef, PresenceSnapshot, PulseConnectGrant, Recording, RecordingView, Result, Session, SessionAccessRef, SessionChannel, SessionDirection, SessionDispatchSource, SessionDispatchState, SessionDispatchStrategy, SessionDispatchView, SessionEndReason, SessionEventMap, SessionInviteView, SessionJoinGrant, SessionMediaStatus, SessionMediaType, SessionPage, SessionParticipantCapability, SessionParticipantFailureReason, SessionParticipantLeftReason, SessionPartyInfo, SessionRecordingTarget, SessionRouteContext, SessionSipLegFailureReason, SessionState, SessionView, TelephonyLeg, Unsubscribe, callpadError, createCallpadClient, err, isErr, isOk, noopLogger, ok } from './core/index.cjs';
|
|
2
|
+
import 'livekit-client';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export { version };
|
|
1
|
+
export { AuthConfig, CallpadClient, CallpadConfig, CallpadError, CallpadErrorIssue, CallpadErrorKind, CallpadPlugin, ClientEventMap, ClientStatus, ConnectionQualityLabel, CreateSessionBody, CreateSessionTarget, Dispatch, Invite, InviteAcceptHandler, InviteState, Logger, Nullable, Participant, ParticipantMediaState, PluginContext, PluginHandle, PresenceRef, PresenceSnapshot, PulseConnectGrant, Recording, RecordingView, Result, Session, SessionAccessRef, SessionChannel, SessionDirection, SessionDispatchSource, SessionDispatchState, SessionDispatchStrategy, SessionDispatchView, SessionEndReason, SessionEventMap, SessionInviteView, SessionJoinGrant, SessionMediaStatus, SessionMediaType, SessionPage, SessionParticipantCapability, SessionParticipantFailureReason, SessionParticipantLeftReason, SessionPartyInfo, SessionRecordingTarget, SessionRouteContext, SessionSipLegFailureReason, SessionState, SessionView, TelephonyLeg, Unsubscribe, callpadError, createCallpadClient, err, isErr, isOk, noopLogger, ok } from './core/index.js';
|
|
2
|
+
import 'livekit-client';
|