---
changelog:
  category: Release
  version: 1.7.1
date: '2025-07-15T01:12:37Z'
seo:
  description: >-
    trpc: Restructure ORPCMeta + accessible lazy router - by @dinwwwh in
    https://github.com/middleapi/orpc/issues/758 (5049f) client: Missing export…
title: v1.7.1
type: changelog
---
### ORPCMeta update for tRPC [docs](https://orpc.dinwwwh.com/docs/openapi/integrations/trpc#openapi-support)

```diff
 const example = t.procedure
-  .meta({ path: '/hello', summary: 'Hello procedure' }) 
+  .meta({ route: { path: '/hello', summary: 'Hello procedure' } }) 
   .input(z.object({ name: z.string() }))
   .query(({ input }) => {
     return `Hello, ${input.name}!`
   })
```

### &nbsp;&nbsp;&nbsp;🚀 Features

- **trpc**: Restructure ORPCMeta + accessible lazy router &nbsp;-&nbsp; by @dinwwwh in https://github.com/middleapi/orpc/issues/758 [<samp>(5049f)</samp>](https://github.com/middleapi/orpc/commit/5049f7c8)

### &nbsp;&nbsp;&nbsp;🐞 Bug Fixes

- **client**: Missing export `createSafeClient` &nbsp;-&nbsp; by @dinwwwh [<samp>(cf4ae)</samp>](https://github.com/middleapi/orpc/commit/cf4aeb3d)

##### &nbsp;&nbsp;&nbsp;&nbsp;[View changes on GitHub](https://github.com/middleapi/orpc/compare/v1.7.0...v1.7.1)
