Alex Kravchenkov
Alex Kravchenkov
At this moment for creating your own Observer you need to subclass `Context` and then implement your own logic, bit I think that it's bad approach. We need redesign this...
AccessSafe цепочка должна самостоятельно заменять токен. Добавить такую функциональность. Добавить возможность указывать истомные ошибки, которые тригерят обновление токена
Blocked with [#3](https://github.com/surfstudio/CoreNetKit/issues/3), [#36](https://github.com/surfstudio/CoreNetKit/issues/36)
At this moment SurfGen can't handle case when `group` is declared under a property. For example: ```YAML AnyObject: type: object properties: anyProperty: oneOf: - $ref: "..." ``` This case won't...
At this moment SurfGen will throw error when `group` has array. For example: ```YAML WebSocketServerEvent: oneOf: - type: array items: $ref: '../common/models.yaml#/components/schemas/Identifier' ``` Seems like that we can generate code...
Now when we create model for code generation we gather URI's path parameters only from first operation ```Swift self.parameters = pathModel.operations[0].pathParameters ``` And it seems wrong