diff --git a/classes/Client.html b/classes/Client.html index af6fa1dd9..91fc90981 100644 --- a/classes/Client.html +++ b/classes/Client.html @@ -1,4 +1,4 @@ -Client | @xmtp/react-native-sdk

Class Client<ContentTypes>

Type Parameters

  • ContentTypes extends DefaultContentTypes = DefaultContentTypes

Constructors

constructor +Client | @xmtp/react-native-sdk

Class Client<ContentTypes>

Type Parameters

  • ContentTypes extends DefaultContentTypes = DefaultContentTypes

Constructors

Properties

address: string
codecRegistry: {
    [key: string]: ContentCodec<unknown>;
}

Type declaration

contacts: default
conversations: default<ContentTypes>
dbPath: string
inboxId: InboxId
installationId: string

Methods

  • Determines whether the current user can send messages to the specified peers over groups.

    +

Constructors

Properties

address: string
codecRegistry: {
    [key: string]: ContentCodec<unknown>;
}

Type declaration

contacts: default
conversations: default<ContentTypes>
dbPath: string
inboxId: InboxId
installationId: string

Methods

  • Determines whether the current user can send messages to the specified peers over groups.

    This method checks if the specified peers are using clients that support group messaging.

    Parameters

    • addresses: string[]

      The addresses of the peers to check for messaging eligibility.

    Returns Promise<{
        [key: string]: boolean;
    }>

    A Promise resolving to a hash of addresses and booleans if they can message on the V3 network.

    -
  • Determines whether the current user can send messages to a specified peer over 1:1 conversations.

    +
  • Determines whether the current user can send messages to a specified peer over 1:1 conversations.

    This method checks if the specified peer has signed up for XMTP and ensures that the message is not addressed to the sender (no self-messaging).

    Parameters

    • peerAddress: string

      The address of the peer to check for messaging eligibility.

    Returns Promise<boolean>

    A Promise resolving to true if messaging is allowed, and false otherwise.

    -
  • Decrypts an encrypted local attachment.

    This asynchronous method takes an encrypted local attachment and decrypts it.

    Parameters

    Returns Promise<DecryptedLocalAttachment>

    A Promise that resolves to the decrypted local attachment.

    Throws

    Throws an error if the attachment is not a local file URI (must start with "file://").

    -
  • Deletes the local database. This cannot be undone and these stored messages will not be refetched from the network.

    -

    Returns Promise<any>

  • Drop the local database connection. This function is delicate and should be used with caution. App will error if database not properly reconnected. See: reconnectLocalDatabase()

    -

    Returns Promise<any>

  • Deletes the local database. This cannot be undone and these stored messages will not be refetched from the network.

    +

    Returns Promise<any>

  • Drop the local database connection. This function is delicate and should be used with caution. App will error if database not properly reconnected. See: reconnectLocalDatabase()

    +

    Returns Promise<any>

  • Encrypts a local attachment for secure transmission.

    This asynchronous method takes a file, checks if it's a local file URI, and encrypts the attachment for secure transmission.

    Parameters

    Returns Promise<EncryptedLocalAttachment>

    A Promise that resolves to the encrypted local attachment.

    Throws

    Throws an error if the attachment is not a local file URI (must start with "file://").

    -
  • Exports the key bundle associated with the current XMTP address.

    +
  • Exports the key bundle associated with the current XMTP address.

    This method allows you to obtain the unencrypted key bundle for the current XMTP address. Ensure the exported keys are stored securely and encrypted.

    Returns Promise<string>

    A Promise that resolves to the unencrypted key bundle for the current XMTP address.

    -
  • Find the inboxId associated with this address

    +
  • Find the inboxId associated with this address

    Parameters

    • peerAddress: string

      The address of the peer to check for inboxId.

    Returns Promise<undefined | InboxId>

    A Promise resolving to the InboxId.

    -
  • Retrieves a list of batch messages based on the provided queries.

    This method pulls messages associated from multiple conversation with the current address and specified queries.

    Parameters

    • queries: Query[]

      An array of queries to filter the batch messages.

    Returns Promise<DecodedMessage<ContentTypes>[]>

    A Promise that resolves to a list of batch messages.

    Throws

    The error is logged, and the method gracefully returns an empty array.

    -
  • Reconnects the local database after being dropped.

    -

    Returns Promise<any>

  • Make a request for a message history sync.

    -

    Returns Promise<any>

  • Sends a prepared message.

    +
  • Reconnects the local database after being dropped.

    +

    Returns Promise<any>

  • Make a request for a message history sync.

    +

    Returns Promise<any>

  • Sends a prepared message.

    Parameters

    Returns Promise<string>

    A Promise that resolves to a string identifier for the sent message.

    Throws

    Throws an error if there is an issue with sending the prepared message.

    -
  • Parameters

    • digest: Uint8Array
    • keyType: KeyType

    Returns Promise<Uint8Array>

  • Static method to determine if the address is currently in our network.

    +
  • Parameters

    • digest: Uint8Array
    • keyType: KeyType

    Returns Promise<Uint8Array>

  • Static method to determine if the address is currently in our network.

    This method checks if the specified peer has signed up for XMTP.

    Parameters

    • peerAddress: string

      The address of the peer to check for messaging eligibility.

    • Optional opts: Partial<ClientOptions>

      Optional configuration options for the Client.

      -

    Returns Promise<boolean>

Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +

Returns Promise<InboxId>

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/ConsentListEntry.html b/classes/ConsentListEntry.html index e9ad7a39b..c2d91bd94 100644 --- a/classes/ConsentListEntry.html +++ b/classes/ConsentListEntry.html @@ -1,6 +1,6 @@ -ConsentListEntry | @xmtp/react-native-sdk

Constructors

constructor +ConsentListEntry | @xmtp/react-native-sdk

Constructors

Properties

Methods

Constructors

Properties

entryType: ConsentListEntryType
permissionType: ConsentState
value: string

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

entryType: ConsentListEntryType
permissionType: ConsentState
value: string

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/Conversation.html b/classes/Conversation.html index e34f72399..094781fb0 100644 --- a/classes/Conversation.html +++ b/classes/Conversation.html @@ -1,4 +1,4 @@ -Conversation | @xmtp/react-native-sdk

Class Conversation<ContentTypes>

Type Parameters

  • ContentTypes extends DefaultContentTypes

Implements

Constructors

constructor +Conversation | @xmtp/react-native-sdk

Class Conversation<ContentTypes>

Type Parameters

  • ContentTypes extends DefaultContentTypes

Implements

Constructors

Properties

Constructors

Properties

consentProof?: ConsentProofPayload

Proof of consent for the conversation, used when a user is subscribing to broadcasts.

-
conversationID?: string
createdAt: number
keyMaterial?: string

Base64 encoded key material for the conversation.

-
peerAddress: string
topic: string
version: ConversationVersion = ConversationVersion.DIRECT

Methods

  • Retrieves the consent state for the current conversation.

    +

Constructors

Properties

consentProof?: ConsentProofPayload

Proof of consent for the conversation, used when a user is subscribing to broadcasts.

+
conversationID?: string
createdAt: number
keyMaterial?: string

Base64 encoded key material for the conversation.

+
peerAddress: string
topic: string
version: ConversationVersion = ConversationVersion.DIRECT

Methods

  • Retrieves the consent state for the current conversation.

    This asynchronous method determine the consent state for the current conversation, indicating whether the user has allowed, denied, or is yet to provide consent.

    Returns Promise<"allowed" | "denied" | "unknown">

    A Promise that resolves to the consent state, which can be "allowed," "denied," or "unknown."

    -
  • Decodes an encrypted message, yielding a DecodedMessage object.

    This asynchronous method takes an encrypted message and decodes it. The result is a DecodedMessage object containing the decoded content and metadata.

    Parameters

    • encryptedMessage: string

      The encrypted message to be decoded.

    Returns Promise<DecodedMessage<ContentTypes>>

    A Promise that resolves to a DecodedMessage object.

    Throws

    Throws an error if there is an issue with decoding the message.

    -
  • Lists messages in a conversation with optional filters.

    Parameters

    • Optional limit: number

      Optional limit to the number of messages to return.

    • Optional before: number | Date

      Optional timestamp to filter messages before.

    • Optional after: number | Date

      Optional timestamp to filter messages after.

      @@ -37,7 +37,7 @@

    Returns Promise<DecodedMessage<ContentTypes>[]>

    A Promise that resolves to an array of decoded messages.

    Throws

    Throws an error if there is an issue with listing messages.

    Todo

    Support pagination and conversation ID in future implementations.

    -
  • Prepares a message to be sent, yielding a PreparedLocalMessage object.

    Instead of immediately sending a message, you can prepare it first using this method. This yields a PreparedLocalMessage object, which you can send later. This is useful to help construct a robust pending-message queue @@ -47,21 +47,21 @@

    Todo

    Support pagination and conversation ID in future implementations

    Type Parameters

    • PrepareContentTypes extends DefaultContentTypes = ContentTypes

    Parameters

    • content: ConversationSendPayload<PrepareContentTypes>

      The content of the message. It can be either a string or a structured MessageContent object.

    • Optional opts: SendOptions

    Returns Promise<PreparedLocalMessage>

    A Promise that resolves to a PreparedLocalMessage object.

    Throws

    Throws an error if there is an issue with preparing the message.

    -
  • Sends a message to the current conversation.

    Type Parameters

    Parameters

    • content: ConversationSendPayload<SendContentTypes>

      The content of the message. It can be either a string or a structured MessageContent object.

    • Optional opts: SendOptions

    Returns Promise<string>

    A Promise that resolves to a string identifier for the sent message.

    Throws

    Throws an error if there is an issue with sending the message.

    Todo

    Support specifying a conversation ID in future implementations.

    -
  • Sends a prepared local message.

    This asynchronous method takes a PreparedLocalMessage and sends it. Prepared messages are created using the prepareMessage method.

    Parameters

    Returns Promise<string>

    A Promise that resolves to a string identifier for the sent message.

    Throws

    Throws an error if there is an issue with sending the prepared message.

    -
  • Sets up a real-time message stream for the current conversation.

    +
  • Sets up a real-time message stream for the current conversation.

    This method subscribes to incoming messages in real-time and listens for new message events. When a new message is detected, the provided callback function is invoked with the details of the message. Additionally, this method returns a function that can be called to unsubscribe and end the message stream.

    Parameters

    • callback: ((message) => Promise<void>)

      A callback function that will be invoked with the new DecodedMessage when a message is received.

    Returns Promise<(() => void)>

    A function that, when called, unsubscribes from the message stream and ends real-time updates.

    -

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/DecodedMessage.html b/classes/DecodedMessage.html index 9177366c0..196b24335 100644 --- a/classes/DecodedMessage.html +++ b/classes/DecodedMessage.html @@ -1,4 +1,4 @@ -DecodedMessage | @xmtp/react-native-sdk

Class DecodedMessage<ContentTypes>

Type Parameters

  • ContentTypes extends DefaultContentTypes = DefaultContentTypes

Constructors

constructor +DecodedMessage | @xmtp/react-native-sdk

Class DecodedMessage<ContentTypes>

Type Parameters

  • ContentTypes extends DefaultContentTypes = DefaultContentTypes

Constructors

Properties

Methods

Constructors

Properties

contentTypeId: string
deliveryStatus: MessageDeliveryStatus = MessageDeliveryStatus.PUBLISHED
fallback: undefined | string
id: string
nativeContent: NativeMessageContent
senderAddress: string
sent: number
topic: string

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

contentTypeId: string
deliveryStatus: MessageDeliveryStatus = MessageDeliveryStatus.PUBLISHED
fallback: undefined | string
id: string
nativeContent: NativeMessageContent
senderAddress: string
sent: number
topic: string

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/Group.html b/classes/Group.html index 813d5922f..a4471b709 100644 --- a/classes/Group.html +++ b/classes/Group.html @@ -1,4 +1,4 @@ -Group | @xmtp/react-native-sdk

Class Group<ContentTypes>

Type Parameters

  • ContentTypes extends DefaultContentTypes = DefaultContentTypes

Implements

Constructors

constructor +Group | @xmtp/react-native-sdk

Class Group<ContentTypes>

Type Parameters

  • ContentTypes extends DefaultContentTypes = DefaultContentTypes

Implements

Constructors

Properties

addedByInboxId: InboxId
createdAt: number
creatorInboxId: InboxId
description: string
id: string
imageUrlSquare: string
isGroupActive: boolean
members: Member[]
name: string
topic: string
version: ConversationVersion = ConversationVersion.GROUP

Methods

  • Parameters

    Returns Promise<void>

    A Promise that resolves when the inboxId is added to the group admins. +

Constructors

Properties

addedByInboxId: InboxId
createdAt: number
creatorInboxId: InboxId
description: string
id: string
imageUrlSquare: string
isGroupActive: boolean
members: Member[]
name: string
topic: string
version: ConversationVersion = ConversationVersion.GROUP

Methods

  • Parameters

    Returns Promise<void>

    A Promise that resolves when the inboxId is added to the group admins. Will throw if the user does not have the required permissions.

    -
  • Parameters

    • addresses: string[]

      addresses to add to the group

      -

    Returns Promise<void>

  • Parameters

    • inboxIds: InboxId[]

      inboxIds to add to the group

      -

    Returns Promise<void>

  • Parameters

    Returns Promise<void>

    A Promise that resolves when the inboxId is added to the group super admins. +

  • Parameters

    • addresses: string[]

      addresses to add to the group

      +

    Returns Promise<void>

  • Parameters

    • inboxIds: InboxId[]

      inboxIds to add to the group

      +

    Returns Promise<void>

  • Parameters

    Returns Promise<void>

    A Promise that resolves when the inboxId is added to the group super admins. Will throw if the user does not have the required permissions.

    -
  • Returns Promise<"allowed" | "denied" | "unknown">

  • Returns Promise<"allowed" | "denied" | "unknown">

  • Returns the group description. To get the latest group description from the network, call sync() first.

    Returns Promise<string>

    A Promise that resolves to the group description.

    -
  • Returns the group image url square. +

  • Returns the group image url square. To get the latest group image url square from the network, call sync() first.

    Returns Promise<string>

    A Promise that resolves to the group name.

    -
  • Returns the group name. To get the latest group name from the network, call sync() first.

    Returns Promise<string>

    A Promise that resolves to the group name.

    -
  • Returns the group pinned frame. +

  • Returns the group pinned frame. To get the latest group pinned frame url from the network, call sync() first.

    Returns Promise<string>

    A Promise that resolves to the group pinned frame url.

    -
  • Returns whether the group is active. To get the latest active status from the network, call sync() first

    Returns Promise<boolean>

    A Promise that resolves if the group is active or not

    -
  • Parameters

    Returns Promise<boolean>

    whether a given inboxId is an admin of the group. +

  • Parameters

    Returns Promise<boolean>

    whether a given inboxId is an admin of the group. To get the latest admin status from the network, call sync() first.

    -
  • Returns Promise<boolean>

    a boolean indicating whether the group is allowed by the user.

    -
  • Returns Promise<boolean>

    a boolean indicating whether the group is denied by the user.

    -
  • Parameters

    Returns Promise<boolean>

    whether a given inboxId is a super admin of the group. +

  • Returns Promise<boolean>

    a boolean indicating whether the group is allowed by the user.

    +
  • Returns Promise<boolean>

    a boolean indicating whether the group is denied by the user.

    +
  • Parameters

    Returns Promise<boolean>

    whether a given inboxId is a super admin of the group. To get the latest super admin status from the network, call sync() first.

    -
  • Returns Promise<InboxId[]>

    A Promise that resolves to an array of inboxIds that are admins of the group. To get the latest admin list from the network, call sync() first.

    -
  • Returns Promise<InboxId[]>

    A Promise that resolves to an array of inboxIds that are super admins of the group. +

  • Returns Promise<InboxId[]>

    A Promise that resolves to an array of inboxIds that are super admins of the group. To get the latest super admin list from the network, call sync() first.

    -
  • This method returns an array of inbox ids associated with the group. +

  • This method returns an array of inbox ids associated with the group. To get the latest member inbox ids from the network, call sync() first.

    Returns Promise<InboxId[]>

    A Promise that resolves to an array of DecodedMessage objects.

    -
  • Returns Promise<Member[]>

    A Promise that resolves to an array of Member objects. To get the latest member list from the network, call sync() first.

    -
  • This method returns an array of messages associated with the group. To get the latest messages from the network, call sync() first.

    Parameters

    • Optional opts: MessagesOptions

    Returns Promise<DecodedMessage<ContentTypes>[]>

    A Promise that resolves to an array of DecodedMessage objects.

    -
  • Returns Promise<PermissionPolicySet>

    A {PermissionPolicySet} object representing the group's permission policy set.

    -
  • Returns Promise<PermissionPolicySet>

    A {PermissionPolicySet} object representing the group's permission policy set.

    +
  • Prepare a group message to be sent.

    Type Parameters

    Parameters

    • content: ConversationSendPayload<SendContentTypes>

      The content of the message. It can be either a string or a structured MessageContent object.

    • Optional opts: SendOptions

    Returns Promise<string>

    A Promise that resolves to a string identifier for the prepared message to be sent.

    Throws

    Throws an error if there is an issue with sending the message.

    -
  • Publish all prepared messages.

    +
  • Publish all prepared messages.

    Returns Promise<any>

    Throws

    Throws an error if there is an issue finding the unpublished message

    -
  • Parameters

    Returns Promise<void>

    A Promise that resolves when the inboxId is removed from the group admins. +

Returns Promise<void>

Returns Promise<void>

Returns Promise<void>

Returns Promise<void>

Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/GroupUpdatedCodec.html b/classes/GroupUpdatedCodec.html index dfced867a..c76353d19 100644 --- a/classes/GroupUpdatedCodec.html +++ b/classes/GroupUpdatedCodec.html @@ -1,7 +1,7 @@ -GroupUpdatedCodec | @xmtp/react-native-sdk

Implements

Constructors

constructor +GroupUpdatedCodec | @xmtp/react-native-sdk

Implements

Constructors

Properties

Methods

Constructors

Properties

contentKey: "groupUpdated" = 'groupUpdated'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

contentKey: "groupUpdated" = 'groupUpdated'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/Member.html b/classes/Member.html index 3e6a9e406..1b4751121 100644 --- a/classes/Member.html +++ b/classes/Member.html @@ -1,6 +1,6 @@ -Member | @xmtp/react-native-sdk

Constructors

constructor +Member | @xmtp/react-native-sdk

Constructors

Properties

Methods

Constructors

  • Parameters

    • inboxId: InboxId
    • addresses: string[]
    • permissionLevel: "member" | "admin" | "super_admin"

    Returns Member

Properties

addresses: string[]
inboxId: InboxId
permissionLevel: "member" | "admin" | "super_admin"

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

  • Parameters

    • inboxId: InboxId
    • addresses: string[]
    • permissionLevel: "member" | "admin" | "super_admin"

    Returns Member

Properties

addresses: string[]
inboxId: InboxId
permissionLevel: "member" | "admin" | "super_admin"

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/ReactionCodec.html b/classes/ReactionCodec.html index 32f251bf6..dac5208a7 100644 --- a/classes/ReactionCodec.html +++ b/classes/ReactionCodec.html @@ -1,7 +1,7 @@ -ReactionCodec | @xmtp/react-native-sdk

Implements

Constructors

constructor +ReactionCodec | @xmtp/react-native-sdk

Implements

Constructors

Properties

Methods

Constructors

Properties

contentKey: "reaction" = 'reaction'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

contentKey: "reaction" = 'reaction'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/ReadReceiptCodec.html b/classes/ReadReceiptCodec.html index 34606c9c2..6bac47ca8 100644 --- a/classes/ReadReceiptCodec.html +++ b/classes/ReadReceiptCodec.html @@ -1,7 +1,7 @@ -ReadReceiptCodec | @xmtp/react-native-sdk

Implements

Constructors

constructor +ReadReceiptCodec | @xmtp/react-native-sdk

Implements

Constructors

Properties

Methods

Constructors

Properties

contentKey: string = 'readReceipt'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

contentKey: string = 'readReceipt'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/RemoteAttachmentCodec.html b/classes/RemoteAttachmentCodec.html index eae59444b..1f90a0d51 100644 --- a/classes/RemoteAttachmentCodec.html +++ b/classes/RemoteAttachmentCodec.html @@ -1,7 +1,7 @@ -RemoteAttachmentCodec | @xmtp/react-native-sdk

Implements

Constructors

constructor +RemoteAttachmentCodec | @xmtp/react-native-sdk

Implements

Constructors

Properties

Methods

Constructors

Properties

contentKey: "remoteAttachment" = 'remoteAttachment'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

contentKey: "remoteAttachment" = 'remoteAttachment'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/ReplyCodec.html b/classes/ReplyCodec.html index af685c35e..491641047 100644 --- a/classes/ReplyCodec.html +++ b/classes/ReplyCodec.html @@ -1,7 +1,7 @@ -ReplyCodec | @xmtp/react-native-sdk

Implements

Constructors

constructor +ReplyCodec | @xmtp/react-native-sdk

Implements

Constructors

Properties

Methods

Constructors

Properties

contentKey: "reply" = 'reply'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

contentKey: "reply" = 'reply'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/StaticAttachmentCodec.html b/classes/StaticAttachmentCodec.html index 314129b60..46b8f14be 100644 --- a/classes/StaticAttachmentCodec.html +++ b/classes/StaticAttachmentCodec.html @@ -1,7 +1,7 @@ -StaticAttachmentCodec | @xmtp/react-native-sdk

Implements

Constructors

constructor +StaticAttachmentCodec | @xmtp/react-native-sdk

Implements

Constructors

Properties

Methods

Constructors

Properties

contentKey: "attachment" = 'attachment'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

contentKey: "attachment" = 'attachment'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/TextCodec.html b/classes/TextCodec.html index 715ae1800..730086140 100644 --- a/classes/TextCodec.html +++ b/classes/TextCodec.html @@ -1,7 +1,7 @@ -TextCodec | @xmtp/react-native-sdk

Implements

Constructors

constructor +TextCodec | @xmtp/react-native-sdk

Implements

Constructors

Properties

Methods

Constructors

Properties

contentKey: "text" = 'text'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

contentKey: "text" = 'text'
contentType: ContentTypeId = ...

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/XMTPPush.html b/classes/XMTPPush.html index 3e91b053c..56cdcbe2e 100644 --- a/classes/XMTPPush.html +++ b/classes/XMTPPush.html @@ -1,5 +1,5 @@ -XMTPPush | @xmtp/react-native-sdk

Constructors

constructor +XMTPPush | @xmtp/react-native-sdk

Constructors

Properties

Methods

Constructors

Properties

client: Client<any>

Methods

  • Parameters

    • server: string
    • token: string

    Returns void

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

client: Client<any>

Methods

  • Parameters

    • server: string
    • token: string

    Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/enums/ConversationVersion.html b/enums/ConversationVersion.html index 09576b8ae..9ed1253b9 100644 --- a/enums/ConversationVersion.html +++ b/enums/ConversationVersion.html @@ -1,3 +1,3 @@ -ConversationVersion | @xmtp/react-native-sdk

Enumeration ConversationVersion

Enumeration Members

DIRECT +ConversationVersion | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

DIRECT: "DIRECT"
GROUP: "GROUP"

Generated using TypeDoc

\ No newline at end of file diff --git a/enums/MessageDeliveryStatus.html b/enums/MessageDeliveryStatus.html index a7fa590d4..238b82cb8 100644 --- a/enums/MessageDeliveryStatus.html +++ b/enums/MessageDeliveryStatus.html @@ -1,5 +1,5 @@ -MessageDeliveryStatus | @xmtp/react-native-sdk

Enumeration MessageDeliveryStatus

Enumeration Members

ALL +MessageDeliveryStatus | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +

Enumeration Members

ALL: "ALL"
FAILED: "FAILED"
PUBLISHED: "PUBLISHED"
UNPUBLISHED: "UNPUBLISHED"

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/XmtpProvider.html b/functions/XmtpProvider.html index 2f493e31a..fa45f4518 100644 --- a/functions/XmtpProvider.html +++ b/functions/XmtpProvider.html @@ -1 +1 @@ -XmtpProvider | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +XmtpProvider | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/addAdmin.html b/functions/addAdmin.html index 914983c6b..1dd3dfee9 100644 --- a/functions/addAdmin.html +++ b/functions/addAdmin.html @@ -1 +1 @@ -addAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +addAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/addGroupMembers.html b/functions/addGroupMembers.html index 89d4806ad..83c8b7ae7 100644 --- a/functions/addGroupMembers.html +++ b/functions/addGroupMembers.html @@ -1 +1 @@ -addGroupMembers | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string
    • addresses: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +addGroupMembers | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string
    • addresses: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/addGroupMembersByInboxId.html b/functions/addGroupMembersByInboxId.html index 3f799a721..0946ea3df 100644 --- a/functions/addGroupMembersByInboxId.html +++ b/functions/addGroupMembersByInboxId.html @@ -1 +1 @@ -addGroupMembersByInboxId | @xmtp/react-native-sdk

Function addGroupMembersByInboxId

  • Parameters

    • inboxId: string
    • id: string
    • inboxIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +addGroupMembersByInboxId | @xmtp/react-native-sdk

