heartraite 1.0.180 → 1.0.182

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,5 +1,4 @@
1
1
  import { LoveLanguages, Personality } from "./ca.types";
2
- import { MatchCompatibility } from "./matchmaking.types";
3
2
  export type AMDatingSuggestions = {
4
3
  summary: string;
5
4
  suggestions: AMDatingSuggestion[];
@@ -86,7 +85,6 @@ export type AdvancedMatch = {
86
85
  personality: Personality;
87
86
  loveLanguages: LoveLanguages;
88
87
  }>;
89
- compatibility: MatchCompatibility;
90
88
  processing?: boolean;
91
89
  };
92
90
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.180",
3
+ "version": "1.0.182",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,5 +1,4 @@
1
1
  import { LoveLanguages, Personality } from "./ca.types";
2
- import { MatchCompatibility } from "./matchmaking.types";
3
2
 
4
3
  export type AMDatingSuggestions = {
5
4
  summary: string;
@@ -105,6 +104,5 @@ export type AdvancedMatch = {
105
104
  loveLanguages: LoveLanguages;
106
105
  }
107
106
  >;
108
- compatibility: MatchCompatibility;
109
107
  processing?: boolean;
110
108
  };