@qrush/types 2.1.75 → 2.1.77
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 +6 -2
- package/package.json +1 -1
package/dist/Social.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export interface ISocialEntry {
|
|
|
73
73
|
entityStartTime?: Timestamp;
|
|
74
74
|
/** Flat boolean for efficient Firestore indexing (avoids != null on map field) */
|
|
75
75
|
hasLookingFor?: boolean;
|
|
76
|
+
hasSocialProfile?: boolean;
|
|
76
77
|
privacyTier: PrivacyTier;
|
|
77
78
|
isVerified: boolean;
|
|
78
79
|
onlyVerified?: boolean;
|
|
@@ -105,14 +106,16 @@ export interface IToggleSocialActionResponse {
|
|
|
105
106
|
success: boolean;
|
|
106
107
|
isActive: boolean;
|
|
107
108
|
}
|
|
109
|
+
export type LookingForType = 'lfg' | 'lfm' | 'general';
|
|
108
110
|
export interface IUpdateLookingForRequest {
|
|
109
111
|
action: SocialAction;
|
|
110
112
|
entityType: SocialEntityType;
|
|
111
113
|
entityId: string;
|
|
112
114
|
day?: string;
|
|
113
115
|
lookingFor: {
|
|
114
|
-
|
|
116
|
+
type: LookingForType;
|
|
115
117
|
text?: string;
|
|
118
|
+
onlyVerified?: boolean;
|
|
116
119
|
} | null;
|
|
117
120
|
}
|
|
118
121
|
export interface IUpdateLookingForResponse {
|
|
@@ -120,7 +123,8 @@ export interface IUpdateLookingForResponse {
|
|
|
120
123
|
}
|
|
121
124
|
export type EntryVisibility = 'clear' | 'blurred' | 'hidden';
|
|
122
125
|
export interface ILookingFor {
|
|
123
|
-
|
|
126
|
+
type: LookingForType;
|
|
124
127
|
text?: string;
|
|
128
|
+
onlyVerified?: boolean;
|
|
125
129
|
createdAt: Timestamp;
|
|
126
130
|
}
|