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.

test: update snapshots

Lubos bd8df9b0 139d39e4

+826 -826
+1 -1
examples/openapi-ts-angular-common/src/client/client/utils.gen.ts
··· 295 295 mergedHeaders = mergedHeaders.append(key, v as string); 296 296 } 297 297 } else if (value !== undefined) { 298 - // assume object headers are meant to be JSON stringified, i.e. their 298 + // assume object headers are meant to be JSON stringified, i.e., their 299 299 // content value in OpenAPI specification is 'application/json' 300 300 mergedHeaders = mergedHeaders.set( 301 301 key,
+1 -1
examples/openapi-ts-angular-common/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-angular-common/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-angular/src/client/client/utils.gen.ts
··· 295 295 mergedHeaders = mergedHeaders.append(key, v as string); 296 296 } 297 297 } else if (value !== undefined) { 298 - // assume object headers are meant to be JSON stringified, i.e. their 298 + // assume object headers are meant to be JSON stringified, i.e., their 299 299 // content value in OpenAPI specification is 'application/json' 300 300 mergedHeaders = mergedHeaders.set( 301 301 key,
+1 -1
examples/openapi-ts-angular/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-angular/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-axios/src/client/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
examples/openapi-ts-axios/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-axios/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-fastify/src/client/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
examples/openapi-ts-fastify/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-fastify/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-fetch/src/client/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
examples/openapi-ts-fetch/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-fetch/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-ky/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-ky/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-nestjs/src/client/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
examples/openapi-ts-nestjs/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-nestjs/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-next/src/client/client/utils.gen.ts
··· 310 310 mergedHeaders.append(key, v as string); 311 311 } 312 312 } else if (value !== undefined) { 313 - // assume object headers are meant to be JSON stringified, i.e. their 313 + // assume object headers are meant to be JSON stringified, i.e., their 314 314 // content value in OpenAPI specification is 'application/json' 315 315 mergedHeaders.set( 316 316 key,
+1 -1
examples/openapi-ts-next/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-next/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-ofetch/src/client/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
examples/openapi-ts-ofetch/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-ofetch/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-openai/src/client/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
examples/openapi-ts-openai/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-openai/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-pinia-colada/src/client/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
examples/openapi-ts-pinia-colada/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-pinia-colada/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-tanstack-angular-query-experimental/src/client/client/utils.gen.ts
··· 295 295 mergedHeaders = mergedHeaders.append(key, v as string); 296 296 } 297 297 } else if (value !== undefined) { 298 - // assume object headers are meant to be JSON stringified, i.e. their 298 + // assume object headers are meant to be JSON stringified, i.e., their 299 299 // content value in OpenAPI specification is 'application/json' 300 300 mergedHeaders = mergedHeaders.set( 301 301 key,
+1 -1
examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-tanstack-react-query/src/client/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
examples/openapi-ts-tanstack-react-query/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-tanstack-react-query/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-tanstack-svelte-query/src/client/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
examples/openapi-ts-tanstack-svelte-query/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-tanstack-svelte-query/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
examples/openapi-ts-tanstack-vue-query/src/client/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
examples/openapi-ts-tanstack-vue-query/src/client/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
examples/openapi-ts-tanstack-vue-query/src/client/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/core/types.ts
··· 62 62 querySerializer?: QuerySerializer | QuerySerializerOptions; 63 63 /** 64 64 * A function transforming response data before it's returned. This is useful 65 - * for post-processing data, e.g. converting ISO strings into Date objects. 65 + * for post-processing data, e.g., converting ISO strings into Date objects. 66 66 */ 67 67 responseTransformer?: (data: unknown) => Promise<unknown>; 68 68 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/utils.ts
··· 289 289 mergedHeaders.append(key, v as string); 290 290 } 291 291 } else if (value !== undefined) { 292 - // assume object headers are meant to be JSON stringified, i.e. their 292 + // assume object headers are meant to be JSON stringified, i.e., their 293 293 // content value in OpenAPI specification is 'application/json' 294 294 mergedHeaders.set( 295 295 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/core/types.ts
··· 62 62 querySerializer?: QuerySerializer | QuerySerializerOptions; 63 63 /** 64 64 * A function transforming response data before it's returned. This is useful 65 - * for post-processing data, e.g. converting ISO strings into Date objects. 65 + * for post-processing data, e.g., converting ISO strings into Date objects. 66 66 */ 67 67 responseTransformer?: (data: unknown) => Promise<unknown>; 68 68 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/utils.ts
··· 289 289 mergedHeaders.append(key, v as string); 290 290 } 291 291 } else if (value !== undefined) { 292 - // assume object headers are meant to be JSON stringified, i.e. their 292 + // assume object headers are meant to be JSON stringified, i.e., their 293 293 // content value in OpenAPI specification is 'application/json' 294 294 mergedHeaders.set( 295 295 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/core/types.ts
··· 62 62 querySerializer?: QuerySerializer | QuerySerializerOptions; 63 63 /** 64 64 * A function transforming response data before it's returned. This is useful 65 - * for post-processing data, e.g. converting ISO strings into Date objects. 65 + * for post-processing data, e.g., converting ISO strings into Date objects. 66 66 */ 67 67 responseTransformer?: (data: unknown) => Promise<unknown>; 68 68 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/utils.ts
··· 289 289 mergedHeaders.append(key, v as string); 290 290 } 291 291 } else if (value !== undefined) { 292 - // assume object headers are meant to be JSON stringified, i.e. their 292 + // assume object headers are meant to be JSON stringified, i.e., their 293 293 // content value in OpenAPI specification is 'application/json' 294 294 mergedHeaders.set( 295 295 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/core/types.ts
··· 62 62 querySerializer?: QuerySerializer | QuerySerializerOptions; 63 63 /** 64 64 * A function transforming response data before it's returned. This is useful 65 - * for post-processing data, e.g. converting ISO strings into Date objects. 65 + * for post-processing data, e.g., converting ISO strings into Date objects. 66 66 */ 67 67 responseTransformer?: (data: unknown) => Promise<unknown>; 68 68 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/utils.ts
··· 289 289 mergedHeaders.append(key, v as string); 290 290 } 291 291 } else if (value !== undefined) { 292 - // assume object headers are meant to be JSON stringified, i.e. their 292 + // assume object headers are meant to be JSON stringified, i.e., their 293 293 // content value in OpenAPI specification is 'application/json' 294 294 mergedHeaders.set( 295 295 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/core/types.ts
··· 62 62 querySerializer?: QuerySerializer | QuerySerializerOptions; 63 63 /** 64 64 * A function transforming response data before it's returned. This is useful 65 - * for post-processing data, e.g. converting ISO strings into Date objects. 65 + * for post-processing data, e.g., converting ISO strings into Date objects. 66 66 */ 67 67 responseTransformer?: (data: unknown) => Promise<unknown>; 68 68 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/utils.ts
··· 289 289 mergedHeaders.append(key, v as string); 290 290 } 291 291 } else if (value !== undefined) { 292 - // assume object headers are meant to be JSON stringified, i.e. their 292 + // assume object headers are meant to be JSON stringified, i.e., their 293 293 // content value in OpenAPI specification is 'application/json' 294 294 mergedHeaders.set( 295 295 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/core/types.ts
··· 62 62 querySerializer?: QuerySerializer | QuerySerializerOptions; 63 63 /** 64 64 * A function transforming response data before it's returned. This is useful 65 - * for post-processing data, e.g. converting ISO strings into Date objects. 65 + * for post-processing data, e.g., converting ISO strings into Date objects. 66 66 */ 67 67 responseTransformer?: (data: unknown) => Promise<unknown>; 68 68 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/utils.ts
··· 289 289 mergedHeaders.append(key, v as string); 290 290 } 291 291 } else if (value !== undefined) { 292 - // assume object headers are meant to be JSON stringified, i.e. their 292 + // assume object headers are meant to be JSON stringified, i.e., their 293 293 // content value in OpenAPI specification is 'application/json' 294 294 mergedHeaders.set( 295 295 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/core/types.ts
··· 62 62 querySerializer?: QuerySerializer | QuerySerializerOptions; 63 63 /** 64 64 * A function transforming response data before it's returned. This is useful 65 - * for post-processing data, e.g. converting ISO strings into Date objects. 65 + * for post-processing data, e.g., converting ISO strings into Date objects. 66 66 */ 67 67 responseTransformer?: (data: unknown) => Promise<unknown>; 68 68 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/utils.ts
··· 289 289 mergedHeaders.append(key, v as string); 290 290 } 291 291 } else if (value !== undefined) { 292 - // assume object headers are meant to be JSON stringified, i.e. their 292 + // assume object headers are meant to be JSON stringified, i.e., their 293 293 // content value in OpenAPI specification is 'application/json' 294 294 mergedHeaders.set( 295 295 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/core/types.ts
··· 62 62 querySerializer?: QuerySerializer | QuerySerializerOptions; 63 63 /** 64 64 * A function transforming response data before it's returned. This is useful 65 - * for post-processing data, e.g. converting ISO strings into Date objects. 65 + * for post-processing data, e.g., converting ISO strings into Date objects. 66 66 */ 67 67 responseTransformer?: (data: unknown) => Promise<unknown>; 68 68 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/utils.ts
··· 289 289 mergedHeaders.append(key, v as string); 290 290 } 291 291 } else if (value !== undefined) { 292 - // assume object headers are meant to be JSON stringified, i.e. their 292 + // assume object headers are meant to be JSON stringified, i.e., their 293 293 // content value in OpenAPI specification is 'application/json' 294 294 mergedHeaders.set( 295 295 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/client/utils.gen.ts
··· 298 298 mergedHeaders = mergedHeaders.append(key, v as string); 299 299 } 300 300 } else if (value !== undefined) { 301 - // assume object headers are meant to be JSON stringified, i.e. their 301 + // assume object headers are meant to be JSON stringified, i.e., their 302 302 // content value in OpenAPI specification is 'application/json' 303 303 mergedHeaders = mergedHeaders.set( 304 304 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/client/utils.gen.ts
··· 192 192 mergedHeaders[key] = [...(mergedHeaders[key] ?? []), v as string]; 193 193 } 194 194 } else if (value !== undefined) { 195 - // assume object headers are meant to be JSON stringified, i.e. their 195 + // assume object headers are meant to be JSON stringified, i.e., their 196 196 // content value in OpenAPI specification is 'application/json' 197 197 mergedHeaders[key] = typeof value === 'object' ? JSON.stringify(value) : (value as string); 198 198 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/client/utils.gen.ts
··· 313 313 mergedHeaders.append(key, v as string); 314 314 } 315 315 } else if (value !== undefined) { 316 - // assume object headers are meant to be JSON stringified, i.e. their 316 + // assume object headers are meant to be JSON stringified, i.e., their 317 317 // content value in OpenAPI specification is 'application/json' 318 318 mergedHeaders.set( 319 319 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/client/utils.gen.ts
··· 288 288 } 289 289 } else if (value !== undefined) { 290 290 const v = unwrapRefs(value); 291 - // assume object headers are meant to be JSON stringified, i.e. their 291 + // assume object headers are meant to be JSON stringified, i.e., their 292 292 // content value in OpenAPI specification is 'application/json' 293 293 mergedHeaders.set(key, typeof v === 'object' ? JSON.stringify(v) : (v as string)); 294 294 }
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/client/utils.gen.ts
··· 235 235 mergedHeaders.append(key, v as string); 236 236 } 237 237 } else if (value !== undefined) { 238 - // assume object headers are meant to be JSON stringified, i.e. their 238 + // assume object headers are meant to be JSON stringified, i.e., their 239 239 // content value in OpenAPI specification is 'application/json' 240 240 mergedHeaders.set( 241 241 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-additional-properties/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-additional-properties/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-additional-properties/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/client/utils.gen.ts
··· 204 204 mergedHeaders.append(key, v as string); 205 205 } 206 206 } else if (value !== undefined) { 207 - // assume object headers are meant to be JSON stringified, i.e. their 207 + // assume object headers are meant to be JSON stringified, i.e., their 208 208 // content value in OpenAPI specification is 'application/json' 209 209 mergedHeaders.set( 210 210 key,
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/types.gen.ts
··· 80 80 requestValidator?: (data: unknown) => Promise<unknown>; 81 81 /** 82 82 * A function transforming response data before it's returned. This is useful 83 - * for post-processing data, e.g. converting ISO strings into Date objects. 83 + * for post-processing data, e.g., converting ISO strings into Date objects. 84 84 */ 85 85 responseTransformer?: (data: unknown) => Promise<unknown>; 86 86 /**
+1 -1
packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/utils.gen.ts
··· 126 126 return hasSerializedBody ? options.serializedBody : null; 127 127 } 128 128 129 - // not all clients implement a serializedBody property (i.e. client-axios) 129 + // not all clients implement a serializedBody property (i.e., client-axios) 130 130 return options.body !== '' ? options.body : null; 131 131 } 132 132