@qrush/types 2.1.82 → 2.1.84

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 CHANGED
@@ -40,9 +40,7 @@ export interface ISocialProfile {
40
40
  languages?: string[];
41
41
  hobbies?: string[];
42
42
  preferredVenueType?: string[];
43
- mainVenue?: string | {
44
- title: string;
45
- }[];
43
+ mainVenue?: string[];
46
44
  consumption?: {
47
45
  alcohol?: string;
48
46
  tobacco?: string;
package/dist/Users.d.ts CHANGED
@@ -98,3 +98,15 @@ export type IFireUserUpdateNotificationToken = {
98
98
  notificationTokens: FieldValue;
99
99
  };
100
100
  export type IFireUserUpdateDatingPreference = Pick<IFireUser, 'interestedIn'>;
101
+ export type IRemoveVerificationResponse = {
102
+ success: boolean;
103
+ embeddingDeleted: boolean;
104
+ };
105
+ export type ICheckEmbeddingStatusRequest = {
106
+ userId: string;
107
+ };
108
+ export type ICheckEmbeddingStatusResponse = {
109
+ exists: boolean;
110
+ status: 'active' | 'banned' | 'not_found';
111
+ createdAt?: string;
112
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.82",
3
+ "version": "2.1.84",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",