@qrush/types 2.1.89 → 2.1.90
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 +8 -0
- package/dist/Social.js +8 -1
- package/package.json +1 -1
package/dist/Social.d.ts
CHANGED
|
@@ -112,6 +112,10 @@ export interface ISetSocialStatusResponse {
|
|
|
112
112
|
success: boolean;
|
|
113
113
|
status: SocialStatus;
|
|
114
114
|
}
|
|
115
|
+
export declare const LFG_ACTIVITY_KEYS: readonly ["preparty", "dancing", "bar_hopping", "club_hopping", "stage", "after_hour", "afterparty", "late_night_food", "dressed_up", "promo"];
|
|
116
|
+
export type LfgActivity = (typeof LFG_ACTIVITY_KEYS)[number];
|
|
117
|
+
export declare const LFG_VIBE_KEYS: readonly ["party_hard", "chill", "spontaneous", "all_nighter", "first_time_here", "deep_talks"];
|
|
118
|
+
export type LfgVibe = (typeof LFG_VIBE_KEYS)[number];
|
|
115
119
|
export type LookingForType = 'lfg' | 'lfm' | 'general';
|
|
116
120
|
export interface IUpdateLookingForRequest {
|
|
117
121
|
action: SocialAction;
|
|
@@ -122,6 +126,8 @@ export interface IUpdateLookingForRequest {
|
|
|
122
126
|
type: LookingForType;
|
|
123
127
|
text?: string;
|
|
124
128
|
onlyVerified?: boolean;
|
|
129
|
+
activities?: LfgActivity[];
|
|
130
|
+
vibes?: LfgVibe[];
|
|
125
131
|
} | null;
|
|
126
132
|
}
|
|
127
133
|
export interface IUpdateLookingForResponse {
|
|
@@ -132,5 +138,7 @@ export interface ILookingFor {
|
|
|
132
138
|
type: LookingForType;
|
|
133
139
|
text?: string;
|
|
134
140
|
onlyVerified?: boolean;
|
|
141
|
+
activities?: LfgActivity[];
|
|
142
|
+
vibes?: LfgVibe[];
|
|
135
143
|
createdAt: Timestamp;
|
|
136
144
|
}
|
package/dist/Social.js
CHANGED
|
@@ -1 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
// --- LFG Activities & Vibes ---
|
|
2
|
+
export const LFG_ACTIVITY_KEYS = [
|
|
3
|
+
'preparty', 'dancing', 'bar_hopping', 'club_hopping', 'stage',
|
|
4
|
+
'after_hour', 'afterparty', 'late_night_food', 'dressed_up', 'promo',
|
|
5
|
+
];
|
|
6
|
+
export const LFG_VIBE_KEYS = [
|
|
7
|
+
'party_hard', 'chill', 'spontaneous', 'all_nighter', 'first_time_here', 'deep_talks',
|
|
8
|
+
];
|