@@ -82,14 +82,14 @@ by the server templates. Full support is expected to land soon.
8282
8383| Template | Supported | Notes |
8484| :-------------------| :---------:| --------------------------------------------------------------------------------:|
85- | typescript-angular | 🚫 | |
85+ | typescript-angular | ✅ | Uses ` Blob ` for request bodies and response data |
8686| typescript-axios | ✅ | Uses ` Blob ` for request bodies, and response ` res.data ` |
8787| typescript-express | ✅ | Parses request bodies to ` Blob ` , serializes ` Blob ` |
8888| typescript-fetch | ✅ | Pass a ` Blob ` for request bodies, access using ` res.blob() ` for response bodies |
8989| typescript-koa | ✅ | Parses request bodies to ` Blob ` , serializes ` Blob ` |
9090
91- ### Controlling Maximum Request Body size
92- By default, a maximum of ` 10mb ` is used as the maximum requset body size for binary data. You can override this for
91+ ### Controlling Maximum Request Body size (server templates)
92+ By default, a maximum of ` 10mb ` is used as the maximum request body size for binary data. You can override this for
9393an individual schema by using the ` maxLength ` field, which will be interpreted as ` bytes ` , eg:
9494
9595``` yaml
@@ -103,6 +103,8 @@ post:
103103 maxLength : 20971520 # 20mb in bytes
104104` ` `
105105
106+ This only applies to server templates.
107+
106108## Selecting between multiple possible ` Content-Type`
107109
108110It's possible for endpoints to define multiple acceptable `Content-Type` for their request bodies, and responses.
0 commit comments