fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

handle case where body is not included in params when paramStructure is set to 'flat'

+346
+2
examples/openapi-ts-angular-common/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-angular/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-axios/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-fastify/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-fetch/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-ky/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-next/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-ofetch/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-openai/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-pinia-colada/src/client/core/params.gen.ts
··· 144 144 } else { 145 145 params[field.map] = value 146 146 } 147 + } else if (key === 'body') { 148 + params.body = value 147 149 } else { 148 150 const extra = extraPrefixes.find(([prefix]) => key.startsWith(prefix)) 149 151
+2
examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-tanstack-react-query/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-tanstack-svelte-query/src/client/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
examples/openapi-ts-tanstack-vue-query/src/client/core/params.gen.ts
··· 144 144 } else { 145 145 params[field.map] = value 146 146 } 147 + } else if (key === 'body') { 148 + params.body = value 147 149 } else { 148 150 const extra = extraPrefixes.find(([prefix]) => key.startsWith(prefix)) 149 151
+2
packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/transformers/type-format-valibot/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/transformers/type-format-zod/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/transformers/type-format-valibot/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/transformers/type-format-zod/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/transformers/type-format-valibot/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/transformers/type-format-zod/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/params.gen.ts
··· 147 147 } else { 148 148 params[field.map] = value; 149 149 } 150 + } else if (key === 'body') { 151 + params.body = value; 150 152 } else { 151 153 const extra = extraPrefixes.find(([prefix]) => 152 154 key.startsWith(prefix),
+2
packages/openapi-ts/src/plugins/@hey-api/client-core/bundle/params.ts
··· 145 145 } else { 146 146 params[field.map] = value; 147 147 } 148 + } else if (key === 'body') { 149 + params.body = value; 148 150 } else { 149 151 const extra = extraPrefixes.find(([prefix]) => 150 152 key.startsWith(prefix),