OrganisationResponse type

This commit is contained in:
Oliver Bryan
2025-12-23 17:13:21 +00:00
parent e9c5fbac0a
commit badb857bc2
2 changed files with 6 additions and 0 deletions

View File

@@ -33,4 +33,5 @@ export {
export type {
IssueResponse,
ProjectResponse,
OrganisationResponse,
} from "./schema";

View File

@@ -110,3 +110,8 @@ export type ProjectResponse = {
Organisation: OrganisationRecord;
User: UserRecord;
};
export type OrganisationResponse = {
Organisation: OrganisationRecord;
OrganisationMember: OrganisationMemberRecord;
};