Function addGroupMembersByInboxId

  • Parameters

    • inboxId: string
    • id: string
    • inboxIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/addSuperAdmin.html b/functions/addSuperAdmin.html index cbaf7d03a..90ea800bc 100644 --- a/functions/addSuperAdmin.html +++ b/functions/addSuperAdmin.html @@ -1 +1 @@ -addSuperAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +addSuperAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/addedByInboxId.html b/functions/addedByInboxId.html index 933c68593..8c985268d 100644 --- a/functions/addedByInboxId.html +++ b/functions/addedByInboxId.html @@ -1 +1 @@ -addedByInboxId | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +addedByInboxId | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/address.html b/functions/address.html index 45d35557e..5a0adf5aa 100644 --- a/functions/address.html +++ b/functions/address.html @@ -1 +1 @@ -address | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +address | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/allowContacts.html b/functions/allowContacts.html index 2caa0459b..72bfa8abd 100644 --- a/functions/allowContacts.html +++ b/functions/allowContacts.html @@ -1 +1 @@ -allowContacts | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • addresses: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +allowContacts | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • addresses: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/allowGroups.html b/functions/allowGroups.html index 00faa0eda..3c3f11fcd 100644 --- a/functions/allowGroups.html +++ b/functions/allowGroups.html @@ -1 +1 @@ -allowGroups | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • groupIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +allowGroups | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • groupIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/allowInboxes.html b/functions/allowInboxes.html index 54d05e838..5883be400 100644 --- a/functions/allowInboxes.html +++ b/functions/allowInboxes.html @@ -1 +1 @@ -allowInboxes | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • inboxIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +allowInboxes | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • inboxIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/auth.html b/functions/auth.html index 62e507bb3..d8beecc75 100644 --- a/functions/auth.html +++ b/functions/auth.html @@ -1 +1 @@ -auth | @xmtp/react-native-sdk
  • Parameters

    • address: string
    • environment: "local" | "dev" | "production"
    • Optional appVersion: string
    • Optional hasCreateIdentityCallback: boolean
    • Optional hasEnableIdentityCallback: boolean
    • Optional hasPreAuthenticateToInboxCallback: boolean
    • Optional enableV3: boolean
    • Optional dbEncryptionKey: Uint8Array
    • Optional dbDirectory: string
    • Optional historySyncUrl: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +auth | @xmtp/react-native-sdk
  • Parameters

    • address: string
    • environment: "local" | "dev" | "production"
    • Optional appVersion: string
    • Optional hasCreateIdentityCallback: boolean
    • Optional hasEnableIdentityCallback: boolean
    • Optional hasPreAuthenticateToInboxCallback: boolean
    • Optional enableV3: boolean
    • Optional dbEncryptionKey: Uint8Array
    • Optional dbDirectory: string
    • Optional historySyncUrl: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/canGroupMessage.html b/functions/canGroupMessage.html index c33c0944d..0fb1a9ffe 100644 --- a/functions/canGroupMessage.html +++ b/functions/canGroupMessage.html @@ -1 +1 @@ -canGroupMessage | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • peerAddresses: string[]

    Returns Promise<{
        [key: string]: boolean;
    }>

Generated using TypeDoc

\ No newline at end of file +canGroupMessage | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • peerAddresses: string[]

    Returns Promise<{
        [key: string]: boolean;
    }>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/canMessage.html b/functions/canMessage.html index fc582f537..8bd850ccc 100644 --- a/functions/canMessage.html +++ b/functions/canMessage.html @@ -1 +1 @@ -canMessage | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • peerAddress: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +canMessage | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • peerAddress: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/consentList.html b/functions/consentList.html index 2736313e9..a12377e21 100644 --- a/functions/consentList.html +++ b/functions/consentList.html @@ -1 +1 @@ -consentList | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +consentList | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/conversationConsentState.html b/functions/conversationConsentState.html index 9bb0f9f18..99ead5a36 100644 --- a/functions/conversationConsentState.html +++ b/functions/conversationConsentState.html @@ -1 +1 @@ -conversationConsentState | @xmtp/react-native-sdk

Function conversationConsentState

  • Parameters

    • inboxId: string
    • conversationTopic: string

    Returns Promise<ConsentState>

Generated using TypeDoc

\ No newline at end of file +conversationConsentState | @xmtp/react-native-sdk

Function conversationConsentState

  • Parameters

    • inboxId: string
    • conversationTopic: string

    Returns Promise<ConsentState>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/convertWalletClientToSigner.html b/functions/convertWalletClientToSigner.html index d2e35fbbd..eb614e8d0 100644 --- a/functions/convertWalletClientToSigner.html +++ b/functions/convertWalletClientToSigner.html @@ -1 +1 @@ -convertWalletClientToSigner | @xmtp/react-native-sdk

Function convertWalletClientToSigner

Generated using TypeDoc

\ No newline at end of file +convertWalletClientToSigner | @xmtp/react-native-sdk

Function convertWalletClientToSigner

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/createConversation.html b/functions/createConversation.html index 23be9e20a..342c3dab8 100644 --- a/functions/createConversation.html +++ b/functions/createConversation.html @@ -1 +1 @@ -createConversation | @xmtp/react-native-sdk

Function createConversation

Generated using TypeDoc

\ No newline at end of file +createConversation | @xmtp/react-native-sdk

Function createConversation

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/createFromKeyBundle.html b/functions/createFromKeyBundle.html index 90e831cf1..e673ea5e9 100644 --- a/functions/createFromKeyBundle.html +++ b/functions/createFromKeyBundle.html @@ -1 +1 @@ -createFromKeyBundle | @xmtp/react-native-sdk

Function createFromKeyBundle

  • Parameters

    • keyBundle: string
    • environment: "local" | "dev" | "production"
    • Optional appVersion: string
    • Optional enableV3: boolean
    • Optional dbEncryptionKey: Uint8Array
    • Optional dbDirectory: string
    • Optional historySyncUrl: string

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +createFromKeyBundle | @xmtp/react-native-sdk

Function createFromKeyBundle

  • Parameters

    • keyBundle: string
    • environment: "local" | "dev" | "production"
    • Optional appVersion: string
    • Optional enableV3: boolean
    • Optional dbEncryptionKey: Uint8Array
    • Optional dbDirectory: string
    • Optional historySyncUrl: string

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/createGroup.html b/functions/createGroup.html index 938257e88..398b82e4c 100644 --- a/functions/createGroup.html +++ b/functions/createGroup.html @@ -1 +1 @@ -createGroup | @xmtp/react-native-sdk
  • Type Parameters

    • ContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • client: Client<ContentTypes>
    • peerAddresses: string[]
    • permissionLevel: "all_members" | "admin_only" = 'all_members'
    • name: string = ''
    • imageUrlSquare: string = ''
    • description: string = ''
    • pinnedFrameUrl: string = ''

    Returns Promise<Group<ContentTypes>>

Generated using TypeDoc

\ No newline at end of file +createGroup | @xmtp/react-native-sdk
  • Type Parameters

    • ContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • client: Client<ContentTypes>
    • peerAddresses: string[]
    • permissionLevel: "all_members" | "admin_only" = 'all_members'
    • name: string = ''
    • imageUrlSquare: string = ''
    • description: string = ''
    • pinnedFrameUrl: string = ''

    Returns Promise<Group<ContentTypes>>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/createGroupCustomPermissions.html b/functions/createGroupCustomPermissions.html index 6743a240d..e3c90757a 100644 --- a/functions/createGroupCustomPermissions.html +++ b/functions/createGroupCustomPermissions.html @@ -1 +1 @@ -createGroupCustomPermissions | @xmtp/react-native-sdk

Function createGroupCustomPermissions

  • Type Parameters

    • ContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • client: Client<ContentTypes>
    • peerAddresses: string[]
    • permissionPolicySet: PermissionPolicySet
    • name: string = ''
    • imageUrlSquare: string = ''
    • description: string = ''
    • pinnedFrameUrl: string = ''

    Returns Promise<Group<ContentTypes>>

Generated using TypeDoc

\ No newline at end of file +createGroupCustomPermissions | @xmtp/react-native-sdk

Function createGroupCustomPermissions

  • Type Parameters

    • ContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • client: Client<ContentTypes>
    • peerAddresses: string[]
    • permissionPolicySet: PermissionPolicySet
    • name: string = ''
    • imageUrlSquare: string = ''
    • description: string = ''
    • pinnedFrameUrl: string = ''

    Returns Promise<Group<ContentTypes>>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/createRandom.html b/functions/createRandom.html index c7f88ecae..226d61559 100644 --- a/functions/createRandom.html +++ b/functions/createRandom.html @@ -1 +1 @@ -createRandom | @xmtp/react-native-sdk
  • Parameters

    • environment: "local" | "dev" | "production"
    • Optional appVersion: string
    • Optional hasCreateIdentityCallback: boolean
    • Optional hasEnableIdentityCallback: boolean
    • Optional hasPreAuthenticateToInboxCallback: boolean
    • Optional enableV3: boolean
    • Optional dbEncryptionKey: Uint8Array
    • Optional dbDirectory: string
    • Optional historySyncUrl: string

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +createRandom | @xmtp/react-native-sdk
  • Parameters

    • environment: "local" | "dev" | "production"
    • Optional appVersion: string
    • Optional hasCreateIdentityCallback: boolean
    • Optional hasEnableIdentityCallback: boolean
    • Optional hasPreAuthenticateToInboxCallback: boolean
    • Optional enableV3: boolean
    • Optional dbEncryptionKey: Uint8Array
    • Optional dbDirectory: string
    • Optional historySyncUrl: string

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/creatorInboxId.html b/functions/creatorInboxId.html index a2a9186ae..dac1a6b21 100644 --- a/functions/creatorInboxId.html +++ b/functions/creatorInboxId.html @@ -1 +1 @@ -creatorInboxId | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +creatorInboxId | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/decodeMessage.html b/functions/decodeMessage.html index 8edefef5e..0f03f9331 100644 --- a/functions/decodeMessage.html +++ b/functions/decodeMessage.html @@ -1 +1 @@ -decodeMessage | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +decodeMessage | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/decryptAttachment.html b/functions/decryptAttachment.html index fb7c2ed0e..a58224433 100644 --- a/functions/decryptAttachment.html +++ b/functions/decryptAttachment.html @@ -1 +1 @@ -decryptAttachment | @xmtp/react-native-sdk

Function decryptAttachment

Generated using TypeDoc

\ No newline at end of file +decryptAttachment | @xmtp/react-native-sdk

Function decryptAttachment

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/deleteLocalDatabase.html b/functions/deleteLocalDatabase.html index 4f8265c76..da79b2f38 100644 --- a/functions/deleteLocalDatabase.html +++ b/functions/deleteLocalDatabase.html @@ -1 +1 @@ -deleteLocalDatabase | @xmtp/react-native-sdk

Function deleteLocalDatabase

  • Parameters

    • inboxId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +deleteLocalDatabase | @xmtp/react-native-sdk

Function deleteLocalDatabase

  • Parameters

    • inboxId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/denyContacts.html b/functions/denyContacts.html index c895686aa..9e72250b0 100644 --- a/functions/denyContacts.html +++ b/functions/denyContacts.html @@ -1 +1 @@ -denyContacts | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • addresses: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +denyContacts | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • addresses: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/denyGroups.html b/functions/denyGroups.html index 9f1c97336..cdf1b66e7 100644 --- a/functions/denyGroups.html +++ b/functions/denyGroups.html @@ -1 +1 @@ -denyGroups | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • groupIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +denyGroups | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • groupIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/denyInboxes.html b/functions/denyInboxes.html index a3904d436..e73b535ae 100644 --- a/functions/denyInboxes.html +++ b/functions/denyInboxes.html @@ -1 +1 @@ -denyInboxes | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • inboxIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +denyInboxes | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • inboxIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/dropLocalDatabaseConnection.html b/functions/dropLocalDatabaseConnection.html index 9d9cd848b..9f0e95f38 100644 --- a/functions/dropLocalDatabaseConnection.html +++ b/functions/dropLocalDatabaseConnection.html @@ -1 +1 @@ -dropLocalDatabaseConnection | @xmtp/react-native-sdk

Function dropLocalDatabaseConnection

  • Parameters

    • inboxId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +dropLocalDatabaseConnection | @xmtp/react-native-sdk

Function dropLocalDatabaseConnection

  • Parameters

    • inboxId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/encryptAttachment.html b/functions/encryptAttachment.html index 538259443..d9d3f6b72 100644 --- a/functions/encryptAttachment.html +++ b/functions/encryptAttachment.html @@ -1 +1 @@ -encryptAttachment | @xmtp/react-native-sdk

Function encryptAttachment

Generated using TypeDoc

\ No newline at end of file +encryptAttachment | @xmtp/react-native-sdk

Function encryptAttachment

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/exportConversationTopicData.html b/functions/exportConversationTopicData.html index d44099e62..c34e39e75 100644 --- a/functions/exportConversationTopicData.html +++ b/functions/exportConversationTopicData.html @@ -1 +1 @@ -exportConversationTopicData | @xmtp/react-native-sdk

Function exportConversationTopicData

  • Parameters

    • inboxId: string
    • conversationTopic: string

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +exportConversationTopicData | @xmtp/react-native-sdk

Function exportConversationTopicData

  • Parameters

    • inboxId: string
    • conversationTopic: string

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/exportKeyBundle.html b/functions/exportKeyBundle.html index 67eb079ad..9a5db26db 100644 --- a/functions/exportKeyBundle.html +++ b/functions/exportKeyBundle.html @@ -1 +1 @@ -exportKeyBundle | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +exportKeyBundle | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/exportNativeLogs.html b/functions/exportNativeLogs.html index b5feb9984..99495bfa3 100644 --- a/functions/exportNativeLogs.html +++ b/functions/exportNativeLogs.html @@ -1 +1 @@ -exportNativeLogs | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +exportNativeLogs | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/exportPublicKeyBundle.html b/functions/exportPublicKeyBundle.html index c83dcfbac..ccf26f796 100644 --- a/functions/exportPublicKeyBundle.html +++ b/functions/exportPublicKeyBundle.html @@ -1 +1 @@ -exportPublicKeyBundle | @xmtp/react-native-sdk

Function exportPublicKeyBundle

  • Parameters

    • inboxId: string

    Returns Promise<Uint8Array>

Generated using TypeDoc

\ No newline at end of file +exportPublicKeyBundle | @xmtp/react-native-sdk

Function exportPublicKeyBundle

  • Parameters

    • inboxId: string

    Returns Promise<Uint8Array>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/findGroup.html b/functions/findGroup.html index c519d60d2..73cffbf7c 100644 --- a/functions/findGroup.html +++ b/functions/findGroup.html @@ -1 +1 @@ -findGroup | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +findGroup | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/findInboxIdFromAddress.html b/functions/findInboxIdFromAddress.html index 467b04974..acb23e413 100644 --- a/functions/findInboxIdFromAddress.html +++ b/functions/findInboxIdFromAddress.html @@ -1 +1 @@ -findInboxIdFromAddress | @xmtp/react-native-sdk

Function findInboxIdFromAddress

  • Parameters

    • inboxId: string
    • address: string

    Returns Promise<InboxId | undefined>

Generated using TypeDoc

\ No newline at end of file +findInboxIdFromAddress | @xmtp/react-native-sdk

Function findInboxIdFromAddress

  • Parameters

    • inboxId: string
    • address: string

    Returns Promise<InboxId | undefined>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/findV3Message.html b/functions/findV3Message.html index 693a0c150..88fdb00c8 100644 --- a/functions/findV3Message.html +++ b/functions/findV3Message.html @@ -1 +1 @@ -findV3Message | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +findV3Message | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/getHmacKeys.html b/functions/getHmacKeys.html index 62dbbc6a9..81868b87b 100644 --- a/functions/getHmacKeys.html +++ b/functions/getHmacKeys.html @@ -1 +1 @@ -getHmacKeys | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string

    Returns Promise<keystore.GetConversationHmacKeysResponse>

Generated using TypeDoc

\ No newline at end of file +getHmacKeys | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string

    Returns Promise<keystore.GetConversationHmacKeysResponse>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/getOrCreateInboxId.html b/functions/getOrCreateInboxId.html index 7011703ad..c1b29d733 100644 --- a/functions/getOrCreateInboxId.html +++ b/functions/getOrCreateInboxId.html @@ -1 +1 @@ -getOrCreateInboxId | @xmtp/react-native-sdk

Function getOrCreateInboxId

  • Parameters

    • address: string
    • environment: "local" | "dev" | "production"

    Returns Promise<InboxId>

Generated using TypeDoc

\ No newline at end of file +getOrCreateInboxId | @xmtp/react-native-sdk

Function getOrCreateInboxId

  • Parameters

    • address: string
    • environment: "local" | "dev" | "production"

    Returns Promise<InboxId>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/getSigner.html b/functions/getSigner.html index 0875de64b..49d53baf5 100644 --- a/functions/getSigner.html +++ b/functions/getSigner.html @@ -1 +1 @@ -getSigner | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +getSigner | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/groupConsentState.html b/functions/groupConsentState.html index 3e5cd5c40..8cf8e5192 100644 --- a/functions/groupConsentState.html +++ b/functions/groupConsentState.html @@ -1 +1 @@ -groupConsentState | @xmtp/react-native-sdk

Function groupConsentState

  • Parameters

    • inboxId: string
    • groupId: string

    Returns Promise<ConsentState>

Generated using TypeDoc

\ No newline at end of file +groupConsentState | @xmtp/react-native-sdk

Function groupConsentState

  • Parameters

    • inboxId: string
    • groupId: string

    Returns Promise<ConsentState>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/groupDescription.html b/functions/groupDescription.html index 1c3cadc66..4ad0cc612 100644 --- a/functions/groupDescription.html +++ b/functions/groupDescription.html @@ -1 +1 @@ -groupDescription | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string

    Returns string | PromiseLike<string>

Generated using TypeDoc

\ No newline at end of file +groupDescription | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string

    Returns string | PromiseLike<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/groupImageUrlSquare.html b/functions/groupImageUrlSquare.html index 080c82844..3e334e0a1 100644 --- a/functions/groupImageUrlSquare.html +++ b/functions/groupImageUrlSquare.html @@ -1 +1 @@ -groupImageUrlSquare | @xmtp/react-native-sdk

Function groupImageUrlSquare

  • Parameters

    • inboxId: string
    • id: string

    Returns string | PromiseLike<string>

Generated using TypeDoc

\ No newline at end of file +groupImageUrlSquare | @xmtp/react-native-sdk

Function groupImageUrlSquare

  • Parameters

    • inboxId: string
    • id: string

    Returns string | PromiseLike<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/groupMessages.html b/functions/groupMessages.html index ec026f462..f9703e9c3 100644 --- a/functions/groupMessages.html +++ b/functions/groupMessages.html @@ -1 +1 @@ -groupMessages | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +groupMessages | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/groupName.html b/functions/groupName.html index d1a767036..1143188af 100644 --- a/functions/groupName.html +++ b/functions/groupName.html @@ -1 +1 @@ -groupName | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string

    Returns string | PromiseLike<string>

Generated using TypeDoc

\ No newline at end of file +groupName | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string

    Returns string | PromiseLike<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/groupPinnedFrameUrl.html b/functions/groupPinnedFrameUrl.html index c408e645c..e3a46a1b6 100644 --- a/functions/groupPinnedFrameUrl.html +++ b/functions/groupPinnedFrameUrl.html @@ -1 +1 @@ -groupPinnedFrameUrl | @xmtp/react-native-sdk

Function groupPinnedFrameUrl

  • Parameters

    • inboxId: string
    • id: string

    Returns string | PromiseLike<string>

Generated using TypeDoc

\ No newline at end of file +groupPinnedFrameUrl | @xmtp/react-native-sdk

Function groupPinnedFrameUrl

  • Parameters

    • inboxId: string
    • id: string

    Returns string | PromiseLike<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/importConversationTopicData.html b/functions/importConversationTopicData.html index 212fc9911..d587b5644 100644 --- a/functions/importConversationTopicData.html +++ b/functions/importConversationTopicData.html @@ -1 +1 @@ -importConversationTopicData | @xmtp/react-native-sdk

Function importConversationTopicData

Generated using TypeDoc

\ No newline at end of file +importConversationTopicData | @xmtp/react-native-sdk

Function importConversationTopicData

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/inboxId-1.html b/functions/inboxId-1.html index b6002a3e5..c1d1d06b2 100644 --- a/functions/inboxId-1.html +++ b/functions/inboxId-1.html @@ -1 +1 @@ -inboxId | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +inboxId | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isAdmin.html b/functions/isAdmin.html index 326803c6a..920fc85e2 100644 --- a/functions/isAdmin.html +++ b/functions/isAdmin.html @@ -1 +1 @@ -isAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isAllowed.html b/functions/isAllowed.html index 5c7e76635..0da1aa02d 100644 --- a/functions/isAllowed.html +++ b/functions/isAllowed.html @@ -1 +1 @@ -isAllowed | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • address: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isAllowed | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • address: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isDenied.html b/functions/isDenied.html index 51bb40eb0..c80f82fa8 100644 --- a/functions/isDenied.html +++ b/functions/isDenied.html @@ -1 +1 @@ -isDenied | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • address: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isDenied | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • address: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isGroupActive.html b/functions/isGroupActive.html index 43e880dff..f2f17d827 100644 --- a/functions/isGroupActive.html +++ b/functions/isGroupActive.html @@ -1 +1 @@ -isGroupActive | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isGroupActive | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isGroupAllowed.html b/functions/isGroupAllowed.html index d258422d8..944b450d7 100644 --- a/functions/isGroupAllowed.html +++ b/functions/isGroupAllowed.html @@ -1 +1 @@ -isGroupAllowed | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • groupId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isGroupAllowed | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • groupId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isGroupDenied.html b/functions/isGroupDenied.html index f53a8cc3f..673656fd6 100644 --- a/functions/isGroupDenied.html +++ b/functions/isGroupDenied.html @@ -1 +1 @@ -isGroupDenied | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • groupId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isGroupDenied | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • groupId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isInboxAllowed.html b/functions/isInboxAllowed.html index fb29431c5..35d7e01e4 100644 --- a/functions/isInboxAllowed.html +++ b/functions/isInboxAllowed.html @@ -1 +1 @@ -isInboxAllowed | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • inboxId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isInboxAllowed | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • inboxId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isInboxDenied.html b/functions/isInboxDenied.html index 36916f26c..e5994bacb 100644 --- a/functions/isInboxDenied.html +++ b/functions/isInboxDenied.html @@ -1 +1 @@ -isInboxDenied | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • inboxId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isInboxDenied | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • inboxId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/isSuperAdmin.html b/functions/isSuperAdmin.html index 952b41b34..c8c6cc866 100644 --- a/functions/isSuperAdmin.html +++ b/functions/isSuperAdmin.html @@ -1 +1 @@ -isSuperAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +isSuperAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listAdmins.html b/functions/listAdmins.html index b1fead63e..150992c5e 100644 --- a/functions/listAdmins.html +++ b/functions/listAdmins.html @@ -1 +1 @@ -listAdmins | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +listAdmins | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listAll.html b/functions/listAll.html index db6df6ca2..de562fcb9 100644 --- a/functions/listAll.html +++ b/functions/listAll.html @@ -1 +1 @@ -listAll | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +listAll | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listBatchMessages.html b/functions/listBatchMessages.html index 9f907caa7..509fc4461 100644 --- a/functions/listBatchMessages.html +++ b/functions/listBatchMessages.html @@ -1 +1 @@ -listBatchMessages | @xmtp/react-native-sdk

Function listBatchMessages

Generated using TypeDoc

\ No newline at end of file +listBatchMessages | @xmtp/react-native-sdk

Function listBatchMessages

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listConversations.html b/functions/listConversations.html index 596952fd7..f7918ac8b 100644 --- a/functions/listConversations.html +++ b/functions/listConversations.html @@ -1 +1 @@ -listConversations | @xmtp/react-native-sdk

Function listConversations

Generated using TypeDoc

\ No newline at end of file +listConversations | @xmtp/react-native-sdk

Function listConversations

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listGroupMembers.html b/functions/listGroupMembers.html index c83567dd5..eba240133 100644 --- a/functions/listGroupMembers.html +++ b/functions/listGroupMembers.html @@ -1 +1 @@ -listGroupMembers | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +listGroupMembers | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listGroups.html b/functions/listGroups.html index aa6e991af..362827bd0 100644 --- a/functions/listGroups.html +++ b/functions/listGroups.html @@ -1 +1 @@ -listGroups | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +listGroups | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listMemberInboxIds.html b/functions/listMemberInboxIds.html index b5323b366..91bd71fc1 100644 --- a/functions/listMemberInboxIds.html +++ b/functions/listMemberInboxIds.html @@ -1 +1 @@ -listMemberInboxIds | @xmtp/react-native-sdk

Function listMemberInboxIds

Generated using TypeDoc

\ No newline at end of file +listMemberInboxIds | @xmtp/react-native-sdk

Function listMemberInboxIds

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listMessages.html b/functions/listMessages.html index de44f4003..622df35bd 100644 --- a/functions/listMessages.html +++ b/functions/listMessages.html @@ -1 +1 @@ -listMessages | @xmtp/react-native-sdk
  • Type Parameters

    • ContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • client: Client<ContentTypes>
    • conversationTopic: string
    • Optional limit: number
    • Optional before: number | Date
    • Optional after: number | Date
    • Optional direction: "SORT_DIRECTION_ASCENDING" | "SORT_DIRECTION_DESCENDING"

    Returns Promise<DecodedMessage<ContentTypes>[]>

Generated using TypeDoc

\ No newline at end of file +listMessages | @xmtp/react-native-sdk
  • Type Parameters

    • ContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • client: Client<ContentTypes>
    • conversationTopic: string
    • Optional limit: number
    • Optional before: number | Date
    • Optional after: number | Date
    • Optional direction: "SORT_DIRECTION_ASCENDING" | "SORT_DIRECTION_DESCENDING"

    Returns Promise<DecodedMessage<ContentTypes>[]>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/listSuperAdmins.html b/functions/listSuperAdmins.html index 23b01ceee..2a1ff8d53 100644 --- a/functions/listSuperAdmins.html +++ b/functions/listSuperAdmins.html @@ -1 +1 @@ -listSuperAdmins | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +listSuperAdmins | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/permissionPolicySet.html b/functions/permissionPolicySet.html index e0a51f8e5..75cf7fe50 100644 --- a/functions/permissionPolicySet.html +++ b/functions/permissionPolicySet.html @@ -1 +1 @@ -permissionPolicySet | @xmtp/react-native-sdk

Function permissionPolicySet

  • Parameters

    • clientInboxId: string
    • id: string

    Returns Promise<PermissionPolicySet>

Generated using TypeDoc

\ No newline at end of file +permissionPolicySet | @xmtp/react-native-sdk

Function permissionPolicySet

  • Parameters

    • clientInboxId: string
    • id: string

    Returns Promise<PermissionPolicySet>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/preAuthenticateToInboxCallbackCompleted.html b/functions/preAuthenticateToInboxCallbackCompleted.html index 061cd49d0..45c5a15b6 100644 --- a/functions/preAuthenticateToInboxCallbackCompleted.html +++ b/functions/preAuthenticateToInboxCallbackCompleted.html @@ -1 +1 @@ -preAuthenticateToInboxCallbackCompleted | @xmtp/react-native-sdk

Function preAuthenticateToInboxCallbackCompleted

  • Returns void

Generated using TypeDoc

\ No newline at end of file +preAuthenticateToInboxCallbackCompleted | @xmtp/react-native-sdk

Function preAuthenticateToInboxCallbackCompleted

  • Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/preCreateIdentityCallbackCompleted.html b/functions/preCreateIdentityCallbackCompleted.html index 8d357d425..8a439ea82 100644 --- a/functions/preCreateIdentityCallbackCompleted.html +++ b/functions/preCreateIdentityCallbackCompleted.html @@ -1 +1 @@ -preCreateIdentityCallbackCompleted | @xmtp/react-native-sdk

Function preCreateIdentityCallbackCompleted

  • Returns void

Generated using TypeDoc

\ No newline at end of file +preCreateIdentityCallbackCompleted | @xmtp/react-native-sdk

Function preCreateIdentityCallbackCompleted

  • Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/preEnableIdentityCallbackCompleted.html b/functions/preEnableIdentityCallbackCompleted.html index 3a1f8f079..df0054fcd 100644 --- a/functions/preEnableIdentityCallbackCompleted.html +++ b/functions/preEnableIdentityCallbackCompleted.html @@ -1 +1 @@ -preEnableIdentityCallbackCompleted | @xmtp/react-native-sdk

Function preEnableIdentityCallbackCompleted

  • Returns void

Generated using TypeDoc

\ No newline at end of file +preEnableIdentityCallbackCompleted | @xmtp/react-native-sdk

Function preEnableIdentityCallbackCompleted

  • Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/prepareGroupMessage.html b/functions/prepareGroupMessage.html index ea8379e9e..e1ec1818a 100644 --- a/functions/prepareGroupMessage.html +++ b/functions/prepareGroupMessage.html @@ -1 +1 @@ -prepareGroupMessage | @xmtp/react-native-sdk

Function prepareGroupMessage

  • Parameters

    • inboxId: string
    • groupId: string
    • content: any

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +prepareGroupMessage | @xmtp/react-native-sdk

Function prepareGroupMessage

  • Parameters

    • inboxId: string
    • groupId: string
    • content: any

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/prepareMessage.html b/functions/prepareMessage.html index 00f32407e..b13a772fc 100644 --- a/functions/prepareMessage.html +++ b/functions/prepareMessage.html @@ -1 +1 @@ -prepareMessage | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +prepareMessage | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/prepareMessageWithContentType.html b/functions/prepareMessageWithContentType.html index 74fc6ec35..13b291ea7 100644 --- a/functions/prepareMessageWithContentType.html +++ b/functions/prepareMessageWithContentType.html @@ -1 +1 @@ -prepareMessageWithContentType | @xmtp/react-native-sdk

Function prepareMessageWithContentType

Generated using TypeDoc

\ No newline at end of file +prepareMessageWithContentType | @xmtp/react-native-sdk

Function prepareMessageWithContentType

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/processGroupMessage.html b/functions/processGroupMessage.html index 717babc44..bd3977626 100644 --- a/functions/processGroupMessage.html +++ b/functions/processGroupMessage.html @@ -1 +1 @@ -processGroupMessage | @xmtp/react-native-sdk

Function processGroupMessage

Generated using TypeDoc

\ No newline at end of file +processGroupMessage | @xmtp/react-native-sdk

Function processGroupMessage

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/processWelcomeMessage.html b/functions/processWelcomeMessage.html index 20710cdb1..62891581e 100644 --- a/functions/processWelcomeMessage.html +++ b/functions/processWelcomeMessage.html @@ -1 +1 @@ -processWelcomeMessage | @xmtp/react-native-sdk

Function processWelcomeMessage

Generated using TypeDoc

\ No newline at end of file +processWelcomeMessage | @xmtp/react-native-sdk

Function processWelcomeMessage

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/publishPreparedGroupMessages.html b/functions/publishPreparedGroupMessages.html index 652139fa1..202f6462a 100644 --- a/functions/publishPreparedGroupMessages.html +++ b/functions/publishPreparedGroupMessages.html @@ -1 +1 @@ -publishPreparedGroupMessages | @xmtp/react-native-sdk

Function publishPreparedGroupMessages

  • Parameters

    • inboxId: string
    • groupId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +publishPreparedGroupMessages | @xmtp/react-native-sdk

Function publishPreparedGroupMessages

  • Parameters

    • inboxId: string
    • groupId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/receiveSignature.html b/functions/receiveSignature.html index 1ff7bd8f5..5669592e8 100644 --- a/functions/receiveSignature.html +++ b/functions/receiveSignature.html @@ -1 +1 @@ -receiveSignature | @xmtp/react-native-sdk
  • Parameters

    • requestID: string
    • signature: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +receiveSignature | @xmtp/react-native-sdk
  • Parameters

    • requestID: string
    • signature: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/reconnectLocalDatabase.html b/functions/reconnectLocalDatabase.html index 79bf3fcee..f1fe1ade5 100644 --- a/functions/reconnectLocalDatabase.html +++ b/functions/reconnectLocalDatabase.html @@ -1 +1 @@ -reconnectLocalDatabase | @xmtp/react-native-sdk

Function reconnectLocalDatabase

  • Parameters

    • inboxId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +reconnectLocalDatabase | @xmtp/react-native-sdk

Function reconnectLocalDatabase

  • Parameters

    • inboxId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/refreshConsentList.html b/functions/refreshConsentList.html index 2fa3d458f..c37b93fda 100644 --- a/functions/refreshConsentList.html +++ b/functions/refreshConsentList.html @@ -1 +1 @@ -refreshConsentList | @xmtp/react-native-sdk

Function refreshConsentList

Generated using TypeDoc

\ No newline at end of file +refreshConsentList | @xmtp/react-native-sdk

Function refreshConsentList

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/registerPushToken.html b/functions/registerPushToken.html index 4ab04b698..a10dfa09b 100644 --- a/functions/registerPushToken.html +++ b/functions/registerPushToken.html @@ -1 +1 @@ -registerPushToken | @xmtp/react-native-sdk

Function registerPushToken

  • Parameters

    • pushServer: string
    • token: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +registerPushToken | @xmtp/react-native-sdk

Function registerPushToken

  • Parameters

    • pushServer: string
    • token: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/removeAdmin.html b/functions/removeAdmin.html index 68747a10e..8b68631fd 100644 --- a/functions/removeAdmin.html +++ b/functions/removeAdmin.html @@ -1 +1 @@ -removeAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +removeAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/removeGroupMembers.html b/functions/removeGroupMembers.html index 1e15d38d6..306bae05b 100644 --- a/functions/removeGroupMembers.html +++ b/functions/removeGroupMembers.html @@ -1 +1 @@ -removeGroupMembers | @xmtp/react-native-sdk

Function removeGroupMembers

  • Parameters

    • inboxId: string
    • id: string
    • addresses: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +removeGroupMembers | @xmtp/react-native-sdk

Function removeGroupMembers

  • Parameters

    • inboxId: string
    • id: string
    • addresses: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/removeGroupMembersByInboxId.html b/functions/removeGroupMembersByInboxId.html index 81d2bf0e4..fb5a14c7f 100644 --- a/functions/removeGroupMembersByInboxId.html +++ b/functions/removeGroupMembersByInboxId.html @@ -1 +1 @@ -removeGroupMembersByInboxId | @xmtp/react-native-sdk

Function removeGroupMembersByInboxId

  • Parameters

    • inboxId: string
    • id: string
    • inboxIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +removeGroupMembersByInboxId | @xmtp/react-native-sdk

Function removeGroupMembersByInboxId

  • Parameters

    • inboxId: string
    • id: string
    • inboxIds: string[]

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/removeSuperAdmin.html b/functions/removeSuperAdmin.html index 07290872d..e0fdb7c66 100644 --- a/functions/removeSuperAdmin.html +++ b/functions/removeSuperAdmin.html @@ -1 +1 @@ -removeSuperAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +removeSuperAdmin | @xmtp/react-native-sdk
  • Parameters

    • clientInboxId: string
    • id: string
    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/requestMessageHistorySync.html b/functions/requestMessageHistorySync.html index 81ac8c558..c013d6d58 100644 --- a/functions/requestMessageHistorySync.html +++ b/functions/requestMessageHistorySync.html @@ -1 +1 @@ -requestMessageHistorySync | @xmtp/react-native-sdk

Function requestMessageHistorySync

  • Parameters

    • inboxId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +requestMessageHistorySync | @xmtp/react-native-sdk

Function requestMessageHistorySync

  • Parameters

    • inboxId: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/sendMessage.html b/functions/sendMessage.html index b14af7756..0106ff5ec 100644 --- a/functions/sendMessage.html +++ b/functions/sendMessage.html @@ -1 +1 @@ -sendMessage | @xmtp/react-native-sdk
  • Type Parameters

    • SendContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • inboxId: string
    • conversationTopic: string
    • content: ConversationSendPayload<SendContentTypes>

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +sendMessage | @xmtp/react-native-sdk
  • Type Parameters

    • SendContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • inboxId: string
    • conversationTopic: string
    • content: ConversationSendPayload<SendContentTypes>

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/sendMessageToGroup.html b/functions/sendMessageToGroup.html index 4a0a9838c..dac2c92a0 100644 --- a/functions/sendMessageToGroup.html +++ b/functions/sendMessageToGroup.html @@ -1 +1 @@ -sendMessageToGroup | @xmtp/react-native-sdk

Function sendMessageToGroup

  • Parameters

    • inboxId: string
    • groupId: string
    • content: any

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +sendMessageToGroup | @xmtp/react-native-sdk

Function sendMessageToGroup

  • Parameters

    • inboxId: string
    • groupId: string
    • content: any

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/sendPreparedMessage.html b/functions/sendPreparedMessage.html index 420f0a8ce..b7039df26 100644 --- a/functions/sendPreparedMessage.html +++ b/functions/sendPreparedMessage.html @@ -1 +1 @@ -sendPreparedMessage | @xmtp/react-native-sdk

Function sendPreparedMessage

  • Parameters

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +sendPreparedMessage | @xmtp/react-native-sdk

Function sendPreparedMessage

  • Parameters

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/sendWithContentType.html b/functions/sendWithContentType.html index 7ad5294a4..d0a563c40 100644 --- a/functions/sendWithContentType.html +++ b/functions/sendWithContentType.html @@ -1 +1 @@ -sendWithContentType | @xmtp/react-native-sdk

Function sendWithContentType

  • Type Parameters

    • T

    Parameters

    • inboxId: string
    • conversationTopic: string
    • content: T
    • codec: ContentCodec<T>

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +sendWithContentType | @xmtp/react-native-sdk

Function sendWithContentType

  • Type Parameters

    • T

    Parameters

    • inboxId: string
    • conversationTopic: string
    • content: T
    • codec: ContentCodec<T>

    Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/sign.html b/functions/sign.html index 2e4fc7580..1f06ddf2e 100644 --- a/functions/sign.html +++ b/functions/sign.html @@ -1 +1 @@ -sign | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • digest: Uint8Array
    • keyType: string
    • preKeyIndex: number = 0

    Returns Promise<Uint8Array>

Generated using TypeDoc

\ No newline at end of file +sign | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • digest: Uint8Array
    • keyType: string
    • preKeyIndex: number = 0

    Returns Promise<Uint8Array>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/staticCanMessage.html b/functions/staticCanMessage.html index 5fcfb2db1..7506b1700 100644 --- a/functions/staticCanMessage.html +++ b/functions/staticCanMessage.html @@ -1 +1 @@ -staticCanMessage | @xmtp/react-native-sdk
  • Parameters

    • peerAddress: string
    • environment: "local" | "dev" | "production"
    • Optional appVersion: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file +staticCanMessage | @xmtp/react-native-sdk
  • Parameters

    • peerAddress: string
    • environment: "local" | "dev" | "production"
    • Optional appVersion: string

    Returns Promise<boolean>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/subscribePushTopics.html b/functions/subscribePushTopics.html index 63ca230c3..f6a57266b 100644 --- a/functions/subscribePushTopics.html +++ b/functions/subscribePushTopics.html @@ -1 +1 @@ -subscribePushTopics | @xmtp/react-native-sdk

Function subscribePushTopics

  • Parameters

    • inboxId: string
    • topics: string[]

    Returns any

Generated using TypeDoc

\ No newline at end of file +subscribePushTopics | @xmtp/react-native-sdk

Function subscribePushTopics

  • Parameters

    • inboxId: string
    • topics: string[]

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/subscribeToAll.html b/functions/subscribeToAll.html index d38cd049f..9056dec42 100644 --- a/functions/subscribeToAll.html +++ b/functions/subscribeToAll.html @@ -1 +1 @@ -subscribeToAll | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +subscribeToAll | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/subscribeToAllGroupMessages.html b/functions/subscribeToAllGroupMessages.html index eb853514b..8dadf775e 100644 --- a/functions/subscribeToAllGroupMessages.html +++ b/functions/subscribeToAllGroupMessages.html @@ -1 +1 @@ -subscribeToAllGroupMessages | @xmtp/react-native-sdk

Function subscribeToAllGroupMessages

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +subscribeToAllGroupMessages | @xmtp/react-native-sdk

Function subscribeToAllGroupMessages

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/subscribeToAllMessages.html b/functions/subscribeToAllMessages.html index d1603c255..386454cbe 100644 --- a/functions/subscribeToAllMessages.html +++ b/functions/subscribeToAllMessages.html @@ -1 +1 @@ -subscribeToAllMessages | @xmtp/react-native-sdk

Function subscribeToAllMessages

  • Parameters

    • inboxId: string
    • includeGroups: boolean

    Returns any

Generated using TypeDoc

\ No newline at end of file +subscribeToAllMessages | @xmtp/react-native-sdk

Function subscribeToAllMessages

  • Parameters

    • inboxId: string
    • includeGroups: boolean

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/subscribeToConversations.html b/functions/subscribeToConversations.html index c73aad8ad..b21564ecd 100644 --- a/functions/subscribeToConversations.html +++ b/functions/subscribeToConversations.html @@ -1 +1 @@ -subscribeToConversations | @xmtp/react-native-sdk

Function subscribeToConversations

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +subscribeToConversations | @xmtp/react-native-sdk

Function subscribeToConversations

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/subscribeToGroupMessages.html b/functions/subscribeToGroupMessages.html index 7c313acde..1310d0aaa 100644 --- a/functions/subscribeToGroupMessages.html +++ b/functions/subscribeToGroupMessages.html @@ -1 +1 @@ -subscribeToGroupMessages | @xmtp/react-native-sdk

Function subscribeToGroupMessages

  • Parameters

    • inboxId: string
    • id: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +subscribeToGroupMessages | @xmtp/react-native-sdk

Function subscribeToGroupMessages

  • Parameters

    • inboxId: string
    • id: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/subscribeToGroups.html b/functions/subscribeToGroups.html index 866af810f..88a260702 100644 --- a/functions/subscribeToGroups.html +++ b/functions/subscribeToGroups.html @@ -1 +1 @@ -subscribeToGroups | @xmtp/react-native-sdk

Function subscribeToGroups

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +subscribeToGroups | @xmtp/react-native-sdk

Function subscribeToGroups

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/subscribeToMessages.html b/functions/subscribeToMessages.html index a0816c925..ae338b3b7 100644 --- a/functions/subscribeToMessages.html +++ b/functions/subscribeToMessages.html @@ -1 +1 @@ -subscribeToMessages | @xmtp/react-native-sdk

Function subscribeToMessages

  • Parameters

    • inboxId: string
    • topic: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +subscribeToMessages | @xmtp/react-native-sdk

Function subscribeToMessages

  • Parameters

    • inboxId: string
    • topic: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/syncGroup.html b/functions/syncGroup.html index 4fa581ec3..562b475d2 100644 --- a/functions/syncGroup.html +++ b/functions/syncGroup.html @@ -1 +1 @@ -syncGroup | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +syncGroup | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/syncGroups.html b/functions/syncGroups.html index f3298934f..17fc74d65 100644 --- a/functions/syncGroups.html +++ b/functions/syncGroups.html @@ -1 +1 @@ -syncGroups | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +syncGroups | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/unsubscribeFromAllGroupMessages.html b/functions/unsubscribeFromAllGroupMessages.html index 78903fa69..ebedcf35d 100644 --- a/functions/unsubscribeFromAllGroupMessages.html +++ b/functions/unsubscribeFromAllGroupMessages.html @@ -1 +1 @@ -unsubscribeFromAllGroupMessages | @xmtp/react-native-sdk

Function unsubscribeFromAllGroupMessages

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +unsubscribeFromAllGroupMessages | @xmtp/react-native-sdk

Function unsubscribeFromAllGroupMessages

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/unsubscribeFromAllMessages.html b/functions/unsubscribeFromAllMessages.html index 5546d614a..52c3acf5b 100644 --- a/functions/unsubscribeFromAllMessages.html +++ b/functions/unsubscribeFromAllMessages.html @@ -1 +1 @@ -unsubscribeFromAllMessages | @xmtp/react-native-sdk

Function unsubscribeFromAllMessages

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +unsubscribeFromAllMessages | @xmtp/react-native-sdk

Function unsubscribeFromAllMessages

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/unsubscribeFromConversations.html b/functions/unsubscribeFromConversations.html index 2a2f05aa9..0585d6716 100644 --- a/functions/unsubscribeFromConversations.html +++ b/functions/unsubscribeFromConversations.html @@ -1 +1 @@ -unsubscribeFromConversations | @xmtp/react-native-sdk

Function unsubscribeFromConversations

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +unsubscribeFromConversations | @xmtp/react-native-sdk

Function unsubscribeFromConversations

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/unsubscribeFromGroupMessages.html b/functions/unsubscribeFromGroupMessages.html index 2ae6fb952..84b81705d 100644 --- a/functions/unsubscribeFromGroupMessages.html +++ b/functions/unsubscribeFromGroupMessages.html @@ -1 +1 @@ -unsubscribeFromGroupMessages | @xmtp/react-native-sdk

Function unsubscribeFromGroupMessages

  • Parameters

    • inboxId: string
    • id: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +unsubscribeFromGroupMessages | @xmtp/react-native-sdk

Function unsubscribeFromGroupMessages

  • Parameters

    • inboxId: string
    • id: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/unsubscribeFromGroups.html b/functions/unsubscribeFromGroups.html index 26899035f..a0b556d42 100644 --- a/functions/unsubscribeFromGroups.html +++ b/functions/unsubscribeFromGroups.html @@ -1 +1 @@ -unsubscribeFromGroups | @xmtp/react-native-sdk

Function unsubscribeFromGroups

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file +unsubscribeFromGroups | @xmtp/react-native-sdk

Function unsubscribeFromGroups

  • Parameters

    • inboxId: string

    Returns any

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/unsubscribeFromMessages.html b/functions/unsubscribeFromMessages.html index 853269e4a..814c7181d 100644 --- a/functions/unsubscribeFromMessages.html +++ b/functions/unsubscribeFromMessages.html @@ -1 +1 @@ -unsubscribeFromMessages | @xmtp/react-native-sdk

Function unsubscribeFromMessages

  • Parameters

    • inboxId: string
    • topic: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +unsubscribeFromMessages | @xmtp/react-native-sdk

Function unsubscribeFromMessages

  • Parameters

    • inboxId: string
    • topic: string

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateAddAdminPermission.html b/functions/updateAddAdminPermission.html index 0a7a01bbe..fe777fdd7 100644 --- a/functions/updateAddAdminPermission.html +++ b/functions/updateAddAdminPermission.html @@ -1 +1 @@ -updateAddAdminPermission | @xmtp/react-native-sdk

Function updateAddAdminPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateAddAdminPermission | @xmtp/react-native-sdk

Function updateAddAdminPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateAddMemberPermission.html b/functions/updateAddMemberPermission.html index 5615b0e84..285d682a1 100644 --- a/functions/updateAddMemberPermission.html +++ b/functions/updateAddMemberPermission.html @@ -1 +1 @@ -updateAddMemberPermission | @xmtp/react-native-sdk

Function updateAddMemberPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateAddMemberPermission | @xmtp/react-native-sdk

Function updateAddMemberPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateGroupDescription.html b/functions/updateGroupDescription.html index 772d43769..6c657429e 100644 --- a/functions/updateGroupDescription.html +++ b/functions/updateGroupDescription.html @@ -1 +1 @@ -updateGroupDescription | @xmtp/react-native-sdk

Function updateGroupDescription

  • Parameters

    • inboxId: string
    • id: string
    • description: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateGroupDescription | @xmtp/react-native-sdk

Function updateGroupDescription

  • Parameters

    • inboxId: string
    • id: string
    • description: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateGroupDescriptionPermission.html b/functions/updateGroupDescriptionPermission.html index 17cf03f71..9e51d248c 100644 --- a/functions/updateGroupDescriptionPermission.html +++ b/functions/updateGroupDescriptionPermission.html @@ -1 +1 @@ -updateGroupDescriptionPermission | @xmtp/react-native-sdk

Function updateGroupDescriptionPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateGroupDescriptionPermission | @xmtp/react-native-sdk

Function updateGroupDescriptionPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateGroupImageUrlSquare.html b/functions/updateGroupImageUrlSquare.html index 04732a419..c5ee6ef46 100644 --- a/functions/updateGroupImageUrlSquare.html +++ b/functions/updateGroupImageUrlSquare.html @@ -1 +1 @@ -updateGroupImageUrlSquare | @xmtp/react-native-sdk

Function updateGroupImageUrlSquare

  • Parameters

    • inboxId: string
    • id: string
    • imageUrlSquare: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateGroupImageUrlSquare | @xmtp/react-native-sdk

Function updateGroupImageUrlSquare

  • Parameters

    • inboxId: string
    • id: string
    • imageUrlSquare: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateGroupImageUrlSquarePermission.html b/functions/updateGroupImageUrlSquarePermission.html index df9d9f8da..04678faf3 100644 --- a/functions/updateGroupImageUrlSquarePermission.html +++ b/functions/updateGroupImageUrlSquarePermission.html @@ -1 +1 @@ -updateGroupImageUrlSquarePermission | @xmtp/react-native-sdk

Function updateGroupImageUrlSquarePermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateGroupImageUrlSquarePermission | @xmtp/react-native-sdk

Function updateGroupImageUrlSquarePermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateGroupName.html b/functions/updateGroupName.html index 16f1978b1..f17d4ae27 100644 --- a/functions/updateGroupName.html +++ b/functions/updateGroupName.html @@ -1 +1 @@ -updateGroupName | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string
    • groupName: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateGroupName | @xmtp/react-native-sdk
  • Parameters

    • inboxId: string
    • id: string
    • groupName: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateGroupNamePermission.html b/functions/updateGroupNamePermission.html index 80e16e2cf..f21e089ff 100644 --- a/functions/updateGroupNamePermission.html +++ b/functions/updateGroupNamePermission.html @@ -1 +1 @@ -updateGroupNamePermission | @xmtp/react-native-sdk

Function updateGroupNamePermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateGroupNamePermission | @xmtp/react-native-sdk

Function updateGroupNamePermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateGroupPinnedFrameUrl.html b/functions/updateGroupPinnedFrameUrl.html index 2b8f246f5..6d786a48c 100644 --- a/functions/updateGroupPinnedFrameUrl.html +++ b/functions/updateGroupPinnedFrameUrl.html @@ -1 +1 @@ -updateGroupPinnedFrameUrl | @xmtp/react-native-sdk

Function updateGroupPinnedFrameUrl

  • Parameters

    • inboxId: string
    • id: string
    • pinnedFrameUrl: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateGroupPinnedFrameUrl | @xmtp/react-native-sdk

Function updateGroupPinnedFrameUrl

  • Parameters

    • inboxId: string
    • id: string
    • pinnedFrameUrl: string

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateGroupPinnedFrameUrlPermission.html b/functions/updateGroupPinnedFrameUrlPermission.html index e9699a59f..41bde5264 100644 --- a/functions/updateGroupPinnedFrameUrlPermission.html +++ b/functions/updateGroupPinnedFrameUrlPermission.html @@ -1 +1 @@ -updateGroupPinnedFrameUrlPermission | @xmtp/react-native-sdk

Function updateGroupPinnedFrameUrlPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateGroupPinnedFrameUrlPermission | @xmtp/react-native-sdk

Function updateGroupPinnedFrameUrlPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateRemoveAdminPermission.html b/functions/updateRemoveAdminPermission.html index 8ea490669..a3da46df3 100644 --- a/functions/updateRemoveAdminPermission.html +++ b/functions/updateRemoveAdminPermission.html @@ -1 +1 @@ -updateRemoveAdminPermission | @xmtp/react-native-sdk

Function updateRemoveAdminPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateRemoveAdminPermission | @xmtp/react-native-sdk

Function updateRemoveAdminPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/updateRemoveMemberPermission.html b/functions/updateRemoveMemberPermission.html index b5474f5e1..bad5ce556 100644 --- a/functions/updateRemoveMemberPermission.html +++ b/functions/updateRemoveMemberPermission.html @@ -1 +1 @@ -updateRemoveMemberPermission | @xmtp/react-native-sdk

Function updateRemoveMemberPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file +updateRemoveMemberPermission | @xmtp/react-native-sdk

Function updateRemoveMemberPermission

  • Parameters

    • clientInboxId: string
    • id: string
    • permissionOption: PermissionUpdateOption

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/useClient.html b/functions/useClient.html index 354da4568..d2e43fd58 100644 --- a/functions/useClient.html +++ b/functions/useClient.html @@ -1 +1 @@ -useClient | @xmtp/react-native-sdk
  • Type Parameters

    • ContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • Optional onError: ((e) => void)
        • (e): void
        • Parameters

          • e: Error

          Returns void

    Returns {
        client: null | Client<ContentTypes>;
        disconnect: (() => Promise<void>);
        error: null | Error;
        initialize: ((__namedParameters) => Promise<undefined | null | Client<any>>);
        isLoading: boolean;
    }

    • client: null | Client<ContentTypes>
    • disconnect: (() => Promise<void>)
        • (): Promise<void>
        • Returns Promise<void>

    • error: null | Error
    • initialize: ((__namedParameters) => Promise<undefined | null | Client<any>>)
        • (__namedParameters): Promise<undefined | null | Client<any>>
        • Parameters

          • __namedParameters: InitializeClientOptions

          Returns Promise<undefined | null | Client<any>>

    • isLoading: boolean

Generated using TypeDoc

\ No newline at end of file +useClient | @xmtp/react-native-sdk
  • Type Parameters

    • ContentTypes extends DefaultContentTypes = DefaultContentTypes

    Parameters

    • Optional onError: ((e) => void)
        • (e): void
        • Parameters

          • e: Error

          Returns void

    Returns {
        client: null | Client<ContentTypes>;
        disconnect: (() => Promise<void>);
        error: null | Error;
        initialize: ((__namedParameters) => Promise<undefined | null | Client<any>>);
        isLoading: boolean;
    }

    • client: null | Client<ContentTypes>
    • disconnect: (() => Promise<void>)
        • (): Promise<void>
        • Returns Promise<void>

    • error: null | Error
    • initialize: ((__namedParameters) => Promise<undefined | null | Client<any>>)
        • (__namedParameters): Promise<undefined | null | Client<any>>
        • Parameters

          • __namedParameters: InitializeClientOptions

          Returns Promise<undefined | null | Client<any>>

    • isLoading: boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/useXmtp.html b/functions/useXmtp.html index 169f6a3d0..1449d05be 100644 --- a/functions/useXmtp.html +++ b/functions/useXmtp.html @@ -1 +1 @@ -useXmtp | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +useXmtp | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/ConversationContainer.html b/interfaces/ConversationContainer.html index 611ea4250..0c1a58192 100644 --- a/interfaces/ConversationContainer.html +++ b/interfaces/ConversationContainer.html @@ -1,5 +1,5 @@ -ConversationContainer | @xmtp/react-native-sdk

Interface ConversationContainer<ContentTypes>

interface ConversationContainer<ContentTypes> {
    client: Client<ContentTypes>;
    createdAt: number;
    topic: string;
    version: ConversationVersion;
}

Type Parameters

  • ContentTypes extends DefaultContentTypes

Implemented by

Properties

client +ConversationContainer | @xmtp/react-native-sdk

Generated using TypeDoc

\ No newline at end of file +

Properties

createdAt: number
topic: string

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/JSContentCodec.html b/interfaces/JSContentCodec.html index 432dbbada..0fe5e2312 100644 --- a/interfaces/JSContentCodec.html +++ b/interfaces/JSContentCodec.html @@ -1,5 +1,5 @@ -JSContentCodec | @xmtp/react-native-sdk

Interface JSContentCodec<T>

interface JSContentCodec<T> {
    contentType: ContentTypeId;
    decode(encodedContent): T;
    encode(content): EncodedContent;
    fallback(content): undefined | string;
}

Type Parameters

  • T

Properties

contentType +JSContentCodec | @xmtp/react-native-sdk

Interface JSContentCodec<T>

interface JSContentCodec<T> {
    contentType: ContentTypeId;
    decode(encodedContent): T;
    encode(content): EncodedContent;
    fallback(content): undefined | string;
}

Type Parameters

  • T

Properties

Methods

Properties

contentType: ContentTypeId

Methods

Generated using TypeDoc

\ No newline at end of file +

Properties

contentType: ContentTypeId

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/NativeContentCodec.html b/interfaces/NativeContentCodec.html index efc333388..886c126db 100644 --- a/interfaces/NativeContentCodec.html +++ b/interfaces/NativeContentCodec.html @@ -1,6 +1,6 @@ -NativeContentCodec | @xmtp/react-native-sdk

Interface NativeContentCodec<T>

interface NativeContentCodec<T> {
    contentKey: string;
    contentType: ContentTypeId;
    decode(nativeContent): T;
    encode(content): NativeMessageContent;
    fallback(content): undefined | string;
}

Type Parameters

  • T

Implemented by

Properties

contentKey +NativeContentCodec | @xmtp/react-native-sdk

Interface NativeContentCodec<T>

interface NativeContentCodec<T> {
    contentKey: string;
    contentType: ContentTypeId;
    decode(nativeContent): T;
    encode(content): NativeMessageContent;
    fallback(content): undefined | string;
}

Type Parameters

  • T

Implemented by

Properties

contentKey: string
contentType: ContentTypeId

Methods

Generated using TypeDoc

\ No newline at end of file +

Properties

contentKey: string
contentType: ContentTypeId

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/Signer.html b/interfaces/Signer.html index 14bb4b9ad..03a74cde0 100644 --- a/interfaces/Signer.html +++ b/interfaces/Signer.html @@ -1,3 +1,3 @@ -Signer | @xmtp/react-native-sdk
interface Signer {
    getAddress: (() => Promise<string>);
    signMessage: ((message) => Promise<string>);
}

Properties

getAddress +Signer | @xmtp/react-native-sdk
interface Signer {
    getAddress: (() => Promise<string>);
    signMessage: ((message) => Promise<string>);
}

Properties

getAddress: (() => Promise<string>)

Type declaration

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

signMessage: ((message) => Promise<string>)

Type declaration

    • (message): Promise<string>
    • Parameters

      • message: string

      Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file +

Properties

getAddress: (() => Promise<string>)

Type declaration

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

signMessage: ((message) => Promise<string>)

Type declaration

    • (message): Promise<string>
    • Parameters

      • message: string

      Returns Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/XmtpContextValue.html b/interfaces/XmtpContextValue.html index 8eca9be88..15b6b6290 100644 --- a/interfaces/XmtpContextValue.html +++ b/interfaces/XmtpContextValue.html @@ -1,5 +1,5 @@ -XmtpContextValue | @xmtp/react-native-sdk

Interface XmtpContextValue

interface XmtpContextValue {
    client: null | Client<any>;
    setClient: Dispatch<SetStateAction<null | Client<any>>>;
}

Properties

client +XmtpContextValue | @xmtp/react-native-sdk

Interface XmtpContextValue

interface XmtpContextValue {
    client: null | Client<any>;
    setClient: Dispatch<SetStateAction<null | Client<any>>>;
}

Properties

Properties

client: null | Client<any>

The XMTP client instance

-
setClient: Dispatch<SetStateAction<null | Client<any>>>

Set the XMTP client instance

-

Generated using TypeDoc

\ No newline at end of file +
setClient: Dispatch<SetStateAction<null | Client<any>>>

Set the XMTP client instance

+

Generated using TypeDoc

\ No newline at end of file diff --git a/types/ContentCodec.html b/types/ContentCodec.html index ae1e72859..d7a1df242 100644 --- a/types/ContentCodec.html +++ b/types/ContentCodec.html @@ -1 +1 @@ -ContentCodec | @xmtp/react-native-sdk

Type alias ContentCodec<T>

Type Parameters

  • T

Generated using TypeDoc

\ No newline at end of file +ContentCodec | @xmtp/react-native-sdk

Type alias ContentCodec<T>

Type Parameters

  • T

Generated using TypeDoc

\ No newline at end of file diff --git a/types/ContentTypeId.html b/types/ContentTypeId.html index 39f7071d5..70a2666ed 100644 --- a/types/ContentTypeId.html +++ b/types/ContentTypeId.html @@ -1 +1 @@ -ContentTypeId | @xmtp/react-native-sdk

Type alias ContentTypeId

ContentTypeId: content.ContentTypeId

Generated using TypeDoc

\ No newline at end of file +ContentTypeId | @xmtp/react-native-sdk

Type alias ContentTypeId

ContentTypeId: content.ContentTypeId

Generated using TypeDoc

\ No newline at end of file diff --git a/types/ConversationContext.html b/types/ConversationContext.html index 72379f62d..241266a13 100644 --- a/types/ConversationContext.html +++ b/types/ConversationContext.html @@ -1 +1 @@ -ConversationContext | @xmtp/react-native-sdk

Type alias ConversationContext

ConversationContext: {
    conversationID: string;
    metadata: {
        [key: string]: string;
    };
}

Type declaration

  • conversationID: string
  • metadata: {
        [key: string]: string;
    }
    • [key: string]: string

Generated using TypeDoc

\ No newline at end of file +ConversationContext | @xmtp/react-native-sdk

Type alias ConversationContext

ConversationContext: {
    conversationID: string;
    metadata: {
        [key: string]: string;
    };
}

Type declaration

  • conversationID: string
  • metadata: {
        [key: string]: string;
    }
    • [key: string]: string

Generated using TypeDoc

\ No newline at end of file diff --git a/types/DecryptedLocalAttachment.html b/types/DecryptedLocalAttachment.html index 1171f2814..2fd2a9ec1 100644 --- a/types/DecryptedLocalAttachment.html +++ b/types/DecryptedLocalAttachment.html @@ -1 +1 @@ -DecryptedLocalAttachment | @xmtp/react-native-sdk

Type alias DecryptedLocalAttachment

DecryptedLocalAttachment: {
    fileUri: string;
    filename?: string;
    mimeType?: string;
}

Type declaration

  • fileUri: string
  • Optional filename?: string
  • Optional mimeType?: string

Generated using TypeDoc

\ No newline at end of file +DecryptedLocalAttachment | @xmtp/react-native-sdk

Type alias DecryptedLocalAttachment

DecryptedLocalAttachment: {
    fileUri: string;
    filename?: string;
    mimeType?: string;
}

Type declaration

  • fileUri: string
  • Optional filename?: string
  • Optional mimeType?: string

Generated using TypeDoc

\ No newline at end of file diff --git a/types/EncodedContent.html b/types/EncodedContent.html index d4bf7fdba..093d8980d 100644 --- a/types/EncodedContent.html +++ b/types/EncodedContent.html @@ -1 +1 @@ -EncodedContent | @xmtp/react-native-sdk

Type alias EncodedContent

EncodedContent: content.EncodedContent

Generated using TypeDoc

\ No newline at end of file +EncodedContent | @xmtp/react-native-sdk

Type alias EncodedContent

EncodedContent: content.EncodedContent

Generated using TypeDoc

\ No newline at end of file diff --git a/types/EncryptedLocalAttachment.html b/types/EncryptedLocalAttachment.html index 4baad4b87..e96816229 100644 --- a/types/EncryptedLocalAttachment.html +++ b/types/EncryptedLocalAttachment.html @@ -1 +1 @@ -EncryptedLocalAttachment | @xmtp/react-native-sdk

Type alias EncryptedLocalAttachment

