@qrush/types 2.1.77 → 2.1.79
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/Connection.d.ts +1 -0
- package/dist/Social.d.ts +5 -4
- package/package.json +1 -1
package/dist/Connection.d.ts
CHANGED
package/dist/Social.d.ts
CHANGED
|
@@ -95,16 +95,17 @@ export interface IFilteredEntry {
|
|
|
95
95
|
isOwnEntry?: boolean;
|
|
96
96
|
}
|
|
97
97
|
export type SocialAction = 'going' | 'interested';
|
|
98
|
+
export type SocialStatus = 'interested' | 'going' | 'none';
|
|
98
99
|
export type SocialEntityType = 'event' | 'location' | 'weekly';
|
|
99
|
-
export interface
|
|
100
|
-
|
|
100
|
+
export interface ISetSocialStatusRequest {
|
|
101
|
+
desiredStatus: SocialStatus;
|
|
101
102
|
entityType: SocialEntityType;
|
|
102
103
|
entityId: string;
|
|
103
104
|
day?: string;
|
|
104
105
|
}
|
|
105
|
-
export interface
|
|
106
|
+
export interface ISetSocialStatusResponse {
|
|
106
107
|
success: boolean;
|
|
107
|
-
|
|
108
|
+
status: SocialStatus;
|
|
108
109
|
}
|
|
109
110
|
export type LookingForType = 'lfg' | 'lfm' | 'general';
|
|
110
111
|
export interface IUpdateLookingForRequest {
|