@uniteverses/shared 1.0.60 → 1.0.61

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.
@@ -78,6 +78,29 @@ export interface Type {
78
78
  emoji: string;
79
79
  createdAt: string | Date;
80
80
  translations?: TypeTranslation[];
81
+ groups?: TypeGroupType[];
82
+ }
83
+ export interface TypeGroupTranslation {
84
+ id: string;
85
+ typeGroupId: string;
86
+ languageId: string;
87
+ name: string;
88
+ createdAt: string | Date;
89
+ language: Language;
90
+ }
91
+ export interface TypeGroupType {
92
+ id: string;
93
+ typeGroupId: string;
94
+ typeId: string;
95
+ createdAt: string | Date;
96
+ type?: Type;
97
+ }
98
+ export interface TypeGroup {
99
+ id: string;
100
+ emoji: string;
101
+ createdAt: string | Date;
102
+ translations?: TypeGroupTranslation[];
103
+ types?: TypeGroupType[];
81
104
  }
82
105
  export interface OrganizationAddress {
83
106
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.60",
3
+ "version": "1.0.61",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [