heartraite 1.0.84 → 1.0.85

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.
@@ -127,6 +127,7 @@ export type UpdateUserRequest = {
127
127
  preferences?: DeepPartial<DatingPreferences>;
128
128
  notifications?: DeepPartial<UserNotifications & {
129
129
  expoPushToken?: Partial<string>;
130
+ platform?: string;
130
131
  }>;
131
132
  geoLocation?: {
132
133
  lat: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -134,7 +134,7 @@ export type UpdateUserRequest = {
134
134
  profile?: DeepPartial<UserProfile>;
135
135
  preferences?: DeepPartial<DatingPreferences>;
136
136
  notifications?: DeepPartial<
137
- UserNotifications & { expoPushToken?: Partial<string> }
137
+ UserNotifications & { expoPushToken?: Partial<string>; platform?: string }
138
138
  >;
139
139
  geoLocation?: { lat: number; lng: number };
140
140
  appVersion?: string;