@qrush/types 2.1.92 → 2.1.94

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 +7 -4
  2. package/package.json +1 -1
package/dist/Social.d.ts CHANGED
@@ -7,7 +7,8 @@ export interface ISocialProfileVisibility {
7
7
  openFor: FieldVisibility;
8
8
  musicTaste: FieldVisibility;
9
9
  languages: FieldVisibility;
10
- hobbies: FieldVisibility;
10
+ signatureMove: FieldVisibility;
11
+ nightlifeVibe: FieldVisibility;
11
12
  preferredVenueType: FieldVisibility;
12
13
  mainVenue: FieldVisibility;
13
14
  alcoholConsumption: FieldVisibility;
@@ -38,7 +39,8 @@ export interface ISocialProfile {
38
39
  openFor?: string[];
39
40
  musicTaste?: string[];
40
41
  languages?: string[];
41
- hobbies?: string[];
42
+ signatureMove?: string;
43
+ nightlifeVibe?: string[];
42
44
  preferredVenueType?: string[];
43
45
  mainVenue?: string[];
44
46
  consumption?: {
@@ -124,7 +126,8 @@ export interface IUpdateLookingForRequest {
124
126
  entityId: string;
125
127
  day?: string;
126
128
  lookingFor: {
127
- type: LookingForType;
129
+ type?: LookingForType;
130
+ partyType?: PartyType;
128
131
  text?: string;
129
132
  onlyVerified?: boolean;
130
133
  activities?: LfgActivity[];
@@ -136,7 +139,7 @@ export interface IUpdateLookingForResponse {
136
139
  }
137
140
  export type EntryVisibility = 'clear' | 'blurred' | 'hidden';
138
141
  export interface ILookingFor {
139
- type: LookingForType;
142
+ type?: LookingForType;
140
143
  partyType: PartyType;
141
144
  text?: string;
142
145
  onlyVerified?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.92",
3
+ "version": "2.1.94",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",