@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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
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;
|