import type { RegisterOrganisation } from "@src/tems"; export const mockRegisterOrganisation = ( overrides?: Partial ): RegisterOrganisation => ({ "@id": "http://example.com/organisations/1", email: "john@doe", organisation: "Mock Organisation", organisationAddress: "123 Mock St", organisationRegistrationNumber: "MOCK123", firstname: "John", lastname: "Doe", status: "pending", optin_register: true, ...overrides, });