···11+---
22+"@hey-api/openapi-ts": minor
33+---
44+55+feat: move operationId config option to services object
+16
docs/openapi-ts/migrating.md
···48484949This config option is deprecated and will be removed.
50505151+## v0.42.0
5252+5353+### Moved `operationId`
5454+5555+This config option has been moved. You can now configure it using the `services.operationId` option.
5656+5757+```js{5}
5858+export default {
5959+ input: 'path/to/openapi.json',
6060+ output: 'src/client',
6161+ services: {
6262+ operationId: true,
6363+ },
6464+}
6565+```
6666+5167## v0.41.0
52685369### Removed `postfixServices`