You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This regex for PascalCase is not allowing trailing numbers (see this error) is there a specific reason for that or is it possible to change the regex to allow this pattern?
Thanks
The text was updated successfully, but these errors were encountered:
This issue seems to be opening a wider reaching concern of API versions.
If we rename the type to something like BridgeResponseV2DTO we are still hit with the Pascal Case violation.
We'd (hopefully) all agree BridgeResponseVTwoDTO is not a good name.
The problem is we're generating a single OpenAPI definition for both API versions and as such we cannot re-use the simple form BridgeResponse as the types are defined at the root (components\schemas) level of the OpenAPI file and not "per path" (paths\<path>\verb where <path> contains the version information).
What is the proposal for different API versions? Multiple OpenAPI definition files? Does AppServices support that?
This issue seems to be opening a wider reaching concern of API versions.
If we rename the type to something like BridgeResponseV2DTO we are still hit with the Pascal Case violation.
We'd (hopefully) all agree BridgeResponseVTwoDTO is not a good name.
The problem is we're generating a single OpenAPI definition for both API versions and as such we cannot re-use the simple form BridgeResponse as the types are defined at the root (components\schemas) level of the OpenAPI file and not "per path" (paths\<path>\verb where <path> contains the version information).
What is the proposal for different API versions? Multiple OpenAPI definition files? Does AppServices support that?
As per internal chat we proposed that the service could have one independent openapi file for each version of the backend api, and the sdk team could generate a brand new sdk for each openapi file. Let's say a smart events v1 and smart events v2 artifacts in this list - ready to be downloaded and used
This regex for PascalCase is not allowing trailing numbers (see this error) is there a specific reason for that or is it possible to change the regex to allow this pattern?
Thanks
The text was updated successfully, but these errors were encountered: