diff --git a/classes/Client.html b/classes/Client.html index b57d38117..fedb5f185 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 c0935a542..0036e17b8 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 f0f4d1594..c5c3f34e9 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 2a125ab39..64ffc5c66 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 73e899ad2..5cd8be310 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

createdAt: number
creatorInboxId: InboxId
description: string
id: string
imageUrlSquare: string
isGroupActive: boolean
name: string
peerInboxIds: InboxId[]
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

createdAt: number
creatorInboxId: InboxId
description: string
id: string
imageUrlSquare: string
isGroupActive: boolean
name: string
peerInboxIds: InboxId[]
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 the inbox id that added you to the group. To get the latest added by inbox id from the network, call sync() first.

    Returns Promise<InboxId>

    A Promise that resolves to the inbox id that added you to the group.

    -
  • 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 e3a234297..f5f0c4ecd 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 217da3576..721b1c606 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 44b0368b8..d6ba0d0a3 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 d738d3390..39ba37e91 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 d2fdb6dab..8f73ad64a 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 eba0e8c83..900430c12 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 0ce73c1ea..2a3eaecab 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 baffafaa1..68e520a57 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 f0c905d0b..c25051def 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 e3c8ae640..4b7300ca6 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 f19b3d477..15b03ea70 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 55543c3e4..c3047e21d 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 6e17fb515..7a7e8db77 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 f302b4429..1295f0860 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 aa8642a2d..c7729ee75 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 65772ba4d..4bdf5c246 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 0c56de323..81af0a297 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 8120fa210..09b00603d 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 70755dac2..e2768eb05 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 e31f62d78..a3920fbf7 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 a502b09a2..ae06f3c2a 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 130bf7089..0a873ad81 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 b8f1350ee..b9ac7608b 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 1f8b4c99b..bf8cf4d61 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 1f8c08170..654a12fad 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 7d6683f4c..3c54b19ad 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 f56e1cf02..90df2aeb9 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 baa2212c4..f22964580 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 4c81cf9c8..aa467dedd 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 b58a754d4..c94c7259f 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 a91434f26..8153c4d99 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 44f54cde1..155410529 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 24d13d2c7..f9e7a31c3 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 508746312..686cad480 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 82f3b476f..d13ddba4b 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 967b7c5f2..d6a7909c5 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 bdc04e816..55ebeaf87 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 7645cbea0..32924c015 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 28b4304ee..cacc233d8 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 e38cd9bc9..59aee70ef 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 7fb0c5ca4..328d82117 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 2e387e70d..280ece97c 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 b6e558497..688ca91c2 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 2048b41bf..02f2dc327 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 1965f1fe7..e2c36d4fc 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 830dfaaae..cfd4873d9 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 807c62a52..9c45ef353 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 7ab4c418b..9d65d3c37 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 ac3c82712..7195905b0 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 dc9b05b79..9c12f0e48 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 4c28a8542..c93ea6225 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 09df5be60..8c38e73d3 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 1300ad825..558a382b7 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 838a572e7..c78ff8f8a 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 ed9100a7e..fbbb5cf86 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 e3f327b2f..1d7675e99 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 4a92ef270..ada440e7b 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 1933c6323..2a82e944a 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 59b7921a5..1ffedfd26 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 af7da7a2e..ca499fc22 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 ef383b5f8..de0746e25 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 ef2461a51..fd5944ac5 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 100d91f5b..3b07d936d 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 dbb04e234..cfba23f40 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 3aae469bd..ccf4e2a1d 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 e032ecb7b..2cba69d77 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 7ce17eb6c..8de56e44a 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 d6942a8b9..beb3f9750 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 c5bdb4d3a..cccb9bb5b 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 da84f5a71..d359ea518 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 cf4854621..3a448c1e2 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 242191d88..29d8047b9 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 1f7dc378a..2782cacbd 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 de182f246..03e8b20bb 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 2e0b1b472..bb80b5e45 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 dea726365..1c69c905a 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 66ff319a9..59d1a50f0 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 aa7dcecd9..0fe326b2d 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 efa78ddce..226b8f5f6 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 780625cfd..bd9a5baa2 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 e393378c1..a00a06734 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 51b478029..830d78217 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 d06d04e70..08dec9058 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 e36dd76c2..9dd75bb7c 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 c659eb1bb..0440bfe02 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 934b8601c..23ae23815 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 fbca9cb7f..315018206 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 ce869c05d..f729e599e 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 1b305c12b..5c344cd69 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 0c5462ed6..d0459bd64 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 24d166630..725f5cc83 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 cd14010c4..c7b1b65cc 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 8a3296d3a..bee5213d4 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 e30c98fae..870b6fe54 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 49c3bd6dc..2efcf3c6e 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 a87b709c8..318355510 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 3ffae8a03..7e127830f 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 ddac5f80d..db0a52491 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 3ca0e7b6e..834dfb770 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 d86d67d35..5ab1daf4a 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 3094979ec..f57382fa4 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 2417ec1d6..65ebb23f6 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 3e1a3c379..d72f78ad3 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 3939353a1..ea50ac399 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 b4c07751a..b73ad11ad 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 0680933fc..826c823da 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 9036dc07d..1166c4158 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 d4adb505f..cc9a07a2e 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 945f1fd79..aefc28bad 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 fe1966fa7..77545b585 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 ef5aa3954..17f8833d8 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 e3e5a78ef..5e110ce89 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 8e680dda8..37fa2aa6a 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 972390531..64902cc5c 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 a126a5e37..e001bd866 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 b15ef5cca..2b147a9d0 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 cfb70e9bc..ca369d994 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 aa8330efe..5ccf5fa09 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 52d8d0e46..89a6b4226 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 49935ca9b..55c39ec47 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 fe08670cf..7060bf6b2 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 47a7aea76..8c9f52a10 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 7a52afea9..df6be6a5d 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 989cc7a80..adfd53a7b 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 0024bd90a..07e172650 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 7c3d319c7..f1dec49fb 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 2c5947f45..7b3344ac0 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 f5a10208f..e0c975944 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 11a210b4b..cf1894a7f 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 d8bace577..317aa6d07 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 cf6eaa8c9..a0ce2e35f 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 f21126199..2cae160fe 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 1b91be6e9..10e093588 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 face4ce37..e9a96eb05 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 52b0eaf99..995fb4eac 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 5de387dba..8dcaa686a 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 8c12e105c..7c105f301 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 c259349ab..91068a3b2 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 d51cc4e02..3946ea936 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 b9d62ab3f..f7f750b92 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 404a3281c..7a0301a25 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 d938d5dd4..81e7073ab 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 23ec07611..d85c0bece 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 b072b6aec..50fcf9595 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 7b25cbcf6..f3d767e52 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 e9423c30f..47cff2e19 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 faed5cd9e..e8df3a375 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 c498613e5..37143e831 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 272fa045c..5a8f0e81f 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 b60a66bbd..5a32c27e2 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 ea69278ab..75933c7ca 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 2c4183b1b..9c117dea6 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 ba88f94d2..e51db206d 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 a834f3a7d..31d96c6e7 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 c45f3c4e9..718cd53c0 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 99d772aa8..6e9bd5d62 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 56d85d53f..cb2ff8962 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 a8aa8ecb4..d7ff1ee14 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 388e95102..0848c3d85 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