@uniteverses/shared 1.0.43 → 1.0.45
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.
|
@@ -96,6 +96,7 @@ export interface Organization {
|
|
|
96
96
|
}[];
|
|
97
97
|
addresses: OrganizationAddress[];
|
|
98
98
|
phones: OrganizationPhone[];
|
|
99
|
+
imageUrl?: string | null;
|
|
99
100
|
}
|
|
100
101
|
export interface CreateOrganizationInput {
|
|
101
102
|
name: string;
|
|
@@ -206,18 +207,25 @@ export interface OrgEventTranslationInput {
|
|
|
206
207
|
export interface OrgEvent {
|
|
207
208
|
id: string;
|
|
208
209
|
organizationId: string;
|
|
210
|
+
isActive: boolean;
|
|
211
|
+
registrationRequired: boolean;
|
|
209
212
|
createdAt: string | Date;
|
|
210
213
|
occurrences?: OrgEventOccurrence[];
|
|
211
214
|
translations: OrgEventTranslation[];
|
|
215
|
+
imageUrl?: string | null;
|
|
212
216
|
_count?: {
|
|
213
217
|
occurrences: number;
|
|
214
218
|
};
|
|
215
219
|
}
|
|
216
220
|
export interface CreateOrgEventInput {
|
|
217
221
|
translations: OrgEventTranslationInput[];
|
|
222
|
+
isActive?: boolean;
|
|
223
|
+
registrationRequired?: boolean;
|
|
218
224
|
}
|
|
219
225
|
export interface UpdateOrgEventInput {
|
|
220
226
|
translations: OrgEventTranslationInput[];
|
|
227
|
+
isActive?: boolean;
|
|
228
|
+
registrationRequired?: boolean;
|
|
221
229
|
}
|
|
222
230
|
export interface OrgEventOccurrenceTranslation {
|
|
223
231
|
id: string;
|
|
@@ -242,6 +250,7 @@ export interface OrgEventOccurrence {
|
|
|
242
250
|
applicants?: OrgEventOccurrenceApplicant[];
|
|
243
251
|
participants?: OrgEventOccurrenceParticipant[];
|
|
244
252
|
translations: OrgEventOccurrenceTranslation[];
|
|
253
|
+
imageUrl?: string | null;
|
|
245
254
|
_count?: {
|
|
246
255
|
applicants: number;
|
|
247
256
|
participants: number;
|