@sparkvault/sdk-mobile 3.0.0 → 3.1.0
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/types.d.ts +2 -2
- package/package.json +1 -1
- package/src/types.ts +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -529,8 +529,8 @@ export type SparkShareStatus = {
|
|
|
529
529
|
link_code: string;
|
|
530
530
|
visibility: string;
|
|
531
531
|
invites: string[];
|
|
532
|
-
|
|
533
|
-
|
|
532
|
+
/** Single-use lifecycle: 'active' → 'consumed' (opened once) | 'revoked'. */
|
|
533
|
+
status: string;
|
|
534
534
|
expires_at?: number;
|
|
535
535
|
created_at?: number;
|
|
536
536
|
};
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -626,8 +626,8 @@ export type SparkShareStatus =
|
|
|
626
626
|
link_code: string;
|
|
627
627
|
visibility: string;
|
|
628
628
|
invites: string[];
|
|
629
|
-
|
|
630
|
-
|
|
629
|
+
/** Single-use lifecycle: 'active' → 'consumed' (opened once) | 'revoked'. */
|
|
630
|
+
status: string;
|
|
631
631
|
expires_at?: number;
|
|
632
632
|
created_at?: number;
|
|
633
633
|
};
|