@qrush/types 2.1.98 → 2.1.99

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.
@@ -135,9 +135,9 @@ export type IFireLocation = {
135
135
  activeOwnerCount?: number;
136
136
  hasPromotions: boolean;
137
137
  promotionTeasers?: PromotionTeaser[];
138
- /** @deprecated kept for backwards compat — use interestedUsers subcollection */
138
+ /** @deprecated Legacy field still read by app versions in production. Do not use for new features — use socialEntries subcollection instead. */
139
139
  bookmarkUserIds?: string[];
140
- interestedCount?: number;
140
+ likeCount?: number;
141
141
  weeklyGoingCount?: {
142
142
  [day: string]: number;
143
143
  };
package/dist/Social.d.ts CHANGED
@@ -70,7 +70,7 @@ export interface ISocialEntry {
70
70
  day?: string;
71
71
  /** Resolved occurrence date (YYYY-MM-DD) for weekly entries */
72
72
  occurrenceDate?: string;
73
- type: 'going' | 'interested';
73
+ type: 'going' | 'interested' | 'like';
74
74
  citySlug?: string;
75
75
  entityId?: string;
76
76
  entityType?: SocialEntityType;
@@ -94,7 +94,7 @@ export interface IFilteredEntry {
94
94
  name: string;
95
95
  avatarURL: string;
96
96
  isVerified: boolean;
97
- type: 'going' | 'interested';
97
+ type: 'going' | 'interested' | 'like';
98
98
  visibility: 'clear' | 'anonymous';
99
99
  lookingFor?: ILookingFor;
100
100
  hasLookingFor?: boolean;
@@ -103,8 +103,8 @@ export interface IFilteredEntry {
103
103
  hasSocialProfile?: boolean;
104
104
  isContact?: boolean;
105
105
  }
106
- export type SocialAction = 'going' | 'interested';
107
- export type SocialStatus = 'interested' | 'going' | 'none';
106
+ export type SocialAction = 'going' | 'interested' | 'like';
107
+ export type SocialStatus = 'interested' | 'going' | 'like' | 'none';
108
108
  export type SocialEntityType = 'event' | 'location' | 'weekly';
109
109
  export interface ISetSocialStatusRequest {
110
110
  desiredStatus: SocialStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.98",
3
+ "version": "2.1.99",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",