@qrush/types 2.1.91 → 2.1.92

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 +2 -0
  2. package/package.json +1 -1
package/dist/Social.d.ts CHANGED
@@ -117,6 +117,7 @@ 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;
@@ -136,6 +137,7 @@ export interface IUpdateLookingForResponse {
136
137
  export type EntryVisibility = 'clear' | 'blurred' | 'hidden';
137
138
  export interface ILookingFor {
138
139
  type: LookingForType;
140
+ partyType: PartyType;
139
141
  text?: string;
140
142
  onlyVerified?: boolean;
141
143
  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.92",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",