@qrush/types 2.1.101 → 2.1.102
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/Social.d.ts +2 -1
- package/package.json +1 -1
package/dist/Social.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export interface ISocialProfileVisibility {
|
|
|
19
19
|
}
|
|
20
20
|
export type PrivacyTier = 'public_full' | 'public_restricted' | 'private' | 'custom';
|
|
21
21
|
export type ContactabilitySetting = 'everybody' | 'nobody' | 'only_verified';
|
|
22
|
+
export type ContactRequestState = 'allowed' | 'requires_verification' | 'blocked';
|
|
22
23
|
export interface ICustomPrivacyRules {
|
|
23
24
|
ageRange?: {
|
|
24
25
|
min: number;
|
|
@@ -105,7 +106,7 @@ export interface IFilteredEntry {
|
|
|
105
106
|
isOwnEntry?: boolean;
|
|
106
107
|
hasSocialProfile?: boolean;
|
|
107
108
|
isContact?: boolean;
|
|
108
|
-
contactRequestState?:
|
|
109
|
+
contactRequestState?: ContactRequestState;
|
|
109
110
|
}
|
|
110
111
|
export type SocialAction = 'going' | 'interested' | 'like';
|
|
111
112
|
export type SocialStatus = 'interested' | 'going' | 'like' | 'none';
|