@uniteverses/shared 1.0.60 → 1.0.62
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;
|
|
@@ -301,6 +324,11 @@ export interface OrgEventTranslationInput {
|
|
|
301
324
|
name: string;
|
|
302
325
|
description?: string;
|
|
303
326
|
}
|
|
327
|
+
export interface OrgEventPartnerOrg {
|
|
328
|
+
id: string;
|
|
329
|
+
organizationId: string;
|
|
330
|
+
organization: Organization;
|
|
331
|
+
}
|
|
304
332
|
export interface OrgEvent {
|
|
305
333
|
id: string;
|
|
306
334
|
organizationId: string;
|
|
@@ -313,6 +341,7 @@ export interface OrgEvent {
|
|
|
313
341
|
types?: {
|
|
314
342
|
type: Type;
|
|
315
343
|
}[];
|
|
344
|
+
partnerOrgs?: OrgEventPartnerOrg[];
|
|
316
345
|
_count?: {
|
|
317
346
|
occurrences: number;
|
|
318
347
|
};
|