heartraite 1.0.180 → 1.0.181

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,3 @@
1
- import { LoveLanguages, Personality } from "./ca.types";
2
- import { MatchCompatibility } from "./matchmaking.types";
3
1
  export type AMDatingSuggestions = {
4
2
  summary: string;
5
3
  suggestions: AMDatingSuggestion[];
@@ -70,7 +68,6 @@ export type AMStrengthsAndChallenges = {
70
68
  strengths: AMStrength[];
71
69
  challenges: AMChallenge[];
72
70
  };
73
- type UserId = string;
74
71
  export type AdvancedMatch = {
75
72
  id: string;
76
73
  matchId: string;
@@ -82,11 +79,5 @@ export type AdvancedMatch = {
82
79
  personality: AMPersonality;
83
80
  loveLanguages: AMLoveLanguages;
84
81
  interestActivity: AMInterestActivity;
85
- scores: Record<UserId, {
86
- personality: Personality;
87
- loveLanguages: LoveLanguages;
88
- }>;
89
- compatibility: MatchCompatibility;
90
82
  processing?: boolean;
91
83
  };
92
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.180",
3
+ "version": "1.0.181",
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,3 @@
1
- import { LoveLanguages, Personality } from "./ca.types";
2
- import { MatchCompatibility } from "./matchmaking.types";
3
1
 
4
2
  export type AMDatingSuggestions = {
5
3
  summary: string;
@@ -85,8 +83,6 @@ export type AMStrengthsAndChallenges = {
85
83
  challenges: AMChallenge[];
86
84
  };
87
85
 
88
- type UserId = string;
89
-
90
86
  export type AdvancedMatch = {
91
87
  id: string;
92
88
  matchId: string;
@@ -98,13 +94,5 @@ export type AdvancedMatch = {
98
94
  personality: AMPersonality;
99
95
  loveLanguages: AMLoveLanguages;
100
96
  interestActivity: AMInterestActivity;
101
- scores: Record<
102
- UserId,
103
- {
104
- personality: Personality;
105
- loveLanguages: LoveLanguages;
106
- }
107
- >;
108
- compatibility: MatchCompatibility;
109
97
  processing?: boolean;
110
98
  };