@qrush/types 2.1.92 → 2.1.93

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 +3 -2
  2. package/package.json +1 -1
package/dist/Social.d.ts CHANGED
@@ -124,7 +124,8 @@ export interface IUpdateLookingForRequest {
124
124
  entityId: string;
125
125
  day?: string;
126
126
  lookingFor: {
127
- type: LookingForType;
127
+ type?: LookingForType;
128
+ partyType?: PartyType;
128
129
  text?: string;
129
130
  onlyVerified?: boolean;
130
131
  activities?: LfgActivity[];
@@ -136,7 +137,7 @@ export interface IUpdateLookingForResponse {
136
137
  }
137
138
  export type EntryVisibility = 'clear' | 'blurred' | 'hidden';
138
139
  export interface ILookingFor {
139
- type: LookingForType;
140
+ type?: LookingForType;
140
141
  partyType: PartyType;
141
142
  text?: string;
142
143
  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.93",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",