heartraite 1.0.67 → 1.0.68

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,4 +1,3 @@
1
- type UserID = string;
2
1
  export type AMDatingSuggestions = {
3
2
  summary: string;
4
3
  suggestions: AMDatingSuggestion[];
@@ -38,7 +37,7 @@ export type AMLoveLanguage = {
38
37
  };
39
38
  export type AMLoveLanguages = {
40
39
  summary: string;
41
- languages: Record<UserID, AMLoveLanguage[]>;
40
+ languages: AMLoveLanguage[];
42
41
  };
43
42
  export type AMPersonalityTrait = {
44
43
  id: string;
@@ -79,4 +78,3 @@ export type AdvancedMatch = {
79
78
  version: string;
80
79
  created: string;
81
80
  };
82
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -47,7 +47,7 @@ export type AMLoveLanguage = {
47
47
 
48
48
  export type AMLoveLanguages = {
49
49
  summary: string;
50
- languages: Record<UserID, AMLoveLanguage[]>;
50
+ languages: AMLoveLanguage[];
51
51
  };
52
52
 
53
53
  export type AMPersonalityTrait = {