def client_session_id(faker: Faker) -> UUIDStr: return faker.uuid4()
def other_project_id(faker: Faker, user_project: Dict[str, Any]) -> UUIDStr: other_id = faker.uuid4() assert user_project["uuid"] != other_id return other_id
def node_uuid(faker: Faker) -> str: return faker.uuid4()