Expand search with external ID searches.

This commit is contained in:
James Cole
2022-12-29 15:42:26 +01:00
parent 8c320fd199
commit 5e3f9f9bce
5 changed files with 63 additions and 2 deletions

View File

@@ -1306,12 +1306,19 @@ interface GroupCollectorInterface
public function withCategoryInformation(): GroupCollectorInterface;
/**
* Transactions with an external URL
* Transactions with any external URL
*
* @return GroupCollectorInterface
*/
public function withExternalUrl(): GroupCollectorInterface;
/**
* Transactions with any external ID
*
* @return GroupCollectorInterface
*/
public function withExternalId(): GroupCollectorInterface;
/**
* Transaction must have meta date field X.
*
@@ -1362,6 +1369,13 @@ interface GroupCollectorInterface
*/
public function withoutExternalUrl(): GroupCollectorInterface;
/**
* Transactions without an external ID
*
* @return GroupCollectorInterface
*/
public function withoutExternalId(): GroupCollectorInterface;
/**
* @return GroupCollectorInterface
*/