perspectapi-ts-sdk 2.8.1 → 2.8.2
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.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/types/index.ts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -582,6 +582,7 @@ interface SiteUser {
|
|
|
582
582
|
status: 'active' | 'suspended' | 'pending_verification';
|
|
583
583
|
email_verified: boolean;
|
|
584
584
|
waitlist: boolean;
|
|
585
|
+
metadata?: Record<string, any>;
|
|
585
586
|
created_at: string;
|
|
586
587
|
last_login_at?: string;
|
|
587
588
|
}
|
|
@@ -646,6 +647,7 @@ interface UpdateSiteUserRequest {
|
|
|
646
647
|
first_name?: string;
|
|
647
648
|
last_name?: string;
|
|
648
649
|
avatar_url?: string;
|
|
650
|
+
metadata?: Record<string, any>;
|
|
649
651
|
}
|
|
650
652
|
interface SetProfileValueRequest {
|
|
651
653
|
value: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -582,6 +582,7 @@ interface SiteUser {
|
|
|
582
582
|
status: 'active' | 'suspended' | 'pending_verification';
|
|
583
583
|
email_verified: boolean;
|
|
584
584
|
waitlist: boolean;
|
|
585
|
+
metadata?: Record<string, any>;
|
|
585
586
|
created_at: string;
|
|
586
587
|
last_login_at?: string;
|
|
587
588
|
}
|
|
@@ -646,6 +647,7 @@ interface UpdateSiteUserRequest {
|
|
|
646
647
|
first_name?: string;
|
|
647
648
|
last_name?: string;
|
|
648
649
|
avatar_url?: string;
|
|
650
|
+
metadata?: Record<string, any>;
|
|
649
651
|
}
|
|
650
652
|
interface SetProfileValueRequest {
|
|
651
653
|
value: string;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -589,6 +589,7 @@ export interface SiteUser {
|
|
|
589
589
|
status: 'active' | 'suspended' | 'pending_verification';
|
|
590
590
|
email_verified: boolean;
|
|
591
591
|
waitlist: boolean;
|
|
592
|
+
metadata?: Record<string, any>;
|
|
592
593
|
created_at: string;
|
|
593
594
|
last_login_at?: string;
|
|
594
595
|
}
|
|
@@ -660,6 +661,7 @@ export interface UpdateSiteUserRequest {
|
|
|
660
661
|
first_name?: string;
|
|
661
662
|
last_name?: string;
|
|
662
663
|
avatar_url?: string;
|
|
664
|
+
metadata?: Record<string, any>;
|
|
663
665
|
}
|
|
664
666
|
|
|
665
667
|
export interface SetProfileValueRequest {
|