@qrush/types 2.1.91 → 2.1.93

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.
Files changed (2) hide show
  1. package/dist/Social.d.ts +5 -2
  2. package/package.json +1 -1
package/dist/Social.d.ts CHANGED
@@ -117,13 +117,15 @@ export type LfgActivity = (typeof LFG_ACTIVITY_KEYS)[number];
117
117
  export declare const LFG_VIBE_KEYS: readonly ["party_hard", "chill", "spontaneous", "all_nighter", "first_time_here", "deep_talks"];
118
118
  export type LfgVibe = (typeof LFG_VIBE_KEYS)[number];
119
119
  export type LookingForType = 'lfg' | 'lfm' | 'general';
120
+ export type PartyType = 'solo' | 'group';
120
121
  export interface IUpdateLookingForRequest {
121
122
  action: SocialAction;
122
123
  entityType: SocialEntityType;
123
124
  entityId: string;
124
125
  day?: string;
125
126
  lookingFor: {
126
- type: LookingForType;
127
+ type?: LookingForType;
128
+ partyType?: PartyType;
127
129
  text?: string;
128
130
  onlyVerified?: boolean;
129
131
  activities?: LfgActivity[];
@@ -135,7 +137,8 @@ export interface IUpdateLookingForResponse {
135
137
  }
136
138
  export type EntryVisibility = 'clear' | 'blurred' | 'hidden';
137
139
  export interface ILookingFor {
138
- type: LookingForType;
140
+ type?: LookingForType;
141
+ partyType: PartyType;
139
142
  text?: string;
140
143
  onlyVerified?: boolean;
141
144
  activities?: LfgActivity[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.91",
3
+ "version": "2.1.93",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",