getEntityList
is used to get a list of published entities.
interface PublishedDossierClient {
getEntityList(
references: EntityReference[],
): PromiseResult<
Result<
PublishedEntity,
"BadRequest" | "NotFound" | "NotAuthorized" | "Generic"
>[],
"Generic"
>;
}
interface EntityReference {
id: string;
}