heartraite 1.0.76 → 1.0.78

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.
@@ -1,2 +1,2 @@
1
- import { MatchmakingMode } from "src/enum";
1
+ import { MatchmakingMode } from "../enum";
2
2
  export declare const MATCHMAKING_MODES: MatchmakingMode[];
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.MATCHMAKING_MODES = void 0;
4
- const enum_1 = require("src/enum");
4
+ const enum_1 = require("../enum");
5
5
  exports.MATCHMAKING_MODES = Object.values(enum_1.MatchmakingMode);
@@ -132,6 +132,7 @@ export type UpdateUserRequest = {
132
132
  lat: number;
133
133
  lng: number;
134
134
  };
135
+ appVersion?: string;
135
136
  };
136
137
  export type DeleteUserRequest = {
137
138
  validationPhrase: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.76",
3
+ "version": "1.0.78",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,3 +1,3 @@
1
- import { MatchmakingMode } from "src/enum";
1
+ import { MatchmakingMode } from "../enum";
2
2
 
3
3
  export const MATCHMAKING_MODES = Object.values(MatchmakingMode);
@@ -137,6 +137,7 @@ export type UpdateUserRequest = {
137
137
  UserNotifications & { expoPushToken?: Partial<string> }
138
138
  >;
139
139
  geoLocation?: { lat: number; lng: number };
140
+ appVersion?: string;
140
141
  };
141
142
  export type DeleteUserRequest = {
142
143
  validationPhrase: string;