diff --git a/src/Operations.php b/src/Operations.php index 661c5974..ea24fe94 100644 --- a/src/Operations.php +++ b/src/Operations.php @@ -45,4 +45,13 @@ public function perform(string $operationName, array $queryParameters = []): arr $queryParameters ); } + + /** + * @return array + * @throws TypesenseClientError|HttpClientException + */ + public function getSchemaChangeStatus(): array + { + return $this->apiCall->get(sprintf('%s/%s', static::RESOURCE_PATH, 'schema_changes'), []); + } }