@uniteverses/shared 1.0.68 → 1.0.69
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.
|
@@ -513,6 +513,22 @@ export interface OrgFoodGroupItem {
|
|
|
513
513
|
createdAt: string | Date;
|
|
514
514
|
foodItem: OrgFoodItem;
|
|
515
515
|
}
|
|
516
|
+
export interface OrgMember {
|
|
517
|
+
id: string;
|
|
518
|
+
organizationId: string;
|
|
519
|
+
userId: string;
|
|
520
|
+
createdAt: string | Date;
|
|
521
|
+
user: User;
|
|
522
|
+
}
|
|
523
|
+
export interface MyOrganization {
|
|
524
|
+
id: string;
|
|
525
|
+
organizationId: string;
|
|
526
|
+
createdAt: string | Date;
|
|
527
|
+
organization: Organization;
|
|
528
|
+
}
|
|
529
|
+
export interface AddOrgMemberInput {
|
|
530
|
+
userId: string;
|
|
531
|
+
}
|
|
516
532
|
export interface Inquiry {
|
|
517
533
|
id: string;
|
|
518
534
|
message: string;
|