-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #713 from xmtp/rygine/updates
Update Browser SDK
- Loading branch information
Showing
21 changed files
with
188 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@xmtp/browser-sdk": patch | ||
--- | ||
|
||
Update Browser SDK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ yarn-error.log* | |
|
||
# local env files | ||
.env* | ||
!.env.example | ||
|
||
# turbo | ||
.turbo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
VITE_PROJECT_ID= # Your Reown (https://reown.com/) project ID | ||
VITE_ENCRYPTION_KEY= # 32 byte hex string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"extends": "tsconfig/base.json", | ||
"includes": ["src", "rollup.config.js", "vitest.config.ts", "vitest.setup.ts"] | ||
"include": ["src", "rollup.config.js", "vitest.config.ts"], | ||
"exclude": ["dist", "node_modules"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,36 @@ | ||
export { Client } from "./Client"; | ||
export { Conversations } from "./Conversations"; | ||
export { Conversation } from "./Conversation"; | ||
export * from "./DecodedMessage"; | ||
export type { MessageDeliveryStatus, MessageKind } from "./DecodedMessage"; | ||
export { DecodedMessage } from "./DecodedMessage"; | ||
export { Utils } from "./Utils"; | ||
export { ApiUrls } from "./constants"; | ||
export type * from "./types"; | ||
export * from "./utils/conversions"; | ||
export type * from "@xmtp/wasm-bindings"; | ||
export { | ||
ConsentEntityType, | ||
ConsentState, | ||
ConversationType, | ||
CreateGroupOptions, | ||
DeliveryStatus, | ||
GroupMembershipState, | ||
EncodedContent, | ||
GroupMember, | ||
GroupMetadata, | ||
GroupPermissions, | ||
GroupMessageKind, | ||
GroupPermissionsOptions, | ||
InboxState, | ||
Installation, | ||
ListConversationsOptions, | ||
ListMessagesOptions, | ||
Message, | ||
PermissionLevel, | ||
PermissionPolicy, | ||
PermissionPolicySet, | ||
PermissionUpdateType, | ||
SignatureRequestType, | ||
SortDirection, | ||
Consent, | ||
ContentTypeId, | ||
} from "@xmtp/wasm-bindings"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.