@qrush/types 2.1.105 → 2.1.106
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 +5 -0
- package/package.json +1 -1
package/dist/Social.d.ts
CHANGED
|
@@ -81,6 +81,8 @@ export interface ISocialEntry {
|
|
|
81
81
|
lookingFor?: ILookingFor;
|
|
82
82
|
/** Event: eventStart; Weekly: computed from occurrenceDate + DaySchedule.eventStart */
|
|
83
83
|
entityStartTime?: Timestamp;
|
|
84
|
+
/** Weekly: computed from occurrenceDate + venue close time; used for precise overnight expiry */
|
|
85
|
+
entityEndTime?: Timestamp;
|
|
84
86
|
/** Flat boolean for efficient Firestore indexing (avoids != null on map field) */
|
|
85
87
|
hasLookingFor?: boolean;
|
|
86
88
|
hasSocialProfile?: boolean;
|
|
@@ -118,6 +120,7 @@ export interface ISetSocialStatusRequest {
|
|
|
118
120
|
entityType: SocialEntityType;
|
|
119
121
|
entityId: string;
|
|
120
122
|
day?: string;
|
|
123
|
+
occurrenceDate?: string;
|
|
121
124
|
}
|
|
122
125
|
export interface ISetSocialStatusResponse {
|
|
123
126
|
success: boolean;
|
|
@@ -134,6 +137,7 @@ export interface IUpdateLookingForRequest {
|
|
|
134
137
|
entityType: SocialEntityType;
|
|
135
138
|
entityId: string;
|
|
136
139
|
day?: string;
|
|
140
|
+
occurrenceDate?: string;
|
|
137
141
|
lookingFor: {
|
|
138
142
|
type?: LookingForType;
|
|
139
143
|
partyType?: PartyType;
|
|
@@ -160,6 +164,7 @@ export interface IUserSocialEntry {
|
|
|
160
164
|
entityType: SocialEntityType;
|
|
161
165
|
entityId: string;
|
|
162
166
|
day?: string;
|
|
167
|
+
occurrenceDate?: string;
|
|
163
168
|
type: SocialStatus;
|
|
164
169
|
}
|
|
165
170
|
export interface IGetUserSocialEntriesResponse {
|