You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* ui fixes for 3a onboarding / link bank (#17347)
# Design fixes for 3a onboarding / link bank
This addresses several design requests from a recent design review:
Link bank
1. add an 8px left margin to align with title and input box
2. set a min height
3. group "about iban" with bottom button
4. use bridge modal for iban bank info
on Verify3aIdentity
1. remove the back button
2. set border radius and border width on birthday input
GitOrigin-RevId: c243af24b20620cf01718c1415dc3898a116ad1e
* Refactor link bank mx with new UI (#17742)
GitOrigin-RevId: 01278048d8d810d6cc99a069886c78463543c57e
* [S2C] Fix url query for receipt id in share link (#17758)
This PR:
- Updates BridgeCardForm/Add-credential to check is_shadow search param
- Makes BirthdayInput text size per spec
- Makes EntBridgeUserExample default to is_shadow is false for tests
GitOrigin-RevId: 11141e9265731a824e0e17d0a0875d91c883892c
* [bridge] add amplitude session replays (#18078)
GitOrigin-RevId: a38c4e1e23d85ce9dbfd0e43fe1a46118786ec26
* CI update lock file for PR
* [bridge] Update UMA activation flow with onboarding progress indicators (#18149)
# UMA Activation UI Enhancements
This PR improves the UMA activation experience with several UI updates:
- Added a new "Confirm your phone" onboarding step with appropriate icon and translations
- Enhanced the UMA card with a new activation banner showing completion progress
- Updated welcome messaging to be more inviting ("Welcome to UMA!" instead of "Complete Setup")
- Improved the onboarding progress modal with:
- Changed button text from "Get Started" to "Continue"
- Added "In Progress" status indicator for current steps
- Updated modal title to "Activate your UMA" for clarity
- Added new translations for all new UI elements in English, Spanish, and Portuguese
- Refined styling for various UI components including rounded corners and consistent spacing


GitOrigin-RevId: 9e9b291a7137b2f67ad2ac5c8036dc207f152f74
* Update packages for cross-spawn security alert (#18100)
GitOrigin-RevId: 76b711f021ad7182c620fe9562ef05686af00a23
* CI update lock file for PR
* add create invitation with payment to lightspark sdk (#18198)
### TL;DR
Added support for creating UMA invitations with attached payments.
### What changed?
- Added a new GraphQL mutation `CreateUmaInvitationWithPayment.ts` that allows creating UMA invitations with an attached payment
- Implemented a new client method `createUmaInvitationWithPayment()` in the LightsparkClient class that accepts:
- inviterUma (string)
- amountToSend (object with amount and currency details)
- expiresAt (string or Date)
- Added proper error handling and type conversion for the new method
### How to test?
Test the new functionality by calling the `createUmaInvitationWithPayment()` method with valid parameters:
```typescript
const invitation = await client.createUmaInvitationWithPayment(
"[email protected]",
{
amount: 1000, // amount in cents
currency: {
code: "USD",
symbol: "$",
name: "US Dollar",
decimals: 2
}
},
new Date(Date.now() + 86400000) // expires in 24 hours
);
```
Verify that the returned invitation object contains the expected payment details.
### Why make this change?
This enhancement allows users to create UMA invitations with payments attached, enabling a more seamless onboarding experience where new users can receive funds as part of their invitation. This feature expands the functionality of the UMA invitation system and provides more flexibility for application developers.
GitOrigin-RevId: b322a58977f940ddd5d49faa0dbd08940cf056e3
* add cancel uma invitation to js lightspark sdk (#18201)
### TL;DR
Added functionality to cancel UMA invitations in the Lightspark SDK.
### What changed?
- Added a new `cancelUmaInvitation` method to the `LightsparkClient` class that allows canceling UMA invitations by their invite code
- Created a new GraphQL mutation file `CancelUmaInvitation.ts` that defines the mutation for canceling UMA invitations
- Imported the new mutation in the client file
### How to test?
1. Create a UMA invitation using the existing SDK methods
2. Call the new `cancelUmaInvitation` method with the invitation code
3. Verify that the invitation is successfully canceled and the method returns the canceled invitation object
4. Try to claim the canceled invitation and confirm it fails
### Why make this change?
This change provides users with the ability to cancel UMA invitations that were previously created but are no longer needed. This completes the UMA invitation lifecycle management in the SDK, which already supported creating and claiming invitations.
GitOrigin-RevId: df6edac150e6443f6a020d77fb37bbaa4a616bdb
* [lightspark-sdk, core] Remove crypto-browserify as dependencies (#18296)
GitOrigin-RevId: 033289ee54c0aeb55422589e986923593c5cfa0a
* CI update lock file for PR
* Add time localization when in progress (#18266)


GitOrigin-RevId: fbaaa90c14ca2c2fe4f3379d91310836fd8aa713
* debug
* Add human-id as dep
* remove unused
* Create pretty-radios-rest.md
* Create thirty-planets-sleep.md
* Create twenty-hands-grow.md
---------
Co-authored-by: Matt Davis <[email protected]>
Co-authored-by: Jason Wang <[email protected]>
Co-authored-by: Brian Siao Tick Chong <[email protected]>
Co-authored-by: Lightspark Eng <[email protected]>
Co-authored-by: Aaryaman Bhute <[email protected]>
Co-authored-by: Joel Weinberger <[email protected]>
Co-authored-by: Corey Martin <[email protected]>
0 commit comments