diff --git a/CHANGELOG.md b/CHANGELOG.md index c19731c..a60a6a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [1.1.4](https://github.com/sendbird/sendbird-calls-sdk-react-native/compare/v1.1.3...v1.1.4) (2024-11-07) + ## [1.1.3](https://github.com/sendbird/sendbird-calls-sdk-react-native/compare/v1.1.1...v1.1.3) (2024-10-25) diff --git a/CHANGELOG_DRAFT.md b/CHANGELOG_DRAFT.md index 7b0e567..4359bef 100644 --- a/CHANGELOG_DRAFT.md +++ b/CHANGELOG_DRAFT.md @@ -1,3 +1,3 @@ -## v1.1.3 +## v1.1.4 -- Added `DirectCall.resumeVideoCapturer()` and `LocalParticipant.resumeVideoCapturer()` methods to Android. +- Fixed a bug where modules were not properly installed in the Android new architecture environment. It now works properly in the interop layer. diff --git a/docs/classes/DirectCall.html b/docs/classes/DirectCall.html index 6974502..f9d78fe 100644 --- a/docs/classes/DirectCall.html +++ b/docs/classes/DirectCall.html @@ -1,122 +1,122 @@ -DirectCall | @sendbird/calls-react-native
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DirectCall

Implements

Index

Constructors

Accessors

Accessors

  • get videoViewId(): number

Methods

  • UNSAFE_componentWillMount(): void
  • +

Accessors

  • get videoViewId(): number

Methods

  • UNSAFE_componentWillMount(): void
  • Called immediately before mounting occurs, and before Component#render. Avoid introducing any side-effects or subscriptions in this method.

    This method will not stop working in React 17.

    @@ -85,7 +85,7 @@ things such as scroll position before render causes changes to it.

    Note: the presence of getSnapshotBeforeUpdate prevents any of the deprecated lifecycle events from running.

    -

    Parameters

    Returns any

  • render(): Element
  • setState<K>(state: null | {} | ((prevState: Readonly<{}>, props: Readonly<DirectCallVideoViewProps>) => null | {} | Pick<{}, K>) | Pick<{}, K>, callback?: (() => void)): void
  • Type Parameters

    • K extends never

    Parameters

    • state: null | {} | ((prevState: Readonly<{}>, props: Readonly<DirectCallVideoViewProps>) => null | {} | Pick<{}, K>) | Pick<{}, K>
    • Optional callback: (() => void)
        • (): void
        • Returns void

    Returns void

  • shouldComponentUpdate(nextProps: Readonly<DirectCallVideoViewProps>, nextState: Readonly<{}>, nextContext: any): boolean
  • +

    Parameters

    Returns any

  • render(): Element
  • setState<K>(state: null | {} | ((prevState: Readonly<{}>, props: Readonly<DirectCallVideoViewProps>) => null | {} | Pick<{}, K>) | Pick<{}, K>, callback?: (() => void)): void
  • Type Parameters

    • K extends never

    Parameters

    • state: null | {} | ((prevState: Readonly<{}>, props: Readonly<DirectCallVideoViewProps>) => null | {} | Pick<{}, K>) | Pick<{}, K>
    • Optional callback: (() => void)
        • (): void
        • Returns void

    Returns void

  • shouldComponentUpdate(nextProps: Readonly<DirectCallVideoViewProps>, nextState: Readonly<{}>, nextContext: any): boolean
  • Called to determine whether the change in props and state should trigger a re-render.

    Component always returns true. PureComponent implements a shallow comparison on props and state and returns true if any diff --git a/docs/classes/GroupCallVideoView.html b/docs/classes/GroupCallVideoView.html index b7c4259..22f51d2 100644 --- a/docs/classes/GroupCallVideoView.html +++ b/docs/classes/GroupCallVideoView.html @@ -13,7 +13,7 @@

    type MyContext = number
    const Ctx = React.createContext<MyContext>(0)

    class Foo extends React.Component {
    static contextType = Ctx
    context!: React.ContextType<typeof Ctx>
    render () {
    return <>My context's value: {this.context}</>;
    }
    }
    see

    https://react.dev/reference/react/Component#static-contexttype

    -

Accessors

  • get videoViewId(): number

Methods

  • UNSAFE_componentWillMount(): void
  • +

Accessors

  • get videoViewId(): number

Methods

  • UNSAFE_componentWillMount(): void
  • Called immediately before mounting occurs, and before Component#render. Avoid introducing any side-effects or subscriptions in this method.

    This method will not stop working in React 17.

    @@ -85,7 +85,7 @@ things such as scroll position before render causes changes to it.

    Note: the presence of getSnapshotBeforeUpdate prevents any of the deprecated lifecycle events from running.

    -

    Parameters

    Returns any

  • render(): Element
  • setState<K>(state: null | {} | ((prevState: Readonly<{}>, props: Readonly<GroupCallVideoViewProps>) => null | {} | Pick<{}, K>) | Pick<{}, K>, callback?: (() => void)): void
  • Type Parameters

    • K extends never

    Parameters

    • state: null | {} | ((prevState: Readonly<{}>, props: Readonly<GroupCallVideoViewProps>) => null | {} | Pick<{}, K>) | Pick<{}, K>
    • Optional callback: (() => void)
        • (): void
        • Returns void

    Returns void

  • shouldComponentUpdate(nextProps: Readonly<GroupCallVideoViewProps>, nextState: Readonly<{}>, nextContext: any): boolean
  • +

    Parameters

    Returns any

  • render(): Element
  • setState<K>(state: null | {} | ((prevState: Readonly<{}>, props: Readonly<GroupCallVideoViewProps>) => null | {} | Pick<{}, K>) | Pick<{}, K>, callback?: (() => void)): void
  • Type Parameters

    • K extends never

    Parameters

    • state: null | {} | ((prevState: Readonly<{}>, props: Readonly<GroupCallVideoViewProps>) => null | {} | Pick<{}, K>) | Pick<{}, K>
    • Optional callback: (() => void)
        • (): void
        • Returns void

    Returns void

  • shouldComponentUpdate(nextProps: Readonly<GroupCallVideoViewProps>, nextState: Readonly<{}>, nextContext: any): boolean
onTouchCancel?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

onTouchEnd?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

onTouchEndCapture?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

onTouchMove?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

onTouchStart?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

participant?: Participant
pointerEvents?: "box-none" | "none" | "box-only" | "auto"
+

Parameters

  • event: GestureResponderEvent

Returns boolean

onTouchCancel?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

onTouchEnd?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

onTouchEndCapture?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

onTouchMove?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

onTouchStart?: ((event: GestureResponderEvent) => void)

Type declaration

    • (event: GestureResponderEvent): void
    • Parameters

      • event: GestureResponderEvent

      Returns void

participant?: Participant
pointerEvents?: "box-none" | "none" | "box-only" | "auto"

In the absence of auto property, none is much like CSS's none value. box-none is as if you had applied the CSS class:

.box-none { pointer-events: none; @@ -159,7 +159,7 @@

On Android, this is useful for animations and interactions that only modify opacity, rotation, translation, and/or scale: in those cases, the view doesn't have to be redrawn and display lists don't need to be re-executed. The texture can just be re-used and re-composited with different parameters. The downside is that this can use up limited video memory, so this prop should be set back to false at the end of the interaction/animation.

-
resizeMode?: "contain" | "cover" | "center"
roomId?: string
shouldRasterizeIOS?: boolean
+
resizeMode?: "contain" | "cover" | "center"
roomId?: string
shouldRasterizeIOS?: boolean

Whether this view should be rendered as a bitmap before compositing.

On iOS, this is useful for animations and interactions that do not modify this component's dimensions nor its children; for example, when translating the position of a static view, rasterization allows the renderer to reuse a cached bitmap of a static view diff --git a/docs/interfaces/NativeCommonModule.html b/docs/interfaces/NativeCommonModule.html index 2349d7f..f0a3b80 100644 --- a/docs/interfaces/NativeCommonModule.html +++ b/docs/interfaces/NativeCommonModule.html @@ -1,5 +1,5 @@ -NativeCommonModule | @sendbird/calls-react-native

Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

applicationId: string
currentUser: null | User

Methods

  • addDirectCallSound(type: SoundType, fileName: string): void
  • deauthenticate(): Promise<void>
  • getCurrentUser(): Promise<null | User>
  • handleFirebaseMessageData(data: Record<string, string>): void
  • initialize(appId: string): boolean
  • registerPushToken(token: string, unique?: boolean): Promise<void>
  • registerVoIPPushToken(token: string, unique?: boolean): Promise<void>
  • routePickerView(): void
  • setDirectCallDialingSoundOnWhenSilentOrVibrateMode(enabled: boolean): void
  • setLoggerLevel(level: "none" | "error" | "warning" | "info"): void
  • unregisterPushToken(token: string): Promise<void>
  • unregisterVoIPPushToken(token: string): Promise<void>
  • onCustomItemsDeleted(deletedKeys: string[]): void
  • Called when the custom items of the call are deleted.

    since

    1.0.0

    -

    Parameters

    • deletedKeys: string[]

    Returns void

  • onCustomItemsUpdated(updatedKeys: string[]): void
  • onCustomItemsUpdated(updatedKeys: string[]): void
  • Called when the custom items of the call are updated.

    since

    1.0.0

    -

    Parameters

    • updatedKeys: string[]

    Returns void

  • onDeleted(): void
  • onDeleted(): void
  • onLocalParticipantDisconnected(participant: Participant): void
  • onLocalParticipantDisconnected(participant: Participant): void
  • Called when the local participant's connection with the server has been interrupted.

    since

    1.1.0

    -

    Parameters

    Returns void

  • onLocalParticipantReconnected(participant: Participant): void
  • onLocalParticipantReconnected(participant: Participant): void
  • Called when the local participant's connection with the server has been established.

    since

    1.1.0

    -

    Parameters

    Returns void

  • onRemoteAudioSettingsChanged(participant: Participant): void
  • onRemoteAudioSettingsChanged(participant: Participant): void
  • onRemoteParticipantEntered(participant: Participant): void
  • onRemoteParticipantEntered(participant: Participant): void
  • onRemoteParticipantExited(participant: Participant): void
  • onRemoteParticipantExited(participant: Participant): void
  • onRemoteParticipantStreamStarted(participant: Participant): void
  • onRemoteParticipantStreamStarted(participant: Participant): void
  • onRemoteVideoSettingsChanged(participant: Participant): void
  • onRemoteVideoSettingsChanged(participant: Participant): void

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Inherited constructor
  • Inherited method
  • Static property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/RoomProperties.html b/docs/interfaces/RoomProperties.html index 76d31f9..cdd7c5f 100644 --- a/docs/interfaces/RoomProperties.html +++ b/docs/interfaces/RoomProperties.html @@ -1,36 +1,36 @@ -RoomProperties | @sendbird/calls-react-native
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RoomProperties

Implemented by

Index

Properties

android_availableAudioDevices: AudioDeviceType[]
+RoomProperties | @sendbird/calls-react-native
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RoomProperties

Implemented by

Index

Properties

android_availableAudioDevices: AudioDeviceType[]

Gets available audio devices.

platform

Android

since

1.0.0

-
android_currentAudioDevice: null | AudioDeviceType
+
android_currentAudioDevice: null | AudioDeviceType

Gets current audio device.

platform

Android

since

1.0.0

-
createdAt: number
+
createdAt: number

Gets createdAt that is a timestamp of creating the room.

since

1.0.0

-
createdBy: string
+
createdBy: string

Gets user ID created the room.

since

1.0.0

-
customItems: Record<string, string>
+
customItems: Record<string, string>

Gets custom items of this Room instance.

since

1.0.0

-
localParticipant: null | ParticipantProperties
+
localParticipant: null | ParticipantProperties

Gets the local participant.

since

1.0.0

-
participants: ParticipantProperties[]
+
participants: ParticipantProperties[]

Gets a list of participants who entered the room.

since

1.0.0

-
remoteParticipants: ParticipantProperties[]
+
remoteParticipants: ParticipantProperties[]

Gets a list of remote participants who entered the room.

since

1.0.0

-
roomId: string
+
roomId: string

Gets room ID.

since

1.0.0

-
state: RoomState
+
state: RoomState

Gets state of room.

since

1.0.0

-
type: RoomType
+
type: RoomType

Gets type of room.

since

1.0.0

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Inherited constructor
  • Inherited method
  • Static property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/SendbirdCallListener.html b/docs/interfaces/SendbirdCallListener.html index f906724..fb9f465 100644 --- a/docs/interfaces/SendbirdCallListener.html +++ b/docs/interfaces/SendbirdCallListener.html @@ -1,4 +1,4 @@ -SendbirdCallListener | @sendbird/calls-react-native
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • SendbirdCallListener

Index

Methods

Methods

  • +SendbirdCallListener | @sendbird/calls-react-native
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Hierarchy

    • SendbirdCallListener

    Index

    Methods

    Methods

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method
    • Inherited constructor
    • Inherited method
    • Static property

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/SendbirdCallsJavascriptSpec.html b/docs/interfaces/SendbirdCallsJavascriptSpec.html index 7619bf0..6ffeac8 100644 --- a/docs/interfaces/SendbirdCallsJavascriptSpec.html +++ b/docs/interfaces/SendbirdCallsJavascriptSpec.html @@ -2,8 +2,8 @@

    Parameters

    • data: Record<string, string>

    Returns void

applicationId: string
authenticate: ((authParams: AuthenticateParams) => Promise<User>)

Type declaration

createRoom: ((roomParams: RoomParams) => Promise<RoomProperties>)

Type declaration

currentUser: null | User
deauthenticate: (() => Promise<void>)

Type declaration

    • (): Promise<void>
    • Returns Promise<void>

dial: ((calleeUserId: string, isVideoCall: boolean, options: CallOptions) => Promise<DirectCallProperties>)

Type declaration

fetchRoomById: ((roomId: string) => Promise<RoomProperties>)

Type declaration

getCachedRoomById: ((roomId: string) => Promise<null | RoomProperties>)

Type declaration

getCurrentUser: (() => Promise<null | User>)

Type declaration

    • (): Promise<null | User>
    • Returns Promise<null | User>

getDirectCall: ((callId: string) => Promise<DirectCallProperties>)

Type declaration

getOngoingCalls: (() => Promise<DirectCallProperties[]>)

Type declaration

initialize: ((appId: string) => boolean)

Type declaration

    • (appId: string): boolean
    • Parameters

      • appId: string

      Returns boolean

ios_registerVoIPPushToken: ((token: string, unique?: boolean) => Promise<void>)

Type declaration

    • (token: string, unique?: boolean): Promise<void>
    • platform

      iOS

      Parameters

      • token: string
      • Optional unique: boolean

      Returns Promise<void>

ios_routePickerView: (() => void)

Type declaration

    • (): void
    • platform

      iOS

      Returns void

ios_unregisterVoIPPushToken: ((token: string) => Promise<void>)

Type declaration

    • (token: string): Promise<void>
    • platform

      iOS

      -

      Parameters

      • token: string

      Returns Promise<void>

registerPushToken: ((token: string, unique?: boolean) => Promise<void>)

Type declaration

    • (token: string, unique?: boolean): Promise<void>
    • Parameters

      • token: string
      • Optional unique: boolean

      Returns Promise<void>

removeDirectCallSound: ((type: SoundType) => void)

Type declaration

setDirectCallDialingSoundOnWhenSilentOrVibrateMode: ((enabled: boolean) => void)

Type declaration

    • (enabled: boolean): void
    • Parameters

      • enabled: boolean

      Returns void

setLoggerLevel: ((level: "none" | "error" | "warning" | "info") => void)

Type declaration

    • (level: "none" | "error" | "warning" | "info"): void
    • Parameters

      • level: "none" | "error" | "warning" | "info"

      Returns void

unregisterPushToken: ((token: string) => Promise<void>)

Type declaration

    • (token: string): Promise<void>
    • Parameters

      • token: string

      Returns Promise<void>

Methods

registerPushToken: ((token: string, unique?: boolean) => Promise<void>)

Type declaration

    • (token: string, unique?: boolean): Promise<void>
    • Parameters

      • token: string
      • Optional unique: boolean

      Returns Promise<void>

removeDirectCallSound: ((type: SoundType) => void)

Type declaration

setDirectCallDialingSoundOnWhenSilentOrVibrateMode: ((enabled: boolean) => void)

Type declaration

    • (enabled: boolean): void
    • Parameters

      • enabled: boolean

      Returns void

setLoggerLevel: ((level: "none" | "error" | "warning" | "info") => void)

Type declaration

    • (level: "none" | "error" | "warning" | "info"): void
    • Parameters

      • level: "none" | "error" | "warning" | "info"

      Returns void

unregisterPushToken: ((token: string) => Promise<void>)

Type declaration

    • (token: string): Promise<void>
    • Parameters

      • token: string

      Returns Promise<void>

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/SendbirdCallsNativeSpec.html b/docs/interfaces/SendbirdCallsNativeSpec.html index 4836481..628bd03 100644 --- a/docs/interfaces/SendbirdCallsNativeSpec.html +++ b/docs/interfaces/SendbirdCallsNativeSpec.html @@ -1,17 +1,17 @@ -SendbirdCallsNativeSpec | @sendbird/calls-react-native
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface SendbirdCallsNativeSpec

Hierarchy

Index

Properties

applicationId: string
createDirectCallLogListQuery: NativeQueryCreator<DirectCallLogQueryParams>
currentUser: null | User

Methods

  • accept(callId: string, options: CallOptions, holdActiveCall: boolean): Promise<void>
  • addDirectCallSound(type: SoundType, fileName: string): void
  • addListener(eventType: string): void
  • deauthenticate(): Promise<void>
  • end(callId: string): Promise<void>
  • enter(roomId: string, options: EnterParams): Promise<void>
  • exit(roomId: string): void
  • getConstants(): {}
  • Returns {}

    • getCurrentUser(): Promise<null | User>
    • handleFirebaseMessageData(data: Record<string, string>): void
    • initialize(appId: string): boolean
    • queryRelease(key: `native#${string}`): void
    • registerPushToken(token: string, unique?: boolean): Promise<void>
    • registerVoIPPushToken(token: string, unique?: boolean): Promise<void>
    • removeListeners(count: number): void
    • Remove a specified number of events. There are no eventTypes in this case, as the native side doesn't remove the name, but only manages a counter of total listeners

      Parameters

      • count: number

        number of listeners to remove (of any type)

        -

      Returns void

    • routePickerView(): void
    • setDirectCallDialingSoundOnWhenSilentOrVibrateMode(enabled: boolean): void
    • setLoggerLevel(level: "none" | "error" | "warning" | "info"): void
    • unregisterPushToken(token: string): Promise<void>
    • unregisterVoIPPushToken(token: string): Promise<void>
    • updateLocalVideoView(callId: string, videoViewId: number): void
    • updateRemoteVideoView(callId: string, videoViewId: number): void

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/User.html b/docs/interfaces/User.html index cf23e82..f232a3d 100644 --- a/docs/interfaces/User.html +++ b/docs/interfaces/User.html @@ -1 +1 @@ -User | @sendbird/calls-react-native
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Hierarchy

    Index

    Properties

    isActive: boolean
    metaData: Record<string, string>
    nickname: string
    profileUrl: string
    userId: string

    Generated using TypeDoc

    \ No newline at end of file +User | @sendbird/calls-react-native
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Hierarchy

    Index

    Properties

    isActive: boolean
    metaData: Record<string, string>
    nickname: string
    profileUrl: string
    userId: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/VideoDevice.html b/docs/interfaces/VideoDevice.html index b4491ff..7889aa9 100644 --- a/docs/interfaces/VideoDevice.html +++ b/docs/interfaces/VideoDevice.html @@ -1,5 +1,5 @@ -VideoDevice | @sendbird/calls-react-native
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Hierarchy

    • VideoDevice

    Index

    Properties

    deviceId: string
    +VideoDevice | @sendbird/calls-react-native
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Hierarchy

    • VideoDevice

    Index

    Properties

    deviceId: string

    device id

    android

    deviceName

    ios

    uniqueId

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method
    • Inherited constructor
    • Inherited method
    • Static property

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html index 95a49f2..b309eb3 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -1,12 +1,12 @@ -@sendbird/calls-react-native
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    @sendbird/calls-react-native

    Index

    Type Aliases

    AudioDevice: AudioDeviceType
    AudioDeviceChangedInfo: { data: { availableAudioDevices: AudioDevice[] | null; currentAudioDevice: AudioDevice | null }; platform: "android" } | { data: { currentRoute: AudioDeviceRoute; previousRoute: AudioDeviceRoute; reason: RouteChangeReason }; platform: "ios" }
    AudioDeviceRoute: { inputs: Port[]; outputs: Port[] }

    Type declaration

    CallOptions: { audioEnabled?: boolean; channelUrl?: string; frontCamera?: boolean; localVideoViewId?: number; remoteVideoViewId?: number; videoEnabled?: boolean }

    Type declaration

    JSMediaDeviceControl: AsJSMediaDeviceControl<NativeMediaDeviceControl>
    LocalParticipantMethods: AsJSInterface<JSLocalParticipantMediaDeviceControl, "android", "resumeVideoCapturer">
    NativeConstants: { NATIVE_SDK_VERSION: string }

    Type declaration

    • NATIVE_SDK_VERSION: string
    NativeQueryCreator<QueryParams>: ((params: QueryParams) => Promise<`native#${string}`>)

    Type Parameters

    • QueryParams

    Type declaration

      • (params: QueryParams): Promise<`native#${string}`>
      • Parameters

        • params: QueryParams

        Returns Promise<`native#${string}`>

    NativeQueryKey: `native#${string}`
    NativeQueryResult<T>: Promise<{ hasNext: boolean; result: T[] }>

    Type Parameters

    • T

    Port: { name: string; type: AVAudioSessionPort }

    Type declaration

    Range: { lowerBound?: number; upperBound?: number }

    Type declaration

    • Optional lowerBound?: number
    • Optional upperBound?: number
    RecordingOptions: { directoryPath: string; fileName?: string; recordingType: RecordingType }

    Type declaration

    • directoryPath: string

      Used to specify the base directory path of where the recorded file will be saved

    • Optional fileName?: string

      Used to specify a name of the recorded file. If unspecified, it will be saved as {type}_{callId}_{timestamp}.

      -
    • recordingType: RecordingType
    RoomListQueryParams: { createdAt?: Range; createdByUserIds?: string[]; currentParticipantCount?: Range; limit?: number; roomIds?: string[]; state?: RoomState; type?: RoomType }

    Type declaration

    • Optional createdAt?: Range
    • Optional createdByUserIds?: string[]
    • Optional currentParticipantCount?: Range
    • Optional limit?: number
    • Optional roomIds?: string[]
    • Optional state?: RoomState
    • Optional type?: RoomType
    RoomParams: { roomType: RoomType }

    Type declaration

    Variables

    Logger: { error: any; getLogLevel: any; info: any; setLogLevel: any; setTitle: any; warn: any } = ...

    Type declaration

    • error:function
      • error(...args: unknown[]): number
    • getLogLevel:function
      • getLogLevel(): "none" | "error" | "warning" | "info"
    • info:function
      • info(...args: unknown[]): number
    • setLogLevel:function
      • setLogLevel(lv: "none" | "error" | "warning" | "info"): void
    • setTitle:function
      • setTitle(title: string): void
    • warn:function
      • warn(...args: unknown[]): number
    SendbirdCalls: SendbirdCallsModule = ...

    Generated using TypeDoc

    \ No newline at end of file +
  • recordingType: RecordingType
  • RoomListQueryParams: { createdAt?: Range; createdByUserIds?: string[]; currentParticipantCount?: Range; limit?: number; roomIds?: string[]; state?: RoomState; type?: RoomType }

    Type declaration

    RoomParams: { roomType: RoomType }

    Type declaration

    Variables

    Logger: { error: any; getLogLevel: any; info: any; setLogLevel: any; setTitle: any; warn: any } = ...

    Type declaration

    • error:function
      • error(...args: unknown[]): number
    • getLogLevel:function
      • getLogLevel(): "none" | "error" | "warning" | "info"
    • info:function
      • info(...args: unknown[]): number
    • setLogLevel:function
      • setLogLevel(lv: "none" | "error" | "warning" | "info"): void
    • setTitle:function
      • setTitle(title: string): void
    • warn:function
      • warn(...args: unknown[]): number
    SendbirdCalls: SendbirdCallsModule = ...

    Generated using TypeDoc

    \ No newline at end of file diff --git a/package.json b/package.json index 9e1831a..85b1257 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sendbird/calls-react-native", - "version": "1.1.3", + "version": "1.1.4", "description": "Sendbird Calls SDK for React Native: Empower React Native apps with seamless audio, video, and group calling. Build interactive communication easily.", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/sample/ios/Podfile.lock b/sample/ios/Podfile.lock index cff56c1..3deb4cf 100644 --- a/sample/ios/Podfile.lock +++ b/sample/ios/Podfile.lock @@ -385,7 +385,7 @@ PODS: - React-RCTImage - RNVoipPushNotification (3.3.0): - React-Core - - sendbird-calls-react-native (1.1.2): + - sendbird-calls-react-native (1.1.3): - React-Core - SendBirdCalls (= 1.10.18) - SendBirdCalls (1.10.18): @@ -607,7 +607,7 @@ SPEC CHECKSUMS: RNPermissions: 34d678157c800b25b22a488e4d8babb57456e796 RNScreens: 40a2cb40a02a609938137a1e0acfbf8fc9eebf19 RNVoipPushNotification: 14bb5a389588ea1cbee4706a55df99950687fd6d - sendbird-calls-react-native: 3d8567491c1847df62f209896113efa3b6492730 + sendbird-calls-react-native: f9ddd1fbef8ff019324283e37f7ea7823e2d230d SendBirdCalls: 653e17821fbd0326a08eab8b777c95f7092e4e95 SendBirdWebRTC: 441cc06f611871544ca7774c76e057708c01027f Yoga: 0bc4b37c3b8a345336ff601e2cf7d9704bab7e93