@uniteverses/shared 1.0.68 → 1.0.70
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.
|
@@ -378,6 +378,7 @@ export interface OrgEventOccurrence {
|
|
|
378
378
|
endsAt: string | Date | null;
|
|
379
379
|
location: string | null;
|
|
380
380
|
capacity: number | null;
|
|
381
|
+
rsvpLink: string | null;
|
|
381
382
|
createdAt: string | Date;
|
|
382
383
|
applicants?: OrgEventOccurrenceApplicant[];
|
|
383
384
|
participants?: OrgEventOccurrenceParticipant[];
|
|
@@ -393,6 +394,7 @@ export interface CreateOrgEventOccurrenceInput {
|
|
|
393
394
|
endsAt?: string;
|
|
394
395
|
location?: string;
|
|
395
396
|
capacity?: number;
|
|
397
|
+
rsvpLink?: string | null;
|
|
396
398
|
translations?: OrgEventOccurrenceTranslationInput[];
|
|
397
399
|
}
|
|
398
400
|
export interface UpdateOrgEventOccurrenceInput {
|
|
@@ -400,6 +402,7 @@ export interface UpdateOrgEventOccurrenceInput {
|
|
|
400
402
|
endsAt?: string;
|
|
401
403
|
location?: string;
|
|
402
404
|
capacity?: number;
|
|
405
|
+
rsvpLink?: string | null;
|
|
403
406
|
imageStoragePath?: string | null;
|
|
404
407
|
translations?: OrgEventOccurrenceTranslationInput[];
|
|
405
408
|
}
|
|
@@ -513,6 +516,22 @@ export interface OrgFoodGroupItem {
|
|
|
513
516
|
createdAt: string | Date;
|
|
514
517
|
foodItem: OrgFoodItem;
|
|
515
518
|
}
|
|
519
|
+
export interface OrgMember {
|
|
520
|
+
id: string;
|
|
521
|
+
organizationId: string;
|
|
522
|
+
userId: string;
|
|
523
|
+
createdAt: string | Date;
|
|
524
|
+
user: User;
|
|
525
|
+
}
|
|
526
|
+
export interface MyOrganization {
|
|
527
|
+
id: string;
|
|
528
|
+
organizationId: string;
|
|
529
|
+
createdAt: string | Date;
|
|
530
|
+
organization: Organization;
|
|
531
|
+
}
|
|
532
|
+
export interface AddOrgMemberInput {
|
|
533
|
+
userId: string;
|
|
534
|
+
}
|
|
516
535
|
export interface Inquiry {
|
|
517
536
|
id: string;
|
|
518
537
|
message: string;
|