@qrush/types 2.1.76 → 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 +5 -2
- package/package.json +1 -1
package/dist/Social.d.ts
CHANGED
|
@@ -106,14 +106,16 @@ export interface IToggleSocialActionResponse {
|
|
|
106
106
|
success: boolean;
|
|
107
107
|
isActive: boolean;
|
|
108
108
|
}
|
|
109
|
+
export type LookingForType = 'lfg' | 'lfm' | 'general';
|
|
109
110
|
export interface IUpdateLookingForRequest {
|
|
110
111
|
action: SocialAction;
|
|
111
112
|
entityType: SocialEntityType;
|
|
112
113
|
entityId: string;
|
|
113
114
|
day?: string;
|
|
114
115
|
lookingFor: {
|
|
115
|
-
|
|
116
|
+
type: LookingForType;
|
|
116
117
|
text?: string;
|
|
118
|
+
onlyVerified?: boolean;
|
|
117
119
|
} | null;
|
|
118
120
|
}
|
|
119
121
|
export interface IUpdateLookingForResponse {
|
|
@@ -121,7 +123,8 @@ export interface IUpdateLookingForResponse {
|
|
|
121
123
|
}
|
|
122
124
|
export type EntryVisibility = 'clear' | 'blurred' | 'hidden';
|
|
123
125
|
export interface ILookingFor {
|
|
124
|
-
|
|
126
|
+
type: LookingForType;
|
|
125
127
|
text?: string;
|
|
128
|
+
onlyVerified?: boolean;
|
|
126
129
|
createdAt: Timestamp;
|
|
127
130
|
}
|