Skip to content

Commit 203da76

Browse files
Version Packages (#5714)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent cd55ada commit 203da76

File tree

7 files changed

+49
-50
lines changed

7 files changed

+49
-50
lines changed

.changeset/fast-items-film.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.changeset/odd-flies-eat.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/strong-snails-jam.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/service-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @thirdweb-dev/service-utils
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- [#5708](https://github.com/thirdweb-dev/js/pull/5708) [`3ec808d`](https://github.com/thirdweb-dev/js/commit/3ec808dc782489ecf8cde136b36106793babe7ca) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Update /use endpoint and types to v2
8+
39
## 0.4.52
410

511
### Patch Changes

packages/service-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/service-utils",
3-
"version": "0.4.52",
3+
"version": "0.5.0",
44
"type": "module",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

packages/thirdweb/CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
11
# thirdweb
22

3+
## 5.78.0
4+
5+
### Minor Changes
6+
7+
- [#5709](https://github.com/thirdweb-dev/js/pull/5709) [`cd55ada`](https://github.com/thirdweb-dev/js/commit/cd55ada5b2c1924911a0b3c95c07926062447d54) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Adds a defaultSmsCountryCode configuration option to In-App and Ecosystem Wallets
8+
9+
```ts
10+
createWallet("inApp", {
11+
auth: {
12+
options: [
13+
"email",
14+
"phone",
15+
],
16+
mode: "redirect",
17+
defaultSmsCountryCode: "IN", // Default country code for SMS
18+
},
19+
}),
20+
```
21+
22+
- [#5604](https://github.com/thirdweb-dev/js/pull/5604) [`03b6d0d`](https://github.com/thirdweb-dev/js/commit/03b6d0d516c7fb809ad66f1021281a74b48356e1) Thanks [@ElasticBottle](https://github.com/ElasticBottle)! - Support the ability to unlink accounts for in app wallet with more than 1 linked account.
23+
24+
It's supported out of the box in the connect UI.
25+
26+
For typescript users, the following code snippet is a simple example of how it'd work.
27+
28+
```typescript
29+
import { inAppWallet } from "thirdweb/wallets";
30+
31+
const wallet = inAppWallet();
32+
wallet.connect({ strategy: "google" });
33+
34+
const profiles = await getProfiles({
35+
client,
36+
});
37+
38+
const updatedProfiles = await unlinkProfile({
39+
client,
40+
profileToUnlink: profiles[1], // assuming there is more than 1 profile linked to the user.
41+
});
42+
```
43+
344
## 5.77.0
445

546
### Minor Changes

packages/thirdweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.77.0",
3+
"version": "5.78.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)