@burnt-labs/expo-satya-attest 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/PROVIDER_CONFIG.md +362 -498
- package/android/build.gradle +2 -2
- package/build/providers.json +74 -29
- package/ios/Frameworks/libsatya_ffi-rs.xcframework/Info.plist +5 -5
- package/ios/Frameworks/libsatya_ffi-rs.xcframework/ios-arm64/libsatya_ffi.a +0 -0
- package/ios/Frameworks/libsatya_ffi-rs.xcframework/ios-arm64_x86_64-simulator/libsatya_ffi.a +0 -0
- package/ios/SatyaAttest.podspec +1 -1
- package/package.json +1 -1
- package/src/providers.json +74 -29
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.1 - 2026-06-15
|
|
4
|
+
|
|
5
|
+
- Added an **Amazon** account provider (`amazon.prime.v1`). It captures the signed-in `amazon.com` home document and gates the proof on a non-empty `customerId` (logged-out pages ship `"customerId":""`), so capture only fires after login. Discloses Amazon Prime membership status (`is_prime_customer`), `first_name`, and the customer id (`user_id`). A lightweight injection clicks the "Sign in" link to start login; Amazon returns to the home page afterward, so no extra navigation is needed.
|
|
6
|
+
- Added a **Netflix** account provider (`netflix.account.v1`). It captures the `netflix.com/account` page and discloses `account_email`, `member_since`, `user_guid`, `country_of_signup`, and `first_name`.
|
|
7
|
+
|
|
3
8
|
## 0.3.0 - 2026-06-14
|
|
4
9
|
|
|
5
10
|
- Reworked the managed provider WebView into a polished, native-feeling surface: removed the browser-style chrome (address/host bar, lock icon, reload, and close buttons) so the flow reads as a screen of the host app rather than an in-app browser.
|