EncryptedLocalAttachment: {
    encryptedLocalFileUri: string;
    metadata: RemoteAttachmentMetadata;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file +EncryptedLocalAttachment | @xmtp/react-native-sdk

Type alias EncryptedLocalAttachment

EncryptedLocalAttachment: {
    encryptedLocalFileUri: string;
    metadata: RemoteAttachmentMetadata;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/types/GroupUpdatedContent.html b/types/GroupUpdatedContent.html index d46851b7f..07b841df2 100644 --- a/types/GroupUpdatedContent.html +++ b/types/GroupUpdatedContent.html @@ -1 +1 @@ -GroupUpdatedContent | @xmtp/react-native-sdk

Type alias GroupUpdatedContent

GroupUpdatedContent: {
    initiatedByInboxId: string;
    membersAdded: GroupUpdatedMemberEntry[];
    membersRemoved: GroupUpdatedMemberEntry[];
    metadataFieldsChanged: GroupUpdatedMetadatEntry[];
}

Type declaration

Generated using TypeDoc

\ No newline at end of file +GroupUpdatedContent | @xmtp/react-native-sdk

Type alias GroupUpdatedContent

GroupUpdatedContent: {
    initiatedByInboxId: string;
    membersAdded: GroupUpdatedMemberEntry[];
    membersRemoved: GroupUpdatedMemberEntry[];
    metadataFieldsChanged: GroupUpdatedMetadatEntry[];
}

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/types/GroupUpdatedMemberEntry.html b/types/GroupUpdatedMemberEntry.html index 77d4f4ff3..bf4f1ecc6 100644 --- a/types/GroupUpdatedMemberEntry.html +++ b/types/GroupUpdatedMemberEntry.html @@ -1 +1 @@ -GroupUpdatedMemberEntry | @xmtp/react-native-sdk

Type alias GroupUpdatedMemberEntry

GroupUpdatedMemberEntry: {
    inboxId: string;
}

Type declaration

  • inboxId: string

Generated using TypeDoc

\ No newline at end of file +GroupUpdatedMemberEntry | @xmtp/react-native-sdk

Type alias GroupUpdatedMemberEntry

GroupUpdatedMemberEntry: {
    inboxId: string;
}

Type declaration

  • inboxId: string

Generated using TypeDoc

\ No newline at end of file diff --git a/types/GroupUpdatedMetadatEntry.html b/types/GroupUpdatedMetadatEntry.html index 40e114e62..652b872b8 100644 --- a/types/GroupUpdatedMetadatEntry.html +++ b/types/GroupUpdatedMetadatEntry.html @@ -1 +1 @@ -GroupUpdatedMetadatEntry | @xmtp/react-native-sdk

Type alias GroupUpdatedMetadatEntry

GroupUpdatedMetadatEntry: {
    fieldName: string;
    newValue: string;
    oldValue: string;
}

Type declaration

  • fieldName: string
  • newValue: string
  • oldValue: string

Generated using TypeDoc

\ No newline at end of file +GroupUpdatedMetadatEntry | @xmtp/react-native-sdk

Type alias GroupUpdatedMetadatEntry

GroupUpdatedMetadatEntry: {
    fieldName: string;
    newValue: string;
    oldValue: string;
}

Type declaration

  • fieldName: string
  • newValue: string
  • oldValue: string

Generated using TypeDoc

\ No newline at end of file diff --git a/types/InboxId.html b/types/InboxId.html index 2b4a95d72..5e6860617 100644 --- a/types/InboxId.html +++ b/types/InboxId.html @@ -1 +1 @@ -InboxId | @xmtp/react-native-sdk
InboxId: string & {
    brand: unique symbol;
}

Type declaration

  • Readonly brand: unique symbol

Generated using TypeDoc

\ No newline at end of file +InboxId | @xmtp/react-native-sdk
InboxId: string & {
    brand: unique symbol;
}

Type declaration

  • Readonly brand: unique symbol

Generated using TypeDoc

\ No newline at end of file diff --git a/types/NativeMessageContent.html b/types/NativeMessageContent.html index 9755f3934..9ee203813 100644 --- a/types/NativeMessageContent.html +++ b/types/NativeMessageContent.html @@ -1 +1 @@ -NativeMessageContent | @xmtp/react-native-sdk

Type alias NativeMessageContent

NativeMessageContent: {
    attachment?: StaticAttachmentContent;
    encoded?: string;
    groupUpdated?: GroupUpdatedContent;
    reaction?: ReactionContent;
    readReceipt?: ReadReceiptContent;
    remoteAttachment?: RemoteAttachmentContent;
    reply?: ReplyContent;
    text?: string;
    unknown?: UnknownContent;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file +NativeMessageContent | @xmtp/react-native-sdk

Type alias NativeMessageContent

NativeMessageContent: {
    attachment?: StaticAttachmentContent;
    encoded?: string;
    groupUpdated?: GroupUpdatedContent;
    reaction?: ReactionContent;
    readReceipt?: ReadReceiptContent;
    remoteAttachment?: RemoteAttachmentContent;
    reply?: ReplyContent;
    text?: string;
    unknown?: UnknownContent;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/types/PreparedLocalMessage.html b/types/PreparedLocalMessage.html index b490229d3..6951a874f 100644 --- a/types/PreparedLocalMessage.html +++ b/types/PreparedLocalMessage.html @@ -1 +1 @@ -PreparedLocalMessage | @xmtp/react-native-sdk

Type alias PreparedLocalMessage

PreparedLocalMessage: {
    messageId: string;
    preparedAt: number;
    preparedFileUri: `file://${string}`;
}

Type declaration

  • messageId: string
  • preparedAt: number
  • preparedFileUri: `file://${string}`

Generated using TypeDoc

\ No newline at end of file +PreparedLocalMessage | @xmtp/react-native-sdk

Type alias PreparedLocalMessage

PreparedLocalMessage: {
    messageId: string;
    preparedAt: number;
    preparedFileUri: `file://${string}`;
}

Type declaration

  • messageId: string
  • preparedAt: number
  • preparedFileUri: `file://${string}`

Generated using TypeDoc

\ No newline at end of file diff --git a/types/Query.html b/types/Query.html index b41e2d309..220fc0e24 100644 --- a/types/Query.html +++ b/types/Query.html @@ -1 +1 @@ -Query | @xmtp/react-native-sdk
Query: {
    contentTopic: string;
    direction?: "SORT_DIRECTION_ASCENDING" | "SORT_DIRECTION_DESCENDING";
    endTime?: number | Date;
    pageSize?: number;
    startTime?: number | Date;
}

Type declaration

  • contentTopic: string
  • Optional direction?: "SORT_DIRECTION_ASCENDING" | "SORT_DIRECTION_DESCENDING"
  • Optional endTime?: number | Date
  • Optional pageSize?: number
  • Optional startTime?: number | Date

Generated using TypeDoc

\ No newline at end of file +Query | @xmtp/react-native-sdk
Query: {
    contentTopic: string;
    direction?: "SORT_DIRECTION_ASCENDING" | "SORT_DIRECTION_DESCENDING";
    endTime?: number | Date;
    pageSize?: number;
    startTime?: number | Date;
}

Type declaration

  • contentTopic: string
  • Optional direction?: "SORT_DIRECTION_ASCENDING" | "SORT_DIRECTION_DESCENDING"
  • Optional endTime?: number | Date
  • Optional pageSize?: number
  • Optional startTime?: number | Date

Generated using TypeDoc

\ No newline at end of file diff --git a/types/ReactionContent.html b/types/ReactionContent.html index e493db151..47004d6c6 100644 --- a/types/ReactionContent.html +++ b/types/ReactionContent.html @@ -1 +1 @@ -ReactionContent | @xmtp/react-native-sdk

Type alias ReactionContent

ReactionContent: {
    action: "added" | "removed" | "unknown";
    content: string;
    reference: string;
    schema: "unicode" | "shortcode" | "custom" | "unknown";
}

Type declaration

  • action: "added" | "removed" | "unknown"
  • content: string
  • reference: string
  • schema: "unicode" | "shortcode" | "custom" | "unknown"

Generated using TypeDoc

\ No newline at end of file +ReactionContent | @xmtp/react-native-sdk

Type alias ReactionContent

ReactionContent: {
    action: "added" | "removed" | "unknown";
    content: string;
    reference: string;
    schema: "unicode" | "shortcode" | "custom" | "unknown";
}

Type declaration

  • action: "added" | "removed" | "unknown"
  • content: string
  • reference: string
  • schema: "unicode" | "shortcode" | "custom" | "unknown"

Generated using TypeDoc

\ No newline at end of file diff --git a/types/ReadReceiptContent.html b/types/ReadReceiptContent.html index a77ea8ad7..4d8de485d 100644 --- a/types/ReadReceiptContent.html +++ b/types/ReadReceiptContent.html @@ -1 +1 @@ -ReadReceiptContent | @xmtp/react-native-sdk

Type alias ReadReceiptContent

ReadReceiptContent: object

Generated using TypeDoc

\ No newline at end of file +ReadReceiptContent | @xmtp/react-native-sdk

Type alias ReadReceiptContent

ReadReceiptContent: object

Generated using TypeDoc

\ No newline at end of file diff --git a/types/RemoteAttachmentContent.html b/types/RemoteAttachmentContent.html index 35e923c4c..8acaa24dd 100644 --- a/types/RemoteAttachmentContent.html +++ b/types/RemoteAttachmentContent.html @@ -1 +1 @@ -RemoteAttachmentContent | @xmtp/react-native-sdk

Type alias RemoteAttachmentContent

RemoteAttachmentContent: RemoteAttachmentMetadata & {
    scheme: "https://";
    url: string;
}

Type declaration

  • scheme: "https://"
  • url: string

Generated using TypeDoc

\ No newline at end of file +RemoteAttachmentContent | @xmtp/react-native-sdk

Type alias RemoteAttachmentContent

RemoteAttachmentContent: RemoteAttachmentMetadata & {
    scheme: "https://";
    url: string;
}

Type declaration

  • scheme: "https://"
  • url: string

Generated using TypeDoc

\ No newline at end of file diff --git a/types/RemoteAttachmentMetadata.html b/types/RemoteAttachmentMetadata.html index 0481cb241..43138c43e 100644 --- a/types/RemoteAttachmentMetadata.html +++ b/types/RemoteAttachmentMetadata.html @@ -1 +1 @@ -RemoteAttachmentMetadata | @xmtp/react-native-sdk

Type alias RemoteAttachmentMetadata

RemoteAttachmentMetadata: {
    contentDigest: string;
    contentLength?: string;
    filename?: string;
    nonce: string;
    salt: string;
    secret: string;
}

Type declaration

  • contentDigest: string
  • Optional contentLength?: string
  • Optional filename?: string
  • nonce: string
  • salt: string
  • secret: string

Generated using TypeDoc

\ No newline at end of file +RemoteAttachmentMetadata | @xmtp/react-native-sdk

Type alias RemoteAttachmentMetadata

RemoteAttachmentMetadata: {
    contentDigest: string;
    contentLength?: string;
    filename?: string;
    nonce: string;
    salt: string;
    secret: string;
}

Type declaration

  • contentDigest: string
  • Optional contentLength?: string
  • Optional filename?: string
  • nonce: string
  • salt: string
  • secret: string

Generated using TypeDoc

\ No newline at end of file diff --git a/types/ReplyContent.html b/types/ReplyContent.html index debc9c9c0..5b75c58fd 100644 --- a/types/ReplyContent.html +++ b/types/ReplyContent.html @@ -1 +1 @@ -ReplyContent | @xmtp/react-native-sdk

Type alias ReplyContent

ReplyContent: {
    content: NativeMessageContent;
    reference: string;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file +ReplyContent | @xmtp/react-native-sdk

Type alias ReplyContent

ReplyContent: {
    content: NativeMessageContent;
    reference: string;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/types/StaticAttachmentContent.html b/types/StaticAttachmentContent.html index db4f46352..918f734e8 100644 --- a/types/StaticAttachmentContent.html +++ b/types/StaticAttachmentContent.html @@ -1 +1 @@ -StaticAttachmentContent | @xmtp/react-native-sdk

Type alias StaticAttachmentContent

StaticAttachmentContent: {
    data: string;
    filename: string;
    mimeType: string;
}

Type declaration

  • data: string
  • filename: string
  • mimeType: string

Generated using TypeDoc

\ No newline at end of file +StaticAttachmentContent | @xmtp/react-native-sdk

Type alias StaticAttachmentContent

StaticAttachmentContent: {
    data: string;
    filename: string;
    mimeType: string;
}

Type declaration

  • data: string
  • filename: string
  • mimeType: string

Generated using TypeDoc

\ No newline at end of file diff --git a/types/UnknownContent.html b/types/UnknownContent.html index 3ecef1f25..5f885d603 100644 --- a/types/UnknownContent.html +++ b/types/UnknownContent.html @@ -1 +1 @@ -UnknownContent | @xmtp/react-native-sdk

Type alias UnknownContent

UnknownContent: {
    contentTypeId: string;
}

Type declaration

  • contentTypeId: string

Generated using TypeDoc

\ No newline at end of file +UnknownContent | @xmtp/react-native-sdk

Type alias UnknownContent

UnknownContent: {
    contentTypeId: string;
}

Type declaration

  • contentTypeId: string

Generated using TypeDoc

\ No newline at end of file diff --git a/variables/XmtpContext.html b/variables/XmtpContext.html index c03834cda..8acee8ca4 100644 --- a/variables/XmtpContext.html +++ b/variables/XmtpContext.html @@ -1 +1 @@ -XmtpContext | @xmtp/react-native-sdk

Variable XmtpContextConst

XmtpContext: Context<XmtpContextValue> = ...

Generated using TypeDoc

\ No newline at end of file +XmtpContext | @xmtp/react-native-sdk

Variable XmtpContextConst

XmtpContext: Context<XmtpContextValue> = ...

Generated using TypeDoc

\ No newline at end of file diff --git a/variables/emitter.html b/variables/emitter.html index 1e1973b0f..a4e8cd78d 100644 --- a/variables/emitter.html +++ b/variables/emitter.html @@ -1 +1 @@ -emitter | @xmtp/react-native-sdk

Variable emitterConst

emitter: EventEmitter = ...

Generated using TypeDoc

\ No newline at end of file +emitter | @xmtp/react-native-sdk

Variable emitterConst

emitter: EventEmitter = ...

Generated using TypeDoc

\ No newline at end of file