contributte / apitte

:wrench: An opinionated and enjoyable API framework based on Nette Framework. Supporting content negotiation, debugging, middlewares, attributes, annotations and loving openapi/swagger.
https://contributte.org/packages/contributte/apitte/
MIT License
61 stars 36 forks source link

Metadata for response #97

Closed mabar closed 4 years ago

mabar commented 5 years ago

For cases like #96 - sending new auth tokens is common task

$response->withAdditionData('meta', ['foo' => 'bar']);

E.g. JsonUnifyTransformer would output

{
    "status": "success",
    "data": {},
    "errors": {},
    "meta": {
        "foo": "bar"
    }
}