@swype-org/react-sdk 0.1.257 → 0.1.258

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/dist/index.d.cts CHANGED
@@ -118,6 +118,8 @@ interface TransferSignPayload {
118
118
  /** Transfer object returned by the API */
119
119
  interface Transfer {
120
120
  id: string;
121
+ /** `guest` for guest checkout; `standard` for Privy + smart account flows. */
122
+ type?: 'standard' | 'guest';
121
123
  status: string;
122
124
  sources: Array<{
123
125
  id: string;
package/dist/index.d.ts CHANGED
@@ -118,6 +118,8 @@ interface TransferSignPayload {
118
118
  /** Transfer object returned by the API */
119
119
  interface Transfer {
120
120
  id: string;
121
+ /** `guest` for guest checkout; `standard` for Privy + smart account flows. */
122
+ type?: 'standard' | 'guest';
121
123
  status: string;
122
124
  sources: Array<{
123
125
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swype-org/react-sdk",
3
- "version": "0.1.257",
3
+ "version": "0.1.258",
4
4
  "description": "Blink React SDK — drop-in payment widget and hooks for integrating Blink payments",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",