@uniteverses/shared 1.0.44 → 1.0.46
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;
|
|
@@ -211,6 +212,7 @@ export interface OrgEvent {
|
|
|
211
212
|
createdAt: string | Date;
|
|
212
213
|
occurrences?: OrgEventOccurrence[];
|
|
213
214
|
translations: OrgEventTranslation[];
|
|
215
|
+
imageUrl?: string | null;
|
|
214
216
|
_count?: {
|
|
215
217
|
occurrences: number;
|
|
216
218
|
};
|
|
@@ -248,6 +250,7 @@ export interface OrgEventOccurrence {
|
|
|
248
250
|
applicants?: OrgEventOccurrenceApplicant[];
|
|
249
251
|
participants?: OrgEventOccurrenceParticipant[];
|
|
250
252
|
translations: OrgEventOccurrenceTranslation[];
|
|
253
|
+
imageUrl?: string | null;
|
|
251
254
|
_count?: {
|
|
252
255
|
applicants: number;
|
|
253
256
|
participants: number;
|
|
@@ -265,6 +268,7 @@ export interface UpdateOrgEventOccurrenceInput {
|
|
|
265
268
|
endsAt?: string;
|
|
266
269
|
location?: string;
|
|
267
270
|
capacity?: number;
|
|
271
|
+
imageStoragePath?: string | null;
|
|
268
272
|
translations?: OrgEventOccurrenceTranslationInput[];
|
|
269
273
|
}
|
|
270
274
|
export type ApplicantStatus = "pending" | "approved" | "rejected";
|