@qrush/types 2.1.89 → 2.1.91

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 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
- export {};
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
+ ];
package/dist/index.d.ts CHANGED
@@ -20,3 +20,4 @@ export * from './Conversation.js';
20
20
  export * from './Social.js';
21
21
  export * from './Report.js';
22
22
  export * from './Connection.js';
23
+ export * from './requests/CompleteRegistration.js';
package/dist/index.js CHANGED
@@ -20,3 +20,4 @@ export * from './Conversation.js';
20
20
  export * from './Social.js';
21
21
  export * from './Report.js';
22
22
  export * from './Connection.js';
23
+ export * from './requests/CompleteRegistration.js';
@@ -0,0 +1,28 @@
1
+ import { Gender } from '../Users.js';
2
+ export interface ICompleteRegistrationRequest {
3
+ name: string;
4
+ birthday: string;
5
+ gender: Gender;
6
+ email?: string;
7
+ marketingConsent: boolean;
8
+ phone?: {
9
+ countryCode: string;
10
+ number: string;
11
+ };
12
+ appleAuth?: {
13
+ user: string;
14
+ name?: string;
15
+ email?: string;
16
+ };
17
+ googleAuth?: {
18
+ uid: string;
19
+ email?: string;
20
+ displayName?: string;
21
+ photoURL?: string;
22
+ };
23
+ selectedCity?: string;
24
+ referralCode?: string;
25
+ }
26
+ export interface ICompleteRegistrationResponse {
27
+ success: true;
28
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.89",
3
+ "version": "2.1.91",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",