Skip to content

Commit 75eb18b

Browse files
committed
fix taxonomy query parameter
1 parent 2e2d8ce commit 75eb18b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Installation/NewInstallation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ private static function getOperations(): array
832832
httpPath: '/event',
833833
httpCode: 200,
834834
outgoing: Model\Backend\EventCollection::class,
835-
parameters: ['startIndex' => PropertyTypeFactory::getInteger(), 'count' => PropertyTypeFactory::getInteger(), 'search' => PropertyTypeFactory::getString()],
835+
parameters: ['startIndex' => PropertyTypeFactory::getInteger(), 'count' => PropertyTypeFactory::getInteger(), 'search' => PropertyTypeFactory::getString(), 'taxonomy' => PropertyTypeFactory::getInteger()],
836836
throws: [999 => Model\Common\Message::class],
837837
description: 'Returns a paginated list of events',
838838
),
@@ -2316,7 +2316,7 @@ private static function getOperations(): array
23162316
httpPath: '/event',
23172317
httpCode: 200,
23182318
outgoing: Model\Consumer\EventCollection::class,
2319-
parameters: ['startIndex' => PropertyTypeFactory::getInteger(), 'count' => PropertyTypeFactory::getInteger(), 'search' => PropertyTypeFactory::getString(), 'taxonomy' => PropertyTypeFactory::getInteger()],
2319+
parameters: ['startIndex' => PropertyTypeFactory::getInteger(), 'count' => PropertyTypeFactory::getInteger(), 'search' => PropertyTypeFactory::getString()],
23202320
throws: [999 => Model\Common\Message::class],
23212321
description: 'Returns a paginated list of apps which are assigned to the authenticated user',
23222322
),

0 commit comments

Comments
 (0)